Skip to content
Permalink
Browse files
Merge pull request #10311 from JosJuice/gles-sampler2dmsarray
GLES: Fix missing precision for sampler2DMSArray
  • Loading branch information
leoetlino committed Jan 1, 2022
2 parents c9a0c10 + 76b5085 commit 13939b1
Showing 1 changed file with 1 addition and 1 deletion.
@@ -838,7 +838,7 @@ void ProgramShaderCache::CreateHeader()
(is_glsles && g_ActiveConfig.backend_info.bSupportsPaletteConversion) ?
"precision highp usamplerBuffer;" :
"",
v > GlslEs300 ? "precision highp sampler2DMS;" : "",
v > GlslEs300 ? "precision highp sampler2DMSArray;" : "",
v >= GlslEs310 ? "precision highp image2DArray;" : "");
}

0 comments on commit 13939b1

Please sign in to comment.