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

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

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.cpp
diff --git a/src/gpu/gl/GrGLNoOpInterface.cpp b/src/gpu/gl/GrGLNoOpInterface.cpp
index df32d2a7cfc684c04b2ff33b6711c97d3ec0b6b5..adbf629ba6f45add2f23dd857bf6b7f04121158b 100644
--- a/src/gpu/gl/GrGLNoOpInterface.cpp
+++ b/src/gpu/gl/GrGLNoOpInterface.cpp
@@ -238,6 +238,18 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target,
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) {
@@ -271,6 +283,19 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexSubImage2D(GrGLenum target,
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) {
}

Powered by Google App Engine
This is Rietveld 408576698