Skip to content
This repository was archived by the owner on Nov 30, 2020. It is now read-only.

Commit ebe1535

Browse files
authored
Merge pull request #443 from Unity-Technologies/mobile-fixes
OpenGL ES 3: Disable ColorGrading 3D lut code path
2 parents 945c17c + bb31daf commit ebe1535

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PostProcessing/Runtime/Effects/ColorGrading.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ public override void Render(PostProcessRenderContext context)
176176
var gradingMode = settings.gradingMode.value;
177177
var supportComputeTex3D = SystemInfo.supports3DRenderTextures
178178
&& SystemInfo.supportsComputeShaders
179-
&& SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLCore;
179+
&& SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLCore
180+
&& SystemInfo.graphicsDeviceType != GraphicsDeviceType.OpenGLES3;
180181

181182
if (gradingMode == GradingMode.External)
182183
RenderExternalPipeline3D(context);

0 commit comments

Comments
 (0)