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

  /external/chromium_org/third_party/skia/src/gpu/
GrGpuFactory.cpp 19 const GrGLInterface* glInterface = NULL;
23 glInterface = reinterpret_cast<const GrGLInterface*>(backendContext);
24 if (NULL == glInterface) {
25 glInterface = GrGLDefaultInterface();
29 glInterfaceUnref.reset(glInterface);
31 if (NULL == glInterface) {
37 GrGLContext ctx(glInterface);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLPathRendering.cpp 20 #define GL_CALL(X) GR_GL_CALL(fGpu->glInterface(), X)
21 #define GL_CALL_RET(RET, X) GR_GL_CALL_RET(fGpu->glInterface(), RET, X)
53 const GrGLInterface* glInterface = gpu->glInterface();
55 NULL != glInterface->fFunctions.fStencilThenCoverFillPath &&
56 NULL != glInterface->fFunctions.fStencilThenCoverStrokePath &&
57 NULL != glInterface->fFunctions.fStencilThenCoverFillPathInstanced &&
58 NULL != glInterface->fFunctions.fStencilThenCoverStrokePathInstanced;
60 kGLES_GrGLStandard == glInterface->fStandard &&
61 NULL != glInterface->fFunctions.fProgramPathFragmentInputGen
    [all...]
GrGpuGL.h 37 const GrGLInterface* glInterface() const { return fGLContext.interface(); }
338 GR_GL_CALL(gpu->glInterface(), BindVertexArray(arrayID));
366 GR_GL_CALL(gpu->glInterface(), BindBuffer(GR_GL_ARRAY_BUFFER, id));
380 GR_GL_CALL(gpu->glInterface(), BindBuffer(GR_GL_ELEMENT_ARRAY_BUFFER, id));
  /external/chromium_org/third_party/skia/samplecode/
SampleApp.cpp 214 SkAutoTUnref<const GrGLInterface> glInterface;
222 glInterface.reset(GrGLCreateNativeInterface());
226 glInterface.reset(GrGLCreateANGLEInterface());
230 glInterface.reset(GrGLCreateNullInterface());
239 fCurIntf = GrGLInterfaceRemoveNVPR(glInterface.get());
    [all...]

Completed in 241 milliseconds