diff options
author | Stephane Marchesin <[email protected]> | 2007-02-04 03:17:06 +0100 |
---|---|---|
committer | Stephane Marchesin <[email protected]> | 2007-02-04 03:20:01 +0100 |
commit | 63568745863a54308fecc32dbb96397c35b22496 (patch) | |
tree | e5b982241080f1fb1f64e3bb8b1dd646d8b80587 /src/mesa/drivers/dri/nouveau/nouveau_swtcl.c | |
parent | f8ec7f1398e600f4ed2ff3d0fb8d77d706f0fc18 (diff) |
nouveau: fix nv04 and nv10 swtcl, more work on nv04 state.
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nouveau_swtcl.c')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_swtcl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_swtcl.c b/src/mesa/drivers/dri/nouveau/nouveau_swtcl.c index f5c92a1b4e6..8a013bd9995 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_swtcl.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_swtcl.c @@ -84,7 +84,7 @@ void nouveauFallback(struct nouveau_context *nmesa, GLuint bit, GLboolean mode) if (nmesa->screen->card->type<NV_10) { //nv04FinishPrimitive(nmesa); } else { - nv10FinishPrimitive(nmesa); + //nv10FinishPrimitive(nmesa); } _swsetup_Wakeup(ctx); @@ -97,7 +97,7 @@ void nouveauFallback(struct nouveau_context *nmesa, GLuint bit, GLboolean mode) _swrast_flush( ctx ); if (nmesa->screen->card->type<NV_10) { - //nv04TriInitFunctions(ctx); + nv04TriInitFunctions(ctx); } else { nv10TriInitFunctions(ctx); } |