Fix post processing shaders crashing on Intel GPUs (#6890)

This commit is contained in:
Vitor K 2023-08-17 17:17:24 -03:00 committed by GitHub
parent 1a6860f35c
commit f3d92dd3b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;