summaryrefslogtreecommitdiffstats
path: root/configs/default
Commit message (Collapse)AuthorAgeFilesLines
* configs: added vega to default GALLIUM_STATE_TRACKERS_DIRSBrian Paul2010-01-271-1/+1
|
* egl: Install drivers to ${libdir}/egl.Chia-I Wu2010-01-231-0/+3
| | | | | Install EGL drivers to EGL_DRIVER_INSTALL_DIR, which is default to ${libdir}/egl.
* egl: Remove egl_softpipe.Chia-I Wu2010-01-221-1/+1
| | | | | | With the addition egl_x11_swrast, egl_softpipe is sort of deprecated. The new driver serves the same purpose as egl_softpipe does. It is based on egl_g3d and provides more features.
* winsys/drm: Add swrast.Chia-I Wu2010-01-221-2/+2
| | | | The swrast winsys always returns NULL when drm_api_create is called.
* egl: Remove the demo driver.Chia-I Wu2010-01-221-1/+1
| | | | | The demo driver has outdated. It is suggested to look at any of the drivers that is functioning.
* r300g: Build driver by defaultJakob Bornecrantz2010-01-141-1/+1
| | | | Do the auto trick that is used for both i915, i965 and svga.
* st/egl_g3d: New EGL state tracker that uses Gallium.Chia-I Wu2010-01-121-0/+2
| | | | | | | | | | | | This new (intermediate) EGL state tracker is the base work for EGL drivers that uses Gallium. It makes it easier to support new window systems. Currently, there is support only for X11. This driver supports multiple APIs (OpenVG, OpenGL, ...) and supports hardware acceleration through winsys/drm. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
* egl: Clean up the Makefile rules.Chia-I Wu2010-01-111-1/+4
| | | | | | | This allows libEGL to be built as a static library and removes libX11 from the dependencies. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
* gallium: Hunt down all references to GALLIUM_AUXILIARY_DIRS.José Fonseca2010-01-021-1/+0
|
* gallium: Generate a single library for auxiliaries with Make too.José Fonseca2010-01-011-1/+1
|
* gallium: Remove the sct module.José Fonseca2010-01-011-1/+1
| | | | | Not used, and its functionality is now addressed by pipe_context::is_texture/buffer_referenced callbacks.
* Merge branch 'i965g-restart'Keith Whitwell2009-12-221-1/+1
|\ | | | | | | | | Conflicts: configure.ac
| * Merge commit 'origin/master' into i965g-restartKeith Whitwell2009-12-211-2/+2
| |\ | | | | | | | | | | | | | | | | | | Conflicts: SConstruct configs/default configs/linux-dri
| * | i965g: hook into build systemKeith Whitwell2009-10-241-1/+1
| | |
* | | Merge branch 'master' into glsl-pp-rework-2Michal Krol2009-12-121-4/+4
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | Conflicts: progs/perf/drawoverhead.c progs/perf/teximage.c progs/perf/vbo.c progs/perf/vertexrate.c src/mesa/shader/slang/library/slang_common_builtin_gc.h
| * | mesa: bump version to 7.8Brian Paul2009-11-181-1/+1
| | |
| * | svga: Build svga driverJakob Bornecrantz2009-11-171-1/+1
| |/
| * i915g: Drop the simple sufixJakob Bornecrantz2009-10-051-1/+1
| | | | | | | | | | | | None of the other driver have a silly sufix, so just drop it. Nothing new added in this commit or any other commit but this is better marketing.
| * mesa: add objviewer to PROGRAM_DIRSBrian Paul2009-10-011-1/+1
| |
| * g3dvl: pipe_video_context interface, softpipe impl, auxiliary libsYounes Manton2009-09-271-1/+1
| |
* | Build mesa glsl with make.michal2009-12-101-1/+1
|/ | | | Still don't know how to add glsl to mesa dependencies.
* Merge branch 'mesa_7_6_branch'Brian Paul2009-09-151-0/+1
|\
| * Merge branch 'mesa_7_5_branch' into mesa_7_6_branchBrian Paul2009-09-151-0/+1
| |\
| | * Use CFLAGS as HOST_CFLAGS by defaultDan Nicholson2009-09-121-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>
| | * mesa: bump version to 7.5.2Brian Paul2009-09-081-1/+1
| | | | | | | | | | | | I'm not 100% sure there'll be a 7.5.2 release, but just in case.
| | * mesa: bump version to 7.5.1Brian Paul2009-07-221-1/+1
| | |
* | | mesa: bump version to 7.7Brian Paul2009-09-081-1/+1
|/ /
* | egl: Remove dependency on libX11.Chia-I Wu2009-08-211-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>
* | egl: Support per-thread info.Chia-I Wu2009-07-171-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>
* | identity: Add new identity driverJakob Bornecrantz2009-06-241-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.
* | Use separate $(MINSTALL) for installing librariesDan Nicholson2009-06-011-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | rbug: Add Gallium Remote Debugger Protocol codeJakob Bornecrantz2009-06-011-1/+1
| | | | | | | | This is the (de)marshalling and connection managment code
* | mesa: bump version to 7.6 (devel)Brian Paul2009-05-011-1/+1
|/
* configs: bump MESA_MINOR to 5Brian Paul2009-05-011-1/+1
|
* st/xorg: Install to XORG_DRIVER_INSTALL_DIRJoel Bosveld2009-03-061-0/+3
|
* egl: use new EGL_LIB_DEPS to pass library dependencies to mklib when ↵Brian Paul2009-02-251-0/+1
| | | | | | | building libEGL EGL_LIB_DEPS may need fine-tuning for some platforms. It's only defined in configs/default ATM.
* gallium: s/GALLIUM_DRIVER_DIRS/GALLIUM_DRIVERS_DIRS/Jakob Bornecrantz2009-02-201-2/+2
|
* gallium: Renable pipe drivers disabled during vbuf changesJakob Bornecrantz2009-02-191-1/+1
| | | | i965simple is not enabled because it is still broken.
* softpipe: update to new draw interfacesKeith Whitwell2009-02-171-1/+1
|
* gallium: Disable nouveau by defaultJakob Bornecrantz2009-02-111-1/+1
| | | | | Most piep drivers should be able to build by default, but since the nouveau ones depend drm they can't be enabled by default.
* mesa: Build both software rasterizers for debugJakob Bornecrantz2009-02-101-1/+1
| | | | But put the gallium one in lib/gallium
* gallium: Introduce new subdirs build variablesJakob Bornecrantz2009-02-101-0/+3
| | | | (based on gallium-xorg-driver/commit 270ce504052d415870a25ab59818b2309eb8ac13)
* Revert "mesa: added new linux-gallium and linux-gallium-debug configs"Jakob Bornecrantz2009-02-101-2/+10
| | | | | | | This reverts commit abbe96cb6e7581a52652030e40442b943a482840. It only reverts parts of the commit the other parts where related to libmesagallium changes.
* mesa: added new linux-gallium and linux-gallium-debug configsBrian Paul2009-02-091-10/+2
| | | | | | | 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.
* Readd trace to list of default pipe drivers.Corbin Simpson2009-02-061-1/+1
| | | | Looks like the gallium-0.2-radeon merge clobbered it.
* Merge branch 'gallium-0.2-radeon' into gallium-0.2Corbin Simpson2009-02-061-1/+1
|\
| * Remove r300 from default build.Corbin Simpson2009-02-061-1/+1
| |
| * r300, amd: Make everything build. (Not necessarily work, mind you.)Corbin Simpson2009-02-011-1/+1
| | | | | | | | | | | | | | | | | | Lots of structural work, especially in getting the two parts to talk nicely. Todo: - Get damn blitter working. - Add CS flush. - Reverse order of above two items.
* | gallium: add new aux lib for index list translationsKeith Whitwell2009-02-051-1/+1
|/ | | | | | | | | Could this be the ultimate index list translating utility? Maybe, but it doesn't yet include support for splitting primitives. Unlike previous attempts, this captures all possible combinations of API and hardware provoking vertex, supports generated list reuse and various other tricks. Relies on python-generated code.
* glew: Build it as a static lib.José Fonseca2009-01-241-1/+1
|