Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-08-08 | define i915_surface struct | Brian | |
2007-08-08 | more get_tile() work | Brian | |
2007-08-08 | fully support all texcoord wrap modes | Brian | |
2007-08-08 | Checkpoint of a super-simplified i915 driver in the pipe model. | Keith Whitwell | |
Doesn't yet compile, but when it does, it will only draw gouraud tris and even those will be as simple as possible. Needs some 'winsys' support also before that can happen. | |||
2007-08-07 | clean up tgsi_sampler-related bits | Brian | |
2007-08-07 | use new tex filtering code | Brian | |
2007-08-07 | initial texture filtering code | Brian | |
2007-08-07 | include p_state.h | Brian | |
2007-08-07 | added a get_tile() func | Brian | |
2007-08-07 | map/unmap textures | Brian | |
2007-08-07 | remove dst!=src assertion | Brian | |
2007-08-07 | added pipe_mipmap_tree::format | Brian | |
2007-08-07 | Naive implementation of IF/ELSE/ENDIF. | michal | |
Handle TGSI labels correctly. Enhance MESA opcode info queries. | |||
2007-08-07 | checkpoint new tgsi_sampler_state struct | Brian | |
2007-08-07 | remove pipe_surface_sampler | Brian | |
2007-08-07 | sketch out new pipe surface/sampler types | Brian | |
2007-08-07 | Handle labels for IF/ELSE correctly | michal | |
2007-08-07 | Enable compact TGSI dump. | michal | |
2007-08-07 | Dump tokens in more compact form. | michal | |
2007-08-07 | s/pipe_texture_object/pipe_mipmap_tree/, drop st_texobj.c | Brian | |
2007-08-07 | Labels are always label targets. | michal | |
Translate label for GLSL IF, ELSE. | |||
2007-08-07 | get rid of temp write_mono_row_ub() function | Brian | |
2007-08-06 | added softpipe_mipmap_tree_layout | Brian | |
2007-08-06 | need a softpipe func for texture layout | Brian | |
2007-08-06 | Add GLSL opcodes. | michal | |
2007-08-06 | Add GLSL ops. | michal | |
2007-08-06 | Make SGE, SGT, SLE working. | michal | |
2007-08-06 | Remove garbage text. | michal | |
2007-08-06 | Use fp_attr_to_slot[]. | michal | |
2007-08-06 | Reorder opcodes. | michal | |
2007-08-06 | Translate the remaining ops. | michal | |
2007-08-06 | Translate MESA GLSL opcodes to TGSI opcodes. | michal | |
2007-08-06 | Add path for GL includes in mesa tree. | michal | |
2007-08-06 | comments | Brian | |
2007-08-06 | Add GLSL opcodes. | michal | |
2007-08-06 | Checkpoint lifting of intel_mipmap_tree (intel_mipmap_tree -> ↵ | Brian | |
pipe_mipmap_tree and move some code) | |||
2007-08-06 | Add pipe buffer managment functions. | Keith Whitwell | |
The state_tracker driver needs these to implement, eg. pixel buffer objects, vertex buffer objects. | |||
2007-08-05 | Add a new interface between softpipe and the window system / buffer manager. | Keith Whitwell | |
This interface is defined by softpipe and any window system (eg i915pipe) wishing to use softpipe is required to implement the interface. Currently the interface is all about buffer management. Generalizing, each pipe driver will advertise an interface in a similar spirit to this, and again any window system driver wishing to use that rendering pipeline will have to implement the interface it defines. It clearly isn't a one-way street however, as softpipe could just do its own buffer management with malloc. The interaction with a buffer manager is desired to allow us to exercise the hardware swapbuffers functionality of the i915pipe driver, and also to get a feel for the way hardware drivers which really need a buffer manager will work. | |||
2007-08-03 | Remove "static region" support. | Keith Whitwell | |
The frontbuffer/driBufMgr interactions are handled as a special case in the intel_screen code. | |||
2007-08-02 | added pipe->supported_formats() | Brian | |
2007-08-02 | more formats | Brian | |
2007-08-02 | pipe->clear() now takes a surface, rather than color/depth/stencil flags. | Brian | |
pipe->clear() only used to clear whole buffers (no scissor) w/out masking. Draw a colored quadrilateral in all other cases. | |||
2007-08-02 | Fix make recursion. | Keith Whitwell | |
Unfortunately means you can't just type make in softpipe any more. | |||
2007-08-02 | Implement new draw_vertices() path for simple vertex array drawing, use it ↵ | Brian | |
for glClear. | |||
2007-08-02 | Remove references to accum buffers in softpipe. | Keith Whitwell | |
Also some minor clear fixes. | |||
2007-08-02 | add PIPE_MASK_RGBA | Brian | |
2007-08-02 | Merge branch 'softpipe_0_1_branch' of ↵ | Brian | |
git+ssh://brianp@git.freedesktop.org/git/mesa/mesa into softpipe_0_1_branch | |||
2007-08-02 | Remove remnants of i915 texture-from-pbo code. | Keith Whitwell | |
2007-08-02 | Reroute some clear functionality. | Keith Whitwell | |
Still require the intelClear() call to flush batchbuffers. That will be removed later... | |||
2007-08-01 | implement masking in sp_region_fill() | Brian | |