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"
15 class GL_EXPORT GLImageGLX
: public GLImage
{
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 bool CopyTexImage(unsigned target
) OVERRIDE
;
27 virtual void WillUseTexImage() OVERRIDE
{}
28 virtual void DidUseTexImage() OVERRIDE
{}
29 virtual void WillModifyTexImage() OVERRIDE
{}
30 virtual void DidModifyTexImage() OVERRIDE
{}
31 virtual bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget
,
33 OverlayTransform transform
,
34 const Rect
& bounds_rect
,
35 const RectF
& crop_rect
) OVERRIDE
;
38 virtual ~GLImageGLX();
42 const gfx::Size size_
;
43 unsigned internalformat_
;
45 DISALLOW_COPY_AND_ASSIGN(GLImageGLX
);
50 #endif // UI_GL_GL_IMAGE_GLX_H_