| Index: cc/quads/render_pass_id.h
|
| diff --git a/cc/quads/render_pass_id.h b/cc/quads/render_pass_id.h
|
| index 05541307a07eaca2b7c2c720255822aa3db3b104..dd92456edc042d32540d397b866ed727ed2cedf9 100644
|
| --- a/cc/quads/render_pass_id.h
|
| +++ b/cc/quads/render_pass_id.h
|
| @@ -14,9 +14,9 @@ namespace cc {
|
| class CC_EXPORT RenderPassId {
|
| public:
|
| int layer_id;
|
| - int index;
|
| + size_t index;
|
|
|
| - RenderPassId(int layer_id, int index) : layer_id(layer_id), index(index) {}
|
| + RenderPassId(int layer_id, size_t index) : layer_id(layer_id), index(index) {}
|
| void* AsTracingId() const;
|
|
|
| bool operator==(const RenderPassId& other) const {
|
|
|