summaryrefslogtreecommitdiffstats
path: root/chrome/gpu/gpu_view_x.h
blob: cbc7658ba7233e4a09645b529be205aed16d0a20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// 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_VIEW_X_H_
#define CHROME_GPU_GPU_VIEW_X_H_

#include "base/basictypes.h"
#include "base/scoped_ptr.h"
#include "chrome/gpu/x_util.h"
#include "gfx/native_widget_types.h"
#include "ipc/ipc_channel.h"

class GpuBackingStoreGLX;
class GpuThread;
class GpuVideoLayerGLX;

namespace gfx {
class Rect;
class Size;
}

class GpuViewX
    : public IPC::Channel::Listener {
 public:
  GpuViewX(GpuThread* gpu_thread,
           XID parent,
           int32 routing_id);
  ~GpuViewX();

  GpuThread* gpu_thread() const { return gpu_thread_; }
  XID window() const { return window_; }

  // Wrapper around GPUBackingStoreGLXContext using our current window.
  GLXContext BindContext();

  // IPC::Channel::Listener implementation.
  virtual void OnMessageReceived(const IPC::Message& message);
  virtual void OnChannelConnected(int32 peer_pid);
  virtual void OnChannelError();

  void DidScrollBackingStoreRect(int dx, int dy, const gfx::Rect& rect);

  void Repaint();

 private:
  // IPC message handlers.
  void OnNewBackingStore(int32 routing_id, const gfx::Size& size);
  void OnNewVideoLayer(int32 routing_id, const gfx::Size& size);
  void OnWindowPainted();

  GpuThread* gpu_thread_;
  int32 routing_id_;

  XID window_;

  scoped_ptr<GpuBackingStoreGLX> backing_store_;

  scoped_ptr<GpuVideoLayerGLX> video_layer_;

  DISALLOW_COPY_AND_ASSIGN(GpuViewX);
};

#endif  // CHROME_GPU_GPU_VIEW_X_H_