summaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker/st_cb_drawpixels.c
Commit message (Expand)AuthorAgeFilesLines
* gallium: pipe->surface_copy can flip the contents vertically when necessary.Michel Dänzer2008-02-131-0/+1
* gallium: rename st_fragment_program's fs field to cso to match st_vertex_programBrian2008-02-121-1/+1
* gallium: remove unused first_level param from st_texture_create()Brian2008-02-121-3/+3
* gallium: added inClipCoords param to st_draw_vertices() to indicate coord sys...Brian2008-02-081-9/+9
* gallium: add bitmap/drawpixels texcoord bias supportBrian2008-02-061-2/+5
* gallium: remove support for separate depth/stencil buffers. Always combined ...Brian2008-01-231-3/+3
* tweaks to quad drawing, set UsesKill in bitmap shaderBrian2008-01-161-12/+15
* Fix problems with vertex shaders and the private draw module.Brian2008-01-141-2/+2
* Remove pipe->get/put_tile_rgba.Michel Dänzer2008-01-141-2/+3
* Remove mapping fields from struct pipe_surface.Michel Dänzer2008-01-141-6/+0
* gallium: make state tracker explictly ask for rendercache flushesKeith Whitwell2007-12-201-2/+2
* gallium: incorporate alpha state into depth_stencil state object.Keith Whitwell2007-12-171-1/+1
* Remove internal_format field from struct pipe_texture.Michel Dänzer2007-12-111-9/+6
* gallium: remove set_sampler_units interfaceKeith Whitwell2007-12-111-2/+2
* Add 'type' parameter to is_format_supported() to specify texture vs. drawing ...Brian2007-12-101-2/+2
* Define PIPE_FORMAT_ tokens as an enum set, rather than #defines.Brian2007-12-071-2/+3
* Replace "duplicate" formatsBrian2007-12-071-11/+11
* Eliminate struct pipe_region.Michel Dänzer2007-12-071-26/+22
* Hide texture layout details from the state tracker.Michel Dänzer2007-12-061-150/+64
* Move dimensions from struct pipe_region to struct pipe_surface.Michel Dänzer2007-11-291-28/+22
* Remove pipe->max_texture_size(), use get_param() instead.Brian2007-11-061-4/+4
* Check if the user/texenvprogram is just a pass-through program and skip progr...Brian2007-11-041-4/+35
* Implement shader concatenation for glBitmap.Brian2007-10-301-39/+75
* combine shaders for glCopyPixelsBrian2007-10-301-79/+64
* Use program serial numbers to avoid re-generating fragment programs for glDra...Brian2007-10-301-17/+35
* Before calling texformat->StoreImage() set _ImageTransferState=0 since we'll ...Brian2007-10-301-2/+10
* Disable debug code.Brian2007-10-301-2/+8
* checkpoint: combine pixel transfer and user shader for glDrawPixelsBrian2007-10-301-1/+33
* Make it compile under linux.Michal Krol2007-10-291-0/+1
* Replace supported_formats with is_format_supported interface.Michal Krol2007-10-281-19/+14
* Move mesa_to_tgsi.[ch] to state_trackerBrian2007-10-271-1/+1
* Move region_alloc() and region_release() to pipe_winsys.Brian2007-10-251-3/+6
* Move the get/put_tile() functions to pipe_context.Brian2007-10-251-2/+2
* flush pipe in draw_stencil_pixels()Brian2007-10-241-0/+2
* Alternate CopyPixels path based on get/put_tile().Brian2007-10-181-8/+34
* fix off-by-one error in CopyPixels src positionBrian2007-10-181-1/+1
* fix upside down CopyPixels imageBrian2007-10-181-17/+25
* checkpoint: code refactoring for glCopyPixelsBrian2007-10-181-50/+123
* start implementing glCopyPixels (stencil works)Brian2007-10-181-0/+79
* remove #include vf.hBrian2007-10-171-1/+0
* Fix viewport Z scale/bias to get the right Z values from drawing the quad.Brian2007-10-171-2/+2
* remove debug assertionBrian2007-10-161-1/+0
* add 'normalized_coords' field to pipe_sampler_stateBrian2007-10-151-0/+1
* simplify KIL usage for bitmap fragprogBrian2007-10-151-4/+2
* GL_STENCIL_INDEX supportBrian2007-10-131-2/+83
* glDrawPixels support for GL_DEPTH_COMPONENTBrian2007-10-131-10/+115
* Use KIL in glBitmap shader to cull the fragments for 0 bits.Brian2007-10-121-41/+30
* initial use of KIL for glBitmap renderingBrian2007-10-121-7/+44
* Instead of linked program pairs, keep a list of vertex programs translated fo...Brian2007-09-281-2/+2
* comments, null ptr checks, etc.Brian2007-09-251-16/+38