Lines Matching refs:ctxInfo
150 GrGpuGL::GrGpuGL(const GrGLContextInfo& ctxInfo) : fGLContextInfo(ctxInfo) { in GrGpuGL() argument
152 GrAssert(ctxInfo.isInitialized()); in GrGpuGL()
798 bool renderbuffer_storage_msaa(GrGLContextInfo& ctxInfo, in renderbuffer_storage_msaa() argument
802 CLEAR_ERROR_BEFORE_ALLOC(ctxInfo.interface()); in renderbuffer_storage_msaa()
803 GrAssert(GrGLCaps::kNone_MSFBOType != ctxInfo.caps().msFBOType()); in renderbuffer_storage_msaa()
806 ctxInfo.caps().coverageAAType()) { in renderbuffer_storage_msaa()
808 ctxInfo.caps().getMSAACoverageMode(sampleCount); in renderbuffer_storage_msaa()
809 GL_ALLOC_CALL(ctxInfo.interface(), in renderbuffer_storage_msaa()
815 created = (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctxInfo.interface())); in renderbuffer_storage_msaa()
819 sampleCount = GrMin(sampleCount, ctxInfo.caps().maxSampleCount()); in renderbuffer_storage_msaa()
820 GL_ALLOC_CALL(ctxInfo.interface(), in renderbuffer_storage_msaa()
825 created = (GR_GL_NO_ERROR == CHECK_ALLOC_ERROR(ctxInfo.interface())); in renderbuffer_storage_msaa()