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

Unified Diff: ui/gl/gl_image.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gl/gl.gyp ('k') | ui/gl/gl_image.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_image.h
diff --git a/ui/gl/gl_image.h b/ui/gl/gl_image.h
new file mode 100644
index 0000000000000000000000000000000000000000..8df7c71f2fcc999a67ff1ed237edd7d6c90a5b9d
--- /dev/null
+++ b/ui/gl/gl_image.h
@@ -0,0 +1,50 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_GL_GL_IMAGE_H_
+#define UI_GL_GL_IMAGE_H_
+
+#include "base/memory/ref_counted.h"
+#include "ui/gfx/native_widget_types.h"
+#include "ui/gfx/size.h"
+#include "ui/gl/gl_bindings.h"
+#include "ui/gl/gl_export.h"
+
+namespace gfx {
+
+class GLSurface;
+
+// Encapsulates an image that can be bound to a texture, hiding platform
+// specific management.
+class GL_EXPORT GLImage : public base::RefCounted<GLImage> {
+ public:
+ GLImage();
+
+ // Destroys the image.
+ virtual void Destroy() = 0;
+
+ // Get the size of the image.
+ virtual gfx::Size GetSize() = 0;
+
+ // Bind image to texture currently bound to GL_TEXTURE_2D target.
+ virtual bool BindTexImage();
+
+ // Release image from texture currently bound to GL_TEXTURE_2D target.
+ virtual void ReleaseTexImage();
+
+ // Create a GL image for a window.
+ static scoped_refptr<GLImage> CreateGLImage(gfx::PluginWindowHandle window);
+
+ protected:
+ virtual ~GLImage();
+
+ private:
+ friend class base::RefCounted<GLImage>;
+
+ DISALLOW_COPY_AND_ASSIGN(GLImage);
+};
+
+} // namespace gfx
+
+#endif // UI_GL_GL_IMAGE_H_
« no previous file with comments | « ui/gl/gl.gyp ('k') | ui/gl/gl_image.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698