Home
last modified time | relevance | path

Searched refs:texture_ (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/ui/surface/
Daccelerated_surface_mac.cc22 texture_(0), in AcceleratedSurface()
96 glBindTexture(target, texture_); in SwapBuffers()
140 if (!texture_) { in AllocateRenderBuffers()
142 texture_ = CreateTexture(target); in AllocateRenderBuffers()
149 glBindTexture(target, texture_); in AllocateRenderBuffers()
158 texture_, in SetupFrameBufferObject()
208 } else if (!texture_) { in SetSurfaceSize()
210 texture_ = CreateTexture(target); in SetSurfaceSize()
Daccelerated_surface_mac.h140 GLuint texture_; variable
/external/chromium_org/content/browser/renderer_host/
Dcompositing_iosurface_shader_programs_mac.cc47 uniform sampler2DRect texture_;
50 gl_FragColor = vec4(texture2DRect(texture_, texture_coord).rgb, 1.0);
127 uniform sampler2DRect texture_;
134 vec3 pixel0 = texture2DRect(texture_, texture_coord0).rgb;
135 vec3 pixel1 = texture2DRect(texture_, texture_coord1).rgb;
136 vec3 pixel2 = texture2DRect(texture_, texture_coord2).rgb;
137 vec3 pixel3 = texture2DRect(texture_, texture_coord3).rgb;
180 uniform sampler2DRect texture_;
187 vec4 lo_uuvv = texture2DRect(texture_, texture_coord0);
188 vec4 hi_uuvv = texture2DRect(texture_, texture_coord1);
Dcompositing_iosurface_mac.mm237 texture_(0),
318 glBindTexture(GL_TEXTURE_RECTANGLE_ARB, texture_);
344 // Workaround for issue 158469. Issue a dummy draw call with texture_ not
488 glGenTextures(1, &texture_);
489 glBindTexture(GL_TEXTURE_RECTANGLE_ARB, texture_);
540 if (texture_) {
541 glDeleteTextures(1, &texture_);
542 texture_ = 0;
622 texture_, src_rect, dst_pixel_rect.size(),
630 texture_, src_rect, dst_pixel_rect.size(),
Dcompositing_iosurface_mac.h293 GLuint texture_; variable
/external/chromium_org/third_party/webrtc/test/gl/
Dgl_renderer.cc27 glGenTextures(1, &texture_); in Init()
40 glDeleteTextures(1, &texture_); in Destroy()
65 glBindTexture(GL_TEXTURE_2D, texture_); in ResizeVideo()
84 glBindTexture(GL_TEXTURE_2D, texture_); in RenderFrame()
Dgl_renderer.h43 GLuint texture_; variable
/external/chromium_org/third_party/webrtc/test/win/
Dd3d_renderer.cc38 texture_(NULL), in D3dRenderer()
57 texture_ = NULL; in Destroy()
175 texture_ = texture; in Resize()
203 if (texture_->LockRect(0, &lock_rect, NULL, 0) != D3D_OK) in RenderFrame()
207 texture_->UnlockRect(0); in RenderFrame()
212 d3d_device_->SetTexture(0, texture_); in RenderFrame()
Dd3d_renderer.h46 scoped_refptr<IDirect3DTexture9> texture_; variable
/external/chromium_org/cc/resources/
Dlayer_updater.h28 PrioritizedResource* texture() { return texture_.get(); } in texture()
40 scoped_ptr<PrioritizedResource> texture_;
Dlayer_updater.cc12 : texture_(texture.Pass()) {} in Resource()
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
Dgraphics_3d.cc379 glGenTextures(1, &texture_); in InitTexture()
380 glBindTexture(GL_TEXTURE_2D, texture_); in InitTexture()
419 glBindTexture(GL_TEXTURE_2D, texture_); in Render()
481 GLuint texture_; member in Graphics3DInstance
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
Dcube.cc382 glGenTextures(1, &texture_); in InitTexture()
383 glBindTexture(GL_TEXTURE_2D, texture_); in InitTexture()
422 glBindTexture(GL_TEXTURE_2D, texture_); in Render()
492 GLuint texture_; member in CubeInstance
/external/chromium_org/gpu/command_buffer/service/
Dtexture_manager.h410 const Texture* texture() const { return texture_; } in texture()
411 Texture* texture() { return texture_; } in texture()
413 GLuint service_id() const { return texture_->service_id(); } in service_id()
427 Texture* texture_; variable
Dtexture_manager.cc881 texture_(texture), in TextureRef()
885 DCHECK(texture_); in TextureRef()
886 texture_->AddTextureRef(this); in TextureRef()
898 texture_->RemoveTextureRef(this, manager_->have_context_); in ~TextureRef()
/external/chromium_org/content/common/gpu/client/
Dgl_helper.cc51 : texture_(gl), framebuffer_(gl), size_(size) { in TextureFrameBufferPair()
52 content::ScopedTextureBinder<GL_TEXTURE_2D> texture_binder(gl, texture_); in TextureFrameBufferPair()
65 GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, texture_, 0); in TextureFrameBufferPair()
68 GLuint texture() const { return texture_.id(); } in texture()
73 content::ScopedTexture texture_; member in __anon3bf2c2800111::TextureFrameBufferPair
/external/chromium_org/cc/trees/
Dlayer_tree_host_unittest.cc1634 return texture_.get() ? texture_->have_backing_texture() : false; in HaveBackingTexture()
1642 if (texture_) in CreateTextureIfNeeded()
1644 texture_ = PrioritizedResource::Create( in CreateTextureIfNeeded()
1646 texture_->SetDimensions(gfx::Size(10, 10), RGBA_8888); in CreateTextureIfNeeded()
1650 scoped_ptr<PrioritizedResource> texture_; member in cc::__anon646b29320111::EvictionTestLayer
1679 if (!texture_) in SetTexturePriorities()
1681 texture_->set_request_priority(PriorityCalculator::UIPriority(true)); in SetTexturePriorities()
1687 if (!texture_) in Update()
1692 texture_.get(), &bitmap_, full_rect, full_rect, gfx::Vector2d()); in Update()
1708 test_layer_impl->SetHasTexture(texture_->have_backing_texture()); in PushPropertiesTo()