Home
last modified time | relevance | path

Searched refs:fDrawIndirectSupport (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/gpu/gl/
DGrGLCaps.h310 bool drawIndirectSupport() const { return fDrawIndirectSupport; } in drawIndirectSupport()
414 bool fDrawIndirectSupport : 1; variable
DGrGLCaps.cpp41 fDrawIndirectSupport = false; in GrGLCaps()
554 fDrawIndirectSupport = version >= GR_GL_VER(4,0) || in init()
558 (fDrawIndirectSupport && in init()
563 fDrawIndirectSupport = version >= GR_GL_VER(3,1); in init()
564 fMultiDrawIndirectSupport = fDrawIndirectSupport && in init()
566 fBaseInstanceSupport = fDrawIndirectSupport && in init()
1220 r.appendf("Draw indirect support: %s\n", (fDrawIndirectSupport ? "YES" : "NO")); in dump()