diff options
author | Brian Paul <brianp@vmware.com> | 2009-06-26 12:50:58 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-06-26 13:16:34 -0600 |
commit | af7fb892d8f1eff1f0e787bf8c7d65165e3aa51e (patch) | |
tree | efe54375451958d74ecbda74b4849f79e216313a /src/gallium | |
parent | f5dc352e5fbf9cd84638922e8dfdc4b5fb49538c (diff) |
softpipe: PIPE_CAP_TGSI_CONT_SUPPORTED query
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index a32fd3a1ba..cc39d33ede 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -87,6 +87,8 @@ softpipe_get_param(struct pipe_screen *screen, int param) return 8; /* max 128x128x128 */ case PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS: return 12; /* max 2Kx2K */ + case PIPE_CAP_TGSI_CONT_SUPPORTED: + return 1; default: return 0; } |