mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	gl_shader_decompiler: Add missing {} on smem GLSL emission
This commit is contained in:
		@@ -554,7 +554,7 @@ private:
 | 
			
		||||
        }
 | 
			
		||||
        const auto& info = registry.GetComputeInfo();
 | 
			
		||||
        if (const u32 size = info.shared_memory_size_in_words; size > 0) {
 | 
			
		||||
            code.AddLine("shared uint smem[];", size);
 | 
			
		||||
            code.AddLine("shared uint smem[{}];", size);
 | 
			
		||||
            code.AddNewLine();
 | 
			
		||||
        }
 | 
			
		||||
        code.AddLine("layout (local_size_x = {}, local_size_y = {}, local_size_z = {}) in;",
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user