aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-01 18:42:50 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-02-01 18:42:50 +0000
commit4d263406e3d89853c65b44b7d0646ecf564f8371 (patch)
tree35290dea0dbe0b168f794787adcc59d01e2fea58
parent408586e2a62f5669a663d1df7d3215a508bb240d (diff)
Fix init order warning
git-svn-id: http://skia.googlecode.com/svn/trunk@7522 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--src/gpu/GrGpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrGpu.cpp b/src/gpu/GrGpu.cpp
index 4cce03f16e..3da8219e69 100644
--- a/src/gpu/GrGpu.cpp
+++ b/src/gpu/GrGpu.cpp
@@ -33,8 +33,8 @@ GrGpu::GrGpu()
, fIndexPool(NULL)
, fVertexPoolUseCnt(0)
, fIndexPoolUseCnt(0)
- , fQuadIndexBuffer(NULL)
, fUnitSquareVertexBuffer(NULL)
+ , fQuadIndexBuffer(NULL)
, fContextIsDirty(true) {
fClipMaskManager.setGpu(this);