HomeSort by relevance Sort by last modified time
    Searched defs:tcu (Results 176 - 192 of 192) sorted by null

1 2 3 4 5 6 78

  /external/deqp/framework/opengl/
gluShaderProgram.hpp 33 namespace tcu namespace
213 tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderInfo& shaderInfo);
214 tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderProgramInfo& shaderProgramInfo);
215 tcu::TestLog& operator<< (tcu::TestLog& log, const ProgramSources& sources);
216 tcu::TestLog& operator<< (tcu::TestLog& log, const Shader& shader);
217 tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderProgram& program)
    [all...]
  /external/deqp/framework/platform/android/
tcuAndroidInternals.hpp 41 namespace tcu namespace
186 } // tcu
tcuAndroidUtil.cpp 31 namespace tcu namespace
664 } // tcu
  /external/deqp/framework/platform/surfaceless/
tcuSurfacelessPlatform.cpp 83 namespace tcu namespace
103 const tcu::DynamicFunctionLibrary m_library;
184 class Platform : public tcu::Platform, public glu::Platform
199 glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
205 EglRenderContext(const glu::RenderConfig& config, const tcu::CommandLine& cmdLine);
210 const tcu::RenderTarget& getRenderTarget (void) const;
220 tcu::RenderTarget m_renderTarget;
232 glu::RenderContext* ContextFactory::createContext(const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const
237 EglRenderContext::EglRenderContext(const glu::RenderConfig& config, const tcu::CommandLine& cmdLine)
245 tcu::PixelFormat
    [all...]
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 50 namespace tcu namespace
129 ProgramLibrary (const glu::RenderContext& context, tcu::TestLog& log, glu::GLSLVersion glslVersion, glu::Precision texCoordPrecision);
140 tcu::TestLog& m_log;
149 TextureRenderer (const glu::RenderContext& context, tcu::TestLog& log, glu::GLSLVersion glslVersion, glu::Precision texCoordPrecision);
162 tcu::TestLog& m_log;
174 RandomViewport (const tcu::RenderTarget& renderTarget, int preferredWidth, int preferredHeight, deUint32 seed);
  /external/deqp/framework/common/
tcuCommandLine.cpp 52 namespace tcu namespace
64 DE_DECLARE_COMMAND_LINE_OPT(RunMode, tcu::RunMode);
73 DE_DECLARE_COMMAND_LINE_OPT(SurfaceType, tcu::SurfaceType);
74 DE_DECLARE_COMMAND_LINE_OPT(ScreenRotation, tcu::ScreenRotation);
116 static const NamedValue<tcu::RunMode> s_runModes[] =
129 static const NamedValue<tcu::SurfaceType> s_surfaceTypes[] =
136 static const NamedValue<tcu::ScreenRotation> s_screenRotations[] =
862 de::MovePtr<CaseListFilter> CommandLine::createCaseListFilter (const tcu::Archive& archive) const
872 return groupName[0] == 0 || tcu::checkTestGroupName(m_caseTree, groupName);
882 return tcu::checkTestCaseName(m_caseTree, caseName)
    [all...]
tcuTestLog.cpp 31 namespace tcu namespace
67 if (tcu::isCombinedDepthStencilType(m_access.getFormat().type))
69 if (m_access.getFormat().order == tcu::TextureFormat::D)
70 m_access = tcu::getEffectiveDepthStencilAccess(m_access, tcu::Sampler::MODE_DEPTH);
71 else if (m_access.getFormat().order == tcu::TextureFormat::S)
72 m_access = tcu::getEffectiveDepthStencilAccess(m_access, tcu::Sampler::MODE_STENCIL);
76 if (m_access.getFormat().order != tcu::TextureFormat::DS)
81 const ConstPixelBufferAccess depthAccess = tcu::getEffectiveDepthStencilAccess(m_access, tcu::Sampler::MODE_DEPTH)
    [all...]
tcuCompressedTexture.cpp 33 namespace tcu namespace
    [all...]
tcuTexLookupVerifier.cpp 31 namespace tcu namespace
215 const tcu::Vec4 minVal = min(quad) - prec.colorThreshold;
216 const tcu::Vec4 maxVal = max(quad) + prec.colorThreshold;
222 const tcu::Vec4 minVal = min(min(quad0), min(quad1)) - prec.colorThreshold;
223 const tcu::Vec4 maxVal = max(max(quad0), max(quad1)) + prec.colorThreshold;
229 const tcu::Vec4 minVal = min(min(line0), min(line1)) - prec.colorThreshold;
230 const tcu::Vec4 maxVal = max(max(line0), max(line1)) + prec.colorThreshold;
241 const tcu::Vec4 minVal = min(min(quad00), min(min(quad01), min(min(quad10), min(quad11)))) - prec.colorThreshold;
242 const tcu::Vec4 maxVal = max(max(quad00), max(max(quad01), max(max(quad10), max(quad11)))) + prec.colorThreshold;
    [all...]
tcuTexture.hpp 34 namespace tcu namespace
134 int getPixelSize (void) const; //!< Deprecated, use tcu::getPixelSize(fmt)
393 void setPixel (const tcu::Vec4& color, int x, int y, int z = 0) const;
394 void setPixel (const tcu::IVec4& color, int x, int y, int z = 0) const;
395 void setPixel (const tcu::UVec4& color, int x, int y, int z = 0) const { setPixel(color.cast<int>(), x, y, z); }
    [all...]
tcuTexture.cpp 38 namespace tcu namespace
512 tcu::Vec4 unpackRGB999E5 (deUint32 color)
527 return tcu::Vec4(r, g, b, 1.0f);
764 return ::tcu::getPixelSize(*this);
    [all...]
  /external/deqp/framework/platform/null/
tcuNullRenderContext.cpp 35 namespace tcu namespace
197 throw tcu::NotSupportedError("Unsupported GL version", "", __FILE__, __LINE__);
655 const tcu::Vec4 clearColor (0.0f, 0.0f, 0.0f, 1.0f); // black
656 const tcu::TextureFormat transferFormat = glu::mapGLTransferFormat(format, type);
698 const tcu::PixelBufferAccess targetAccess (transferFormat, targetRowLength, infiniteHeight, 1, targetRowPitch, 0, pixels);
701 const tcu::PixelBufferAccess targetRectAccess = tcu::getSubregion(targetAccess,
707 tcu::clear(targetRectAccess, clearColor);
739 static tcu::RenderTarget toRenderTarget (const RenderConfig& renderCfg)
751 return tcu::RenderTarget(width, height, tcu::PixelFormat(redBits, greenBits, blueBits, alphaBits), depthBits, (…)
    [all...]
  /external/deqp/external/openglcts/modules/common/
glcViewportArrayTests.hpp 36 namespace tcu namespace
39 } /* namespace tcu */
162 static void printShaderSource(const glw::GLchar* source, tcu::MessageBuilder& log);
365 virtual tcu::TestNode::IterateResult iterate(void);
403 virtual tcu::TestNode::IterateResult iterate(void);
446 virtual tcu::TestNode::IterateResult iterate(void);
486 virtual tcu::TestNode::IterateResult iterate(void);
533 virtual tcu::TestNode::IterateResult iterate(void);
555 virtual tcu::TestNode::IterateResult iterate(void);
784 virtual tcu::TestNode::IterateResult iterate(void)
    [all...]
  /external/deqp/framework/platform/lnx/X11/
tcuLnxX11GlxPlatform.cpp 42 namespace tcu namespace
58 using tcu::CommandLine;
59 using tcu::RenderTarget;
73 throw tcu::TestError("GLX call failed", expr, file, line);
181 virtual const tcu::RenderTarget& getRenderTarget (void) const;
199 tcu::print("X operation %u:%u failed: %s\n",
256 //! Throw `tcu::NotSupportedError` if `dpy` is not compatible with GLX
273 //! Throw `tcu::NotSupportedError` if `dpy` does not support extension `extName`.
627 catch (const tcu::ResourceError&)
756 } // tcu
    [all...]
  /external/deqp/framework/platform/win32/
tcuWGL.cpp 141 namespace tcu namespace
631 } // tcu
  /external/deqp/external/openglcts/modules/gl/
gl4cShadingLanguage420PackTests.hpp 34 namespace tcu namespace
37 } /* namespace tcu */
300 static void printShaderSource(const shaderSource& source, tcu::MessageBuilder& log);
458 virtual tcu::TestNode::IterateResult iterate(void);
    [all...]
gl4cEnhancedLayoutsTests.hpp 34 namespace tcu namespace
37 } /* namespace tcu */
1008 virtual tcu::TestNode::IterateResult iterate(void);
    [all...]

Completed in 1651 milliseconds

1 2 3 4 5 6 78