diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-02-18 16:21:58 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-02-18 16:21:58 +0000 |
commit | 5d18c3872bedc1d46f88ccd07f9a7814d5cbf483 (patch) | |
tree | e18fe93aca35883a96be585779ffa098a939d671 | |
parent | 2c3b51f22ba467aa0ceb1d34190f516576d17dd3 (diff) |
Fix warning about non-local anonymous struct
git-svn-id: http://skia.googlecode.com/svn/trunk@815 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | gpu/src/GrGpuGL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/src/GrGpuGL.cpp b/gpu/src/GrGpuGL.cpp index c3c8f18855..8cfc4a07ba 100644 --- a/gpu/src/GrGpuGL.cpp +++ b/gpu/src/GrGpuGL.cpp @@ -536,7 +536,7 @@ GrRenderTarget* GrGpuGL::createRenderTargetFrom3DApiState() { static const GLuint UNKNOWN_BITS = ~0; // defines stencil formats from more to less preferred -struct { +static const struct { GLenum fEnum; GLuint fBits; } gStencilFormats[] = { |