├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── build-and-publish.yml ├── .gitignore ├── README.md ├── StbImageWriteSharp.sln ├── generation ├── StbImageWriteSharp.Generator.sln └── StbImageWriteSharp.Generator │ ├── Program.cs │ ├── StbImageWriteSharp.Generator.csproj │ └── stb_image_write.h ├── samples └── Converter │ ├── Converter.csproj │ └── Program.cs ├── src ├── CRuntime.cs ├── ColorComponents.cs ├── Hebron.Runtime │ ├── CRuntime.cs │ └── MemoryStats.cs ├── ImageWriter.cs ├── MemoryStats.cs ├── StbImageWrite.Generated.cs ├── StbImageWrite.cs └── StbImageWriteSharp.csproj └── tests ├── Stb.Native ├── AssemblyInfo.cpp ├── ReadMe.txt ├── Stb.Native.cpp ├── Stb.Native.h ├── Stb.Native.vcxproj ├── Stb.Native.vcxproj.filters ├── Stdafx.cpp ├── Stdafx.h ├── app.ico ├── app.rc └── resource.h └── StbImageWriteSharp.Testing ├── Program.cs └── StbImageWriteSharp.Testing.csproj /.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-vendored -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/.github/workflows/build-and-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/README.md -------------------------------------------------------------------------------- /StbImageWriteSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/StbImageWriteSharp.sln -------------------------------------------------------------------------------- /generation/StbImageWriteSharp.Generator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/generation/StbImageWriteSharp.Generator.sln -------------------------------------------------------------------------------- /generation/StbImageWriteSharp.Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/generation/StbImageWriteSharp.Generator/Program.cs -------------------------------------------------------------------------------- /generation/StbImageWriteSharp.Generator/StbImageWriteSharp.Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/generation/StbImageWriteSharp.Generator/StbImageWriteSharp.Generator.csproj -------------------------------------------------------------------------------- /generation/StbImageWriteSharp.Generator/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/generation/StbImageWriteSharp.Generator/stb_image_write.h -------------------------------------------------------------------------------- /samples/Converter/Converter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/samples/Converter/Converter.csproj -------------------------------------------------------------------------------- /samples/Converter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/samples/Converter/Program.cs -------------------------------------------------------------------------------- /src/CRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/src/CRuntime.cs -------------------------------------------------------------------------------- /src/ColorComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/src/ColorComponents.cs -------------------------------------------------------------------------------- /src/Hebron.Runtime/CRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/src/Hebron.Runtime/CRuntime.cs -------------------------------------------------------------------------------- /src/Hebron.Runtime/MemoryStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/src/Hebron.Runtime/MemoryStats.cs -------------------------------------------------------------------------------- /src/ImageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/src/ImageWriter.cs -------------------------------------------------------------------------------- /src/MemoryStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/src/MemoryStats.cs -------------------------------------------------------------------------------- /src/StbImageWrite.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/src/StbImageWrite.Generated.cs -------------------------------------------------------------------------------- /src/StbImageWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/src/StbImageWrite.cs -------------------------------------------------------------------------------- /src/StbImageWriteSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/src/StbImageWriteSharp.csproj -------------------------------------------------------------------------------- /tests/Stb.Native/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/AssemblyInfo.cpp -------------------------------------------------------------------------------- /tests/Stb.Native/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/ReadMe.txt -------------------------------------------------------------------------------- /tests/Stb.Native/Stb.Native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/Stb.Native.cpp -------------------------------------------------------------------------------- /tests/Stb.Native/Stb.Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/Stb.Native.h -------------------------------------------------------------------------------- /tests/Stb.Native/Stb.Native.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/Stb.Native.vcxproj -------------------------------------------------------------------------------- /tests/Stb.Native/Stb.Native.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/Stb.Native.vcxproj.filters -------------------------------------------------------------------------------- /tests/Stb.Native/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/Stdafx.cpp -------------------------------------------------------------------------------- /tests/Stb.Native/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/Stdafx.h -------------------------------------------------------------------------------- /tests/Stb.Native/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/app.ico -------------------------------------------------------------------------------- /tests/Stb.Native/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/app.rc -------------------------------------------------------------------------------- /tests/Stb.Native/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/Stb.Native/resource.h -------------------------------------------------------------------------------- /tests/StbImageWriteSharp.Testing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/StbImageWriteSharp.Testing/Program.cs -------------------------------------------------------------------------------- /tests/StbImageWriteSharp.Testing/StbImageWriteSharp.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbImageWriteSharp/HEAD/tests/StbImageWriteSharp.Testing/StbImageWriteSharp.Testing.csproj --------------------------------------------------------------------------------