Move function to be static instead of anonymous namespace
authoregdaniel <egdaniel@google.com>
Wed, 22 Apr 2015 20:58:58 +0000 (13:58 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 22 Apr 2015 20:58:58 +0000 (13:58 -0700)
TBR=bsalomon@google.com, jvanverth@google.com

BUG=skia:

Review URL: https://codereview.chromium.org/1057363004

src/gpu/GrGpu.cpp
src/gpu/gl/GrGLGpu.cpp

index 716c023530b94604415ece53a3ec6aef62f566a3..fdb098a637f7f62d2eda9fa75a86b6c8cab26b0e 100644 (file)
@@ -37,9 +37,7 @@ void GrGpu::contextAbandoned() {}
 
 ////////////////////////////////////////////////////////////////////////////////
 
-namespace {
-
-GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
+static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
     // By default, GrRenderTargets are GL's normal orientation so that they
     // can be drawn to by the outside world without the client having
     // to render upside down.
@@ -50,8 +48,6 @@ GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
     }
 }
 
-}
-
 GrTexture* GrGpu::createTexture(const GrSurfaceDesc& origDesc, bool budgeted,
                                 const void* srcData, size_t rowBytes) {
     GrSurfaceDesc desc = origDesc;
index dedd449edd018c4d6e4bef5042bc9b7c99ff11ea..91201009668b2772edce756570920b4c12018a0f 100644 (file)
@@ -361,9 +361,7 @@ void GrGLGpu::onResetContext(uint32_t resetBits) {
     }
 }
 
-namespace {
-
-GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
+static GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
     // By default, GrRenderTargets are GL's normal orientation so that they
     // can be drawn to by the outside world without the client having
     // to render upside down.
@@ -374,8 +372,6 @@ GrSurfaceOrigin resolve_origin(GrSurfaceOrigin origin, bool renderTarget) {
     }
 }
 
-}
-
 GrTexture* GrGLGpu::onWrapBackendTexture(const GrBackendTextureDesc& desc) {
     if (!this->configToGLFormats(desc.fConfig, false, NULL, NULL, NULL)) {
         return NULL;