mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Fix OpenGL error on M1 Mac.
Followup to #10466. Resolves the following error: ERROR: 0:85: '&' does not operate on 'uvec3' and 'int'
This commit is contained in:
@ -182,7 +182,7 @@ static void WriteSampleFunction(ShaderCode& code, const EFBCopyParams& params, A
|
||||
" dot(u_const, float4(texcol_raw.rgb, 256)),\n"
|
||||
" dot(v_const, float4(texcol_raw.rgb, 256)));\n"
|
||||
" // Divide by 256 and round .5 and higher up\n"
|
||||
" texcol_raw.rgb = (texcol_raw.rgb >> 8) + ((texcol_raw.rgb >> 7) & 1);\n");
|
||||
" texcol_raw.rgb = (texcol_raw.rgb >> 8) + ((texcol_raw.rgb >> 7) & 1u);\n");
|
||||
}
|
||||
|
||||
code.Write(" return float4(texcol_raw) / 255.0;\n");
|
||||
|
Reference in New Issue
Block a user