| Index: cc/layers/picture_layer_impl.cc
|
| diff --git a/cc/layers/picture_layer_impl.cc b/cc/layers/picture_layer_impl.cc
|
| index 076ee23ebb488131aa57317c0f8734e718569527..8e823d9372decb1901a15a83dbe39c25fe9ef007 100644
|
| --- a/cc/layers/picture_layer_impl.cc
|
| +++ b/cc/layers/picture_layer_impl.cc
|
| @@ -230,6 +230,9 @@ void PictureLayerImpl::AppendQuads(RenderPass* render_pass,
|
| } else if (mode == TileDrawInfo::OOM_MODE) {
|
| color = DebugColors::OOMTileBorderColor();
|
| width = DebugColors::OOMTileBorderWidth(layer_tree_impl());
|
| + } else if (iter->draw_info().has_compressed_resource()) {
|
| + color = DebugColors::CompressedTileBorderColor();
|
| + width = DebugColors::CompressedTileBorderWidth(layer_tree_impl());
|
| } else if (iter.resolution() == HIGH_RESOLUTION) {
|
| color = DebugColors::HighResTileBorderColor();
|
| width = DebugColors::HighResTileBorderWidth(layer_tree_impl());
|
|
|