dep: Add stb_image

This commit is contained in:
Connor McLaughlin 2020-06-08 01:47:07 +10:00
parent 29d918dbb0
commit 56c50c6eeb
5 changed files with 7664 additions and 0 deletions

View file

@ -1,6 +1,8 @@
set(SRCS set(SRCS
include/stb_image.h
include/stb_image_resize.h include/stb_image_resize.h
include/stb_image_write.h include/stb_image_write.h
src/stb_image.c
src/stb_image_resize.c src/stb_image_resize.c
src/stb_image_write.c src/stb_image_write.c
) )

7656
dep/stb/include/stb_image.h Normal file

File diff suppressed because it is too large Load diff

2
dep/stb/src/stb_image.c Normal file
View file

@ -0,0 +1,2 @@
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"

View file

@ -35,10 +35,12 @@
</ProjectConfiguration> </ProjectConfiguration>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClCompile Include="src\stb_image.c" />
<ClCompile Include="src\stb_image_resize.c" /> <ClCompile Include="src\stb_image_resize.c" />
<ClCompile Include="src\stb_image_write.c" /> <ClCompile Include="src\stb_image_write.c" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="include\stb_image.h" />
<ClInclude Include="include\stb_image_resize.h" /> <ClInclude Include="include\stb_image_resize.h" />
<ClInclude Include="include\stb_image_write.h" /> <ClInclude Include="include\stb_image_write.h" />
</ItemGroup> </ItemGroup>

View file

@ -3,9 +3,11 @@
<ItemGroup> <ItemGroup>
<ClCompile Include="src\stb_image_write.c" /> <ClCompile Include="src\stb_image_write.c" />
<ClCompile Include="src\stb_image_resize.c" /> <ClCompile Include="src\stb_image_resize.c" />
<ClCompile Include="src\stb_image.c" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="include\stb_image_write.h" /> <ClInclude Include="include\stb_image_write.h" />
<ClInclude Include="include\stb_image_resize.h" /> <ClInclude Include="include\stb_image_resize.h" />
<ClInclude Include="include\stb_image.h" />
</ItemGroup> </ItemGroup>
</Project> </Project>