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

Unified Diff: src/gpu/GrTBSearch.h

Issue 22850006: Replace uses of GrAssert by SkASSERT. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase Created 7 years, 4 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/gpu/GrStencilBuffer.cpp ('k') | src/gpu/GrTHashCache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrTBSearch.h
diff --git a/src/gpu/GrTBSearch.h b/src/gpu/GrTBSearch.h
index cee4f2a414e5462360703efb0f8829bd6b8c990e..08b0b85f357cb2bc032f93947b2b107d464b7fd2 100644
--- a/src/gpu/GrTBSearch.h
+++ b/src/gpu/GrTBSearch.h
@@ -13,7 +13,7 @@
template <typename ELEM, typename KEY>
int GrTBSearch(const ELEM array[], int count, KEY target) {
- GrAssert(count >= 0);
+ SkASSERT(count >= 0);
if (0 == count) {
// we should insert it at 0
return ~0;
« no previous file with comments | « src/gpu/GrStencilBuffer.cpp ('k') | src/gpu/GrTHashCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698