diff options
author | keithw <keithw> | 2002-06-12 13:57:18 +0000 |
---|---|---|
committer | keithw <keithw> | 2002-06-12 13:57:18 +0000 |
commit | 8264a30b8fa7a5fd906b878b96e195db7dfad28c (patch) | |
tree | 724d75d1dd6007d322a7c9075c0175b28c4eb766 | |
parent | c6a6dae29acacdcfdadd5d01d1d8aa2495151375 (diff) |
send correct argument to ctx->Driver.ClipPlanetcl-0-0-20020612
-rw-r--r-- | xc/extras/Mesa/src/attrib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xc/extras/Mesa/src/attrib.c b/xc/extras/Mesa/src/attrib.c index a6323ad04..9883ecfb5 100644 --- a/xc/extras/Mesa/src/attrib.c +++ b/xc/extras/Mesa/src/attrib.c @@ -1038,7 +1038,7 @@ _mesa_PopAttrib(void) _mesa_set_enable(ctx, GL_CLIP_PLANE0 + i, GL_FALSE ); } if (ctx->Driver.ClipPlane) - ctx->Driver.ClipPlane( ctx, i, eyePlane ); + ctx->Driver.ClipPlane( ctx, GL_CLIP_PLANE0 + i, eyePlane ); } /* normalize/rescale */ |