gl: actually use the highp specifier

675415bf2e contained a typo that incorrectly
used the mediump specifier instead of highp.
This commit is contained in:
Matthew Waters 2019-02-28 23:38:45 +11:00
parent 675415bf2e
commit 55bcdcf01a

View file

@ -31,7 +31,7 @@
#define HIGHP_PRECISION \ #define HIGHP_PRECISION \
"#ifdef GL_ES\n" \ "#ifdef GL_ES\n" \
"precision mediump float;\n" \ "precision highp float;\n" \
"#endif\n" "#endif\n"
/* *INDENT-OFF* */ /* *INDENT-OFF* */