summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir
Commit message (Expand)AuthorAgeFilesLines
* nir: rename nir_lower_tex_projectorRob Clark2015-09-182-6/+6
* nir/builder: fix c++11 compiler warningRob Clark2015-09-171-1/+1
* nir: really actually fix comment this timeRob Clark2015-09-171-1/+1
* nir/print: print variable namesRob Clark2015-09-171-0/+30
* nir: some comment fixupsRob Clark2015-09-171-5/+5
* nir: add lowering stage for user-clip-planes / clipdistRob Clark2015-09-172-0/+343
* nir: add sysval for user-clip-planesRob Clark2015-09-171-13/+14
* nir: Add a pass to rewrite uses of vecN sources to the vecN destinationJason Ekstrand2015-09-172-0/+198
* nir: Add comments to nir_index_instrs and nir_index_ssa_defsJason Ekstrand2015-09-171-0/+8
* nir: Add a generic instruction indexJason Ekstrand2015-09-172-0/+22
* nir: support indirect indexing samplers in struct arraysTimothy Arceri2015-09-171-76/+88
* glsl: store uniform slot id in var location fieldTimothy Arceri2015-09-171-0/+1
* nir/print: print symbolic names from shader-enumRob Clark2015-09-161-3/+42
* nir/print: bit of state refactoringRob Clark2015-09-161-109/+152
* nir: add lowering for ffractRob Clark2015-09-162-0/+4
* nir/builder: Use a normal temporary array in nir_channelJason Ekstrand2015-09-151-1/+2
* nir/lower_vec_to_movs: Coalesce into destinations of fdot instructionsJason Ekstrand2015-09-151-13/+36
* nir: Add a fdot instruction that replicates the result to a vec4Jason Ekstrand2015-09-153-0/+12
* nir/lower_vec_to_movs: Coalesce movs on-the-fly when possibleJason Ekstrand2015-09-151-0/+85
* nir/lower_vec_to_movs: Get rid of start_idx and swizzle compactingJason Ekstrand2015-09-151-20/+13
* nir/lower_vec_to_movs: Handle partially SSA shadersJason Ekstrand2015-09-151-6/+15
* nir/lower_vec_to_movs: Pass the shader around directlyJason Ekstrand2015-09-151-6/+8
* nir: Add gl_WorkGroupID system variableJordan Justen2015-09-133-0/+6
* nir: Add gl_LocalInvocationID variableJordan Justen2015-09-133-0/+6
* nir: add nir_channel() to get at single components of vec'sRob Clark2015-09-133-28/+22
* nir/from_ssa: Use instr_rewrite_destJason Ekstrand2015-09-111-3/+1
* nir: Add a function for rewriting instruction destinationsJason Ekstrand2015-09-112-0/+26
* nir: Only unlink sources that are actually validJason Ekstrand2015-09-111-7/+8
* nir: Remove the mem_ctx parameter from ssa_def_rewrite_usesJason Ekstrand2015-09-1120-47/+25
* nir: Fix a bunch of ralloc parenting errorsJason Ekstrand2015-09-1110-31/+32
* nir/lower_outputs_to_temporaries: Reparent the output nameJason Ekstrand2015-09-111-0/+3
* nir: Store some geometry shader data in nir_shader.Kenneth Graunke2015-09-113-0/+14
* nir/builder: Add nir_load_var() and nir_store_var() helpers.Kenneth Graunke2015-09-111-0/+27
* nir: convert glsl imageSamples into a new intrinsicIlia Mirkin2015-09-102-1/+7
* nir: add nir_texop_texture_samples and convert from glslIlia Mirkin2015-09-103-1/+11
* glsl: Resolve GCC sign-compare warning.Rhys Kidd2015-09-103-7/+7
* nir/glsl: Use lower_outputs_to_temporaries instead of relying on GLSL IRJason Ekstrand2015-09-091-0/+2
* nir: Add a pass to lower outputs to temporary variablesJason Ekstrand2015-09-092-0/+129
* nir/cursor: Add a constructor for the end of a block but before the jumpJason Ekstrand2015-09-092-6/+12
* nir: Add a nir_system_value_from_intrinsic() function.Kenneth Graunke2015-09-082-0/+36
* nir: UBO loads no longer use const_index[1]Iago Toral Quiroga2015-09-081-1/+0
* nir/dead_cf: add support for removing useless loopsConnor Abbott2015-09-011-12/+109
* nir: add a helper for iterating over blocks in a cf nodeConnor Abbott2015-09-012-0/+9
* nir: add nir_block_get_following_loop() helperConnor Abbott2015-09-012-0/+18
* nir/dead_cf: delete code that's unreachable due to jumpsConnor Abbott2015-09-011-8/+115
* nir: add an optimization for removing dead control flowConnor Abbott2015-09-012-0/+157
* nir/builder: Use nir_after_instr to advance the cursorJason Ekstrand2015-08-311-2/+1
* nir: Convert the builder to use the new NIR cursor API.Kenneth Graunke2015-08-276-38/+15
* nir: Convert the NIR instruction insertion API to use cursors.Kenneth Graunke2015-08-272-97/+89
* nir: Move nir_cursor to nir.h.Kenneth Graunke2015-08-272-89/+97