From 01a957737b4b7e5b77685a47dc0d865aca1414c9 Mon Sep 17 00:00:00 2001 From: hujianwei Date: Thu, 17 Nov 2022 06:07:30 +0000 Subject: [PATCH] Fix precision of vertex shader * shaders.txt (Composite Rectangle Vertex Shader): Use medium precision. --- shaders.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/shaders.txt b/shaders.txt index cb99397..9cc0f20 100644 --- a/shaders.txt +++ b/shaders.txt @@ -28,6 +28,7 @@ main (void) //== //== Composite Rectangle Vertex Shader +precision mediump float; attribute vec2 pos; attribute vec2 texcoord; varying vec2 v_texcoord;