summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir
Commit message (Expand)AuthorAgeFilesLines
* nir: Get the number of SSBOs and UBOs rightIago Toral Quiroga2015-10-161-2/+2
* nir/glsl: Use shader_prog->Name for naming the NIR shaderJason Ekstrand2015-10-151-1/+1
* nir: Add helpers for creating variables and adding them to listsJason Ekstrand2015-10-153-34/+92
* mesa: Rename {Num}UniformBlocks to {Num}BufferInterfaceBlocksIago Toral Quiroga2015-10-141-1/+1
* nir: split SSBO min/max atomic instrinsics into signed/unsigned versionsIago Toral Quiroga2015-10-142-6/+22
* glsl: move shader_enums into nirRob Clark2015-10-093-1/+682
* nir/instr_set: remove unnecessary check in nir_instrs_equal()Connor Abbott2015-10-091-2/+1
* nir: make nir_instrs_equal() staticConnor Abbott2015-10-092-3/+1
* nir/cse: use the instruction set APIConnor Abbott2015-10-091-115/+23
* nir: add an instruction set APIConnor Abbott2015-10-092-0/+349
* nir: constify instruction comparison functionsConnor Abbott2015-10-092-4/+4
* nir: constify nir_ssa_alu_instr_src_components()Connor Abbott2015-10-091-1/+1
* nir: split out instruction comparison functionsConnor Abbott2015-10-094-181/+236
* nir: Add a function to determine if a source is dynamically uniformNeil Roberts2015-10-092-0/+30
* nir/sweep: Reparent the shader nameJason Ekstrand2015-10-081-0/+2
* glsl: reduce memory footprint of uniform_storage structTimothy Arceri2015-10-051-2/+2
* nir: Add a nir_shader_info::has_transform_feedback_varyings flag.Kenneth Graunke2015-10-042-0/+5
* nir: Introduce new nir_intrinsic_load_per_vertex_input intrinsics.Kenneth Graunke2015-10-043-6/+52
* nir/lower_io: Make get_io_offset() return a nir_ssa_def * for indirects.Kenneth Graunke2015-10-041-42/+20
* nir: Add a nir_foreach_variable macroJason Ekstrand2015-10-027-18/+21
* nir: Move GS data to nir_shader_infoJason Ekstrand2015-10-024-14/+11
* nir: Add a a nir_shader_info structJason Ekstrand2015-10-023-0/+53
* nir/glsl: Take a gl_shader_program and a stage rather than a gl_shaderJason Ekstrand2015-10-022-3/+8
* nir: Fix uninitialized 'progress' variable in nir_lower_system_values.Chris Wilson2015-10-021-1/+1
* nir/remove_phis: handle trivial back-edgesConnor Abbott2015-10-021-0/+19
* nir: Allow nir_lower_io() to only lower one type of variable.Kenneth Graunke2015-10-012-4/+18
* nir: Don't set dest in SSBO store glsl_to_nir conversionJordan Justen2015-09-291-1/+0
* nir: Use a system value for gl_PrimitiveIDIn.Kenneth Graunke2015-09-293-1/+10
* nir: Convert SYSTEM_VALUE_NUM_WORK_GROUPS to a nir intrinsicJordan Justen2015-09-292-0/+5
* nir: Add a function to count the number of vertices a GS emits.Kenneth Graunke2015-09-262-0/+95
* nir: Implement lowered SSBO atomic intrinsicsIago Toral Quiroga2015-09-252-0/+82
* nir/glsl_to_nir: ignore an instruction's dest if it hasn't anyIago Toral Quiroga2015-09-251-1/+2
* nir: Implement __intrinsic_load_ssboIago Toral Quiroga2015-09-253-1/+70
* nir: modify the instruction insertion in nir_visitor::visit(ir_call *ir)Samuel Iglesias Gonsalvez2015-09-251-4/+10
* nir: Implement __intrinsic_store_ssboIago Toral Quiroga2015-09-252-8/+48
* nir: Implement ir_unop_get_buffer_sizeSamuel Iglesias Gonsalvez2015-09-252-0/+17
* nir: Add new GS intrinsics that maintain a count of emitted vertices.Kenneth Graunke2015-09-233-0/+241
* nir: Add unit tests for control flow graphs.Kenneth Graunke2015-09-231-0/+155
* nir/cf: Fix dominance metadata in the dead control flow pass.Kenneth Graunke2015-09-232-3/+7
* nir/cf: Fix unlink_block_successors to actually unlink the second one.Kenneth Graunke2015-09-231-2/+2
* nir/cf: Alter block successors before adding a fake link.Kenneth Graunke2015-09-231-16/+28
* nir/cf: Conditionally do block_add_normal_succs() in unlink_jump();Kenneth Graunke2015-09-231-6/+6
* nir/cf: Don't break outer-block successors in split_block_beginning().Kenneth Graunke2015-09-231-3/+18
* nir/cf: Make a helper function for removing a predecessor.Kenneth Graunke2015-09-231-5/+11
* nir: Validate that a block doesn't have two identical successors.Kenneth Graunke2015-09-231-0/+1
* nir/lower_vec_to_movs: Don't emit unneeded movsJason Ekstrand2015-09-231-1/+19
* nir/lower_vec_to_movs: Properly handle source modifiers on vecN opsJason Ekstrand2015-09-231-1/+5
* nir/lower_alu_to_scalar: Add support for nir_op_fdphJason Ekstrand2015-09-221-0/+18
* nir: Add fdph and fdph_replicated opcodesJason Ekstrand2015-09-223-1/+8
* nir/lower_alu_to_scalar: Return after lower_reductionJason Ekstrand2015-09-221-1/+1