2009-08-30 12:02:36 +01:00
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2009 VMware, Inc.
|
|
|
|
|
* All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
|
* the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
|
* of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
|
|
|
* IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
|
|
|
|
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
2018-07-25 11:53:54 +02:00
|
|
|
from __future__ import division
|
|
|
|
|
|
|
|
|
|
|
2009-08-30 12:02:36 +01:00
|
|
|
VOID, UNSIGNED, SIGNED, FIXED, FLOAT = range(5)
|
|
|
|
|
|
|
|
|
|
SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W, SWIZZLE_0, SWIZZLE_1, SWIZZLE_NONE, = range(7)
|
|
|
|
|
|
2010-02-24 16:09:44 +00:00
|
|
|
PLAIN = 'plain'
|
2009-08-30 12:02:36 +01:00
|
|
|
|
2010-02-26 15:45:48 +00:00
|
|
|
RGB = 'rgb'
|
|
|
|
|
SRGB = 'srgb'
|
|
|
|
|
YUV = 'yuv'
|
|
|
|
|
ZS = 'zs'
|
|
|
|
|
|
2009-08-30 12:02:36 +01:00
|
|
|
|
2010-02-26 10:11:36 +00:00
|
|
|
def is_pot(x):
|
2010-05-19 06:41:35 -07:00
|
|
|
return (x & (x - 1)) == 0
|
2010-02-26 10:11:36 +00:00
|
|
|
|
|
|
|
|
|
2010-02-26 15:45:48 +00:00
|
|
|
VERY_LARGE = 99999999999999999999999
|
|
|
|
|
|
|
|
|
|
|
2010-02-26 11:03:06 +00:00
|
|
|
class Channel:
|
|
|
|
|
'''Describe the channel of a color channel.'''
|
2009-08-30 12:02:36 +01:00
|
|
|
|
2011-09-19 15:04:48 +01:00
|
|
|
def __init__(self, type, norm, pure, size, name = ''):
|
2010-02-26 11:03:06 +00:00
|
|
|
self.type = type
|
2009-08-30 12:02:36 +01:00
|
|
|
self.norm = norm
|
2011-09-19 15:04:48 +01:00
|
|
|
self.pure = pure
|
2009-08-30 12:02:36 +01:00
|
|
|
self.size = size
|
2010-02-26 11:03:06 +00:00
|
|
|
self.sign = type in (SIGNED, FIXED, FLOAT)
|
2010-02-26 15:45:48 +00:00
|
|
|
self.name = name
|
2009-08-30 12:02:36 +01:00
|
|
|
|
|
|
|
|
def __str__(self):
|
2010-02-26 11:03:06 +00:00
|
|
|
s = str(self.type)
|
2009-08-30 12:02:36 +01:00
|
|
|
if self.norm:
|
|
|
|
|
s += 'n'
|
2011-09-19 15:04:48 +01:00
|
|
|
if self.pure:
|
|
|
|
|
s += 'p'
|
2009-08-30 12:02:36 +01:00
|
|
|
s += str(self.size)
|
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
2018-08-09 10:27:18 +02:00
|
|
|
if other is None:
|
|
|
|
|
return False
|
|
|
|
|
|
2011-09-19 15:04:48 +01:00
|
|
|
return self.type == other.type and self.norm == other.norm and self.pure == other.pure and self.size == other.size
|
2009-08-30 12:02:36 +01:00
|
|
|
|
2018-08-09 10:27:18 +02:00
|
|
|
def __ne__(self, other):
|
|
|
|
|
return not self == other
|
|
|
|
|
|
2010-02-26 15:45:48 +00:00
|
|
|
def max(self):
|
|
|
|
|
'''Maximum representable number.'''
|
|
|
|
|
if self.type == FLOAT:
|
|
|
|
|
return VERY_LARGE
|
2010-04-07 22:16:18 +01:00
|
|
|
if self.type == FIXED:
|
2018-07-25 11:53:54 +02:00
|
|
|
return (1 << (self.size // 2)) - 1
|
2010-02-26 15:45:48 +00:00
|
|
|
if self.norm:
|
|
|
|
|
return 1
|
|
|
|
|
if self.type == UNSIGNED:
|
|
|
|
|
return (1 << self.size) - 1
|
|
|
|
|
if self.type == SIGNED:
|
2010-03-06 12:49:14 +00:00
|
|
|
return (1 << (self.size - 1)) - 1
|
2010-02-26 15:45:48 +00:00
|
|
|
assert False
|
|
|
|
|
|
|
|
|
|
def min(self):
|
|
|
|
|
'''Minimum representable number.'''
|
|
|
|
|
if self.type == FLOAT:
|
|
|
|
|
return -VERY_LARGE
|
2010-04-07 22:16:18 +01:00
|
|
|
if self.type == FIXED:
|
2018-07-25 11:53:54 +02:00
|
|
|
return -(1 << (self.size // 2))
|
2010-02-26 15:45:48 +00:00
|
|
|
if self.type == UNSIGNED:
|
|
|
|
|
return 0
|
|
|
|
|
if self.norm:
|
|
|
|
|
return -1
|
|
|
|
|
if self.type == SIGNED:
|
|
|
|
|
return -(1 << (self.size - 1))
|
|
|
|
|
assert False
|
|
|
|
|
|
2009-08-30 12:02:36 +01:00
|
|
|
|
|
|
|
|
class Format:
|
|
|
|
|
'''Describe a pixel format.'''
|
|
|
|
|
|
2019-08-14 12:09:04 -07:00
|
|
|
def __init__(self, name, layout, block_width, block_height, block_depth, le_channels, le_swizzles, be_channels, be_swizzles, colorspace):
|
2009-08-30 12:02:36 +01:00
|
|
|
self.name = name
|
|
|
|
|
self.layout = layout
|
|
|
|
|
self.block_width = block_width
|
|
|
|
|
self.block_height = block_height
|
2019-08-14 12:09:04 -07:00
|
|
|
self.block_depth = block_depth
|
2014-03-19 17:11:02 +00:00
|
|
|
self.le_channels = le_channels
|
|
|
|
|
self.le_swizzles = le_swizzles
|
|
|
|
|
self.be_channels = be_channels
|
|
|
|
|
self.be_swizzles = be_swizzles
|
2009-08-30 12:02:36 +01:00
|
|
|
self.name = name
|
|
|
|
|
self.colorspace = colorspace
|
|
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
|
return self.name
|
|
|
|
|
|
2010-02-24 15:10:46 +00:00
|
|
|
def short_name(self):
|
|
|
|
|
'''Make up a short norm for a format, suitable to be used as suffix in
|
|
|
|
|
function names.'''
|
|
|
|
|
|
|
|
|
|
name = self.name
|
|
|
|
|
if name.startswith('PIPE_FORMAT_'):
|
|
|
|
|
name = name[len('PIPE_FORMAT_'):]
|
|
|
|
|
name = name.lower()
|
|
|
|
|
return name
|
|
|
|
|
|
2009-08-30 12:02:36 +01:00
|
|
|
def block_size(self):
|
|
|
|
|
size = 0
|
2014-03-19 17:11:02 +00:00
|
|
|
for channel in self.le_channels:
|
2010-02-26 11:03:06 +00:00
|
|
|
size += channel.size
|
2009-08-30 12:02:36 +01:00
|
|
|
return size
|
|
|
|
|
|
2010-02-23 19:51:42 +00:00
|
|
|
def nr_channels(self):
|
|
|
|
|
nr_channels = 0
|
2014-03-19 17:11:02 +00:00
|
|
|
for channel in self.le_channels:
|
2010-02-26 11:03:06 +00:00
|
|
|
if channel.size:
|
2010-02-23 19:51:42 +00:00
|
|
|
nr_channels += 1
|
|
|
|
|
return nr_channels
|
|
|
|
|
|
2014-03-19 17:08:44 +00:00
|
|
|
def array_element(self):
|
2010-04-08 17:51:31 +01:00
|
|
|
if self.layout != PLAIN:
|
2014-03-19 17:08:44 +00:00
|
|
|
return None
|
2014-03-19 17:11:02 +00:00
|
|
|
ref_channel = self.le_channels[0]
|
2012-11-28 19:18:09 +00:00
|
|
|
if ref_channel.type == VOID:
|
2014-03-19 17:11:02 +00:00
|
|
|
ref_channel = self.le_channels[1]
|
|
|
|
|
for channel in self.le_channels:
|
2010-02-26 11:03:06 +00:00
|
|
|
if channel.size and (channel.size != ref_channel.size or channel.size % 8):
|
2014-03-19 17:08:44 +00:00
|
|
|
return None
|
2012-11-28 19:18:09 +00:00
|
|
|
if channel.type != VOID:
|
|
|
|
|
if channel.type != ref_channel.type:
|
2014-03-19 17:08:44 +00:00
|
|
|
return None
|
2012-11-28 19:18:09 +00:00
|
|
|
if channel.norm != ref_channel.norm:
|
2014-03-19 17:08:44 +00:00
|
|
|
return None
|
2012-11-28 19:18:09 +00:00
|
|
|
if channel.pure != ref_channel.pure:
|
2014-03-19 17:08:44 +00:00
|
|
|
return None
|
|
|
|
|
return ref_channel
|
|
|
|
|
|
|
|
|
|
def is_array(self):
|
|
|
|
|
return self.array_element() != None
|
2010-02-23 19:51:42 +00:00
|
|
|
|
|
|
|
|
def is_mixed(self):
|
2010-04-08 17:51:31 +01:00
|
|
|
if self.layout != PLAIN:
|
|
|
|
|
return False
|
2014-03-19 17:11:02 +00:00
|
|
|
ref_channel = self.le_channels[0]
|
2010-03-30 01:33:28 +02:00
|
|
|
if ref_channel.type == VOID:
|
2014-03-19 17:11:02 +00:00
|
|
|
ref_channel = self.le_channels[1]
|
|
|
|
|
for channel in self.le_channels[1:]:
|
2010-02-26 11:03:06 +00:00
|
|
|
if channel.type != VOID:
|
|
|
|
|
if channel.type != ref_channel.type:
|
2010-02-23 19:51:42 +00:00
|
|
|
return True
|
2010-02-26 11:03:06 +00:00
|
|
|
if channel.norm != ref_channel.norm:
|
2010-02-23 19:51:42 +00:00
|
|
|
return True
|
2011-09-19 15:04:48 +01:00
|
|
|
if channel.pure != ref_channel.pure:
|
|
|
|
|
return True
|
2010-02-23 19:51:42 +00:00
|
|
|
return False
|
|
|
|
|
|
2019-01-23 14:26:53 -08:00
|
|
|
def is_compressed(self):
|
|
|
|
|
for channel in self.le_channels:
|
|
|
|
|
if channel.type != VOID:
|
|
|
|
|
return False
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def is_unorm(self):
|
|
|
|
|
# Non-compressed formats all have unorm or srgb in their name.
|
|
|
|
|
for keyword in ['_UNORM', '_SRGB']:
|
|
|
|
|
if keyword in self.name:
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
# All the compressed formats in GLES3.2 and GL4.6 ("Table 8.14: Generic
|
|
|
|
|
# and specific compressed internal formats.") that aren't snorm for
|
|
|
|
|
# border colors are unorm, other than BPTC_*_FLOAT.
|
|
|
|
|
return self.is_compressed() and not ('FLOAT' in self.name or self.is_snorm())
|
|
|
|
|
|
|
|
|
|
def is_snorm(self):
|
|
|
|
|
return '_SNORM' in self.name
|
|
|
|
|
|
2010-02-26 10:11:36 +00:00
|
|
|
def is_pot(self):
|
|
|
|
|
return is_pot(self.block_size())
|
|
|
|
|
|
2010-02-26 11:03:06 +00:00
|
|
|
def is_int(self):
|
2010-04-08 17:51:31 +01:00
|
|
|
if self.layout != PLAIN:
|
|
|
|
|
return False
|
2014-03-19 17:11:02 +00:00
|
|
|
for channel in self.le_channels:
|
2010-02-26 11:03:06 +00:00
|
|
|
if channel.type not in (VOID, UNSIGNED, SIGNED):
|
|
|
|
|
return False
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def is_float(self):
|
2010-04-08 17:51:31 +01:00
|
|
|
if self.layout != PLAIN:
|
|
|
|
|
return False
|
2014-03-19 17:11:02 +00:00
|
|
|
for channel in self.le_channels:
|
2010-02-26 11:03:06 +00:00
|
|
|
if channel.type not in (VOID, FLOAT):
|
|
|
|
|
return False
|
|
|
|
|
return True
|
|
|
|
|
|
2010-02-26 15:45:48 +00:00
|
|
|
def is_bitmask(self):
|
2010-04-08 17:51:31 +01:00
|
|
|
if self.layout != PLAIN:
|
|
|
|
|
return False
|
2010-03-06 12:48:39 +00:00
|
|
|
if self.block_size() not in (8, 16, 32):
|
2010-02-26 15:45:48 +00:00
|
|
|
return False
|
2014-03-19 17:11:02 +00:00
|
|
|
for channel in self.le_channels:
|
2010-02-26 15:45:48 +00:00
|
|
|
if channel.type not in (VOID, UNSIGNED, SIGNED):
|
|
|
|
|
return False
|
|
|
|
|
return True
|
|
|
|
|
|
2014-03-19 17:08:44 +00:00
|
|
|
def is_pure_color(self):
|
|
|
|
|
if self.layout != PLAIN or self.colorspace == ZS:
|
|
|
|
|
return False
|
|
|
|
|
pures = [channel.pure
|
2014-03-19 17:11:02 +00:00
|
|
|
for channel in self.le_channels
|
2014-03-19 17:08:44 +00:00
|
|
|
if channel.type != VOID]
|
|
|
|
|
for x in pures:
|
|
|
|
|
assert x == pures[0]
|
|
|
|
|
return pures[0]
|
|
|
|
|
|
|
|
|
|
def channel_type(self):
|
|
|
|
|
types = [channel.type
|
2014-03-19 17:11:02 +00:00
|
|
|
for channel in self.le_channels
|
2014-03-19 17:08:44 +00:00
|
|
|
if channel.type != VOID]
|
|
|
|
|
for x in types:
|
|
|
|
|
assert x == types[0]
|
|
|
|
|
return types[0]
|
|
|
|
|
|
|
|
|
|
def is_pure_signed(self):
|
|
|
|
|
return self.is_pure_color() and self.channel_type() == SIGNED
|
|
|
|
|
|
|
|
|
|
def is_pure_unsigned(self):
|
|
|
|
|
return self.is_pure_color() and self.channel_type() == UNSIGNED
|
|
|
|
|
|
|
|
|
|
def has_channel(self, id):
|
2014-03-19 17:11:02 +00:00
|
|
|
return self.le_swizzles[id] != SWIZZLE_NONE
|
2014-03-19 17:08:44 +00:00
|
|
|
|
|
|
|
|
def has_depth(self):
|
|
|
|
|
return self.colorspace == ZS and self.has_channel(0)
|
|
|
|
|
|
|
|
|
|
def has_stencil(self):
|
|
|
|
|
return self.colorspace == ZS and self.has_channel(1)
|
|
|
|
|
|
2009-08-30 12:02:36 +01:00
|
|
|
def stride(self):
|
|
|
|
|
return self.block_size()/8
|
|
|
|
|
|
|
|
|
|
|
2010-02-26 11:03:06 +00:00
|
|
|
_type_parse_map = {
|
2009-08-30 12:02:36 +01:00
|
|
|
'': VOID,
|
|
|
|
|
'x': VOID,
|
|
|
|
|
'u': UNSIGNED,
|
|
|
|
|
's': SIGNED,
|
|
|
|
|
'h': FIXED,
|
|
|
|
|
'f': FLOAT,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_swizzle_parse_map = {
|
|
|
|
|
'x': SWIZZLE_X,
|
|
|
|
|
'y': SWIZZLE_Y,
|
|
|
|
|
'z': SWIZZLE_Z,
|
|
|
|
|
'w': SWIZZLE_W,
|
|
|
|
|
'0': SWIZZLE_0,
|
|
|
|
|
'1': SWIZZLE_1,
|
|
|
|
|
'_': SWIZZLE_NONE,
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-19 17:10:12 +00:00
|
|
|
def _parse_channels(fields, layout, colorspace, swizzles):
|
|
|
|
|
if layout == PLAIN:
|
|
|
|
|
names = ['']*4
|
|
|
|
|
if colorspace in (RGB, SRGB):
|
|
|
|
|
for i in range(4):
|
|
|
|
|
swizzle = swizzles[i]
|
|
|
|
|
if swizzle < 4:
|
|
|
|
|
names[swizzle] += 'rgba'[i]
|
|
|
|
|
elif colorspace == ZS:
|
|
|
|
|
for i in range(4):
|
|
|
|
|
swizzle = swizzles[i]
|
|
|
|
|
if swizzle < 4:
|
|
|
|
|
names[swizzle] += 'zs'[i]
|
|
|
|
|
else:
|
|
|
|
|
assert False
|
|
|
|
|
for i in range(4):
|
|
|
|
|
if names[i] == '':
|
|
|
|
|
names[i] = 'x'
|
|
|
|
|
else:
|
|
|
|
|
names = ['x', 'y', 'z', 'w']
|
|
|
|
|
|
|
|
|
|
channels = []
|
|
|
|
|
for i in range(0, 4):
|
|
|
|
|
field = fields[i]
|
|
|
|
|
if field:
|
|
|
|
|
type = _type_parse_map[field[0]]
|
|
|
|
|
if field[1] == 'n':
|
|
|
|
|
norm = True
|
|
|
|
|
pure = False
|
|
|
|
|
size = int(field[2:])
|
|
|
|
|
elif field[1] == 'p':
|
|
|
|
|
pure = True
|
|
|
|
|
norm = False
|
|
|
|
|
size = int(field[2:])
|
|
|
|
|
else:
|
|
|
|
|
norm = False
|
|
|
|
|
pure = False
|
|
|
|
|
size = int(field[1:])
|
|
|
|
|
else:
|
|
|
|
|
type = VOID
|
|
|
|
|
norm = False
|
|
|
|
|
pure = False
|
|
|
|
|
size = 0
|
|
|
|
|
channel = Channel(type, norm, pure, size, names[i])
|
|
|
|
|
channels.append(channel)
|
|
|
|
|
|
|
|
|
|
return channels
|
|
|
|
|
|
2009-08-30 12:02:36 +01:00
|
|
|
def parse(filename):
|
2016-01-29 02:58:29 +01:00
|
|
|
'''Parse the format description in CSV format in terms of the
|
2010-02-26 11:03:06 +00:00
|
|
|
Channel and Format classes above.'''
|
2009-08-30 12:02:36 +01:00
|
|
|
|
|
|
|
|
stream = open(filename)
|
|
|
|
|
formats = []
|
|
|
|
|
for line in stream:
|
2010-02-24 13:47:42 +00:00
|
|
|
try:
|
|
|
|
|
comment = line.index('#')
|
|
|
|
|
except ValueError:
|
|
|
|
|
pass
|
|
|
|
|
else:
|
|
|
|
|
line = line[:comment]
|
|
|
|
|
line = line.strip()
|
|
|
|
|
if not line:
|
|
|
|
|
continue
|
2010-02-26 15:45:48 +00:00
|
|
|
|
2009-08-30 12:02:36 +01:00
|
|
|
fields = [field.strip() for field in line.split(',')]
|
2019-08-14 12:09:04 -07:00
|
|
|
if len (fields) == 11:
|
|
|
|
|
fields += fields[5:10]
|
|
|
|
|
assert len (fields) == 16
|
|
|
|
|
|
2009-08-30 12:02:36 +01:00
|
|
|
name = fields[0]
|
|
|
|
|
layout = fields[1]
|
2019-08-14 12:09:04 -07:00
|
|
|
block_width, block_height, block_depth = map(int, fields[2:5])
|
|
|
|
|
colorspace = fields[10]
|
2010-02-26 15:45:48 +00:00
|
|
|
|
2019-08-14 12:09:04 -07:00
|
|
|
le_swizzles = [_swizzle_parse_map[swizzle] for swizzle in fields[9]]
|
|
|
|
|
le_channels = _parse_channels(fields[5:9], layout, colorspace, le_swizzles)
|
2014-03-19 17:11:02 +00:00
|
|
|
|
2019-08-14 12:09:04 -07:00
|
|
|
be_swizzles = [_swizzle_parse_map[swizzle] for swizzle in fields[15]]
|
|
|
|
|
be_channels = _parse_channels(fields[11:15], layout, colorspace, be_swizzles)
|
2014-03-19 17:11:02 +00:00
|
|
|
|
|
|
|
|
le_shift = 0
|
|
|
|
|
for channel in le_channels:
|
|
|
|
|
channel.shift = le_shift
|
|
|
|
|
le_shift += channel.size
|
|
|
|
|
|
2014-07-21 16:32:38 +01:00
|
|
|
for i in range(4):
|
|
|
|
|
assert (le_swizzles[i] != SWIZZLE_NONE) == (be_swizzles[i] != SWIZZLE_NONE)
|
2013-06-24 09:48:56 -04:00
|
|
|
|
2019-08-14 12:09:04 -07:00
|
|
|
format = Format(name, layout, block_width, block_height, block_depth, le_channels, le_swizzles, be_channels, be_swizzles, colorspace)
|
gallium: Fix big-endian addressing of non-bitmask array formats.
The formats affected are:
- LA x (16_FLOAT, 32_FLOAT, 32_UINT, 32_SINT)
- R8G8B8 x (UNORM, SNORM, SRGB, USCALED, SSCALED, UINT, SINT)
- RG/RGB/RGBA x (64_FLOAT, 32_FLOAT, 16_FLOAT, 32_UNORM, 32_SNORM,
32_USCALED, 32_SSCALED, 32_FIXED, 32_UINT, 32_SINT)
- RGB/RGBA x (16_UNORM, 16_SNORM, 16_USCALED, 16_SSCALED,
16_UINT, 16_SINT)
- RGBx16 x (UNORM, SNORM, FLOAT, UINT, SINT)
- RGBx32 x (FLOAT, UINT, SINT)
- RA x (16_FLOAT, 32_FLOAT, 32_UINT, 32_SINT)
The updated st_formats.c unit test checks that the formats affected by
this change are all array formats in the equivalent Mesa format (if
any). Mesa's array format definition is clear: the value stored is an
array (increasing memory address) of values of the channel's type.
It's also the only thing that makes sense for the RGB types, or very
large types like RGBA64_FLOAT (A should not move to the low address
because the cpu is BE).
Acked-by: Roland Scheidegger <sroland@vmware.com>
Acked-by: Adam Jackson <ajax@redhat.com>
Tested-by: Matt Turner <mattst88@gmail.com> (unit tests on BE)
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
2019-08-15 15:38:00 -07:00
|
|
|
|
|
|
|
|
if format.is_array() and not format.is_bitmask():
|
|
|
|
|
# Formats accessed as arrays by the pack functions (R32G32_FLOAT or
|
|
|
|
|
# R8G8B8_UNORM, for example) should not be channel-ordering-reversed
|
|
|
|
|
# for BE.
|
|
|
|
|
# Note that __eq__ on channels ignores .shift!
|
|
|
|
|
assert(format.be_channels == format.le_channels)
|
|
|
|
|
assert(format.be_swizzles == format.le_swizzles)
|
|
|
|
|
format.be_channels = format.le_channels
|
|
|
|
|
else:
|
|
|
|
|
be_shift = 0
|
|
|
|
|
for channel in format.be_channels[3::-1]:
|
|
|
|
|
channel.shift = be_shift
|
|
|
|
|
be_shift += channel.size
|
|
|
|
|
|
|
|
|
|
assert le_shift == be_shift
|
|
|
|
|
|
2010-02-26 15:45:48 +00:00
|
|
|
formats.append(format)
|
2009-08-30 12:02:36 +01:00
|
|
|
return formats
|
|
|
|
|
|