Home | History | Annotate | Download | only in util

Lines Matching refs:tmp_r

109                uint8_t tmp_r;
110 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, &tmp_r, 1);
111 dst[0] = ubyte_to_float(tmp_r);
148 uint8_t tmp_r;
149 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, &tmp_r, 1);
150 dst[0] = ubyte_to_float(tmp_r);
207 int8_t tmp_r;
208 u_format_signed_fetch_texel_rgtc(0, src, i, j, &tmp_r, 1);
209 dst[0] = byte_to_float_tex(tmp_r);
224 int8_t tmp_r;
225 u_format_signed_fetch_texel_rgtc(0, (int8_t *)src, i, j, &tmp_r, 1);
226 dst[0] = byte_to_float_tex(tmp_r);
276 uint8_t tmp_r[4][4]; /* [bh][bw] */
280 tmp_r[j][i] = src_row[(y + j)*src_stride/sizeof(*src_row) + (x + i)*4];
284 u_format_unsigned_encode_rgtc_ubyte(dst, tmp_r, 4, 4);
301 uint8_t tmp_r[4][4]; /* [bh][bw][comps] */
305 tmp_r[j][i] = float_to_ubyte(src_row[(y + j)*src_stride/sizeof(*src_row) + (x + i)*4]);
309 u_format_unsigned_encode_rgtc_ubyte(dst, tmp_r, 4, 4);
334 uint8_t tmp_r, tmp_g;
335 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, &tmp_r, 2);
337 dst[0] = ubyte_to_float(tmp_r);
352 uint8_t tmp_r, tmp_g;
353 u_format_unsigned_fetch_texel_rgtc(0, src, i, j, &tmp_r, 2);
355 dst[0] = ubyte_to_float(tmp_r);
391 int8_t tmp_r, tmp_g;
392 u_format_signed_fetch_texel_rgtc(0, src, i, j, &tmp_r, 2);
394 dst[0] = byte_to_float_tex(tmp_r);
415 int8_t tmp_r[4][4]; /* [bh][bw][comps] */
419 tmp_r[j][i] = float_to_byte_tex(src_row[(y + j)*src_stride/sizeof(*src_row) + (x + i)*4]);
423 u_format_signed_encode_rgtc_ubyte(dst, tmp_r, 4, 4);
440 int8_t tmp_r, tmp_g;
441 u_format_signed_fetch_texel_rgtc(0, (int8_t *)src, i, j, &tmp_r, 2);
443 dst[0] = byte_to_float_tex(tmp_r);