HomeSort by relevance Sort by last modified time
    Searched refs:textures_ (Results 1 - 22 of 22) 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/service/
stream_texture_manager_in_process_android.cc 45 if (!textures_.empty()) {
57 textures_[service_id] = texture;
67 textures_.erase(service_id);
73 TextureMap::const_iterator it = textures_.find(service_id);
74 if (it != textures_.end())
83 for (TextureMap::iterator it = textures_.begin(); it != textures_.end();
mailbox_synchronizer.cc 82 DCHECK_EQ(0U, textures_.size());
89 for (TextureMap::iterator it = textures_.begin(); it != textures_.end();
104 for (TextureMap::iterator it = textures_.begin(); it != textures_.end();
122 textures_.insert(std::make_pair(new_texture, TextureVersion(group)));
131 TextureMap::iterator it = textures_.find(texture);
132 if (it != textures_.end()) {
135 textures_.erase(it);
155 TextureMap::iterator it = textures_.find(texture)
    [all...]
mailbox_synchronizer.h 80 TextureMap textures_; member in class:gpu::gles2::MailboxSynchronizer
stream_texture_manager_in_process_android.h 64 TextureMap textures_; member in class:gpu::StreamTextureManagerInProcess
texture_manager.cc 74 DCHECK(textures_.empty());
88 textures_.clear();
    [all...]
texture_manager.h 793 TextureMap textures_; member in class:gpu::gles2::TextureManager
  /external/chromium_org/content/browser/renderer_host/
compositing_iosurface_transformer_mac.cc 98 memset(textures_, 0, sizeof(textures_));
109 DCHECK_EQ(textures_[i], 0u) << "Failed to call ReleaseCachedGLObjects().";
115 if (textures_[i]) {
116 glDeleteTextures(1, &textures_[i]);
117 textures_[i] = 0;
141 texture_target_, textures_[RGBA_OUTPUT], 0);
162 *texture = textures_[RGBA_OUTPUT];
204 texture_target_, textures_[Y_PLANE_OUTPUT], 0);
206 texture_target_, textures_[UUVV_INTERMEDIATE], 0)
    [all...]
compositing_iosurface_transformer_mac.h 111 GLuint textures_[NUM_CACHED_TEXTURES]; member in class:content::CompositingIOSurfaceTransformer
  /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/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,
91 glBindTexture(GL_TEXTURE_2D, textures_[0]);
96 glCopyTextureCHROMIUM(GL_TEXTURE_2D, textures_[0], textures_[1], 0, GL_RGBA
    [all...]
  /external/chromium_org/content/common/gpu/
stream_texture_manager_android.cc 63 DCHECK(textures_.size() == textures_from_service_id_.size());
64 if (!textures_.IsEmpty())
77 return textures_.Add(texture);
85 for (TextureMap::Iterator<StreamTextureAndroid> it(&textures_);
88 textures_.Remove(it.GetCurrentKey());
108 StreamTextureAndroid* stream_texture = textures_.Lookup(stream_id);
127 StreamTextureAndroid* stream_texture = textures_.Lookup(stream_id);
141 StreamTextureAndroid* stream_texture = textures_.Lookup(stream_id);
stream_texture_manager_android.h 101 TextureMap textures_; member in class:content::StreamTextureManagerAndroid
  /external/chromium_org/media/tools/player_x11/
gl_video_renderer.h 38 GLuint textures_[3]; member in class:GlVideoRenderer
gl_video_renderer.cc 153 glGenTextures(3, textures_);
155 glBindTexture(GL_TEXTURE_2D, textures_[0]);
161 glBindTexture(GL_TEXTURE_2D, textures_[1]);
167 glBindTexture(GL_TEXTURE_2D, textures_[2]);
  /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]->
138 textures_[texture_index].get(), &bitmap_, rect, rect, gfx::Vector2d());
154 textures_[texture_index].get(), &bitmap_, rect, rect, gfx::Vector2d());
187 scoped_ptr<PrioritizedResource> textures_[4]; member in class:cc::__anon3910::ResourceUpdateControllerTest
prioritized_resource_manager.h 218 TextureSet textures_; member in class:cc::PrioritizedResourceManager
resource_provider_unittest.cc 119 textures_[mailbox] = texture;
137 return textures_[mailbox];
146 TextureMap textures_;
    [all...]

Completed in 336 milliseconds