소스 검색

Avoid config.h in standalone mode

Ray 7 년 전
부모
커밋
103044926b
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      src/rlgl.h

+ 6 - 1
src/rlgl.h

@@ -520,7 +520,12 @@ int GetPixelDataSize(int width, int height, int format);// Get pixel data size i
 
 #if defined(RLGL_IMPLEMENTATION)
 
-#include "config.h"
+#if defined(RLGL_STANDALONE)
+    #define SUPPORT_VR_SIMULATOR
+    #define SUPPORT_DISTORTION_SHADER
+#else
+    #include "config.h"             // rlgl module configuration
+#endif
 
 #include <stdio.h>                  // Required for: fopen(), fclose(), fread()... [Used only on LoadText()]
 #include <stdlib.h>                 // Required for: malloc(), free(), rand()