Chromium Code Reviews| 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..9f79acd6a38dd6ee0529c2baa9907a62449eb438 |
| --- /dev/null |
| +++ b/ui/gl/gl_image_egl.h |
| @@ -0,0 +1,38 @@ |
| +// 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_bindings.h" // for EGLImageKHR |
| +#include "ui/gl/gl_image.h" |
| + |
| + |
| +namespace gfx { |
| + |
| +class GL_EXPORT GLImageEGL : public GLImage { |
| + public: |
| + explicit GLImageEGL(const gfx::Size& size); |
|
no sievers
2013/04/05 22:16:34
nit: gfx::Size by value
kaanb
2013/04/08 15:48:11
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_ |