summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2009-12-14tgsi: add properties and system value registerZack Rusin
adds support for properties to all parts of the tgsi framework, plus introduces a new register which will be used for system generated values.
2009-12-14nouveau: avoid running out of relocsMaarten Maathuis
- Added flush notify functions for NV30 and NV40. - Flushing mid frame will call flush notify, which will resubmit all relocs. - We don't try to recover from reloc failure yet.
2009-12-14nv50: be more cautious about using reg_instanceChristoph Bumiller
Trying to free part of nv50_pc->reg_instances[] for an nv50_reg representing an indirect constant resulted in a segmentation fault.
2009-12-14tgsi/ureg: Add ureg_DECL_gs_input().Michal Krol
Allows one to declare GS input registers.
2009-12-14nv50: store immediates as uint32Christoph Bumiller
Sometimes we want non-float immediates, hacking them into floats isn't nice. Sorry, this should have already been committed before.
2009-12-13nouveau: nv50: Add missing ctor_immd_4u32 functionPatrice Mandin
2009-12-13r300: enable accelerated support for glCopyTexImage only under KMSMaciej Cencora
2009-12-13r300: fix regression introduced by da73c1edMaciej Cencora
The 0 value is correct for I8 format.
2009-12-13r300: fix glCopyTexSubImageMaciej Cencora
Need to properly setup colorbuffer when dst pitch != dst width.
2009-12-13nv50: add proper zslice offset in miptree_surfaceChristoph Bumiller
2009-12-13nv50: use m2mf z pos instead of calculating offset manuallyChristoph Bumiller
2009-12-13nv50: add craziness for non-constant TXB and TXLChristoph Bumiller
If lod or bias can be non-constant across a quad of fragments, we need to execute TEX separately for each value. Don't ask why.
2009-12-12Revert "nouveau: nv30: Disable swizzled surface usage if any dimension is 1 ↵Patrice Mandin
(Warsow creates a 1x1 front buffer)" This reverts commit ec7844537ecdb0b598447e37bf0b7120acd029f3.
2009-12-12nouveau: nv30: Disable swizzled surface usage if any dimension is 1 (Warsow ↵Patrice Mandin
creates a 1x1 front buffer)
2009-12-12nv50: support TXB and TXLChristoph Bumiller
... and don't set the 'live' flag for TEX anymore, we'd have to know if results affect the inputs for another TEX, and I'm not going to do that kind of analysis now.
2009-12-12nv50: add S8Z24 depth texture format tooChristoph Bumiller
2009-12-12nv50: fix depth comparison func TSC bitsChristoph Bumiller
Unfortunately it seems that if depth comparison is active and we read a 2D texture, i.e. provide only 2 inputs, the second is used for comparison ...
2009-12-12nv50: add src_mask case for IF opcodeChristoph Bumiller
2009-12-12nv50: plug memory leak in miptree creation/destructionChristoph Bumiller
Keeping this dynamically allocated for texture arrays. Since we don't use it to store zslice offsets anymore it's either 1 or 6 integers (cube) ...
2009-12-12nv50: use copies of tgsi src nv50_regsChristoph Bumiller
So we can use the 'mod' member without concern if a source is used multiple times in 1 insn.
2009-12-12nv50: support vertex program texturesChristoph Bumiller
2009-12-12r300: disable blit debugging infoMaciej Cencora
2009-12-12r300: emit number of used colorbuffers to pass radeon cs checkerMaciej Cencora
2009-12-12r300: setup render target format for r300/r400 cards tooMaciej Cencora
2009-12-12r300: finish blit support for r300Maciej Cencora
2009-12-12more blit fixesMaciej Cencora
2009-12-12blit WIPMaciej Cencora
2009-12-12r300: use accelerated emit for CopyTex[Sub]Image functionsMaciej Cencora
2009-12-12r300: accelerated blit supportMaciej Cencora
2009-12-12r300: fix wrong assertionMaciej Cencora
2009-12-12r300: export translateTexFormat functionMaciej Cencora
2009-12-12r300: refactor PVS code and constants emissionMaciej Cencora
2009-12-12r300: refactor R500 fragment program emissionMaciej Cencora
2009-12-12r300: refactor color buffer setupMaciej Cencora
2009-12-12r300: use _mesa_meta_Clear for buffer clearsMaciej Cencora
2009-12-12r300: minor texture code refactoringMaciej Cencora
2009-12-11gallium: added comment for pipe_reference() return valueBrian Paul
2009-12-11mesa: minor reformatting/rewrapping in dd.hBrian Paul
2009-12-11mesa: remove unused ctx->Driver.ActiveTexture() hookBrian Paul
2009-12-11mesa: updated commentBrian Paul
2009-12-11Merge branch 'mesa_7_7_branch'Brian Paul
Conflicts: src/gallium/state_trackers/xorg/xorg_xv.c src/mesa/drivers/dri/intel/intel_span.c
2009-12-11Merge branch 'mesa_7_6_branch' into mesa_7_7_branchBrian Paul
2009-12-11mesa: remove unnecessary loop in _mesa_remove_output_reads()Brian Paul
2009-12-11Merge branch 'mesa_7_6_branch' into mesa_7_7_branchBrian Paul
2009-12-11mesa: check dst reg in _mesa_find_free_register()Brian Paul
If a register was only being used as a destination (as will happen when generated condition-codes) we missed its use. So we'd errantly return a register index that was really in-use, not free. Fixes bug 25579.
2009-12-11sparc: additional preprocessor test for SPARC 64-bitAurelien Jarno
2009-12-11svga: Add a missing dependency from the prescale state.José Fonseca
Thanks for Keith to finding this. Fixes Jedi Knight 2 menus.
2009-12-11svga: Always pass SVGA3D_SURFACE_HINT_DYNAMIC.José Fonseca
Since we're reusing buffers we're effectively transforming all of them into dynamic buffers. It would be nice to not cache long lived static buffers. But there is no way to detect the long lived from short lived ones yet. A good heuristic would be buffer size.
2009-12-11svga: Keep tight control of texture handle ownership.José Fonseca
The texture owns the surface handle. All derivatives need to keep a reference to texture. This fixes several assertions failures starting up Jedi Knight 2. Should cause no change for DRM surface sharing -- reference count still done as before there.
2009-12-11svga: Fix mixed signed comparisons.José Fonseca