meta: Only use _mesa_ClipControl if the extension is supported
authorIan Romanick <ian.d.romanick@intel.com>
Sat, 25 Oct 2014 00:59:05 +0000 (17:59 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Sat, 25 Oct 2014 02:24:54 +0000 (19:24 -0700)
Fixes many piglit failures on IVB since 85edaa8.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=85425
Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
Cc: Mathias Fröhlich <Mathias.Froehlich@gmx.net>
src/mesa/drivers/common/meta.c

index 45c50fd5d8f0714d6e894a85b30c3f6008f7a0cf..87532c1dfea0a4c11076a67ce71b966ba610e729 100644 (file)
@@ -681,9 +681,11 @@ _mesa_meta_begin(struct gl_context *ctx, GLbitfield state)
                      0.0, ctx->DrawBuffer->Height,
                      -1.0, 1.0);
 
-      save->ClipOrigin = ctx->Transform.ClipOrigin;
-      save->ClipDepthMode = ctx->Transform.ClipDepthMode;
-      _mesa_ClipControl(GL_LOWER_LEFT, GL_NEGATIVE_ONE_TO_ONE);
+      if (ctx->Extensions.ARB_clip_control) {
+         save->ClipOrigin = ctx->Transform.ClipOrigin;
+         save->ClipDepthMode = ctx->Transform.ClipDepthMode;
+         _mesa_ClipControl(GL_LOWER_LEFT, GL_NEGATIVE_ONE_TO_ONE);
+      }
    }
 
    if (state & MESA_META_CLIP) {
@@ -1086,7 +1088,8 @@ _mesa_meta_end(struct gl_context *ctx)
 
       _mesa_MatrixMode(save->MatrixMode);
 
-      _mesa_ClipControl(save->ClipOrigin, save->ClipDepthMode);
+      if (ctx->Extensions.ARB_clip_control)
+         _mesa_ClipControl(save->ClipOrigin, save->ClipDepthMode);
    }
 
    if (state & MESA_META_CLIP) {