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

Unified Diff: ui/gl/gl_image_egl.h

Issue 13543007: GLImage support for Android zero-copy pixel buffers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove a TODO and remove pixel_buffer.h from gl.gyp Created 7 years, 9 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
Index: ui/gl/gl_image_egl.h
diff --git a/ui/gl/gl_image_egl.h b/ui/gl/gl_image_egl.h
new file mode 100644
index 0000000000000000000000000000000000000000..ac469589c40e2a18dd2dda6f7e3f68f6ee575138
--- /dev/null
+++ b/ui/gl/gl_image_egl.h
@@ -0,0 +1,37 @@
+// Copyright (c) 2013 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_EGL_H_
+#define UI_GL_GL_IMAGE_EGL_H_
+
+#include "ui/gl/gl_image.h"
+#include "ui/gl/gl_bindings.h" // for EGLImageKHR
reveman 2013/04/05 00:13:24 nit: At least two spaces is best between code and
kaanb 2013/04/05 01:02:52 Done.
+
+namespace gfx {
+
+class GL_EXPORT GLImageEGL : public GLImage {
+ public:
+ GLImageEGL(const gfx::Size& size);
apatrick_chromium 2013/04/04 23:33:40 nit: explicit
kaanb 2013/04/05 01:02:52 Done.
+
+ bool Initialize(gfx::PixelBufferHandle buffer);
+
+ // Implement GLImage.
+ virtual void Destroy() OVERRIDE;
+ virtual gfx::Size GetSize() OVERRIDE;
+ virtual bool BindTexImage() OVERRIDE;
+ virtual void ReleaseTexImage() OVERRIDE;
+
+ protected:
+ virtual ~GLImageEGL();
+
+ private:
+ EGLImageKHR egl_image_;
+ gfx::Size size_;
+
+ DISALLOW_COPY_AND_ASSIGN(GLImageEGL);
+};
+
+} // namespace gfx
+
+#endif // UI_GL_GL_IMAGE_EGL_H_

Powered by Google App Engine
This is Rietveld 408576698