Searched refs:texel_bytes (Results 1 – 1 of 1) sorted by relevance
83 GLubyte texel_bytes[4]; in fetch_bptc_rgba_unorm() local85 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_rgba_unorm()87 texel[RCOMP] = UBYTE_TO_FLOAT(texel_bytes[0]); in fetch_bptc_rgba_unorm()88 texel[GCOMP] = UBYTE_TO_FLOAT(texel_bytes[1]); in fetch_bptc_rgba_unorm()89 texel[BCOMP] = UBYTE_TO_FLOAT(texel_bytes[2]); in fetch_bptc_rgba_unorm()90 texel[ACOMP] = UBYTE_TO_FLOAT(texel_bytes[3]); in fetch_bptc_rgba_unorm()98 GLubyte texel_bytes[4]; in fetch_bptc_srgb_alpha_unorm() local100 fetch_bptc_rgba_unorm_bytes(map, rowStride, i, j, texel_bytes); in fetch_bptc_srgb_alpha_unorm()102 texel[RCOMP] = util_format_srgb_8unorm_to_linear_float(texel_bytes[0]); in fetch_bptc_srgb_alpha_unorm()103 texel[GCOMP] = util_format_srgb_8unorm_to_linear_float(texel_bytes[1]); in fetch_bptc_srgb_alpha_unorm()[all …]