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

  /external/skia/include/gpu/
GrCaps.h 225 int maxSampleCount() const {
  /external/skia/bench/
nanobench.cpp 405 const auto maxSampleCount = ctx->caps()->maxSampleCount();
406 if (sampleCount > ctx->caps()->maxSampleCount()) {
408 sampleCount, maxSampleCount);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fMultisampleTests.cpp 499 GLint maxSampleCount = -1;
500 GLU_CHECK_CALL(glGetInternalformativ(GL_RENDERBUFFER, FBO_COLOR_FORMAT, GL_SAMPLES, 1, &maxSampleCount));
501 if (maxSampleCount < m_numSamples)
502 throw tcu::NotSupportedError(std::string("") + "Maximum sample count returned by glGetInternalformativ() for " + glu::getTextureFormatName(FBO_COLOR_FORMAT) + " is only " + de::toString(maxSampleCount));
    [all...]
es3fRasterizationTests.cpp 184 glw::GLint maxSampleCount = 0;
185 gl.getInternalformativ(GL_RENDERBUFFER, m_fboInternalFormat, GL_SAMPLES, 1, &maxSampleCount);
188 msaaTargetSamples = maxSampleCount;
189 else if (maxSampleCount >= m_numRequestedSamples)
    [all...]
  /external/skia/src/gpu/
GrGpu.cpp 127 desc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
GrContext.cpp 576 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ? chosenSampleCount : 0;
  /external/skia/tests/
GLProgramsTest.cpp 162 texDesc.fSampleCnt = random->nextBool() == true ? SkTMin(4, caps->maxSampleCount()) : 0;
ResourceCacheTest.cpp 138 if (context->caps()->maxSampleCount() >= 4) {
170 if (context->caps()->maxSampleCount() >= 8 &&
    [all...]
  /external/skia/src/gpu/vk/
GrVkGpu.cpp 588 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
631 desc.fSampleCnt = SkTMin(wrapDesc.fSampleCnt, this->caps()->maxSampleCount());
    [all...]
  /external/skia/src/gpu/gl/
GrGLGpu.cpp 599 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
649 desc.fSampleCnt = SkTMin(wrapDesc.fSampleCnt, this->caps()->maxSampleCount());
700 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
    [all...]

Completed in 371 milliseconds