Lines Matching defs:texel
40 GLfloat *texel,
47 fetch_rgb_float_from_block(block, texel, (i % 4) + (j % 4) * 4, is_signed);
53 GLfloat *texel)
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true);
61 GLfloat *texel)
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false);
69 GLubyte *texel)
75 fetch_rgba_unorm_from_block(block, texel, (i % 4) + (j % 4) * 4);
81 GLfloat *texel)
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]);
96 GLfloat *texel)
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]);