Skip to content
Snippets Groups Projects
Commit 1e474fb9 authored by Fernando Sahmkow's avatar Fernando Sahmkow
Browse files

Texture Cache: Correct conversion shaders.

parent 09021193
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ layout(binding = 0) uniform sampler2D color_texture;
void main() {
ivec2 coord = ivec2(gl_FragCoord.xy);
uvec4 color = uvec4(texelFetch(color_texture, coord, 0).rgba * (exp2(8) - 1.0f));
uvec4 color = uvec4(texelFetch(color_texture, coord, 0).abgr * (exp2(8) - 1.0f));
uvec4 bytes = color << uvec4(24, 16, 8, 0);
uint depth_stencil_unorm = bytes.x | bytes.y | bytes.z | bytes.w;
......
......@@ -19,5 +19,5 @@ void main() {
lowp uint stencil_val = textureLod(stencil_tex, coord, 0).r;
highp uvec4 components =
uvec4(stencil_val, (uvec3(depth_val) >> uvec3(24u, 16u, 8u)) & 0x000000FFu);
color = vec4(components) / (exp2(8.0) - 1.0);
color.abgr = vec4(components) / (exp2(8.0) - 1.0);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment