summaryrefslogtreecommitdiff
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-06-26 16:32:53 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-06-26 21:25:40 -0700
commit6a926f9997964df10cf77953b92d585b287c58a4 (patch)
treee60e10419d11c6eae3bb657173bea65f2fe36384 /src/gallium/drivers
parentf80b7f46835f42065d2489f2e1f501187ee026b6 (diff)
r300g: PIPE_CAP_TGSI_CONT_SUPPORTED.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/r300/r300_screen.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c
index a6f1efe356..26da389910 100644
--- a/src/gallium/drivers/r300/r300_screen.c
+++ b/src/gallium/drivers/r300/r300_screen.c
@@ -145,6 +145,9 @@ static int r300_get_param(struct pipe_screen* pscreen, int param)
case PIPE_CAP_MAX_VERTEX_TEXTURE_UNITS:
/* XXX guessing (what a terrible guess) */
return 2;
+ case PIPE_CAP_TGSI_CONT_SUPPORTED:
+ /* XXX */
+ return 0;
default:
debug_printf("r300: Implementation error: Bad param %d\n",
param);