| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 #ifndef GrGLSLPrettyPrint_DEFINED | 7 #ifndef GrGLSLPrettyPrint_DEFINED |
| 8 #define GrGLSLPrettyPrint_DEFINED | 8 #define GrGLSLPrettyPrint_DEFINED |
| 9 | 9 |
| 10 #include "SkString.h" | 10 #include "SkString.h" |
| 11 | 11 |
| 12 namespace GrGLSLPrettyPrint { | 12 namespace GrGLSLPrettyPrint { |
| 13 SkString PrettyPrintGLSL(const char** strings, | 13 SkString PrettyPrintGLSL(const SkString& input, bool countlines); |
| 14 int* lengths, | |
| 15 int count, | |
| 16 bool countlines); | |
| 17 }; | 14 }; |
| 18 | 15 |
| 19 #endif /* GRGLPRETTYPRINTSL_H_ */ | 16 #endif /* GRGLPRETTYPRINTSL_H_ */ |
| OLD | NEW |