summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv30/nv30_vertprog.c
AgeCommit message (Collapse)Author
2009-07-22gallium: simplify tgsi_full_immediate structKeith Whitwell
Remove the need to have a pointer in this struct by just including the immediate data inline. Having a pointer in the struct introduces complications like needing to alloc/free the data pointed to, uncertainty about who owns the data, etc. There doesn't seem to be a need for it, and it is unlikely to make much difference plus or minus to performance. Added some asserts as we now will trip up on immediates with more than four elements. There were actually already quite a few such asserts, but the >4 case could be used in the future to specify indexable immediate ranges, such as lookup tables.
2009-06-05nouveau: remove unneeded code from ws, use pipe_buffer_ instead of ws->Ben Skeggs
2009-06-05nouveau: call notifier/grobj etc funcs directlyBen Skeggs
libdrm_nouveau is linked with the winsys, there's no good reason to do all this through yet another layer.
2009-03-07nouveau: make stateobjs start off with refcount of 1Ben Skeggs
2009-02-10nv30: Fix build -- rename Size to NrTokens.Michal Krol
2008-08-18nv30: add some opcodes.Stephane Marchesin
2008-08-07nouveau: fix buildBen Skeggs
2008-07-12nv30: does not have vp_attrib/resultPatrice Mandin
2008-07-12nv30: Change comment about slowdownPatrice Mandin
2008-07-12nv30: Emit vertex program using state objectsPatrice Mandin
2008-07-11nv30: Move constant buffers out of vert/frag prog structuresPatrice Mandin
2008-06-23nouveau: update for interface changes + hack around gallium x86_64 bustageBen Skeggs
2008-04-11nv30: Move some structures and functions from context to screenPatrice Mandin
2008-03-30nv30: use FREE macroPatrice Mandin
2008-03-13nouveau: match interface changesBen Skeggs
2008-03-12nv30: debug dumps vp constantsPatrice Mandin
2008-03-10nv30: put the card into vtxprog mode + small cleanups/fixesBen Skeggs
2008-03-06nv30: a couple of vtxprog fixesBen Skeggs
2008-02-16nouveau: match gallium code reorginisation.Ben Skeggs
That was... fun..