Searched refs:_mesa_snorm_to_unorm (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/prebuilt-intermediates/main/ |
D | format_unpack.c | 3278 dst[0] = _mesa_snorm_to_unorm(r, 8, 8); in unpack_ubyte_a8b8g8r8_snorm() 3281 dst[1] = _mesa_snorm_to_unorm(g, 8, 8); in unpack_ubyte_a8b8g8r8_snorm() 3284 dst[2] = _mesa_snorm_to_unorm(b, 8, 8); in unpack_ubyte_a8b8g8r8_snorm() 3287 dst[3] = _mesa_snorm_to_unorm(a, 8, 8); in unpack_ubyte_a8b8g8r8_snorm() 3300 dst[0] = _mesa_snorm_to_unorm(r, 8, 8); in unpack_ubyte_x8b8g8r8_snorm() 3303 dst[1] = _mesa_snorm_to_unorm(g, 8, 8); in unpack_ubyte_x8b8g8r8_snorm() 3306 dst[2] = _mesa_snorm_to_unorm(b, 8, 8); in unpack_ubyte_x8b8g8r8_snorm() 3322 dst[0] = _mesa_snorm_to_unorm(r, 8, 8); in unpack_ubyte_r8g8b8a8_snorm() 3325 dst[1] = _mesa_snorm_to_unorm(g, 8, 8); in unpack_ubyte_r8g8b8a8_snorm() 3328 dst[2] = _mesa_snorm_to_unorm(b, 8, 8); in unpack_ubyte_r8g8b8a8_snorm() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | format_utils.c | 1073 SWIZZLE_CONVERT(uint8_t, int8_t, _mesa_snorm_to_unorm(src, 8, 8)); in convert_ubyte() 1087 SWIZZLE_CONVERT(uint8_t, int16_t, _mesa_snorm_to_unorm(src, 16, 8)); in convert_ubyte() 1101 SWIZZLE_CONVERT(uint8_t, int32_t, _mesa_snorm_to_unorm(src, 32, 8)); in convert_ubyte() 1209 SWIZZLE_CONVERT(uint16_t, int8_t, _mesa_snorm_to_unorm(src, 8, 16)); in convert_ushort() 1219 SWIZZLE_CONVERT(uint16_t, int16_t, _mesa_snorm_to_unorm(src, 16, 16)); in convert_ushort() 1233 SWIZZLE_CONVERT(uint16_t, int32_t, _mesa_snorm_to_unorm(src, 32, 16)); in convert_ushort() 1340 SWIZZLE_CONVERT(uint32_t, int8_t, _mesa_snorm_to_unorm(src, 8, 32)); in convert_uint() 1354 SWIZZLE_CONVERT(uint32_t, int16_t, _mesa_snorm_to_unorm(src, 16, 32)); in convert_uint() 1364 SWIZZLE_CONVERT(uint32_t, int32_t, _mesa_snorm_to_unorm(src, 32, 32)); in convert_uint()
|
D | format_utils.h | 119 _mesa_snorm_to_unorm(int x, unsigned src_bits, unsigned dst_bits) in _mesa_snorm_to_unorm() function
|