| Index: ui/gl/gl_image_egl.h
|
| diff --git a/ui/gl/gl_image_egl.h b/ui/gl/gl_image_egl.h
|
| index 2c64f4d6becec430849a5fb9f89d76580c680062..64bff7a27160eedca0e458769a2ffa50a3b85c25 100644
|
| --- a/ui/gl/gl_image_egl.h
|
| +++ b/ui/gl/gl_image_egl.h
|
| @@ -23,6 +23,7 @@ class GL_EXPORT GLImageEGL : public GLImage {
|
| virtual void ReleaseTexImage() OVERRIDE;
|
| virtual void WillUseTexImage() OVERRIDE;
|
| virtual void DidUseTexImage() OVERRIDE;
|
| + virtual void SetReleaseAfterUse() OVERRIDE;
|
|
|
| protected:
|
| virtual ~GLImageEGL();
|
| @@ -30,6 +31,7 @@ class GL_EXPORT GLImageEGL : public GLImage {
|
| private:
|
| EGLImageKHR egl_image_;
|
| gfx::Size size_;
|
| + bool need_unbind_after_use_;
|
| bool in_use_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(GLImageEGL);
|
|
|