freedreno/ir3: split out legalize pass
[mesa.git] / src / glsl / glcpp /
2014-12-12 Matt Turnerglcpp: Make tests write .out files to builddir.
2014-12-06 Chris Forbesglcpp: Fix `can not` to `cannot` in error message
2014-12-06 Chris Forbesglcpp: Disallow undefining GL_* builtin macros.
2014-08-22 Carl Worthglcpp: Don't use alternation in the lookahead for empty...
2014-08-20 Carl Worthglcpp: Fix glcpp-test-cr-lf "make check" test for Mac...
2014-08-20 Carl Worthglcpp: Use printf instead of "echo -n" in glcpp-test
2014-08-15 Ilia Mirkinglsl: add ARB_derivative control support
2014-08-07 Carl Worthglsl/glcpp: Rename one test to avoid a duplicate test...
2014-08-07 Carl Worthglsl/glcpp: Fix handling of commas that result from...
2014-08-07 Carl Worthglsl/glcpp: Integrate recent glcpp-test-cr-lf test...
2014-08-07 Carl Worthglsl/glcpp: Fix glcpp-test to correctly extract test...
2014-08-07 Carl Worthglsl/glcpp: Fix line-continuation code to handle multip...
2014-08-07 Carl Worthglsl/glcpp: Don't include any newline characters in...
2014-08-07 Carl Worthglsl/glcpp: Treat CR+LF pair as a single newline
2014-08-07 Carl Worthglsl/glcpp: Add test script for testing various line...
2014-08-07 Carl Worthglsl/glcpp: Fix for macros that expand to include ...
2014-08-07 Carl Worthglsl/glcpp: Swallow empty #pragma directives.
2014-08-07 Carl Worthglsl/glcpp: Fix #pragma to not over-increment the line...
2014-08-07 Carl Worthglsl/glcpp: Add testing for null directives with spaces...
2014-08-07 Carl Worthglsl/glcpp: Fix NULL directives when followed by a...
2014-08-07 Carl Worthglsl/glcpp: Add tests for #define followed by comments
2014-08-07 Carl Worthglsl/glcpp: Allow single-line comments immediately...
2014-08-07 Carl Worthglsl/glcpp: Add test for "#define without macro name"
2014-08-07 Carl Worthglsl/glcpp: Add explicit error for "#define without...
2014-08-04 Kenneth Graunkeutil: Move ralloc to a new src/util directory.
2014-08-01 Kevin Rogovindefine GL_OES_standard_derivatives if extension is...
2014-07-30 Brian Paulglsl/glcpp: rename ERROR to ERROR_TOKEN to fix MSVC...
2014-07-29 Carl Worthglsl/glcpp: Add flex options to eliminate the default...
2014-07-29 Carl Worthglsl/glcpp: Combine the two rules matching any character
2014-07-29 Carl Worthglsl/glcpp: Alphabetize lists of start conditions
2014-07-29 Carl Worthglsl/glcpp: Add a catch-all rule for unexpected characters.
2014-07-29 Carl Worthglsl/glcpp: Treat carriage return as equivalent to...
2014-07-29 Carl Worthglsl/glcpp: Add test for a multi-line comment within...
2014-07-29 Carl Worthglsl/glcpp: Test that macro parameters substitute immed...
2014-07-29 Carl Worthglsl/glcpp: Add (non)-support for ++ and -- operators
2014-07-29 Carl Worthglsl/glcpp: Emit error for duplicate parameter name...
2014-07-29 Carl Worthglsl/glcpp: Add an explanatory comment for "loc !=...
2014-07-29 Carl Worthglsl/glcpp: Drop the HASH_ prefix from token names...
2014-07-29 Carl Worthglsl/glcpp: Correctly parse directives with intervening...
2014-07-29 Carl Worthglsl/glcpp: Rename HASH token to HASH_TOKEN
2014-07-29 Carl Worthglsl/glcpp: Don't use start-condition stack when switch...
2014-07-29 Carl Worthglsl/glcpp: Add a -d/--debug option to the standalone...
2014-07-29 Carl Worthglsl/glcpp: Fix off-by-one error in column in first...
2014-07-29 Carl Worthglsl/glcpp: Minor tweak to wording of error message
2014-07-29 Carl Worthglsl/glcpp: Stop using a lexer start condition (<SKIP...
2014-07-29 Carl Worthglsl/glcpp: Abstract a bit of common code for returning...
2014-07-29 Carl Worthglsl/glcpp: Drop extra, final newline from most output
2014-07-29 Carl Worthglsl/glcpp: Add testing for EOF sans newline (and fix...
2014-07-29 Carl Worthglsl/glcpp: Remove some un-needed calls to NEWLINE_CATCHUP
2014-07-29 Carl Worthglsl/glcpp: Add support for comments between #define...
2014-07-29 Carl Worthglsl/glcpp: Emit proper error for #define with a non...
2014-07-29 Carl Worthglsl/glcpp: Add testing for directives preceded by...
2014-07-29 Carl Worthglsl/glcpp: Fix to emit spaces following directives
2014-07-10 Brian Paulglsl/glcpp: move macro declaration before code to fix...
2014-07-09 Carl Worthglsl/glcpp: Don't choke on an empty pragma
2014-07-09 Carl Worthglsl/glcpp: Promote "extra token at end of directive...
2014-07-09 Carl Worthglsl/glcpp: Once again report undefined macro name...
2014-07-09 Carl Worthglsl/glcpp: Add short-circuiting for || and && in ...
2014-07-09 Carl Worthglsl/glcpp: Fix glcpp to properly lex entire "preproces...
2014-07-09 Carl Worthglsl/glcpp: Fix glcpp to catch garbage after #if 1...
2014-07-09 Carl Worthglsl/glcpp: Fixup glcpp tests for redefining a macro...
2014-07-09 Anuj Phogatglsl/glcpp: Fix preprocessor error condition for macro...
2014-07-09 Carl Worthglsl/glcpp: Add test to ensure compiler won't allow...
2014-07-09 Anuj Phogatglsl/glcpp: Do not allow undefining the built-in macros
2014-07-03 Ilia Mirkinglsl: add support for AMD_vertex_shader_viewport_index
2014-06-22 Chris ForbesPartially revert "glsl: Add builtin define for ARB_frag...
2014-06-22 Chris Forbesglsl: Add builtin define for ARB_fragment_layer_viewport
2014-06-16 Tapani Pälliglsl: parser changes for GL_ARB_explicit_uniform_location
2014-05-02 Ian Romanickmesa: Enable GL_EXT_separate_shader_objects for OpenGL ES
2014-05-02 Ian Romanickmesa/sso: Enable GL_ARB_separate_shader_objects by...
2014-03-08 Sir Anthonyglcpp: Do not remove spaces to preserve locations.
2014-03-08 Sir Anthonyglsl: Update lexers in glsl and glcpp to hande end...
2014-02-21 Ian Romanickglsl/sso: Add parser and AST-to-HIR support for separat...
2014-02-19 Ian Romanickglcpp: Only warn for macro names containing __
2014-02-12 Francisco Jerezglcpp: Add built-in define for ARB_shader_image_load_store.
2014-02-05 Paul Berrymesa/cs: Add extension enable flags for ARB_compute_shader.
2014-01-31 Matt Turnerglcpp: Reject #version after the version has been resolved.
2014-01-31 Carl Worthglcpp: Rename the variable used to enable debugging.
2014-01-31 Carl Worthglcpp: Add "make check" test for comment-parsing bug
2014-01-31 Carl Worthglcpp: Don't enter lexer's NEWLINE_CATCHUP start state...
2014-01-28 Matt Turnerglcpp: Resolve implicit GLSL version to 100 if the...
2014-01-28 Matt Turnerglcpp: Check version_resolved in the proper place.
2014-01-27 Ian Romanickglcpp: Make sure GL_AMD_shader_trinary_minmax is defined
2014-01-23 Matt Turnerglcpp: Define GL_EXT_shader_integer_mix in both GL...
2014-01-23 Matt Turnerglcpp: Remove unused gl_api bits.
2014-01-23 Matt Turnerglcpp: Set extension defines after resolving the GLSL...
2014-01-23 Timothy Arcerimesa: Add ARB_arrays_of_arrays
2014-01-20 Ian Romanickglsl: Add extension infrastructure for ARB_viewport_array
2014-01-06 Maxence Le Doréglsl: Add extension tracking for AMD_shader_trinary_minmax
2014-01-02 Erik Faye-Lundglcpp: error on multiple #else/#elif directives
2014-01-02 Carl Worthglcpp: Replace multi-line comment with a space (even...
2014-01-02 Carl Worthglcpp: Add a more descriptive comment for the SKIP...
2013-11-01 Anuj Phogatmesa: Add infrastructure for GL_ARB_sample_shading
2013-10-29 Francisco Jerezglsl: Add built-in functions and constants required...
2013-10-05 Chris Forbesglsl: add plumbing for GL_ARB_texture_query_levels
2013-10-02 Maxence Le Doreglsl: add texture gather changes
2013-09-13 Ian Romanickmesa: Rename MESA_shader_integer_mix to EXT_shader_inte...
2013-09-09 Matt Turnerglsl: Implement MESA_shader_integer_mix extension.
2013-06-14 Todd Previtemesa: Add infrastructure for ARB_shading_language_420pack.
2013-06-13 Marek Olšákmesa: fix OES_EGL_image_external being partially allowe...
next