mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 06:39:14 +01:00
TextureCache: Remove redundant floor().
This commit is contained in:
parent
b01ca1794a
commit
7e266b080f
@ -362,7 +362,7 @@ void TextureCache::CompileShaders()
|
||||
"\n"
|
||||
"void main(){\n"
|
||||
" vec4 texcol = texture(samp9, vec3(f_uv0.xy, %s));\n"
|
||||
" int depth = int(floor(texcol.x * 16777216.0));\n"
|
||||
" int depth = int(texcol.x * 16777216.0);\n"
|
||||
|
||||
// Convert to Z24 format
|
||||
" ivec4 workspace;\n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user