summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-03-15i965: Do our lowering passes before the loop of optimization.Eric Anholt1-10/+8
The optimization loop won't reinsert noise instructions or quadop vectors, so we were traversing the tree for nothing. Lowering vector indexing was in the loop after do_common_optimization() to avoid the work if it ended up that the index was actually constant, but that has been called already in the core.
2011-03-15glsl: Skip processing the first function's body in do_dead_functions().Eric Anholt1-1/+10
It can't call anything, so there's no point.
2011-03-15glsl: Whitespace fixup in opt_dead_functions.cpp.Eric Anholt1-106/+108
2011-03-15glsl: Skip processing of expression trees in discard simplification.Eric Anholt1-0/+10
It only cares about "if", "loop", and "discard".
2011-03-15glsl: Reduce processing of expression trees in do_structure_splitting.Eric Anholt1-0/+6
Most of the time we don't have a non-uniform struct variable in the shader, so this cuts the time spent in do_structure_splitting during glean texCombine by about 2/3.
2011-03-15glsl: Skip processing expression trees in do_if_simplification().Eric Anholt1-0/+10
Reduces time spent in this during glean texCombine by about 2/3.
2011-03-15glsl: Skip processing expression trees in optimize_redundant_jumps()Eric Anholt1-0/+9
Cuts the time spent in this function during glean texCombine by 2/3.
2011-03-15svga: Tell the host to discard when doing writes without FLUSH_EXPLICIT.José Fonseca1-3/+10
2011-03-15svga: Update svga_winsys_screen::buffer_map comments.José Fonseca1-2/+2
2011-03-15svga: Ensure DMA commands are serialized with unsynchronized flag is unset.José Fonseca3-19/+113
2011-03-15scons: copy hash_table.c, symbol_table.c to glsl directoryJose Fonseca1-2/+7
This fixes an issue where the .obj files wound up in the src/ directory rather than the build/ directory. That prevented combined 32-bit and 64-bit builds from working. Signed-off-by: Brian Paul <brianp@vmware.com>
2011-03-15mesa: fix scons buildMarek Olšák1-1/+1
2011-03-15r300g: implement the texture barrierMarek Olšák1-0/+10
2011-03-15gallium: add texture barrier support to the interface and st/mesa (v2)Marek Olšák8-0/+120
v2: change the gallium entry point to texture_barrier.
2011-03-15mesa: add display list support for NV_texture_barrierMarek Olšák1-0/+22
2011-03-15mesa: regenerate glapi filesMarek Olšák11-2431/+2500
Be sure to type "make clean" after this commit, otherwise your binaries will segfault.
2011-03-15mesa: add NV_texture_barrierMarek Olšák12-0/+130
2011-03-15gallium/util: Use PIPE_TRANSFER_DISCARD_RANGE in pipe_buffer_write.Mathias Fröhlich1-0/+2
Additionally, to discarding the whole buffer, use PIPE_TRANSFER_DISCARD_RANGE in pipe_buffer_write when the write covers only part of the buffer. Signed-off-by: Mathias Fröhlich <Mathias.Froehlich@web.de>
2011-03-15st/mesa: Make use of the new PIPE_TRANSFER_DISCARD_* for buffer object.Mathias Fröhlich1-5/+9
In memory mapping buffer objects make use of PIPE_TRANSFER_DISCARD_WHOLE_RESOURCE and PIPE_TRANSFER_DISCARD_RANGE when appropriate. Signed-off-by: Mathias Fröhlich <Mathias.Froehlich@web.de>
2011-03-15glx: add ARB_create_context functions/ops to glx xmlDave Airlie1-0/+14
2011-03-15r600g: FLT_TO_INT_FLOOR and FLT_TO_INT_RPI are vector-only instructions on ↵Henri Verbeet1-3/+6
Evergreen. Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
2011-03-14r600g: fix logic error in 028987c80362eddd39176628486a456b076f0427Alex Deucher1-1/+1
Spotted by Henri on IRC. Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
2011-03-14r600g: don't set per-MRT blend bits on R600Alex Deucher1-5/+10
It doesn't support them. Also, we shouldn't be emitting CB_BLENDx_CONTROL on R600 as the regs don't exist there, but I'm not sure of the best way to deal with this in the current r600 winsys. Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
2011-03-14r600g: Original R600 does not support per-MRT blendsAlex Deucher1-2/+11
Only rv6xx+ support them. Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
2011-03-14r600g: emit SURFACE_BASE_UPDATE packet on rv6xxAlex Deucher2-2/+25
This packet is required when updating the DB, CB, or STRMOUT base addresses on rv6xx for the surface sync logic to work correctly. Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
2011-03-14r600g: Properly update MULTIWRITE_ENABLE in r600_pipe_shader_ps().Henri Verbeet2-8/+7
This sort of worked because blend state setup cleared MULTIWRITE_ENABLE again, but that's not something we want to depend on. Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
2011-03-14r600g: Fix the DB_SHADER_CONTROL mask in create_ds_state().Henri Verbeet2-10/+8
Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
2011-03-14r600g: Properly update DB_SHADER_CONTROL in evergreen_pipe_shader_ps().Henri Verbeet1-18/+14
Disable Z_EXPORT / STENCIL_EXPORT / KILL_ENABLE again if a shader doesn't use those. This is similar to 0a6f09a76a416b8672e149c520aa5bef33174223. Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
2011-03-14r600g: Move fetch shader register setup to r600_state.c / evergreen_state.c.Henri Verbeet6-31/+32
Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
2011-03-14r600g: Move r600_pipe_shader_ps() to r600_state.c.Henri Verbeet3-95/+97
Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
2011-03-14r600g: Move r600_pipe_shader_vs() to r600_state.c.Henri Verbeet3-49/+49
The idea behind this is that anything touching registers should be in r600_state.c or evergreen_state.c. This is also consistent with evergreen_pipe_shader_vs(). Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
2011-03-14r600g: Evergreen add support for log opcode.Rafael Monica1-1/+1
Signed-off-by: Henri Verbeet <hverbeet@gmail.com>
2011-03-14autoconf/make: Don't specify individual llvm libraries.José Fonseca2-4/+4
We need more and more of these, and it is difficult and prone to version incompatability issues trying to single out every one of them. This mimicks what was done in SCons.
2011-03-14i965: Enable texture lookups whose return type is 'float'Kenneth Graunke1-1/+4
This enables the new shadow texture functions in GLSL 1.30. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Chad Versace <chad.versace@intel.com>
2011-03-14i965: Fix tex_swizzle when depth mode is GL_REDChad Versace1-1/+2
Change swizzle from (x000) to (x001). Signed-off-by: Chad Versace <chad.versace@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2011-03-14i965: Remove dead assignmentChad Versace1-2/+0
The assignment on line 368, `tex_swizzles[i] = SWIZZLE_NOOP`, is rendered dead by the reassignment on line 392. Signed-off-by: Chad Versace <chad.versace@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2011-03-14glsl: Explicitly specify a type when reading/printing ir_texture.Kenneth Graunke5-33/+42
This is necessary for GLSL 1.30+ shadow sampling functions, which return a single float rather than splatting the value to a vec4 based on GL_DEPTH_TEXTURE_MODE.
2011-03-14texture_builtins.py: Add support for 130-style Shadow sampler variants.Kenneth Graunke1-1/+53
2011-03-14mesa: rename _mesa_texstore_a8 -> _mesa_texstore_unorm8Marek Olšák1-6/+6
It's a generic function capable of storing A8, L8, I8, R8.
2011-03-14mesa: fix up assertion in _mesa_source_buffer_existsMarek Olšák1-0/+2
This was probably missed when implementing luminance and luminance alpha render targets. _mesa_get_format_bits checks for both GL_*_BITS and GL_TEXTURE_*_SIZE. This fixes: main/framebuffer.c:892: _mesa_source_buffer_exists: Assertion `....' failed.
2011-03-14r300g: clamp after blending for fixed-point formats onlyMarek Olšák3-14/+36
2011-03-14glx: the server still needs __GLXcontext.Dave Airlie1-2/+2
This file generates code for the X server and it still uses the __GLXcontext structure name. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-03-14ir_to_mesa: do not check the number of uniforms against hw limitsMarek Olšák1-5/+3
The r300 compiler can eliminate unused uniforms and remap uniform locations if their number surpasses hardware limits, so the limit is actually NumParameters + NumUnusedParameters. This is important for some apps under Wine to run. Wine sometimes declares a uniform array of 256 vec4's and some Wine-specific constants on top of that, so in total there is more uniforms than r300 can handle. This was the main motivation for implementing the elimination of unused constants. We should allow drivers to implement fail & recovery paths where it makes sense, so giving up too early especially when comes to uniforms is not so good idea, though I agree there should be some hard limit for all drivers. This patch fixes: - glsl-fs-uniform-array-5 - glsl-vs-large-uniform-array on drivers which can eliminate unused uniforms.
2011-03-14autoconf/llvm: fix build for disassemblerDave Airlie1-1/+1
tested by okias on irc
2011-03-13gallivm: Fix build with llvm 2.6 on 32bit platformsJosé Fonseca1-2/+4
2011-03-13gallivm: Use LLVM MC disassembler, instead of udis86.José Fonseca12-281/+372
Included in LLVM 2.7+. Unlink udis86, should support all instructions that LLVM can emit.
2011-03-13util: Silence gcc unitialized member warningJosé Fonseca1-0/+1
2011-03-13draw: Fix draw_variant_output::format's type.José Fonseca2-3/+4
2011-03-13nv50,nvc0: don't assert on cso with 0 vertex elementsChristoph Bumiller3-6/+2
2011-03-13rbug: Use the call mutexJakob Bornecrantz1-19/+187
Fixes crashes in [soft|llvm]pipe when replacing shaders