Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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-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-09 | nvc0: serialize on PIPE_FLUSH_RENDER_CACHE as well | Christoph Bumiller | |
Effects were easily visible in piglit/fbo-generatemipmap-formats. | |||
2011-02-09 | nvc0: fix stride of NVC0_3D_RT methods | Christoph Bumiller | |
2011-02-09 | nvc0: correct storage type for 16 bit surface formats | Christoph Bumiller | |
2011-02-09 | nvc0: make CSE work for ops with multiple results | Christoph Bumiller | |
2011-02-09 | nvc0: replace branching with predicated insns where feasible | Christoph Bumiller | |
2011-02-09 | nvc0: implement local memory load and store ops | Christoph Bumiller | |
2011-02-09 | nvc0: make sure phi-ops really have one source per in-block | Christoph Bumiller | |
2011-02-09 | nv50,nvc0: do not forget to apply sign mode to saved TGSI inputs | Christoph Bumiller | |
2011-02-09 | nvc0: do not generate a backwards jump if a loop ends with BRK | Christoph Bumiller | |
2011-02-09 | nvc0: store only one value per basic block for TGSI regs | Christoph Bumiller | |
2011-02-09 | nv50,nvc0: fix condition code change when commuting SET sources | Christoph Bumiller | |
2011-02-09 | nvc0: set basic block on manual instruction insertion | Christoph Bumiller | |
2011-02-09 | nvc0: try to fix register conflicts for vector instructions | Christoph Bumiller | |
Vector here means using multiple 32 bit regs which are forced to be consecutive in the register file. This still isn't quite nice. | |||
2011-02-09 | nvc0: reset texture base address after read transfer | Christoph Bumiller | |
2011-02-09 | nvc0: don't combine memory loads across block boundaries | Christoph Bumiller | |
2011-02-09 | nvc0: detect no-op MIN/MAX, do CSE earlier to succeed more often | Christoph Bumiller | |
2011-01-30 | nvc0: implement transform feedback state | Christoph Bumiller | |
2011-01-29 | nvc0: enable PIPE_CAP_ARRAY_TEXTURES and fix them | Christoph Bumiller | |
2011-01-24 | nvc0: Move declaration before code. | Vinson Lee | |
Fixes nvc0 SCons build. | |||
2011-01-23 | nvc0: implement point coord replacement | Christoph Bumiller | |
But we have to cheat and peek at the GENERIC semantic indices the state tracker uses for TEXn. Only outputs from 0x300 to 0x37c can be replaced, and so we have to know on shader compilation which ones to put there in order to keep doing separate shader objects properly. At some point I'll probably create a patch that makes gallium not force us to discard the information about what is a TexCoord. | |||
2011-01-23 | nvc0: fix emit_cvt for ceil, floor and trunc | Christoph Bumiller | |
2011-01-23 | nvc0: remove bad assert and emit TEMP movs instead | Christoph Bumiller | |
2011-01-23 | nvc0: fix address and value slot assignment in load combining | Christoph Bumiller | |
2011-01-23 | nvc0: don't omit highest bit of branch target | Christoph Bumiller | |
Fixes negative relative branch offsets. | |||
2011-01-23 | nvc0: recognize r63 as zero in constant folding | Christoph Bumiller | |
2011-01-23 | nvc0: add MARK_RING where missing to avoid too many relocs errors | Christoph Bumiller | |
2011-01-23 | nvc0: don't apply base vertex to per-instance arrays | Christoph Bumiller | |
2011-01-23 | nvc0: commute sources of SET too if beneficial | Christoph Bumiller | |
2011-01-23 | nvc0: accept neg abs modifiers on lg2 | Christoph Bumiller | |
2011-01-17 | nouveau: fix build against out of tree libdrm | Dave Airlie | |
For doing builds against a separated libdrm these cflags are needed. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2011-01-16 | nvc0: fix and enable instanced drawing and arrays | Christoph Bumiller | |
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-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-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> |