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

  /external/skia/include/gpu/
GrCaps.h 154 int maxSampleCount() const {
  /external/skia/tools/skpbench/
skpbench.cpp 290 if (ctx->caps()->maxSampleCount() < config->getSamples()) {
292 config->getSamples(), ctx->caps()->maxSampleCount());
  /external/skia/src/gpu/
GrSurfaceProxy.cpp 201 copyDesc.fSampleCnt = SkTMin(desc.fSampleCnt, caps->maxSampleCount());
GrGpu.cpp 157 desc.fSampleCnt = SkTMin(desc.fSampleCnt, caps->maxSampleCount());
GrContext.cpp 583 return chosenSampleCount <= fGpu->caps()->maxSampleCount() ? chosenSampleCount : 0;
    [all...]
  /external/skia/bench/
nanobench.cpp 417 const auto maxSampleCount = ctx->caps()->maxSampleCount();
418 if (sampleCount > ctx->caps()->maxSampleCount()) {
420 sampleCount, maxSampleCount);
    [all...]
  /external/skia/tests/
ProxyTest.cpp 161 SkTMin(numSamples, caps.maxSampleCount()),
GLProgramsTest.cpp 149 int sampleCnt = random->nextBool() ? SkTMin(4, caps->maxSampleCount()) : 0;
ResourceCacheTest.cpp 149 if (context->caps()->maxSampleCount() >= 4) {
183 if (context->caps()->maxSampleCount() >= 8 &&
    [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 188 glw::GLint maxSampleCount = 0;
189 gl.getInternalformativ(GL_RENDERBUFFER, m_fboInternalFormat, GL_SAMPLES, 1, &maxSampleCount);
192 msaaTargetSamples = maxSampleCount;
193 else if (maxSampleCount >= m_numRequestedSamples)
    [all...]
  /external/skia/src/gpu/vk/
GrVkGpu.cpp 788 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
    [all...]
  /external/skia/src/gpu/gl/
GrGLGpu.cpp 562 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
601 desc.fSampleCnt = SkTMin(wrapDesc.fSampleCnt, this->caps()->maxSampleCount());
629 surfDesc.fSampleCnt = SkTMin(desc.fSampleCnt, this->caps()->maxSampleCount());
    [all...]
  /packages/apps/TV/libs/
exoplayer.jar 

Completed in 2480 milliseconds