[DevTools] Move DispatchOnDevToolsFrontend to embedder.
[chromium-blink-merge.git] / ui / gl / gl_image_glx.h
blobfc9c3cf49614c82fb9a085cbdf5b4a33f28570d2
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_GL_GL_IMAGE_GLX_H_
6 #define UI_GL_GL_IMAGE_GLX_H_
8 #include "ui/gfx/size.h"
9 #include "ui/gfx/x/x11_types.h"
10 #include "ui/gl/gl_export.h"
11 #include "ui/gl/gl_image.h"
13 namespace gfx {
15 class GL_EXPORT GLImageGLX : public GLImage {
16 public:
17 GLImageGLX(const gfx::Size& size, unsigned internalformat);
19 bool Initialize(XID pixmap);
21 // Overridden from GLImage:
22 virtual void Destroy(bool have_context) OVERRIDE;
23 virtual gfx::Size GetSize() OVERRIDE;
24 virtual bool BindTexImage(unsigned target) OVERRIDE;
25 virtual void ReleaseTexImage(unsigned target) OVERRIDE;
26 virtual void WillUseTexImage() OVERRIDE {}
27 virtual void DidUseTexImage() OVERRIDE {}
28 virtual void WillModifyTexImage() OVERRIDE {}
29 virtual void DidModifyTexImage() OVERRIDE {}
30 virtual bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
31 int z_order,
32 OverlayTransform transform,
33 const Rect& bounds_rect,
34 const RectF& crop_rect) OVERRIDE;
36 protected:
37 virtual ~GLImageGLX();
39 private:
40 XID glx_pixmap_;
41 const gfx::Size size_;
42 unsigned internalformat_;
44 DISALLOW_COPY_AND_ASSIGN(GLImageGLX);
47 } // namespace gfx
49 #endif // UI_GL_GL_IMAGE_GLX_H_