Lines Matching refs:TextureFormat
85 std::string getShaderImageLayoutQualifier (const tcu::TextureFormat& format) in getShaderImageLayoutQualifier()
91 case tcu::TextureFormat::RGBA: qualifier << "rgba"; break; in getShaderImageLayoutQualifier()
92 case tcu::TextureFormat::R: qualifier << "r"; break; in getShaderImageLayoutQualifier()
100 case tcu::TextureFormat::FLOAT: qualifier << "32f"; break; in getShaderImageLayoutQualifier()
101 case tcu::TextureFormat::HALF_FLOAT: qualifier << "16f"; break; in getShaderImageLayoutQualifier()
102 case tcu::TextureFormat::UNORM_INT8: qualifier << "8"; break; in getShaderImageLayoutQualifier()
103 case tcu::TextureFormat::SNORM_INT8: qualifier << "8_snorm"; break; in getShaderImageLayoutQualifier()
104 case tcu::TextureFormat::SIGNED_INT32: qualifier << "32i"; break; in getShaderImageLayoutQualifier()
105 case tcu::TextureFormat::SIGNED_INT16: qualifier << "16i"; break; in getShaderImageLayoutQualifier()
106 case tcu::TextureFormat::SIGNED_INT8: qualifier << "8i"; break; in getShaderImageLayoutQualifier()
107 case tcu::TextureFormat::UNSIGNED_INT32: qualifier << "32ui"; break; in getShaderImageLayoutQualifier()
108 case tcu::TextureFormat::UNSIGNED_INT16: qualifier << "16ui"; break; in getShaderImageLayoutQualifier()
109 case tcu::TextureFormat::UNSIGNED_INT8: qualifier << "8ui"; break; in getShaderImageLayoutQualifier()
118 std::string getShaderImageTypeDeclaration (const tcu::TextureFormat& format, glu::TextureTestUtil::… in getShaderImageTypeDeclaration()
124 case tcu::TextureFormat::FLOAT: in getShaderImageTypeDeclaration()
125 case tcu::TextureFormat::HALF_FLOAT: in getShaderImageTypeDeclaration()
126 case tcu::TextureFormat::UNORM_INT8: in getShaderImageTypeDeclaration()
127 case tcu::TextureFormat::SNORM_INT8: declaration << ""; break; in getShaderImageTypeDeclaration()
129 case tcu::TextureFormat::SIGNED_INT32: in getShaderImageTypeDeclaration()
130 case tcu::TextureFormat::SIGNED_INT16: in getShaderImageTypeDeclaration()
131 case tcu::TextureFormat::SIGNED_INT8: declaration << "i"; break; in getShaderImageTypeDeclaration()
133 case tcu::TextureFormat::UNSIGNED_INT32: in getShaderImageTypeDeclaration()
134 case tcu::TextureFormat::UNSIGNED_INT16: in getShaderImageTypeDeclaration()
135 case tcu::TextureFormat::UNSIGNED_INT8: declaration << "u"; break; in getShaderImageTypeDeclaration()
211 std::string getOtherFunctionArguments (const tcu::TextureFormat& format, ImageOperation function) in getOtherFunctionArguments()
220 case tcu::TextureFormat::FLOAT: in getOtherFunctionArguments()
221 case tcu::TextureFormat::HALF_FLOAT: in getOtherFunctionArguments()
222 case tcu::TextureFormat::UNORM_INT8: in getOtherFunctionArguments()
223 case tcu::TextureFormat::SNORM_INT8: in getOtherFunctionArguments()
228 case tcu::TextureFormat::SIGNED_INT32: in getOtherFunctionArguments()
229 case tcu::TextureFormat::SIGNED_INT16: in getOtherFunctionArguments()
230 case tcu::TextureFormat::SIGNED_INT8: in getOtherFunctionArguments()
234 case tcu::TextureFormat::UNSIGNED_INT32: in getOtherFunctionArguments()
235 case tcu::TextureFormat::UNSIGNED_INT16: in getOtherFunctionArguments()
236 case tcu::TextureFormat::UNSIGNED_INT8: in getOtherFunctionArguments()
342 …ifier memory, glu::TextureTestUtil::TextureType imageType, const tcu::TextureFormat& format, glu::… in generateShaderSource()
370 …oryQualifier memory, glu::TextureTestUtil::TextureType imageType, const tcu::TextureFormat& format) in testShader()
395 const tcu::TextureFormat formats[] = in image_store()
397 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::FLOAT), in image_store()
398 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::HALF_FLOAT), in image_store()
399 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::FLOAT), in image_store()
400 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), in image_store()
401 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SNORM_INT8), in image_store()
403 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT32), in image_store()
404 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT16), in image_store()
405 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8), in image_store()
406 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::SIGNED_INT32), in image_store()
408 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT32), in image_store()
409 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT16), in image_store()
410 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8), in image_store()
411 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::UNSIGNED_INT32) in image_store()
433 const tcu::TextureFormat formats[] = in image_load()
435 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::FLOAT), in image_load()
436 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::HALF_FLOAT), in image_load()
437 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::FLOAT), in image_load()
438 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), in image_load()
439 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SNORM_INT8), in image_load()
441 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT32), in image_load()
442 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT16), in image_load()
443 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8), in image_load()
444 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::SIGNED_INT32), in image_load()
446 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT32), in image_load()
447 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT16), in image_load()
448 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8), in image_load()
449 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::UNSIGNED_INT32) in image_load()
471 const tcu::TextureFormat formats[] = in image_atomic()
473 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT32), in image_atomic()
474 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT16), in image_atomic()
475 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8), in image_atomic()
476 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::SIGNED_INT32), in image_atomic()
478 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT32), in image_atomic()
479 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT16), in image_atomic()
480 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8), in image_atomic()
481 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::UNSIGNED_INT32) in image_atomic()
518 const tcu::TextureFormat formats[] = in image_atomic_exchange()
520 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::FLOAT), in image_atomic_exchange()
521 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::HALF_FLOAT), in image_atomic_exchange()
522 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::FLOAT), in image_atomic_exchange()
523 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), in image_atomic_exchange()
524 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SNORM_INT8), in image_atomic_exchange()
526 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT32), in image_atomic_exchange()
527 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT16), in image_atomic_exchange()
528 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT8), in image_atomic_exchange()
529 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::SIGNED_INT32), in image_atomic_exchange()
531 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT32), in image_atomic_exchange()
532 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT16), in image_atomic_exchange()
533 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8), in image_atomic_exchange()
534 tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::UNSIGNED_INT32) in image_atomic_exchange()