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

Unified Diff: src/core/SkRect.cpp

Issue 1083123002: Rename SkNi to SkNb. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: nb Created 5 years, 8 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
« no previous file with comments | « src/core/SkNx.h ('k') | src/opts/SkNx_neon.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkRect.cpp
diff --git a/src/core/SkRect.cpp b/src/core/SkRect.cpp
index 14d862430a14978e1e87c67c37c2671880eca5ef..a28af27cb1277aa72f7887295f312f370a8a6515 100644
--- a/src/core/SkRect.cpp
+++ b/src/core/SkRect.cpp
@@ -48,7 +48,7 @@ void SkRect::toQuad(SkPoint quad[4]) const {
#include "SkNx.h"
static inline bool is_finite(const Sk4s& value) {
- Sk4i finite = value * Sk4s(0) == Sk4s(0);
+ auto finite = value * Sk4s(0) == Sk4s(0);
return finite.allTrue();
}
« no previous file with comments | « src/core/SkNx.h ('k') | src/opts/SkNx_neon.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698