HomeSort by relevance Sort by last modified time
    Searched refs:textures_ (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/cc/test/
ordered_texture_map.cc 21 textures_[id] = texture;
30 textures_[id] = texture;
34 TextureMap::iterator map_it = textures_.find(id);
35 DCHECK(map_it != textures_.end());
36 textures_.erase(map_it);
47 return textures_.find(id) != textures_.end();
52 scoped_refptr<TestTexture> texture = textures_[id];
ordered_texture_map.h 39 TextureMap textures_; member in class:cc::OrderedTextureMap
  /external/chromium_org/gpu/command_buffer/tests/
gl_copy_texture_CHROMIUM_unittest.cc 26 glGenTextures(2, textures_);
27 glBindTexture(GL_TEXTURE_2D, textures_[1]);
39 textures_[1], 0);
43 glDeleteTextures(2, textures_);
49 GLuint textures_[2]; member in class:gpu::GLCopyTextureCHROMIUMTest
57 glBindTexture(GL_TEXTURE_2D, textures_[0]);
61 glCopyTextureCHROMIUM(GL_TEXTURE_2D, textures_[0], textures_[1], 0, GL_RGBA,
87 glBindTexture(GL_TEXTURE_2D, textures_[0]);
100 textures_[0]
    [all...]
  /external/chromium_org/gpu/tools/compositor_model_bench/
forward_render_model.h 28 scoped_ptr<TextureGenerator> textures_; member in class:ForwardRenderSimulator
render_tree.h 179 textures_.push_back(t);
183 return textures_.size();
187 return &textures_[index];
193 std::vector<Texture> textures_; member in class:CCNode
forward_render_model.cc 46 textures_.reset(new TextureGenerator(root));
  /external/chromium_org/media/tools/player_x11/
gl_video_renderer.h 38 GLuint textures_[3]; member in class:GlVideoRenderer
gl_video_renderer.cc 155 glGenTextures(3, textures_);
157 glBindTexture(GL_TEXTURE_2D, textures_[0]);
163 glBindTexture(GL_TEXTURE_2D, textures_[1]);
169 glBindTexture(GL_TEXTURE_2D, textures_[2]);
  /external/chromium_org/gpu/command_buffer/service/
mailbox_synchronizer.cc 87 DCHECK_EQ(0U, textures_.size());
94 for (TextureMap::iterator it = textures_.begin(); it != textures_.end();
109 for (TextureMap::iterator it = textures_.begin(); it != textures_.end();
127 textures_.insert(std::make_pair(new_texture, TextureVersion(group)));
136 TextureMap::iterator it = textures_.find(texture);
137 if (it != textures_.end()) {
140 textures_.erase(it);
161 TextureMap::iterator it = textures_.find(texture)
    [all...]
stream_texture_manager_in_process_android.h 40 TextureMap textures_; member in class:gpu::StreamTextureManagerInProcess
stream_texture_manager_in_process_android.cc 99 if (!textures_.empty()) {
144 textures_[stream_id] = surface_texture;
156 textures_.erase(stream_id);
163 TextureMap::const_iterator it = textures_.find(stream_id);
164 if (it != textures_.end())
mailbox_synchronizer.h 85 TextureMap textures_; member in class:gpu::gles2::MailboxSynchronizer
texture_manager.cc 32 DCHECK(textures_.empty());
46 textures_.clear();
    [all...]
texture_manager.h 783 TextureMap textures_; member in class:gpu::gles2::TextureManager
  /external/chromium_org/cc/resources/
prioritized_resource_manager.cc 32 while (textures_.size() > 0)
33 UnregisterTexture(*textures_.begin());
67 for (TextureSet::iterator it = textures_.begin(); it != textures_.end();
190 for (TextureSet::iterator it = textures_.begin(); it != textures_.end();
420 DCHECK(!ContainsKey(textures_, texture));
423 textures_.insert(texture);
431 DCHECK(ContainsKey(textures_, texture));
435 textures_.erase(texture)
    [all...]
resource_update_controller_unittest.cc 114 textures_[i] = PrioritizedResource::Create(resource_manager_.get(),
117 textures_[i]->
144 textures_[texture_index].get(), &bitmap_, rect, rect, gfx::Vector2d());
160 textures_[texture_index].get(), &bitmap_, rect, rect, gfx::Vector2d());
194 scoped_ptr<PrioritizedResource> textures_[4]; member in class:cc::__anon7400::ResourceUpdateControllerTest
prioritized_resource_manager.h 218 TextureSet textures_; member in class:cc::PrioritizedResourceManager
resource_provider_unittest.cc 133 textures_[mailbox] = texture;
151 return textures_[mailbox];
160 TextureMap textures_;
    [all...]
  /external/chromium_org/ppapi/examples/compositor/
compositor.cc 88 std::vector<GLuint> textures_; member in class:__anon14679::DemoInstance
151 total_resource_ -= static_cast<int32_t>(textures_.size());
152 textures_.clear();
190 if (textures_.empty()) {
203 texture = textures_.back();
204 textures_.pop_back();
281 size_t free_resource = textures_.size() + images_.size();
417 textures_.push_back(texture);
  /external/chromium_org/ppapi/proxy/
video_decoder_resource.cc 79 TextureMap::iterator it = textures_.begin();
80 for (; it != textures_.end(); ++it)
382 textures_.insert(
391 textures_.insert(
420 textures_.erase(texture_id);
520 TextureMap::iterator it = textures_.find(picture.texture_id);
521 if (it != textures_.end()) {
video_decoder_resource.h 146 TextureMap textures_; member in class:ppapi::proxy::VideoDecoderResource

Completed in 526 milliseconds