summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i965simple
AgeCommit message (Collapse)Author
2008-02-13gallium: pipe->surface_copy can flip the contents vertically when necessary.Michel Dänzer
Fixes gears being upside down on the box in demos/gearbox.
2008-02-12gallium: clean-up, simplification of mipmapped texturesBrian
Remove pipe_texture->first_level (always implicitly zero). This means there's never any unused mipmap levels at the top. In the state tracker, we no longer re-layout mipmapped textures if the MinLod/MaxLod texture parameters change. It's up to the driver to obey the pipe_sampler->min/max_lod clamps.
2008-02-06gallium: change pipe->texture_create() to operate like the CSO functionsBrian
Now, pass in a template object and return a new object.
2008-02-06gallium: Use p_debug.h instead of non-portable stdio.h/assert.h functions.José Fonseca
2008-01-31gallium: Add SCons as alternative build system for Gallium.José Fonseca
2008-01-26gallium: minor cleanups to pipe interfaceKeith Whitwell
- Remove put/get tile, just have users call put_tile_raw, etc directly. - Remove surface_data call, just map it locally.
2008-01-25gallium: rename pipe_buffer_handle to pipe_buffer, rework pipebuffer/ codeKeith Whitwell
Provide an actual definition of the pipe_buffer struct, containing the parameters used to create the buffer, and its refcount. Shift refcounting buffers out of the winsys interface, similar to surfaces & textures. Rework pipebuffer/ to reflect the fact these changes, and also Michel's reworking of the buffer interface.
2008-01-25gallium: Simplify winsys buffer interface.Michel Dänzer
The properties of a buffer represented by struct pipe_buffer_handle are now basically constant over its lifetime. The state tracker gets to deal with any more complex buffer semantics it may need to provide.
2008-01-25965: add asserts to catch batch overrunKeith Whitwell
2008-01-25965: cope better with range decls for temps, immediates, etcKeith Whitwell
2008-01-23gallium: remove support for separate depth/stencil buffers. Always combined ↵Brian
now.
2008-01-18Unify copy_rect helpers.Michel Dänzer
Some of the copies were buggy.
2008-01-15replace _mesa_printf() with fprintf()Brian
2008-01-14Remove pipe->get/put_tile_rgba.Michel Dänzer
pipe_get/put_tile_rgba() now use pipe->get/put_tile internally. Also simplify the <format>_get/put_tile_rgba() helper functions and clean up some inconsitencies in them.
2008-01-14Remove mapping fields from struct pipe_surface.Michel Dänzer
It's now the responsibility of surface users to keep track of their mappings.
2008-01-11s/int/uint/ to silence warningsBrian
2008-01-04gallium: Make texture target an enum for better debuggability.Michel Dänzer
Also make enum pipe_format used in a couple more places.
2008-01-04965: use correct offset for constants vs immediatesKeith Whitwell
2008-01-04965: always perform SF parameter setup for positionKeith Whitwell
Match behaviour of DRI driver. Fix fragment shader to find the other parameters one slot further on. Will need more work to cope with FP's that actually reference position.
2008-01-04965: scan fs inputs to work out interpolation in setup programKeith Whitwell
2007-12-24i965: a little better way of handling immediatesZack Rusin
2007-12-20i965: very crude and hacky way of handling immediatesZack Rusin
2007-12-20965: respect pipe flush flagsKeith Whitwell
Now we emit way too many flushes instead of none at all.
2007-12-20965: fix the constant buffersZack Rusin
2007-12-19965: dump curbe contents to stderrKeith Whitwell
2007-12-19constsZack Rusin
2007-12-19965: count grf allocation correctly for wm prog, first aub triangleKeith Whitwell
2007-12-19965: hardwire correct behaviour for vp-tri setup (for now...)Keith Whitwell
2007-12-19965: make sure stipple state gets uploadedKeith Whitwell
2007-12-19965: fill unused surface pointers with zeroKeith Whitwell
2007-12-19i965: emit fb write on RET for now (until we get END back)Zack Rusin
2007-12-19965: pitch is in bytes not pixelsKeith Whitwell
2007-12-19965: fix off-by-one in scissor rectKeith Whitwell
2007-12-19965: fix off-by-one in surface dimensionsKeith Whitwell
2007-12-19i965: actually detect whether a sampler is enabled/disabledZack Rusin
2007-12-19965: disable clipping more, and restore drawing rect packetKeith Whitwell
2007-12-19965: disable clipping for nowKeith Whitwell
2007-12-19965: fix vertex pointsize state, match default cull modeKeith Whitwell
2007-12-19965: fix colormask stateKeith Whitwell
2007-12-19965: populate fp_input_count in setup keyKeith Whitwell
2007-12-19i965: stuff the outputs into mrf registers when possibleZack Rusin
2007-12-19i965: be smarter about register allocationZack Rusin
2007-12-18gallium: rationalize vertex_element state packetKeith Whitwell
Remove dst_offset (not used) Add nr_components, which could be calculated from format, but would be too much effort. Update i965 driver to cope.
2007-12-18i965: don't treat swz differently and upload vertex buffersZack Rusin
2007-12-17i965: index the destination offset with regards to the current indexZack Rusin
2007-12-17i965: return false when the function fails, not succeedsZack Rusin
2007-12-17gallium: incorporate alpha state into depth_stencil state object.Keith Whitwell
2007-12-17965: remove dead state atom declsKeith Whitwell
2007-12-17965: fix for non-indexed draw pathKeith Whitwell
2007-12-17965: fix/hack check for NULL texunit in state uploadKeith Whitwell