Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-27 | radeon: Add r6xx/r7xx chip family to get_chip_family_name | Pauli Nieminen | |
This fixes problem that glxinfo was reporting r600+ cards as unknown. Signed-off-by: Pauli Nieminen <suokkos@gmail.com> | |||
2009-07-27 | nouveau: swizzle a single row or column, doing it one pixel at a time | Patrice Mandin | |
2009-07-27 | r600: fix textures | Alex Deucher | |
We weren't allocating enough gprs for the fragment shader in some cases. There are likely other issues that still need to be sorted out for textures, but at least they now work. | |||
2009-07-27 | r600: don't draw when num indices is 0 | Alex Deucher | |
fixes engine demo | |||
2009-07-27 | r600: set VGT NUM_INSTANCES as part of the draw command | Alex Deucher | |
set VGT NUM_INSTANCES as part of the draw command rather than as state as recommended by the pm4 guide. Also, use the NUM_INSTANCES packet. | |||
2009-07-27 | r600: Use R600_SCRATCH_REG_OFFSET rather than RADEON_SCRATCH_REG_OFFSET | Alex Deucher | |
noticed by vehemens on IRC. | |||
2009-07-27 | r600: switch vtx resource setup to use SETfield macros | Alex Deucher | |
For consistency | |||
2009-07-27 | r600: switch tex code to use SETfield macros | Alex Deucher | |
for consistency with the rest of the code. | |||
2009-07-26 | r300g: Fix two trivial texture size issues. | Corbin Simpson | |
Next thing to fix: progs/tests/mipgen. | |||
2009-07-26 | radeon-gallium: If BO allocation fails, return NULL. | Corbin Simpson | |
2009-07-26 | r300g: Add some debugging, correct little bits of math in texture setup. | Corbin Simpson | |
Simple stuff still works, but not sure about some of the more complex things. | |||
2009-07-26 | nouveau: only swizzle square textures for copy | Patrice Mandin | |
2009-07-26 | nouveau: Take into account destination position for copy_swizzle, need to ↵ | Patrice Mandin | |
split copy a bit more | |||
2009-07-26 | nouveau: Recursively swizzle an NPOT sized copy | Patrice Mandin | |
2009-07-24 | nouveau: use nv04_surface_copy_swizzle only for POT sizes | Patrice Mandin | |
2009-07-24 | radeon-gallium: remove old getparam ioctl | Joakim Sindholt | |
2009-07-23 | r600: fix segfault in morph3d | Alex Deucher | |
These attributes still need work, but it shouldn't hurt to enable them. | |||
2009-07-23 | draw: correct address for machine struct in llvm path | Keith Whitwell | |
This changed after a recent commit. | |||
2009-07-23 | gallivm: updates for TGSI changes | Keith Whitwell | |
make linux-llvm succeeds, but doesn't seem to be working, at least with llvm 2.5 | |||
2009-07-23 | r300g, radeon-gallium: Fix API, cleanup. | Corbin Simpson | |
Something called "validate" should return FALSE on failure, not TRUE. | |||
2009-07-23 | radeon-gallium: Build fixes wrt changed libdrm_radeon space check API | Nicolai Hähnle | |
Had to be hacked up a bit to apply to master. Sorry 'bout that. :3 | |||
2009-07-23 | r300g: PIPE_CAP_BLEND_EQUATION_SEPARATE. | Corbin Simpson | |
2009-07-23 | gallium: clean up opcode definitions | Keith Whitwell | |
Remove commented-out opcodes. Remove information about API mappings to opcodes, but add a reference to tgsi-instruction-set.txt where that information is better presented. | |||
2009-07-23 | gallium: remove deprecated TGSI opcodes | Keith Whitwell | |
Various opcodes which can be implemented trivially with other TGSI opcodes, such as matrix multiplication and negation. These were not used by any state tracker or implemented by any of the drivers. | |||
2009-07-23 | r600: Remove CRLF line endings. | José Fonseca | |
2009-07-23 | util: Add support for Mac OS. | Vinson Lee | |
2009-07-23 | r300g: Actually mark shaders as translated/untranslated. | Corbin Simpson | |
Also trust that Gallium will not give us TGSI that miscounts shader consts. This creates a 20x speedup on glxgears, from 8 FPS to 160 FPS. | |||
2009-07-22 | cell: update TGSI_OPCODE_ cases | Brian Paul | |
2009-07-23 | gallium: Fix PPC build. | Michel Dänzer | |
2009-07-22 | nouveau: nv30: wrong variable for format | Patrice Mandin | |
2009-07-22 | r300: fix address register handling in NQSSADCE | Maciej Cencora | |
For address register we always use X component | |||
2009-07-22 | nouveau: Take into account sx,sy parameters to read from source surface | Patrice Mandin | |
2009-07-22 | gallium: remove multiple aliases for TGSI opcodes | Keith Whitwell | |
This is a source of ongoing confusion. TGSI has multiple names for opcodes where the same semantics originate in multiple shader APIs. For instance, TGSI includes both Mesa/GLSL and DX/SM30 names for opcodes with the same semantics, but aliases those names to the same underlying opcode number. This makes it very difficult to visually inspect two sets of opcodes (eg in state tracker & driver) and check if they implement the same functionality. This patch arbitarily rips out the versions of the opcodes not currently favoured by the mesa state tracker and leaves us with a single name for each distinct operation. | |||
2009-07-22 | gallium: simplify tgsi_full_immediate struct | Keith Whitwell | |
Remove the need to have a pointer in this struct by just including the immediate data inline. Having a pointer in the struct introduces complications like needing to alloc/free the data pointed to, uncertainty about who owns the data, etc. There doesn't seem to be a need for it, and it is unlikely to make much difference plus or minus to performance. Added some asserts as we now will trip up on immediates with more than four elements. There were actually already quite a few such asserts, but the >4 case could be used in the future to specify indexable immediate ranges, such as lookup tables. | |||
2009-07-21 | r600: fix dst reg indexing for real | Richard Li | |
This fixes segfaults in apps like teapot and tunnel | |||
2009-07-21 | Revert "r600: fix dst reg indexing" | Alex Deucher | |
This reverts commit cc893d9a98255d3c26df7123ba5cc02e478c9328. Richard has the proper fix. | |||
2009-07-21 | r600: add stencil support | Alex Deucher | |
2009-07-21 | r600: use state functions to set default state | Alex Deucher | |
2009-07-21 | r600: fill in point functions | Alex Deucher | |
2009-07-21 | r600: set provoking vertex to last vertex for OGL | Alex Deucher | |
2009-07-21 | r600: fill in r700UpdateViewportOffset | Alex Deucher | |
2009-07-21 | r600: first pass at polyoffset support | Alex Deucher | |
not working yet | |||
2009-07-21 | radeon: fix colorbuffer pitch emission regarding tiling in KMS/CS case | Jerome Glisse | |
We need to emit a relocation for pitch register so that kernel can check and properly setup tiling on the color buffer. | |||
2009-07-21 | R600: fix up some build problems | Alex Deucher | |
2009-07-21 | r600: add alpha test support | Alex Deucher | |
2009-07-21 | Track Radeon driver symlinks in Git. | Michel Dänzer | |
2009-07-21 | Add missing X11_INCLUDES to egl/drivers/demo and egl/main. | Peter Hutterer | |
Compiling mesa on a system with no X headers installed in the default include paths fails due to missing X11 includes. The header includes are picked up by configure but not applied. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2009-07-20 | i965: Don't clip everything if FRONT_AND_BACK culling while culling disabled. | Eric Anholt | |
Fixes everything-black with meta_clear_tris on quake4-mpdemo and doom3-demo. Bug #18844, 22077. | |||
2009-07-20 | r600: fix typo in blend code | Alex Deucher | |
2009-07-20 | r600: fix dst reg indexing | Kevin DeKorte | |
This fixes segfaults in apps like teapot and tunnel |