Searched refs:_mesa_snorm_to_unorm (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/prebuilt-intermediates/main/ |
D | format_unpack.c | 3320 dst[0] = _mesa_snorm_to_unorm(r, 8, 8); in unpack_ubyte_a8b8g8r8_snorm() 3323 dst[1] = _mesa_snorm_to_unorm(g, 8, 8); in unpack_ubyte_a8b8g8r8_snorm() 3326 dst[2] = _mesa_snorm_to_unorm(b, 8, 8); in unpack_ubyte_a8b8g8r8_snorm() 3329 dst[3] = _mesa_snorm_to_unorm(a, 8, 8); in unpack_ubyte_a8b8g8r8_snorm() 3342 dst[0] = _mesa_snorm_to_unorm(r, 8, 8); in unpack_ubyte_x8b8g8r8_snorm() 3345 dst[1] = _mesa_snorm_to_unorm(g, 8, 8); in unpack_ubyte_x8b8g8r8_snorm() 3348 dst[2] = _mesa_snorm_to_unorm(b, 8, 8); in unpack_ubyte_x8b8g8r8_snorm() 3364 dst[0] = _mesa_snorm_to_unorm(r, 8, 8); in unpack_ubyte_r8g8b8a8_snorm() 3367 dst[1] = _mesa_snorm_to_unorm(g, 8, 8); in unpack_ubyte_r8g8b8a8_snorm() 3370 dst[2] = _mesa_snorm_to_unorm(b, 8, 8); in unpack_ubyte_r8g8b8a8_snorm() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | format_utils.c | 1087 SWIZZLE_CONVERT(uint8_t, int8_t, _mesa_snorm_to_unorm(src, 8, 8)); in convert_ubyte() 1101 SWIZZLE_CONVERT(uint8_t, int16_t, _mesa_snorm_to_unorm(src, 16, 8)); in convert_ubyte() 1115 SWIZZLE_CONVERT(uint8_t, int32_t, _mesa_snorm_to_unorm(src, 32, 8)); in convert_ubyte() 1223 SWIZZLE_CONVERT(uint16_t, int8_t, _mesa_snorm_to_unorm(src, 8, 16)); in convert_ushort() 1233 SWIZZLE_CONVERT(uint16_t, int16_t, _mesa_snorm_to_unorm(src, 16, 16)); in convert_ushort() 1247 SWIZZLE_CONVERT(uint16_t, int32_t, _mesa_snorm_to_unorm(src, 32, 16)); in convert_ushort() 1354 SWIZZLE_CONVERT(uint32_t, int8_t, _mesa_snorm_to_unorm(src, 8, 32)); in convert_uint() 1368 SWIZZLE_CONVERT(uint32_t, int16_t, _mesa_snorm_to_unorm(src, 16, 32)); in convert_uint() 1378 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
|