From: Corbin Simpson Date: Fri, 26 Jun 2009 23:32:53 +0000 (-0700) Subject: r300g: PIPE_CAP_TGSI_CONT_SUPPORTED. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6a926f9997964df10cf77953b92d585b287c58a4;p=profile%2Fivi%2Fmesa.git r300g: PIPE_CAP_TGSI_CONT_SUPPORTED. --- diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index a6f1efe..26da389 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);