diff options
author | Vasily Khoruzhick <[email protected]> | 2020-01-10 19:58:41 -0800 |
---|---|---|
committer | Vasily Khoruzhick <[email protected]> | 2020-01-12 00:10:04 -0800 |
commit | f06be7945725c89851380883e263c129d3b395a3 (patch) | |
tree | cf2e858ed8162ea8144d99f6617385d61b845b25 /src/gallium/drivers/lima | |
parent | 8a421135fa3c55bd2ef39f6ef07981aa415f6c22 (diff) |
lima: fix PIPE_CAP_* to mark features that aren't supported yet
lima doesn't support alpha test, flat shading, two-sided color nor
clip planes. We can enable these caps when corresponding hw features
are implemented in the driver.
Reviewed-by: Qiang Yu <[email protected]>
Tested-by: Andreas Baierl <[email protected]>
Signed-off-by: Vasily Khoruzhick <[email protected]>
Diffstat (limited to 'src/gallium/drivers/lima')
-rw-r--r-- | src/gallium/drivers/lima/lima_screen.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/lima/lima_screen.c b/src/gallium/drivers/lima/lima_screen.c index 5d2696e4866..8a933951c06 100644 --- a/src/gallium/drivers/lima/lima_screen.c +++ b/src/gallium/drivers/lima/lima_screen.c @@ -143,6 +143,12 @@ lima_screen_get_param(struct pipe_screen *pscreen, enum pipe_cap param) case PIPE_CAP_PREFER_BLIT_BASED_TEXTURE_TRANSFER: return 0; + case PIPE_CAP_ALPHA_TEST: + case PIPE_CAP_FLATSHADE: + case PIPE_CAP_TWO_SIDED_COLOR: + case PIPE_CAP_CLIP_PLANES: + return 0; + default: return u_pipe_screen_get_param_defaults(pscreen, param); } |