Module: Mesa Branch: perrtblend Commit: 86d92fcbf51398ed7c1bf5be0fa54fa6683a06c0 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=86d92fcbf51398ed7c1bf5be0fa54fa6683a06c0
Author: Corbin Simpson <[email protected]> Date: Tue Jan 26 07:21:40 2010 -0800 r300g: Per-MRT blending is not supported. --- src/gallium/drivers/r300/r300_screen.c | 3 +++ 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 67325c6..27b5c1d 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_INDEPENDENT_BLEND_ENABLE: + case PIPE_CAP_INDEPENDENT_BLEND_FUNC: + return 0; default: debug_printf("r300: Implementation error: Bad param %d\n", param); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
