Fix IPC fuzzer build.
[chromium-blink-merge.git] / cc / test / ordered_texture_map.cc
blobee3e2f3be865aebf002fa0921ec905018015d4ba
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "cc/test/ordered_texture_map.h"
7 #include "base/logging.h"
8 #include "cc/test/test_texture.h"
10 namespace cc {
12 OrderedTextureMap::OrderedTextureMap() {}
14 OrderedTextureMap::~OrderedTextureMap() {}
16 void OrderedTextureMap::Append(GLuint id,
17 scoped_refptr<TestTexture> texture) {
18 DCHECK(texture.get());
19 DCHECK(!ContainsId(id));
21 textures_[id] = texture;
22 ordered_textures_.push_back(id);
25 void OrderedTextureMap::Replace(GLuint id,
26 scoped_refptr<TestTexture> texture) {
27 DCHECK(texture.get());
28 DCHECK(ContainsId(id));
30 textures_[id] = texture;
33 void OrderedTextureMap::Remove(GLuint id) {
34 TextureMap::iterator map_it = textures_.find(id);
35 DCHECK(map_it != textures_.end());
36 textures_.erase(map_it);
38 TextureList::iterator list_it =
39 std::find(ordered_textures_.begin(), ordered_textures_.end(), id);
40 DCHECK(list_it != ordered_textures_.end());
41 ordered_textures_.erase(list_it);
44 size_t OrderedTextureMap::Size() { return ordered_textures_.size(); }
46 bool OrderedTextureMap::ContainsId(GLuint id) {
47 return textures_.find(id) != textures_.end();
50 scoped_refptr<TestTexture> OrderedTextureMap::TextureForId(GLuint id) {
51 DCHECK(ContainsId(id));
52 scoped_refptr<TestTexture> texture = textures_[id];
53 DCHECK(texture.get());
54 return texture;
57 GLuint OrderedTextureMap::IdAt(size_t index) {
58 DCHECK(index < Size());
59 return ordered_textures_[index];
62 } // namespace cc