Lines Matching +full:- +full:nv

4  * Use of this source code is governed by a BSD-style license that can be
12 #define GET_PROC(F) functions->f##F = (GrGL##F##Fn*)get(ctx, "gl" #F)
13 #define GET_PROC_SUFFIX(F, S) functions->f##F = (GrGL##F##Fn*)get(ctx, "gl" #F #S)
16 #define GET_EGL_PROC_SUFFIX(F, S) functions->fEGL##F = (GrEGL##F##Fn*)get(ctx, "egl" #F #S)
68 // This is our minimum for non-ES GL. in GrGLMakeAssembledGLInterface()
82 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLInterface()
97 GET_PROC_SUFFIX(BlendBarrier, NV); in GrGLMakeAssembledGLInterface()
221 GET_PROC_SUFFIX(TextureBarrier, NV); in GrGLMakeAssembledGLInterface()
323 GET_PROC_SUFFIX(PathCommands, NV); in GrGLMakeAssembledGLInterface()
324 GET_PROC_SUFFIX(PathParameteri, NV); in GrGLMakeAssembledGLInterface()
325 GET_PROC_SUFFIX(PathParameterf, NV); in GrGLMakeAssembledGLInterface()
326 GET_PROC_SUFFIX(GenPaths, NV); in GrGLMakeAssembledGLInterface()
327 GET_PROC_SUFFIX(DeletePaths, NV); in GrGLMakeAssembledGLInterface()
328 GET_PROC_SUFFIX(IsPath, NV); in GrGLMakeAssembledGLInterface()
329 GET_PROC_SUFFIX(PathStencilFunc, NV); in GrGLMakeAssembledGLInterface()
330 GET_PROC_SUFFIX(StencilFillPath, NV); in GrGLMakeAssembledGLInterface()
331 GET_PROC_SUFFIX(StencilStrokePath, NV); in GrGLMakeAssembledGLInterface()
332 GET_PROC_SUFFIX(StencilFillPathInstanced, NV); in GrGLMakeAssembledGLInterface()
333 GET_PROC_SUFFIX(StencilStrokePathInstanced, NV); in GrGLMakeAssembledGLInterface()
334 GET_PROC_SUFFIX(CoverFillPath, NV); in GrGLMakeAssembledGLInterface()
335 GET_PROC_SUFFIX(CoverStrokePath, NV); in GrGLMakeAssembledGLInterface()
336 GET_PROC_SUFFIX(CoverFillPathInstanced, NV); in GrGLMakeAssembledGLInterface()
337 GET_PROC_SUFFIX(CoverStrokePathInstanced, NV); in GrGLMakeAssembledGLInterface()
338 GET_PROC_SUFFIX(StencilThenCoverFillPath, NV); in GrGLMakeAssembledGLInterface()
339 GET_PROC_SUFFIX(StencilThenCoverStrokePath, NV); in GrGLMakeAssembledGLInterface()
340 GET_PROC_SUFFIX(StencilThenCoverFillPathInstanced, NV); in GrGLMakeAssembledGLInterface()
341 GET_PROC_SUFFIX(StencilThenCoverStrokePathInstanced, NV); in GrGLMakeAssembledGLInterface()
342 GET_PROC_SUFFIX(ProgramPathFragmentInputGen, NV); in GrGLMakeAssembledGLInterface()
346 GET_PROC_SUFFIX(CoverageModulation, NV); in GrGLMakeAssembledGLInterface()
414 interface->fStandard = kGL_GrGLStandard; in GrGLMakeAssembledGLInterface()
415 interface->fExtensions.swap(&extensions); in GrGLMakeAssembledGLInterface()
445 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLESInterface()
471 GET_PROC_SUFFIX(BlendBarrier, NV); in GrGLMakeAssembledGLESInterface()
597 GET_PROC_SUFFIX(TextureBarrier, NV); in GrGLMakeAssembledGLESInterface()
670 functions->fRenderbufferStorageMultisampleES2EXT = in GrGLMakeAssembledGLESInterface()
675 functions->fRenderbufferStorageMultisampleES2EXT = in GrGLMakeAssembledGLESInterface()
679 functions->fRenderbufferStorageMultisampleES2APPLE = in GrGLMakeAssembledGLESInterface()
700 // extensions. This code is written so that we never mix OES and non-OES functions. in GrGLMakeAssembledGLESInterface()
736 GET_PROC_SUFFIX(PathCommands, NV); in GrGLMakeAssembledGLESInterface()
737 GET_PROC_SUFFIX(PathParameteri, NV); in GrGLMakeAssembledGLESInterface()
738 GET_PROC_SUFFIX(PathParameterf, NV); in GrGLMakeAssembledGLESInterface()
739 GET_PROC_SUFFIX(GenPaths, NV); in GrGLMakeAssembledGLESInterface()
740 GET_PROC_SUFFIX(DeletePaths, NV); in GrGLMakeAssembledGLESInterface()
741 GET_PROC_SUFFIX(IsPath, NV); in GrGLMakeAssembledGLESInterface()
742 GET_PROC_SUFFIX(PathStencilFunc, NV); in GrGLMakeAssembledGLESInterface()
743 GET_PROC_SUFFIX(StencilFillPath, NV); in GrGLMakeAssembledGLESInterface()
744 GET_PROC_SUFFIX(StencilStrokePath, NV); in GrGLMakeAssembledGLESInterface()
745 GET_PROC_SUFFIX(StencilFillPathInstanced, NV); in GrGLMakeAssembledGLESInterface()
746 GET_PROC_SUFFIX(StencilStrokePathInstanced, NV); in GrGLMakeAssembledGLESInterface()
747 GET_PROC_SUFFIX(CoverFillPath, NV); in GrGLMakeAssembledGLESInterface()
748 GET_PROC_SUFFIX(CoverStrokePath, NV); in GrGLMakeAssembledGLESInterface()
749 GET_PROC_SUFFIX(CoverFillPathInstanced, NV); in GrGLMakeAssembledGLESInterface()
750 GET_PROC_SUFFIX(CoverStrokePathInstanced, NV); in GrGLMakeAssembledGLESInterface()
751 GET_PROC_SUFFIX(StencilThenCoverFillPath, NV); in GrGLMakeAssembledGLESInterface()
752 GET_PROC_SUFFIX(StencilThenCoverStrokePath, NV); in GrGLMakeAssembledGLESInterface()
753 GET_PROC_SUFFIX(StencilThenCoverFillPathInstanced, NV); in GrGLMakeAssembledGLESInterface()
754 GET_PROC_SUFFIX(StencilThenCoverStrokePathInstanced, NV); in GrGLMakeAssembledGLESInterface()
755 GET_PROC_SUFFIX(ProgramPathFragmentInputGen, NV); in GrGLMakeAssembledGLESInterface()
786 GET_PROC_SUFFIX(CoverageModulation, NV); in GrGLMakeAssembledGLESInterface()
803 // a debugging- only extension we've made an exception. This also can happen when using in GrGLMakeAssembledGLESInterface()
805 if (!interface->fFunctions.fDebugMessageControl) { in GrGLMakeAssembledGLESInterface()
855 interface->fStandard = kGLES_GrGLStandard; in GrGLMakeAssembledGLESInterface()
856 interface->fExtensions.swap(&extensions); in GrGLMakeAssembledGLESInterface()