commit | 1b1f43e6089bf1f78e8ff19b43a649b931fe4e31 | [log] [tgz] |
---|---|---|
author | Kenneth Graunke <kenneth@whitecape.org> | Wed Jun 16 12:01:17 2010 -0700 |
committer | Kenneth Graunke <kenneth@whitecape.org> | Mon Jun 21 11:25:50 2010 -0700 |
tree | ad99d3f2b447043eaa827c6030f15ecec0bdb2bf | |
parent | 4c8a1af8117ac8e69883c6ef88d3f3b073dc6e0a [diff] [blame] |
glcpp: Add support for lexing from a string. The standalone binary still reads from stdin, however.
diff --git a/glcpp/glcpp-lex.l b/glcpp/glcpp-lex.l index cc5f28f..f736ac4 100644 --- a/glcpp/glcpp-lex.l +++ b/glcpp/glcpp-lex.l
@@ -201,3 +201,9 @@ } %% + +void +glcpp_lex_set_source_string(glcpp_parser_t *parser, const char *shader) +{ + yy_scan_string(shader, parser->scanner); +}