mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 09:57:10 +00:00
move shaders folder inside of sdl2
This commit is contained in:
parent
bf8679cf69
commit
94cabb657d
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue