diff options
author | Patrice Mandin <[email protected]> | 2009-07-14 09:44:49 +0200 |
---|---|---|
committer | Patrice Mandin <[email protected]> | 2009-07-14 09:44:49 +0200 |
commit | 54cf63278ff28eb03503f649c46bf24437a1cbf8 (patch) | |
tree | 34305ced511ba128cef2c2f1d40c20fb750437ae /src/gallium/drivers/softpipe | |
parent | 33f56b4612e506999a2be8391ba82c0174afa1b3 (diff) |
gallium: Define PIPE_CAP_BLEND_EQUATION_SEPARATE, remove extension from default extension list
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index be76f1d4135..6178c4ac7e3 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -89,6 +89,8 @@ softpipe_get_param(struct pipe_screen *screen, int param) return 13; /* max 4Kx4K */ case PIPE_CAP_TGSI_CONT_SUPPORTED: return 1; + case PIPE_CAP_BLEND_EQUATION_SEPARATE: + return 1; default: return 0; } |