2014-08-08 16:41:42 +00:00
|
|
|
/*
|
|
|
|
* 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 {
|
2015-02-14 01:18:27 +00:00
|
|
|
SkString PrettyPrintGLSL(const char** strings,
|
|
|
|
int* lengths,
|
|
|
|
int count,
|
|
|
|
bool countlines);
|
2014-08-08 16:41:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GRGLPRETTYPRINTSL_H_ */
|