summaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker
Commit message (Expand)AuthorAgeFilesLines
* update_samplers() didn't respect the sampler->texunit mapping.Brian2007-12-141-9/+16
* emit tgsi declarations for texture samplersBrian2007-12-141-0/+27
* Don't always declare frag shader INPUT[0] as fragment position.Brian2007-12-143-51/+45
* add missing code for PIPE_FORMAT_S8_UNORM renderbufferBrian2007-12-131-0/+4
* Re-org of st_create_framebuffer() and renderbuffer format selection.Brian2007-12-126-91/+71
* Try PIPE_FORMAT_R5G6B5_UNORM for GL_RGB5 request.Brian2007-12-121-0/+2
* softpipe: Support for PIPE_FORMAT_A4R4G4B4_UNORM and PIPE_FORMAT_R5G6B5_UNORM.Michel Dänzer2007-12-111-0/+4
* Remove internal_format field from struct pipe_texture.Michel Dänzer2007-12-114-17/+10
* Rework gallium and mesa queries a little.Keith Whitwell2007-12-111-19/+49
* gallium: remove clear values from depth, stencil stateKeith Whitwell2007-12-111-2/+0
* gallium: remove set_sampler_units interfaceKeith Whitwell2007-12-116-31/+29
* gallium: remove redundant clear_color state.Keith Whitwell2007-12-114-66/+0
* gallium: Remove feedback interfaces from pipe driver.Keith Whitwell2007-12-112-24/+21
* gallium: remove dead pbo zcopy codeKeith Whitwell2007-12-111-31/+0
* Add surface storage allocation function to winsys interface.José Fonseca2007-12-111-23/+13
* XXX comments about some hard-coded values that need to be fixedBrian2007-12-102-0/+2
* Add 'type' parameter to is_format_supported() to specify texture vs. drawing ...Brian2007-12-106-73/+71
* don't use get/put_tile_rgba() for accum buffer accessesBrian2007-12-101-19/+98
* Fix up some confusion wrt winsys->buffer_create alignment / flags parameters.Michel Dänzer2007-12-101-1/+1
* Correct user VBO size.Ben Skeggs2007-12-101-3/+8
* Remove stray references to struct pipe_region.Michel Dänzer2007-12-101-1/+0
* Adapt for winsys interface changes.José Fonseca2007-12-091-1/+1
* gallium: support the full range of possible vertex typesKeith Whitwell2007-12-091-23/+129
* add fence interfaces and buffer create flags to pipe_winsyskeithw2007-12-093-4/+4
* New vbo_set_draw_func() to keep vbo context opaque to state tracker and tnl m...Brian2007-12-072-10/+4
* Move _mesa_init_glsl_driver_functions() into shader_api.cBrian2007-12-071-1/+1
* Define PIPE_FORMAT_ tokens as an enum set, rather than #defines.Brian2007-12-075-25/+23
* include tgsi_dump.hBrian2007-12-071-0/+1
* Replace "duplicate" formatsBrian2007-12-074-69/+69
* Add PIPE_FORMAT_U_B8_G8_R8_A8 in default_rgba_format().Brian2007-12-071-22/+28
* added ST_SURFACE_DEPTHBrian2007-12-072-1/+2
* move surface pitch calculation so it always gets updatedBrian2007-12-071-2/+3
* fix void pointer arithmetic warningsBrian2007-12-071-7/+14
* Eliminate struct pipe_region.Michel Dänzer2007-12-079-89/+82
* Remove remnants of 'intel' from active state tracker code.Michel Dänzer2007-12-061-5/+2
* st_mesa_format_to_pipe_format: Handle MESA_FORMAT_ARGB4444.Michel Dänzer2007-12-061-0/+2
* Hide texture layout details from the state tracker.Michel Dänzer2007-12-068-555/+415
* silence warningBrian2007-12-051-0/+1
* added PIPE_FORMAT_U_B8_G8_R8_A8 case in color_value()Brian2007-12-051-0/+3
* Move dimensions from struct pipe_region to struct pipe_surface.Michel Dänzer2007-11-295-73/+80
* Cleanup PIPE_FORMAT names.Michal Krol2007-11-241-6/+8
* gallium: reorg tgsi directories.Michal Krol2007-11-235-7/+10
* The right include was mtypes.h.José Fonseca2007-11-221-1/+1
* Fix build errors.José Fonseca2007-11-222-0/+5
* Replace draw_set_vertex_attributes() with simpler draw_set_vertex_info().Brian2007-11-211-11/+10
* initial support for PIPE_FORMAT_Z24_S8Brian2007-11-203-4/+22
* Reimplement glRasterPos using the private 'draw' module.Brian2007-11-162-283/+160
* adjustments so st_feedback_draw_vbo() can be used for glRasterPosBrian2007-11-161-11/+11
* simplify depth_value(), return proper value for Z16 formatBrian2007-11-081-13/+7
* new init_renderbuffer_bits() helperBrian2007-11-081-14/+24