Searched refs:UNSIGNED_INT8 (Results 1 - 22 of 22) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
H A DvkImageUtil.cpp160 case FMT_CASE(R, UNSIGNED_INT8): return VK_FORMAT_R8_UINT;
166 case FMT_CASE(RG, UNSIGNED_INT8): return VK_FORMAT_R8G8_UINT;
172 case FMT_CASE(RGB, UNSIGNED_INT8): return VK_FORMAT_R8G8B8_UINT;
178 case FMT_CASE(RGBA, UNSIGNED_INT8): return VK_FORMAT_R8G8B8A8_UINT;
237 case FMT_CASE(BGR, UNSIGNED_INT8): return VK_FORMAT_B8G8R8_UINT;
243 case FMT_CASE(BGRA, UNSIGNED_INT8): return VK_FORMAT_B8G8R8A8_UINT;
256 case FMT_CASE(S, UNSIGNED_INT8): return VK_FORMAT_S8_UINT;
292 case VK_FORMAT_R8_USCALED: return TextureFormat(TextureFormat::R, TextureFormat::UNSIGNED_INT8);
294 case VK_FORMAT_R8_UINT: return TextureFormat(TextureFormat::R, TextureFormat::UNSIGNED_INT8);
300 case VK_FORMAT_R8G8_USCALED: return TextureFormat(TextureFormat::RG, TextureFormat::UNSIGNED_INT8);
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fNegativeShaderImageLoadStoreTests.cpp109 case tcu::TextureFormat::UNSIGNED_INT8: qualifier << "8ui"; break;
135 case tcu::TextureFormat::UNSIGNED_INT8: declaration << "u"; break;
236 case tcu::TextureFormat::UNSIGNED_INT8:
410 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8),
448 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8),
480 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8),
533 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8),
H A Des31fStencilTexturingTests.cpp390 DE_ASSERT(access.getFormat() == TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8));
391 return tcu::ConstPixelBufferAccess(TextureFormat(TextureFormat::R, TextureFormat::UNSIGNED_INT8), access.getSize(), access.getPitch(), access.getDataPtr());
534 TextureLevel stencilOnlyLevel (TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8), width, height);
629 TextureLevel reference(TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8), width, height);
763 TextureLevel reference (TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8), width, height);
821 TextureLevel reference (TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8), width, height);
895 TextureLevel stencilOnlyLevel (TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8), width, height);
957 TextureLevel stencilOnlyLevel (TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8), levelWidth, levelHeight);
H A Des31fTextureGatherTests.cpp128 return type == tcu::TextureFormat::UNSIGNED_INT8 ||
1054 m_colorBufferFormat.type == tcu::TextureFormat::UNSIGNED_INT8 ||
1475 m_colorBufferFormat.type == tcu::TextureFormat::UNSIGNED_INT8 ||
2062 { "rgba8ui", tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8) },
H A Des31fShaderImageLoadStoreTests.cpp136 return type == TextureFormat::UNSIGNED_INT8 ||
186 format.type == TextureFormat::UNSIGNED_INT8 ||
216 case TextureFormat::UNSIGNED_INT8: typePart = "8ui"; break;
3176 TextureFormat(TextureFormat::RGBA, TextureFormat::UNSIGNED_INT8),
H A Des31fOpaqueTypeIndexingTests.cpp226 case glu::TYPE_UINT: return tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8);
/external/deqp/framework/opengl/
H A DgluTextureUtil.cpp59 case TextureFormat::UNSIGNED_INT8:
109 case TextureFormat::UNSIGNED_INT8: type = GL_UNSIGNED_BYTE; break;
154 case FMT_CASE(S, UNSIGNED_INT8): return GL_STENCIL_INDEX8;
166 case FMT_CASE(RGBA, UNSIGNED_INT8): return GL_RGBA8UI;
184 case FMT_CASE(RGB, UNSIGNED_INT8): return GL_RGB8UI;
199 case FMT_CASE(RG, UNSIGNED_INT8): return GL_RG8UI;
213 case FMT_CASE(R, UNSIGNED_INT8): return GL_R8UI;
403 case GL_UNSIGNED_BYTE: return normalized ? TextureFormat::UNORM_INT8 : TextureFormat::UNSIGNED_INT8;
478 case GL_STENCIL_INDEX8: return TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8);
490 case GL_RGBA8UI: return TextureFormat(TextureFormat::RGBA, TextureFormat::UNSIGNED_INT8);
[all...]
/external/deqp/framework/common/
H A DtcuTextureUtil.cpp194 case TextureFormat::UNSIGNED_INT8: return TEXTURECHANNELCLASS_UNSIGNED_INTEGER;
376 case TextureFormat::UNSIGNED_INT8: cMin = 0.0f; cMax = 255.0f; break;
493 case TextureFormat::UNSIGNED_INT8: return UVec4(std::numeric_limits<deUint8>::max());
534 case TextureFormat::UNSIGNED_INT8: return IVec4(8);
601 case TextureFormat::UNSIGNED_INT8:
1290 return AccessType(TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8),
1316 return AccessType(TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8),
1342 return AccessType(TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8),
1368 return AccessType(TextureFormat(TextureFormat::S, TextureFormat::UNSIGNED_INT8),
H A DtcuTexture.cpp277 case TextureFormat::UNSIGNED_INT8: return 1;
341 case TextureFormat::UNSIGNED_INT8: return (float)*((const deUint8*)value);
371 case TextureFormat::UNSIGNED_INT8: return (int)*((const deUint8*)value);
401 case TextureFormat::UNSIGNED_INT8: *((deUint8*)dst) = convertSatRte<deUint8> (src); break;
456 case TextureFormat::UNSIGNED_INT8: *((deUint8*)dst) = convertSat<deUint8> ((deUint32)src); break;
637 case TextureFormat::UNSIGNED_INT8:
3799 "UNSIGNED_INT8",
H A DtcuTexture.hpp104 UNSIGNED_INT8, enumerator in enum:tcu::TextureFormat::ChannelType
/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageTestsUtil.cpp551 case tcu::TextureFormat::UNSIGNED_INT8: typePart = "8ui"; break;
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesImageSparseBinding.cpp429 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8)
H A DvktSparseResourcesTestsUtil.cpp672 case tcu::TextureFormat::UNSIGNED_INT8: typePart = "8ui"; break;
H A DvktSparseResourcesMipmapSparseResidency.cpp577 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8)
H A DvktSparseResourcesImageSparseResidency.cpp778 tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8)
/external/deqp/modules/gles2/functional/
H A Des2fDepthStencilClearTests.cpp107 case 8: return tcu::TextureFormat(tcu::TextureFormat::S, tcu::TextureFormat::UNSIGNED_INT8);
/external/deqp/modules/gles3/functional/
H A Des3fDepthStencilClearTests.cpp107 case 8: return tcu::TextureFormat(tcu::TextureFormat::S, tcu::TextureFormat::UNSIGNED_INT8);
/external/deqp/modules/glshared/
H A DglsRasterizationTestUtil.cpp1062 tcu::TextureLevel referenceLineMap(tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::UNSIGNED_INT8), surface.getWidth(), surface.getHeight());
1502 tcu::TextureLevel referenceLineMap (tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::UNSIGNED_INT8), surface.getWidth(), surface.getHeight());
1753 tcu::TextureLevel referenceLineMap(tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::UNSIGNED_INT8), surface.getWidth(), surface.getHeight());
2207 tcu::TextureLevel coverageMap (tcu::TextureFormat(tcu::TextureFormat::R, tcu::TextureFormat::UNSIGNED_INT8), surface.getWidth(), surface.getHeight());
H A DglsTextureTestUtil.cpp69 case TextureFormat::UNSIGNED_INT8:
95 case TextureFormat::UNSIGNED_INT8:
/external/deqp/modules/egl/
H A DteglRenderTests.cpp378 default: return tcu::TextureFormat(tcu::TextureFormat::S, tcu::TextureFormat::UNSIGNED_INT8);
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktOpaqueTypeIndexingTests.cpp328 case glu::TYPE_UINT: return tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT8);
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp76 return tcu::PixelBufferAccess(TextureFormat(TextureFormat::R, TextureFormat::UNSIGNED_INT8), 0, 0, 0, DE_NULL);
212 case 8: return tcu::TextureFormat(tcu::TextureFormat::S, tcu::TextureFormat::UNSIGNED_INT8);
2981 case tcu::TextureFormat::UNSIGNED_INT8: return 8;

Completed in 278 milliseconds