| 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..44ddce6273a4d22306721fc02df6440e2950f5c5 100644
|
| --- a/ui/gl/gl_image_egl.h
|
| +++ b/ui/gl/gl_image_egl.h
|
| @@ -22,7 +22,7 @@ class GL_EXPORT GLImageEGL : public GLImage {
|
| virtual bool BindTexImage() OVERRIDE;
|
| virtual void ReleaseTexImage() OVERRIDE;
|
| virtual void WillUseTexImage() OVERRIDE;
|
| - virtual void DidUseTexImage() OVERRIDE;
|
| + virtual void DidUseTexImage(bool release_tex_image) OVERRIDE;
|
|
|
| protected:
|
| virtual ~GLImageEGL();
|
| @@ -30,6 +30,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);
|
|
|