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

Side by Side 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, 8 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) 2013 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_EGL_H_
6 #define UI_GL_GL_IMAGE_EGL_H_
7
8 #include "ui/gl/gl_image.h"
9 #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.
10
11 namespace gfx {
12
13 class GL_EXPORT GLImageEGL : public GLImage {
14 public:
15 GLImageEGL(const gfx::Size& size);
apatrick_chromium 2013/04/04 23:33:40 nit: explicit
kaanb 2013/04/05 01:02:52 Done.
16
17 bool Initialize(gfx::PixelBufferHandle buffer);
18
19 // Implement GLImage.
20 virtual void Destroy() OVERRIDE;
21 virtual gfx::Size GetSize() OVERRIDE;
22 virtual bool BindTexImage() OVERRIDE;
23 virtual void ReleaseTexImage() OVERRIDE;
24
25 protected:
26 virtual ~GLImageEGL();
27
28 private:
29 EGLImageKHR egl_image_;
30 gfx::Size size_;
31
32 DISALLOW_COPY_AND_ASSIGN(GLImageEGL);
33 };
34
35 } // namespace gfx
36
37 #endif // UI_GL_GL_IMAGE_EGL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698