summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2010-01-26 07:21:40 -0800
committerCorbin Simpson <MostAwesomeDude@gmail.com>2010-01-26 07:35:33 -0800
commit786bd78be4a412e58ded6eed1d6d3e4a61b1ba2b (patch)
tree7c8ff6325f22f58e25eb04ce3a97961fc016efc7 /src/gallium/drivers/r300
parent9bc80ff17496feda3b47cf40e577976237f87957 (diff)
r300g: Per-MRT blending is not supported.
Diffstat (limited to 'src/gallium/drivers/r300')
-rw-r--r--src/gallium/drivers/r300/r300_screen.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_screen.c b/src/gallium/drivers/r300/r300_screen.c
index 67325c6b80..ebe8793486 100644
--- a/src/gallium/drivers/r300/r300_screen.c
+++ b/src/gallium/drivers/r300/r300_screen.c
@@ -149,6 +149,9 @@ static int r300_get_param(struct pipe_screen* pscreen, int param)
} else {
return 0;
}
+ case PIPE_CAP_INDEP_BLEND_ENABLE:
+ case PIPE_CAP_INDEP_BLEND_FUNC:
+ return 0;
default:
debug_printf("r300: Implementation error: Bad param %d\n",
param);