Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-02-16 | svga: disable a debug_printf() call | Brian Paul | |
2011-02-16 | svga: Proper redefine_user_buffer implementation. | José Fonseca | |
Unfortunately still not enough to make GoogleEarth happy. | |||
2011-02-16 | r300g: fix a race between CS and SET_TILING ioctls | Marek Olšák | |
2011-02-16 | r300g: fix blitting NPOT compressed textures | Marek Olšák | |
2011-02-16 | svga: Don't fake DXT compression ability. | José Fonseca | |
2011-02-16 | nvc0: fix blend factor mapping | Christoph Bumiller | |
2011-02-16 | nvc0: fix emit_dfdx,dfdy | Christoph Bumiller | |
2011-02-16 | nvc0: don't swap sources if either value is not in a GPR | Christoph Bumiller | |
The memory / immediate source should already be in the only valid position. | |||
2011-02-16 | nvc0: add missing break statements in constant_operand | Christoph Bumiller | |
2011-02-16 | nvc0: fix clipping and use VIEWPORT instead of SCISSOR | Christoph Bumiller | |
2011-02-16 | nvc0: demagic the clear flags and fix region clears | Christoph Bumiller | |
The CLIP_RECTs always affect dedicated clears, and it's nicer than having to mark the viewport or scissor state dirty after it. | |||
2011-02-16 | nvc0: front stencil mask and func mask methods are swapped | Christoph Bumiller | |
2011-02-16 | nvc0: clone memory values with multiple refs before modifying them | Christoph Bumiller | |
2011-02-16 | nvc0: disable early fragment tests if KIL is used | Christoph Bumiller | |
Early-Z pass raises the occlusion counter. | |||
2011-02-16 | nvc0: force vertex data through FIFO if we need to convert it | Christoph Bumiller | |
We may want to put the converted vertex buffer in persistent storage instead, but these are rare corner cases. | |||
2011-02-16 | nvc0: use format from the template on surface creation | Christoph Bumiller | |
Fixes piglit/fbo-srgb. | |||
2011-02-16 | nvc0: update the set of formats supported by the 2D engine | Christoph Bumiller | |
2011-02-16 | nvc0: fix user vertex buffer updates | Christoph Bumiller | |
2011-02-16 | r600g: fix typo in previous s3tc commit | Dave Airlie | |
pointed out by Marek on irc. | |||
2011-02-16 | r300g: fix texture border color for float formats | Marek Olšák | |
2011-02-16 | r600g: add L8A8 SRGB formats. | Dave Airlie | |
this fixes the piglit mipmap generation sRGB on my rv730. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2011-02-16 | r600g: add L4A4 support. | Dave Airlie | |
this fixes piglit fbo-generatemipmap-formats on my rv730. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2011-02-16 | r600g: fix s3tc-texsubimage | Dave Airlie | |
we need to translate the destination box as well. fixes piglit's s3tc-texsubimage test. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2011-02-16 | r300g: disable linear filtering for float textures | Marek Olšák | |
2011-02-16 | r600g: add srgb compressed formats to the list. | Dave Airlie | |
2011-02-15 | gallium: add usage parameter to pipe_buffer_create | Marek Olšák | |
And set a reasonable buffer usage flag everywhere instead of just PIPE_USAGE_DEFAULT. | |||
2011-02-15 | r600g: Fix RGB10_A2 format handling | Fabian Bieler | |
2011-02-15 | r600g: fix regression in r6/7xx since mipmap rework | Dave Airlie | |
I typod this when copy-pasting. | |||
2011-02-15 | nvc0: Fix uninitialized variable warning. | Vinson Lee | |
Fixes this GCC warning. nvc0_tgsi_to_nc.c: In function 'bld_tex': nvc0_tgsi_to_nc.c:1392: warning: 'dim' may be used uninitialized in this function | |||
2011-02-15 | r300g: offload the CS ioctl to another thread | Marek Olšák | |
This is a multi-threading optimization which hides the kernel overhead behind a thread. It improves performance in CPU-limited apps by 2-15%. Of course you must have at least 2 cores for it to make any difference. It can be disabled with: export RADEON_THREAD=0 | |||
2011-02-15 | r600g: add support for s3tc formats. | Dave Airlie | |
On r600, s3tc formats require a 1D tiled texture format, so we have to do uploads using a blit, via the 64-bit and 128-bit formats Based on the r600c code we use a 64 and 128-bit type to do the blits. Still requires R600_ENABLE_S3TC until the kernel fixes are in, this has only been tested on evergreen where the kernel doesn't yet get in the way. | |||
2011-02-15 | r600g: fix miptree calculations | Dave Airlie | |
the miptree setup and pitch storing didn't work so well for block based things like compressed textures. The CB takes blocks, where the texture sampler takes pixels, and transfers need bytes, So now we store blocks/bytes and translate to pixels in the sampler. This is necessary for s3tc to work properly. | |||
2011-02-15 | r600g: drop tiled flag | Dave Airlie | |
we can work this out from the array_mode and it makes more sense to do that. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2011-02-15 | r300g: implement fences using dummy relocations | Marek Olšák | |
So finally we have them. | |||
2011-02-15 | r300g: fix SIGFPE on debug builds | Marek Olšák | |
2011-02-15 | r300g: inline some of the pipe_buffer_map/unmap calls | Marek Olšák | |
2011-02-14 | r300g: do not track whether occlusion queries have been flushed | Marek Olšák | |
The winsys takes care of flushing automatically. | |||
2011-02-14 | gallium: notify drivers about possible changes in user buffer contents | Marek Olšák | |
Also implement the redefine_user_buffer hook in the drivers. | |||
2011-02-14 | gallium: remove pipe_vertex_buffer::max_index | Marek Olšák | |
This is redundant to pipe_draw_info::max_index and doesn't really fit in the optimizations I plan. | |||
2011-02-14 | r300g: Remove redundant initialization. | Vinson Lee | |
Remove redundant initialization from commit 3b01b52bd78e3d2fc857feacebd815a5fae00c94 noticed by tstellar. | |||
2011-02-14 | r600g: add alignment cases for linear aligned | Alex Deucher | |
Matches the drm and ddx. Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2011-02-14 | svga: Set the appropriate flags when creating sampler/surface views. | José Fonseca | |
2011-02-14 | r300g: put indices in CS if there's just a few of them and are in user memory | Marek Olšák | |
2011-02-14 | r300g: cleanup the draw functions | Marek Olšák | |
2011-02-14 | r300g: do not create a user buffer struct for misaligned ushort indices fallback | Marek Olšák | |
2011-02-14 | r300g: fix fallback for misaligned ushort indices with num vertices >= 65535 | Marek Olšák | |
2011-02-14 | r300g: consolidate emission of common draw regs | Marek Olšák | |
2011-02-14 | r300g: Move declaration before code. | Vinson Lee | |
Fixes SCons build. | |||
2011-02-14 | r600g: do not destroy the original index buffer when translating indices | Marek Olšák | |
Because we only translate a subrange of the buffer. | |||
2011-02-14 | r300g: emit 3D_LOAD_VBPNTR only when necessary | Marek Olšák | |
I thought I couldn't skip emitting this packet in some cases. Well it looks like I can. |