OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:convertsat
(Results
1 - 1
of
1
) sorted by null
/external/deqp/framework/common/
tcuTexture.cpp
414
static inline T
convertSat
(S src)
448
case TextureFormat::SNORM_INT8: *((deInt8*)dst) =
convertSat
<deInt8> (src); break;
449
case TextureFormat::SNORM_INT16: *((deInt16*)dst) =
convertSat
<deInt16> (src); break;
450
case TextureFormat::UNORM_INT8: *((deUint8*)dst) =
convertSat
<deUint8> (src); break;
451
case TextureFormat::UNORM_INT16: *((deUint16*)dst) =
convertSat
<deUint16> (src); break;
453
case TextureFormat::SIGNED_INT8: *((deInt8*)dst) =
convertSat
<deInt8> (src); break;
454
case TextureFormat::SIGNED_INT16: *((deInt16*)dst) =
convertSat
<deInt16> (src); break;
455
case TextureFormat::SIGNED_INT32: *((deInt32*)dst) =
convertSat
<deInt32> (src); break;
456
case TextureFormat::UNSIGNED_INT8: *((deUint8*)dst) =
convertSat
<deUint8> ((deUint32)src); break;
457
case TextureFormat::UNSIGNED_INT16: *((deUint16*)dst) =
convertSat
<deUint16> ((deUint32)src); break
[
all
...]
Completed in 2097 milliseconds