aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/nir
Commit message (Expand)AuthorAgeFilesLines
* nir/inline: Also rewrite param derefs for texture instructionsJason Ekstrand2016-05-271-6/+20
* nir/inline: Break the guts of rewrite_param-derefs into a helperJason Ekstrand2016-05-271-19/+30
* nir/inline: Make the rewrite_param_derefs helper work on instructionsJason Ekstrand2016-05-271-28/+25
* nir/inline: Don't use foreach_instr_safe unless we need toJason Ekstrand2016-05-271-2/+2
* nir: Make nir_const_value a unionJason Ekstrand2016-05-262-10/+8
* compiler: Move glsl_to_nir to libglsl.laJason Ekstrand2016-05-262-2068/+0
* nir: Strengthen assertion that 'out' is nonnull.Matt Turner2016-05-251-1/+1
* mesa: Add .gitignore entries for make check binariesKristian Høgsberg Kristensen2016-05-251-0/+1
* nir: Add a lowering pass for YUV texturesKristian Høgsberg Kristensen2016-05-242-0/+126
* nir: Handle NULL in nir_copy_deref()Kristian Høgsberg Kristensen2016-05-241-0/+3
* nir: Add new 'plane' texture source typeKristian Høgsberg Kristensen2016-05-242-0/+4
* nir/lower_samplers: Protect against sampler index overflowJason Ekstrand2016-05-231-3/+6
* nir/validate: fix null deref coverity warningRob Clark2016-05-231-0/+1
* nir: handle double-precision in fsign, fsat, fnot and frcpIago Toral Quiroga2016-05-231-4/+9
* nir: handle double-precision in fabs, frsq and fsqrtIago Toral Quiroga2016-05-231-3/+3
* nir: Fix crash in nir_lower_wpos_center().Kenneth Graunke2016-05-201-1/+1
* nir: Add a simple nir_lower_wpos_center() pass for Vulkan drivers.Kenneth Graunke2016-05-202-0/+108
* nir: Don't use ffma in nir_lower_wpos_ytransform().Kenneth Graunke2016-05-201-12/+8
* nir: Handle fddy_fine and fddy_coarse in nir_lower_wpos_ytransform.Kenneth Graunke2016-05-201-1/+3
* nir: Make lower_wpos_ytransform_block a void function.Kenneth Graunke2016-05-201-3/+1
* nir: Make nir_lower_wpos_ytransform() match FragCoord by location.Kenneth Graunke2016-05-201-1/+2
* nir: Add interp_var_at_offset flipping.Kenneth Graunke2016-05-201-0/+21
* nir: Fix fddy swizzles in nir_lower_wpos_ytransform().Kenneth Graunke2016-05-201-0/+3
* nir: Fix wpos_ytransform lowering state_slot swizzle.Kenneth Graunke2016-05-201-0/+2
* nir/validate: assume() that hashtable entry existsRob Clark2016-05-201-0/+3
* nir: coverity unitialized pointer readRob Clark2016-05-201-0/+2
* nir: coverity sign-extension fixRob Clark2016-05-201-1/+1
* nir/glsl_to_nir: quell some uninit_member coverity errorsRob Clark2016-05-201-0/+6
* nir/validate: dump annotated shader with error msgsRob Clark2016-05-171-1/+62
* nir/validate: assert() -> validate_assert()Rob Clark2016-05-171-126/+128
* nir/print: add support for print annotationsRob Clark2016-05-172-1/+35
* nir: add double input bitmapJuan A. Suarez Romero2016-05-172-0/+3
* nir: Mark nir_start_block()/nir_impl_last_block() with returns_nonnull.Matt Turner2016-05-161-4/+5
* nir: Add a nir->info.uses_interp_var_at_offset flag.Kenneth Graunke2016-05-153-0/+10
* nir: forward-declare 'struct gl_shader_program'Rob Clark2016-05-151-1/+2
* nir: return progress from lower_idivRob Clark2016-05-152-7/+16
* nir: fix comment typo about f2d/d2fRob Clark2016-05-151-2/+2
* nir: Add texture opcodes and source types for multisample compressionJason Ekstrand2016-05-142-0/+12
* nir/builder: Add a helper for grabbing multiple channels from an ssa defJason Ekstrand2016-05-141-0/+14
* nir/builder: Generate the alu helpers directly in pythonJason Ekstrand2016-05-142-31/+13
* nir: Add an info bit for uses_sample_qualifierJason Ekstrand2016-05-143-1/+13
* nir: Remove empty visit_call_src and visit_load_const_src functionsIan Romanick2016-05-121-17/+2
* nir: Silence unused parameter warningsIan Romanick2016-05-124-6/+9
* nir: glsl_get_bit_size() should take glsl_typeRob Clark2016-05-126-14/+13
* nir/algebraic: Separate ffma lowering from fusingJason Ekstrand2016-05-112-1/+2
* nir/lower-io: add support for lowering inputsRob Clark2016-05-112-9/+45
* nir/lower-io: split out some helper fxnsRob Clark2016-05-111-52/+70
* nir: rename lower_outputs_to_temporaries -> lower_io_to_temporariesRob Clark2016-05-112-6/+6
* nir: move callsite of lower_outputs_to_temporariesRob Clark2016-05-112-6/+0
* nir: lower-io-types passRob Clark2016-05-112-0/+181