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

Unified Diff: cc/test/ordered_texture_map.cc

Issue 1531403002: Revert "Delete CC." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years 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/test/ordered_texture_map.h ('k') | cc/test/paths.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/ordered_texture_map.cc
diff --git a/cc/test/ordered_texture_map.cc b/cc/test/ordered_texture_map.cc
new file mode 100644
index 0000000000000000000000000000000000000000..649700c49795a8eb12ff29626e0c1ea1f1b1d14f
--- /dev/null
+++ b/cc/test/ordered_texture_map.cc
@@ -0,0 +1,65 @@
+// Copyright 2013 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 "cc/test/ordered_texture_map.h"
+
+#include "base/logging.h"
+#include "cc/test/test_texture.h"
+
+namespace cc {
+
+OrderedTextureMap::OrderedTextureMap() {}
+
+OrderedTextureMap::~OrderedTextureMap() {}
+
+void OrderedTextureMap::Append(GLuint id,
+ scoped_refptr<TestTexture> texture) {
+ DCHECK(texture.get());
+ DCHECK(!ContainsId(id));
+
+ textures_[id] = texture;
+ ordered_textures_.push_back(id);
+}
+
+void OrderedTextureMap::Replace(GLuint id,
+ scoped_refptr<TestTexture> texture) {
+ DCHECK(texture.get());
+ DCHECK(ContainsId(id));
+
+ textures_[id] = texture;
+}
+
+void OrderedTextureMap::Remove(GLuint id) {
+ TextureMap::iterator map_it = textures_.find(id);
+ // for some test we generate dummy tex id, which are not registered,
+ // nothing to remove in that case.
+ if (map_it == textures_.end())
+ return;
+ textures_.erase(map_it);
+
+ TextureList::iterator list_it =
+ std::find(ordered_textures_.begin(), ordered_textures_.end(), id);
+ DCHECK(list_it != ordered_textures_.end());
+ ordered_textures_.erase(list_it);
+}
+
+size_t OrderedTextureMap::Size() { return ordered_textures_.size(); }
+
+bool OrderedTextureMap::ContainsId(GLuint id) {
+ return textures_.find(id) != textures_.end();
+}
+
+scoped_refptr<TestTexture> OrderedTextureMap::TextureForId(GLuint id) {
+ DCHECK(ContainsId(id));
+ scoped_refptr<TestTexture> texture = textures_[id];
+ DCHECK(texture.get());
+ return texture;
+}
+
+GLuint OrderedTextureMap::IdAt(size_t index) {
+ DCHECK(index < Size());
+ return ordered_textures_[index];
+}
+
+} // namespace cc
« no previous file with comments | « cc/test/ordered_texture_map.h ('k') | cc/test/paths.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698