Lines Matching defs:texel_bytes
83 GLubyte texel_bytes[4];
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes);
87 texel[RCOMP] = UBYTE_TO_FLOAT(texel_bytes[0]);
88 texel[GCOMP] = UBYTE_TO_FLOAT(texel_bytes[1]);
89 texel[BCOMP] = UBYTE_TO_FLOAT(texel_bytes[2]);
90 texel[ACOMP] = UBYTE_TO_FLOAT(texel_bytes[3]);
98 GLubyte texel_bytes[4];
100 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes);
102 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(texel_bytes[0]);
103 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(texel_bytes[1]);
104 texel[BCOMP] = util_format_srgb_8unorm_to_linear_float(texel_bytes[2]);
105 texel[ACOMP] = UBYTE_TO_FLOAT(texel_bytes[3]);