Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-15 | r600g: Remove the redundant radeon_new() prototype. | Henri Verbeet | |
2011-01-15 | r600g: Fix some register value name typos. | Henri Verbeet | |
SFR -> SRF. | |||
2011-01-15 | r600g: Get rid of r600_translate_vertex_data_type(). | Henri Verbeet | |
This has been replaced with r600_vertex_data_type(). | |||
2011-01-15 | Merge branch 'draw-instanced' | Brian Paul | |
Conflicts: src/gallium/auxiliary/draw/draw_llvm.c src/gallium/drivers/llvmpipe/lp_state_fs.c src/glsl/ir_set_program_inouts.cpp src/mesa/tnl/t_vb_program.c | |||
2011-01-15 | nvc0: try to swap immediates to first source too | Christoph Bumiller | |
2011-01-15 | nvc0: make sure all sources of the BIND op are distinct | Christoph Bumiller | |
They're supposed to be assigned consecutive registers so they can't contain the same SSA value more than once. | |||
2011-01-15 | nvc0: update user vbufs on each draw call | Christoph Bumiller | |
This is required in case set_vertex_buffers is not called again. | |||
2011-01-15 | nvc0: enable early fragment tests where possible | Christoph Bumiller | |
2011-01-15 | nvc0: upload small buffers through the command buffer | Christoph Bumiller | |
2011-01-15 | targets/egl-static: Assorted cleanups and fixes. | Chia-I Wu | |
Share more code between windows and non-windows platforms. Check env['x11'] for X11 and add env['X11_LIBS'] to LIBS. Add ws_wrapper for i965g. | |||
2011-01-15 | targets/egl: i965 needs libwsw. | Chia-I Wu | |
Fix undefined symbol wrapper_sw_winsys_dewrap_pipe_screen. | |||
2011-01-14 | r600g: compiler helper opcode fixes for evergreen | Alex Deucher | |
Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2011-01-14 | r600g: pass r600_bc to some addition compiler helper functions | Alex Deucher | |
needed for asic specific opcodes Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2011-01-14 | r600g: Disable V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLT_TO_INT_FLOOR case. | Vinson Lee | |
The usage of macro V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLT_TO_INT_FLOOR was introduced by commit 323ef3a1f07ba4333dadebab571ddcd49d95f45c but the macro is undefined. Disable this case to fix the build for now. | |||
2011-01-14 | r600g: add more missing instructions to r600_bc_get_num_operands | Christian König | |
2011-01-13 | r600g: Move declaration before code in r600_asm.c. | Vinson Lee | |
Fixes SCons build. | |||
2011-01-13 | r600g: rework literal handling | Christian König | |
2011-01-13 | r600g: merge alu groups | Christian König | |
2011-01-13 | r600g: implement replacing gpr with pv and ps | Christian König | |
2011-01-13 | r600g: add missing RECIPSQRT_CLAMPED to r600_bc_get_num_operands | Christian König | |
2011-01-13 | r600g: rework bank swizzle code | Christian König | |
2011-01-13 | r600g: fix alu slot assignment | Christian König | |
2011-01-13 | r600g: optimize away CF ALU instructions even if type doesn't match | Christian König | |
2011-01-13 | nvc0: identify POINT_RASTER_RULES, add POINT_SMOOTH state | Christoph Bumiller | |
Point smoothing requires rasterization rules to be set to OGL. Sorry for the extra noise caused by the header update. | |||
2011-01-14 | draw: Fix an off-by-one bug in a vsplit assertion. | Chia-I Wu | |
When use_spoken is true, istart (the first vertex of this segment) is replaced by i0 (the spoken vertex of the fan). There are still icount vertices. Thanks to Brian Paul for spotting this. | |||
2011-01-13 | targets/egl-static: Remove unnecessary header. | Vinson Lee | |
2011-01-13 | r600g: Silence uninitialized variable warnings. | Vinson Lee | |
2011-01-13 | scons: Ensure the OpenVG/EGL import libs are also prefixed with 'lib'. | José Fonseca | |
2011-01-13 | scons: Build libOpenVG.dll & libEGL.dll | José Fonseca | |
But without creating liblibOpenVG or liblibEGL elsewhere. Thanks Chia-I Wu for pointing this out. | |||
2011-01-13 | util: Undo spurious changes in last commit. | José Fonseca | |
2011-01-13 | util: Don't limit debug_printf message length on unices. | José Fonseca | |
2011-01-13 | egl: Improve driver selection. | Chia-I Wu | |
The idea is to be able to match a driver using the following order try egl_gallium with hw renderer try egl_dri2 try egl_gallium with sw renderer try egl_glx given the module list egl_gallium egl_dri2 egl_glx For that, UseFallback initialization option is added. The module list is matched twice: with the option unset and with the option set. In the first pass, egl_gallium skips its sw renderer and egl_glx rejects to initialize since UseFallback is not set. In the second pass, egl_gallium skips its hw renderer and egl_dri2 rejects to initialize since UseFallback is set. The process stops at the first driver that initializes the display. | |||
2011-01-13 | egl: Simplify driver matching. | Chia-I Wu | |
Add initialization options that drv->API.Initialize should support. Replace drv->Probe by TestOnly initialization option and simplify _eglMatchDriver. | |||
2011-01-13 | egl: Cleanup _EGLDisplay initialization. | Chia-I Wu | |
Reorder/rename and document the fields that should be set by the driver during initialization. Drop the major/minor arguments from drv->API.Initialize. | |||
2011-01-13 | nvc0: disable calling of sw methods we don't implement | Ben Skeggs | |
Left in the code as a marker of what NVIDIA do, just in case we need to do this some day. Signed-off-by: Ben Skeggs <bskeggs@redhat.com> | |||
2011-01-13 | nvc0: fix mp_stack_bo relocation | Ben Skeggs | |
Fixes a PT_NOT_PRESENT error cause by: - allocating in VRAM - emitting GART relocs to 0x17bc/0x17c0, moving the buffer - telling the bufmgr that the buffer should be in VRAM when we use it, but not correcting the value sent to 0x17bc/0x17c0. Signed-off-by: Ben Skeggs <bskeggs@redhat.com> | |||
2011-01-12 | noop: change var type to silence warning | Brian Paul | |
2011-01-12 | r600g: also look at tex inst when for maximum gpu count | Christian König | |
2011-01-12 | r600g: implement output modifiers and use them to further optimize LRP | Christian König | |
2011-01-12 | r600g: use special constants for 0, 1, -1, 1.0f, 0.5f etc | Christian König | |
2011-01-12 | r600g: optimize temp register handling for LRP | Christian König | |
2011-01-12 | r600g: optimize away CF_INST_POP | Christian König | |
If last instruction is an CF_INST_ALU we don't need to emit an additional CF_INST_POP for stack clean up after an IF ELSE ENDIF. | |||
2011-01-12 | r600g: make dumping of shaders an option | Christian König | |
2011-01-12 | r600g: fix alu dumping | Christian König | |
2011-01-12 | r600g: improve r600_bc_dump | Christian König | |
2011-01-12 | scons: Update windows build for vgapi->openvg rename. | José Fonseca | |
2011-01-12 | scons: Fix build on systems without libOpenVG.so | José Fonseca | |
2011-01-12 | scons: Updates for targets/egl-static. | Chia-I Wu | |
Update SConscripts to re-enable or add support for EGL on windows and x11 platforms respectively. targets/egl-gdi is replaced by targets/egl-static, where "-static" means pipe drivers and state trackers are linked to statically by egl_gallium, and egl_gallium is a built-in driver of libEGL. There is no more egl_gallium.dll on Windows. | |||
2011-01-12 | targets/egl-static: New EGL target for scons. | Chia-I Wu | |
This target is based on and replaces egl-gdi. It is suitable for both windows and x11. | |||
2011-01-12 | r600g: texture instructions also work fine with TGSI_FILE_INPUT | Christian König | |