summaryrefslogtreecommitdiffstats
path: root/src/mesa/pipe
Commit message (Expand)AuthorAgeFilesLines
* Implement the conversion and do the initial execution pass.Zack Rusin2007-10-248-10/+241
* Stub out some conversion.Zack Rusin2007-10-241-0/+291
* Initial stab at LLVM integration.Zack Rusin2007-10-244-0/+191
* Fix vertex cache bug that allows multiple vertices to fall into the same slot.Brian2007-10-231-0/+9
* added commentBrian2007-10-231-1/+1
* In get_vertex(), slot was computed using & 31. Replace with % VCACHE_SIZE.Brian2007-10-231-1/+3
* adjust coords in wide_line() to be conformantBrian2007-10-231-8/+47
* new flag to control psize (from vertex shader or fixed size)Brian2007-10-222-1/+25
* add support for sprite texcoord modesBrian2007-10-223-7/+28
* implement point sprite modeBrian2007-10-222-35/+48
* add point_sprite flag to rasterizer stateBrian2007-10-221-0/+1
* remove unused varBrian2007-10-221-1/+1
* tweak point corners to pass conform testBrian2007-10-221-4/+8
* plug the wide prims code into the pipelineBrian2007-10-223-0/+9
* update to working conditionBrian2007-10-221-111/+91
* Finish unifying the surface and texture tile caches.Brian2007-10-228-118/+72
* pull clip/ module wide and stippled lines/points codekeithw2007-10-222-0/+541
* Start implementing cache routines for textures.Brian2007-10-212-1/+71
* rename some varsBrian2007-10-211-25/+25
* silence warningBrian2007-10-212-1/+2
* Remove obsolete read/write_quad() functionsBrian2007-10-202-478/+54
* init sp->sbuf_cache to avoid possible segfaultBrian2007-10-201-0/+1
* Call softpipe_unmap_surfaces() in softpipe_flush().Brian2007-10-201-0/+8
* In region_unmap(), check if region is mapped before decrementing refcount.Brian2007-10-202-8/+14
* Convert Z/stencil ops to use cached tiles like colors.Brian2007-10-2016-126/+395
* added case for TGSI_OPCODE_ENDBrian2007-10-201-0/+4
* get/put_tile_raw() funcs for 16/32bpp surfacesBrian2007-10-191-0/+115
* added get/put_tile_raw() methodsBrian2007-10-191-4/+17
* disable debug printfBrian2007-10-191-2/+1
* Initial implementation of surface tile caching.Brian2007-10-199-72/+129
* Tile cache functions.Brian2007-10-192-0/+289
* remove old commentBrian2007-10-181-5/+0
* fix bug in copy_rect(), use temp vars in sp_region_copy() to aid debuggingBrian2007-10-181-6/+9
* Change type of shader->executable field from void * to generic function pointer.Brian2007-10-182-5/+7
* added const qualifiersBrian2007-10-182-4/+4
* better debug code, silence some warningsBrian2007-10-181-6/+13
* fix logic error in stipple_quad() (point/line fragments were getting dropped)Brian2007-10-181-3/+4
* Corrected the file permissions in src/mesa/pipe.Oliver McFadden2007-10-1812-0/+0
* pipe/draw/draw_context.c:47: error: 'false' undeclared (first use in this fun...Oliver McFadden2007-10-181-1/+1
* sp_context.c:255: error: 'false' undeclared (first use in this function)Oliver McFadden2007-10-181-1/+1
* fix interpolation bug in nearest-image/linear-mipmap filteringBrian2007-10-171-1/+1
* Replace repeat_remainder() with simpler macro that just casts args to unsigned.Brian2007-10-171-13/+6
* reorder params to get_texel()Brian2007-10-171-31/+32
* implement 3D texture samplingBrian2007-10-171-1/+111
* don't crash if texture border is used (unsupported for now)Brian2007-10-171-0/+3
* fix square point rasterizationBrian2007-10-171-31/+43
* lower clamp bound for UNCLAMPED_FLOAT_TO_SHORT() is -1Brian2007-10-161-1/+1
* front/back determination was wrongBrian2007-10-161-1/+1
* Update mask calculations for point drawing.Brian2007-10-161-10/+10
* Fix broken polygon stippling (see comments for details).Brian2007-10-161-5/+27