Hwui: Remove unused variables

For build-system CFLAGS clean-up, remove unused variables.

Bug: 18632512

(cherry picked from commit cb4af9b10a)

Change-Id: Ic58bedc84234325512193991fc64315e3aad6f9e
This commit is contained in:
Andreas Gampe
2015-07-27 18:22:08 -07:00
parent 9dc2d5cd5b
commit fea85a33b7

View File

@@ -474,7 +474,6 @@ void FontRenderer::issueDrawCommand(Vector<CacheTexture*>& cacheTextures) {
if (!mFunctor) return;
bool first = true;
bool forceRebind = false;
for (uint32_t i = 0; i < cacheTextures.size(); i++) {
CacheTexture* texture = cacheTextures[i];
if (texture->canDraw()) {
@@ -487,7 +486,6 @@ void FontRenderer::issueDrawCommand(Vector<CacheTexture*>& cacheTextures) {
mFunctor->draw(*texture, mLinearFiltering);
texture->resetMesh();
forceRebind = false;
}
}
}