1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-22 15:06:45 +00:00

RendererRD: Remove binding specifier for push constants

This is unsupported and glslang made it raise an error in 11.7.0:
https://github.com/KhronosGroup/glslang/pull/2810

Co-authored-by: Clay John <claynjohn@gmail.com>
This commit is contained in:
Rémi Verschelde
2022-02-11 18:40:24 +01:00
parent cf13f8af64
commit 18d6b75ba8
55 changed files with 66 additions and 66 deletions

View File

@@ -40,7 +40,7 @@ const vec3 usage_gradient[33] = vec3[]( // 1 (none) + 32
vec3(0.83, 0.22, 0.27),
vec3(0.83, 0.22, 0.32),
vec3(1.00, 0.63, 0.70));
layout(push_constant, binding = 0, std430) uniform Params {
layout(push_constant, std430) uniform Params {
uvec2 screen_size;
uvec2 cluster_screen_size;