OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #ifndef UI_GL_GL_IMAGE_GLX_H_ |
| 6 #define UI_GL_GL_IMAGE_GLX_H_ |
| 7 |
| 8 #include "ui/base/x/x11_util.h" |
| 9 #include "ui/gfx/size.h" |
| 10 #include "ui/gl/gl_export.h" |
| 11 #include "ui/gl/gl_image.h" |
| 12 |
| 13 namespace gfx { |
| 14 |
| 15 class GL_EXPORT PixmapGLImageGLX : public GLImage { |
| 16 public: |
| 17 PixmapGLImageGLX(); |
| 18 |
| 19 // Implement GLImage. |
| 20 virtual bool Initialize(GLSurface* compatible_surface) OVERRIDE; |
| 21 virtual void Destroy() OVERRIDE; |
| 22 virtual gfx::Size GetSize() OVERRIDE; |
| 23 virtual bool RebindPixmap(GLuint pixmap) OVERRIDE; |
| 24 |
| 25 protected: |
| 26 virtual ~PixmapGLImageGLX(); |
| 27 |
| 28 private: |
| 29 Display* display_; |
| 30 XID pixmap_; |
| 31 XID glx_pixmap_; |
| 32 gfx::Size size_; |
| 33 |
| 34 DISALLOW_COPY_AND_ASSIGN(PixmapGLImageGLX); |
| 35 }; |
| 36 |
| 37 } // namespace gfx |
| 38 |
| 39 #endif // UI_GL_GL_IMAGE_GLX_H_ |
OLD | NEW |