| Index: gpu/command_buffer/service/texture_definition.h
|
| diff --git a/gpu/command_buffer/service/texture_definition.h b/gpu/command_buffer/service/texture_definition.h
|
| index 65df72f25c682747b0f9424584cda5d31560908a..d7703aa6547d8b114ce61292f10165afeab3e54e 100644
|
| --- a/gpu/command_buffer/service/texture_definition.h
|
| +++ b/gpu/command_buffer/service/texture_definition.h
|
| @@ -9,6 +9,7 @@
|
|
|
| #include "base/memory/ref_counted.h"
|
| #include "gpu/command_buffer/service/gl_utils.h"
|
| +#include "ui/gfx/geometry/rect.h"
|
|
|
| namespace gfx {
|
| class GLImage;
|
| @@ -73,7 +74,7 @@ class TextureDefinition {
|
| GLint border,
|
| GLenum format,
|
| GLenum type,
|
| - bool cleared);
|
| + const gfx::Rect& cleared_rect);
|
| ~LevelInfo();
|
|
|
| GLenum target;
|
| @@ -84,7 +85,7 @@ class TextureDefinition {
|
| GLint border;
|
| GLenum format;
|
| GLenum type;
|
| - bool cleared;
|
| + gfx::Rect cleared_rect;
|
| };
|
|
|
| unsigned int version_;
|
|
|