Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | r300g/winsys: rename r300->radeon and do a little cleanup | Marek Olšák | 2011-04-18 | 22 | -439/+117 |
| | | | | | Renaming a few files, types, and functions. Also make the winsys independent of r300g. | ||||
* | r300g: disable ARB_draw_instanced on SWTCL chipsets. | Marek Olšák | 2011-04-18 | 1 | -1/+1 |
| | | | | This fixes Unigine Heaven. | ||||
* | gallium: add and use generic function for querying patented format support (v2) | Marek Olšák | 2011-04-15 | 2 | -19/+3 |
| | | | | v2: Unsigned floats are allowed regardless of the configure switch. | ||||
* | r300g: enable A/L/LA/I float render targets | Marek Olšák | 2011-04-15 | 1 | -14/+14 |
| | |||||
* | Revert "r300g: handle DISCARD_WHOLE_RESOURCE for buffers" | Marek Olšák | 2011-04-08 | 1 | -25/+10 |
| | | | | | | | | | | | | | This reverts commit 437c748bf5072d2bded77a00c74c51cdb8b510e5. The commit is wrong for several reasons. One of them is when we grab a new buffer, we should update all the states it is bound in, including all parallel contexts. I don't think this is even doable. The correct solution would be upload data via a temporary buffer and do resource_copy_region to the original one. https://bugs.freedesktop.org/show_bug.cgi?id=36088 | ||||
* | r300g: fix another crash with hyperz | Marek Olšák | 2011-04-08 | 2 | -22/+2 |
| | | | | https://bugs.freedesktop.org/show_bug.cgi?id=36086 | ||||
* | r300g: emit US_FORMAT on R520 only | Marek Olšák | 2011-04-08 | 2 | -2/+2 |
| | |||||
* | r300g: fix crash with hyperz | Marek Olšák | 2011-04-08 | 1 | -6/+4 |
| | | | | r300_update_hyperz_state is no longer required to be called here. | ||||
* | r300g: Properly take the sampler view's first_level into account when sampling. | Henri Verbeet | 2011-04-08 | 1 | -15/+21 |
| | | | | | Signed-off-by: Brian Paul <[email protected]> Signed-off-by: Marek Olšák <[email protected]> | ||||
* | r300g: do not advertise R16F and RG16F on DRM < 2.8.0 | Marek Olšák | 2011-04-08 | 1 | -2/+5 |
| | |||||
* | r300g: fix texturing with sizes > 2048 on r500 | Marek Olšák | 2011-04-08 | 7 | -8/+52 |
| | |||||
* | r300g: postpone fragment shader state validation until draw_vbo | Marek Olšák | 2011-04-05 | 4 | -22/+52 |
| | |||||
* | r300g: fix RG/LATC1_SNORM by doing UNORM->SNORM conversion in the shader | Marek Olšák | 2011-04-05 | 4 | -30/+63 |
| | |||||
* | r300/compiler: implement the CND opcode | Marek Olšák | 2011-04-05 | 1 | -2/+1 |
| | | | | No one uses it now, but I will need it for a lowering pass. | ||||
* | r300g: tell the GLSL compiler to lower the continue opcode | Marek Olšák | 2011-04-03 | 1 | -2/+2 |
| | | | | NOTE: This is a candidate for the stable branches. | ||||
* | r300g: handle DISCARD_WHOLE_RESOURCE for buffers | Marek Olšák | 2011-04-03 | 1 | -10/+25 |
| | |||||
* | gallium: set PIPE_CAP_MIXED_COLORBUFFER_FORMATS in some drivers | Marek Olšák | 2011-04-01 | 1 | -0/+2 |
| | |||||
* | r300g: add support for all render targets with one and two channels | Marek Olšák | 2011-03-29 | 1 | -30/+130 |
| | | | | | | | | | | | | | | | The hardware should be set according to this table: FORMAT -> R300 COLORFORMAT ------------------------- X16 -> UV88 X16Y16 -> ARGB8888 X32 -> ARGB8888 X32Y32 -> ARGB16161616 US_OUT_FMT must contain the real format. I wasn't able to make B3G3R2 and L4A4 work, but those aren't important. | ||||
* | r300g: finish up signed normalized textures and render targets | Marek Olšák | 2011-03-29 | 2 | -28/+46 |
| | |||||
* | r300g: enable clamping controls | Marek Olšák | 2011-03-29 | 4 | -6/+14 |
| | |||||
* | r300g: fix alpha-test with no colorbuffer | Marek Olšák | 2011-03-24 | 1 | -0/+5 |
| | | | | | | | Piglit: - fbo-alphatest-nocolor NOTE: This is a candidate for the stable branches. | ||||
* | r300g: implement the texture barrier | Marek Olšák | 2011-03-15 | 1 | -0/+10 |
| | |||||
* | r300g: clamp after blending for fixed-point formats only | Marek Olšák | 2011-03-14 | 3 | -14/+36 |
| | |||||
* | r300g: implement fragment color clamping in the shader | Marek Olšák | 2011-03-12 | 3 | -0/+10 |
| | | | | | This finishes the implementation of the fragment color clamp control for ARB_color_buffer_float. I don't wanna keep this stuff in a branch... | ||||
* | gallium: remove flags from the flush function | Marek Olšák | 2011-03-11 | 2 | -3/+1 |
| | | | | | | | | | | The drivers have been changed so that they behave as if all of the flags were set. This is already implicit in most hardware drivers and required for multiple contexts. Some state trackers were also abusing the PIPE_FLUSH_RENDER_CACHE flag to decide whether flush_frontbuffer should be called. New flag ST_FLUSH_FRONT has been added to st_api.h as a replacement. | ||||
* | gallium: remove the geom_flags param from is_format_supported | Marek Olšák | 2011-03-11 | 2 | -4/+3 |
| | |||||
* | gallium: cleanup fence_signalled and fence_finish | Marek Olšák | 2011-03-11 | 1 | -11/+9 |
| | | | | So that they don't have the driver-specific param and return type. | ||||
* | gallium: kill is_resource_referenced | Marek Olšák | 2011-03-11 | 4 | -28/+0 |
| | | | | Only st/xorg used it and even incorrectly with regards to pipelined transfers. | ||||
* | r300g: fix alignement for NPOT values in hyperz setup | Nicolas Peninguy | 2011-03-11 | 1 | -3/+3 |
| | | | | | | | With 3 pipes cards we need to align with NPOT values. This fixes: https://bugs.freedesktop.org/show_bug.cgi?id=32945 Signed-off-by: Nicolas Peninguy <[email protected]> | ||||
* | r300g: handle timeout parameter in fence_finish | Marek Olšák | 2011-03-08 | 1 | -0/+17 |
| | |||||
* | gallium: add timeout parameter to fence_finish | Marek Olšák | 2011-03-08 | 1 | -1/+2 |
| | | | | | This is a follow-up to the ARB_sync patch for st/mesa and completes the ARB_sync implementation. | ||||
* | r300g: add LATC support | Marek Olšák | 2011-03-08 | 3 | -4/+22 |
| | |||||
* | r300g: decide whether a flush should be asynchronous when calling it | Marek Olšák | 2011-03-08 | 8 | -38/+37 |
| | | | | Thread offloading is not sometimes desirable, e.g. when mapping a buffer. | ||||
* | r300g: use pipelined transfers for RGTC textures | Marek Olšák | 2011-03-08 | 1 | -1/+2 |
| | |||||
* | r300g/swtcl: advertise draw_instanced and primitive_restart | Marek Olšák | 2011-03-05 | 1 | -2/+5 |
| | |||||
* | r300g: implement instanced arrays | Marek Olšák | 2011-03-05 | 5 | -48/+132 |
| | |||||
* | gallium: split CAP_INSTANCE_DRAWING into INSTANCEID and INSTANCE_DIVISOR | Marek Olšák | 2011-03-05 | 1 | -1/+2 |
| | | | | | | | | ARB_instanced_arrays is a subset of D3D9. ARB_draw_instanced is a subset of D3D10. The point of this change is to allow D3D9-level drivers to enable ARB_instanced_arrays without ARB_draw_instanced. | ||||
* | r300g: cleanup parameters of draw functions | Marek Olšák | 2011-03-05 | 3 | -108/+113 |
| | |||||
* | r300g: preliminary implementation of clamping controls | Marek Olšák | 2011-03-04 | 4 | -22/+33 |
| | |||||
* | r300g: implement FP16 alpha test | Marek Olšák | 2011-03-04 | 4 | -8/+55 |
| | |||||
* | r300g: implement blending for some of non-RGBA8 formats | Marek Olšák | 2011-03-04 | 2 | -7/+52 |
| | | | | | | | | | | | | | | | | Blending is now fully supported with: - R8_UNORM - R8G8_UNORM - B8G8R8A8_UNORM - R16G16B16A16_FLOAT (r500-only) Blending is partially supported (DST_ALPHA not working) with: - L8A8_UNORM - I8_UNORM - B5G5R5A1_UNORM - B10G10R10A2_UNORM The other formats can't do blending. | ||||
* | r300g: require DRM 2.3.0 (kernel 2.6.34) | Marek Olšák | 2011-03-02 | 10 | -102/+60 |
| | | | | Running any older kernel is not recommended anyway. | ||||
* | r300g: Silence 'control reaches end of non-void function' warning. | Vinson Lee | 2011-03-02 | 1 | -0/+4 |
| | | | | | | Fixes this GCC warning. r300_hyperz.c: In function 'r300_get_hiz_func': r300_hyperz.c:65: warning: control reaches end of non-void function | ||||
* | r300g: accelerate resoure_copy_region for rgtc | Marek Olšák | 2011-03-02 | 1 | -1/+2 |
| | |||||
* | r300g: initialize some r500 PS3 regs | Marek Olšák | 2011-03-01 | 3 | -5/+18 |
| | |||||
* | r300g: document some more DRM 2.8.0 features | Marek Olšák | 2011-03-01 | 1 | -1/+1 |
| | |||||
* | r300g: fix RGTC2_SNORM | Marek Olšák | 2011-03-01 | 2 | -1/+4 |
| | | | | ATI engineers have probably chosen those sign bits by a dice roll. | ||||
* | r300g: reorder parts of translate_texformat | Marek Olšák | 2011-03-01 | 1 | -14/+14 |
| | |||||
* | r300g: fix RGTC1_UNORM and RGTC2_UNORM | Marek Olšák | 2011-03-01 | 2 | -10/+27 |
| | | | | Signs don't work the way I'd like... | ||||
* | r300g: set the correct HiZ clear value | Marek Olšák | 2011-03-01 | 4 | -3/+12 |
| |