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
|
||||
|
||||
// Output variable
|
||||
out float4 color;
|
||||
layout (location = 0) out float4 color;
|
||||
// Input coordinates
|
||||
in float2 frag_tex_coord;
|
||||
layout (location = 0) in float2 frag_tex_coord;
|
||||
// Resolution
|
||||
uniform float4 i_resolution;
|
||||
uniform float4 o_resolution;
|
||||
|
|
Reference in New Issue