Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/mesa/files: eselect-mesa.conf.7.9
Date: Sun, 28 Nov 2010 21:37:00
Message-Id: 20101128213651.3E11220054@flycatcher.gentoo.org
1 chithanh 10/11/28 21:36:51
2
3 Added: eselect-mesa.conf.7.9
4 Log:
5 Version bump, bug #341097
6
7 (Portage version: 2.2.0_alpha5/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 media-libs/mesa/files/eselect-mesa.conf.7.9
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/files/eselect-mesa.conf.7.9?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/mesa/files/eselect-mesa.conf.7.9?rev=1.1&content-type=text/plain
14
15 Index: eselect-mesa.conf.7.9
16 ===================================================================
17 # mesa classic/gallium implementations in this release
18
19 # Syntax description:
20 # * MESA_IMPLEMENTATIONS contains a space-delimited list of switchable
21 # classic/gallium implementations.
22 # * MESA_DRIVERS is an associative array, for each member "foo" of
23 # MESA_IMPLEMENTATIONS it contains the following elements:
24 # foo,description - Human-readable description of the driver
25 # foo,classicdriver - Filename of the classic driver
26 # foo,galliumdriver - Filename of the gallium driver
27 # foo,default - which of classic or gallium is chosen by default
28
29 MESA_IMPLEMENTATIONS="i915 i965 r300 r600 sw"
30 declare -A MESA_DRIVERS || die "MESA_DRIVERS already in environment and not associative."
31
32 MESA_DRIVERS[i915,description]="i915 (Intel 915, 945)"
33 MESA_DRIVERS[i915,classicdriver]="i915_dri.so"
34 MESA_DRIVERS[i915,galliumdriver]="i915g_dri.so"
35 MESA_DRIVERS[i915,default]="classic"
36
37 MESA_DRIVERS[i965,description]="i965 (Intel 965, G/Q3x, G/Q4x)"
38 MESA_DRIVERS[i965,classicdriver]="i965_dri.so"
39 MESA_DRIVERS[i965,galliumdriver]="i965g_dri.so"
40 MESA_DRIVERS[i915,default]="classic"
41
42 MESA_DRIVERS[r300,description]="r300 (Radeon R300-R500)"
43 MESA_DRIVERS[r300,classicdriver]="r300_dri.so"
44 MESA_DRIVERS[r300,galliumdriver]="r300g_dri.so"
45 MESA_DRIVERS[i915,default]="gallium"
46
47 MESA_DRIVERS[r600,description]="r600 (Radeon R600-R700, Evergreen)"
48 MESA_DRIVERS[r600,classicdriver]="r600_dri.so"
49 MESA_DRIVERS[r600,galliumdriver]="r600g_dri.so"
50 MESA_DRIVERS[i915,default]="classic"
51
52 MESA_DRIVERS[sw,description]="sw (Software renderer)"
53 MESA_DRIVERS[sw,classicdriver]="swrast_dri.so"
54 MESA_DRIVERS[sw,galliumdriver]="swrastg_dri.so"
55 MESA_DRIVERS[sw,default]="gallium"