mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-11-26 03:24:15 +01:00
[botw] fxaa luma no need for 0
This commit is contained in:
parent
e82e1f0563
commit
87d967bc6a
@ -13,5 +13,5 @@ vec3 R0f = texture(textureUnitPS0, passParameterSem2.xy).xyz;
|
|||||||
R0f.x = dot(R0f, vec3(0.299, 0.587, 0.114));
|
R0f.x = dot(R0f, vec3(0.299, 0.587, 0.114));
|
||||||
R0f.x = pow(R0f.x, 0.45);
|
R0f.x = pow(R0f.x, 0.45);
|
||||||
// export
|
// export
|
||||||
passPixelColor0 = vec4(R0f.x, 0.0, 0.0, 0.0);
|
passPixelColor0 = vec4(R0f.x);
|
||||||
}
|
}
|
||||||
|
@ -13,5 +13,5 @@ vec3 R0f = texture(textureUnitPS0, passParameterSem2.xy).xyz;
|
|||||||
R0f.x = dot(R0f, vec3(0.299, 0.587, 0.114));
|
R0f.x = dot(R0f, vec3(0.299, 0.587, 0.114));
|
||||||
R0f.x = pow(R0f.x, 0.45);
|
R0f.x = pow(R0f.x, 0.45);
|
||||||
// export
|
// export
|
||||||
passPixelColor0 = vec4(R0f.x, 0.0, 0.0, 0.0);
|
passPixelColor0 = vec4(R0f.x);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user