[client] egl: remove needless precision quantifiers

We simply use precision mediump float; for everything. We don't actually
need highp anyways, and we don't use it for stuff like CAS or FSR.
This commit is contained in:
Quantum
2021-08-11 06:41:56 -04:00
committed by Geoffrey McRae
parent 06da52acfc
commit 543c97987b
10 changed files with 35 additions and 27 deletions

View File

@@ -1,9 +1,10 @@
#version 300 es
precision mediump float;
layout(location = 0) in vec2 vertex;
out highp vec2 uv;
out vec2 uv;
uniform highp vec2 desktopSize;
uniform vec2 desktopSize;
uniform mat3x2 transform;
void main()