summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-06-26 12:51:05 -0600
committerBrian Paul <brianp@vmware.com>2009-06-26 13:16:34 -0600
commit928e1ce47ffa54dd73b141eb2e4c272378cdda7f (patch)
tree46cf387d61fde230f556132dde93d2f3d3e10916
parentaf7fb892d8f1eff1f0e787bf8c7d65165e3aa51e (diff)
cell: PIPE_CAP_TGSI_CONT_SUPPORTED query
-rw-r--r--src/gallium/drivers/cell/ppu/cell_screen.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_screen.c b/src/gallium/drivers/cell/ppu/cell_screen.c
index 512d85d352..bd48ce7005 100644
--- a/src/gallium/drivers/cell/ppu/cell_screen.c
+++ b/src/gallium/drivers/cell/ppu/cell_screen.c
@@ -86,6 +86,8 @@ cell_get_param(struct pipe_screen *screen, int param)
return 1; /* XXX not really true */
case PIPE_CAP_TEXTURE_MIRROR_CLAMP:
return 0; /* XXX to do */
+ case PIPE_CAP_TGSI_CONT_SUPPORTED:
+ return 1;
default:
return 0;
}