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

Unified Diff: src/gpu/gl/GrGLNoOpInterface.h

Issue 580863004: Adding 3D lut color filter (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: New version Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: src/gpu/gl/GrGLNoOpInterface.h
diff --git a/src/gpu/gl/GrGLNoOpInterface.h b/src/gpu/gl/GrGLNoOpInterface.h
index 3e146d330b41ccd7ede8ab2a43045c2ac19b30fb..f347624008bca6a1bd1449482756e61ec25ca94e 100644
--- a/src/gpu/gl/GrGLNoOpInterface.h
+++ b/src/gpu/gl/GrGLNoOpInterface.h
@@ -161,6 +161,17 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target,
GrGLenum type,
const GrGLvoid* pixels);
+GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage3D(GrGLenum target,
+ GrGLint level,
+ GrGLint internalformat,
+ GrGLsizei width,
+ GrGLsizei height,
+ GrGLsizei depth,
+ GrGLint border,
+ GrGLenum format,
+ GrGLenum type,
+ const GrGLvoid* pixels);
+
GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexParameteri(GrGLenum target, GrGLenum pname, GrGLint param);
GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexParameteriv(GrGLenum target,
@@ -187,6 +198,18 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexSubImage2D(GrGLenum target,
GrGLenum type,
const GrGLvoid* pixels);
+GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexSubImage3D(GrGLenum target,
+ GrGLint level,
+ GrGLint xoffset,
+ GrGLint yoffset,
+ GrGLint zoffset,
+ GrGLsizei width,
+ GrGLsizei height,
+ GrGLsizei depth,
+ GrGLenum format,
+ GrGLenum type,
+ const GrGLvoid* pixels);
+
GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1f(GrGLint location, GrGLfloat v0);
GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1i(GrGLint location, GrGLint v0);

Powered by Google App Engine
This is Rietveld 408576698