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

Unified Diff: src/gpu/gl/GrGLInterface.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/GrGLInterface.cpp
diff --git a/src/gpu/gl/GrGLInterface.cpp b/src/gpu/gl/GrGLInterface.cpp
index 4c2713d33493c12e39aebaac270951d014b7575b..2a14c0a8a90d335e7d7893c8cddea3dbbf2f9dc5 100644
--- a/src/gpu/gl/GrGLInterface.cpp
+++ b/src/gpu/gl/GrGLInterface.cpp
@@ -160,9 +160,11 @@ bool GrGLInterface::validate() const {
NULL == fFunctions.fStencilMask ||
NULL == fFunctions.fStencilOp ||
NULL == fFunctions.fTexImage2D ||
+ NULL == fFunctions.fTexImage3D ||
NULL == fFunctions.fTexParameteri ||
NULL == fFunctions.fTexParameteriv ||
NULL == fFunctions.fTexSubImage2D ||
+ NULL == fFunctions.fTexSubImage3D ||
NULL == fFunctions.fUniform1f ||
NULL == fFunctions.fUniform1i ||
NULL == fFunctions.fUniform1fv ||

Powered by Google App Engine
This is Rietveld 408576698