Index: include/gpu/GrConfig.h |
diff --git a/include/gpu/GrConfig.h b/include/gpu/GrConfig.h |
index fc464c5038bad993262e90522df3464533613674..cbdb3503c27f1858ecfc1225587dd5b3a131df5f 100644 |
--- a/include/gpu/GrConfig.h |
+++ b/include/gpu/GrConfig.h |
@@ -178,15 +178,6 @@ typedef unsigned __int64 uint64_t; |
#define GrAlwaysAssert(COND) GR_ALWAYSASSERT(COND) |
/** |
- * Crash from unrecoverable condition, optionally with a message. The debug variants only |
- * crash in a debug build. The message versions print the message regardless of release vs debug. |
- */ |
-inline void GrCrash() { GrAlwaysAssert(false); } |
-inline void GrCrash(const char* msg) { GrPrintf(msg); GrAlwaysAssert(false); } |
-inline void GrDebugCrash() { SkASSERT(false); } |
-inline void GrDebugCrash(const char* msg) { GrPrintf(msg); SkASSERT(false); } |
- |
-/** |
* GR_STATIC_ASSERT is a compile time assertion. Depending on the platform |
* it may print the message in the compiler log. Obviously, the condition must |
* be evaluatable at compile time. |