Home | History | Annotate | Download | only in gl
      1 /*
      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 GrGLSLPrettyPrint_DEFINED
      8 #define GrGLSLPrettyPrint_DEFINED
      9 
     10 #include "SkString.h"
     11 
     12 namespace GrGLSLPrettyPrint {
     13     SkString PrettyPrintGLSL(const char** strings,
     14                              int* lengths,
     15                              int count,
     16                              bool countlines);
     17 };
     18 
     19 #endif /* GRGLPRETTYPRINTSL_H_ */
     20