fix: line shader must have highp
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#ifdef GLES
|
||||
precision mediump float;
|
||||
// highp is necessary to not loose texture coordinate bits
|
||||
precision highp float;
|
||||
#endif
|
||||
uniform mat4 u_mvp;
|
||||
// uniform mat4 u_vp;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
#ifndef DESKTOP_QUIRKS
|
||||
precision mediump float;
|
||||
#ifdef GLES
|
||||
// highp is necessary to not loose texture coordinate bits
|
||||
precision highp float;
|
||||
#endif
|
||||
uniform mat4 u_mvp;
|
||||
// uniform mat4 u_vp;
|
||||
|
||||
Reference in New Issue
Block a user