From 4de8a4dcf70fdaef7ff4e875e6f7c018053491d7 Mon Sep 17 00:00:00 2001 From: egdaniel Date: Wed, 3 Dec 2014 12:22:51 -0800 Subject: [PATCH] Remove guard on and enable vertexAttrib function pts on GrGLInterface. BUG=skia: Review URL: https://codereview.chromium.org/774303003 --- src/gpu/gl/GrGLInterface.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gpu/gl/GrGLInterface.cpp b/src/gpu/gl/GrGLInterface.cpp index d4db766..dba0059 100644 --- a/src/gpu/gl/GrGLInterface.cpp +++ b/src/gpu/gl/GrGLInterface.cpp @@ -184,11 +184,9 @@ bool GrGLInterface::validate() const { NULL == fFunctions.fUniformMatrix3fv || NULL == fFunctions.fUniformMatrix4fv || NULL == fFunctions.fUseProgram || -#if 0 NULL == fFunctions.fVertexAttrib1f || NULL == fFunctions.fVertexAttrib2fv || NULL == fFunctions.fVertexAttrib3fv || -#endif NULL == fFunctions.fVertexAttrib4fv || NULL == fFunctions.fVertexAttribPointer || NULL == fFunctions.fViewport || -- 2.7.4