diff options
author | joshualitt <joshualitt@chromium.org> | 2015-02-13 17:18:27 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-13 17:18:27 -0800 |
commit | 43466a1ade066f96823dbc7963767da3973afd91 (patch) | |
tree | f019f41b7d91d888a3eb28aae34a6233973455d9 /include | |
parent | b8a82f2bce265a09173a90dfbe4ce78e52347ba4 (diff) |
Multi-string shaders
BUG=skia:
Committed: https://skia.googlesource.com/skia/+/1c3c2d83364ee228e0751df0e1b9c161c0ba8c1e
Review URL: https://codereview.chromium.org/929503002
Diffstat (limited to 'include')
-rw-r--r-- | include/gpu/gl/GrGLSLPrettyPrint.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/gpu/gl/GrGLSLPrettyPrint.h b/include/gpu/gl/GrGLSLPrettyPrint.h index 7273aaa3fc..52fb74557d 100644 --- a/include/gpu/gl/GrGLSLPrettyPrint.h +++ b/include/gpu/gl/GrGLSLPrettyPrint.h @@ -10,7 +10,10 @@ #include "SkString.h" namespace GrGLSLPrettyPrint { - SkString PrettyPrintGLSL(const SkString& input, bool countlines); + SkString PrettyPrintGLSL(const char** strings, + int* lengths, + int count, + bool countlines); }; #endif /* GRGLPRETTYPRINTSL_H_ */ |