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

Side by Side Diff: cc/test/CCTiledLayerTestCommon.h

Issue 11008017: cc: Never block on uploads from previous frame and increase max pending uploads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename numPendingUploads to numBlockingUploads and discardPendingUploads to markPendingUploadsAsNon… Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/UnthrottledTextureUploader.cpp ('k') | cc/test/CCTiledLayerTestCommon.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CCTiledLayerTestCommon_h 5 #ifndef CCTiledLayerTestCommon_h
6 #define CCTiledLayerTestCommon_h 6 #define CCTiledLayerTestCommon_h
7 7
8 #include "CCGraphicsContext.h" 8 #include "CCGraphicsContext.h"
9 #include "CCPrioritizedTexture.h" 9 #include "CCPrioritizedTexture.h"
10 #include "CCResourceProvider.h" 10 #include "CCResourceProvider.h"
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 void setContentBounds(const cc::IntSize& contentBounds) { m_forcedContentBou nds = contentBounds; } 123 void setContentBounds(const cc::IntSize& contentBounds) { m_forcedContentBou nds = contentBounds; }
124 virtual cc::IntSize contentBounds() const OVERRIDE; 124 virtual cc::IntSize contentBounds() const OVERRIDE;
125 125
126 protected: 126 protected:
127 cc::IntSize m_forcedContentBounds; 127 cc::IntSize m_forcedContentBounds;
128 }; 128 };
129 129
130 130
131 class FakeTextureUploader : public cc::TextureUploader { 131 class FakeTextureUploader : public cc::TextureUploader {
132 public: 132 public:
133 virtual size_t numPendingUploads() OVERRIDE; 133 virtual size_t numBlockingUploads() OVERRIDE;
134 virtual void markPendingUploadsAsNonBlocking() OVERRIDE;
134 virtual double estimatedTexturesPerSecond() OVERRIDE; 135 virtual double estimatedTexturesPerSecond() OVERRIDE;
135 virtual void beginUploads() OVERRIDE { } 136 virtual void beginUploads() OVERRIDE { }
136 virtual void endUploads() OVERRIDE { } 137 virtual void endUploads() OVERRIDE { }
137 virtual void uploadTexture(cc::CCResourceProvider*, Parameters upload) OVERR IDE; 138 virtual void uploadTexture(cc::CCResourceProvider*, Parameters upload) OVERR IDE;
138 }; 139 };
139 140
140 } 141 }
141 #endif // CCTiledLayerTestCommon_h 142 #endif // CCTiledLayerTestCommon_h
OLDNEW
« no previous file with comments | « cc/UnthrottledTextureUploader.cpp ('k') | cc/test/CCTiledLayerTestCommon.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698