Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/framework/common/
DtcuTexture.cpp89 inline void writeUint24 (deUint8* dst, deUint32 val) in writeUint24() function
211 writeUint24(dst + uint32ByteOffset0To24, val); in writeUint32Low24()
222 writeUint24(dst + uint32ByteOffset8To32, val); in writeUint32High24()
369 …case TextureFormat::UNORM_INT24: writeUint24(dst, convertSatRteUint24 (src * 16777215.0f)); … in floatToChannel()
376 case TextureFormat::UNSIGNED_INT24: writeUint24(dst, convertSatRteUint24 (src)); break; in floatToChannel()
459 case TextureFormat::UNORM_INT24: writeUint24(dst, convertSatUint24 (src)); break; in intToChannel()
466 …case TextureFormat::UNSIGNED_INT24: writeUint24(dst, convertSatUint24 ((deUint32)src)); break; in intToChannel()