diff options
author | Luca Barbieri <luca@luca-barbieri.com> | 2010-08-24 22:27:46 +0200 |
---|---|---|
committer | Luca Barbieri <luca@luca-barbieri.com> | 2010-09-05 18:01:35 +0200 |
commit | 27732ebb037ab65e54153adbaf2501e306684815 (patch) | |
tree | fbe9813d9f1c1355f36850a490191499f7b27bd6 | |
parent | 49a9948b6a81b7d813304d081139d98e95ba5d1a (diff) |
softpipe: remove 32-bit size limit on render target format
-rw-r--r-- | src/gallium/drivers/softpipe/sp_screen.c | 2 |
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 73ae2dea56..9082a9683c 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -234,8 +234,10 @@ softpipe_is_format_supported( struct pipe_screen *screen, * TODO: Unfortunately we cannot render into anything more than 32 bits * because we encode color clear values into a 32bit word. */ + /* but we need it anyway, and the comment above might be out of date if (format_desc->block.bits > 32) return FALSE; + */ } if (bind & PIPE_BIND_DEPTH_STENCIL) { |