summaryrefslogtreecommitdiffstats
path: root/src/mesa/pipe
Commit message (Collapse)AuthorAgeFilesLines
* s/Z24_S8/S8_Z24/ (stencil is in the high byte)Brian2007-08-014-32/+35
|
* Checkpoint: glClear changes - working, bug very rough.Brian2007-08-013-15/+131
|
* Build libsoftpipe.aKeith Whitwell2007-08-016-4/+108
| | | | | | | | Each pipe driver will build to a .a library, as these will optionally be included in the various DRI drivers (this will make more sense once there is at least one hardware driver...). Not strictly necessary for softpipe, but want to minimize the differences between it and actual hw implementations.
* Obsolete.Brian2007-07-312-250/+0
|
* Redesign pipe_surface in terms of pipe_region.Brian2007-07-318-144/+462
| | | | | | struct pipe_buffer goes away. Added basic region functions to softpipe to allocate/release malloc'd regions. Surface-related code is fairly coherent now.
* Lift region-related functions up to the pipe interface.Brian2007-07-312-1/+98
| | | | | | Some of these functions probably should be driver-private. Note: intel_buffer_object is in p_state.h and should be fixed/removed. There are just a few i915 dependencies in intel_region.c
* 32 and z24s8 softpipe buffersBrian2007-07-303-32/+157
|
* Merge branch 'softpipe_0_1_branch' of ↵Brian2007-07-305-7/+179
|\ | | | | | | git+ssh://[email protected]/git/mesa/mesa into softpipe_0_1_branch
| * Lots of improvements to the surface-related code.Brian2007-07-304-7/+177
| | | | | | | | | | | | Z testing now works with i915 driver. Add gl_renderbuffer::surface pointer (and reverse pointer). Remove intel_surface and xmesa_surface types - no longer used.
| * compute scale for Z24 buffersBrian2007-07-301-0/+2
| |
* | Merge branch 'softpipe_0_1_branch' of ↵Brian2007-07-302-9/+31
|\| | | | | | | git+ssh://[email protected]/git/mesa/mesa into softpipe_0_1_branch
| * map/unmap surfaces before/after renderingBrian2007-07-301-0/+31
| |
| * remove old commentsBrian2007-07-301-9/+0
| |
* | renaming, comments, clean-upBrian2007-07-271-35/+27
|/
* Clip triangles against softpipe->cliprect which includes scissor and surface ↵Brian2007-07-272-44/+36
| | | | | | bounds. This prevents rendering out of bounds when the viewport is partially outside the surface bounds.
* remove obsolete commentsBrian2007-07-271-3/+0
|
* Maintain cliprect (scissor) info in sp_state_derived.c.Brian2007-07-273-31/+52
| | | | | The cliprect depends on the scissor rect (if enabled), otherwise the drawing surface bounds.
* Implement point/line quad clipping. Not quite as efficient as it probably ↵Brian2007-07-271-19/+70
| | | | could be, but sufficient for now.
* s/SP_TILE_H/SP_QUAD_H/Brian2007-07-271-3/+3
|
* init quad.coverage values to 1.0 in case line AA is enabled so that we see ↵Brian2007-07-271-0/+7
| | | | something
* Avoid unnecessary input attrib copy by aligning exec_machine attribs.michal2007-07-271-35/+44
|
* Implement line stippling.Brian2007-07-2510-3/+90
| | | | | Also added draw_stage::reset_line_stipple(). There may be a better way of doing that though.
* rename some varsBrian2007-07-251-9/+9
|
* implement DDX, DDY instructionsBrian2007-07-252-2/+38
|
* Fix pinterp() to compute 1 / FRAG_ATTRIB_WPOS.w Update comments too.Brian2007-07-251-6/+7
|
* patch things up enough to allow texture sampling to workBrian2007-07-251-0/+21
|
* use consistent indentationBrian2007-07-241-373/+361
|
* check return value of tgsi_parse_init()Brian2007-07-241-4/+21
|
* added PROGRAM_NAMED_PARAM in map_register_file()Brian2007-07-241-1/+1
|
* Add VF_ATTRIB_VAR0..7 for varying variables.Brian2007-07-241-0/+10
| | | | The demos/fslight.c demo runs now.
* added PROGRAM_UNIFORM to map_register_file()Brian2007-07-241-0/+1
|
* commentsBrian2007-07-241-5/+22
|
* s/GLuint/GLbitfield/Brian2007-07-241-1/+1
|
* Compute need_z and need_w properly and use the correct ↵Brian2007-07-242-17/+36
| | | | const/linear/perspective interpolation in shade_quad().
* Fix a typo (i << i) that was fouling up the vertex layout info.Brian2007-07-241-4/+7
|
* added missing OPCODE_ARL to TGSI_OPCODES[], added sanity check assertionBrian2007-07-241-2/+8
|
* Basic fragment programs run now.Brian2007-07-242-10/+32
| | | | | Handling of constants might change. For now, the st_fragment_program struct contains a pipe_constant_buffer (not a pointer).
* rebuild quad pipeline when framebuffer changes tooBrian2007-07-241-0/+1
|
* Merge branch 'softpipe_0_1_branch' of ↵Brian2007-07-246-10/+64
|\ | | | | | | git+ssh://[email protected]/git/mesa/mesa into softpipe_0_1_branch
| * Execute fs tokens.michal2007-07-232-6/+53
| | | | | | | | Fix align128 bug.
| * Trigger tgsi compilation for fragment programs.Keith Whitwell2007-07-194-4/+11
| | | | | | | | Not sure the generated program looks correct though...
* | Fix more polygon winding, culling confusion.Brian2007-07-132-9/+15
|/ | | | If the determinant of the triangle is positive, its winding is CCW (right-handed coord system).
* Fix for-loop in interp() so we don't go out of bounds.Brian2007-07-131-5/+12
| | | | | Improved comments for that loop. Added some sanity check assertions regarding vertex layout.
* set INTERP_CONSTANT when appropriateBrian2007-07-131-1/+5
| | | | | Not really signficant now since draw_flat stage copies the provoking vertex color to all prim verts.
* commentsBrian2007-07-131-2/+4
|
* Enable Keith's branch-less stipple code - it works.Brian2007-07-131-19/+0
|
* Add 'prim' field to quad so that stipple and aa coverage stages can do the ↵Brian2007-07-134-40/+40
| | | | right thing.
* Implement AA points and AA coverage application in quad pipeline.Brian2007-07-137-30/+158
|
* Added basic occlusion countingBrian2007-07-137-1/+103
|
* minor renameBrian2007-07-131-1/+1
|