mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
llvmpipe: update for half float formats
This commit is contained in:
parent
f73feb9cd6
commit
00f8e5764d
1 changed files with 1 additions and 1 deletions
|
|
@ -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'):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue