Searched defs:numSampleCounts (Results 1 - 3 of 3) sorted by relevance

/external/deqp/modules/gles3/functional/
H A Des3fFboTestCase.cpp327 int numSampleCounts = 0; local
330 gl.getInternalformativ(GL_RENDERBUFFER, format, GL_NUM_SAMPLE_COUNTS, 1, &numSampleCounts);
332 if (numSampleCounts > 0)
334 sampleCounts.resize(numSampleCounts);
/external/deqp/modules/gles31/functional/
H A Des31fFboTestCase.cpp332 int numSampleCounts = 0; local
335 gl.getInternalformativ(GL_RENDERBUFFER, format, GL_NUM_SAMPLE_COUNTS, 1, &numSampleCounts);
337 if (numSampleCounts > 0)
339 sampleCounts.resize(numSampleCounts);
H A Des31fInternalFormatQueryTests.cpp90 glw::GLint numSampleCounts = 0; local
111 gl.getInternalformativ(m_target, m_internalFormat, GL_NUM_SAMPLE_COUNTS, 1, &numSampleCounts);
114 m_testCtx.getLog() << tcu::TestLog::Message << "GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage;
116 if (numSampleCounts < 1)
118 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR: Format MUST support some multisample configuration, got GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage;
128 if (numSampleCounts > 0)
130 samples.resize(numSampleCounts, -1);
132 gl.getInternalformativ(m_target, m_internalFormat, GL_SAMPLES, numSampleCounts, &samples[0]);
141 for (int ndx = 0; ndx < numSampleCounts; ++ndx)
150 for (int ndx = 1; ndx < numSampleCounts;
267 glw::GLint numSampleCounts = 0; local
[all...]

Completed in 83 milliseconds