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

Side by Side Diff: src/gpu/gl/GrGLAssembleInterface.cpp

Issue 329213002: Add support for glCompressedTexSubImage2D (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 6 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/GrGLInterface.h ('k') | src/gpu/gl/GrGLCreateNullInterface.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 /* 2 /*
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 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 9
10 #include "GrGLAssembleInterface.h" 10 #include "GrGLAssembleInterface.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 } 58 }
59 59
60 GET_PROC(BufferData); 60 GET_PROC(BufferData);
61 GET_PROC(BufferSubData); 61 GET_PROC(BufferSubData);
62 GET_PROC(Clear); 62 GET_PROC(Clear);
63 GET_PROC(ClearColor); 63 GET_PROC(ClearColor);
64 GET_PROC(ClearStencil); 64 GET_PROC(ClearStencil);
65 GET_PROC(ColorMask); 65 GET_PROC(ColorMask);
66 GET_PROC(CompileShader); 66 GET_PROC(CompileShader);
67 GET_PROC(CompressedTexImage2D); 67 GET_PROC(CompressedTexImage2D);
68 GET_PROC(CompressedTexSubImage2D);
68 GET_PROC(CopyTexSubImage2D); 69 GET_PROC(CopyTexSubImage2D);
69 GET_PROC(CreateProgram); 70 GET_PROC(CreateProgram);
70 GET_PROC(CreateShader); 71 GET_PROC(CreateShader);
71 GET_PROC(CullFace); 72 GET_PROC(CullFace);
72 GET_PROC(DeleteBuffers); 73 GET_PROC(DeleteBuffers);
73 GET_PROC(DeleteProgram); 74 GET_PROC(DeleteProgram);
74 GET_PROC(DeleteQueries); 75 GET_PROC(DeleteQueries);
75 GET_PROC(DeleteShader); 76 GET_PROC(DeleteShader);
76 GET_PROC(DeleteTextures); 77 GET_PROC(DeleteTextures);
77 GET_PROC(DepthMask); 78 GET_PROC(DepthMask);
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 GET_PROC(InvalidateSubFramebuffer); 286 GET_PROC(InvalidateSubFramebuffer);
286 GET_PROC(InvalidateTexImage); 287 GET_PROC(InvalidateTexImage);
287 GET_PROC(InvalidateTexSubImage); 288 GET_PROC(InvalidateTexSubImage);
288 } 289 }
289 290
290 interface->fStandard = kGL_GrGLStandard; 291 interface->fStandard = kGL_GrGLStandard;
291 interface->fExtensions.swap(&extensions); 292 interface->fExtensions.swap(&extensions);
292 293
293 return interface; 294 return interface;
294 } 295 }
OLDNEW
« no previous file with comments | « include/gpu/gl/GrGLInterface.h ('k') | src/gpu/gl/GrGLCreateNullInterface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698