summaryrefslogtreecommitdiff
path: root/configs
AgeCommit message (Collapse)AuthorFilesLines
2009-10-30Add --with-dri-searchpath argumentChow Loong Jin1-1/+1
* Add an extra argument to configure which allows for specifying different DRI driver search paths to libGL (FDO #24766) Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-09-29mesa: bump version to 7.6.1Brian Paul1-1/+1
2009-09-15Merge branch 'mesa_7_5_branch' into mesa_7_6_branchBrian Paul1-0/+1
2009-09-12Use CFLAGS as HOST_CFLAGS by defaultDan Nicholson1-0/+1
Unless we're cross compiling, the HOST_CFLAGS should be the same as the normal CFLAGS. This allows the x86 and x86_64 asm to be built correctly with a native compiler using -m32/-m64. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-09-08mesa: bump version to 7.5.2Brian Paul1-1/+1
I'm not 100% sure there'll be a 7.5.2 release, but just in case.
2009-08-29llvmpipe: use the udis86 lib to print the x86 assembly codeBrian Paul1-2/+2
2009-08-29llvmpipe: re-enable other gallium driversBrian Paul1-2/+2
No more symbol collisions between drivers, AFAICT.
2009-08-29llvmpipe: repurpose linux-llvm config to build the llvmpipe driverBrian Paul1-5/+12
The gallivm module is no longer built. If/when gallivm is resuscitated we can revisit this.
2009-08-21egl: Remove dependency on libX11.Chia-I Wu1-1/+1
libX11 is used to determine the screen number, which is in turned used to determine the DRI driver. However, the sysfs interface for determining the DRI driver is gone, and no working driver depends on this mechanism. Display string parsing is moved to a new function, _eglSplitDisplayString. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-07-22mesa: bump version to 7.5.1Brian Paul1-1/+1
2009-07-17egl: Support per-thread info.Chia-I Wu1-1/+1
This commit introduces a "current" system to manage per-thread info. It uses TLS, if GLX_USE_TLS is defined, or pthread, if PTHREADS is defined. If none of them are defined, it uses a dummy implementation that is just like before. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-06-26configs/darwin: Set CXX to g++.Vinson Lee1-1/+1
2009-06-24identity: Add new identity driverJakob Bornecrantz1-1/+1
This driver does no transformation of the gallium calls going to the real driver, like the identity matrix. It is intended to be the basis for transforming and/or debug drivers like trace and rbug. Authors of this patch are: Michal Krol, orignal heavy lifting. José Fonesca, object wrapping code stolen from trace. Jakob Bornecrantz, put it all toghether and renamed a stuff.
2009-06-07Merge remote branch 'origin/master' into radeon-rewriteDave Airlie2-2/+6
2009-06-01Use separate $(MINSTALL) for installing librariesDan Nicholson2-1/+5
The special feature of bin/minstall to copy symlinks is only ever needed when installing libraries which may have .so symlinks. All the headers and directories can use a normal install program. These two modes are separated as $(INSTALL) and $(MINSTALL) to allow the user (or autoconf) to override installing normal files as they please. An autoconf check for the install program has been added and will be used in preference to minstall when available. Fixes bug 16053.
2009-06-01rbug: Add Gallium Remote Debugger Protocol codeJakob Bornecrantz1-1/+1
This is the (de)marshalling and connection managment code
2009-05-20Merge branch 'master' into radeon-rewriteMichel Dänzer1-0/+37
Conflicts: src/mesa/drivers/dri/r300/r300_context.c src/mesa/drivers/dri/r300/r300_texstate.c
2009-05-18Merge branch 'mesa_7_5_branch'Brian Paul1-0/+37
Conflicts: Makefile src/mesa/main/version.h
2009-05-18mesa: added linux-osmesa-static configBrian Paul1-0/+37
Contributed by Nicolas Noble. See SF bug #2792536
2009-05-10Merge commit 'origin/master' into radeon-rewriteJerome Glisse4-8/+6
Conflicts: src/mesa/drivers/dri/r200/r200_state.c src/mesa/drivers/dri/r300/r300_context.h src/mesa/drivers/dri/r300/r300_fragprog.c src/mesa/drivers/dri/r300/r300_state.c src/mesa/drivers/dri/r300/r300_texmem.c src/mesa/drivers/dri/r300/r300_texstate.c src/mesa/drivers/dri/r300/r500_fragprog.c src/mesa/drivers/dri/radeon/radeon_screen.c src/mesa/drivers/dri/radeon/radeon_state.c
2009-05-01actually add debug to the debug configZack Rusin1-0/+1
2009-05-01mesa: bump version to 7.6 (devel)Brian Paul1-1/+1
2009-05-01configs: bump MESA_MINOR to 5Brian Paul1-1/+1
2009-04-30mesa: update linux-static, linux-x86-static configsBrian Paul2-7/+4
2009-04-22Merge remote branch 'origin/master' into radeon-rewriteDave Airlie1-1/+1
2009-04-17dri: build DRI swrast driver tooBrian Paul1-1/+1
2009-03-20Merge remote branch 'main/master' into radeon-rewriteDave Airlie6-15/+26
Conflicts: src/mesa/drivers/dri/r300/r300_cmdbuf.c src/mesa/drivers/dri/r300/r300_state.c src/mesa/drivers/dri/r300/r300_swtcl.c src/mesa/drivers/dri/r300/radeon_ioctl.c src/mesa/drivers/dri/radeon/radeon_screen.c
2009-03-12config: add -Wdeclaration-after-statement to linux configBrian Paul1-1/+2
Should help to catch Windows build issues earlier.
2009-03-09linux-llvm config: Linking with required llvm libsKamalneet Singh1-3/+3
2009-03-06Updated darwin config for when X11 is not in the same location as we're ↵Jeremy Huddleston1-6/+8
installing to
2009-03-06st/xorg: Install to XORG_DRIVER_INSTALL_DIRJoel Bosveld2-0/+6
2009-02-25autoconf: Fixup EGL buildDan Nicholson1-0/+1
This gets the needed libraries pulled in for libEGL for autoconf.
2009-02-25egl: use new EGL_LIB_DEPS to pass library dependencies to mklib when ↵Brian Paul1-0/+1
building libEGL EGL_LIB_DEPS may need fine-tuning for some platforms. It's only defined in configs/default ATM.
2009-02-20gallium: s/GALLIUM_DRIVER_DIRS/GALLIUM_DRIVERS_DIRS/Jakob Bornecrantz3-5/+5
2009-02-19gallium: Renable pipe drivers disabled during vbuf changesJakob Bornecrantz1-1/+1
i965simple is not enabled because it is still broken.
2009-02-15radeon: add cflags to decide whether to link libdrm_radeon or not.Dave Airlie1-0/+2
You don't need libdrm_radeon for the legacy driver to build, only for the experimental mm/cs paths.
2009-02-17softpipe: update to new draw interfacesKeith Whitwell1-1/+1
2009-02-11autoconf: Adjust to new asm SOURCES variablesDan Nicholson1-2/+2
Commit 90b2beb661f630966788a6e909dc759c99e38973 changed the assembly variables. Without this change, the glapi assembly wasn't being built when it was supposed to, resulting in missing symbols in libGL. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-02-10cell: asst build fixes in linux-cell configBrian Paul1-1/+4
Add -D_SVID_SOURCE to silence warnings when building glx files. Don't build the non-gallium drivers.
2009-02-11gallium: Update autoconf to latest gallium buildJakob Bornecrantz1-2/+5
2009-02-11gallium: Disable nouveau by defaultJakob Bornecrantz2-2/+2
Most piep drivers should be able to build by default, but since the nouveau ones depend drm they can't be enabled by default.
2009-02-10mesa: Build both software rasterizers for debugJakob Bornecrantz1-1/+1
But put the gallium one in lib/gallium
2009-02-10gallium: Introduce new subdirs build variablesJakob Bornecrantz2-1/+6
(based on gallium-xorg-driver/commit 270ce504052d415870a25ab59818b2309eb8ac13)
2009-02-10Revert "cell: update linux-cell config"Jakob Bornecrantz1-1/+1
This reverts commit 22c6c1eaad49692416f45bcbbcdc6424aea2da7c. Need to revert this since we reverted commited this depended on.
2009-02-10Revert "mesa: added new linux-gallium and linux-gallium-debug configs"Jakob Bornecrantz3-32/+10
This reverts commit abbe96cb6e7581a52652030e40442b943a482840. It only reverts parts of the commit the other parts where related to libmesagallium changes.
2009-02-09re-add MSAA supportBrian Paul1-10/+3
(cherry picked from commit f7d80aa00611917bc8ce637136d982b151b8f44f) This also involved adding the new MSAA fields to driCreateConfigs(). Also, re-add prog_instructions->Sampler field for i965 driver. Will have to revisit that.
2009-02-09cell: update linux-cell configBrian Paul1-1/+1
2009-02-09mesa: added new linux-gallium and linux-gallium-debug configsBrian Paul3-10/+32
Also, remove gallium-related things from configs/default. They're in linux-gallium now. So the default builds are the same as they have been for Mesa/master.
2009-02-09mesa: merge gallium-0.2 into gallium-master-mergeBrian Paul39-119/+352
Merge commit 'origin/gallium-0.2' into gallium-master-merge Conflicts: Makefile docs/relnotes-7.4.html docs/relnotes.html src/mesa/drivers/dri/i965/brw_wm.h src/mesa/main/imports.c src/mesa/main/mtypes.h src/mesa/main/texcompress.c src/mesa/main/texenvprogram.c src/mesa/main/version.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_save_draw.c
2009-02-09mesa: autoconf fixes for OS XSiddhartha Chaudhuri1-0/+7
See bug report 17566.