summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r300
Commit message (Collapse)AuthorAgeFilesLines
* winsys/radeon: hook up the new DRM_RADEON_GEM_WAIT ioctlMarek Olšák2011-08-162-4/+4
| | | | Reviewed-by: Alex Deucher <[email protected]>
* r600g: set the flush callback in radeon_winsysMarek Olšák2011-08-161-1/+1
| | | | | | I have also renamed the winsys function. Reviewed-by: Alex Deucher <[email protected]>
* r300g: silence some warnings about uninitialized variablesBrian Paul2011-08-093-6/+8
|
* winsys/radeon: fix space checkingMarek Olšák2011-08-051-2/+1
| | | | | | | We should remove the relocations which caused a validation failure from the list, so that the kernel receives only the validated ones. NOTE: This is a candidate for the 7.11 branch.
* r300g: handle new CAPsMarek Olšák2011-08-051-9/+4
|
* r300g: adapt to the resource_resolve interface changeMarek Olšák2011-08-051-21/+22
|
* Merge branch 'glsl-to-tgsi'Bryan Cain2011-08-041-0/+2
|\ | | | | | | | | | | Conflicts: src/mesa/state_tracker/st_atom_pixeltransfer.c src/mesa/state_tracker/st_program.c
| * gallium: add PIPE_SHADER_CAP_INTEGERSBryan Cain2011-08-011-0/+2
| |
* | gallium/util: add functions for manipulating swizzlesMarek Olšák2011-08-024-36/+5
| | | | | | | | Some of those have been in drivers already.
* | r300g: copy the compiler from r300cMarek Olšák2011-07-2669-25/+17038
| | | | | | | | | | | | | | | | What a beast. r300g doesn't depend on files from r300c anymore, so r300c is now left to its own fate. BTW 'make test' can be invoked from the gallium/r300 directory to run some compiler unit tests.
* | winsys/radeon: remove usage parameter from buffer_createMarek Olšák2011-07-254-6/+3
| |
* | winsys/radeon: add R300 infix to winsys feature namesMarek Olšák2011-07-253-3/+3
| |
* | winsys/radeon: simplify how value queries workMarek Olšák2011-07-258-43/+32
| | | | | | | | | | This drops the get_value query and adds a function query_info, which returns all the values in one nice structure.
* | [g3dvl] add some more PIPE_VIDEO_CAPsChristian König2011-07-121-6/+12
| |
* | [g3dvl] and finally remove pipe_video_contextChristian König2011-07-082-10/+2
| |
* | [g3dvl] move video buffer creation out of video contextChristian König2011-07-081-0/+3
| |
* | [g3dvl] remove the unused priv member from pipe_video_contextChristian König2011-07-081-1/+1
| |
* | [g3dvl] make pipe_context mandatory for creation pipe_video_contextChristian König2011-07-084-70/+9
| |
* | [g3dvl] rename is_format_supported to is_video_format_supported and move it ↵Christian König2011-07-081-0/+2
| | | | | | | | into screen object
* | [g3dvl] rename get_param to get_video_param and move into screen objectChristian König2011-07-072-1/+14
| |
* | Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-07-045-144/+126
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configure.ac src/gallium/drivers/r600/r600_state_inlines.h src/gallium/tests/trivial/Makefile src/gallium/winsys/g3dvl/dri/XF86dri.c src/gallium/winsys/g3dvl/dri/driclient.c src/gallium/winsys/g3dvl/dri/driclient.h src/gallium/winsys/g3dvl/dri/xf86dri.h src/gallium/winsys/g3dvl/dri/xf86dristr.h src/gallium/winsys/r600/drm/r600_bo.c
| * | r300g: drop support for ARGB, ABGR, XRGB, XBGR render targetsMarek Olšák2011-06-251-21/+0
| | | | | | | | | | | | | | | | | | | | | | | | Blending and maybe even alpha-test don't work with those formats. Only supporting RGBA, BGRA, RGBX, BGRX. NOTE: This is a candidate for the 7.10 and 7.11 branches.
| * | u_vbuf_mgr: make u_vbuf_mgr_draw_begin return flags in a bitmaskMarek Olšák2011-06-191-4/+1
| | |
| * | r300g: rename AOS -> VARRAYSMarek Olšák2011-06-181-17/+17
| | |
| * | r300g: fix handling PREP_* optionsMarek Olšák2011-06-181-31/+32
| |/ | | | | | | | | | | This should fix rendering >65532 vertices using draw_arrays on r300-r400. NOTE: This is a candidate for the 7.10 branch.
| * r300g: max_anisotropy of 1 is not anisotropic filteringMarek Olšák2011-06-111-1/+1
| |
| * r300g: fix texturing with non-3D textures and wrap R mode set to sample borderMarek Olšák2011-06-091-0/+6
| | | | | | | | | | | | | | | | | | | | If the wrap R (3rd) mode is set to CLAMP or CLAMP_TO_BORDER and the texture isn't 3D, r300 always samples the border color regardless of texture coordinates. I HATE THIS HARDWARE. NOTE: This is a candidate for the 7.10 branch.
| * r300g: don't enable aniso with nearest filteringMarek Olšák2011-06-091-41/+39
| |
| * r300g: fix draw_vbo splitting on r3xx-r4xxMarek Olšák2011-06-091-5/+10
| | | | | | | | NOTE: This is a candidate for the 7.10 branch.
| * r300g: make translate_primitive table-drivenMarek Olšák2011-06-091-24/+20
| |
* | Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-06-095-393/+108
|\| | | | | | | | | | | Conflicts: src/gallium/tests/unit/u_format_test.c src/gallium/winsys/r600/drm/r600_hw_context.c
| * gallium: s/bool/boolean/Brian Paul2011-06-081-1/+1
| |
| * r300g: consolidate deducing chipset infoMarek Olšák2011-06-074-392/+107
| | | | | | | | Use the new PCI ID table, make it simpler.
* | Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-06-059-95/+100
|\|
| * r300g: remove unused debug option DBG_UPLOADMarek Olšák2011-06-012-15/+11
| | | | | | | | And renumber the options.
| * r300g: set squared microtiling for the dummy zbufferMarek Olšák2011-05-311-1/+1
| | | | | | | | The pitch of 4 is allowed for squared microtiling only.
| * r300g: log when getting unsupported texture formatMarek Olšák2011-05-311-4/+14
| |
| * r300g: clear can be killed by render conditionMarek Olšák2011-05-293-7/+35
| | | | | | | | | | Fixes piglit: - NV_conditional_render/clear
| * r300g: fix occlusion queries when depth test is disabled or zbuffer is missingMarek Olšák2011-05-292-6/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From now on, depth test is always enabled in hardware. If depth test is disabled in Gallium, the hardware Z function is set to ALWAYS. If there is no zbuffer set, the colorbuffer0 memory is set as a zbuffer to silence the CS checker. This fixes piglit: - occlusion-query-discard - NV_conditional_render/bitmap - NV_conditional_render/drawpixels - NV_conditional_render/vertex_array
| * r300g: cleanup render_condition a bitMarek Olšák2011-05-291-5/+3
| |
| * r300g: remove fake occlusion queries (debug option)Marek Olšák2011-05-293-58/+7
| |
| * r300g: remove debug option DBG_FALLMarek Olšák2011-05-292-2/+1
| |
| * r300g: print some HyperZ debug infoMarek Olšák2011-05-292-0/+4
| |
* | Revert "Merge remote-tracking branch 'mareko/r300g-draw-instanced' into ↵Christian König2011-06-049-158/+17
| | | | | | | | | | | | | | pipe-video" This reverts commit 10370b752cd793665feec9494e6545a3f04c69f9, reversing changes made to ded2a9a628c58c2c8bfaaf6b8dd213e68de1dd20.
* | Merge remote-tracking branch 'mareko/r300g-draw-instanced' into pipe-videoChristian König2011-06-039-17/+158
|\ \
| * | r300g: implement draw_instanced for HWTCLMarek Olšák2011-04-259-17/+158
| | |
* | | Initial r300g supportChristian König2011-05-294-312/+14
| | | | | | | | | | | | | | | | | | Based uppon a patch from Pali Rohár <[email protected]>. This seems to get at least YUV->RGB conversion working. So a simple "mplayer -vo vdpau" now seems to work fine.
* | | Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-05-158-121/+192
|\ \ \ | | |/ | |/|
| * | r300g: HiZ fixesMarek Olšák2011-05-151-24/+24
| | | | | | | | | | | | | | | | | | | | | Nothing special, just changing conditions for when HiZ can be enabled and when HiZ memory becomes invalid. I was thinking about it again and realized it had not been quite right.
| * | r300g: don't set other HyperZ states if depth and stencil tests are disabledMarek Olšák2011-05-151-14/+27
| | | | | | | | | | | | Such as HiZ.