From 1b1f43e6089bf1f78e8ff19b43a649b931fe4e31 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Wed, 16 Jun 2010 12:01:17 -0700 Subject: glcpp: Add support for lexing from a string. The standalone binary still reads from stdin, however. --- glcpp/glcpp-lex.l | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'glcpp/glcpp-lex.l') diff --git a/glcpp/glcpp-lex.l b/glcpp/glcpp-lex.l index cc5f28f8f8..f736ac4d59 100644 --- a/glcpp/glcpp-lex.l +++ b/glcpp/glcpp-lex.l @@ -201,3 +201,9 @@ NON_STARS_THEN_STARS [^*]*[*]+ } %% + +void +glcpp_lex_set_source_string(glcpp_parser_t *parser, const char *shader) +{ + yy_scan_string(shader, parser->scanner); +} -- cgit v1.2.3