summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv40
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-03-08 14:02:38 -0700
committerBrian Paul <brianp@vmware.com>2010-03-08 16:26:44 -0700
commit891f7f4d52656ddbb445ef1992e8de05763ce680 (patch)
tree4bd5588ca8c306fd0ba4db0df9dc8a1eaeeee313 /src/gallium/drivers/nv40
parentac2e8491117dcf4a608eff4f52a9e34c1bea2a03 (diff)
nv: define NV30/40/50_MAX_TEXTURE_LEVELS
Diffstat (limited to 'src/gallium/drivers/nv40')
-rw-r--r--src/gallium/drivers/nv40/nv40_state.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv40/nv40_state.h b/src/gallium/drivers/nv40/nv40_state.h
index 192074e747..e2e69420ea 100644
--- a/src/gallium/drivers/nv40/nv40_state.h
+++ b/src/gallium/drivers/nv40/nv40_state.h
@@ -73,6 +73,8 @@ struct nv40_fragment_program {
struct nouveau_stateobj *so;
};
+#define NV40_MAX_TEXTURE_LEVELS 16
+
struct nv40_miptree {
struct pipe_texture base;
struct nouveau_bo *bo;
@@ -83,7 +85,7 @@ struct nv40_miptree {
struct {
uint pitch;
uint *image_offset;
- } level[PIPE_MAX_TEXTURE_LEVELS];
+ } level[NV40_MAX_TEXTURE_LEVELS];
};
#endif