From e7ef4af8cec737d4f63df4b8f30554b9bfe8bf11 Mon Sep 17 00:00:00 2001 From: dmaivel Date: Fri, 7 Jun 2024 16:47:31 -0400 Subject: [PATCH] Report GLSL `3.30` --- src/client/glimpl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/glimpl.c b/src/client/glimpl.c index 0790753..5808e08 100644 --- a/src/client/glimpl.c +++ b/src/client/glimpl.c @@ -1308,8 +1308,8 @@ const GLubyte *glGetString(GLenum name) glsl_vr[2] = version[2]; } else { - glsl_vr[0] = '1'; - glsl_vr[2] = '4'; + glsl_vr[0] = '3'; + glsl_vr[2] = '3'; } } }