Brian Salomon | e334c59 | 2017-05-15 11:00:58 -0400 | [diff] [blame] | 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 | |
Brian Osman | 93ba0a4 | 2017-08-14 14:48:10 -0400 | [diff] [blame] | 10 | #include "SkSLString.h" |
Brian Salomon | e334c59 | 2017-05-15 11:00:58 -0400 | [diff] [blame] | 11 | |
| 12 | namespace GrSKSLPrettyPrint { |
Brian Osman | 93ba0a4 | 2017-08-14 14:48:10 -0400 | [diff] [blame] | 13 | SkSL::String PrettyPrint(const char** strings, int* lengths, int count, bool countlines); |
Brian Salomon | e334c59 | 2017-05-15 11:00:58 -0400 | [diff] [blame] | 14 | }; |
| 15 | |
| 16 | #endif |