mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-14 22:50:06 +00:00
Fix post processing shaders crashing on Intel GPUs (#6890)
This commit is contained in:
parent
1a6860f35c
commit
f3d92dd3b8
@ -41,9 +41,9 @@ constexpr char dolphin_shader_header[] = R"(
|
|||||||
#define lerp mix
|
#define lerp mix
|
||||||
|
|
||||||
// Output variable
|
// Output variable
|
||||||
out float4 color;
|
layout (location = 0) out float4 color;
|
||||||
// Input coordinates
|
// Input coordinates
|
||||||
in float2 frag_tex_coord;
|
layout (location = 0) in float2 frag_tex_coord;
|
||||||
// Resolution
|
// Resolution
|
||||||
uniform float4 i_resolution;
|
uniform float4 i_resolution;
|
||||||
uniform float4 o_resolution;
|
uniform float4 o_resolution;
|
||||||
|
Loading…
Reference in New Issue
Block a user