diff options
author | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-02 21:23:11 +0000 |
---|---|---|
committer | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-02 21:23:11 +0000 |
commit | ba65b1f642d37bf33ed99c66498110007d249c65 (patch) | |
tree | 08baa793c615ec0622e3e3191339ffb47c193434 /chrome/gpu/gpu_video_layer_glx.h | |
parent | 857bff35929a3af15166bd3e7f885e1d7113c050 (diff) | |
download | chromium_src-ba65b1f642d37bf33ed99c66498110007d249c65.zip chromium_src-ba65b1f642d37bf33ed99c66498110007d249c65.tar.gz chromium_src-ba65b1f642d37bf33ed99c66498110007d249c65.tar.bz2 |
Laying down the groundwork for GPU video layers.
This gets --enable-video-layering working when using the GPU backing store. No actual visuals yet, just IPC message passing and a lot of NOTIMPLEMENTED messages.
BUG=33329
TEST=try it out and see if you get lots of NOTIMPLEMENTED messages corresponding with video playback
Review URL: http://codereview.chromium.org/661344
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40434 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/gpu/gpu_video_layer_glx.h')
-rw-r--r-- | chrome/gpu/gpu_video_layer_glx.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/chrome/gpu/gpu_video_layer_glx.h b/chrome/gpu/gpu_video_layer_glx.h new file mode 100644 index 0000000..772ff6f --- /dev/null +++ b/chrome/gpu/gpu_video_layer_glx.h @@ -0,0 +1,46 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_GPU_GPU_VIDEO_LAYER_GLX_H_ +#define CHROME_GPU_GPU_VIDEO_LAYER_GLX_H_ + +#include "base/basictypes.h" +#include "base/process.h" +#include "chrome/common/transport_dib.h" +#include "chrome/common/x11_util.h" +#include "ipc/ipc_channel.h" + +class GpuViewX; +class GpuThread; + +class GpuVideoLayerGLX : public IPC::Channel::Listener { + public: + GpuVideoLayerGLX(GpuViewX* view, + GpuThread* gpu_thread, + int32 routing_id, + const gfx::Size& size); + virtual ~GpuVideoLayerGLX(); + + const gfx::Size& size() const { return size_; } + + // IPC::Channel::Listener implementation. + virtual void OnMessageReceived(const IPC::Message& message); + virtual void OnChannelConnected(int32 peer_pid); + virtual void OnChannelError(); + + private: + // Message handlers. + void OnPaintToVideoLayer(base::ProcessId source_process_id, + TransportDIB::Id id, + const gfx::Rect& bitmap_rect); + + GpuViewX* view_; + GpuThread* gpu_thread_; + int32 routing_id_; + gfx::Size size_; + + DISALLOW_COPY_AND_ASSIGN(GpuVideoLayerGLX); +}; + +#endif // CHROME_GPU_GPU_VIDEO_LAYER_GLX_H_ |