diff options
author | Dave Airlie <[email protected]> | 2012-11-10 06:34:14 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2012-11-10 06:39:38 +1000 |
commit | add3a0709f3965107bb13d5305d80a225275c344 (patch) | |
tree | 9f98032008e55c6cb3c14912f1fc9752bda6a356 /src/gallium/drivers/llvmpipe | |
parent | eb44c36df842af010269eda1be77c4aea8ebe736 (diff) |
gallium: fix unused cap warnings in drivers for cube map array cap.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 19ffd4ee9ae..e81c44151bb 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -213,6 +213,7 @@ llvmpipe_get_param(struct pipe_screen *screen, enum pipe_cap param) case PIPE_CAP_QUERY_TIMESTAMP: case PIPE_CAP_TEXTURE_MULTISAMPLE: case PIPE_CAP_MIN_MAP_BUFFER_ALIGNMENT: + case PIPE_CAP_CUBE_MAP_ARRAY: return 0; } /* should only get here on unhandled cases */ |