diff options
author | Brian Paul <[email protected]> | 2010-03-17 17:39:49 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-03-17 17:40:13 -0600 |
commit | 05a980ac2a6b74af0436c1bb15c986a8160ec2eb (patch) | |
tree | e46eae3696d86a9a0b8ba5e23aba91823e1a1146 /src/gallium/drivers/cell | |
parent | 6dd4054ca544952393f74eee1b37406404d7d823 (diff) |
cell: return 1 for PIPE_CAP_BLEND_EQUATION_SEPARATE
With this feature, we get OpenGL version 2.0 and the progs/glsl/
demos run as-is.
Diffstat (limited to 'src/gallium/drivers/cell')
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_screen.c b/src/gallium/drivers/cell/ppu/cell_screen.c index eada62181af..7957e0149d7 100644 --- a/src/gallium/drivers/cell/ppu/cell_screen.c +++ b/src/gallium/drivers/cell/ppu/cell_screen.c @@ -95,6 +95,8 @@ cell_get_param(struct pipe_screen *screen, int param) case PIPE_CAP_TGSI_FS_COORD_ORIGIN_LOWER_LEFT: case PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_INTEGER: return 0; + case PIPE_CAP_BLEND_EQUATION_SEPARATE: + return 1; default: return 0; } |