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

  /external/webkit/Source/WebCore/platform/graphics/gpu/
DrawingBuffer.cpp 227 int maxSampleCount = 0;
229 m_context->getIntegerv(Extensions3D::MAX_SAMPLES, &maxSampleCount);
230 int sampleCount = std::min(8, maxSampleCount);
  /external/skia/src/gpu/gl/
GrGLCaps.h 143 int maxSampleCount() const { return fMaxSampleCount; }
GrGpuGL.cpp 819 sampleCount = GrMin(sampleCount, ctxInfo.caps().maxSampleCount());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 204 GLint maxSampleCount;
205 ::glGetIntegerv(GL_MAX_SAMPLES_EXT, &maxSampleCount);
206 GLint sampleCount = std::min(8, maxSampleCount);
207 if (sampleCount > maxSampleCount)
208 sampleCount = maxSampleCount;
    [all...]

Completed in 722 milliseconds