| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef GrGLInterface_DEFINED | 8 #ifndef GrGLInterface_DEFINED |
| 9 #define GrGLInterface_DEFINED | 9 #define GrGLInterface_DEFINED |
| 10 | 10 |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 GrGLFunction<GrGLGenFramebuffersProc> fGenFramebuffers; | 195 GrGLFunction<GrGLGenFramebuffersProc> fGenFramebuffers; |
| 196 GrGLFunction<GrGLGenerateMipmapProc> fGenerateMipmap; | 196 GrGLFunction<GrGLGenerateMipmapProc> fGenerateMipmap; |
| 197 GrGLFunction<GrGLGenQueriesProc> fGenQueries; | 197 GrGLFunction<GrGLGenQueriesProc> fGenQueries; |
| 198 GrGLFunction<GrGLGenRenderbuffersProc> fGenRenderbuffers; | 198 GrGLFunction<GrGLGenRenderbuffersProc> fGenRenderbuffers; |
| 199 GrGLFunction<GrGLGenTexturesProc> fGenTextures; | 199 GrGLFunction<GrGLGenTexturesProc> fGenTextures; |
| 200 GrGLFunction<GrGLGenVertexArraysProc> fGenVertexArrays; | 200 GrGLFunction<GrGLGenVertexArraysProc> fGenVertexArrays; |
| 201 GrGLFunction<GrGLGetBufferParameterivProc> fGetBufferParameteriv; | 201 GrGLFunction<GrGLGetBufferParameterivProc> fGetBufferParameteriv; |
| 202 GrGLFunction<GrGLGetErrorProc> fGetError; | 202 GrGLFunction<GrGLGetErrorProc> fGetError; |
| 203 GrGLFunction<GrGLGetFramebufferAttachmentParameterivProc> fGetFramebuffe
rAttachmentParameteriv; | 203 GrGLFunction<GrGLGetFramebufferAttachmentParameterivProc> fGetFramebuffe
rAttachmentParameteriv; |
| 204 GrGLFunction<GrGLGetIntegervProc> fGetIntegerv; | 204 GrGLFunction<GrGLGetIntegervProc> fGetIntegerv; |
| 205 GrGLFunction<GrGLGetMultisamplefvProc> fGetMultisamplefv; | |
| 206 GrGLFunction<GrGLGetQueryObjecti64vProc> fGetQueryObjecti64v; | 205 GrGLFunction<GrGLGetQueryObjecti64vProc> fGetQueryObjecti64v; |
| 207 GrGLFunction<GrGLGetQueryObjectivProc> fGetQueryObjectiv; | 206 GrGLFunction<GrGLGetQueryObjectivProc> fGetQueryObjectiv; |
| 208 GrGLFunction<GrGLGetQueryObjectui64vProc> fGetQueryObjectui64v; | 207 GrGLFunction<GrGLGetQueryObjectui64vProc> fGetQueryObjectui64v; |
| 209 GrGLFunction<GrGLGetQueryObjectuivProc> fGetQueryObjectuiv; | 208 GrGLFunction<GrGLGetQueryObjectuivProc> fGetQueryObjectuiv; |
| 210 GrGLFunction<GrGLGetQueryivProc> fGetQueryiv; | 209 GrGLFunction<GrGLGetQueryivProc> fGetQueryiv; |
| 211 GrGLFunction<GrGLGetProgramInfoLogProc> fGetProgramInfoLog; | 210 GrGLFunction<GrGLGetProgramInfoLogProc> fGetProgramInfoLog; |
| 212 GrGLFunction<GrGLGetProgramivProc> fGetProgramiv; | 211 GrGLFunction<GrGLGetProgramivProc> fGetProgramiv; |
| 213 GrGLFunction<GrGLGetRenderbufferParameterivProc> fGetRenderbufferParamet
eriv; | 212 GrGLFunction<GrGLGetRenderbufferParameterivProc> fGetRenderbufferParamet
eriv; |
| 214 GrGLFunction<GrGLGetShaderInfoLogProc> fGetShaderInfoLog; | 213 GrGLFunction<GrGLGetShaderInfoLogProc> fGetShaderInfoLog; |
| 215 GrGLFunction<GrGLGetShaderivProc> fGetShaderiv; | 214 GrGLFunction<GrGLGetShaderivProc> fGetShaderiv; |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 #if GR_GL_PER_GL_FUNC_CALLBACK | 489 #if GR_GL_PER_GL_FUNC_CALLBACK |
| 491 GrGLInterfaceCallbackProc fCallback; | 490 GrGLInterfaceCallbackProc fCallback; |
| 492 GrGLInterfaceCallbackData fCallbackData; | 491 GrGLInterfaceCallbackData fCallbackData; |
| 493 #endif | 492 #endif |
| 494 | 493 |
| 495 // This exists for internal testing. | 494 // This exists for internal testing. |
| 496 virtual void abandon() const {} | 495 virtual void abandon() const {} |
| 497 }; | 496 }; |
| 498 | 497 |
| 499 #endif | 498 #endif |
| OLD | NEW |