Home
last modified time | relevance | path

Searched refs:SWIZZLE_NONE (Results 1 - 4 of 4) sorted by relevance

/third_party/mesa3d/src/util/format/
H A Du_format_parse.py36 SWIZZLE_X, SWIZZLE_Y, SWIZZLE_Z, SWIZZLE_W, SWIZZLE_0, SWIZZLE_1, SWIZZLE_NONE, = range(7)
168 SWIZZLE_NONE: SWIZZLE_NONE}
181 assert (self.le_swizzles[i] != SWIZZLE_NONE) == (
182 self.be_swizzles[i] != SWIZZLE_NONE)
321 return self.le_swizzles[id] != SWIZZLE_NONE
349 '_': SWIZZLE_NONE,
H A Du_format_table.py76 SWIZZLE_NONE: "PIPE_SWIZZLE_NONE",
H A Du_format_pack.py490 elif swizzle == SWIZZLE_NONE:
517 elif swizzle == SWIZZLE_NONE:
/third_party/mesa3d/src/mesa/main/
H A Dformat_parser.py122 * SWIZZLE_NONE: No data available for this channel
143 SWIZZLE_NONE = 6 variable in Swizzle
152 assert isinstance(s, int) and 0 <= s and s <= Swizzle.SWIZZLE_NONE
156 self.__list = swizzle + [Swizzle.SWIZZLE_NONE] * (4 - len(swizzle))
180 assert idx >= Swizzle.SWIZZLE_X and idx <= Swizzle.SWIZZLE_NONE
213 a[a.inverse()[i]] is either i or SWIZZLE_NONE. If swizzle is just
224 rev = [Swizzle.SWIZZLE_NONE] * 4
227 if self.__list[j] == i and rev[i] == Swizzle.SWIZZLE_NONE:

Completed in 3 milliseconds