summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_tile_soa.py
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@vmware.com>2010-04-23 19:26:03 +0100
committerAlan Hourihane <alanh@vmware.com>2010-04-23 19:26:03 +0100
commit00f8e5764d5b41714704c94575a5b6f873340a2f (patch)
treeed57ea3c333060b8038ab6e314c9a9a1d62aa38f /src/gallium/drivers/llvmpipe/lp_tile_soa.py
parentf73feb9cd6095d82b87e7022c351408e6e232797 (diff)
llvmpipe: update for half float formats
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_tile_soa.py')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_tile_soa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_tile_soa.py b/src/gallium/drivers/llvmpipe/lp_tile_soa.py
index 65810b6f8f..4e9cd7e123 100644
--- a/src/gallium/drivers/llvmpipe/lp_tile_soa.py
+++ b/src/gallium/drivers/llvmpipe/lp_tile_soa.py
@@ -58,7 +58,7 @@ def is_format_supported(format):
channel = format.channels[i]
if channel.type not in (VOID, UNSIGNED, SIGNED, FLOAT):
return False
- if channel.type == FLOAT and channel.size not in (32 ,64):
+ if channel.type == FLOAT and channel.size not in (16, 32 ,64):
return False
if format.colorspace not in ('rgb', 'srgb'):