summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/SConscript
Commit message (Collapse)AuthorAgeFilesLines
* scons: Don't force stabs debug format for Mingw.José Fonseca2013-05-211-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - recent gdb handles DWARF fine (tested both with version 7.1.90.20100730 from mingw-w64 project, and 7.5-1 from mingw project) - http://people.freedesktop.org/~jrfonseca/bfdhelp/ was updated to handle DWARF - stabs requires ugly hacks to prevent compilation failures - mixing stabs/dwarf prevents proper backtraces (which is inevitable, given that the MinGW C runtime is pre-built with DWARF) For example, without this change I get: (gdb) bt #0 _wassert (_Message=0xf925060 L"Num < NumOperands && \"Invalid child # of SDNode!\"", _File=0xf60b488 L"llvm/include/llvm/CodeGen/SelectionDAGNodes.h", _Line=534) at ../../../../mingw-w64-crt/misc/wassert.c:51 #1 0x0368996b in _assert (_Message=0x39d7ee4 "Num < NumOperands && \"Invalid child # of SDNode!\"", _File=0x39d7e94 "llvm/include/llvm/CodeGen/SelectionDAGNodes.h", _Line=534) at ../../../../mingw-w64-crt/misc/wassert.c:44 #2 0x00000004 in ?? () #3 0x00000004 in ?? () #4 0x0f60b488 in ?? () #5 0x00000000 in ?? () While with this change I get: (gdb) bt #0 _wassert (_Message=0xfb982e8 L"Num < NumOperands && \"Invalid child # of SDNode!\"", _File=0xefbcb40 L"llvm/include/llvm/CodeGen/SelectionDAGNodes.h", _Line=534) at ../../../../mingw-w64-crt/misc/wassert.c:51 #1 0x039c996b in _assert (_Message=0x3d17f24 "Num < NumOperands && \"Invalid child # of SDNode!\"", _File=0x3d17ed4 "llvm/include/llvm/CodeGen/SelectionDAGNodes.h", _Line=534) at ../../../../mingw-w64-crt/misc/wassert.c:44 #2 0x033111cc in getOperand (Num=4, this=<optimized out>) at llvm/include/llvm/CodeGen/SelectionDAGNodes.h:534 #3 getOperand (i=4, this=<optimized out>) at llvm/include/llvm/CodeGen/SelectionDAGNodes.h:779 #4 llvm::SelectionDAG::getNode (this=0xf00cb08, Opcode=79, DL=..., VT=..., N1=..., N2=...) at llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:2859 #5 0x03377b20 in llvm::SelectionDAGBuilder::visitExtractElement (this=0xfb45028, I=...) at llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp:2803 [...] Reviewed-by: Brian Paul <brianp@vmware.com>
* util: Reimplement half <-> float conversions.James Benton2012-06-291-7/+0
| | | | | | | | | | Removed u_half.py used to generate the table for previous method. Previous implementation of float to half conversion was faulty for denormalised and NaNs and would require extra logic to fix, thus making the speedup of using tables irrelevant. Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
* scons: don't compile some files with -gstabs if using mingw32Brian Paul2011-08-261-0/+4
| | | | | | Compiling some (large) files with i686-pc-mingw32-gcc 4.2.2 (at least) and the -gstabs option triggers a compiler error. Use this work-around to simply compile the effected files without -gstabs.
* auxiliary: share the source listsChia-I Wu2011-08-231-193/+8
| | | | | | | | | | Factor out source lists from Makefile to Makefile.sources, and let Makefile, SConscript, and Android.mk share it. Note that files in $(GENERATED_SOURCES) are removed from $(C_SOURCES). Acked-by: José Fonseca <jfonseca@vmware.com> Acked-by: Chad Versace <chad@chad-versace.us>
* [g3dvl] sync SConscript with MakefileChristian König2011-07-111-3/+9
|
* Merge remote-tracking branch 'origin/master' into pipe-videoChristian König2011-06-091-1/+1
|\ | | | | | | | | | | Conflicts: src/gallium/tests/unit/u_format_test.c src/gallium/winsys/r600/drm/r600_hw_context.c
| * draw: rename draw_vs_varient.c to draw_vs_variant.cBrian Paul2011-06-071-1/+1
| |
* | Merge remote branch 'origin/master' into pipe-videoChristian König2011-04-231-0/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configs/linux-dri src/gallium/drivers/r600/r600_pipe.c src/gallium/drivers/r600/r600_state.c src/gallium/include/pipe/p_format.h src/gallium/tests/graw/fragment-shader/frag-abs.sh src/gallium/tests/graw/fragment-shader/frag-add.sh src/gallium/tests/graw/fragment-shader/frag-cb-1d.sh src/gallium/tests/graw/fragment-shader/frag-cb-2d.sh src/gallium/tests/graw/fragment-shader/frag-dp3.sh src/gallium/tests/graw/fragment-shader/frag-dp4.sh src/gallium/tests/graw/fragment-shader/frag-dst.sh src/gallium/tests/graw/fragment-shader/frag-ex2.sh src/gallium/tests/graw/fragment-shader/frag-face.sh src/gallium/tests/graw/fragment-shader/frag-flr.sh src/gallium/tests/graw/fragment-shader/frag-frc.sh src/gallium/tests/graw/fragment-shader/frag-kil.sh src/gallium/tests/graw/fragment-shader/frag-lg2.sh src/gallium/tests/graw/fragment-shader/frag-lit.sh src/gallium/tests/graw/fragment-shader/frag-lrp.sh src/gallium/tests/graw/fragment-shader/frag-mad-immx.sh src/gallium/tests/graw/fragment-shader/frag-mad.sh src/gallium/tests/graw/fragment-shader/frag-max.sh src/gallium/tests/graw/fragment-shader/frag-min.sh src/gallium/tests/graw/fragment-shader/frag-mov.sh src/gallium/tests/graw/fragment-shader/frag-mul.sh src/gallium/tests/graw/fragment-shader/frag-rcp.sh src/gallium/tests/graw/fragment-shader/frag-rsq.sh src/gallium/tests/graw/fragment-shader/frag-sge.sh src/gallium/tests/graw/fragment-shader/frag-slt.sh src/gallium/tests/graw/fragment-shader/frag-srcmod-abs.sh src/gallium/tests/graw/fragment-shader/frag-srcmod-absneg.sh src/gallium/tests/graw/fragment-shader/frag-srcmod-neg.sh src/gallium/tests/graw/fragment-shader/frag-srcmod-swz.sh src/gallium/tests/graw/fragment-shader/frag-sub.sh src/gallium/tests/graw/fragment-shader/frag-tempx.sh src/gallium/tests/graw/fragment-shader/frag-xpd.sh src/gallium/tests/graw/vertex-shader/vert-abs.sh src/gallium/tests/graw/vertex-shader/vert-add.sh src/gallium/tests/graw/vertex-shader/vert-arl.sh src/gallium/tests/graw/vertex-shader/vert-arr.sh src/gallium/tests/graw/vertex-shader/vert-cb-1d.sh src/gallium/tests/graw/vertex-shader/vert-cb-2d.sh src/gallium/tests/graw/vertex-shader/vert-dp3.sh src/gallium/tests/graw/vertex-shader/vert-dp4.sh src/gallium/tests/graw/vertex-shader/vert-dst.sh src/gallium/tests/graw/vertex-shader/vert-ex2.sh src/gallium/tests/graw/vertex-shader/vert-flr.sh src/gallium/tests/graw/vertex-shader/vert-frc.sh src/gallium/tests/graw/vertex-shader/vert-lg2.sh src/gallium/tests/graw/vertex-shader/vert-lit.sh src/gallium/tests/graw/vertex-shader/vert-lrp.sh src/gallium/tests/graw/vertex-shader/vert-mad.sh src/gallium/tests/graw/vertex-shader/vert-max.sh src/gallium/tests/graw/vertex-shader/vert-min.sh src/gallium/tests/graw/vertex-shader/vert-mov.sh src/gallium/tests/graw/vertex-shader/vert-mul.sh src/gallium/tests/graw/vertex-shader/vert-rcp.sh src/gallium/tests/graw/vertex-shader/vert-rsq.sh src/gallium/tests/graw/vertex-shader/vert-sge.sh src/gallium/tests/graw/vertex-shader/vert-slt.sh src/gallium/tests/graw/vertex-shader/vert-srcmod-abs.sh src/gallium/tests/graw/vertex-shader/vert-srcmod-absneg.sh src/gallium/tests/graw/vertex-shader/vert-srcmod-neg.sh src/gallium/tests/graw/vertex-shader/vert-srcmod-swz.sh src/gallium/tests/graw/vertex-shader/vert-sub.sh src/gallium/tests/graw/vertex-shader/vert-xpd.sh src/gallium/tools/trace/dump.py src/gallium/tools/trace/format.py src/gallium/tools/trace/model.py src/gallium/tools/trace/parse.py
| * draw: Prevent out-of-bounds vertex buffer access.José Fonseca2011-04-011-0/+1
| | | | | | | | Based on some code and ideas from Keith Whitwell.
* | Merge remote branch 'origin/master' into pipe-videoChristian König2011-03-191-4/+3
|\ \ | |/ | | | | | | | | Conflicts: src/gallium/drivers/r600/r600_asm.c src/gallium/tests/unit/SConscript
| * gallivm: Use LLVM MC disassembler, instead of udis86.José Fonseca2011-03-131-4/+1
| | | | | | | | | | Included in LLVM 2.7+. Unlink udis86, should support all instructions that LLVM can emit.
| * gallium/util: new polygon stipple utility helperBrian Paul2011-03-101-0/+1
| | | | | | | | | | | | | | The polygon stipple fallback does not have to be implemented in the draw module (it doesn't need window coords, etc). Drivers can use this utility and avoid sw vertex fallbacks if pstipple is enabled. Note: this is WIP and not used by any driver yet.
| * gallium/util: add LATC supportMarek Olšák2011-03-081-0/+1
| | | | | | | | | | | | Again, a lot of code is shared with RGTC. The layout is UTIL_FORMAT_LAYOUT_RGTC, because LATC is just swizzled RGTC.
* | Merge remote branch 'origin/master' into pipe-videoChristian König2011-03-031-0/+1
|\ \ | |/
| * gallium: Add u_format_rgtc.c to SConscript.Vinson Lee2011-03-011-0/+1
| |
* | Merge remote branch 'origin/master' into pipe-videoChristian König2011-02-241-1/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | Conflicts: configure.ac src/gallium/auxiliary/Makefile src/gallium/auxiliary/SConscript src/gallium/drivers/r600/r600_asm.c src/gallium/drivers/r600/r600_asm.h src/gallium/drivers/r600/r600_shader.c src/gallium/drivers/r600/r600_state_inlines.h src/gallium/drivers/r600/r600_texture.c
| * util: import a new vertex buffer managerMarek Olšák2011-02-071-0/+1
| | | | | | | | | | | | | | This code has originally matured in r300g and was ported to r600g several times. It was obvious it's a code duplication. See also comments in the header file.
* | Merge remote branch 'origin/master' into pipe-videoChristian König2010-12-111-1/+1
|\ \ | |/ | | | | | | | | Conflicts: src/gallium/drivers/r600/r600_pipe.c src/gallium/drivers/r600/r600_texture.c
| * util: rename u_mempool -> u_slabMarek Olšák2010-11-301-1/+1
| |
| * gallium: Remove redundant sw and debug target helpersJakob Bornecrantz2010-11-171-1/+0
| |
* | Merge remote branch 'origin/master' into pipe-videoChristian König2010-11-111-34/+37
|\ \ | |/
| * scons: Revamp how to specify targets to build.José Fonseca2010-11-011-34/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use scons target and dependency system instead of ad-hoc options. Now is simply a matter of naming what to build. For example: scons libgl-xlib scons libgl-gdi scons graw-progs scons llvmpipe and so on. And there is also the possibility of scepcified subdirs, e.g. scons src/gallium/drivers If nothing is specified then everything will be build. There might be some rough corners over the next days. Please bare with me.
* | Merge branch 'master' of ssh://git.freedesktop.org/git/mesa/mesa into pipe-videoChristian König2010-10-281-0/+1
|\ \ | |/ | | | | | | Conflicts: src/gallium/include/pipe/p_format.h
| * gallivm: More detailed analysis of tgsi shaders.José Fonseca2010-10-111-0/+1
| | | | | | | | To allow more optimizations, in particular for direct textures.
* | Merge branch 'master' of ssh://git.freedesktop.org/git/mesa/mesa into pipe-videoChristian König2010-10-121-20/+40
|\ \ | |/ | | | | | | | | | | | | | | | | | | Conflicts: configure.ac src/gallium/drivers/nvfx/Makefile src/gallium/include/pipe/p_defines.h src/gallium/include/pipe/p_screen.h src/gallium/include/state_tracker/dri1_api.h src/gallium/include/state_tracker/drm_api.h src/gallium/winsys/nouveau/drm/nouveau_drm_api.c
| * Merge branch 'sprite-coord'Brian Paul2010-09-211-0/+1
| |\
| | * gallium: rework handling of sprite_coord_enable stateBrian Paul2010-09-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement the pipe_rasterizer_state::sprite_coord_enable field in the draw module (and softpipe) according to what's specified in the documentation. The draw module can now add any number of extra vertex attributes to a post-transformed vertex and generate texcoords for those attributes per sprite_coord_enable. Auto-generated texcoords for sprites only worked for one texcoord unit before. The frag shader gl_PointCoord input is now implemented like any other generic/texcoord attribute. The draw module now needs to be informed about fragment shaders since we need to look at the fragment shader's inputs to know which ones need auto-generated texcoords. Only softpipe has been updated so far.
| * | util/r300g: split the r300 index buffer modifier functions out to utilDave Airlie2010-09-201-0/+1
| |/ | | | | | | | | | | These can be used by other drivers, like r600g. Signed-off-by: Dave Airlie <airlied@redhat.com>
| * gallivm: Start collecting bitwise arithmetic helpers in a new module.José Fonseca2010-09-161-0/+1
| |
| * gallivm: expand AoS sampling to cover all filtering modesBrian Paul2010-09-151-0/+1
| | | | | | | | ...and all texture targets (1D/2D/3D/CUBE).
| * gallivm: Basic AoS TGSI -> LLVM IR.José Fonseca2010-09-111-0/+1
| | | | | | | | Essentially a variation of the SoA version.
| * auxiliary: Add missing files to SCons build.Vinson Lee2010-08-211-14/+16
| | | | | | | | | | Add u_linear.c and u_linkages.c to SCons build. Reorder list of files to be more alphabetical.
| * auxiliary: add reference count debugging codeLuca Barbieri2010-08-201-0/+1
| |
| * os_stream: add printf facilityLuca Barbieri2010-08-201-0/+1
| |
| * auxiliary: add functions to describe gallium objectsLuca Barbieri2010-08-201-0/+1
| |
| * draw: Remove varray and vcache.Chia-I Wu2010-08-161-3/+0
| | | | | | | | They have been deprecated by vsplit.
| * draw: Add vsplit frontend.Chia-I Wu2010-08-161-0/+1
| | | | | | | | | | | | | | | | vsplit is based on varray. It sets the split flags when a primitive is splitted. It also has support for indexed primitives. For indexed primitives, unlike vcache, vsplit splits the primitives instead of decomposes them.
| * auxiliary: Add u_staging.c to SCons build.Vinson Lee2010-08-111-0/+1
| | | | | | | | | | This is a follow-up to commit b85c71d4e1e4ed788be834dff5b7b3c0cd0402ac which added u_staging.c to make.
| * gallivm: added lp_build_assert() function to make assertions in LLVM codeBrian Paul2010-07-291-0/+1
| |
| * scons: Use the current python executable for code generation.José Fonseca2010-07-291-2/+2
| | | | | | | | Less susceptible to be broken.
| * util: add a memory pool for equally sized memory allocationsMarek Olšák2010-07-191-0/+1
| | | | | | | | malloc/free are in O(1).
| * scons: Fix Cygwin build.Vinson Lee2010-07-161-3/+3
| | | | | | | | The Cygwin SCons build needed several file names to be fully qualified.
| * draw: implement vertex texture sampling using llvmZack Rusin2010-07-061-1/+2
| |
| * gallivm: Move gather functions to its own module.José Fonseca2010-07-021-0/+1
| | | | | | | | | | They need to grow, and they provide basic functionality which is not specific to sampling.
| * gallivm: Code generate YUV format unpacking.José Fonseca2010-07-021-0/+1
| |
| * draw: limit the number of vertex shader variants kept aroundZack Rusin2010-06-251-1/+2
| | | | | | | | | | | | | | we used to create and cache unltimited number of variant, this change limits the number of variants kept around to a fixed number. the change is based on a similar patch by Roland for llvmpipe fragment shaders.
| * gallium: a lot more complete implementation of stream outputZack Rusin2010-06-081-0/+1
| | | | | | | | | | | | | | interface wise we have everything needed by d3d10 and gl transform feedback. the draw module misses implementation of some corner cases (e.g. when stream output wants different number of components per output than normal rendering paths)
| * gallivm: Factor out the quad derivative code into a single place. Fix ddy.José Fonseca2010-06-031-0/+1
| | | | | | | | For ddy it should be (bottom - top).
| * gallivm: Add an alternative to LLVMDumpValue that works with Windows GUI apps.José Fonseca2010-05-081-0/+1
| |
| * gallium: move framebuffer utility functions into a new fileBrian Paul2010-05-031-0/+1
| |