Home
last modified time | relevance | path

Searched refs:_mesa_snorm_to_unorm (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/prebuilt-intermediates/main/
Dformat_unpack.c3099 dst[0] = _mesa_snorm_to_unorm(r, 8, 8); in unpack_ubyte_a8b8g8r8_snorm()
3102 dst[1] = _mesa_snorm_to_unorm(g, 8, 8); in unpack_ubyte_a8b8g8r8_snorm()
3105 dst[2] = _mesa_snorm_to_unorm(b, 8, 8); in unpack_ubyte_a8b8g8r8_snorm()
3108 dst[3] = _mesa_snorm_to_unorm(a, 8, 8); in unpack_ubyte_a8b8g8r8_snorm()
3121 dst[0] = _mesa_snorm_to_unorm(r, 8, 8); in unpack_ubyte_x8b8g8r8_snorm()
3124 dst[1] = _mesa_snorm_to_unorm(g, 8, 8); in unpack_ubyte_x8b8g8r8_snorm()
3127 dst[2] = _mesa_snorm_to_unorm(b, 8, 8); in unpack_ubyte_x8b8g8r8_snorm()
3143 dst[0] = _mesa_snorm_to_unorm(r, 8, 8); in unpack_ubyte_r8g8b8a8_snorm()
3146 dst[1] = _mesa_snorm_to_unorm(g, 8, 8); in unpack_ubyte_r8g8b8a8_snorm()
3149 dst[2] = _mesa_snorm_to_unorm(b, 8, 8); in unpack_ubyte_r8g8b8a8_snorm()
[all …]
/external/mesa3d/src/mesa/main/
Dformat_utils.c1117 SWIZZLE_CONVERT(uint8_t, int8_t, _mesa_snorm_to_unorm(src, 8, 8)); in convert_ubyte()
1131 SWIZZLE_CONVERT(uint8_t, int16_t, _mesa_snorm_to_unorm(src, 16, 8)); in convert_ubyte()
1145 SWIZZLE_CONVERT(uint8_t, int32_t, _mesa_snorm_to_unorm(src, 32, 8)); in convert_ubyte()
1253 SWIZZLE_CONVERT(uint16_t, int8_t, _mesa_snorm_to_unorm(src, 8, 16)); in convert_ushort()
1263 SWIZZLE_CONVERT(uint16_t, int16_t, _mesa_snorm_to_unorm(src, 16, 16)); in convert_ushort()
1277 SWIZZLE_CONVERT(uint16_t, int32_t, _mesa_snorm_to_unorm(src, 32, 16)); in convert_ushort()
1384 SWIZZLE_CONVERT(uint32_t, int8_t, _mesa_snorm_to_unorm(src, 8, 32)); in convert_uint()
1398 SWIZZLE_CONVERT(uint32_t, int16_t, _mesa_snorm_to_unorm(src, 16, 32)); in convert_uint()
1408 SWIZZLE_CONVERT(uint32_t, int32_t, _mesa_snorm_to_unorm(src, 32, 32)); in convert_uint()
Dformat_utils.h120 _mesa_snorm_to_unorm(int x, unsigned src_bits, unsigned dst_bits) in _mesa_snorm_to_unorm() function