summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util
Commit message (Collapse)AuthorAgeFilesLines
* gallium: Disable debug break by default on windows.José Fonseca2008-08-121-0/+4
|
* gallium: Allow compilation inside X.José Fonseca2008-08-121-6/+6
|
* util: Utility functions to print to a string buffer without overflowing.José Fonseca2008-08-091-0/+37
|
* gallium: implement a bunch of missing put_tile functionsBrian Paul2008-08-071-26/+137
|
* gallium: enable the call to r16_put_tile_rgba(), silences warningBrian Paul2008-08-071-1/+1
|
* gallium: Simplify format->name conversion.José Fonseca2008-08-071-4/+3
|
* gallium: New function to dump surfaces.José Fonseca2008-08-071-5/+38
|
* gallium: fix clipping/stride bugs in pipe_get_tile_raw(), pipe_put_tile_raw()Brian Paul2008-08-061-6/+6
| | | | | | We need to compute the default dst_stride and src_stride _before_ clipping. After clipping, the width value may have changed. This fixes visible tile glitches in some demos like progs/glsl/texdemo.c
* softpipe: support PIPE_FORMAT_R16_SNORM.Younes Manton2008-08-021-0/+46
|
* Merge tgsi/exec and tgsi/util directories.José Fonseca2008-07-282-6/+6
|
* gallium: Windows miniport portability fixes.José Fonseca2008-07-262-7/+15
|
* win32kprof: Store the profile data as an caller->callee hash table, instead ↵José Fonseca2008-07-221-121/+187
| | | | of a trace.
* gallium: Open a new file when existing profile memory map is exhausted.José Fonseca2008-07-221-34/+113
|
* gallium: Fix typo in function name.José Fonseca2008-07-201-2/+2
|
* gallium: Finer grained is_format_supported.José Fonseca2008-07-192-5/+10
|
* gallium: Expose the ability to get a tile outside a surface.José Fonseca2008-07-182-36/+54
|
* gallium: Be less verbose with debug options messages.José Fonseca2008-07-181-12/+20
|
* gallium: ycbcr_get_tile_rgba allow reading an uneven number of pixels from ↵José Fonseca2008-07-161-4/+28
| | | | yuv surfaces.
* util: Eliminate pipe from the arguments to pipe_get/put_tile_xxx functions.José Fonseca2008-07-132-39/+22
| | | | | You don't need a pipe_context * for this, and all other necessary info is already inside pipe_surface.
* gallium: added a4r4g4b4_put_tile_rgba()Brian Paul2008-07-031-0/+31
|
* gallium: Don't forget to get overllaping blits working again.José Fonseca2008-07-031-0/+1
|
* gallium: Use surface_copy for 1:1 blits.José Fonseca2008-07-031-0/+10
|
* gallium: Drop pipe_texture->cpp and pipe_surface->cpp.José Fonseca2008-06-274-80/+128
| | | | | The chars-per-pixel concept falls apart with compressed and yuv images, where more than one pixel are coded in a single data block.
* gallium: Fix whole source being used in u_blitJakob Bornecrantz2008-06-241-16/+54
|
* gallium: Fix warning in u_blit.hJakob Bornecrantz2008-06-241-0/+1
|
* gallium: code for PIPE_SUBSYSTEM_WINDOWS_USERJonathan White2008-06-231-0/+25
|
* gallium: Use the more portable PIPE_ARCH_* PIPE_CC_* macros instead of ↵José Fonseca2008-06-241-2/+2
| | | | ad-hoc ones.
* gallium: fix Y-inverted copiesBrian Paul2008-06-231-1/+4
| | | | | Don't require the caller to pass a non-intuitive negative src_y coord anymore when doing a src-inverted copy.
* gallium: added some assertionsBrian Paul2008-06-231-0/+6
|
* util: Blit can now copy from texture to surfaceJakob Bornecrantz2008-06-232-3/+112
|
* gallium: Fix warning in u_draw_quad.hJakob Bornecrantz2008-06-231-0/+1
|
* gallium: Add extra parenthesis as advised by gcc.José Fonseca2008-06-191-2/+2
|
* util: Add missing format names.Michal Krol2008-06-191-0/+6
|
* gallium: remove duplicated u_mm.c in file listBrian Paul2008-06-181-2/+1
|
* util: Use pf_get_size().Michal Krol2008-06-141-1/+1
|
* gallium: Support L16 pixel format.José Fonseca2008-06-121-0/+1
|
* gallium: Implement debug_get_num_option.José Fonseca2008-06-121-2/+28
| | | | For numeric options.
* small optimizationAlan Hourihane2008-06-111-2/+10
|
* gallium: Detect buffer overflows in the homegrown memory debugger.José Fonseca2008-06-101-3/+46
|
* gallium: Port util_time functions to windows userspace.José Fonseca2008-06-021-6/+6
|
* util: Fix build after TGSI declaration interface changes.Michal Krol2008-05-311-17/+16
|
* gallium: Port timing functions to WinCE.José Fonseca2008-05-311-18/+56
|
* gallium: Replace getenv by placeholder code on WinCE.José Fonseca2008-05-301-6/+7
| | | | WinCE processes supposedly have environment, but it is not clear which API to use.
* gallium: Windows CE portability fixes.José Fonseca2008-05-281-1/+1
|
* gallium: Poor-man profiler for win32 kernel.José Fonseca2008-05-241-0/+175
|
* scons: New profile build.José Fonseca2008-05-241-0/+1
|
* gallium: Define util_vsprintf.José Fonseca2008-05-091-0/+7
|
* gallium: Disable debug_get_option for release builds on Windows.José Fonseca2008-05-091-0/+4
| | | | | It always creates the C:\gallium.cfg , even if it does not exists, which might be confusing.
* gallium: handle null ptrsBrian Paul2008-05-081-41/+40
|
* gallium: Really free hash entries.José Fonseca2008-05-082-9/+72
| | | | Hook up to the new cso_hash_erase function.