summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_surface.h
AgeCommit message (Collapse)Author
2009-06-26r300-gallium: organize fragment/vertex shadersJoakim Sindholt
Appart from separating r3xx/r5xx fragment shaders, a more consistent naming scheme has been applied. From now on: r300 = all chips r3xx = R300/R400 only r5xx = R500 only This way r300_fragment_shader is the master struct, and the structs r3xx_fragment_shader and r5xx_fragment_shader inherits it.
2009-05-20r300-gallium: Make surface_copy actually load the texture in shader.Corbin Simpson
2009-04-04r300-gallium: Clean up compile warnings and strict compile errors.Corbin Simpson
2009-04-01r300-gallium: Fix compiler warnings.Corbin Simpson
"const" is the right keyword, but I can't do that without adding a bunch of really annoying and ugly const casts everywhere, and frankly, that's really stupid, so instead, just don't make them const.
2009-03-31r300-gallium: Add vertex shader emit.Corbin Simpson
2009-03-27r300-gallium: Add some surface_copy.Corbin Simpson
2009-03-06r300-gallium: Flat/smooth shading state.Corbin Simpson
2009-03-06r300-gallium: Pick up a few more bits of rs_state.Corbin Simpson
Including two registers that already should have been covered...huh...
2009-03-05r300-gallium: Move RS block setup to CSO.Corbin Simpson
2009-02-28r300-gallium: Use rs_state emit for r300_surface, move a few things around.Corbin Simpson
Also a possible fix for non-TCL chipsets and trivial/clear.
2009-02-22r300-gallium: Add pipe_format translators and apply themJoakim Sindholt
2009-02-12r300-gallium: r300 passthrough shader, static shader objects, and clear code.Corbin Simpson
2009-02-01r300: Unbreak emit, fix up a bunch of little things.Corbin Simpson
2009-02-01r300: Add dsa state emit.Corbin Simpson
Seeing a pattern yet?
2009-02-01r300: Add blend color state emit.Corbin Simpson
Slow and steady wins the race. Or something like that.
2009-02-01r300: Set up blend state emit, clean up blend registers.Corbin Simpson
Also add at least one missing register to r300_reg.
2009-02-01r300: Unbreak build, finish clear state.Corbin Simpson
Completely untested, of course.
2009-02-01[BROKEN] r300: Add initial clear/fill code.Corbin Simpson
Copied from mesa and still broken. Gimme a few to clean it up.
2009-02-01A bit of r300 cleanup.Corbin Simpson
2009-02-01gallium-r300: Fit it all together now.Corbin Simpson
In theory, it could work, but there's still some very big gaps. Anything marked with XXX should be taken care of first, probably.
2009-02-01gallium-r300: Add r300_surface.Corbin Simpson
Todo: - Hook up surface functions. - Take it for a spin and watch it crash 'n' burn.