mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-04-04 03:19:43 -04:00
Regenerated parsers.
This commit is contained in:
parent
557dcef3dd
commit
a2b4b96e55
7 changed files with 2153 additions and 1924 deletions
3rdparty/glsl-optimizer/src/glsl
tools/shaderc
|
@ -47,7 +47,6 @@ typedef int16_t flex_int16_t;
|
|||
typedef uint16_t flex_uint16_t;
|
||||
typedef int32_t flex_int32_t;
|
||||
typedef uint32_t flex_uint32_t;
|
||||
typedef uint64_t flex_uint64_t;
|
||||
#else
|
||||
typedef signed char flex_int8_t;
|
||||
typedef short int flex_int16_t;
|
||||
|
@ -55,7 +54,6 @@ typedef int flex_int32_t;
|
|||
typedef unsigned char flex_uint8_t;
|
||||
typedef unsigned short int flex_uint16_t;
|
||||
typedef unsigned int flex_uint32_t;
|
||||
#endif /* ! C99 */
|
||||
|
||||
/* Limits of integral types. */
|
||||
#ifndef INT8_MIN
|
||||
|
@ -86,6 +84,8 @@ typedef unsigned int flex_uint32_t;
|
|||
#define UINT32_MAX (4294967295U)
|
||||
#endif
|
||||
|
||||
#endif /* ! C99 */
|
||||
|
||||
#endif /* ! FLEXINT_H */
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -159,7 +159,15 @@ typedef void* yyscan_t;
|
|||
|
||||
/* Size of default input buffer. */
|
||||
#ifndef YY_BUF_SIZE
|
||||
#ifdef __ia64__
|
||||
/* On IA-64, the buffer size is 16k, not 8k.
|
||||
* Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
|
||||
* Ditto for the __ia64__ case accordingly.
|
||||
*/
|
||||
#define YY_BUF_SIZE 32768
|
||||
#else
|
||||
#define YY_BUF_SIZE 16384
|
||||
#endif /* __ia64__ */
|
||||
#endif
|
||||
|
||||
/* The state buf must be large enough to hold one state per character in the main buffer.
|
||||
|
@ -171,11 +179,6 @@ typedef void* yyscan_t;
|
|||
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
||||
#endif
|
||||
|
||||
#ifndef YY_TYPEDEF_YY_SIZE_T
|
||||
#define YY_TYPEDEF_YY_SIZE_T
|
||||
typedef size_t yy_size_t;
|
||||
#endif
|
||||
|
||||
#define EOB_ACT_CONTINUE_SCAN 0
|
||||
#define EOB_ACT_END_OF_FILE 1
|
||||
#define EOB_ACT_LAST_MATCH 2
|
||||
|
@ -198,6 +201,11 @@ typedef size_t yy_size_t;
|
|||
|
||||
#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
|
||||
|
||||
#ifndef YY_TYPEDEF_YY_SIZE_T
|
||||
#define YY_TYPEDEF_YY_SIZE_T
|
||||
typedef size_t yy_size_t;
|
||||
#endif
|
||||
|
||||
#ifndef YY_STRUCT_YY_BUFFER_STATE
|
||||
#define YY_STRUCT_YY_BUFFER_STATE
|
||||
struct yy_buffer_state
|
||||
|
@ -215,7 +223,7 @@ struct yy_buffer_state
|
|||
/* Number of characters read into yy_ch_buf, not including EOB
|
||||
* characters.
|
||||
*/
|
||||
yy_size_t yy_n_chars;
|
||||
int yy_n_chars;
|
||||
|
||||
/* Whether we "own" the buffer - i.e., we know we created it,
|
||||
* and can realloc() it to grow it, and should free() it to
|
||||
|
@ -294,7 +302,7 @@ static void glcpp__init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner
|
|||
|
||||
YY_BUFFER_STATE glcpp__scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
|
||||
YY_BUFFER_STATE glcpp__scan_string (yyconst char *yy_str ,yyscan_t yyscanner );
|
||||
YY_BUFFER_STATE glcpp__scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner );
|
||||
YY_BUFFER_STATE glcpp__scan_bytes (yyconst char *bytes,int len ,yyscan_t yyscanner );
|
||||
|
||||
void *glcpp_alloc (yy_size_t ,yyscan_t yyscanner );
|
||||
void *glcpp_realloc (void *,yy_size_t ,yyscan_t yyscanner );
|
||||
|
@ -345,7 +353,7 @@ static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner );
|
|||
*/
|
||||
#define YY_DO_BEFORE_ACTION \
|
||||
yyg->yytext_ptr = yy_bp; \
|
||||
yyleng = (yy_size_t) (yy_cp - yy_bp); \
|
||||
yyleng = (size_t) (yy_cp - yy_bp); \
|
||||
yyg->yy_hold_char = *yy_cp; \
|
||||
*yy_cp = '\0'; \
|
||||
yyg->yy_c_buf_p = yy_cp;
|
||||
|
@ -629,7 +637,7 @@ match longer strings take priority over those matching shorter
|
|||
strings, we have to be careful to avoid OTHER matching and hiding
|
||||
something that CPP does care about. So we simply exclude all
|
||||
characters that appear in any other expressions. */
|
||||
#line 633 "src/glsl/glcpp/glcpp-lex.c"
|
||||
#line 641 "src/glsl/glcpp/glcpp-lex.c"
|
||||
|
||||
#define INITIAL 0
|
||||
#define DONE 1
|
||||
|
@ -654,8 +662,8 @@ struct yyguts_t
|
|||
size_t yy_buffer_stack_max; /**< capacity of stack. */
|
||||
YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
|
||||
char yy_hold_char;
|
||||
yy_size_t yy_n_chars;
|
||||
yy_size_t yyleng_r;
|
||||
int yy_n_chars;
|
||||
int yyleng_r;
|
||||
char *yy_c_buf_p;
|
||||
int yy_init;
|
||||
int yy_start;
|
||||
|
@ -712,7 +720,7 @@ FILE *glcpp_get_out (yyscan_t yyscanner );
|
|||
|
||||
void glcpp_set_out (FILE * out_str ,yyscan_t yyscanner );
|
||||
|
||||
yy_size_t glcpp_get_leng (yyscan_t yyscanner );
|
||||
int glcpp_get_leng (yyscan_t yyscanner );
|
||||
|
||||
char *glcpp_get_text (yyscan_t yyscanner );
|
||||
|
||||
|
@ -768,7 +776,12 @@ static int input (yyscan_t yyscanner );
|
|||
|
||||
/* Amount of stuff to slurp up with each read. */
|
||||
#ifndef YY_READ_BUF_SIZE
|
||||
#ifdef __ia64__
|
||||
/* On IA-64, the buffer size is 16k, not 8k */
|
||||
#define YY_READ_BUF_SIZE 16384
|
||||
#else
|
||||
#define YY_READ_BUF_SIZE 8192
|
||||
#endif /* __ia64__ */
|
||||
#endif
|
||||
|
||||
/* Copy whatever the last rule matched to the standard output. */
|
||||
|
@ -776,7 +789,7 @@ static int input (yyscan_t yyscanner );
|
|||
/* This used to be an fputs(), but since the string might contain NUL's,
|
||||
* we now use fwrite().
|
||||
*/
|
||||
#define ECHO fwrite( yytext, yyleng, 1, yyout )
|
||||
#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
|
||||
#endif
|
||||
|
||||
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
|
||||
|
@ -787,7 +800,7 @@ static int input (yyscan_t yyscanner );
|
|||
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
|
||||
{ \
|
||||
int c = '*'; \
|
||||
yy_size_t n; \
|
||||
size_t n; \
|
||||
for ( n = 0; n < max_size && \
|
||||
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
|
||||
buf[n] = (char) c; \
|
||||
|
@ -939,7 +952,7 @@ YY_DECL
|
|||
}
|
||||
|
||||
/* Single-line comments */
|
||||
#line 943 "src/glsl/glcpp/glcpp-lex.c"
|
||||
#line 956 "src/glsl/glcpp/glcpp-lex.c"
|
||||
|
||||
yylval = yylval_param;
|
||||
|
||||
|
@ -1392,7 +1405,7 @@ YY_RULE_SETUP
|
|||
#line 375 "src/glsl/glcpp/glcpp-lex.l"
|
||||
ECHO;
|
||||
YY_BREAK
|
||||
#line 1396 "src/glsl/glcpp/glcpp-lex.c"
|
||||
#line 1409 "src/glsl/glcpp/glcpp-lex.c"
|
||||
case YY_STATE_EOF(DONE):
|
||||
case YY_STATE_EOF(COMMENT):
|
||||
case YY_STATE_EOF(UNREACHABLE):
|
||||
|
@ -1585,7 +1598,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
|
||||
else
|
||||
{
|
||||
yy_size_t num_to_read =
|
||||
int num_to_read =
|
||||
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
|
||||
|
||||
while ( num_to_read <= 0 )
|
||||
|
@ -1599,7 +1612,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
|
||||
if ( b->yy_is_our_buffer )
|
||||
{
|
||||
yy_size_t new_size = b->yy_buf_size * 2;
|
||||
int new_size = b->yy_buf_size * 2;
|
||||
|
||||
if ( new_size <= 0 )
|
||||
b->yy_buf_size += b->yy_buf_size / 8;
|
||||
|
@ -1630,7 +1643,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
|
||||
/* Read in more data. */
|
||||
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
|
||||
yyg->yy_n_chars, num_to_read );
|
||||
yyg->yy_n_chars, (size_t) num_to_read );
|
||||
|
||||
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
|
||||
}
|
||||
|
@ -1744,7 +1757,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
|
||||
{ /* need to shift things up to make room */
|
||||
/* +2 for EOB chars. */
|
||||
register yy_size_t number_to_move = yyg->yy_n_chars + 2;
|
||||
register int number_to_move = yyg->yy_n_chars + 2;
|
||||
register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
|
||||
YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
|
||||
register char *source =
|
||||
|
@ -1794,7 +1807,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
|
||||
else
|
||||
{ /* need more input */
|
||||
yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
|
||||
int offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
|
||||
++yyg->yy_c_buf_p;
|
||||
|
||||
switch ( yy_get_next_buffer( yyscanner ) )
|
||||
|
@ -1818,7 +1831,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
case EOB_ACT_END_OF_FILE:
|
||||
{
|
||||
if ( glcpp_wrap(yyscanner ) )
|
||||
return 0;
|
||||
return EOF;
|
||||
|
||||
if ( ! yyg->yy_did_buffer_switch_on_eof )
|
||||
YY_NEW_FILE;
|
||||
|
@ -2076,7 +2089,7 @@ void glcpp_pop_buffer_state (yyscan_t yyscanner)
|
|||
*/
|
||||
static void glcpp_ensure_buffer_stack (yyscan_t yyscanner)
|
||||
{
|
||||
yy_size_t num_to_alloc;
|
||||
int num_to_alloc;
|
||||
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
|
||||
|
||||
if (!yyg->yy_buffer_stack) {
|
||||
|
@ -2169,16 +2182,17 @@ YY_BUFFER_STATE glcpp__scan_string (yyconst char * yystr , yyscan_t yyscanner)
|
|||
|
||||
/** Setup the input buffer state to scan the given bytes. The next call to glcpp_lex() will
|
||||
* scan from a @e copy of @a bytes.
|
||||
* @param bytes the byte buffer to scan
|
||||
* @param len the number of bytes in the buffer pointed to by @a bytes.
|
||||
* @param yybytes the byte buffer to scan
|
||||
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
|
||||
* @param yyscanner The scanner object.
|
||||
* @return the newly allocated buffer state object.
|
||||
*/
|
||||
YY_BUFFER_STATE glcpp__scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner)
|
||||
YY_BUFFER_STATE glcpp__scan_bytes (yyconst char * yybytes, int _yybytes_len , yyscan_t yyscanner)
|
||||
{
|
||||
YY_BUFFER_STATE b;
|
||||
char *buf;
|
||||
yy_size_t n, i;
|
||||
yy_size_t n;
|
||||
int i;
|
||||
|
||||
/* Get memory for full buffer, including space for trailing EOB's. */
|
||||
n = _yybytes_len + 2;
|
||||
|
@ -2328,7 +2342,7 @@ FILE *glcpp_get_out (yyscan_t yyscanner)
|
|||
/** Get the length of the current token.
|
||||
* @param yyscanner The scanner object.
|
||||
*/
|
||||
yy_size_t glcpp_get_leng (yyscan_t yyscanner)
|
||||
int glcpp_get_leng (yyscan_t yyscanner)
|
||||
{
|
||||
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
|
||||
return yyleng;
|
||||
|
|
1355
3rdparty/glsl-optimizer/src/glsl/glcpp/glcpp-parse.c
vendored
1355
3rdparty/glsl-optimizer/src/glsl/glcpp/glcpp-parse.c
vendored
File diff suppressed because it is too large
Load diff
|
@ -1,24 +1,21 @@
|
|||
/* A Bison parser, made by GNU Bison 2.3. */
|
||||
/* A Bison parser, made by GNU Bison 2.7.12-4996. */
|
||||
|
||||
/* Skeleton interface for Bison's Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
/* Bison interface for Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA. */
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
|
||||
/* As a special exception, you may create a larger work that contains
|
||||
part or all of the Bison parser skeleton and distribute that work
|
||||
|
@ -29,10 +26,20 @@
|
|||
special exception, which will cause the skeleton and the resulting
|
||||
Bison output files to be licensed under the GNU General Public
|
||||
License without this special exception.
|
||||
|
||||
|
||||
This special exception was added by the Free Software Foundation in
|
||||
version 2.2 of Bison. */
|
||||
|
||||
#ifndef YY_GLCPP_PARSER_SRC_GLSL_GLCPP_GLCPP_PARSE_H_INCLUDED
|
||||
# define YY_GLCPP_PARSER_SRC_GLSL_GLCPP_GLCPP_PARSE_H_INCLUDED
|
||||
/* Enabling traces. */
|
||||
#ifndef YYDEBUG
|
||||
# define YYDEBUG 0
|
||||
#endif
|
||||
#if YYDEBUG
|
||||
extern int glcpp_parser_debug;
|
||||
#endif
|
||||
|
||||
/* Tokens. */
|
||||
#ifndef YYTOKENTYPE
|
||||
# define YYTOKENTYPE
|
||||
|
@ -76,55 +83,14 @@
|
|||
UNARY = 292
|
||||
};
|
||||
#endif
|
||||
/* Tokens. */
|
||||
#define COMMA_FINAL 258
|
||||
#define DEFINED 259
|
||||
#define ELIF_EXPANDED 260
|
||||
#define HASH 261
|
||||
#define HASH_DEFINE 262
|
||||
#define FUNC_IDENTIFIER 263
|
||||
#define OBJ_IDENTIFIER 264
|
||||
#define HASH_ELIF 265
|
||||
#define HASH_ELSE 266
|
||||
#define HASH_ENDIF 267
|
||||
#define HASH_IF 268
|
||||
#define HASH_IFDEF 269
|
||||
#define HASH_IFNDEF 270
|
||||
#define HASH_LINE 271
|
||||
#define HASH_UNDEF 272
|
||||
#define HASH_VERSION 273
|
||||
#define IDENTIFIER 274
|
||||
#define IF_EXPANDED 275
|
||||
#define INTEGER 276
|
||||
#define INTEGER_STRING 277
|
||||
#define LINE_EXPANDED 278
|
||||
#define NEWLINE 279
|
||||
#define OTHER 280
|
||||
#define PLACEHOLDER 281
|
||||
#define SPACE 282
|
||||
#define PASTE 283
|
||||
#define OR 284
|
||||
#define AND 285
|
||||
#define NOT_EQUAL 286
|
||||
#define EQUAL 287
|
||||
#define GREATER_OR_EQUAL 288
|
||||
#define LESS_OR_EQUAL 289
|
||||
#define RIGHT_SHIFT 290
|
||||
#define LEFT_SHIFT 291
|
||||
#define UNARY 292
|
||||
|
||||
|
||||
|
||||
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
typedef int YYSTYPE;
|
||||
|
||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||||
# define YYSTYPE_IS_DECLARED 1
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
||||
typedef struct YYLTYPE
|
||||
{
|
||||
|
@ -139,3 +105,18 @@ typedef struct YYLTYPE
|
|||
#endif
|
||||
|
||||
|
||||
#ifdef YYPARSE_PARAM
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int glcpp_parser_parse (void *YYPARSE_PARAM);
|
||||
#else
|
||||
int glcpp_parser_parse ();
|
||||
#endif
|
||||
#else /* ! YYPARSE_PARAM */
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int glcpp_parser_parse (glcpp_parser_t *parser);
|
||||
#else
|
||||
int glcpp_parser_parse ();
|
||||
#endif
|
||||
#endif /* ! YYPARSE_PARAM */
|
||||
|
||||
#endif /* !YY_GLCPP_PARSER_SRC_GLSL_GLCPP_GLCPP_PARSE_H_INCLUDED */
|
||||
|
|
72
3rdparty/glsl-optimizer/src/glsl/glsl_lexer.cpp
vendored
72
3rdparty/glsl-optimizer/src/glsl/glsl_lexer.cpp
vendored
|
@ -47,7 +47,6 @@ typedef int16_t flex_int16_t;
|
|||
typedef uint16_t flex_uint16_t;
|
||||
typedef int32_t flex_int32_t;
|
||||
typedef uint32_t flex_uint32_t;
|
||||
typedef uint64_t flex_uint64_t;
|
||||
#else
|
||||
typedef signed char flex_int8_t;
|
||||
typedef short int flex_int16_t;
|
||||
|
@ -55,7 +54,6 @@ typedef int flex_int32_t;
|
|||
typedef unsigned char flex_uint8_t;
|
||||
typedef unsigned short int flex_uint16_t;
|
||||
typedef unsigned int flex_uint32_t;
|
||||
#endif /* ! C99 */
|
||||
|
||||
/* Limits of integral types. */
|
||||
#ifndef INT8_MIN
|
||||
|
@ -86,6 +84,8 @@ typedef unsigned int flex_uint32_t;
|
|||
#define UINT32_MAX (4294967295U)
|
||||
#endif
|
||||
|
||||
#endif /* ! C99 */
|
||||
|
||||
#endif /* ! FLEXINT_H */
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -159,7 +159,15 @@ typedef void* yyscan_t;
|
|||
|
||||
/* Size of default input buffer. */
|
||||
#ifndef YY_BUF_SIZE
|
||||
#ifdef __ia64__
|
||||
/* On IA-64, the buffer size is 16k, not 8k.
|
||||
* Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
|
||||
* Ditto for the __ia64__ case accordingly.
|
||||
*/
|
||||
#define YY_BUF_SIZE 32768
|
||||
#else
|
||||
#define YY_BUF_SIZE 16384
|
||||
#endif /* __ia64__ */
|
||||
#endif
|
||||
|
||||
/* The state buf must be large enough to hold one state per character in the main buffer.
|
||||
|
@ -171,11 +179,6 @@ typedef void* yyscan_t;
|
|||
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
||||
#endif
|
||||
|
||||
#ifndef YY_TYPEDEF_YY_SIZE_T
|
||||
#define YY_TYPEDEF_YY_SIZE_T
|
||||
typedef size_t yy_size_t;
|
||||
#endif
|
||||
|
||||
#define EOB_ACT_CONTINUE_SCAN 0
|
||||
#define EOB_ACT_END_OF_FILE 1
|
||||
#define EOB_ACT_LAST_MATCH 2
|
||||
|
@ -198,6 +201,11 @@ typedef size_t yy_size_t;
|
|||
|
||||
#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner )
|
||||
|
||||
#ifndef YY_TYPEDEF_YY_SIZE_T
|
||||
#define YY_TYPEDEF_YY_SIZE_T
|
||||
typedef size_t yy_size_t;
|
||||
#endif
|
||||
|
||||
#ifndef YY_STRUCT_YY_BUFFER_STATE
|
||||
#define YY_STRUCT_YY_BUFFER_STATE
|
||||
struct yy_buffer_state
|
||||
|
@ -215,7 +223,7 @@ struct yy_buffer_state
|
|||
/* Number of characters read into yy_ch_buf, not including EOB
|
||||
* characters.
|
||||
*/
|
||||
yy_size_t yy_n_chars;
|
||||
int yy_n_chars;
|
||||
|
||||
/* Whether we "own" the buffer - i.e., we know we created it,
|
||||
* and can realloc() it to grow it, and should free() it to
|
||||
|
@ -294,7 +302,7 @@ static void _mesa_glsl_lexer__init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_
|
|||
|
||||
YY_BUFFER_STATE _mesa_glsl_lexer__scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner );
|
||||
YY_BUFFER_STATE _mesa_glsl_lexer__scan_string (yyconst char *yy_str ,yyscan_t yyscanner );
|
||||
YY_BUFFER_STATE _mesa_glsl_lexer__scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner );
|
||||
YY_BUFFER_STATE _mesa_glsl_lexer__scan_bytes (yyconst char *bytes,int len ,yyscan_t yyscanner );
|
||||
|
||||
void *_mesa_glsl_lexer_alloc (yy_size_t ,yyscan_t yyscanner );
|
||||
void *_mesa_glsl_lexer_realloc (void *,yy_size_t ,yyscan_t yyscanner );
|
||||
|
@ -345,7 +353,7 @@ static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner );
|
|||
*/
|
||||
#define YY_DO_BEFORE_ACTION \
|
||||
yyg->yytext_ptr = yy_bp; \
|
||||
yyleng = (yy_size_t) (yy_cp - yy_bp); \
|
||||
yyleng = (size_t) (yy_cp - yy_bp); \
|
||||
yyg->yy_hold_char = *yy_cp; \
|
||||
*yy_cp = '\0'; \
|
||||
yyg->yy_c_buf_p = yy_cp;
|
||||
|
@ -1210,7 +1218,7 @@ literal_integer(char *text, int len, struct _mesa_glsl_parse_state *state,
|
|||
literal_integer(yytext, yyleng, yyextra, yylval, yylloc, base)
|
||||
|
||||
|
||||
#line 1214 "src/glsl/glsl_lexer.cpp"
|
||||
#line 1222 "src/glsl/glsl_lexer.cpp"
|
||||
|
||||
#define INITIAL 0
|
||||
#define PP 1
|
||||
|
@ -1231,8 +1239,8 @@ struct yyguts_t
|
|||
size_t yy_buffer_stack_max; /**< capacity of stack. */
|
||||
YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */
|
||||
char yy_hold_char;
|
||||
yy_size_t yy_n_chars;
|
||||
yy_size_t yyleng_r;
|
||||
int yy_n_chars;
|
||||
int yyleng_r;
|
||||
char *yy_c_buf_p;
|
||||
int yy_init;
|
||||
int yy_start;
|
||||
|
@ -1289,7 +1297,7 @@ FILE *_mesa_glsl_lexer_get_out (yyscan_t yyscanner );
|
|||
|
||||
void _mesa_glsl_lexer_set_out (FILE * out_str ,yyscan_t yyscanner );
|
||||
|
||||
yy_size_t _mesa_glsl_lexer_get_leng (yyscan_t yyscanner );
|
||||
int _mesa_glsl_lexer_get_leng (yyscan_t yyscanner );
|
||||
|
||||
char *_mesa_glsl_lexer_get_text (yyscan_t yyscanner );
|
||||
|
||||
|
@ -1337,7 +1345,12 @@ static int input (yyscan_t yyscanner );
|
|||
|
||||
/* Amount of stuff to slurp up with each read. */
|
||||
#ifndef YY_READ_BUF_SIZE
|
||||
#ifdef __ia64__
|
||||
/* On IA-64, the buffer size is 16k, not 8k */
|
||||
#define YY_READ_BUF_SIZE 16384
|
||||
#else
|
||||
#define YY_READ_BUF_SIZE 8192
|
||||
#endif /* __ia64__ */
|
||||
#endif
|
||||
|
||||
/* Copy whatever the last rule matched to the standard output. */
|
||||
|
@ -1345,7 +1358,7 @@ static int input (yyscan_t yyscanner );
|
|||
/* This used to be an fputs(), but since the string might contain NUL's,
|
||||
* we now use fwrite().
|
||||
*/
|
||||
#define ECHO fwrite( yytext, yyleng, 1, yyout )
|
||||
#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
|
||||
#endif
|
||||
|
||||
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
|
||||
|
@ -1356,7 +1369,7 @@ static int input (yyscan_t yyscanner );
|
|||
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
|
||||
{ \
|
||||
int c = '*'; \
|
||||
yy_size_t n; \
|
||||
size_t n; \
|
||||
for ( n = 0; n < max_size && \
|
||||
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
|
||||
buf[n] = (char) c; \
|
||||
|
@ -1447,7 +1460,7 @@ YY_DECL
|
|||
#line 170 "src/glsl/glsl_lexer.ll"
|
||||
|
||||
|
||||
#line 1451 "src/glsl/glsl_lexer.cpp"
|
||||
#line 1464 "src/glsl/glsl_lexer.cpp"
|
||||
|
||||
yylval = yylval_param;
|
||||
|
||||
|
@ -2820,7 +2833,7 @@ YY_RULE_SETUP
|
|||
#line 542 "src/glsl/glsl_lexer.ll"
|
||||
ECHO;
|
||||
YY_BREAK
|
||||
#line 2824 "src/glsl/glsl_lexer.cpp"
|
||||
#line 2837 "src/glsl/glsl_lexer.cpp"
|
||||
case YY_STATE_EOF(INITIAL):
|
||||
case YY_STATE_EOF(PP):
|
||||
case YY_STATE_EOF(PRAGMA):
|
||||
|
@ -3010,7 +3023,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
|
||||
else
|
||||
{
|
||||
yy_size_t num_to_read =
|
||||
int num_to_read =
|
||||
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
|
||||
|
||||
while ( num_to_read <= 0 )
|
||||
|
@ -3024,7 +3037,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
|
||||
if ( b->yy_is_our_buffer )
|
||||
{
|
||||
yy_size_t new_size = b->yy_buf_size * 2;
|
||||
int new_size = b->yy_buf_size * 2;
|
||||
|
||||
if ( new_size <= 0 )
|
||||
b->yy_buf_size += b->yy_buf_size / 8;
|
||||
|
@ -3055,7 +3068,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
|
||||
/* Read in more data. */
|
||||
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
|
||||
yyg->yy_n_chars, num_to_read );
|
||||
yyg->yy_n_chars, (size_t) num_to_read );
|
||||
|
||||
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars;
|
||||
}
|
||||
|
@ -3181,7 +3194,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
|
||||
else
|
||||
{ /* need more input */
|
||||
yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
|
||||
int offset = yyg->yy_c_buf_p - yyg->yytext_ptr;
|
||||
++yyg->yy_c_buf_p;
|
||||
|
||||
switch ( yy_get_next_buffer( yyscanner ) )
|
||||
|
@ -3205,7 +3218,7 @@ static int yy_get_next_buffer (yyscan_t yyscanner)
|
|||
case EOB_ACT_END_OF_FILE:
|
||||
{
|
||||
if ( _mesa_glsl_lexer_wrap(yyscanner ) )
|
||||
return 0;
|
||||
return EOF;
|
||||
|
||||
if ( ! yyg->yy_did_buffer_switch_on_eof )
|
||||
YY_NEW_FILE;
|
||||
|
@ -3463,7 +3476,7 @@ void _mesa_glsl_lexer_pop_buffer_state (yyscan_t yyscanner)
|
|||
*/
|
||||
static void _mesa_glsl_lexer_ensure_buffer_stack (yyscan_t yyscanner)
|
||||
{
|
||||
yy_size_t num_to_alloc;
|
||||
int num_to_alloc;
|
||||
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
|
||||
|
||||
if (!yyg->yy_buffer_stack) {
|
||||
|
@ -3556,16 +3569,17 @@ YY_BUFFER_STATE _mesa_glsl_lexer__scan_string (yyconst char * yystr , yyscan_t y
|
|||
|
||||
/** Setup the input buffer state to scan the given bytes. The next call to _mesa_glsl_lexer_lex() will
|
||||
* scan from a @e copy of @a bytes.
|
||||
* @param bytes the byte buffer to scan
|
||||
* @param len the number of bytes in the buffer pointed to by @a bytes.
|
||||
* @param yybytes the byte buffer to scan
|
||||
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
|
||||
* @param yyscanner The scanner object.
|
||||
* @return the newly allocated buffer state object.
|
||||
*/
|
||||
YY_BUFFER_STATE _mesa_glsl_lexer__scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner)
|
||||
YY_BUFFER_STATE _mesa_glsl_lexer__scan_bytes (yyconst char * yybytes, int _yybytes_len , yyscan_t yyscanner)
|
||||
{
|
||||
YY_BUFFER_STATE b;
|
||||
char *buf;
|
||||
yy_size_t n, i;
|
||||
yy_size_t n;
|
||||
int i;
|
||||
|
||||
/* Get memory for full buffer, including space for trailing EOB's. */
|
||||
n = _yybytes_len + 2;
|
||||
|
@ -3675,7 +3689,7 @@ FILE *_mesa_glsl_lexer_get_out (yyscan_t yyscanner)
|
|||
/** Get the length of the current token.
|
||||
* @param yyscanner The scanner object.
|
||||
*/
|
||||
yy_size_t _mesa_glsl_lexer_get_leng (yyscan_t yyscanner)
|
||||
int _mesa_glsl_lexer_get_leng (yyscan_t yyscanner)
|
||||
{
|
||||
struct yyguts_t * yyg = (struct yyguts_t*)yyscanner;
|
||||
return yyleng;
|
||||
|
|
2170
3rdparty/glsl-optimizer/src/glsl/glsl_parser.cpp
vendored
2170
3rdparty/glsl-optimizer/src/glsl/glsl_parser.cpp
vendored
File diff suppressed because it is too large
Load diff
290
3rdparty/glsl-optimizer/src/glsl/glsl_parser.h
vendored
290
3rdparty/glsl-optimizer/src/glsl/glsl_parser.h
vendored
|
@ -1,24 +1,21 @@
|
|||
/* A Bison parser, made by GNU Bison 2.3. */
|
||||
/* A Bison parser, made by GNU Bison 2.7.12-4996. */
|
||||
|
||||
/* Skeleton interface for Bison's Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
/* Bison interface for Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA. */
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
|
||||
/* As a special exception, you may create a larger work that contains
|
||||
part or all of the Bison parser skeleton and distribute that work
|
||||
|
@ -29,10 +26,20 @@
|
|||
special exception, which will cause the skeleton and the resulting
|
||||
Bison output files to be licensed under the GNU General Public
|
||||
License without this special exception.
|
||||
|
||||
|
||||
This special exception was added by the Free Software Foundation in
|
||||
version 2.2 of Bison. */
|
||||
|
||||
#ifndef YY__MESA_GLSL_SRC_GLSL_GLSL_PARSER_H_INCLUDED
|
||||
# define YY__MESA_GLSL_SRC_GLSL_GLSL_PARSER_H_INCLUDED
|
||||
/* Enabling traces. */
|
||||
#ifndef YYDEBUG
|
||||
# define YYDEBUG 0
|
||||
#endif
|
||||
#if YYDEBUG
|
||||
extern int _mesa_glsl_debug;
|
||||
#endif
|
||||
|
||||
/* Tokens. */
|
||||
#ifndef YYTOKENTYPE
|
||||
# define YYTOKENTYPE
|
||||
|
@ -259,233 +266,14 @@
|
|||
THEN = 475
|
||||
};
|
||||
#endif
|
||||
/* Tokens. */
|
||||
#define ATTRIBUTE 258
|
||||
#define CONST_TOK 259
|
||||
#define BOOL_TOK 260
|
||||
#define FLOAT_TOK 261
|
||||
#define INT_TOK 262
|
||||
#define UINT_TOK 263
|
||||
#define BREAK 264
|
||||
#define CONTINUE 265
|
||||
#define DO 266
|
||||
#define ELSE 267
|
||||
#define FOR 268
|
||||
#define IF 269
|
||||
#define DISCARD 270
|
||||
#define RETURN 271
|
||||
#define SWITCH 272
|
||||
#define CASE 273
|
||||
#define DEFAULT 274
|
||||
#define BVEC2 275
|
||||
#define BVEC3 276
|
||||
#define BVEC4 277
|
||||
#define IVEC2 278
|
||||
#define IVEC3 279
|
||||
#define IVEC4 280
|
||||
#define UVEC2 281
|
||||
#define UVEC3 282
|
||||
#define UVEC4 283
|
||||
#define VEC2 284
|
||||
#define VEC3 285
|
||||
#define VEC4 286
|
||||
#define CENTROID 287
|
||||
#define IN_TOK 288
|
||||
#define OUT_TOK 289
|
||||
#define INOUT_TOK 290
|
||||
#define UNIFORM 291
|
||||
#define VARYING 292
|
||||
#define NOPERSPECTIVE 293
|
||||
#define FLAT 294
|
||||
#define SMOOTH 295
|
||||
#define MAT2X2 296
|
||||
#define MAT2X3 297
|
||||
#define MAT2X4 298
|
||||
#define MAT3X2 299
|
||||
#define MAT3X3 300
|
||||
#define MAT3X4 301
|
||||
#define MAT4X2 302
|
||||
#define MAT4X3 303
|
||||
#define MAT4X4 304
|
||||
#define SAMPLER1D 305
|
||||
#define SAMPLER2D 306
|
||||
#define SAMPLER3D 307
|
||||
#define SAMPLERCUBE 308
|
||||
#define SAMPLER1DSHADOW 309
|
||||
#define SAMPLER2DSHADOW 310
|
||||
#define SAMPLERCUBESHADOW 311
|
||||
#define SAMPLER1DARRAY 312
|
||||
#define SAMPLER2DARRAY 313
|
||||
#define SAMPLER1DARRAYSHADOW 314
|
||||
#define SAMPLER2DARRAYSHADOW 315
|
||||
#define SAMPLERCUBEARRAY 316
|
||||
#define SAMPLERCUBEARRAYSHADOW 317
|
||||
#define ISAMPLER1D 318
|
||||
#define ISAMPLER2D 319
|
||||
#define ISAMPLER3D 320
|
||||
#define ISAMPLERCUBE 321
|
||||
#define ISAMPLER1DARRAY 322
|
||||
#define ISAMPLER2DARRAY 323
|
||||
#define ISAMPLERCUBEARRAY 324
|
||||
#define USAMPLER1D 325
|
||||
#define USAMPLER2D 326
|
||||
#define USAMPLER3D 327
|
||||
#define USAMPLERCUBE 328
|
||||
#define USAMPLER1DARRAY 329
|
||||
#define USAMPLER2DARRAY 330
|
||||
#define USAMPLERCUBEARRAY 331
|
||||
#define SAMPLER2DRECT 332
|
||||
#define ISAMPLER2DRECT 333
|
||||
#define USAMPLER2DRECT 334
|
||||
#define SAMPLER2DRECTSHADOW 335
|
||||
#define SAMPLERBUFFER 336
|
||||
#define ISAMPLERBUFFER 337
|
||||
#define USAMPLERBUFFER 338
|
||||
#define SAMPLER2DMS 339
|
||||
#define ISAMPLER2DMS 340
|
||||
#define USAMPLER2DMS 341
|
||||
#define SAMPLER2DMSARRAY 342
|
||||
#define ISAMPLER2DMSARRAY 343
|
||||
#define USAMPLER2DMSARRAY 344
|
||||
#define SAMPLEREXTERNALOES 345
|
||||
#define ATOMIC_UINT 346
|
||||
#define STRUCT 347
|
||||
#define VOID_TOK 348
|
||||
#define WHILE 349
|
||||
#define IDENTIFIER 350
|
||||
#define TYPE_IDENTIFIER 351
|
||||
#define NEW_IDENTIFIER 352
|
||||
#define FLOATCONSTANT 353
|
||||
#define INTCONSTANT 354
|
||||
#define UINTCONSTANT 355
|
||||
#define BOOLCONSTANT 356
|
||||
#define FIELD_SELECTION 357
|
||||
#define LEFT_OP 358
|
||||
#define RIGHT_OP 359
|
||||
#define INC_OP 360
|
||||
#define DEC_OP 361
|
||||
#define LE_OP 362
|
||||
#define GE_OP 363
|
||||
#define EQ_OP 364
|
||||
#define NE_OP 365
|
||||
#define AND_OP 366
|
||||
#define OR_OP 367
|
||||
#define XOR_OP 368
|
||||
#define MUL_ASSIGN 369
|
||||
#define DIV_ASSIGN 370
|
||||
#define ADD_ASSIGN 371
|
||||
#define MOD_ASSIGN 372
|
||||
#define LEFT_ASSIGN 373
|
||||
#define RIGHT_ASSIGN 374
|
||||
#define AND_ASSIGN 375
|
||||
#define XOR_ASSIGN 376
|
||||
#define OR_ASSIGN 377
|
||||
#define SUB_ASSIGN 378
|
||||
#define INVARIANT 379
|
||||
#define LOWP 380
|
||||
#define MEDIUMP 381
|
||||
#define HIGHP 382
|
||||
#define SUPERP 383
|
||||
#define PRECISION 384
|
||||
#define VERSION_TOK 385
|
||||
#define EXTENSION 386
|
||||
#define LINE 387
|
||||
#define COLON 388
|
||||
#define EOL 389
|
||||
#define INTERFACE 390
|
||||
#define OUTPUT 391
|
||||
#define PRAGMA_DEBUG_ON 392
|
||||
#define PRAGMA_DEBUG_OFF 393
|
||||
#define PRAGMA_OPTIMIZE_ON 394
|
||||
#define PRAGMA_OPTIMIZE_OFF 395
|
||||
#define PRAGMA_INVARIANT_ALL 396
|
||||
#define LAYOUT_TOK 397
|
||||
#define ASM 398
|
||||
#define CLASS 399
|
||||
#define UNION 400
|
||||
#define ENUM 401
|
||||
#define TYPEDEF 402
|
||||
#define TEMPLATE 403
|
||||
#define THIS 404
|
||||
#define PACKED_TOK 405
|
||||
#define GOTO 406
|
||||
#define INLINE_TOK 407
|
||||
#define NOINLINE 408
|
||||
#define VOLATILE 409
|
||||
#define PUBLIC_TOK 410
|
||||
#define STATIC 411
|
||||
#define EXTERN 412
|
||||
#define EXTERNAL 413
|
||||
#define LONG_TOK 414
|
||||
#define SHORT_TOK 415
|
||||
#define DOUBLE_TOK 416
|
||||
#define HALF 417
|
||||
#define FIXED_TOK 418
|
||||
#define UNSIGNED 419
|
||||
#define INPUT_TOK 420
|
||||
#define OUPTUT 421
|
||||
#define HVEC2 422
|
||||
#define HVEC3 423
|
||||
#define HVEC4 424
|
||||
#define DVEC2 425
|
||||
#define DVEC3 426
|
||||
#define DVEC4 427
|
||||
#define FVEC2 428
|
||||
#define FVEC3 429
|
||||
#define FVEC4 430
|
||||
#define SAMPLER3DRECT 431
|
||||
#define SIZEOF 432
|
||||
#define CAST 433
|
||||
#define NAMESPACE 434
|
||||
#define USING 435
|
||||
#define COHERENT 436
|
||||
#define RESTRICT 437
|
||||
#define READONLY 438
|
||||
#define WRITEONLY 439
|
||||
#define RESOURCE 440
|
||||
#define PATCH 441
|
||||
#define SAMPLE 442
|
||||
#define SUBROUTINE 443
|
||||
#define ERROR_TOK 444
|
||||
#define COMMON 445
|
||||
#define PARTITION 446
|
||||
#define ACTIVE 447
|
||||
#define FILTER 448
|
||||
#define IMAGE1D 449
|
||||
#define IMAGE2D 450
|
||||
#define IMAGE3D 451
|
||||
#define IMAGECUBE 452
|
||||
#define IMAGE1DARRAY 453
|
||||
#define IMAGE2DARRAY 454
|
||||
#define IIMAGE1D 455
|
||||
#define IIMAGE2D 456
|
||||
#define IIMAGE3D 457
|
||||
#define IIMAGECUBE 458
|
||||
#define IIMAGE1DARRAY 459
|
||||
#define IIMAGE2DARRAY 460
|
||||
#define UIMAGE1D 461
|
||||
#define UIMAGE2D 462
|
||||
#define UIMAGE3D 463
|
||||
#define UIMAGECUBE 464
|
||||
#define UIMAGE1DARRAY 465
|
||||
#define UIMAGE2DARRAY 466
|
||||
#define IMAGE1DSHADOW 467
|
||||
#define IMAGE2DSHADOW 468
|
||||
#define IMAGEBUFFER 469
|
||||
#define IIMAGEBUFFER 470
|
||||
#define UIMAGEBUFFER 471
|
||||
#define IMAGE1DARRAYSHADOW 472
|
||||
#define IMAGE2DARRAYSHADOW 473
|
||||
#define ROW_MAJOR 474
|
||||
#define THEN 475
|
||||
|
||||
|
||||
|
||||
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
typedef union YYSTYPE
|
||||
#line 96 "src/glsl/glsl_parser.yy"
|
||||
{
|
||||
/* Line 2053 of yacc.c */
|
||||
#line 96 "src/glsl/glsl_parser.yy"
|
||||
|
||||
int n;
|
||||
float real;
|
||||
const char *identifier;
|
||||
|
@ -520,17 +308,16 @@ typedef union YYSTYPE
|
|||
ast_node *then_statement;
|
||||
ast_node *else_statement;
|
||||
} selection_rest_statement;
|
||||
}
|
||||
/* Line 1529 of yacc.c. */
|
||||
#line 526 "src/glsl/glsl_parser.h"
|
||||
YYSTYPE;
|
||||
|
||||
|
||||
/* Line 2053 of yacc.c */
|
||||
#line 315 "src/glsl/glsl_parser.h"
|
||||
} YYSTYPE;
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
||||
# define YYSTYPE_IS_DECLARED 1
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
||||
typedef struct YYLTYPE
|
||||
{
|
||||
|
@ -545,3 +332,18 @@ typedef struct YYLTYPE
|
|||
#endif
|
||||
|
||||
|
||||
#ifdef YYPARSE_PARAM
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int _mesa_glsl_parse (void *YYPARSE_PARAM);
|
||||
#else
|
||||
int _mesa_glsl_parse ();
|
||||
#endif
|
||||
#else /* ! YYPARSE_PARAM */
|
||||
#if defined __STDC__ || defined __cplusplus
|
||||
int _mesa_glsl_parse (struct _mesa_glsl_parse_state *state);
|
||||
#else
|
||||
int _mesa_glsl_parse ();
|
||||
#endif
|
||||
#endif /* ! YYPARSE_PARAM */
|
||||
|
||||
#endif /* !YY__MESA_GLSL_SRC_GLSL_GLSL_PARSER_H_INCLUDED */
|
||||
|
|
|
@ -598,12 +598,25 @@ bool compileGLSLShader(bx::CommandLine& _cmdLine, uint32_t _gles, const std::str
|
|||
{
|
||||
const glslopt_shader_type type = tolower(_cmdLine.findOption('\0', "type")[0]) == 'f' ? kGlslOptShaderFragment : kGlslOptShaderVertex;
|
||||
|
||||
const char* profile = _cmdLine.findOption('p', "profile");
|
||||
bool gles = NULL == profile;
|
||||
glslopt_target target = kGlslTargetOpenGL;
|
||||
switch (_gles)
|
||||
{
|
||||
case 2:
|
||||
target = kGlslTargetOpenGLES20;
|
||||
break;
|
||||
|
||||
glslopt_ctx* ctx = glslopt_initialize( (glslopt_target)gles);
|
||||
case 3:
|
||||
target = kGlslTargetOpenGLES30;
|
||||
break;
|
||||
|
||||
glslopt_shader* shader = glslopt_optimize(ctx, type, _code.c_str(), 0);
|
||||
default:
|
||||
target = kGlslTargetOpenGL;
|
||||
break;
|
||||
}
|
||||
|
||||
glslopt_ctx* ctx = glslopt_initialize(target);
|
||||
|
||||
glslopt_shader* shader = glslopt_optimize(ctx, type, _code.c_str(), 0);
|
||||
|
||||
if (!glslopt_get_status(shader) )
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue