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

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: Move CreateGLImage below virtual methods. Created 8 years, 2 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 GLImageGLX : public GLImage {
16 public:
17 explicit GLImageGLX(gfx::PluginWindowHandle window);
18
19 virtual bool Initialize();
20
21 // Implement GLImage.
22 virtual void Destroy() OVERRIDE;
23 virtual gfx::Size GetSize() OVERRIDE;
24 virtual bool BindTexImage() OVERRIDE;
25 virtual void ReleaseTexImage() OVERRIDE;
26
27 protected:
28 virtual ~GLImageGLX();
29
30 private:
31 Display* display_;
32 XID pixmap_;
33 XID glx_pixmap_;
34 gfx::Size size_;
35
36 DISALLOW_COPY_AND_ASSIGN(GLImageGLX);
37 };
38
39 } // namespace gfx
40
41 #endif // UI_GL_GL_IMAGE_GLX_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698