diff options
author | Brian Paul <[email protected]> | 2006-04-06 22:11:57 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-04-06 22:11:57 +0000 |
commit | 51faca127005c41277df76bc8eafc8fd64ca0673 (patch) | |
tree | 3ef6f2ae8f1616746e8d7316b0ca8d23267081e0 /src/mesa/tnl/t_vb_arbshader.c | |
parent | f51a32e82a907363a77d91b855e519f43191cad8 (diff) |
Rename CLIP_ALL_BITS to CLIP_FRUSTUM_BITS to reflect the fact that the value
only includes the 6 frustum bits, not the user-clip plane bit, nor the vertex
cull bit.
Diffstat (limited to 'src/mesa/tnl/t_vb_arbshader.c')
-rw-r--r-- | src/mesa/tnl/t_vb_arbshader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vb_arbshader.c b/src/mesa/tnl/t_vb_arbshader.c index a2e6b37cd30..88d7f6ac8cc 100644 --- a/src/mesa/tnl/t_vb_arbshader.c +++ b/src/mesa/tnl/t_vb_arbshader.c @@ -227,7 +227,7 @@ static GLboolean run_arb_vertex_shader (GLcontext *ctx, struct tnl_pipeline_stag vb->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->outputs[VERT_RESULT_PSIZ];
store->ormask = 0;
- store->andmask = CLIP_ALL_BITS;
+ store->andmask = CLIP_FRUSTUM_BITS;
if (tnl->NeedNdcCoords)
{
|