mirror of
https://github.com/libretro/RetroArch
synced 2025-01-18 13:23:40 +00:00
9 lines
138 B
C
9 lines
138 B
C
|
#ifndef _SHADERS_COMMON
|
||
|
#define _SHADERS_COMMON
|
||
|
|
||
|
#define GLSL(src) "" #src
|
||
|
|
||
|
#define GLSL_330_CORE(src) "#version 330 core\n" #src
|
||
|
|
||
|
#endif
|