blob: 530fccee752b140099c495f97bfefe1d80e06673 [file] [log] [blame]
Brian Salomone334c592017-05-15 11:00:58 -04001/*
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 Osman93ba0a42017-08-14 14:48:10 -040010#include "SkSLString.h"
Brian Salomone334c592017-05-15 11:00:58 -040011
12namespace GrSKSLPrettyPrint {
Brian Osman93ba0a42017-08-14 14:48:10 -040013SkSL::String PrettyPrint(const char** strings, int* lengths, int count, bool countlines);
Brian Salomone334c592017-05-15 11:00:58 -040014};
15
16#endif