From 08282e9d5c590a2a778c73ec40861d173c4cdca5 Mon Sep 17 00:00:00 2001 From: dpjudas Date: Sun, 8 Dec 2024 13:00:36 +0100 Subject: [PATCH] Add readonly specifier to CopyBuffer --- wadsrc/static/shaders/lightmap/vert_copy.glsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/shaders/lightmap/vert_copy.glsl b/wadsrc/static/shaders/lightmap/vert_copy.glsl index 9e2643667..c73b6b6de 100644 --- a/wadsrc/static/shaders/lightmap/vert_copy.glsl +++ b/wadsrc/static/shaders/lightmap/vert_copy.glsl @@ -15,7 +15,7 @@ struct TileCopy int Padding1, Padding2; }; -layout(std430, set = 0, binding = 1) buffer CopyBuffer +layout(std430, set = 0, binding = 1) buffer readonly CopyBuffer { TileCopy tiles[]; };