glsl: allow ?: operator with images and samplers when bindless is enabled
[mesa.git] / src / compiler / glsl / ast_to_hir.cpp
2018-08-01 Rhys Perryglsl: allow ?: operator with images and samplers when...
2018-06-01 Plamena Manolovamesa: Add GL/GLSL plumbing for ARB_fragment_shader_inte...
2018-04-27 Timothy Arceriglsl: replace some asserts with unreachable when proces...
2018-04-12 Marek Olšákmesa: include mtypes.h less
2018-03-14 Karol Herbstcompiler: int8/uint8 support
2018-02-24 Francisco Jerezglsl: Silence warnings when reading from a framebuffer...
2018-02-24 Francisco Jerezglsl: Add support for the framebuffer fetch layout...
2018-02-24 Francisco Jerezglsl: Initialize ir_variable_data::fb_fetch_output...
2018-01-10 Ian Romanickglsl: Remove unnecessary assignments to type
2017-12-06 Eduardo Lima Mitevglsl: Add 16-bit types
2017-11-09 Kenneth Graunkeglsl: Make #pragma STDGL invariant(all) only modify...
2017-11-08 Andreas Bollglsl: Fix typo fragement -> fragment
2017-10-30 Ian Romanickglsl: Remove ir_binop_greater and ir_binop_lequal expre...
2017-10-30 Ian Romanickglsl/parser: Track built-in types using the glsl_type...
2017-10-02 Ian Romanickglsl/ast: Use logical-or instead of conditional assignm...
2017-10-02 Ian Romanickglsl/ast: Generate a more compact expression to disable...
2017-10-02 Ian Romanickglsl/ast: Explicitly track the set of case labels that...
2017-10-02 Ian Romanickglsl/ast: Convert ast_case_label::hir to ir_builder
2017-10-02 Ian Romanickglsl/ast: Use ir_binop_equal instead of ir_binop_all_equal
2017-10-02 Ian Romanickglsl/ast: Stop processing a switch-statement after...
2017-10-02 Nicolai Hähnleglsl: do not set the 'smooth' qualifier by default...
2017-09-19 Juan A. Suarez Romeroglsl: buffer variables can be readonly and writeonly
2017-09-14 Iago Toral Quirogaglsl: avoid accessing invalid memory after get_variable...
2017-09-14 Iago Toral Quirogaglsl: make the redeclared variable NULL if it is deleted
2017-09-14 Iago Toral Quirogaglsl: use 'declared_var' instead of 'var' after checkin...
2017-09-12 Iago Toral Quirogaglsl: Disallow unsized array of atomic_uint
2017-08-21 Matt Turnerglsl: Mark functions static
2017-08-16 Ilia Mirkinglsl/ast: update rhs in addition to the var's constant_...
2017-08-11 Timothy Arceriglsl: pass mem_ctx to constant_expression_value(.....
2017-08-01 Juan A. Suarez Romeroglsl: xfb_stride applies to buffers, not block members
2017-07-23 Timothy Arceriglsl: rework misleading block layout code
2017-07-23 Timothy Arceriglsl: remove placeholder comment
2017-07-06 Ilia Mirkinglsl: check if any of the named builtins are available...
2017-06-13 Nicolai Hähnleglsl: do not add unnamed struct types to the symbol...
2017-06-13 Nicolai Hähnleglsl: do not lookup struct types by typename
2017-06-08 Rob Herringglsl: Fix gl_shader_stage enum unsigned comparison
2017-06-01 Samuel Pitoisetglsl: handle format layout qualifiers for struct with...
2017-06-01 Samuel Pitoisetglsl: handle memory qualifiers for struct with array...
2017-05-20 John Brooksglsl: Conditionally allow redeclaration of built-in...
2017-05-08 Eric Anholtglsl: Don't allow redefining builtin functions on GLSL...
2017-05-08 Eric Anholtglsl: Restrict func redeclarations (not just redefiniti...
2017-05-08 Eric Anholtglsl: Restrict functions to not return arrays or SOAs...
2017-05-08 Samuel Pitoisetglsl: apply the image format for members of structures
2017-05-06 Samuel Pitoisetglsl: allow bindless samplers/images to be initialized
2017-05-06 Samuel Pitoisetglsl: add _mesa_glsl_parse_state object to is_lvalue()
2017-05-06 Samuel Pitoisetglsl: reject bindless samplers/images frag inputs witho...
2017-05-06 Samuel Pitoisetglsl: allow bindless samplers/images as vertex shader...
2017-05-06 Samuel Pitoisetglsl: allow bindless samplers/images as varying variables
2017-05-06 Samuel Pitoisetglsl: allow bindless images to be declared inside struc...
2017-05-06 Samuel Pitoisetglsl: allow bindless samplers/images inside interface...
2017-05-06 Samuel Pitoisetglsl: allow bindless samplers/images as function return
2017-05-06 Samuel Pitoisetglsl: allow bindless samplers/images as out and inout...
2017-05-06 Samuel Pitoisetglsl: allow to declare bindless samplers/images as...
2017-05-06 Samuel Pitoisetglsl: process bindless/bound layout qualifiers
2017-05-06 Samuel Pitoisetglsl: do not make sampler/image types readonly variables
2017-05-04 Samuel Pitoisetglsl: reject memory qualifiers with uniform blocks
2017-05-04 Samuel Pitoisetglsl: reject format qualifiers with non-image types...
2017-05-04 Samuel Pitoisetglsl: rework validate_image_qualifier_for_type()
2017-05-04 Samuel Pitoisetglsl: rename image_* qualifiers to memory_*
2017-05-03 Andres Gomezglsl: Corrected some typos and error messages
2017-04-28 Matt TurnerRevert "glsl: reject image qualifiers with non-image...
2017-04-28 Samuel Pitoisetglsl: reject image qualifiers with non-image types...
2017-04-28 Samuel Pitoisetglsl: introduce validate_image_qualifier_for_type(...
2017-04-28 Samuel Pitoisetglsl: fix error when using format qualifiers with non...
2017-04-26 Timothy Arceriglsl: remove duplicate validation
2017-04-26 Timothy Arceriglsl: use without_array() rather than get_scalar_type()
2017-04-21 Samuel Pitoisetglsl: make use of glsl_type::is_float()
2017-04-21 Samuel Pitoisetglsl: make use of glsl_type::is_double()
2017-04-21 Samuel Pitoisetglsl: make use of glsl_type::is_boolean()
2017-04-21 Samuel Pitoisetglsl: make use of glsl_type::is_array()
2017-04-21 Samuel Pitoisetglsl: make use glsl_type::is_atomic_uint()
2017-04-13 Samuel Pitoisetglsl: simplify apply_image_qualifier_to_variable()
2017-04-13 Samuel Pitoisetglsl: add validate_fragment_flat_interpolation_input()
2017-03-09 Lionel Landwerlinglsl: builtin: always return clones of the builtins
2017-03-02 Samuel Pitoisetglsl: fix subroutine mismatch between declarations...
2017-03-01 Samuel Pitoisetglsl: remove unecessary flags.q.subroutine_def
2017-02-27 Samuel Pitoisetglsl: reject samplers not declared as uniform/function...
2017-02-27 Samuel Pitoisetglsl: use is_sampler() anywhere it's possible
2017-02-27 Samuel Pitoisetglsl: use an enum for AMD_conservative_depth layout...
2017-02-25 Vinson Leeglsl: Fix missing-braces warning.
2017-02-23 Samuel Iglesias... glsl: refactor get_variable_being_redeclared() to retur...
2017-02-23 Samuel Iglesias... glsl: fix heap-use-after-free in ast_declarator_list...
2017-02-13 Kenneth Graunkeglsl: Drop resize-to-MaxPatchVertices hack.
2017-02-11 Jose Maria Casanov... glsl: non-last member unsized array on SSBO must fail...
2017-01-20 Ian Romanickglsl: Move builtin_function related prototypes to a...
2017-01-20 Dave Airlieglsl/ast: Add 64-bit integer support in some places.
2017-01-20 Dave Airlieglsl: Add 64-bit integer support to some operations.
2017-01-20 Dave Airlieglsl/ast: Add 64-bit integer support to conversion...
2017-01-20 Dave Airlieglsl/ast/ir: Add 64-bit integer constant support
2017-01-20 Dave Airlieglsl: Add basic ARB_gpu_shader_int64 types
2017-01-02 Kenneth Graunkeglsl: Update ES 3.2 shader output restrictions.
2016-12-20 Dave Airlieglsl: allow invariant on fragment shader outputs.
2016-12-07 Lionel Landwerlinmesa: add support for GL_INTEL_conservative_rasterization
2016-12-07 Plamena Manolovamesa: Add GL and GLSL plumbing for ARB_post_depth_cover...
2016-11-25 Andres Gomezglsl: remove unneeded check for incompatible primitive...
2016-11-13 Kenneth Graunkeglsl: Fix assert fails when assignment expressions...
2016-10-31 Marek Olšákralloc: use rzalloc where it's necessary
2016-10-27 Kenneth Graunkeglsl: Size TCS->TES unsized arrays to gl_MaxPatchVertic...
2016-10-24 Iago Toral Quirogaglsl: add matrix layout information to interface block...
2016-10-15 Kenneth Graunkeglsl: Drop the ES requirement that VS outputs must...
next