From: robertphillips@google.com Date: Wed, 27 Jun 2012 20:13:49 +0000 (+0000) Subject: fixed missing "return" error X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~15770 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eca2dfb002888e4af590275a6da3f157ebb6473b;p=platform%2Fupstream%2FlibSkiaSharp.git fixed missing "return" error git-svn-id: http://skia.googlecode.com/svn/trunk@4379 2bbb7eff-a529-9590-31e7-b0007b416f81 --- 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) {