summaryrefslogtreecommitdiffstats
path: root/configs
Commit message (Collapse)AuthorAgeFilesLines
* null: Add a null software winsys.José Fonseca2010-03-091-1/+1
| | | | | | One where framebuffer data will be read via texture transfers. Useful for e.g., python state tracker.
* Merge commit 'origin/master' into gallium-sw-api-2Keith Whitwell2010-03-097-8/+1
|\ | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/softpipe/sp_texture.c src/gallium/drivers/softpipe/sp_winsys.h src/gallium/state_trackers/egl/common/egl_g3d.c src/gallium/state_trackers/egl/x11/native_x11.c src/gallium/state_trackers/egl/x11/native_x11.h src/gallium/state_trackers/egl/x11/native_ximage.c
| * config: drop WINDOW_SYSTEM varGeorge Sapountzis2010-03-066-7/+0
| |
| * mesa: bump version to 7.9Brian Paul2010-03-051-1/+1
| | | | | | | | Now that the 7.8 branch has been created Mesa/master will be version 7.9
* | gallium: introduce target directoryKeith Whitwell2010-03-087-4/+9
|/ | | | | | | | | | | | | | | | | | | | | | | | Currently there are still at least two functions bundled up inside the winsys concept: a) that of a backend resource manager, sometimes capable of performing present() operations, b) the initialization code/routine for the whole driver stack. The inclusion of (b) makes it difficult to share implementations of (a) between different drivers. For instance, a clean xlib winsys could be of use for software-rasterized VG, GLES, EGL, etc, stacks. But that is only true as long as there is no dependency from the winsys to higher level code, as would be the case when we include (b) in this component. This change creates a new gallium/targets subtree, specifically for implementing the glue needed to build individual driver stacks, and moves that code out of a single example winsys, namely xlib. Other drivers continue to build unchanged, but hopefully can migrate to this structure over time.
* Remove ffb and gamma from configs.Vinson Lee2010-03-035-9/+3
|
* drop linux-solo configsGeorge Sapountzis2010-02-262-17/+0
|
* Remove remaining miniglx referencesKristian Høgsberg2010-02-251-54/+0
|
* Drop glide driverKristian Høgsberg2010-02-252-51/+0
|
* Remove directfb supportKristian Høgsberg2010-02-251-38/+0
|
* cell: fix-up C, CPP flagsBrian Paul2010-02-121-3/+7
| | | | Flags like -Wmissing-prototypes don't apply to g++.
* cell: remove -mcpu=cell from CFLAGSBrian Paul2010-02-121-1/+1
| | | | | This reverts part of commit ebe2f7609533645e7e9c8af4a55bc0127b9bc515 and allows things to build here.
* mesa: remove darwin-x86ppc and dangling darwin refs in MakefileBrian Paul2010-02-111-33/+0
|
* Retire miniglx and move the actual glx code up to src/glxKristian Høgsberg2010-02-095-6/+6
|
* llvmpipe: export the tgsi translation code to a common layerZack Rusin2010-02-081-1/+1
| | | | | | | the llvmpipe tgsi translation is a lot more complete than what was in gallivm so replacing the latter with the former. this is needed since the draw llvm paths will use the same code. effectively the proven llvmpipe code becomes gallivm.
* cell: fix the usual cell breakageMarc Dietrich2010-02-081-3/+3
| | | | | | also update the cell config a bit Signed-off-by: Brian Paul <brianp@vmware.com>
* egl_dri2: Use pkg-config cflags and libs from configure outputKristian Høgsberg2010-02-051-0/+3
| | | | | Running pkg-config in Makefiles is bad form, since it doesn't respect the PKG_CONFIG_PATH value set at ./configure time.
* allow make to build lp_test_* for llvmpipeChris Li2010-02-051-1/+1
| | | | Signed-off-by: José Fonseca <jfonseca@vmware.com>
* Merge remote branch 'origin/master' into lp-binningJosé Fonseca2010-01-316-25/+39
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile src/gallium/auxiliary/util/u_surface.c src/gallium/drivers/llvmpipe/lp_flush.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_state_derived.c src/gallium/drivers/llvmpipe/lp_state_fs.c src/gallium/drivers/llvmpipe/lp_state_surface.c src/gallium/drivers/llvmpipe/lp_tex_cache.c src/gallium/drivers/llvmpipe/lp_texture.c src/gallium/drivers/llvmpipe/lp_tile_cache.c src/mesa/state_tracker/st_cb_condrender.c
| * configs: added vega to default GALLIUM_STATE_TRACKERS_DIRSBrian Paul2010-01-271-1/+1
| |
| * egl: Install drivers to ${libdir}/egl.Chia-I Wu2010-01-232-0/+6
| | | | | | | | | | Install EGL drivers to EGL_DRIVER_INSTALL_DIR, which is default to ${libdir}/egl.
| * st/egl_g3d: Rename to st/egl.Chia-I Wu2010-01-222-3/+3
| | | | | | | | Simply the name to egl.
| * egl: Remove egl_softpipe.Chia-I Wu2010-01-222-6/+4
| | | | | | | | | | | | 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.
| * st/egl: Remove the egl state tracker.Chia-I Wu2010-01-222-2/+5
| | | | | | | | | | | | The egl_g3d state tracker has support for KMS, and the support is based on the egl state tracker. As egl_g3d provides more features, it should be better to keep only egl_g3d to unify the efforts.
| * egl: Remove USING_EGL and the related drivers.Chia-I Wu2010-01-223-20/+0
| | | | | | | | | | They do not build for a long while and there seems to be no active users. It might be better for them to live in the git histroy.
| * egl: Remove the demo driver.Chia-I Wu2010-01-222-2/+2
| | | | | | | | | | The demo driver has outdated. It is suggested to look at any of the drivers that is functioning.
| * Merge remote branch 'origin/opengl-es-v2'Chia-I Wu2010-01-201-0/+27
| |\
| | * mesa/es: Fix build issue after merge.Chia-I Wu2010-01-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | In cd6b8dd9e82fedc55d033131fbc0f8ee950567c8, color read/type fields are moved; Based on 068596c9a7e8d330ffdff8ad8700bd6093b5bdea and cc020425e929110613ddb405d3e82313d27a35ed, GLSL builtin library is autogenerated and GLSL libraries are built and used. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
| | * Merge branch 'master' into opengl-es-v2Chia-I Wu2010-01-129-20/+42
| | |\ | | | | | | | | | | | | | | | | Conflicts: src/mesa/main/dd.h
| | * | Update config linux-opengl-es.Chia-I Wu2009-11-101-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Build demos that require EGL_MESA_screen_surface, and build egl_i915.so that supports EGL_MESA_screen_surface. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
| | * | Add new config for OpenGL ES.Chia-I Wu2009-11-061-0/+21
| | | | | | | | | | | | | | | | Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
* | | | Merge remote branch 'origin/master' into lp-binningJosé Fonseca2010-01-163-3/+12
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | Conflicts: src/gallium/drivers/llvmpipe/lp_quad.h src/gallium/drivers/llvmpipe/lp_setup.c
| * | | configs: remove -ansi from linux-debugBrian Paul2010-01-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | -ansi implies -std=c89 but that conflicts with the -std=c99 flag which is also provided. Allows the r300g driver to compile.
| * | | 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-122-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-112-1/+7
| | | | | | | | | | | | | | | | | | | | | 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>
* | | Merge remote branch 'origin/master' into lp-binningJosé Fonseca2010-01-0811-25/+38
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/auxiliary/util/u_surface.c src/gallium/drivers/llvmpipe/Makefile src/gallium/drivers/llvmpipe/SConscript src/gallium/drivers/llvmpipe/lp_bld_arit.c src/gallium/drivers/llvmpipe/lp_bld_flow.c src/gallium/drivers/llvmpipe/lp_bld_interp.c src/gallium/drivers/llvmpipe/lp_clear.c src/gallium/drivers/llvmpipe/lp_context.c src/gallium/drivers/llvmpipe/lp_context.h src/gallium/drivers/llvmpipe/lp_draw_arrays.c src/gallium/drivers/llvmpipe/lp_jit.c src/gallium/drivers/llvmpipe/lp_jit.h src/gallium/drivers/llvmpipe/lp_prim_vbuf.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_setup_point.c src/gallium/drivers/llvmpipe/lp_state.h src/gallium/drivers/llvmpipe/lp_state_blend.c src/gallium/drivers/llvmpipe/lp_state_derived.c src/gallium/drivers/llvmpipe/lp_state_fs.c src/gallium/drivers/llvmpipe/lp_state_sampler.c src/gallium/drivers/llvmpipe/lp_state_surface.c src/gallium/drivers/llvmpipe/lp_tex_cache.c src/gallium/drivers/llvmpipe/lp_tex_cache.h src/gallium/drivers/llvmpipe/lp_tex_sample.h src/gallium/drivers/llvmpipe/lp_tile_cache.c
| * | configs: set INTEL_LIBS, INTEL_CFLAGS, etcBrian Paul2010-01-061-0/+6
| | |
| * | Check for libdrm_$chipset.pc when neededKristian Høgsberg2010-01-041-0/+2
| | | | | | | | | | | | | | | | | | This adds missing pkg-config lookup for intel and moves the radeon lookup into a case...esac so it's only looked up when one or more of the radeon drivers are enabled.
| * | gallium: Hunt down all references to GALLIUM_AUXILIARY_DIRS.José Fonseca2010-01-023-4/+0
| | |
| * | autoconf: fix build breakageMarc Dietrich2010-01-021-1/+1
| | |
| * | 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 'mesa_7_7_branch'Brian Paul2009-12-311-1/+1
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configs/darwin src/gallium/auxiliary/util/u_clear.h src/gallium/state_trackers/xorg/xorg_exa_tgsi.c src/mesa/drivers/dri/i965/brw_draw_upload.c
| | * \ Merge branch 'mesa_7_6_branch' into mesa_7_7_branchBrian Paul2009-12-271-1/+1
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/auxiliary/util/u_network.c src/gallium/auxiliary/util/u_network.h src/gallium/drivers/i915/i915_state.c src/gallium/drivers/trace/tr_rbug.c src/gallium/state_trackers/vega/bezier.c src/gallium/state_trackers/vega/vg_context.c src/gallium/state_trackers/xorg/xorg_crtc.c src/gallium/state_trackers/xorg/xorg_driver.c src/gallium/winsys/xlib/xlib_brw_context.c src/mesa/main/mtypes.h
| | | * | Add gallium to darwin config.Vinson Lee2009-12-221-1/+1
| | | | |
| | | * | darwin: Cleanup CPPFLAGS a bitJeremy Huddleston2009-12-201-2/+2
| | | | | | | | | | | | | | | | | | | | (cherry picked from commit 4a1e103858a1db0fb037891b8d4a9426eff32b98)
| | * | | darwin: Cleanup CPPFLAGS a bitJeremy Huddleston2009-12-201-2/+2
| | | | | | | | | | | | | | | | | | | | (cherry picked from commit 4a1e103858a1db0fb037891b8d4a9426eff32b98)
| * | | | cell: add glsl to SRC_DIRSBrian Paul2009-12-271-1/+1
| | | | |