diff options
author | Stephane Marchesin <[email protected]> | 2007-01-14 20:37:57 +0100 |
---|---|---|
committer | Stephane Marchesin <[email protected]> | 2007-01-14 20:39:00 +0100 |
commit | 8d7e5651fba9fd62e1055c05d1814c7d2de7f43c (patch) | |
tree | aeafc8167722c22994d9e356b884ea98dd53683e /src/mesa/drivers/dri/nouveau/nouveau_swtcl.c | |
parent | d57ce408b34b604f9b85114eedc88b5463df4218 (diff) |
nouveau: add the nv04 swtcl module (it's untested for now).
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 746b0fac8c0..f5c92a1b4e6 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_swtcl.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_swtcl.c @@ -82,7 +82,7 @@ void nouveauFallback(struct nouveau_context *nmesa, GLuint bit, GLboolean mode) nmesa->Fallback |= bit; if (oldfallback == 0) { if (nmesa->screen->card->type<NV_10) { - //nv03FinishPrimitive(nmesa); + //nv04FinishPrimitive(nmesa); } else { nv10FinishPrimitive(nmesa); } @@ -97,7 +97,7 @@ void nouveauFallback(struct nouveau_context *nmesa, GLuint bit, GLboolean mode) _swrast_flush( ctx ); if (nmesa->screen->card->type<NV_10) { - //nv03TriInitFunctions(ctx); + //nv04TriInitFunctions(ctx); } else { nv10TriInitFunctions(ctx); } |