Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

glsl_parser_extras.h 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright © 2010 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. */
  23. #pragma once
  24. #ifndef GLSL_PARSER_EXTRAS_H
  25. #define GLSL_PARSER_EXTRAS_H
  26. #include "main/simple_list.h"
  27. enum _mesa_glsl_parser_targets {
  28. vertex_shader,
  29. geometry_shader,
  30. fragment_shader
  31. };
  32. struct _mesa_glsl_parse_state {
  33. void *scanner;
  34. struct simple_node translation_unit;
  35. struct _mesa_symbol_table *symbols;
  36. unsigned language_version;
  37. enum _mesa_glsl_parser_targets target;
  38. };
  39. typedef struct YYLTYPE {
  40. int first_line;
  41. int first_column;
  42. int last_line;
  43. int last_column;
  44. unsigned source;
  45. } YYLTYPE;
  46. # define YYLTYPE_IS_DECLARED 1
  47. # define YYLTYPE_IS_TRIVIAL 1
  48. extern void _mesa_glsl_error(YYLTYPE *locp, void *state, const char *fmt, ...);
  49. extern void _mesa_glsl_lexer_ctor(struct _mesa_glsl_parse_state *state,
  50. const char *string, size_t len);
  51. extern void _mesa_glsl_lexer_dtor(struct _mesa_glsl_parse_state *state);
  52. union YYSTYPE;
  53. extern int _mesa_glsl_lex(union YYSTYPE *yylval, YYLTYPE *yylloc,
  54. void *scanner);
  55. extern int _mesa_glsl_parse(struct _mesa_glsl_parse_state *);
  56. #endif /* GLSL_PARSER_EXTRAS_H */