diff options
author | Brian Paul <[email protected]> | 2010-10-23 10:27:19 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-10-23 10:27:21 -0600 |
commit | d8740b77ac30298c1742107e2afc4edabca562f0 (patch) | |
tree | 7b4a6046e50898383422102300dabd4834c35da7 /src/gallium/drivers/softpipe/sp_screen.c | |
parent | e6ac8d5353dda1b859dbc1219ca4e91c9183ae85 (diff) |
softpipe: remove >32bpp color restriction
The comment was out of date. The tile cache does handle >32-bit colors.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_screen.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index a2bfa1bd8d5..d90cf56808c 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -209,13 +209,6 @@ softpipe_is_format_supported( struct pipe_screen *screen, if (format_desc->block.width != 1 || format_desc->block.height != 1) return FALSE; - - /* - * TODO: Unfortunately we cannot render into anything more than 32 bits - * because we encode color clear values into a 32bit word. - */ - if (format_desc->block.bits > 32) - return FALSE; } if (bind & PIPE_BIND_DEPTH_STENCIL) { |