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

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: Add kGLImplementationMockGL case to gl_image_android.cc. 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
« no previous file with comments | « ui/gl/gl_image_android.cc ('k') | ui/gl/gl_image_glx.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 gfx::PluginWindowHandle window_;
33 XID pixmap_;
34 XID glx_pixmap_;
35 gfx::Size size_;
36
37 DISALLOW_COPY_AND_ASSIGN(GLImageGLX);
38 };
39
40 } // namespace gfx
41
42 #endif // UI_GL_GL_IMAGE_GLX_H_
OLDNEW
« no previous file with comments | « ui/gl/gl_image_android.cc ('k') | ui/gl/gl_image_glx.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698