aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium
Commit message (Collapse)AuthorAgeFilesLines
* rbug: Break out of traceJakob Bornecrantz2010-05-1210-0/+2797
|
* gallivm: additional commentsBrian Paul2010-05-122-6/+39
|
* llvmpipe: s/bool/boolean/ in test progsBrian Paul2010-05-123-6/+6
|
* gallivm: s/bool/booleanBrian Paul2010-05-121-3/+3
|
* gallivm: rename vars, update comments, etcBrian Paul2010-05-122-21/+23
|
* r300g: Correct viewport setup for SW TCL.Corbin Simpson2010-05-124-12/+9
| | | | | glxgears now renders in the right place on-screen, although it is still rather...psychedelic.
* r300g: Add VBO dumper for SW TCL.Corbin Simpson2010-05-121-0/+19
| | | | Commented out, not easily enabled. *Very* noisy.
* r300g: Immediate mode won't work with SW TCL right now.Corbin Simpson2010-05-121-1/+9
| | | | | This could be done later of course. SW TCL should have a much different threshold because it's much more worth it.
* r300g: Fix indentation.Corbin Simpson2010-05-121-10/+10
|
* gallivm: comment out LLVMUnionTypeKind caseBrian Paul2010-05-121-0/+2
|
* gallivm: rename texel result paramBrian Paul2010-05-122-17/+22
| | | | Be clear that this parameter returns four texel channel results.
* gallivm: add a few commentsBrian Paul2010-05-121-3/+3
|
* gallivm/llvmpipe: add const qualifiersBrian Paul2010-05-124-14/+14
|
* gallivm: added lp_typekind_name() util functionBrian Paul2010-05-122-0/+49
|
* tgsi: also count instructions in tgsi_scan_shader()Brian Paul2010-05-122-4/+4
|
* llvmpipe: Handle PIPE_CAP_GUARD_*.José Fonseca2010-05-121-0/+5
| | | | Without asserting.
* llvmpipe: Use RAST_WHOLE/EDGE_TEST in more places.José Fonseca2010-05-124-7/+8
|
* llvmpipe: Move the opaque flag computation into the variant.José Fonseca2010-05-122-14/+15
|
* svga: Advertise shader limits.José Fonseca2010-05-121-0/+51
|
* llvmpipe: Advertise (gallivm's) shader limits.José Fonseca2010-05-121-0/+32
|
* softpipe: Adverstise (tgsi_exec's) shader limits.José Fonseca2010-05-122-4/+36
|
* gallium: Add new fine grained PIPE_CAP_xx for shader limits.José Fonseca2010-05-122-0/+40
| | | | | PIPE_CAP_GLSL and PIPE_CAP_SM3 not removed yet, as opcode support is not yet covered.
* gallium: Make PIPE_CAP_xxx enums.José Fonseca2010-05-1213-64/+69
|
* st/egl: Link egl-apis to LLVM when enabled.Chia-I Wu2010-05-121-0/+10
| | | | This is required when a client API (i.e. OpenGL) uses the draw module.
* mesa/es: Merge back to core mesa.Chia-I Wu2010-05-121-2/+2
| | | | | | With the omit list gone, there are not too many differences in building core mesa and ES overlay. Remove the mesa/es and build both of them in src/mesa/Makefile.
* mesa/st+tgsi: Provide a free callback to match with ureg_get_tokens().José Fonseca2010-05-112-0/+10
| | | | | | This fixes crashes with the memory debugging routines on Windows. NOTE: This is a candidate for the 7.8 stable branch
* llvmpipe: fix texture image size calculationBrian Paul2010-05-111-1/+1
| | | | | | We were allocating too much memory for linear layouts. The block_size factor is already included in the row_stride and should not be used in the img_stride calculation. This is typically a 4x savings!
* llvmpipe: add a simple resource tracking/debug featureBrian Paul2010-05-112-0/+58
| | | | | | If debug build, keep a linked list of all allocated resources (textures). The llvmipe_print_resources() function can be called from a debugger to print a list of all resources, their sizes, total size, etc.
* llvmpipe: remove trailing whitespace, rewrap commentBrian Paul2010-05-111-3/+2
|
* scons: Export shouldn't be part of the if stanza.José Fonseca2010-05-111-1/+1
|
* st/xorg: Fix SCons build.Michel Dänzer2010-05-111-1/+3
|
* tests/graw: raw -> grawJosé Fonseca2010-05-113-1/+1
| | | | for consistency
* gallium: Add llvmpipe support to st/egl.Chia-I Wu2010-05-112-1/+6
| | | | Update Makefile rules for st/egl.
* llvmpipe: enable PIPE_CAP_INDEP_BLEND_ENABLEBrian Paul2010-05-101-1/+1
| | | | | This enables the GL_EXT_draw_buffers2 extension. Tested with progs/tests/drawbuffers2.
* llvmpipe: fix up indexing of blend/colormask state for render targetsBrian Paul2010-05-105-24/+47
|
* llvmpipe: update image dump/debug codeBrian Paul2010-05-101-16/+17
|
* llvmpipe: add, update, rewrap commentsBrian Paul2010-05-102-6/+16
|
* gallivm/llvmpipe: move an old comment to a better locationBrian Paul2010-05-102-11/+11
|
* svga: Fill in is_resource_referenced callback.José Fonseca2010-05-101-0/+1
|
* gallivm: Silent warning.José Fonseca2010-05-101-1/+1
|
* gallivm: Add missing lvalue.José Fonseca2010-05-101-1/+1
|
* i965g: link with software- wrapper winsys and drm api helperJakob Bornecrantz2010-05-101-0/+2
|
* gallium: Add software drm api helper to scons buildJakob Bornecrantz2010-05-102-0/+22
|
* gallium: Add pipe wrapper software winsys to scons buildJakob Bornecrantz2010-05-102-0/+26
|
* i965g: fix resource creation recursion bugRoland Scheidegger2010-05-101-1/+1
|
* i965g: add brw_state_debug.c to SConscriptRoland Scheidegger2010-05-101-1/+1
|
* i965g: avoid void * arithmeticRoland Scheidegger2010-05-101-1/+1
|
* gallivm: Temporarily disable custom LLVMDumpValue on MSVC.José Fonseca2010-05-101-2/+3
| | | | | | | Seeing very weird crashes during std::cout initialization. The fault probably lies in the way I build LLVM on MSVC, but disable for now to allow more time to investigate.
* gallivm: cosf/sinf are macros on MSVC.José Fonseca2010-05-101-2/+12
| | | | So taking the function address does not work.
* gallivm: Add an alternative to LLVMDumpValue that works with Windows GUI apps.José Fonseca2010-05-087-9/+113
|