summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@vmware.com>2010-01-26 17:32:57 +0100
committerRoland Scheidegger <sroland@vmware.com>2010-01-26 17:32:57 +0100
commit1a9d01dcde26aee4db662deb7069fa14069062de (patch)
tree5f9310b7b6e9536a882a43815ffc0566fdabdfc2 /src/gallium/drivers/llvmpipe
parent786bd78be4a412e58ded6eed1d6d3e4a61b1ba2b (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')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_screen.c4
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 9b47415f00..f04c0320ba 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;
}