From 1f5918748b29686dd4cabde7161815ccbd2ada2b Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Fri, 27 Dec 2024 08:15:38 -0600 Subject: [PATCH] Fix rendering issue nonuniformEXT does not appear to work when cached in a variable. Instead, the builtin must be called every time you are referencing a non-uniform resource --- bootstrap/std/shaders/rect.frag | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bootstrap/std/shaders/rect.frag b/bootstrap/std/shaders/rect.frag index 62e5a84..57280ba 100644 --- a/bootstrap/std/shaders/rect.frag +++ b/bootstrap/std/shaders/rect.frag @@ -21,10 +21,11 @@ float rounded_rect_sdf(vec2 position, vec2 center, vec2 half_size, float radius) void main() { - uint sampler_index = nonuniformEXT(texture_index); - vec2 texture_size = textureSize(textures[sampler_index], 0); + // WARN: do not cache nonuniformEXT indexing + vec2 texture_size = textureSize(textures[nonuniformEXT(texture_index)], 0); vec2 uv = vec2(inputs.uv.x / texture_size.x, inputs.uv.y / texture_size.y); - vec4 sampled = texture(textures[sampler_index], uv); + // WARN: do not cache nonuniformEXT indexing + vec4 sampled = texture(textures[nonuniformEXT(texture_index)], uv); float softness = inputs.softness; float softness_padding_scalar = max(0, softness * 2 - 1); vec2 softness_padding = vec2(softness_padding_scalar, softness_padding_scalar);