2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

glsl: Add missing ; in EmitSetSampleMask

Fixes shader compilation in Okami HD
This commit is contained in:
Morph 2021-06-18 03:31:13 -04:00 committed by ameerj
parent 838d7e4ca5
commit cfbc85839d

View file

@ -409,7 +409,7 @@ void EmitSetFragColor(EmitContext& ctx, u32 index, u32 component, std::string_vi
}
void EmitSetSampleMask(EmitContext& ctx, std::string_view value) {
ctx.Add("gl_SampleMask[0]=int({})", value);
ctx.Add("gl_SampleMask[0]=int({});", value);
}
void EmitSetFragDepth(EmitContext& ctx, std::string_view value) {