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

Unified Diff: cc/ThrottledTextureUploaderTest.cpp

Issue 11108020: [cc] Change cc_tests.gyp filenames to Chromium style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/TextureLayerChromiumTest.cpp ('k') | cc/TiledLayerChromiumTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/ThrottledTextureUploaderTest.cpp
diff --git a/cc/ThrottledTextureUploaderTest.cpp b/cc/ThrottledTextureUploaderTest.cpp
deleted file mode 100644
index 5e03dcaddc5e4a60baa952e38a3e926044da1f78..0000000000000000000000000000000000000000
--- a/cc/ThrottledTextureUploaderTest.cpp
+++ /dev/null
@@ -1,111 +0,0 @@
-// Copyright 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "config.h"
-
-#include "ThrottledTextureUploader.h"
-
-#include "Extensions3DChromium.h"
-#include "FakeWebGraphicsContext3D.h"
-#include "GraphicsContext3D.h"
-
-#include "testing/gmock/include/gmock/gmock.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include <wtf/RefPtr.h>
-
-using namespace cc;
-using namespace WebKit;
-
-namespace {
-
-class FakeWebGraphicsContext3DWithQueryTesting : public FakeWebGraphicsContext3D {
-public:
- FakeWebGraphicsContext3DWithQueryTesting() : m_resultAvailable(0)
- {
- }
-
- virtual void getQueryObjectuivEXT(WebGLId, GC3Denum type, GC3Duint* value)
- {
- switch (type) {
- case Extensions3DChromium::QUERY_RESULT_AVAILABLE_EXT:
- *value = m_resultAvailable;
- break;
- default:
- *value = 0;
- break;
- }
- }
-
- void setResultAvailable(unsigned resultAvailable) { m_resultAvailable = resultAvailable; }
-
-private:
- unsigned m_resultAvailable;
-};
-
-class FakeTexture : public cc::LayerTextureUpdater::Texture {
-public:
- FakeTexture() : LayerTextureUpdater::Texture(
- CCPrioritizedTexture::create(NULL, IntSize(256,256), GL_RGBA)) {
- }
-
- virtual void updateRect(cc::CCResourceProvider* , const cc::IntRect&, const cc::IntSize&) OVERRIDE { }
-
-};
-
-
-TEST(ThrottledTextureUploaderTest, NumBlockingUploads)
-{
- OwnPtr<FakeWebGraphicsContext3DWithQueryTesting> fakeContext(adoptPtr(new FakeWebGraphicsContext3DWithQueryTesting));
- OwnPtr<ThrottledTextureUploader> uploader = ThrottledTextureUploader::create(fakeContext.get());
- OwnPtr<FakeTexture> texture = adoptPtr(new FakeTexture);
- TextureUploader::Parameters upload;
- upload.texture = texture.get();
- upload.sourceRect = IntRect(IntPoint(0,0), texture->texture()->size());
- upload.destOffset = IntSize();
-
- fakeContext->setResultAvailable(0);
- EXPECT_EQ(0, uploader->numBlockingUploads());
- uploader->uploadTexture(NULL, upload);
- EXPECT_EQ(1, uploader->numBlockingUploads());
- uploader->uploadTexture(NULL, upload);
- EXPECT_EQ(2, uploader->numBlockingUploads());
-
- fakeContext->setResultAvailable(1);
- EXPECT_EQ(0, uploader->numBlockingUploads());
- uploader->uploadTexture(NULL, upload);
- EXPECT_EQ(0, uploader->numBlockingUploads());
- uploader->uploadTexture(NULL, upload);
- uploader->uploadTexture(NULL, upload);
- EXPECT_EQ(0, uploader->numBlockingUploads());
-}
-
-TEST(ThrottledTextureUploaderTest, MarkPendingUploadsAsNonBlocking)
-{
- OwnPtr<FakeWebGraphicsContext3DWithQueryTesting> fakeContext(adoptPtr(new FakeWebGraphicsContext3DWithQueryTesting));
- OwnPtr<ThrottledTextureUploader> uploader = ThrottledTextureUploader::create(fakeContext.get());
- OwnPtr<FakeTexture> texture = adoptPtr(new FakeTexture);
- TextureUploader::Parameters upload;
- upload.texture = texture.get();
- upload.sourceRect = IntRect(IntPoint(0,0), texture->texture()->size());
- upload.destOffset = IntSize();
-
- fakeContext->setResultAvailable(0);
- EXPECT_EQ(0, uploader->numBlockingUploads());
- uploader->uploadTexture(NULL, upload);
- uploader->uploadTexture(NULL, upload);
- EXPECT_EQ(2, uploader->numBlockingUploads());
-
- uploader->markPendingUploadsAsNonBlocking();
- EXPECT_EQ(0, uploader->numBlockingUploads());
- uploader->uploadTexture(NULL, upload);
- EXPECT_EQ(1, uploader->numBlockingUploads());
-
- fakeContext->setResultAvailable(1);
- EXPECT_EQ(0, uploader->numBlockingUploads());
- uploader->uploadTexture(NULL, upload);
- uploader->markPendingUploadsAsNonBlocking();
- EXPECT_EQ(0, uploader->numBlockingUploads());
-}
-
-} // namespace
« no previous file with comments | « cc/TextureLayerChromiumTest.cpp ('k') | cc/TiledLayerChromiumTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698