Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-01-14 | Remove pipe->get/put_tile_rgba. | Michel Dänzer | |
pipe_get/put_tile_rgba() now use pipe->get/put_tile internally. Also simplify the <format>_get/put_tile_rgba() helper functions and clean up some inconsitencies in them. | |||
2008-01-14 | Remove mapping fields from struct pipe_surface. | Michel Dänzer | |
It's now the responsibility of surface users to keep track of their mappings. | |||
2008-01-04 | gallium: Make texture target an enum for better debuggability. | Michel Dänzer | |
Also make enum pipe_format used in a couple more places. | |||
2007-12-11 | Remove internal_format field from struct pipe_texture. | Michel Dänzer | |
It's state tracker specific / not really necessary anyway. | |||
2007-12-11 | gallium: remove set_sampler_units interface | Keith Whitwell | |
The effect of this mapping can be acheived by the state tracker and setting up the pipe texture state pointers to incorporate its affects. | |||
2007-12-11 | gallium: remove dead pbo zcopy code | Keith Whitwell | |
2007-12-07 | fix void pointer arithmetic warnings | Brian | |
2007-12-07 | Eliminate struct pipe_region. | Michel Dänzer | |
Directly use struct pipe_buffer_handle for storage and struct pipe_surface for (un)mapping. | |||
2007-12-06 | Remove remnants of 'intel' from active state tracker code. | Michel Dänzer | |
2007-12-06 | Hide texture layout details from the state tracker. | Michel Dänzer | |
pipe->get_tex_surface() has to be used for access to texture image data. | |||
2007-11-29 | Move dimensions from struct pipe_region to struct pipe_surface. | Michel Dänzer | |
2007-11-01 | plug in _mesa_test_proxy_teximage, temporarily | Brian | |
2007-10-25 | Move the get/put_tile() functions to pipe_context. | Brian | |
The _rgba versions are temporary until the state tracker is updated. | |||
2007-10-17 | formatting fix | Brian | |
2007-09-27 | comments | Brian | |
2007-09-27 | remove dead code | keithw | |
2007-09-26 | Do image flipping in do_copy_texsubimage() and GL pixel transfer ops (except ↵ | Brian | |
convolution). | |||
2007-09-26 | fallback_copy_texsubimage() basically works now (at least w/ Xlib driver). | Brian | |
Have to map regions before calling get_tile()/put_tile(). Need to invert srcY of glCopyTexSubImage() depending on renderbuffers up/down orientation. Still need to invert image in fallback_copy_texsubimage() when needed. | |||
2007-09-26 | More work on glCopyTexSubImage. | Brian | |
Start sketching out a fallback path based on surface->get_tile(), put_tile() which will do format convertion and GL's pixel transfer ops. | |||
2007-09-26 | checkpoint: glCopyTexImage work | Brian | |
2007-09-17 | Remove non-meaningful region_idle() interface | Keith Whitwell | |
This is already handled by the semanics of map(), etc. | |||
2007-08-15 | translate GL texture targets to PIPE_TEXTURE_x values | Brian | |
2007-08-10 | use st_mesa_format_to_pipe_format() | Brian | |
2007-08-10 | rename st_cb_teximage.h st_format.h | Brian | |
2007-08-10 | code movement | Brian | |
2007-08-07 | set mt->format | Brian | |
2007-08-07 | s/intel/st/ | Brian | |
2007-08-07 | plug in texture/sampler state update | Brian | |
2007-08-06 | New st_init_*_functions() to initialize the driver functions table. | Brian | |
We need to do these initializations before initializing the Mesa context because context init involves creating texture/program/etc objects. | |||
2007-08-06 | new texture functions | Brian | |