From eca2dfb002888e4af590275a6da3f157ebb6473b Mon Sep 17 00:00:00 2001 From: "robertphillips@google.com" Date: Wed, 27 Jun 2012 20:13:49 +0000 Subject: [PATCH] fixed missing "return" error git-svn-id: http://skia.googlecode.com/svn/trunk@4379 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/gpu/gl/GrGLCaps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp index 125e387..3c6726c 100644 --- a/src/gpu/gl/GrGLCaps.cpp +++ b/src/gpu/gl/GrGLCaps.cpp @@ -167,7 +167,7 @@ bool GrGLCaps::readPixelsSupported(const GrGLInterface* intf, GrGLenum type) const { if (GR_GL_RGBA == format && GR_GL_UNSIGNED_BYTE == type) { // ES 2 guarantees this format is supported - true; + return true; } if (!fTwoFormatLimit) { -- 2.7.4