diff options
author | Brian Paul <[email protected]> | 2005-10-31 21:52:56 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-31 21:52:56 +0000 |
commit | ffec105109f5b16bfe8282bd477d4aa32b550015 (patch) | |
tree | cb7680c14b8d0630b3075745aa9ec07889743643 /src/mesa/drivers/dri/r200 | |
parent | dcf4c17fb1624af47181c63af4c3ad29f919c17a (diff) |
fix problems found with gcc 2.96 (bug 4934)
Diffstat (limited to 'src/mesa/drivers/dri/r200')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_swtcl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_swtcl.c b/src/mesa/drivers/dri/r200/r200_swtcl.c index 826c668b8d1..58879a59011 100644 --- a/src/mesa/drivers/dri/r200/r200_swtcl.c +++ b/src/mesa/drivers/dri/r200/r200_swtcl.c @@ -219,6 +219,8 @@ void r200ChooseVertexState( GLcontext *ctx ) { r200ContextPtr rmesa = R200_CONTEXT( ctx ); TNLcontext *tnl = TNL_CONTEXT(ctx); + GLuint vte; + GLuint vap; /* We must ensure that we don't do _tnl_need_projected_coords while in a * rasterization fallback. As this function will be called again when we @@ -227,8 +229,8 @@ void r200ChooseVertexState( GLcontext *ctx ) if (rmesa->Fallback != 0) return; - GLuint vte = rmesa->hw.vte.cmd[VTE_SE_VTE_CNTL]; - GLuint vap = rmesa->hw.vap.cmd[VAP_SE_VAP_CNTL]; + vte = rmesa->hw.vte.cmd[VTE_SE_VTE_CNTL]; + vap = rmesa->hw.vap.cmd[VAP_SE_VAP_CNTL]; /* HW perspective divide is a win, but tiny vertex formats are a * bigger one. |