Searched refs:rgtc_decode_subblock (Results 1 – 1 of 1) sorted by relevance
/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/ |
D | rgtc.cpp | 73 void rgtc_decode_subblock(const uint32_t* data, T* out, int step, T d0, T d1 ) { in rgtc_decode_subblock() function 120 rgtc_decode_subblock<uint8_t>((const uint32_t*)data_in, pixels, 1, 0, 1); in rgtc_decode_image() 123 rgtc_decode_subblock<int8_t>((const uint32_t*)data_in, (int8_t*)pixels, 1, -1, 1); in rgtc_decode_image() 126 rgtc_decode_subblock<uint8_t>((const uint32_t*)data_in, pixels, 2, 0, 1); in rgtc_decode_image() 127 rgtc_decode_subblock<uint8_t>((const uint32_t*)data_in + 2, pixels + 1, 2, 0, 1); in rgtc_decode_image() 130 rgtc_decode_subblock<int8_t>((const uint32_t*)data_in, (int8_t*)pixels, 2, -1, 1); in rgtc_decode_image() 131 rgtc_decode_subblock<int8_t>((const uint32_t*)data_in + 2, (int8_t*)(pixels + 1), in rgtc_decode_image()
|