mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	glsl: Add missing ; in EmitSetSampleMask
Fixes shader compilation in Okami HD
This commit is contained in:
		@@ -409,7 +409,7 @@ void EmitSetFragColor(EmitContext& ctx, u32 index, u32 component, std::string_vi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void EmitSetSampleMask(EmitContext& ctx, std::string_view value) {
 | 
			
		||||
    ctx.Add("gl_SampleMask[0]=int({})", value);
 | 
			
		||||
    ctx.Add("gl_SampleMask[0]=int({});", value);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void EmitSetFragDepth(EmitContext& ctx, std::string_view value) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user