summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv40/nv40_screen.c
diff options
context:
space:
mode:
authorLuca Barbieri <luca@luca-barbieri.com>2010-02-21 13:40:49 +0100
committerYounes Manton <younes.m@gmail.com>2010-03-15 00:03:01 -0400
commit6518a1c853e82a42b28027b1304babd4f02f98ef (patch)
treea91016d5bcf0734ecfefa5bdcfc92d139f7ba494 /src/gallium/drivers/nv40/nv40_screen.c
parentb8e56d4cddbd9c491b940e3ce5974c526802c752 (diff)
nv30, nv40: add is_nv4x member to context and screen structs
This will make it faster to check for nv40.
Diffstat (limited to 'src/gallium/drivers/nv40/nv40_screen.c')
-rw-r--r--src/gallium/drivers/nv40/nv40_screen.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv40/nv40_screen.c b/src/gallium/drivers/nv40/nv40_screen.c
index 0fc8e18750..c64864d58d 100644
--- a/src/gallium/drivers/nv40/nv40_screen.c
+++ b/src/gallium/drivers/nv40/nv40_screen.c
@@ -184,6 +184,9 @@ nv40_screen_create(struct pipe_winsys *ws, struct nouveau_device *dev)
if (!screen)
return NULL;
+
+ screen->is_nv4x = ~0;
+
pscreen = &screen->base.base;
ret = nouveau_screen_init(&screen->base, dev);