소스 검색

Merge pull request #4223 from hstormo/bugfix

Remove stb_rect_pack implementation from stb_truetype (fix #4215)
Laytan 11 달 전
부모
커밋
ce3f6b60d2
5개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. BIN
      vendor/stb/lib/darwin/stb_truetype.a
  2. BIN
      vendor/stb/lib/stb_truetype.lib
  3. BIN
      vendor/stb/lib/stb_truetype_wasm.o
  4. 1 1
      vendor/stb/src/Makefile
  5. 0 3
      vendor/stb/src/stb_truetype.c

BIN
vendor/stb/lib/darwin/stb_truetype.a


BIN
vendor/stb/lib/stb_truetype.lib


BIN
vendor/stb/lib/stb_truetype_wasm.o


+ 1 - 1
vendor/stb/src/Makefile

@@ -8,7 +8,7 @@ endif
 
 wasm:
 	mkdir -p ../lib
-	clang -c -Os --target=wasm32 -nostdlib stb_truetype_wasm.c -o ../lib/stb_truetype_wasm.o
+	$(CC) -c -Os --target=wasm32 -nostdlib stb_truetype_wasm.c -o ../lib/stb_truetype_wasm.o
 
 unix:
 	mkdir -p ../lib

+ 0 - 3
vendor/stb/src/stb_truetype.c

@@ -1,5 +1,2 @@
-#define STB_RECT_PACK_IMPLEMENTATION
-#include "stb_rect_pack.h"
-
 #define STB_TRUETYPE_IMPLEMENTATION
 #include "stb_truetype.h"