diff options
author | qiankun.miao <qiankun.miao@intel.com> | 2014-09-18 07:33:14 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-18 07:33:14 -0700 |
commit | 00a653239cb15f60ab06ec7f93b2400976143977 (patch) | |
tree | b8c48aaeaadbaa72f5f05dcc00403235d8445fea /src/gpu | |
parent | 69f6f00fd975823e825c5aa0b1b8f4416e7c812b (diff) |
Remove redundant assignment in GrDrawTarget.cpp
BUG=skia:
R=bsalomon@google.com
Author: qiankun.miao@intel.com
Review URL: https://codereview.chromium.org/552273003
Diffstat (limited to 'src/gpu')
-rw-r--r-- | src/gpu/GrDrawTarget.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gpu/GrDrawTarget.cpp b/src/gpu/GrDrawTarget.cpp index 3f1d1c806d..af00ac8db1 100644 --- a/src/gpu/GrDrawTarget.cpp +++ b/src/gpu/GrDrawTarget.cpp @@ -818,7 +818,6 @@ bool GrDrawTarget::AutoReleaseGeometry::set(GrDrawTarget* target, fTarget = target; bool success = true; if (fTarget) { - fTarget = target; success = target->reserveVertexAndIndexSpace(vertexCount, indexCount, &fVertices, |