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

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

Issue 1784063003: Add caps and GL API for buffer texture (Closed) Base URL: https://skia.googlesource.com/skia.git@upload_precision
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 | « src/gpu/gl/GrGLNoOpInterface.h ('k') | src/gpu/gl/SkNullGLContext.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 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 "SkMutex.h" 9 #include "SkMutex.h"
10 #include "SkString.h" 10 #include "SkString.h"
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 235
236 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOp(GrGLenum fail, GrGLenum zfail, GrGL enum zpass) { 236 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOp(GrGLenum fail, GrGLenum zfail, GrGL enum zpass) {
237 } 237 }
238 238
239 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOpSeparate(GrGLenum face, 239 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLStencilOpSeparate(GrGLenum face,
240 GrGLenum fail, 240 GrGLenum fail,
241 GrGLenum zfail, 241 GrGLenum zfail,
242 GrGLenum zpass) { 242 GrGLenum zpass) {
243 } 243 }
244 244
245 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexBuffer(GrGLenum target,
246 GrGLint internalformat,
247 GrGLuint buffer) {
248 }
249
245 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target, 250 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target,
246 GrGLint level, 251 GrGLint level,
247 GrGLint internalformat, 252 GrGLint internalformat,
248 GrGLsizei width, 253 GrGLsizei width,
249 GrGLsizei height, 254 GrGLsizei height,
250 GrGLint border, 255 GrGLint border,
251 GrGLenum format, 256 GrGLenum format,
252 GrGLenum type, 257 GrGLenum type,
253 const GrGLvoid* pixels) { 258 const GrGLvoid* pixels) {
254 } 259 }
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 static int gUniLocation = 0; 691 static int gUniLocation = 0;
687 return ++gUniLocation; 692 return ++gUniLocation;
688 } 693 }
689 694
690 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha r* marker) { 695 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha r* marker) {
691 } 696 }
692 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha r* marker) { 697 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha r* marker) {
693 } 698 }
694 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { 699 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() {
695 } 700 }
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLNoOpInterface.h ('k') | src/gpu/gl/SkNullGLContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698