Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1237)

Side by Side Diff: include/gpu/gl/GrGLInterface.h

Issue 1731333002: Revert of Include glGetMultisamplefv API (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/gpu/gl/GrGLFunctions.h ('k') | src/gpu/GrCaps.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « include/gpu/gl/GrGLFunctions.h ('k') | src/gpu/GrCaps.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698