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

Side by Side Diff: src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp

Issue 13941006: Add glCopyTexSubImage2D to GrGLInterface (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "gl/GrGLExtensions.h" 9 #include "gl/GrGLExtensions.h"
10 #include "gl/GrGLInterface.h" 10 #include "gl/GrGLInterface.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 } 59 }
60 60
61 GR_GL_GET_PROC(BufferData); 61 GR_GL_GET_PROC(BufferData);
62 GR_GL_GET_PROC(BufferSubData); 62 GR_GL_GET_PROC(BufferSubData);
63 GR_GL_GET_PROC(Clear); 63 GR_GL_GET_PROC(Clear);
64 GR_GL_GET_PROC(ClearColor); 64 GR_GL_GET_PROC(ClearColor);
65 GR_GL_GET_PROC(ClearStencil); 65 GR_GL_GET_PROC(ClearStencil);
66 GR_GL_GET_PROC(ColorMask); 66 GR_GL_GET_PROC(ColorMask);
67 GR_GL_GET_PROC(CompileShader); 67 GR_GL_GET_PROC(CompileShader);
68 GR_GL_GET_PROC(CompressedTexImage2D); 68 GR_GL_GET_PROC(CompressedTexImage2D);
69 GR_GL_GET_PROC(CopyTexSubImage2D);
69 GR_GL_GET_PROC(CreateProgram); 70 GR_GL_GET_PROC(CreateProgram);
70 GR_GL_GET_PROC(CreateShader); 71 GR_GL_GET_PROC(CreateShader);
71 GR_GL_GET_PROC(CullFace); 72 GR_GL_GET_PROC(CullFace);
72 GR_GL_GET_PROC(DeleteBuffers); 73 GR_GL_GET_PROC(DeleteBuffers);
73 GR_GL_GET_PROC(DeleteProgram); 74 GR_GL_GET_PROC(DeleteProgram);
74 GR_GL_GET_PROC(DeleteQueries); 75 GR_GL_GET_PROC(DeleteQueries);
75 GR_GL_GET_PROC(DeleteShader); 76 GR_GL_GET_PROC(DeleteShader);
76 GR_GL_GET_PROC(DeleteTextures); 77 GR_GL_GET_PROC(DeleteTextures);
77 GR_GL_GET_PROC(DepthMask); 78 GR_GL_GET_PROC(DepthMask);
78 GR_GL_GET_PROC(Disable); 79 GR_GL_GET_PROC(Disable);
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 delete interface; 208 delete interface;
208 return NULL; 209 return NULL;
209 } 210 }
210 GR_GL_GET_PROC(BindFragDataLocationIndexed); 211 GR_GL_GET_PROC(BindFragDataLocationIndexed);
211 interface->fBindingsExported = kDesktop_GrGLBinding; 212 interface->fBindingsExported = kDesktop_GrGLBinding;
212 return interface; 213 return interface;
213 } else { 214 } else {
214 return NULL; 215 return NULL;
215 } 216 }
216 } 217 }
OLDNEW
« no previous file with comments | « src/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp ('k') | src/gpu/gl/unix/GrGLCreateNativeInterface_unix.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698