summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_screen.c
diff options
context:
space:
mode:
authorPatrice Mandin <patmandin@gmail.com>2009-07-14 09:44:49 +0200
committerPatrice Mandin <patmandin@gmail.com>2009-07-14 09:44:49 +0200
commit54cf63278ff28eb03503f649c46bf24437a1cbf8 (patch)
tree34305ced511ba128cef2c2f1d40c20fb750437ae /src/gallium/drivers/softpipe/sp_screen.c
parent33f56b4612e506999a2be8391ba82c0174afa1b3 (diff)
gallium: Define PIPE_CAP_BLEND_EQUATION_SEPARATE, remove extension from default extension list
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_screen.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_screen.c2
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 be76f1d413..6178c4ac7e 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;
}