1 /* 2 * Copyright 2014 Google Inc. 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 #ifndef GrSKSLPrettyPrint_DEFINED 8 #define GrSKSLPrettyPrint_DEFINED 9 10 #include "SkSLString.h" 11 12 namespace GrSKSLPrettyPrint { 13 SkSL::String PrettyPrint(const char** strings, int* lengths, int count, bool countlines); 14 }; 15 16 #endif 17