From b4aab9ae6d27c446af8302b79d15b832c816c633 Mon Sep 17 00:00:00 2001 From: Ben Wagner Date: Wed, 16 Aug 2017 10:53:04 -0400 Subject: Replace SkFAIL with SK_ABORT. SkFAIL is a legacy macro which is just SK_ABORT. This CL mechanically changes uses of SkFAIL to SK_ABORT in preparation for its removal. The related sk_throw macro will be changed independently, due to needing to actually clean up its users. Change-Id: Id70b5c111a02d2458dc60c8933f444df27d9cebb Reviewed-on: https://skia-review.googlesource.com/35284 Reviewed-by: Derek Sollenberger Commit-Queue: Ben Wagner --- src/gpu/gl/GrGLVertexArray.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gpu/gl/GrGLVertexArray.cpp') diff --git a/src/gpu/gl/GrGLVertexArray.cpp b/src/gpu/gl/GrGLVertexArray.cpp index 59f2be9831..745e532645 100644 --- a/src/gpu/gl/GrGLVertexArray.cpp +++ b/src/gpu/gl/GrGLVertexArray.cpp @@ -44,7 +44,7 @@ static AttribLayout attrib_layout(GrVertexAttribType type) { case kUint_GrVertexAttribType: return {false, 1, GR_GL_UNSIGNED_INT}; } - SkFAIL("Unknown vertex attrib type"); + SK_ABORT("Unknown vertex attrib type"); return {false, 0, 0}; }; -- cgit v1.2.3