From b93de590bcc778763b0fa5cf911d1e2e9209112e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 6 Jul 2025 13:44:12 +0200 Subject: [PATCH] Shaders: not sure why this was lowp here. I suspect it caused real bad artifacts on mobile GPUs. --- src/Magnum/Shaders/Line.vert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/Shaders/Line.vert b/src/Magnum/Shaders/Line.vert index e6e5221f2..2ae38bf2f 100644 --- a/src/Magnum/Shaders/Line.vert +++ b/src/Magnum/Shaders/Line.vert @@ -67,7 +67,7 @@ #ifdef EXPLICIT_UNIFORM_LOCATION layout(location = 0) #endif -uniform lowp vec2 viewportSize; /* defaults to zero */ +uniform highp vec2 viewportSize; /* defaults to zero */ #ifndef UNIFORM_BUFFERS #ifdef EXPLICIT_UNIFORM_LOCATION