diff options
author | Corbin Simpson <[email protected]> | 2009-07-23 01:04:26 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-07-23 07:18:29 -0700 |
commit | 256eacbde44829b6f3874743e8df6102ce7a6ef0 (patch) | |
tree | 1000b71e03e77c80ef90ab99797cf9b408c13db2 /src/gallium | |
parent | d0d98f3ecfed7d7e0c4426185c13ec4f7c1761f9 (diff) |
r300g: PIPE_CAP_BLEND_EQUATION_SEPARATE.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/r300/r300_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c index da1d5ffe2fd..258e4ac7b2a 100644 --- a/src/gallium/drivers/r300/r300_screen.c +++ b/src/gallium/drivers/r300/r300_screen.c @@ -147,6 +147,8 @@ static int r300_get_param(struct pipe_screen* pscreen, int param) case PIPE_CAP_TGSI_CONT_SUPPORTED: /* XXX */ return 0; + case PIPE_CAP_BLEND_EQUATION_SEPARATE: + return 1; default: debug_printf("r300: Implementation error: Bad param %d\n", param); |