HomeSort by relevance Sort by last modified time
    Searched refs:TestLog (Results 101 - 125 of 349) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/deqp/modules/glshared/
glsBufferTestUtil.hpp 36 class TestLog;
55 bool compareByteArrays (tcu::TestLog& log, const deUint8* resPtr, const deUint8* refPtr, int numBytes);
118 BufferWriterBase (glu::RenderContext& renderCtx, tcu::TestLog& log);
137 BufferWriter (glu::RenderContext& renderCtx, tcu::TestLog& log, WriteType writeType);
155 BufferSubDataWriter (glu::RenderContext& renderCtx, tcu::TestLog& log) : BufferWriterBase(renderCtx, log) {}
167 BufferWriteMapWriter (glu::RenderContext& renderCtx, tcu::TestLog& log) : BufferWriterBase(renderCtx, log) {}
194 BufferVerifierBase (glu::RenderContext& renderCtx, tcu::TestLog& log);
204 tcu::TestLog& m_log;
214 BufferVerifier (glu::RenderContext& renderCtx, tcu::TestLog& log, VerifyType verifyType);
234 BufferMapVerifier (glu::RenderContext& renderCtx, tcu::TestLog& log) : BufferVerifierBase(renderCtx, log) {
    [all...]
glsLongStressCase.cpp 54 using tcu::TestLog;
687 void build (TestLog& log);
741 void Program::build (TestLog& log)
752 log << TestLog::ShaderProgram(linkOk, attemptLink ? getProgramInfoLog(m_programGL) : string(""))
753 << TestLog::Shader(QP_SHADER_TYPE_VERTEX, m_vertSource, vertCompileOk, getShaderInfoLog(m_vertShaderGL))
754 << TestLog::Shader(QP_SHADER_TYPE_FRAGMENT, m_fragSource, fragCompileOk, getShaderInfoLog(m_fragShaderGL))
755 << TestLog::EndShaderProgram;
    [all...]
glsAttributeLocationTests.cpp 49 using tcu::TestLog;
359 void logProgram (TestLog& log, const glw::Functions& gl, deUint32 program)
368 log << TestLog::Message << programInfoLog << TestLog::EndMessage;
371 log << TestLog::Message << "Link result: " << (programLinkOk ? "Ok" : "Fail") << TestLog::EndMessage;
374 void logShaders (TestLog& log,
382 // \todo [mika] Log as real shader elements. Currently not supported by TestLog.
386 log << TestLog::KernelSource(vertexShaderSource);
391 log << TestLog::Message << vertexShaderInfoLog << TestLog::EndMessage
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderPackingFunctionTests.cpp 41 using tcu::TestLog;
195 m_testCtx.getLog() << TestLog::Message << "Executing shader for " << inputs.size() << " input values" << tcu::TestLog::EndMessage;
226 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx
230 << TestLog::EndMessage;
233 m_testCtx.getLog() << TestLog::Message << "..." << TestLog::EndMessage;
239 m_testCtx.getLog() << TestLog::Message << (numValues - numFailed) << " / " << numValues << " values passed" << TestLog::EndMessage;
283 m_testCtx.getLog() << TestLog::Message << "Executing shader for " << inputs.size() << " input values" << tcu::TestLog::EndMessag (…)
    [all...]
es31fTessellationGeometryInteractionTests.cpp 170 << tcu::TestLog::Message
174 << tcu::TestLog::EndMessage;
234 m_testCtx.getLog() << tcu::TestLog::Message << "Tessellation level: inner " << innerTessellationLevel << ", outer " << outerTessellationLevel << tcu::TestLog::EndMessage;
473 << tcu::TestLog::Message
477 << tcu::TestLog::EndMessage;
863 << tcu::TestLog::Message
877 << tcu::TestLog::EndMessage;
    [all...]
es31fFboNoAttachmentTests.cpp 60 using tcu::TestLog;
66 bool checkFramebufferSize (TestLog& log, const glu::RenderContext& renderCtx, GLuint framebuffer, const IVec2& size)
103 log << TestLog::Message << "Using " << size.x()*2 << "x" << size.y()*2 << " viewport" << TestLog::EndMessage;
104 log << TestLog::Message << "Discarding fragments outside pixel of interest" << TestLog::EndMessage;
105 log << TestLog::Message << "Using occlusion query to check for rendered fragments" << TestLog::EndMessage;
140 log << TestLog::Message << "A fragment was not discarded at (" << size.x()-1 << ", " << size.y()-1 << "). "
141 << "Occlusion query reports it was " << (insidePassed > 0 ? "rendered." : "not rendered") << TestLog::EndMessage
    [all...]
es31fAtomicCounterTests.cpp 43 using tcu::TestLog;
119 bool checkAndLogCounterValues (TestLog& log, const vector<deUint32>& counters) const;
120 bool checkAndLogCallValues (TestLog& log, const vector<deUint32>& increments, const vector<deUint32>& decrements, const vector<deUint32>& preGets, const vector<deUint32>& postGets, const vector<deUint32>& gets) const;
126 static bool checkRange (TestLog& log, const vector<deUint32>& values, const vector<deUint32>& min, const vector<deUint32>& max);
127 static bool checkUniquenessAndLinearity (TestLog& log, const vector<deUint32>& values);
524 bool AtomicCounterTest::checkAndLogCounterValues (TestLog& log, const vector<deUint32>& counters) const
548 log << TestLog::Message << "atomic_uint counter" << counterNdx << " initial value: " << initialValue << ", value: " << value << ", expected: " << expectedValue << (value == expectedValue ? "" : ", failed!") << TestLog::EndMessage;
643 bool AtomicCounterTest::checkRange (TestLog& log, const vector<deUint32>& values, const vector<deUint32>& min, const vector<deUint32>& max)
657 log << TestLog::Message << "Value " << values[valueNdx] << " not in range [" << min[valueNdx] << ", " << max[valu (…)
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderInvarianceTests.cpp 198 << tcu::TestLog::Message << "Shader 1:" << tcu::TestLog::EndMessage
200 << tcu::TestLog::Message << "Shader 2:" << tcu::TestLog::EndMessage
270 m_testCtx.getLog() << tcu::TestLog::Message << "Testing position invariance." << tcu::TestLog::EndMessage;
283 m_testCtx.getLog() << tcu::TestLog::Message << "Drawing position test pattern using shader " << (passNdx+1) << ". Primitive color: " << colorStr << "." << tcu::TestLog::EndMessage;
298 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying output. Expecting only green or background colored pixels." << tcu::TestLog::EndMessage
    [all...]
es2fTextureStateQueryTests.cpp 52 TexParamVerifier (const glw::Functions& gl, tcu::TestLog& log, const char* testNamePostfix);
63 TexParamVerifier::TexParamVerifier (const glw::Functions& gl, tcu::TestLog& log, const char* testNamePostfix)
81 GetTexParameterIVerifier (const glw::Functions& gl, tcu::TestLog& log);
87 GetTexParameterIVerifier::GetTexParameterIVerifier (const glw::Functions& gl, tcu::TestLog& log)
94 using tcu::TestLog;
104 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << reference << "; got " << state << TestLog::EndMessage;
113 using tcu::TestLog;
126 testCtx.getLog() << TestLog::Message << "// ERROR: expected in range [" << expectedGLStateMin << ", " << expectedGLStateMax << "]; got " << state << TestLog::EndMessage
    [all...]
es2fShaderStateQueryTests.cpp 75 using tcu::TestLog;
79 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
89 using tcu::TestLog;
93 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
120 using tcu::TestLog;
129 testCtx.getLog() << TestLog::Message
132 << TestLog::EndMessage;
140 using tcu::TestLog;
    [all...]
es2fClippingTests.cpp 52 using tcu::TestLog;
148 inline int compareImages (tcu::TestLog& log, const ConstPixelBufferAccess& test, const ConstPixelBufferAccess& ref, const PixelBufferAccess& diffMask, int kernelRadius, bool (*pixelCmp)(const tcu::IVec4& a, const tcu::IVec4& b))
224 log << TestLog::Message << deviatingPixels << " deviating pixel(s) found." << TestLog::EndMessage;
225 log << TestLog::Message << faultyPixels << " faulty pixel(s) found." << TestLog::EndMessage;
241 int compareBlackNonBlackImages (tcu::TestLog& log, const ConstPixelBufferAccess& test, const ConstPixelBufferAccess& ref, const PixelBufferAccess& diffMask, int kernelRadius)
258 int compareColoredImages (tcu::TestLog& log, const ConstPixelBufferAccess& test, const ConstPixelBufferAccess& ref, const PixelBufferAccess& diffMask, int kernelRadius)
271 bool checkHalfFilledImageOverdraw (tcu::TestLog& log, const tcu::RenderTarget& m_renderTarget, const ConstPixelBufferAccess& image, const PixelBufferAccess& output)
297 log << TestLog::Message << "Faulty pixel(s) found." << TestLog::EndMessage
    [all...]
es2fColorClearTest.cpp 42 using tcu::TestLog;
102 TestLog& log = m_testCtx.getLog();
274 m_testCtx.getLog() << tcu::TestLog::Message << "Image comparison failed, max diff = " << maxDiff << ", threshold = " << colorThreshold << tcu::TestLog::EndMessage;
276 log << TestLog::ImageSet("Result", "Resulting framebuffer")
277 << TestLog::Image("Result", "Resulting framebuffer", resImage)
278 << TestLog::Image("Reference", "Reference image", refImage)
279 << TestLog::Image("DiffMask", "Failing pixels", diffImage)
280 << TestLog::EndImageSet;
289 log << TestLog::ImageSet("Result", "Resulting framebuffer"
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderInvarianceTests.cpp 198 << tcu::TestLog::Message << "Shader 1:" << tcu::TestLog::EndMessage
200 << tcu::TestLog::Message << "Shader 2:" << tcu::TestLog::EndMessage
270 m_testCtx.getLog() << tcu::TestLog::Message << "Testing position invariance." << tcu::TestLog::EndMessage;
283 m_testCtx.getLog() << tcu::TestLog::Message << "Drawing position test pattern using shader " << (passNdx+1) << ". Primitive color: " << colorStr << "." << tcu::TestLog::EndMessage;
298 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying output. Expecting only green or background colored pixels." << tcu::TestLog::EndMessage
    [all...]
es3fFloatStateQueryTests.cpp 71 StateVerifier (const glw::Functions& gl, tcu::TestLog& log, const char* testNamePostfix);
91 StateVerifier::StateVerifier (const glw::Functions& gl, tcu::TestLog& log, const char* testNamePostfix)
112 GetBooleanVerifier (const glw::Functions& gl, tcu::TestLog& log);
121 GetBooleanVerifier::GetBooleanVerifier (const glw::Functions& gl, tcu::TestLog& log)
128 using tcu::TestLog;
140 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << (expectedGLState==GL_TRUE ? "GL_TRUE" : "GL_FALSE") << "; got " << (state == GL_TRUE ? "GL_TRUE" : (state == GL_FALSE ? "GL_FALSE" : "non-boolean")) << TestLog::EndMessage;
157 using tcu::TestLog;
174 testCtx.getLog() << TestLog::Message << "// ERROR: expected "
177 << TestLog::EndMessage
    [all...]
es3fBooleanStateQueryTests.cpp 48 StateVerifier (const glw::Functions& gl, tcu::TestLog& log, const char* testNamePostfix);
59 StateVerifier::StateVerifier (const glw::Functions& gl, tcu::TestLog& log, const char* testNamePostfix)
80 IsEnabledVerifier (const glw::Functions& gl, tcu::TestLog& log);
85 IsEnabledVerifier::IsEnabledVerifier (const glw::Functions& gl, tcu::TestLog& log)
92 using tcu::TestLog;
99 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << (reference ? "GL_TRUE" : "GL_FALSE") << TestLog::EndMessage;
121 GetBooleanVerifier (const glw::Functions& gl, tcu::TestLog& log);
126 GetBooleanVerifier::GetBooleanVerifier (const glw::Functions& gl, tcu::TestLog& log)
133 using tcu::TestLog;
    [all...]
es3fBufferObjectQueryTests.cpp 50 using tcu::TestLog;
54 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
62 using tcu::TestLog;
66 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
75 BufferParamVerifier (const glw::Functions& gl, tcu::TestLog& log, const char* testNamePostfix);
86 BufferParamVerifier::BufferParamVerifier (const glw::Functions& gl, tcu::TestLog& log, const char* testNamePostfix)
105 GetBufferParameterIVerifier (const glw::Functions& gl, tcu::TestLog& log);
111 GetBufferParameterIVerifier::GetBufferParameterIVerifier (const glw::Functions& gl, tcu::TestLog& log
    [all...]
es3fClippingTests.cpp 52 using tcu::TestLog;
151 inline int compareImages (tcu::TestLog& log, const ConstPixelBufferAccess& test, const ConstPixelBufferAccess& ref, const PixelBufferAccess& diffMask, int kernelRadius, bool (*pixelCmp)(const tcu::IVec4& a, const tcu::IVec4& b))
227 log << TestLog::Message << deviatingPixels << " deviating pixel(s) found." << TestLog::EndMessage;
228 log << TestLog::Message << faultyPixels << " faulty pixel(s) found." << TestLog::EndMessage;
244 int compareBlackNonBlackImages (tcu::TestLog& log, const ConstPixelBufferAccess& test, const ConstPixelBufferAccess& ref, const PixelBufferAccess& diffMask, int kernelRadius)
261 int compareColoredImages (tcu::TestLog& log, const ConstPixelBufferAccess& test, const ConstPixelBufferAccess& ref, const PixelBufferAccess& diffMask, int kernelRadius)
274 bool checkHalfFilledImageOverdraw (tcu::TestLog& log, const tcu::RenderTarget& m_renderTarget, const ConstPixelBufferAccess& image, const PixelBufferAccess& output)
300 log << TestLog::Message << "Faulty pixel(s) found." << TestLog::EndMessage
    [all...]
es3fColorClearTest.cpp 42 using tcu::TestLog;
102 TestLog& log = m_testCtx.getLog();
274 m_testCtx.getLog() << tcu::TestLog::Message << "Image comparison failed, max diff = " << maxDiff << ", threshold = " << colorThreshold << tcu::TestLog::EndMessage;
276 log << TestLog::ImageSet("Result", "Resulting framebuffer")
277 << TestLog::Image("Result", "Resulting framebuffer", resImage)
278 << TestLog::Image("Reference", "Reference image", refImage)
279 << TestLog::Image("DiffMask", "Failing pixels", diffImage)
280 << TestLog::EndImageSet;
289 log << TestLog::ImageSet("Result", "Resulting framebuffer"
    [all...]
es3fRboStateQueryTests.cpp 48 using tcu::TestLog;
76 testCtx.getLog() << TestLog::Message << "// ERROR: Expected greater or equal to " << referenceSizes[ndx] << "; got " << state << TestLog::EndMessage;
85 using tcu::TestLog;
89 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
97 using tcu::TestLog;
101 testCtx.getLog() << TestLog::Message << "// ERROR: Expected greater or equal to " << expected << "; got " << got << TestLog::EndMessage;
277 using tcu::TestLog;
    [all...]
  /external/deqp/framework/common/
tcuTestCaseWrapper.cpp 44 TestLog& log = m_testCtx.getLog();
103 << TestLog::Message << "Error in test case deinit, test program will terminate." << TestLog::EndMessage;
109 m_testCtx.getLog() << TestLog::Integer("TestDuration", "Test case duration in microseconds", "us", QP_KEY_TAG_TIME, duration);
118 TestLog& log = m_testCtx.getLog();
  /external/deqp/modules/internal/
ditBuildInfoTests.cpp 28 using tcu::TestLog;
102 m_testCtx.getLog() << TestLog::Message << m_valueName << " = " << m_value << TestLog::EndMessage;
131 m_testCtx.getLog() << TestLog::Message << m_varName << " = " << logValue << TestLog::EndMessage;
163 << TestLog::Message
165 << TestLog::EndMessage;
  /external/deqp/modules/egl/
teglGLES2SharingTests.cpp 175 tcu::TestLog& m_log;
222 tcu::TestLog& log = m_testCtx.getLog();
240 m_log << tcu::TestLog::Message << "Create context A" << tcu::TestLog::EndMessage;
242 m_log << tcu::TestLog::Message << "Create context B" << tcu::TestLog::EndMessage;
248 m_log << tcu::TestLog::Message << "Make current context A" << tcu::TestLog::EndMessage;
250 m_log << tcu::TestLog::Message << "Creating resource" << tcu::TestLog::EndMessage
    [all...]
teglMemoryStressTests.cpp 44 using tcu::TestLog;
358 m_testCtx.getLog() << TestLog::Message << "Tests that exhaust memory are disabled, use --deqp-test-oom=enable command line option to enable." << TestLog::EndMessage;
377 TestLog& log = m_testCtx.getLog();
388 log << TestLog::Message << "Couldn't exhaust memory before timeout. Allocated " << m_allocator->getAllocationCount() << " objects." << TestLog::EndMessage;
397 log << TestLog::Message << "Iteration " << m_iteration << ": Allocated " << m_allocator->getAllocationCount() << " objects; " << m_allocator->getContextCount() << " contexts, " << m_allocator->getPBufferCount() << " PBuffers." << TestLog::EndMessage;
398 log << TestLog::Message << "Got expected error: " << m_allocator->getErrorString() << TestLog::EndMessage
    [all...]
  /external/deqp/framework/platform/android/
tcuAndroidTestActivity.hpp 56 TestLog m_log;
  /external/deqp/framework/platform/
tcuMain.cpp 48 tcu::TestLog log (cmdLine.getLogFileName(), cmdLine.getLogFlags());

Completed in 1782 milliseconds

1 2 3 45 6 7 8 91011>>