HomeSort by relevance Sort by last modified time
    Searched refs:numSampleCounts (Results 1 - 3 of 3) sorted by null

  /external/deqp/modules/gles31/functional/
es31fInternalFormatQueryTests.cpp 85 glw::GLint numSampleCounts = 0;
106 gl.getInternalformativ(m_texTarget, m_internalFormat, GL_NUM_SAMPLE_COUNTS, 1, &numSampleCounts);
109 m_testCtx.getLog() << tcu::TestLog::Message << "GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage;
111 if (numSampleCounts < 1)
113 m_testCtx.getLog() << tcu::TestLog::Message << "ERROR: Format MUST support some multisample configuration, got GL_NUM_SAMPLE_COUNTS = " << numSampleCounts << tcu::TestLog::EndMessage;
123 if (numSampleCounts > 0)
125 samples.resize(numSampleCounts, -1);
127 gl.getInternalformativ(m_texTarget, m_internalFormat, GL_SAMPLES, numSampleCounts, &samples[0]);
136 for (int ndx = 0; ndx < numSampleCounts; ++ndx)
145 for (int ndx = 1; ndx < numSampleCounts; ++ndx
    [all...]
es31fFboTestCase.cpp 332 int numSampleCounts = 0;
335 gl.getInternalformativ(GL_RENDERBUFFER, format, GL_NUM_SAMPLE_COUNTS, 1, &numSampleCounts);
337 if (numSampleCounts > 0)
339 sampleCounts.resize(numSampleCounts);
  /external/deqp/modules/gles3/functional/
es3fFboTestCase.cpp 327 int numSampleCounts = 0;
330 gl.getInternalformativ(GL_RENDERBUFFER, format, GL_NUM_SAMPLE_COUNTS, 1, &numSampleCounts);
332 if (numSampleCounts > 0)
334 sampleCounts.resize(numSampleCounts);

Completed in 76 milliseconds