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

Side by Side Diff: src/gpu/gl/GrGLNoOpInterface.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
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 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 #include "GrGLNoOpInterface.h" 8 #include "GrGLNoOpInterface.h"
9 #include "SkString.h" 9 #include "SkString.h"
10 #include "SkThread.h" 10 #include "SkThread.h"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCompressedTexImage2D(GrGLenum target, 93 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCompressedTexImage2D(GrGLenum target,
94 GrGLint level, 94 GrGLint level,
95 GrGLenum internalformat, 95 GrGLenum internalformat,
96 GrGLsizei width, 96 GrGLsizei width,
97 GrGLsizei height, 97 GrGLsizei height,
98 GrGLint border, 98 GrGLint border,
99 GrGLsizei imageSize, 99 GrGLsizei imageSize,
100 const GrGLvoid* data) { 100 const GrGLvoid* data) {
101 } 101 }
102 102
103 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCompressedTexSubImage2D(GrGLenum target,
104 GrGLint level,
105 GrGLint xoffset,
106 GrGLint yoffset,
107 GrGLsizei width,
108 GrGLsizei height,
109 GrGLenum format,
110 GrGLsizei imageSize,
111 const GrGLvoid* data) {
112 }
113
103 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCopyTexSubImage2D(GrGLenum target, 114 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLCopyTexSubImage2D(GrGLenum target,
104 GrGLint level, 115 GrGLint level,
105 GrGLint xoffset, 116 GrGLint xoffset,
106 GrGLint yoffset, 117 GrGLint yoffset,
107 GrGLint x, 118 GrGLint x,
108 GrGLint y, 119 GrGLint y,
109 GrGLsizei width, 120 GrGLsizei width,
110 GrGLsizei height) { 121 GrGLsizei height) {
111 } 122 }
112 123
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 static int gUniLocation = 0; 646 static int gUniLocation = 0;
636 return ++gUniLocation; 647 return ++gUniLocation;
637 } 648 }
638 649
639 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha r* marker) { 650 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha r* marker) {
640 } 651 }
641 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha r* marker) { 652 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha r* marker) {
642 } 653 }
643 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { 654 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() {
644 } 655 }
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLNoOpInterface.h ('k') | src/gpu/gl/android/GrGLCreateNativeInterface_android.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698