summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util
AgeCommit message (Collapse)Author
2010-05-20gallium: fix/update tex target dumpingBrian Paul
2010-05-20gallium: added util_dump_logicop()Brian Paul
2010-05-19util: Remove unused imports from Python scripts.Vinson Lee
2010-05-19util: Remove unnecessary semicolons in Python scripts.Vinson Lee
2010-05-15util: Remove unused cruft.José Fonseca
2010-05-14util: fix copy_rect stride in default transfer_inline_writeKeith Whitwell
2010-05-13util: Fix ptr -> int conversion.José Fonseca
2010-05-12util: Add function to dump PIPE_STENCIL_OP_xxxJosé Fonseca
2010-05-06util: Recognize FALSE and F in debug_get_bool_optionJakob Bornecrantz
Concidering that we actually print FALSE when displaying the option we should also accept that value.
2010-05-06gallium: untrack u_indices_gen.c and u_indices_gen.cJosé Fonseca
These files are built with make and removed with make clean, so it does not seem necessary to track them. Looking at the Makefile, it seems that the two u_indices_* files are handled similarly to u_format_srgb.c u_format_table.c and u_half.c, and these 3 files are already untracked and in .gitignore Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: José Fonseca <jfonseca@vmware.com>
2010-05-06gallium: untrack u_indices_gen.c and u_indices_gen.cXavier Chantry
These files are built with make and removed with make clean, so it does not seem necessary to track them. Looking at the Makefile, it seems that the two u_indices_* files are handled similarly to u_format_srgb.c u_format_table.c and u_half.c, and these 3 files are already untracked and in .gitignore Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: José Fonseca <jfonseca@vmware.com>
2010-05-04util: Remove unnecessary headers.Vinson Lee
2010-05-04gallium/util: added is_format_compressed()Brian Paul
2010-05-04u_blitter: fix creating fragment shadersWiktor Janas
See FDO bug #27887. Signed-off-by: Marek Olšák <maraeo@gmail.com>
2010-05-03gallium: move surface utility functions into u_surface.cBrian Paul
This is a better place than in u_rect.c
2010-05-03gallium: move framebuffer utility functions into a new fileBrian Paul
2010-05-03util: add util_format_short_nameMarek Olšák
2010-05-03util: add util_format_is_plainMarek Olšák
2010-05-03gallium/util: print \n after DXTn printfLuca Barbieri
Re-add commit 2d65a7caf97684aa654088c76a74b632fbd685fa Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: José Fonseca <jfonseca@vmware.com>
2010-04-30util: Add missing break statement in u_caps.cJakob Bornecrantz
Thanks Vinson.
2010-04-29util: Update caps after helpfull inputJakob Bornecrantz
In no particular order: * Make list const * Add function comments * Clearly state that demo lists are not complete * Fix whitespace * Use __FUNCTION__ instead of __func__ * Add unimplemented check which always fail Thanks Brian and Keith.
2010-04-29util: Add small caps checker helperJakob Bornecrantz
2010-04-29util: Format error format string as the rest of the pipe formatsJakob Bornecrantz
2010-04-28gallium/util: convert //-style commentsBrian Paul
2010-04-28gallium/util: convert //-style commentsBrian Paul
2010-04-27util: fix assorted problems in the image packing functionsBrian Paul
2010-04-24util: Add missing static keyword.José Fonseca
2010-04-24util: Fix unsigned <-> ptr conversions.José Fonseca
2010-04-23gallium: In option helpers, move assignment outside of if clause.Vinson Lee
This silences Coverity assign_where_compare_meant warnings.
2010-04-23gallium/util: document that pack/unpack strides are in bytesBrian Paul
2010-04-23gallium: Add static get option helpersJakob Bornecrantz
2010-04-23gallium: Add option to not print optionsJakob Bornecrantz
2010-04-23gallium: s/free/FREE/ and same for friends.José Fonseca
Based on Stephen Johnson's feedback.
2010-04-22u_format: Reduce code duplication.José Fonseca
2010-04-21gallium/util: Fix deviation calculation in u_cache.Vinson Lee
The approximate deviation calculation was using the entire cache's total instead of each cache entry's total.
2010-04-20gallium/util: remove bogus return statementBrian Paul
util_surfaces_do_detach() is a void-valued function.
2010-04-20gallium: replace pipe_resource::_usage with pipe_resource::usageBrian Paul
2010-04-19gallium/util: specify binding type for blit src textureBrian Paul
Fixes fd.o bug 27711.
2010-04-18auxiliary: Move loop variable declaration outside for loop.Vinson Lee
Fixes MSVC build.
2010-04-18auxiliary: Initialize variable.Vinson Lee
2010-04-18u_inlines: split pipe_surface_init in pipe_surface_reset and *_initLuca Barbieri
2010-04-18u_surfaces: silence warningLuca Barbieri
2010-04-18auxiliary: add util_dirty_surfaces to track dirty render temporariesLuca Barbieri
2010-04-18auxiliary: add util_surfaces to track a resource's pipe_surface structsLuca Barbieri
2010-04-18u_inlines: add function to initialize pipe_surfaceLuca Barbieri
2010-04-18u_blitter: add support for saving vertex buffersLuca Barbieri
Currently r300g does not save vertex buffer on blitter calls. It gets away with it because the current Mesa state tracker usually resets vertex buffers on every draw calls. However, this is wrong. nvfx won't be lucky because it needs to use the blitter inside draw calls.
2010-04-17gallium/util: IgnoresJakob Bornecrantz
2010-04-13u_blitter: Coords are normalized.Corbin Simpson
Thanks to Luca Barbieri for spotting this one.
2010-04-13gallium: Remove pipe_screen::update_buffer.Chia-I Wu
It has no user after the removal of st_public. Plus, it has never been implemented by a pipe driver or winsys.
2010-04-13util: Fix util_dynarray_trim().Michal Krol