diff options
author | Roland Scheidegger <[email protected]> | 2010-01-26 17:32:57 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-01-26 17:32:57 +0100 |
commit | 1a9d01dcde26aee4db662deb7069fa14069062de (patch) | |
tree | 5f9310b7b6e9536a882a43815ffc0566fdabdfc2 /src/gallium/drivers/llvmpipe/lp_screen.c | |
parent | 786bd78be4a412e58ded6eed1d6d3e4a61b1ba2b (diff) |
gallium: add the new PIPE_CAP blend bits to more drivers
some drivers will complain if they don't know the cap bit
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_screen.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 9b47415f003..f04c0320ba0 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -110,6 +110,10 @@ llvmpipe_get_param(struct pipe_screen *screen, int param) return 1; case PIPE_CAP_BLEND_EQUATION_SEPARATE: return 1; + case PIPE_CAP_INDEP_BLEND_ENABLE: + return 0; + case PIPE_CAP_INDEP_BLEND_FUNC: + return 0; default: return 0; } |