move shaders folder inside of sdl2

This commit is contained in:
Tropical 2026-04-03 10:00:02 -05:00
parent bf8679cf69
commit 94cabb657d
5 changed files with 4 additions and 4 deletions

View file

@ -49,20 +49,20 @@ C4JRender RenderManager;
#ifdef GLES #ifdef GLES
static const char* VERT_SRC = static const char* VERT_SRC =
#include "shaders/vertex_es.vert" #include "sdl2/shaders/vertex_es.vert"
; ;
static const char* FRAG_SRC = static const char* FRAG_SRC =
#include "shaders/fragment_es.frag" #include "sdl2/shaders/fragment_es.frag"
; ;
#else #else
static const char* VERT_SRC = static const char* VERT_SRC =
#include "shaders/vertex.vert" #include "sdl2/shaders/vertex.vert"
; ;
static const char* FRAG_SRC = static const char* FRAG_SRC =
#include "shaders/fragment.frag" #include "sdl2/shaders/fragment.frag"
; ;
#endif #endif