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

  /external/deqp/modules/gles3/functional/
es3fInternalFormatQueryTests.cpp 58 StateQueryMemoryWriteGuard<GLint> sampleCounts;
59 glGetInternalformativ(GL_RENDERBUFFER, m_internalFormat, GL_NUM_SAMPLE_COUNTS, 1, &sampleCounts);
62 if (!sampleCounts.verifyValidity(m_testCtx))
65 m_testCtx.getLog() << TestLog::Message << "// sample counts is " << sampleCounts << TestLog::EndMessage;
67 if (m_isIntegerInternalFormat && sampleCounts != 0)
71 m_testCtx.getLog() << TestLog::Message << "// ERROR: integer internal formats should have NUM_SAMPLE_COUNTS = 0; got " << sampleCounts << TestLog::EndMessage;
76 if (sampleCounts == 0)
80 samples.resize(sampleCounts, -1);
81 glGetInternalformativ(GL_RENDERBUFFER, m_internalFormat, GL_SAMPLES, sampleCounts, &samples[0]);
144 StateQueryMemoryWriteGuard<GLint> sampleCounts;
    [all...]
es3fFboTestCase.cpp 328 std::vector<int> sampleCounts;
334 sampleCounts.resize(numSampleCounts);
335 gl.getInternalformativ(GL_RENDERBUFFER, format, GL_SAMPLES, (glw::GLsizei)sampleCounts.size(), &sampleCounts[0]);
340 return sampleCounts;
es3fFboMultisampleTests.cpp 299 static const int sampleCounts[] = { 2, 4, 8 };
301 for (int sampleCntNdx = 0; sampleCntNdx < DE_LENGTH_OF_ARRAY(sampleCounts); sampleCntNdx++)
303 int samples = sampleCounts[sampleCntNdx];
  /external/chromium_org/third_party/skia/tests/
GpuDrawPathTest.cpp 54 static const int sampleCounts[] = { 0, 4, 16 };
56 for (size_t i = 0; i < SK_ARRAY_COUNT(sampleCounts); ++i) {
65 desc.fSampleCnt = sampleCounts[i];
  /external/skia/tests/
GpuDrawPathTest.cpp 54 static const int sampleCounts[] = { 0, 4, 16 };
56 for (size_t i = 0; i < SK_ARRAY_COUNT(sampleCounts); ++i) {
65 desc.fSampleCnt = sampleCounts[i];
  /external/deqp/modules/gles31/functional/
es31fFboTestCase.cpp 333 std::vector<int> sampleCounts;
339 sampleCounts.resize(numSampleCounts);
340 gl.getInternalformativ(GL_RENDERBUFFER, format, GL_SAMPLES, (glw::GLsizei)sampleCounts.size(), &sampleCounts[0]);
345 return sampleCounts;
es31fShaderTextureSizeTests.cpp 506 static const int sampleCounts[] = { 1, 4 };
510 for (int sampleCountNdx = 0; sampleCountNdx < DE_LENGTH_OF_ARRAY(sampleCounts); ++sampleCountNdx)
512 const std::string name = std::string() + "samples_" + de::toString(sampleCounts[sampleCountNdx]) + "_" + samplerTypes[samplerTypeNdx].name;
513 const std::string desc = std::string() + "samples count = " + de::toString(sampleCounts[sampleCountNdx]) + ", type = " + samplerTypes[samplerTypeNdx].name;
515 addChild(new TextureSizeCase(m_context, name.c_str(), desc.c_str(), samplerTypes[samplerTypeNdx].type, sampleCounts[sampleCountNdx]));
es31fTextureMultisampleTests.cpp     [all...]

Completed in 323 milliseconds