diff options
author | Stephane Marchesin <marchesin@icps.u-strasbg.fr> | 2007-01-14 20:37:57 +0100 |
---|---|---|
committer | Stephane Marchesin <marchesin@icps.u-strasbg.fr> | 2007-01-14 20:39:00 +0100 |
commit | 8d7e5651fba9fd62e1055c05d1814c7d2de7f43c (patch) | |
tree | aeafc8167722c22994d9e356b884ea98dd53683e /src/mesa/drivers/dri/nouveau/nv04_swtcl.h | |
parent | d57ce408b34b604f9b85114eedc88b5463df4218 (diff) |
nouveau: add the nv04 swtcl module (it's untested for now).
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nv04_swtcl.h')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nv04_swtcl.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nv04_swtcl.h b/src/mesa/drivers/dri/nouveau/nv04_swtcl.h new file mode 100644 index 0000000000..42dde5383e --- /dev/null +++ b/src/mesa/drivers/dri/nouveau/nv04_swtcl.h @@ -0,0 +1,12 @@ +#ifndef __NV04_SWTCL_H__ +#define __NV04_SWTCL_H__ + +#include "mtypes.h" + +extern void nv04Fallback( GLcontext *ctx, GLuint bit, GLboolean mode ); +extern void nv04FinishPrimitive(struct nouveau_context *nmesa); +extern void nv04TriInitFunctions(GLcontext *ctx); +#define FALLBACK( nmesa, bit, mode ) nouveauFallback( nmesa->glCtx, bit, mode ) + +#endif /* __NV04_SWTCL_H__ */ + |