Home | History | Annotate | Download | only in util

Lines Matching refs:tmp_r

80                uint8_t tmp_r;
81 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, &tmp_r, 1);
84 dst[2] = ubyte_to_float(tmp_r);
103 uint8_t tmp_r;
105 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, &tmp_r, 1);
108 dst[2] = ubyte_to_float(tmp_r);
148 int8_t tmp_r;
149 u_format_signed_fetch_texel_rgtc(0, src, i, j, &tmp_r, 1);
152 dst[2] = byte_to_float_tex(tmp_r);
165 int8_t tmp_r;
167 u_format_signed_fetch_texel_rgtc(0, (int8_t *)src, i, j, &tmp_r, 1);
170 dst[2] = byte_to_float_tex(tmp_r);
214 uint8_t tmp_r, tmp_g;
215 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, &tmp_r, 2);
219 dst[2] = ubyte_to_float(tmp_r);
232 uint8_t tmp_r, tmp_g;
234 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, &tmp_r, 2);
238 dst[2] = ubyte_to_float(tmp_r);
273 int8_t tmp_r, tmp_g;
274 u_format_signed_fetch_texel_rgtc(0, src, i, j, &tmp_r, 2);
278 dst[2] = byte_to_float_tex(tmp_r);
297 int8_t tmp_r, tmp_g;
299 u_format_signed_fetch_texel_rgtc(0, (int8_t *)src, i, j, &tmp_r, 2);
303 dst[2] = byte_to_float_tex(tmp_r);