From 085ae2e74a4c6840632c06cfa6b9b5529abc83b2 Mon Sep 17 00:00:00 2001 From: Lignum Date: Thu, 28 May 2020 12:06:14 +0200 Subject: [PATCH] Use an older version of GLSL (#459) This ensures that the MVP matrix is available within the monitor fragment shader, without requiring the ARB_compatibility extension. --- src/main/resources/assets/computercraft/shaders/monitor.vert | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/assets/computercraft/shaders/monitor.vert b/src/main/resources/assets/computercraft/shaders/monitor.vert index 99f56f4ea..b758cce8d 100644 --- a/src/main/resources/assets/computercraft/shaders/monitor.vert +++ b/src/main/resources/assets/computercraft/shaders/monitor.vert @@ -1,4 +1,4 @@ -#version 140 +#version 130 in vec3 v_pos;