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

  /external/deqp/modules/gles3/functional/
es3fInternalFormatQueryTests.cpp 103 StateQueryMemoryWriteGuard<GLint> maxSamples;
104 glGetIntegerv(GL_MAX_SAMPLES, &maxSamples);
107 if (maxSamples.verifyValidity(m_testCtx))
110 if (!(maximumFormatSampleCount >= maxSamples))
112 m_testCtx.getLog() << TestLog::Message << "// ERROR: Expected maximum value in SAMPLES (" << maximumFormatSampleCount << ") to be at least the value of MAX_SAMPLES (" << maxSamples << ")" << TestLog::EndMessage;
  /external/deqp/framework/referencerenderer/
rrRasterizer.hpp 46 const int maxSamples = numBits/4;
47 DE_STATIC_ASSERT(maxSamples >= RASTERIZER_MAX_SAMPLES_PER_FRAGMENT);
48 DE_ASSERT(de::inRange(numSamples, 1, maxSamples) && de::inBounds(x, 0, 2) && de::inBounds(y, 0, 2));
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.c     [all...]
  /external/deqp/modules/gles31/functional/
es31fInternalFormatQueryTests.cpp 89 glw::GLint maxSamples = 0;
97 gl.getIntegerv(samplesEnum, &maxSamples);
100 m_testCtx.getLog() << tcu::TestLog::Message << glu::getGettableStateStr(samplesEnum) << " = " << maxSamples << tcu::TestLog::EndMessage;
102 if (maxSamples < 1)
171 // maxSamples must be supported
172 if (samples[0] < maxSamples)
es31fShaderHelperInvocationTests.cpp 199 const int maxSamples = getInteger(gl, GL_MAX_SAMPLES);
206 if (m_numSamples > maxSamples && gl.checkFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE)
300 const int maxSamples = getInteger(gl, GL_MAX_SAMPLES);
301 const int actualSamples = m_numSamples == NUM_SAMPLES_MAX ? maxSamples : m_numSamples;
444 const int maxSamples = getInteger(gl, GL_MAX_SAMPLES);
445 const int actualSamples = m_numSamples == NUM_SAMPLES_MAX ? maxSamples : m_numSamples;
es31fShaderTextureSizeTests.cpp 155 glw::GLint maxSamples = 0;
159 gl.getInternalformativ(getTextureGLTarget(), getTextureGLInternalFormat(), GL_SAMPLES, 1, &maxSamples);
166 if (m_numSamples > maxSamples)
es31fTextureMultisampleTests.cpp 192 GLint maxSamples = 0;
199 gl.getIntegerv(GL_MAX_COLOR_TEXTURE_SAMPLES, &maxSamples);
200 if (m_samples > maxSamples)
203 m_testCtx.getLog() << tcu::TestLog::Message << "GL_MAX_COLOR_TEXTURE_SAMPLES = " << maxSamples << tcu::TestLog::EndMessage;
609 glw::GLint maxSamples = 0;
621 gl.getIntegerv(GL_MAX_COLOR_TEXTURE_SAMPLES, &maxSamples);
622 if (m_samples > maxSamples)
625 m_testCtx.getLog() << tcu::TestLog::Message << "GL_MAX_COLOR_TEXTURE_SAMPLES = " << maxSamples << tcu::TestLog::EndMessage;
    [all...]
es31fFboNoAttachmentTests.cpp 505 const int maxSamples = 4;
580 for (int samples = 0; samples <= maxSamples; samples++)
602 const int samples = rng.getInt(0, maxSamples);
es31fSampleVariableTests.cpp 356 deInt32 maxSamples = -1;
360 gl.getIntegerv(GL_MAX_SAMPLES, &maxSamples);
363 m_testCtx.getLog() << tcu::TestLog::Message << "GL_MAX_SAMPLES = " << maxSamples << tcu::TestLog::EndMessage;
372 gl.uniform1i(maxSampleLoc, maxSamples);
375 m_testCtx.getLog() << tcu::TestLog::Message << "Set u_maxSamples = " << maxSamples << tcu::TestLog::EndMessage;
    [all...]
es31fGeometryShaderTests.cpp     [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
Caps.h 179 GLuint maxSamples;
Context.cpp 924 case GL_MAX_SAMPLES_ANGLE: *params = mExtensions.maxSamples; break;
    [all...]
validationES.cpp 350 if (static_cast<GLuint>(samples) > context->getExtensions().maxSamples)
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
renderer9_utils.cpp 322 GLuint maxSamples = 0;
330 maxSamples = std::max(maxSamples, textureCaps.getMaxSamples());
493 extensions->maxSamples = maxSamples;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
renderer11_utils.cpp 859 GLuint maxSamples = 0;
866 maxSamples = std::max(maxSamples, textureCaps.getMaxSamples());
    [all...]

Completed in 266 milliseconds