mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	gl_shader_gen.cpp:fix implicit type conversion error for gles
This commit is contained in:
		
							parent
							
								
									9ad6bc29b5
								
							
						
					
					
						commit
						703ef0e6f0
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -1556,8 +1556,8 @@ vec4 secondary_fragment_color = vec4(0.0); | |||
|     if (state.shadow_rendering) { | ||||
|         out += R"( | ||||
| #if ALLOW_SHADOW | ||||
| uint d = uint(clamp(depth, 0.0, 1.0) * 0xFFFFFF); | ||||
| uint s = uint(last_tex_env_out.g * 0xFF); | ||||
| uint d = uint(clamp(depth, 0.0, 1.0) * float(0xFFFFFF)); | ||||
| uint s = uint(last_tex_env_out.g * float(0xFF)); | ||||
| ivec2 image_coord = ivec2(gl_FragCoord.xy); | ||||
| 
 | ||||
| uint old = imageLoad(shadow_buffer, image_coord).x; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue