| Commit message (Expand) | Author | Age | Files | Lines |
* | i965/gen9: Handle the GL_TEXTURE_{1D, 1D_ARRAY} targets inside switch | Anuj Phogat | 2015-10-19 | 1 | -4/+4 |
* | i965/fs: Localize variables' scopes. | Matt Turner | 2015-10-19 | 1 | -8/+5 |
* | i965/fs: Consider type mismatches in saturate propagation. | Matt Turner | 2015-10-19 | 1 | -3/+12 |
* | i965: Extract can_change_source_types() functions. | Matt Turner | 2015-10-19 | 6 | -27/+30 |
* | i965/vs: Move URB entry_size and read_length calculations to compile_vs | Jason Ekstrand | 2015-10-19 | 2 | -34/+34 |
* | i965: Move the entire compiler API into a single file | Jason Ekstrand | 2015-10-19 | 10 | -619/+665 |
* | i965: Rename brw_foo_emit to brw_compile_foo | Jason Ekstrand | 2015-10-19 | 11 | -66/+67 |
* | i965/fs: Move some of the prog_data setup into brw_wm_emit | Jason Ekstrand | 2015-10-19 | 2 | -98/+100 |
* | i965/cs: Rework cs_emit to take a nir_shader and a brw_compiler | Jason Ekstrand | 2015-10-19 | 3 | -29/+42 |
* | i965/gs: Rework gs_emit to take a nir_shader and a brw_compiler | Jason Ekstrand | 2015-10-19 | 3 | -40/+29 |
* | i965/vs: Rework vs_emit to take a nir_shader and a brw_compiler | Jason Ekstrand | 2015-10-19 | 3 | -49/+49 |
* | i965/fs: Rework wm_fs_emit to take a nir_shader and a brw_compiler | Jason Ekstrand | 2015-10-19 | 3 | -39/+47 |
* | i965: Use a const nir_shader in backend_shader | Jason Ekstrand | 2015-10-19 | 11 | -12/+12 |
* | i965/vec4: Remove gl_program and gl_shader_program from the generator | Jason Ekstrand | 2015-10-19 | 4 | -29/+20 |
* | i965/fs: Remove the gl_program from the generator | Jason Ekstrand | 2015-10-19 | 5 | -9/+5 |
* | i965/asm: Explicitly use a nir_instr for IR annotations | Jason Ekstrand | 2015-10-19 | 4 | -19/+5 |
* | i965: Do not use NumBufferInterfaceBlocks | Iago Toral Quiroga | 2015-10-19 | 1 | -1/+1 |
* | i965/vs: Drop hack that created NIR for fixed function vertex programs. | Kenneth Graunke | 2015-10-17 | 1 | -12/+0 |
* | i965/nir: Switch on shader stage in nir_lower_outputs(). | Kenneth Graunke | 2015-10-17 | 1 | -5/+21 |
* | build: fix out-of-tree build after b9b40ef | Rob Clark | 2015-10-17 | 1 | -0/+1 |
* | nir: remove dependency on glsl | Rob Clark | 2015-10-16 | 9 | -9/+9 |
* | glsl: move half<->float convertion to util | Rob Clark | 2015-10-16 | 1 | -0/+1 |
* | i965/vec4: Use the right number of UBOs | Iago Toral Quiroga | 2015-10-16 | 1 | -1/+1 |
* | i965/fs: use the right number of UBOs | Iago Toral Quiroga | 2015-10-16 | 1 | -1/+1 |
* | i965: android: add the i965_compile_FILES sources to the driver | Mauro Rossi | 2015-10-15 | 1 | -0/+1 |
* | program: convert _mesa_init_gl_program() to take struct gl_program * | Emil Velikov | 2015-10-15 | 7 | -19/+21 |
* | i965: add arrays of arrays support for varyings | Timothy Arceri | 2015-10-15 | 2 | -5/+3 |
* | i965: Don't hardcode FS in "validation failed!" message. | Kenneth Graunke | 2015-10-14 | 1 | -1/+1 |
* | i965/fs: Ignore compute shaders in brw_nir_lower_inputs | Jordan Justen | 2015-10-14 | 1 | -0/+4 |
* | i965/fs: Simplify FS in brw_nir_lower_inputs to only support scalar mode | Jordan Justen | 2015-10-14 | 1 | -1/+2 |
* | i965: Adapt SSBOs to work with their own separate index space | Iago Toral Quiroga | 2015-10-14 | 5 | -69/+71 |
* | mesa: Rename {Num}UniformBlocks to {Num}BufferInterfaceBlocks | Iago Toral Quiroga | 2015-10-14 | 2 | -7/+7 |
* | nir: split SSBO min/max atomic instrinsics into signed/unsigned versions | Iago Toral Quiroga | 2015-10-14 | 2 | -21/+21 |
* | i965/vec4: fix indentation in vec4_visitor::calculate_live_intervals | Iago Toral Quiroga | 2015-10-14 | 1 | -8/+8 |
* | i965/fs: Fix indentation in fs_live_variables::compute_start_end | Iago Toral Quiroga | 2015-10-14 | 1 | -9/+8 |
* | i965/vs: Simplify fs_visitor's ATTR file. | Kenneth Graunke | 2015-10-12 | 3 | -21/+49 |
* | i965: Fix unsafe pointer when dumping VS/FS IR | Iago Toral Quiroga | 2015-10-12 | 2 | -2/+2 |
* | i965/vec4: Implement b2f and b2i using negation. | Matt Turner | 2015-10-11 | 1 | -7/+1 |
* | i965/gs: Make MAX_GS_INPUT_VERTICES a #define in brw_context.h. | Kenneth Graunke | 2015-10-10 | 3 | -4/+2 |
* | i965/vs: Map scalar VS input locations properly; avoid tons of MOVs. | Kenneth Graunke | 2015-10-10 | 2 | -52/+42 |
* | i965/vs: Fix a subtlety in the nr_attributes == 0 workaround. | Kenneth Graunke | 2015-10-10 | 1 | -5/+7 |
* | i965/vs: Unify URB entry size/read length calculations between backends. | Kenneth Graunke | 2015-10-10 | 4 | -30/+38 |
* | i965/cfg: Fix cfg_t::dump() when a block has no immediate dominator. | Kenneth Graunke | 2015-10-10 | 1 | -1/+5 |
* | i965/gen8: Remove gen<8 checks in gen8 code | Chad Versace | 2015-10-09 | 1 | -4/+4 |
* | i965/gen9: Enable rep clears on gen9 | Chad Versace | 2015-10-09 | 2 | -1/+6 |
* | i965/gen9: Disable MCS for 1x color surfaces | Chad Versace | 2015-10-09 | 1 | -0/+8 |
* | program: remove _mesa_init_*_program wrappers | Marek Olšák | 2015-10-09 | 7 | -16/+13 |
* | i965: Use _mesa_is_image_unit_valid() instead of gl_image_unit::_Valid. | Francisco Jerez | 2015-10-09 | 3 | -6/+10 |
* | i965: Don't tell the hardware about our UAV access. | Francisco Jerez | 2015-10-09 | 6 | -19/+41 |
* | i965/fs: Handle non-const sample number in interpolateAtSample | Neil Roberts | 2015-10-09 | 4 | -43/+130 |