From e788430144d1474329878abd1ddb39cc0ca52a0a Mon Sep 17 00:00:00 2001 From: "robertphillips@google.com" Date: Wed, 18 Apr 2012 14:39:58 +0000 Subject: Added glBlendEquation to GL interface http://codereview.appspot.com/6057047/ git-svn-id: http://skia.googlecode.com/svn/trunk@3720 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/gpu/gl/debug/GrGLCreateDebugInterface.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gpu/gl/debug') diff --git a/src/gpu/gl/debug/GrGLCreateDebugInterface.cpp b/src/gpu/gl/debug/GrGLCreateDebugInterface.cpp index ff744c0e66..120381e29e 100644 --- a/src/gpu/gl/debug/GrGLCreateDebugInterface.cpp +++ b/src/gpu/gl/debug/GrGLCreateDebugInterface.cpp @@ -70,6 +70,7 @@ GrGLvoid GR_GL_FUNCTION_TYPE debugGLBindTexture(GrGLenum target, GrGLuint textur GrGLvoid GR_GL_FUNCTION_TYPE debugGLBlendColor(GrGLclampf red, GrGLclampf green, GrGLclampf blue, GrGLclampf alpha) {} GrGLvoid GR_GL_FUNCTION_TYPE debugGLBindFragDataLocation(GrGLuint program, GrGLuint colorNumber, const GrGLchar* name) {} GrGLvoid GR_GL_FUNCTION_TYPE debugGLBlendFunc(GrGLenum sfactor, GrGLenum dfactor) {} +GrGLvoid GR_GL_FUNCTION_TYPE debugGLBlendEquation(GrGLenum mode) {} //////////////////////////////////////////////////////////////////////////////// GrGLvoid GR_GL_FUNCTION_TYPE debugGLBufferData(GrGLenum target, GrGLsizeiptr size, const GrGLvoid* data, GrGLenum usage) { @@ -924,6 +925,7 @@ const GrGLInterface* GrGLCreateDebugInterface() { interface->fBindTexture = debugGLBindTexture; interface->fBlendColor = debugGLBlendColor; interface->fBlendFunc = debugGLBlendFunc; + interface->fBlendEquation = debugGLBlendEquation; interface->fBufferData = debugGLBufferData; interface->fBufferSubData = debugGLBufferSubData; interface->fClear = debugGLClear; -- cgit v1.2.3