mkxp-z/shader/common.h
2023-05-08 04:47:24 -04:00

12 lines
143 B
C

#ifdef GLSLES
precision mediump float;
#else
/* Desktop GLSL doesn't know about these */
#define highp
#define mediump
#define lowp
#endif