From 55bcdcf01a58e75516d691dba91077523fc3647d Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Thu, 28 Feb 2019 23:38:45 +1100 Subject: [PATCH] gl: actually use the highp specifier 675415bf2ea9ddc75ea5e5b6eae9ae942c19d6dc contained a typo that incorrectly used the mediump specifier instead of highp. --- gst-libs/gst/gl/gstglshaderstrings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/gl/gstglshaderstrings.c b/gst-libs/gst/gl/gstglshaderstrings.c index 915268b492..6e9aa10684 100644 --- a/gst-libs/gst/gl/gstglshaderstrings.c +++ b/gst-libs/gst/gl/gstglshaderstrings.c @@ -31,7 +31,7 @@ #define HIGHP_PRECISION \ "#ifdef GL_ES\n" \ - "precision mediump float;\n" \ + "precision highp float;\n" \ "#endif\n" /* *INDENT-OFF* */