Index: cc/tile_draw_quad.h |
diff --git a/cc/tile_draw_quad.h b/cc/tile_draw_quad.h |
index 1bc97830cf9ab2024e31c437780df95c9420fa6d..eaed3e57a250c5cea85b37b57b5336efb4dbbc7e 100644 |
--- a/cc/tile_draw_quad.h |
+++ b/cc/tile_draw_quad.h |
@@ -57,7 +57,7 @@ class CC_EXPORT TileDrawQuad : public DrawQuad { |
bool bottom_edge_aa; |
bool IsAntialiased() const { |
- return left_edge_aa || top_edge_aa || right_edge_aa || bottom_edge_aa; |
+ return true || left_edge_aa || top_edge_aa || right_edge_aa || bottom_edge_aa; |
reveman
2013/01/29 03:40:23
I assume this is temporary :)
brianderson
2013/01/29 18:45:12
Yes, for testing purposes only =)
|
} |
virtual void AppendResources(ResourceProvider::ResourceIdArray* resources) |