/external/deqp/modules/glshared/ |
D | glsTextureTestUtil.hpp | 49 namespace tcu namespace 91 SamplerType getSamplerType (tcu::TextureFormat format); 92 SamplerType getFetchSamplerType (tcu::TextureFormat format); 121 tcu::Vec4 w; //!< w coordinates for quad vertices. 126 tcu::Vec4 colorScale; //!< Scale for texture color values. 127 tcu::Vec4 colorBias; //!< Bias for texture color values. 195 …ProgramLibrary (const glu::RenderContext& context, tcu::TestLog& log, glu::GLSLVersion glslVersi… 206 tcu::TestLog& m_log; 215 …TextureRenderer (const glu::RenderContext& context, tcu::TestLog& log, glu::GLSLVersion glslVers… 228 tcu::TestLog& m_log; [all …]
|
D | glsRasterizationTestUtil.cpp | 46 …rsect (const tcu::Vector<deInt64, 2>& line0Beg, const tcu::Vector<deInt64, 2>& line0End, const tcu… in lineLineIntersect() 48 typedef tcu::Vector<deInt64, 2> I64Vec2; in lineLineIntersect() 84 bool isTriangleClockwise (const tcu::Vec4& p0, const tcu::Vec4& p1, const tcu::Vec4& p2) in isTriangleClockwise() 86 const tcu::Vec2 u (p1.x() / p1.w() - p0.x() / p0.w(), p1.y() / p1.w() - p0.y() / p0.w()); in isTriangleClockwise() 87 const tcu::Vec2 v (p2.x() / p2.w() - p0.x() / p0.w(), p2.y() / p2.w() - p0.y() / p0.w()); in isTriangleClockwise() 93 bool compareColors (const tcu::RGBA& colorA, const tcu::RGBA& colorB, int redBits, int greenBits, i… in compareColors() 104 bool pixelNearLineSegment (const tcu::IVec2& pixel, const tcu::Vec2& p0, const tcu::Vec2& p1) in pixelNearLineSegment() 106 const tcu::Vec2 pixelCenterPosition = tcu::Vec2(pixel.x() + 0.5f, pixel.y() + 0.5f); in pixelNearLineSegment() 114 const tcu::Vec2 line = p1 - p0; in pixelNearLineSegment() 115 const tcu::Vec2 v = pixelCenterPosition - p0; in pixelNearLineSegment() [all …]
|
D | glsTextureTestUtil.cpp | 41 using tcu::TestLog; 58 SamplerType getSamplerType (tcu::TextureFormat format) in getSamplerType() 60 using tcu::TextureFormat; in getSamplerType() 84 SamplerType getFetchSamplerType (tcu::TextureFormat format) in getFetchSamplerType() 86 using tcu::TextureFormat; in getFetchSamplerType() 110 static tcu::Texture1DView getSubView (const tcu::Texture1DView& view, int baseLevel, int maxLevel) in getSubView() 115 return tcu::Texture1DView(numLevels, view.getLevels()+clampedBase); in getSubView() 118 static tcu::Texture2DView getSubView (const tcu::Texture2DView& view, int baseLevel, int maxLevel) in getSubView() 123 return tcu::Texture2DView(numLevels, view.getLevels()+clampedBase); in getSubView() 126 static tcu::TextureCubeView getSubView (const tcu::TextureCubeView& view, int baseLevel, int maxLev… in getSubView() [all …]
|
D | glsSamplerObjectTest.cpp | 72 TextureSamplerTest::TextureSamplerTest (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, c… in TextureSamplerTest() 73 : tcu::TestCase (testCtx, spec.name, spec.desc) in TextureSamplerTest() 241 glu::makeVtxFragSources(tcu::StringTemplate(vertexShaderTemplate).specialize(params), in init() 242 tcu::StringTemplate(fragmentShaderTemplate).specialize(params))); in init() 246 tcu::TestLog& log = m_testCtx.getLog(); in init() 382 …tcu::Texture2D refTexture (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_… in createTexture2D() 385 …tcu::fillWithComponentGradients(refTexture.getLevel(0), tcu::Vec4(0.0f, 0.0f, 0.0f, 0.0f), tcu::Ve… in createTexture2D() 408 …tcu::Texture3D refTexture (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_… in createTexture3D() 411 …tcu::fillWithComponentGradients(refTexture.getLevel(0), tcu::Vec4(0.0f, 0.0f, 0.0f, 0.0f), tcu::Ve… in createTexture3D() 434 …tcu::TextureCube refTexture (tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNOR… in createTextureCube() [all …]
|
/external/deqp/modules/gles2/functional/ |
D | es2fClippingTests.cpp | 50 using tcu::PixelBufferAccess; 51 using tcu::ConstPixelBufferAccess; 52 using tcu::TestLog; 54 static const tcu::Vec4 MASK_COLOR_OK = tcu::Vec4(0.0f, 0.1f, 0.0f, 1.0f); 55 static const tcu::Vec4 MASK_COLOR_DEV = tcu::Vec4(0.8f, 0.5f, 0.0f, 1.0f); 56 static const tcu::Vec4 MASK_COLOR_FAIL = tcu::Vec4(1.0f, 0.0f, 1.0f, 1.0f); 80 inline bool isBlack (const tcu::IVec4& a) in isBlack() 85 inline bool isHalfFilled (const tcu::IVec4& a) in isHalfFilled() 87 const tcu::IVec4 halfFilled (127, 0, 0, 0); in isHalfFilled() 88 const tcu::IVec4 threshold (20, 256, 256, 256); in isHalfFilled() [all …]
|
D | es2fRasterizationTests.cpp | 91 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, glw::GLe… 92 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const st… 128 …throw tcu::NotSupportedError(std::string("Render target size must be at least ") + de::toString(m_… in init() 136 …throw tcu::NotSupportedError(std::string("Support for line width ") + de::toString(m_lineWidth) + … in init() 138 …m_testCtx.getLog() << tcu::TestLog::Message << "ALIASED_LINE_WIDTH_RANGE = [" << range[0] << ", " … in init() 147 …throw tcu::NotSupportedError(std::string("Support for point size ") + de::toString(m_pointSize) + … in init() 149 …m_testCtx.getLog() << tcu::TestLog::Message << "ALIASED_POINT_SIZE_RANGE = [" << range[0] << ", " … in init() 157 …m_testCtx.getLog() << tcu::TestLog::Message << "Sample count = " << m_numSamples << tcu::TestLog::… in init() 158 …m_testCtx.getLog() << tcu::TestLog::Message << "SUBPIXEL_BITS = " << m_subpixelBits << tcu::TestLo… in init() 163 tcu::StringTemplate vertexSource (s_shaderVertexTemplate); in init() [all …]
|
D | es2fNegativeVertexArrayApiTests.cpp | 45 using tcu::TestLog; 60 …m_log << tcu::TestLog::Section("", "GL_INVALID_VALUE is generated if index is greater than or equa… in init() 70 m_log << tcu::TestLog::EndSection; in init() 74 …m_log << tcu::TestLog::Section("", "GL_INVALID_VALUE is generated if index is greater than or equa… in init() 85 m_log << tcu::TestLog::EndSection; in init() 89 …m_log << tcu::TestLog::Section("", "GL_INVALID_ENUM is generated if type is not an accepted value.… in init() 92 m_log << tcu::TestLog::EndSection; in init() 94 …m_log << tcu::TestLog::Section("", "GL_INVALID_VALUE is generated if index is greater than or equa… in init() 98 m_log << tcu::TestLog::EndSection; in init() 100 … m_log << tcu::TestLog::Section("", "GL_INVALID_VALUE is generated if size is not 1, 2, 3, or 4."); in init() [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fClippingTests.cpp | 50 using tcu::PixelBufferAccess; 51 using tcu::ConstPixelBufferAccess; 52 using tcu::TestLog; 54 static const tcu::Vec4 MASK_COLOR_OK = tcu::Vec4(0.0f, 0.1f, 0.0f, 1.0f); 55 static const tcu::Vec4 MASK_COLOR_DEV = tcu::Vec4(0.8f, 0.5f, 0.0f, 1.0f); 56 static const tcu::Vec4 MASK_COLOR_FAIL = tcu::Vec4(1.0f, 0.0f, 1.0f, 1.0f); 83 inline bool isBlack (const tcu::IVec4& a) in isBlack() 88 inline bool isHalfFilled (const tcu::IVec4& a) in isHalfFilled() 90 const tcu::IVec4 halfFilled (127, 0, 0, 0); in isHalfFilled() 91 const tcu::IVec4 threshold (20, 256, 256, 256); in isHalfFilled() [all …]
|
D | es3fShaderDerivateTests.cpp | 67 using tcu::TestLog; 186 static inline tcu::BVec4 getDerivateMask (glu::DataType type) in getDerivateMask() 190 case glu::TYPE_FLOAT: return tcu::BVec4(true, false, false, false); in getDerivateMask() 191 case glu::TYPE_FLOAT_VEC2: return tcu::BVec4(true, true, false, false); in getDerivateMask() 192 case glu::TYPE_FLOAT_VEC3: return tcu::BVec4(true, true, true, false); in getDerivateMask() 193 case glu::TYPE_FLOAT_VEC4: return tcu::BVec4(true, true, true, true); in getDerivateMask() 196 return tcu::BVec4(true); in getDerivateMask() 200 static inline tcu::Vec4 readDerivate (const tcu::ConstPixelBufferAccess& surface, const tcu::Vec4& … in readDerivate() 205 static inline tcu::UVec4 getCompExpBits (const tcu::Vec4& v) in getCompExpBits() 207 return tcu::UVec4(tcu::Float32(v[0]).exponentBits(), in getCompExpBits() [all …]
|
D | es3fNegativeVertexArrayApiTests.cpp | 55 using tcu::TestLog; 70 …m_log << tcu::TestLog::Section("", "GL_INVALID_VALUE is generated if index is greater than or equa… in init() 80 m_log << tcu::TestLog::EndSection; in init() 84 …m_log << tcu::TestLog::Section("", "GL_INVALID_VALUE is generated if index is greater than or equa… in init() 95 m_log << tcu::TestLog::EndSection; in init() 103 …m_log << tcu::TestLog::Section("", "GL_INVALID_VALUE is generated if index is greater than or equa… in init() 108 m_log << tcu::TestLog::EndSection; in init() 116 …m_log << tcu::TestLog::Section("", "GL_INVALID_VALUE is generated if index is greater than or equa… in init() 121 m_log << tcu::TestLog::EndSection; in init() 125 …m_log << tcu::TestLog::Section("", "GL_INVALID_ENUM is generated if type is not an accepted value.… in init() [all …]
|
D | es3fRasterizationTests.cpp | 88 static tcu::PixelFormat getInternalFormatPixelFormat (glw::GLenum internalFormat) in getInternalFormatPixelFormat() 90 …const tcu::IVec4 bitDepth = tcu::getTextureFormatBitDepth(glu::mapGLInternalFormat(internalFormat)… in getInternalFormatPixelFormat() 91 return tcu::PixelFormat(bitDepth.x(), bitDepth.y(), bitDepth.z(), bitDepth.w()); in getInternalFormatPixelFormat() 119 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, glw::GLe… 120 …void drawPrimitives (tcu::Surface& result, const std::vector<tcu::Vec4>& vertexData, const st… 124 const tcu::PixelFormat& getPixelFormat (void) const; 135 const tcu::PixelFormat m_pixelFormat; 180 …throw tcu::NotSupportedError(std::string("Render target size must be at least ") + de::toString(m_… in init() 192 …throw tcu::NotSupportedError("Test requires " + de::toString(m_numRequestedSamples) + "x msaa rbo"… in init() 198 tcu::StringTemplate vertexSource (s_shaderVertexTemplate); in init() [all …]
|
D | es3fFramebufferBlitTests.cpp | 45 using tcu::TestLog; 46 using tcu::Vec2; 47 using tcu::Vec3; 48 using tcu::Vec4; 49 using tcu::IVec2; 50 using tcu::IVec3; 51 using tcu::IVec4; 52 using tcu::UVec4; 71 void render (tcu::Surface& dst) in render() 119 tcu::TextureLevel data (glu::mapGLTransferFormat(format, dataType), texW, texH, 1); in render() [all …]
|
D | es3fFboTestUtil.hpp | 61 void setColor (sglr::Context& context, deUint32 program, const tcu::Vec4& color); 76 …Gradient (sglr::Context& context, deUint32 program, const tcu::Vec4& gradientMin, const tcu::Vec… 88 …lerTypes, glu::DataType outputType, const tcu::Vec4& outScale = tcu::Vec4(1.0f), const tcu::Vec4& … 92 void setTexScaleBias (int samplerNdx, const tcu::Vec4& scale, const tcu::Vec4& bias); 93 void setOutScaleBias (const tcu::Vec4& scale, const tcu::Vec4& bias); 104 tcu::Vec4 scale; 105 tcu::Vec4 bias; 109 tcu::Vec4 m_outScale; 110 tcu::Vec4 m_outBias; 121 void setFace (tcu::CubeFace face); [all …]
|
/external/deqp/modules/gles31/functional/ |
D | es31fTextureBorderClampTests.cpp | 93 bool isDepthFormat (deUint32 format, tcu::Sampler::DepthStencilMode mode) in isDepthFormat() 107 const tcu::TextureFormat fmt = glu::mapGLInternalFormat(format); in isDepthFormat() 109 if (fmt.order == tcu::TextureFormat::D) in isDepthFormat() 111 DE_ASSERT(mode == tcu::Sampler::MODE_DEPTH); in isDepthFormat() 114 else if (fmt.order == tcu::TextureFormat::DS && mode == tcu::Sampler::MODE_DEPTH) in isDepthFormat() 121 bool isStencilFormat (deUint32 format, tcu::Sampler::DepthStencilMode mode) in isStencilFormat() 135 const tcu::TextureFormat fmt = glu::mapGLInternalFormat(format); in isStencilFormat() 137 if (fmt.order == tcu::TextureFormat::S) in isStencilFormat() 139 DE_ASSERT(mode == tcu::Sampler::MODE_STENCIL); in isStencilFormat() 142 else if (fmt.order == tcu::TextureFormat::DS && mode == tcu::Sampler::MODE_STENCIL) in isStencilFormat() [all …]
|
D | es31fSampleVariableTests.cpp | 51 virtual bool verify (const tcu::RGBA& testColor, const tcu::IVec2& position) const = 0; 52 virtual void logInfo (tcu::TestLog& log) const = 0; 58 ColorVerifier (const tcu::Vec3& _color, int _threshold = 8) in ColorVerifier() 59 : m_color (tcu::Vec4(_color.x(), _color.y(), _color.z(), 1.0f)) in ColorVerifier() 60 , m_threshold (tcu::IVec3(_threshold)) in ColorVerifier() 64 ColorVerifier (const tcu::Vec3& _color, tcu::IVec3 _threshold) in ColorVerifier() 65 : m_color (tcu::Vec4(_color.x(), _color.y(), _color.z(), 1.0f)) in ColorVerifier() 70 bool verify (const tcu::RGBA& testColor, const tcu::IVec2& position) const in verify() 73 …return !tcu::boolAny(tcu::greaterThan(tcu::abs(m_color.toIVec().swizzle(0, 1, 2) - testColor.toIVe… in verify() 76 void logInfo (tcu::TestLog& log) const in logInfo() [all …]
|
D | es31fFboTestUtil.hpp | 58 …lerTypes, glu::DataType outputType, const tcu::Vec4& outScale = tcu::Vec4(1.0f), const tcu::Vec4& … 62 void setTexScaleBias (int samplerNdx, const tcu::Vec4& scale, const tcu::Vec4& bias); 63 void setOutScaleBias (const tcu::Vec4& scale, const tcu::Vec4& bias); 74 tcu::Vec4 scale; 75 tcu::Vec4 bias; 79 tcu::Vec4 m_outScale; 80 tcu::Vec4 m_outBias; 92 void setFace (tcu::CubeFace face); 93 void setTexScaleBias (const tcu::Vec4& scale, const tcu::Vec4& bias); 101 tcu::Vec4 m_texScale; [all …]
|
D | es31fTextureFilteringTests.cpp | 53 using tcu::TestLog; 56 static const char* getFaceDesc (const tcu::CubeFace face) in getFaceDesc() 60 case tcu::CUBEFACE_NEGATIVE_X: return "-X"; in getFaceDesc() 61 case tcu::CUBEFACE_POSITIVE_X: return "+X"; in getFaceDesc() 62 case tcu::CUBEFACE_NEGATIVE_Y: return "-Y"; in getFaceDesc() 63 case tcu::CUBEFACE_POSITIVE_Y: return "+Y"; in getFaceDesc() 64 case tcu::CUBEFACE_NEGATIVE_Z: return "-Z"; in getFaceDesc() 65 case tcu::CUBEFACE_POSITIVE_Z: return "+Z"; in getFaceDesc() 138 tcu::Vec2 bottomLeft; 139 tcu::Vec2 topRight; [all …]
|
D | es31fTextureGatherTests.cpp | 49 using tcu::ConstPixelBufferAccess; 50 using tcu::PixelBufferAccess; 51 using tcu::TestLog; 52 using tcu::IVec2; 53 using tcu::IVec3; 54 using tcu::IVec4; 55 using tcu::UVec4; 56 using tcu::Vec2; 57 using tcu::Vec3; 58 using tcu::Vec4; [all …]
|
/external/deqp/framework/opengl/ |
D | gluTextureUtil.cpp | 45 TransferFormat getTransferFormat (tcu::TextureFormat texFormat) in getTransferFormat() 47 using tcu::TextureFormat; in getTransferFormat() 124 throw tcu::InternalError("Can't map texture format to GL transfer format"); in getTransferFormat() 139 deUint32 getInternalFormat (tcu::TextureFormat texFormat) in getInternalFormat() 141 DE_STATIC_ASSERT(tcu::TextureFormat::CHANNELORDER_LAST < (1<<16)); in getInternalFormat() 142 DE_STATIC_ASSERT(tcu::TextureFormat::CHANNELTYPE_LAST < (1<<16)); in getInternalFormat() 145 #define FMT_CASE(ORDER, TYPE) PACK_FMT(tcu::TextureFormat::ORDER, tcu::TextureFormat::TYPE) in getInternalFormat() 223 throw tcu::InternalError("Can't map texture format to GL internal format"); in getInternalFormat() 236 deUint32 getGLFormat (tcu::CompressedTexFormat format) in getGLFormat() 240 case tcu::COMPRESSEDTEXFORMAT_ETC1_RGB8: return GL_ETC1_RGB8_OES; in getGLFormat() [all …]
|
D | gluStrUtilPrototypes.inl | 76 tcu::Format::Bitfield<16> getBufferMaskStr (int value); 77 tcu::Format::Bitfield<16> getBufferMapFlagsStr (int value); 78 tcu::Format::Bitfield<16> getMemoryBarrierFlagsStr (int value); 79 tcu::Format::Bitfield<16> getShaderTypeMaskStr (int value); 80 inline tcu::Format::Enum<int, 2> getErrorStr (int value) { return tcu::Format::Enum<int, 2>… 81 inline tcu::Format::Enum<int, 2> getTypeStr (int value) { return tcu::Format::Enum<int, 2>(… 82 inline tcu::Format::Enum<int, 2> getParamQueryStr (int value) { return tcu::Format::Enum<int,… 83 inline tcu::Format::Enum<int, 2> getProgramParamStr (int value) { return tcu::Format::Enum<in… 84 inline tcu::Format::Enum<int, 2> getUniformParamStr (int value) { return tcu::Format::Enum<in… 85 inline tcu::Format::Enum<int, 2> getFramebufferAttachmentStr (int value) { return tcu::Format::… [all …]
|
D | gluTexture.hpp | 50 tcu::Texture1D& getRefTexture (void) { return m_refTexture; } in getRefTexture() 51 const tcu::Texture1D& getRefTexture (void) const { return m_refTexture; } in getRefTexture() 62 tcu::Texture1D m_refTexture; 72 …extInfo, int numLevels, const tcu::CompressedTexture* levels, const tcu::TexDecompressionParams& d… 79 tcu::Texture2D& getRefTexture (void) { return m_refTexture; } in getRefTexture() 80 const tcu::Texture2D& getRefTexture (void) const { return m_refTexture; } in getRefTexture() 83 …e (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, … 84 …e (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, … 85 …e (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, … in create() 91 …void loadCompressed (int numLevels, const tcu::CompressedTexture* levels, const tcu::TexDeco… [all …]
|
/external/deqp/modules/internal/ |
D | ditImageCompareTests.cpp | 39 using tcu::TestLog; 43 static void loadImageRGBA8 (tcu::TextureLevel& dst, const tcu::Archive& archive, const char* path) in loadImageRGBA8() 45 tcu::TextureLevel tmp; in loadImageRGBA8() 46 tcu::ImageIO::loadImage(tmp, archive, path); in loadImageRGBA8() 48 …dst.setStorage(tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), tmp.g… in loadImageRGBA8() 49 tcu::copy(dst, tmp); in loadImageRGBA8() 52 class FuzzyComparisonMetricCase : public tcu::TestCase 55 …FuzzyComparisonMetricCase (tcu::TestContext& testCtx, const char* name, const char* refImg, const … in FuzzyComparisonMetricCase() 56 : tcu::TestCase (testCtx, name, "") in FuzzyComparisonMetricCase() 66 tcu::TextureLevel refImg; in iterate() [all …]
|
/external/deqp/framework/referencerenderer/ |
D | rrFragmentOperations.hpp | 48 tcu::IVec2 pixelCoord; 54 …Fragment (const tcu::IVec2& pixelCoord_, const GenericVec4& value_, deUint32 coverage_, const floa… in Fragment() 63 …Fragment (const tcu::IVec2& pixelCoord_, const GenericVec4& value_, const GenericVec4& value1_, de… in Fragment() 83 void clearMultisampleColorBuffer (const tcu::PixelBufferAccess& dst, const tcu::Vec4& value, const… 84 void clearMultisampleColorBuffer (const tcu::PixelBufferAccess& dst, const tcu::IVec4& value, cons… 85 void clearMultisampleColorBuffer (const tcu::PixelBufferAccess& dst, const tcu::UVec4& value, cons… 86 void clearMultisampleDepthBuffer (const tcu::PixelBufferAccess& dst, float value, const WindowR… 87 void clearMultisampleStencilBuffer (const tcu::PixelBufferAccess& dst, int value, const Window… 119 tcu::Vec4 clampedBlendSrcColor; 120 tcu::Vec4 clampedBlendSrc1Color; [all …]
|
D | rrMultisamplePixelBufferAccess.cpp | 30 MultisamplePixelBufferAccess::MultisamplePixelBufferAccess (const tcu::PixelBufferAccess& rawAccess) in MultisamplePixelBufferAccess() 36 : m_access(tcu::PixelBufferAccess(tcu::TextureFormat(), 0, 0, 0, 0, 0, DE_NULL)) in MultisamplePixelBufferAccess() 40 const tcu::PixelBufferAccess MultisamplePixelBufferAccess::toSinglesampleAccess (void) const in toSinglesampleAccess() 44 return tcu::PixelBufferAccess(m_access.getFormat(), in toSinglesampleAccess() 45 tcu::IVec3(m_access.getHeight(), m_access.getDepth(), 1), in toSinglesampleAccess() 46 …tcu::IVec3(m_access.getRowPitch(), m_access.getSlicePitch(), m_access.getSlicePitch() * m_access.g… in toSinglesampleAccess() 50 MultisamplePixelBufferAccess MultisamplePixelBufferAccess::fromSinglesampleAccess (const tcu::Pixel… in fromSinglesampleAccess() 53 tcu::PixelBufferAccess( in fromSinglesampleAccess() 55 tcu::IVec3(1, original.getWidth(), original.getHeight()), in fromSinglesampleAccess() 56 tcu::IVec3(original.getPixelPitch(), original.getPixelPitch(), original.getRowPitch()), in fromSinglesampleAccess() [all …]
|
/external/deqp/framework/egl/ |
D | egluStrUtilPrototypes.inl | 24 tcu::Format::Bitfield<16> getAPIBitsStr (int value); 25 tcu::Format::Bitfield<16> getSurfaceBitsStr (int value); 26 inline tcu::Format::Enum<int, 2> getBooleanStr (int value) { return tcu::Format::Enum<int, 2>(g… 27 inline tcu::Format::Enum<int, 2> getBoolDontCareStr (int value) { return tcu::Format::Enum<int, … 28 inline tcu::Format::Enum<int, 2> getAPIStr (int value) { return tcu::Format::Enum<int, 2>(getA… 29 inline tcu::Format::Enum<int, 2> getErrorStr (int value) { return tcu::Format::Enum<int, 2>(ge… 30 inline tcu::Format::Enum<int, 2> getContextAttribStr (int value) { return tcu::Format::Enum<int,… 31 inline tcu::Format::Enum<int, 2> getConfigAttribStr (int value) { return tcu::Format::Enum<int, … 32 inline tcu::Format::Enum<int, 2> getSurfaceAttribStr (int value) { return tcu::Format::Enum<int,… 33 inline tcu::Format::Enum<int, 2> getSurfaceTargetStr (int value) { return tcu::Format::Enum<int,… [all …]
|