diff options
author | Corbin Simpson <[email protected]> | 2009-06-26 16:32:53 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-06-26 21:25:40 -0700 |
commit | 6a926f9997964df10cf77953b92d585b287c58a4 (patch) | |
tree | e60e10419d11c6eae3bb657173bea65f2fe36384 /src/gallium/drivers/r300 | |
parent | f80b7f46835f42065d2489f2e1f501187ee026b6 (diff) |
r300g: PIPE_CAP_TGSI_CONT_SUPPORTED.
Diffstat (limited to 'src/gallium/drivers/r300')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.c | 3 |
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 a6f1efe3563..26da3899101 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); |