43466a1ade
BUG=skia: Committed: https://skia.googlesource.com/skia/+/1c3c2d83364ee228e0751df0e1b9c161c0ba8c1e Review URL: https://codereview.chromium.org/929503002
20 lines
485 B
C++
20 lines
485 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 char** strings,
|
|
int* lengths,
|
|
int count,
|
|
bool countlines);
|
|
};
|
|
|
|
#endif /* GRGLPRETTYPRINTSL_H_ */
|