From: Jason Ekstrand Date: Fri, 23 Jun 2017 00:12:36 +0000 (-0700) Subject: intel/isl/format: Add field locations informations to channel_layout X-Git-Tag: upstream/19.0.0~5228 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ab73790efbce705c84c5fd6e598d91ffe02b579;p=platform%2Fupstream%2Fmesa.git intel/isl/format: Add field locations informations to channel_layout Reviewed-by: Topi Pohjolainen --- diff --git a/src/intel/isl/gen_format_layout.py b/src/intel/isl/gen_format_layout.py index b5d506b..a78f950 100644 --- a/src/intel/isl/gen_format_layout.py +++ b/src/intel/isl/gen_format_layout.py @@ -76,7 +76,7 @@ isl_format_layouts[] = { % for mask in ['r', 'g', 'b', 'a', 'l', 'i', 'p']: <% channel = getattr(format, mask, None) %>\\ % if channel.type is not None: - .${mask} = { ISL_${channel.type}, ${channel.size} }, + .${mask} = { ISL_${channel.type}, ${channel.start}, ${channel.size} }, % else: .${mask} = {}, % endif @@ -147,7 +147,10 @@ class Channel(object): else: grouped = self._splitter.match(line) self.type = self._types[grouped.group('type')].upper() - self.size = grouped.group('size') + self.size = int(grouped.group('size')) + + # Default the start bit to -1 + self.start = -1; class Format(object): @@ -168,7 +171,14 @@ class Format(object): self.l = Channel(line[9]) self.i = Channel(line[10]) self.p = Channel(line[11]) + + # Set the start bit value for each channel self.order = line[12].strip() + bit = 0 + for c in self.order: + chan = getattr(self, c) + chan.start = bit; + bit = bit + chan.size # alpha doesn't have a colorspace of it's own. self.colorspace = line[13].strip().upper() diff --git a/src/intel/isl/isl.h b/src/intel/isl/isl.h index 7c9a41e..b6fd7ed 100644 --- a/src/intel/isl/isl.h +++ b/src/intel/isl/isl.h @@ -1005,6 +1005,7 @@ struct isl_extent4d { struct isl_channel_layout { enum isl_base_type type; + uint8_t start_bit; /**< Bit at which this channel starts */ uint8_t bits; /**< Size in bits */ };