summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv30/nv30_screen.c
diff options
context:
space:
mode:
authorPatrice Mandin <pmandin@caramail.com>2008-07-12 15:07:02 +0200
committerPatrice Mandin <pmandin@caramail.com>2008-07-12 15:07:02 +0200
commit1d50e26f4afc0c7cdcd843a1336a90cdfc76765b (patch)
tree856cc99f7d807e6f162002d255594a8ec71f071f /src/gallium/drivers/nv30/nv30_screen.c
parentfa167eedeba601f3281655f779331ea9f4eaa5cf (diff)
nv30: no npot textures
Diffstat (limited to 'src/gallium/drivers/nv30/nv30_screen.c')
-rw-r--r--src/gallium/drivers/nv30/nv30_screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv30/nv30_screen.c b/src/gallium/drivers/nv30/nv30_screen.c
index 54fc245bc6..b216a70318 100644
--- a/src/gallium/drivers/nv30/nv30_screen.c
+++ b/src/gallium/drivers/nv30/nv30_screen.c
@@ -32,7 +32,7 @@ nv30_screen_get_param(struct pipe_screen *pscreen, int param)
case PIPE_CAP_MAX_TEXTURE_IMAGE_UNITS:
return 16;
case PIPE_CAP_NPOT_TEXTURES:
- return 1;
+ return 0;
case PIPE_CAP_TWO_SIDED_STENCIL:
return 1;
case PIPE_CAP_GLSL: