Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(993)

Unified Diff: cc/CCTextureUpdateController.cpp

Issue 10969018: cc: Rename maxPartialTextureUpdatesMax to partialTextureUpdatesMax. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCTextureUpdateController.cpp
diff --git a/cc/CCTextureUpdateController.cpp b/cc/CCTextureUpdateController.cpp
index ab4b183cd9ee6d4a6d795bcae5e2558a60464d44..32923e75bbbb6329eb199926b971ba7b69b96a04 100644
--- a/cc/CCTextureUpdateController.cpp
+++ b/cc/CCTextureUpdateController.cpp
@@ -16,7 +16,7 @@
namespace {
// Number of partial updates we allow.
-static const size_t maxPartialTextureUpdatesMax = 12;
+static const size_t partialTextureUpdatesMax = 12;
// Measured in seconds.
static const double textureUpdateTickRate = 0.004;
@@ -33,7 +33,7 @@ namespace cc {
size_t CCTextureUpdateController::maxPartialTextureUpdates()
{
- return maxPartialTextureUpdatesMax;
+ return partialTextureUpdatesMax;
}
size_t CCTextureUpdateController::maxFullUpdatesPerTick(TextureUploader* uploader)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698