diff options
author | Daniel Borca <[email protected]> | 2004-06-08 06:08:56 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-06-08 06:08:56 +0000 |
commit | a94185474d38f88f141d45d8d42bf9ea081c483d (patch) | |
tree | c2350a743f4aae4b70ff885a5965390bc2072a4b /src/mesa/drivers/glide/fxvb.c | |
parent | 06668ed20ac0ae3fd031ee3f99e61ca58476995c (diff) |
corrected a bug wrt point_size
Diffstat (limited to 'src/mesa/drivers/glide/fxvb.c')
-rw-r--r-- | src/mesa/drivers/glide/fxvb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/glide/fxvb.c b/src/mesa/drivers/glide/fxvb.c index ac2574a6b5b..f00f2644295 100644 --- a/src/mesa/drivers/glide/fxvb.c +++ b/src/mesa/drivers/glide/fxvb.c @@ -526,7 +526,7 @@ void fxChooseVertexState( GLcontext *ctx ) ind |= SETUP_TMU0; } - if (ctx->_TriangleCaps & (DD_POINT_SIZE|DD_POINT_ATTEN)) { + if (ctx->_TriangleCaps & DD_POINT_ATTEN) { ind |= SETUP_PSIZ; } |