bab82ed05b
BUG=skia: R=bsalomon@chromium.org, senorblanco@chromium.org, bsalomon@google.com Author: joshualitt@chromium.org Review URL: https://codereview.chromium.org/437593004
17 lines
374 B
C++
17 lines
374 B
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#ifndef GrGLSLPrettyPrint_DEFINED
|
|
#define GrGLSLPrettyPrint_DEFINED
|
|
|
|
#include "SkString.h"
|
|
|
|
namespace GrGLSLPrettyPrint {
|
|
SkString PrettyPrintGLSL(const SkString& input, bool countlines);
|
|
};
|
|
|
|
#endif /* GRGLPRETTYPRINTSL_H_ */
|