Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: ui/gl/gl_image_glx.h

Issue 10543125: gpu: Add support for GLX_EXT_texture_from_pixmap extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove .gitmodules change. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698