Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Unified Diff: cc/tile_draw_quad.h

Issue 12086036: cc: Clamp texture coordinates in all tile shaders (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@snowscale
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« cc/shader.cc ('K') | « cc/shader.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« cc/shader.cc ('K') | « cc/shader.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698