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

Unified Diff: media/gpu/dxva_picture_buffer_win.h

Issue 1998723002: Move code in ui/gl/* from gfx:: to gl:: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 months 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 | « media/gpu/avda_state_provider.h ('k') | media/gpu/dxva_picture_buffer_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/gpu/dxva_picture_buffer_win.h
diff --git a/media/gpu/dxva_picture_buffer_win.h b/media/gpu/dxva_picture_buffer_win.h
index 32bf76aab3c64801d59c1c38af95130903b835dd..59a35d595f4e0387a1506e9dc8970d1f3631e9b3 100644
--- a/media/gpu/dxva_picture_buffer_win.h
+++ b/media/gpu/dxva_picture_buffer_win.h
@@ -53,7 +53,7 @@ class DXVAPictureBuffer {
gfx::Size size() const { return picture_buffer_.size(); }
virtual bool waiting_to_reuse() const;
- virtual gfx::GLFence* reuse_fence();
+ virtual gl::GLFence* reuse_fence();
// Called when the source surface |src_surface| is copied to the destination
// |dest_surface|
@@ -88,7 +88,7 @@ class PbufferPictureBuffer : public DXVAPictureBuffer {
ID3D11Texture2D* dx11_texture,
int input_buffer_id) override;
bool waiting_to_reuse() const override;
- gfx::GLFence* reuse_fence() override;
+ gl::GLFence* reuse_fence() override;
bool CopySurfaceComplete(IDirect3DSurface9* src_surface,
IDirect3DSurface9* dest_surface) override;
@@ -98,7 +98,7 @@ class PbufferPictureBuffer : public DXVAPictureBuffer {
bool waiting_to_reuse_;
EGLSurface decoding_surface_;
- std::unique_ptr<gfx::GLFence> reuse_fence_;
+ std::unique_ptr<gl::GLFence> reuse_fence_;
HANDLE texture_share_handle_;
base::win::ScopedComPtr<IDirect3DTexture9> decoding_texture_;
« no previous file with comments | « media/gpu/avda_state_provider.h ('k') | media/gpu/dxva_picture_buffer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698