blob: 9ca1de26bd2b96057c5bd81801967b9da5917f91 [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
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "src/sksl/SkSLString.h"
Brian Salomone334c592017-05-15 11:00:58 -040011
12namespace GrSKSLPrettyPrint {
Brian Osman6c431d52019-04-15 16:31:54 -040013SkSL::String PrettyPrint(const SkSL::String& string);
Brian Salomone334c592017-05-15 11:00:58 -040014};
15
16#endif