1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
|
<!DOCTYPE linuxdoc PUBLIC "-//XFree86//DTD linuxdoc//EN" [
<!ENTITY % defs SYSTEM "defs.ent"> %defs;
]>
<!-- Created: Mon Feb 28 13:00:00 2000 by brianp@valinux.com -->
<!-- Revised: Sat Jan 6 09:44:18 2001 by martin@valinux.com -->
<article>
<title>DRI User Guide
<author>
<htmlurl url="http://www.valinux.com/"
name="VA Linux Systems, Inc."> Professional Services - Graphics.
<date>15 June 2001
<ident>
$XFree86: xc/programs/Xserver/hw/xfree86/doc/sgml/DRI.sgml,v 1.29 2003/02/17 03:57:29 dawes Exp $
</ident>
<toc>
<sect>Preamble
<p>
<sect1>Copyright
<p>
<bf>Copyright © 2000-2001 by VA Linux Systems, Inc.
All Rights Reserved.</bf>
<p>
<bf>Permission is granted to make and distribute verbatim copies
of this document provided the copyright notice and this permission
notice are preserved on all copies.</bf>
<sect1>Trademarks
<p>
OpenGL is a registered trademark and SGI is a trademark of
Silicon Graphics, Inc.
Unix is a registered trademark of The Open Group.
The `X' device and X Window System are trademarks of The Open Group.
XFree86 is a trademark of The XFree86 Project.
Linux is a registered trademark of Linus Torvalds.
Intel is a registered trademark of Intel Corporation.
3Dlabs, GLINT, and Oxygen are either registered trademarks or
trademarks of 3Dlabs Inc. Ltd.
3dfx, Voodoo3, Voodoo4, and Voodoo5 are registered trademarks of
3dfx Interactive, Incorporated.
Matrox is a registered trademark of Matrox Electronic Systems Ltd.
ATI Rage and Radeon are registered trademarks of ATI Technologies,
Inc.
All other trademarks mentioned are the property of their
respective owners.
<sect>Introduction
<p>
With XFree86 4.x and the Direct Rendering Interface
(DRI), hardware accelerated 3D graphics can be considered a standard
feature on Linux workstations.
Support for other operating systems, such as FreeBSD, is underway.
<p>
This document describes how to use the DRI system and troubleshoot
problems which may occur.
Readers should have a basic understanding of Linux, X and OpenGL.
See the resources section at the end for more documentation and
software downloads.
<p>
This document does not cover compilation or installation of
XFree86 4.x.
It is assumed that you've already installed a Linux distribution which
includes XFree86 4.x or that you're an experienced Linux developer
who has compiled the DRI for himself.
DRI download, compilation and installation instructions can be found
at <htmlurl url="http://dri.sourceforge.net/doc/DRIcompile.html"
name="http://dri.sourceforge.net/DRIcompile.html">
<p>
Edits, corrections and updates to this document may be mailed
to <email>brian@tungstengrahpics.com</email>.
<sect>Supported Architectures & Hardware
<p>
<sect1>CPU Architectures
<p>
The architectures currently supported by the DRI have grown
from the initial Intel i386 systems to now include the Alpha
Processor and the Sun SPARC machines.
Intel's SSE (a.k.a. Katmai) instructions are used in optimized
vertex transformation functions in Mesa-based drivers.
This requires a recent Linux kernel both at compile and runtime.
See the DRI Compile Guide for compile-time requirements.
At runtime a check is made to determine if the CPU can execute
SSE instructions. They're disabled otherwise.
AMD's 3DNow! instructions are also used in optimized vertex
transformation functions in the Mesa-based DRI drivers.
3DNow! is supported in most versions of Linux.
Like the SSE optimizations, a runtime check is made to determine
if the CPU can execute 3DNow! instructions.
Alpha-based systems can use Compaq's optimized math library for
improved 3D performance. See the DRI Compilation Guide for
details.
<sect1> Graphics Hardware
<p>
XFree86 4.2 (or later versions) includes 3D acceleration for the
following graphics hardware:
<itemize>
<item>3dfx, supported on Intel x86, AMD and Alpha:
<itemize>
<item>Voodoo5 5500
<item>Voodoo4 4500
<item>Voodoo3 3500 TV
<item>Voodoo3 3000 AGP
<item>Voodoo3 3000 PCI
<item>Voodoo3 2000 AGP
<item>Voodoo3 2000 PCI
<item>Voodoo Banshee
<item>Velocity 100/200
</itemize>
There are many configurations of 3dfx cards on the market.
Not all have been tested.
<item>Matrox, supported on Intel x86 and AMD:
<itemize>
<item>Matrox G200
<item>Matrox G400
</itemize>
<item>Intel i810/i815/i830 (motherboard chipsets)
<itemize>
<item>i810
<item>i810-dc100
<item>i810e
<item>i815
<item>i830
</itemize>
<item>ATI Rage 128, supported on Intel x86, AMD and Alpha:
<itemize>
<item>Rage Fury
<item>Rage Magnum
<item>XPERT 2000
<item>XPERT 128
<item>XPERT 99
<item>All-in-Wonder 128
<item>Rage 128 PCI (Alpha-based systems)
</itemize>
Note that both PCI and AGP versions of Rage 128 based cards
are supported at this time.
<item>ATI Radeon, supported on Intel x86, AMD and Alpha:
<itemize>
<item>Radeon SDR AGP
<item>Radeon DDR AGP
<item>Radeon 32MB SDR PCI (Alpha-based systems)
<item>Radeon 7000, M6 (RV100)
<item>Radeon 7200 (R100)
<item>Radeon 7500, M7 (RV200)
<item>Radeon 8500, 9100 (R200)
<item>Radeon 9000, M9 (RV250)
</itemize>
<item>3Dlabs, supported on Intel x86 and AMD:
<itemize>
<item>Oxygen GMX 2000 (MX/Gamma based).
Note: this driver is no longer being actively developed.
</itemize>
</itemize>
<p>
Support for other hardware is underway.
Most of the DRI development work is funded by contracts with IHVs.
These contracts often prevent us from announcing drivers before
they're released.
Queries about upcoming drivers may not be answerable.
<p>
<sect>Prerequisite Software
<p>
<itemize>
<item>The DRI is available in XFree86 4.0 and later.
<item>Some hardware drivers require specific versions of the
Linux kernel for AGP support, etc.
See section 10 for specifics.
<item>You <em>DO NOT</em> need to install Mesa separately.
The parts of Mesa needed for hardware acceleration are
already in the XFree86/DRI project.
</itemize>
<sect>Kernel Modules
<p>
3D hardware acceleration requires a DRI kernel module that's
specific to your graphics hardware.
<P>
The DRI kernel module version must exactly match your running kernel
version.
Since there are so many versions of the kernel, it's difficult to
provide precompiled kernel modules.
<p>
While the Linux source tree includes the DRI kernel module sources,
the latest DRI kernel sources will be found in the DRI source tree.
<p>
See the DRI Compilation Guide for information on compiling the DRI
kernel modules.
<p>
XFree86 4.0.1 added automatic kernel module loading to the X server.
On Linux, the X server uses modprobe to load kernel modules.
In Linux 2.4.x the DRM kernel modules should be kept in
<tt>/lib/modules/2.4.x/kernel/drivers/char/drm/</tt> for automatic
loading to work.
<p>
Optionally, DRM kernel modules can be loaded manually with insmod
prior to starting the X server.
<p>
You can verify that the kernel module was installed with lsmod,
checking the X server startup log, and checking that /proc/dri/0
exists.
<sect>XF86Config file
<p>
The XFree86 configuration file is usually found in
<tt>/etc/X11/XF86Config</tt>.
This section describes the parts which must be specially set for
the DRI.
<p>
First, the XF86Config file must load the GLX and DRI modules:
<verb>
Section "Module"
...
# This loads the GLX module
Load "glx"
# This loads the DRI module
Load "dri"
EndSection
</verb>
Next, the DRI section can be used to restrict access to direct
rendering.
A client can only use direct rendering if it has permission to
open the <tt>/dev/dri/card?</tt> file(s).
The permissions on these DRI device files is controlled by the "DRI"
section in the XF86Config file.
<p>
If you want all of the users on your system to be able to use
direct-rendering, then use a simple DRI section like this:
<verb>
Section "DRI"
Mode 0666
EndSection
</verb>
<p>
This section will allow any user with a current connection to the X
server to use direct rendering.
<p>
If you want to restrict the use of direct-rendering to a
certain group of users, then create a group for those users by
editing the <tt>/etc/group</tt> file on your system.
For example, you may want to create a group called <tt>xf86dri</tt>
and place two users (e.g., <tt>fred</tt> and <tt>jane</tt>) in
that group.
To do that, you might add the following line to <tt>/etc/group</tt>:
<verb>
xf86dri:x:8000:fred,jane
</verb>
You have to be careful that the group id (8000 in this example)
is unique.
<p>
Then you would use the following DRI section:
<verb>
Section "DRI"
Group "xf86dri"
Mode 0660
EndSection
</verb>
This would limit access to direct-rendering to those users in the
<tt>xf86dri</tt> group (<tt>fred</tt> and <tt>jane</tt> in this
example). When other users tried to use direct rendering, they
would fall back to unaccelerated indirect rendering.
<p>
[Note that there is a known bug in XFree86 4.0 that prevents some
changes to the DRI section from taking effect. Until this bug is
fixed, if you change the DRI section, please also remove the
<tt>/dev/dri</tt> directory with the <tt>rm -rf /dev/dri</tt>
command.]
<p>
Finally, the XF86Config file needs <tt>Device</tt> and
<tt>Screen</tt> sections specific to your hardware.
Look in section 10: <em>Hardware-Specific Information and
Troubleshooting</em> for details.
<sect>Memory usage
<p>
Using the 3D features of a graphics card requires more memory
than when it's just used as a 2D device.
Double buffering, depth buffering, stencil buffers, textures,
etc. all require extra graphics memory.
These features may require four times the memory used for a simple
2D display.
<p>
If your graphics card doesn't have a lot of memory (less than 16MB,
for example), you may have to reduce your screen size and/or
color depth in order to use 3D features.
Reducing the screen resolution will also leave more space for
texture images, possibly improving 3D performance.
If, for example, you play Quake3 at 1024x768 but start your display
at 1600x1200 you might consider restarting X at 1024x768 in order to
maximize your texture memory space.
<p>
The documentation included with your card should have information
about maximum screen size when using 3D.
<sect>Using 3D Acceleration
<p>
This section describes how to link your application with libGL.so
and verify that you are in fact using 3D acceleration.
<sect1>libGL.so
<p>
Your OpenGL program must link with the libGL.so.1.2 library provided
by XFree86.
The libGL.so.1.2 library contains a GLX protocol encoder for
indirect/remote rendering and DRI code for accessing hardware
drivers.
In particular, be sure you're not using libGL.so from another
source such as Mesa or the Utah GLX project.
<p>
Unless it was built in a special way, the libGL.so library does
not contain any 3D hardware driver code.
Instead, libGL.so dynamically loads the appropriate 3D driver
during initialization.
<p>
Most simple OpenGL programs also use the GLUT and GLU libraries.
A source for these libraries is listed in the Resources
section below.
<sect1>Compiling and linking an OpenGL program
<p>
A simple GLUT/OpenGL program may be compiled and linked as follows:
<verb>
gcc program.c -I/usr/local/include -L/usr/local/lib -L/usr/X11R6/lib -lglut -lGLU -lGL -o program
</verb>
<p>
The <tt/-I/ option is used to specify where the GL/glut.h (and
possibly the GL/gl.h and GL/glu.h) header file may be found.
<p>
The <tt/-L/ options specify where the libglut.so and the X
libraries are located.
libGL.so and libGLU.so should be in /usr/lib, as specified by
the Linux/OpenGL ABI standard.
<p>
The <tt/-lglut -lGLU -lGL/ arguments specify that the application
should link with the GLUT, GLU and GL libraries, in that order.
<sect1>Running your OpenGL program
<p>
Simply typing ./program in your shell should execute the program.
<p>
If you get an error message such as
<verb>
gears: error in loading shared libraries: libGL.so.1: cannot
open shared object file: No such file or directory
</verb>
if means that the libGL.so.1 file is not the right location.
Proceed to the trouble shooting section.
<sect1>libOSMesa.so
<p>
OSMesa (Off-Screen Mesa) is an interface and driver for rendering
3D images into a user-allocated block of memory rather than an
on-screen window.
It was originally developed for Mesa before Mesa became part of
the XFree86/DRI project.
It can now be used with the XFree86/DRI libGL.so as well.
<p>
libOSMesa.so implements the OSMesa interface and it must be linked
with your application if you want to use the OSMesa functions.
You must also link with libGL.so. For example:
<verb>
gcc osdemo.c -lOSMesa -lGLU -lGL -o osdemo
</verb>
<p>
In stand-alone Mesa this interface was compiled into the monolithic
libGL.so (formerly libMesaGL.so) library.
In XFree86 4.0.1 and later this interface is implemented in a
separate library.
<p>
<sect1>glxinfo
<p>
glxinfo is a useful program for checking which version of
libGL you're using as well as which DRI-based driver.
Simply type <tt/glxinfo/ and examine the OpenGL vendor, renderer,
and version lines.
Among the output you should see something like this:
<p>
<verb>
OpenGL vendor string: VA Linux Systems, Inc.
OpenGL renderer string: Mesa DRI Voodoo3 20000224
OpenGL version string: 1.2 Mesa 3.4
</verb>
<p>
or this:
<p>
<verb>
OpenGL vendor string: VA Linux Systems, Inc.
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 Mesa 3.4
</verb>
<p>
The first example indicates that the 3dfx driver is using
Voodoo3 hardware.
The second example indicates that no hardware driver was
found and indirect, unaccelerated rendering is being used.
<p>
If you see that indirect rendering is being used when direct
rendering was expected, proceed to the troubleshooting section.
<p>
<tt/glxinfo/ also lists all of the GLX-enhanced visuals available
so you can determine which visuals are double-bufferd, have depth (Z)
buffers, stencil buffers, accumulation buffers, etc.
<sect1>Environment Variables
<p>
The libGL.so library recognizes three environment variables.
Normally, none of them need to be defined.
If you're using the csh or tcsh shells, type
<tt/setenv VARNAME value/ to set the variable.
Otherwise, if you're using sh or bash, type
<tt/export VARNAME=value/.
<enum>
<item>
<tt/LIBGL_DEBUG/, if defined will cause libGL.so to print error
and diagnostic messages.
This can help to solve problems.
Setting <tt/LIBGL_DEBUG/ to <tt/verbose/ may provide additional
information.
<item>
<tt/LIBGL_ALWAYS_INDIRECT/, if defined this will force libGL.so
to always use indirect rendering instead of hardware
acceleration.
This can be useful to isolate rendering errors.
<item>
<tt/LIBGL_DRIVERS_PATH/ can be used to override the default
directories which are searched for 3D drivers.
The value is one or more paths separated by colons.
In a typical XFree86 installation, the 3D drivers should be in
/usr/X11R6/lib/modules/dri/ and <tt/LIBGL_DRIVERS_PATH/ need
not be defined.
Note that this feature is disabled for set-uid programs.
This variable replaces the <tt/LIBGL_DRIVERS_DIR/ env var used
in XFree86 4.0.
<item>
<tt/MESA_DEBUG/, if defined, will cause Mesa-based 3D drivers
to print user error messages to stderr.
These are errors that you'd otherwise detect by calling
<tt>glGetError</tt>.
</enum>
<p>
Mesa-based drivers (this includes most of the drivers listed
above) also observe many of the existing Mesa environment variables.
These include the <tt/MESA_DEBUG/ and <tt/MESA_INFO/ variables.
<sect>General Trouble Shooting
<p>
This section contains information to help you diagnose general
problems.
See below for additional information for specific hardware.
<sect1>Bus Mastering
<p>
DMA-based DRI drivers (that's most DRI drivers) cannot function
unless bus mastering is enabled for your graphics card.
By default, some systems don't having bus mastering on.
You should enable it in your BIOS.
<p>
Alternately, you can check the status of bus mastering and change
the setting from within Linux. There may be similar procedures for
other operating systems.
<p>
Run <tt>lspci</tt> (as root) and find the information
describing your graphics adapter. For example:
<P>
<verb>
00:00.0 Host bridge: Intel Corporation 440BX/ZX - 82443BX/ZX Host bridge (rev 03)
00:01.0 PCI bridge: Intel Corporation 440BX/ZX - 82443BX/ZX AGP bridge (rev 03)
00:07.0 ISA bridge: Intel Corporation 82371AB PIIX4 ISA (rev 02)
00:07.1 IDE interface: Intel Corporation 82371AB PIIX4 IDE (rev 01)
00:07.2 USB Controller: Intel Corporation 82371AB PIIX4 USB (rev 01)
00:07.3 Bridge: Intel Corporation 82371AB PIIX4 ACPI (rev 02)
00:11.0 Ethernet controller: Intel Corporation 82557 [Ethernet Pro 100] (rev 08)
00:12.0 SCSI storage controller: Symbios Logic Inc. (formerly NCR) 53c895 (rev 02)
00:14.0 Multimedia audio controller: Ensoniq ES1371 [AudioPCI-97] (rev 08)
01:00.0 VGA compatible controller: 3Dfx Interactive, Inc.: Unknown device 0009 (rev 01)
</verb>
<p>
The bus, device, and function number comprise the device id,
which is conventionally written in the form bus:dev.func, or
in this case 01:00.0.
<p>
Use the <tt>setpci</tt> command to examine bit two of register 4 for
your graphics card. This will indicate whether or not bus mastering
is enabled.
<p>
<verb>
setpci -s 01:00.0 4.w
</verb>
<p>
A hexadecimal value will be printed. Convert the least significant
digit to binary. For example, if you see 3, that's 0011 in binary
(bit two is 0). If you see 7, that's 0111 in binary (bit two is 1).
In the first example, bus mastering is disabled. It's enabled in
the second example.
<p>
The following shell script will enabled bus mastering for your
graphics card and host bridge. Run it as root.
<verb>
#!/bin/bash
dev=01:00.0 # change as appropriate
echo Enabling bus mastering on device $dev
setpci -s $dev 4.w=$(printf %x $((0x$(setpci -s $dev 4.w)|4)))
dev=00:00.0
echo Enabling bus mastering on host bridge $dev
setpci -s $dev 4.w=$(printf %x $((0x$(setpci -s $dev 4.w)|4)))
</verb>
<p>
You can check if this worked by running the first setpci command again.
<p>
<sect1>The X Server
<p>
<enum>
<item>
Before you start the X server, verify the appropriate 3D kernel
module is installed.
Type <tt/lsmod/ and look for the appropriate kernel module.
For 3dfx hardware you should see <tt/tdfx/, for example.
<item>
Verify you're running XFree86 4.0 (or newer) and not an
older version.
If you run <tt/xdpyinfo/ and look for the following line near
the top:
<verb>
vendor release number: 4000
</verb>
<item>
Verify that your XF86Config file (usually found at
/etc/X11/XF86Config) loads the glx and dri modules and
has a DRI section.
<p>
See the Software Resources section below for sample
XF86Config files.
<item>
Examine the messages printed during X server startup and check
that the DRM module loaded.
Using the Voodoo3 as an example:
<verb>
(==) TDFX(0): Write-combining range (0xf0000000,0x2000000)
(II) TDFX(0): Textures Memory 7.93 MB
(0): [drm] created "tdfx" driver at busid "PCI:1:0:0"
(0): [drm] added 4096 byte SAREA at 0xc65dd000
(0): [drm] mapped SAREA 0xc65dd000 to 0x40013000
(0): [drm] framebuffer handle = 0xf0000000
(0): [drm] added 1 reserved context for kernel
(II) TDFX(0): [drm] Registers = 0xfc000000
(II) TDFX(0): visual configs initialized
(II) TDFX(0): Using XFree86 Acceleration Architecture (XAA)
Screen to screen bit blits
Solid filled rectangles
8x8 mono pattern filled rectangles
Indirect CPU to Screen color expansion
Solid Lines
Dashed Lines
Offscreen Pixmaps
Driver provided NonTEGlyphRenderer replacement
Setting up tile and stipple cache:
10 128x128 slots
(==) TDFX(0): Backing store disabled
(==) TDFX(0): Silken mouse enabled
(0): X context handle = 0x00000001
(0): [drm] installed DRM signal handler
(0): [DRI] installation complete
(II) TDFX(0): direct rendering enabled
</verb>
<item>
After the X server has started, verify that the required X server
extensions are loaded.
Run <tt/xdpyinfo/ and look for the following entries in the
extensions list:
<verb>
GLX
SGI-GLX
XFree86-DRI
</verb>
</enum>
<sect1>Linking, running and verifying 3D acceleration
<p>
After you've verified that the X server and DRI have started
correctly it's time to verify that the GL library and hardware
drivers are working correctly.
<enum>
<item>
Verify that you're using the correct libGL.so library with
<tt/ldd/.
The /usr/lib and /usr/X11R6/lib directories are expected
locations for libGL.so.
<p>
Example:
<verb>
% ldd /usr/local/bin/glxinfo
libglut.so.3 => /usr/local/lib/libglut.so.3 (0x40019000)
libGLU.so.1 => /usr/local/lib/libGLU.so.1 (0x40051000)
libGL.so.1 => /usr/lib/libGL.so.1 (0x40076000)
libXmu.so.6 => /usr/X11R6/lib/libXmu.so.6 (0x402ee000)
libXi.so.6 => /usr/X11R6/lib/libXi.so.6 (0x40301000)
libm.so.6 => /lib/libm.so.6 (0x40309000)
libc.so.6 => /lib/libc.so.6 (0x40325000)
libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x40419000)
libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x404bd000)
libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x40509000)
libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x40512000)
libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x40529000)
libvga.so.1 => /usr/lib/libvga.so.1 (0x40537000)
libpthread.so.0 => /lib/libpthread.so.0 (0x4057d000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
</verb>
<item>
You may also double check that libGL.so is in fact DRI-capable.
Run <tt/strings libGL.so.1.2 | grep DRI/ and look for
symbols prefixed with "XF86DRI", such as "XF86DRIQueryExtension".
<item>
To be safe one should run <tt/ldconfig/ after installing libGL.so
to be sure the runtime loader will find the proper library.
<item>
Verify that the appropriate 3D driver is in
/usr/X11R6/lib/modules/dri/
For example, the 3dfx driver will be named <tt/tdfx_dri.so/.
<item>
Set the <tt/LIBGL_DEBUG/ environment variable.
This will cause libGL.so to print an error message if it fails
to load a DRI driver.
Any error message printed should be self-explanatory.
<item>
Run <tt/glxinfo/. Note the line labeled "OpenGL renderer string".
It should have a value which starts with "Mesa DRI" followed by
the name of your hardware.
<item>
Older Linux OpenGL applications may have been linked against
Mesa's GL library and will not automatically use libGL.so.
In some cases, making symbolic links from the Mesa GL library
to libGL.so.1 will solve the problem:
<verb>
ln -s libGL.so.1 libMesaGL.so.3
</verb>
In other cases, the application will have to be relinked
against the new XFree86 libGL.so.
<P>
It is reported that part of the problem is that running
<tt/ldconfig/ will silently rewrite symbolic links based
on the SONAME field in libraries.
</enum>
<p>
If you're still having trouble, look in the next section for
information specific to your graphics card.
<sect>Hardware-Specific Information and Troubleshooting
<p>
This section presents hardware-specific information for normal
use and troubleshooting.
<sect1>3dfx Banshee, Voodoo3, Voodoo4 and Voodoo5 Series
<p>
<sect2>Requirements
<p>
The 3dfx DRI driver requires special versions of the 3dfx Glide
library.
Different versions of Glide are needed for Banshee/Voodoo3 than
for Voodoo4/5.
The Glide libraries can be downloaded from the DRI website.
<p>
<sect2>Configuration
<p>
Your XF86Config file's device section must specify the
<tt>tdfx</tt> device. For example:
<verb>
Section "Device"
Identifier "Voodoo3"
VendorName "3dfx"
Driver "tdfx"
EndSection
</verb>
<p>
Or,
<p>
<verb>
Section "Device"
Identifier "Voodoo5"
VendorName "3dfx"
Driver "tdfx"
EndSection
</verb>
The Screen section should then reference the Voodoo device:
<verb>
Section "Screen"
Identifier "Screen 1"
Device "Voodoo3"
Monitor "High Res Monitor"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
</verb>
Or,
<p>
<verb>
Section "Screen"
Identifier "Screen 1"
Device "Voodoo5"
Monitor "High Res Monitor"
DefaultDepth 24
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
</verb>
<p>
The kernel module for 3dfx hardware is named <tt>tdfx.o</tt> and
should be installed in /lib/modules/2.4.x/kernel/drivers/char/drm/.
It will be automatically loaded by the Xserver if needed.
<p>
The DRI 3D driver for 3dfx hardware should be in
<tt>/usr/X11R6/lib/modules/dri/tdfx_dri.so</tt>.
This will be automatically loaded by libGL.so.
<p>
The Voodoo5 supports 3D rendering in 16 and 32 bpp modes.
When running in 32bpp mode an 8-bit stencil buffer and 24-bit
Z (depth) buffer are offered.
When running in 16bpp mode only a 16-bit Z (depth) buffer is
offered and stencil is implemented in software.
<p>
A software-based accumulation buffer is available in both
16 and 32bpp modes.
<sect2>Troubleshooting
<p>
<itemize>
<item>
If you try to run an OpenGL application and see an error message
similar to
<verb>
gd error (glide): gd error (glide): grSstSelect: non-existent SSTgd error (glide): grSstSelect: non-existent SSTS
</verb>
it means that you have the wrong version of the Glide library
for your hardware.
<item>
3D acceleration for Banshee and Voodoo3 is only supported in
the 16 bit/pixel screen mode.
Use <tt/xdpyinfo/ to verify that all your visuals are depth 16.
Edit your XF86Config file if needed.
<item>
The <tt>/dev/3dfx</tt> device is not used for DRI; it's only for
Glide on older 3dfx hardware.
<item>
Different versions of Glide are needed for Voodoo3 and Voodoo5.
See the DRI website's resources page to download the right
version of Glide.
<item>
Voodoo4/5 may be run at 24bpp (instead of 32bpp, the default)
but 3D acceleration is not supported in that mode.
32bpp mode is fully 3D accelerated.
</itemize>
<sect2>Performance and Features
<p>
<itemize>
<item>
Normally, buffer swapping in double-buffered applications is
synchronized to your monitor's refresh rate.
This may be overridden by setting the <tt/FX_GLIDE_SWAPINTERVAL/
environment variable.
The value of this variable indicates the maximum number of
swap buffer commands can be buffered.
Zero allows maximum frame rate.
<item>
On Voodoo4/5, rendering with 16-bits/texel textures is faster
than using 32-bit per texel textures.
The <tt/internalFormat/ parameter to <tt/glTexImage2D/ can be
used to control texel size.
Quake3 and other games let you control this as well.
<item>
The <tt/glTexEnv/ mode <tt/GL_BLEND/ is not directly supported
by the Voodoo3 hardware.
It can be accomplished with a multipass algorithm but it's not
implemented at this time.
Applications which use that mode, such as the Performer Town
demo, may become sluggish when falling back to software
rendering to render in that mode.
<item>
The Voodoo3/Banshee driver reverts to software rendering under
the following conditions:
<itemize>
<item>
Setting <tt/GL_LIGHT_MODEL_COLOR_CONTROL/ to
<tt/GL_SEPARATE_SPECULAR_COLOR/.
<item>
Enabling line stippling or polygon stippling.
<item>
Enabling point smoothing or polygon smoothing.
<item>
Enabling line smoothing when line width is not 1.0.
That is, antialiased lines are done in hardware only when
the line width is 1.0.
<item>
Using 1-D or 3-D texture maps.
<item>
Using the GL_BLEND texture environment.
<item>
Using stencil operations.
<item>
Using the accumulation buffer.
<item>
Using <tt/glBlendEquation(GL_LOGIC_OP)/.
<item>
Using <tt/glDrawBuffer(GL_FRONT_AND_BACK)/.
<item>
Using <tt/glPolygonMode(face, GL_POINT)/ or
<tt/glPolygonMode(face, GL_LINE)/.
<item>
Using point size attenuation
(i.e. <tt/GL_DISTANCE_ATTENUATION_EXT/).
<item>
Using <tt/glColorMask(r, g, b, a)/ when r!=g or g!=b.
</itemize>
<item>
The Voodoo5 driver reverts to software rendering under the
same conditions Voodoo3 with three exceptions.
First, stencil operations are implemented in hardware when the
screen is configured for 32 bits/pixel.
Second, the <tt/GL_BLEND/ texture env mode is fully supported in
hardware.
Third, <tt/glColorMask/ is fully supported in hardware when
the screen is configured for 32 bits/pixel.
<item>
As of January, 2001 the second VSA-100 chip on the Voodoo5 is
not yet operational.
Therefore, the board isn't being used to its full capacity.
The second VSA-100 chip will allow Scan-Line Interleave (SLI)
mode for full-screen applications and games, potentially doubling
the system's fill rate.
When the second VSA-100 chip is activated
glGetString(GL_RENDERER) will report Voodoo5 instead of Voodoo4.
<item>
The lowest mipmap level is sometimes miscolored in trilinear-
sampled polygons.
<item>
The GL_EXT_texture_env_combine extension is supported on the
Voodoo4 and Voodoo5.
</itemize>
<sect2>Known Problems
<p>
<itemize>
<item>
The lowest mipmap level is sometimes miscolored in trilinear-
sampled polygons (Voodoo3/Banshee).
<item>
Fog doesn't work with orthographic projections.
<item>
The accuracy of blending operations on Voodoo4/5 isn't always
very good.
If you run Glean, you'll find some test failures.
<item>
The Glide library cannot be used directly; it's only meant to
be used via the tdfx DRI driver.
<item>
SSystem has problems because of poorly set near and far
clipping planes.
The office.unc Performer model also suffers from this problem.
</itemize>
<sect1>Intel i810
<p>
<sect2>Requirements
<p>
A kernel with AGP GART support (such as Linux 2.4.x) is needed.
<p>
<sect2>Configuration
<p>
Your XF86Config file's device section must specify the
<tt>i810</tt> device, and specify a usable amount of video
ram to reserve.
<verb>
Section "Device"
Identifier "i810"
VendorName "Intel"
Driver "i810"
Option "AGPMode" "1"
VideoRam 10000
EndSection
</verb>
The Screen section should then reference the i810 device:
<verb>
Section "Screen"
Identifier "Screen 1"
Device "i810"
Monitor "High Res Monitor"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
</verb>
<p>
The kernel module for the i810 is named <tt>i810.o</tt> and
should be installed in /lib/modules/2.4.x/kernel/drivers/char/drm/.
It will be automatically loaded by the Xserver if needed.
<p>
The DRI 3D driver for the i810 should be in
<tt>/usr/X11R6/lib/modules/dri/i810_dri.so</tt>.
This will be automatically loaded by libGL.so.
<sect2>Troubleshooting
<p>
<itemize>
<item>
3D acceleration for the i810 is only available in the 16
bit/pixel screen mode at this time. 32bpp acceleration is
not supported by this hardware.
Use <tt/xdpyinfo/ to verify that all your visuals are depth 16.
Edit your XF86Config file if needed.
<item>
The i810 uses system ram for video and 3d graphics. The X
server will ordinarily reserve 4mb of ram for graphics,
which is too little for an effective 3d setup. To tell
the driver to use a larger amount, specify a VideoRam
option in the Device section of your XF86Config file. A
number between 10000 and 16384 seems adequate for most
requirements. If too little memory is available for DMA
buffers, back and depth buffers and textures, direct
rendering will be disabled.
</itemize>
<sect2>Performance and Features
<p>
Basically all of the i810 features which can be exposed through
OpenGL 1.2 are implemented.
However, the following OpenGL features are implemented in software
and will be slow:
<itemize>
<item>Stencil buffer and accumulation buffer operations
<item>Blend subtract, min/max and logic op blend modes
<item>glColorMask when any mask is set to false
<item>GL_SEPARATE_SPECULAR_COLOR lighting mode
<item>glDrawBuffer(GL_FRONT_AND_BACK)
<item>Using 1D or 3D textures
<item>Using texture borders
</itemize>
<p>
<sect1>Matrox G200 and G400
<p>
<sect2>Requirements
<p>
A kernel with AGP GART support (such as Linux 2.4.x) is needed.
<p>
<sect2>Configuration
<p>
Your XF86Config file's device section must specify the
<tt>mga</tt> device:
<verb>
Section "Device"
Identifier "MGA"
VendorName "Matrox"
Driver "mga"
Option "AGPMode" "1"
VideoRam 32768
EndSection
</verb>
The Screen section should then reference the MGA device:
<verb>
Section "Screen"
Identifier "Screen 1"
Device "MGA"
Monitor "High Res Monitor"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
</verb>
To use a 32bpp screen mode, use this <tt>Screen</tt> section
instead:
<verb>
Section "Screen"
Identifier "Screen 1"
Device "MGA"
Monitor "High Res Monitor"
DefaultDepth 24
DefaultFbBpp 32
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
</verb>
<p>
The kernel module for the G200/G400 is named <tt>mga.o</tt> and
should be installed in /lib/modules/2.4.x/kernel/drivers/char/drm/.
It will be automatically loaded by the Xserver if needed.
<p>
The DRI 3D driver for the G200/G400 should be in
<tt>/usr/X11R6/lib/modules/dri/mga_dri.so</tt>.
This will be automatically loaded by libGL.so.
<sect2>Performance and Features
<p>
Software rendering will be used under any of the
following conditions:
<itemize>
<item>Using glDrawBuffer(GL_FRONT_AND_BACK).
<item>Using point, line, or triangle smoothing.
<item>Using glLogicOp.
<item>Using glPolygonStipple or glLineStipple.
<item>Using 1D or 3D textures.
<item>Using texture borders.
<item>Using glDepthFunc(GL_NEVER).
<item>Using the accumulation buffer.
</itemize>
<p>
The AGP mode may be set to 1, 2, or 4. One is used by default.
Higher AGP speeds may result in unreliable performance depending
on your motherboard.
<p>
Compaq has funded the implementation of AGP accelerated
ReadPixels and DrawPixels in this driver. With this
implementation, on a G400 drawing directly from AGP memory
(exported to the client), throughput of up to 1 GB/sec has
been measured.
<p>
Additionally Compaq's funding has produced several new
extensions in Mesa, including one (packed_depth_stencil_MESA)
which enables Read/DrawPixels functionality to operate
directly on the packed 24/8 depth/stencil buffers of this
hardware.
<p>
In order to access this functionality, the application must
ensure that all pixel processing operations are disabled.
There are in addition a fairly complex set of rules regarding
which packing/unpacking modes must be used, and which data
formats are supported, and alignment constraints. See the
files in lib/GL/mesa/src/drv/mga/DOCS for a summary of these.
The extension definitions are included in the Mesa 3.4 source
distribution.
<sect2>IRQ Assignment
<p>
There have been problems in the past with the MGA driver being very
sluggish when the DRI is enabled (to the point of being unusable.)
This is caused by the graphics card not having an interrupt assigned
to it.
The current DRI trunk will attempt to detect this condition and
bail out gracefully.
<p>
The solution to the above problem is to assign an interrupt to your
graphics card.
This is something you must turn on in your system BIOS configuration.
Please consult your system BIOS manual for instructions
on how to enable an interrupt for your graphics card.
<p>
<sect2>MGA HAL lib
<p>
MGAHALlib.a is a binary library Matrox has provided for use under
Linux to expose functionality for which they can not provide
documentation.
(For example TV-Out requires MacroVision be enabled on the output.)
This binary library also sets the pixel/memory clocks to the optimal
settings for your Matrox card.
<p>
Currently the MGAHAL library is required for the G450 to work.
You can download this from the driver section on Matrox's website:
<htmlurl url="http://www.matrox.com/mga/" name="www.matrox.com/mga">
<p>
Here modifications to the DRI build instructions which make the
mga ddx driver use the MGAHAL library:
<verb>
1.Put the following define in your host.def file
#define UseMatroxHal YES
2. Place mgaHALlib.a in the following directory
xc/programs/Xserver/hw/xfree86/drivers/mga/HALlib/
</verb>
<p>
You can use DualHead on the G400/G450 DH cards by creating two
device sections which both point to the same BusID.
For most AGP devices the BusID will be "PCI:1:0:0".
Configure your screen section as you would normally configure
XFree86 4.x Multihead. It should be noted that currently
the second head does not support direct rendering.
<P>
<sect2>Known Problems
<p>
None.
<p>
<sect1>ATI Rage 128
<p>
<sect2>Requirements
<p>
A kernel with AGP GART support (such as Linux 2.4.x) is needed.
<p>
<sect2>Configuration
<p>
Your XF86Config file's device section must specify the
<tt>ati</tt> device:
<verb>
Section "Device"
Identifier "Rage128"
VendorName "ATI"
Driver "ati"
Option "AGPMode" "1"
Option "UseCCEFor2D" "false"
EndSection
</verb>
The Screen section should then reference the Rage 128 device:
<verb>
Section "Screen"
Identifier "Screen 1"
Device "Rage128"
Monitor "High Res Monitor"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 32
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
</verb>
<p>
The kernel module for the Rage 128 is named <tt>r128.o</tt> and
should be installed in /lib/modules/2.4.x/kernel/drivers/char/drm/.
It will be automatically loaded by the Xserver if needed.
<p>
The DRI 3D driver for the Rage 128 should be in
<tt>/usr/X11R6/lib/modules/dri/r128_dri.so</tt>.
This will be automatically loaded by libGL.so.
<p>
You may also set your screen depth to 32 for 32bpp mode.
<p>
<sect2>Performance and Features
<p>
While PCI Rage 128 based cards are supported, they do not yet
support PCI GART, so they will not perform as well as their
AGP counterparts.
<p>
For AGP cards, the AGP mode may be set to 1, 2, or 4. One is
used by default.
Higher AGP speeds may result in unreliable performance depending
on your motherboard.
<p>
Note that even at 32bpp there is no alpha channel.
<p>
The following OpenGL features are implemented in software and
will be slow:
<itemize>
<item>accumulation buffer operations
<item>stencil, when using a 16bpp screen
<item>Blend subtract, min/max and logic op blend modes
<item>GL_SEPARATE_SPECULAR_COLOR lighting mode
<item>glDrawBuffer(GL_FRONT_AND_BACK)
<item>Using 1D or 3D textures
<item>Using texture borders
</itemize>
<p>
<sect2>Known Problems
<p>
If you experience stability problems you may try setting the
<tt>UseCCEFor2D</tt> option to <tt>true</tt>. This will
effectively disable 2D hardware acceleration. Performance will
be degraded, of course.
<p>
<sect1>ATI Radeon
<p>
<sect2>Requirements
<p>
A kernel with AGP GART support (such as Linux 2.4.x) is needed.
<p>
<sect2>Configuration
<p>
Your XF86Config file's device section must specify the
<tt>ati</tt> device:
<verb>
Section "Device"
Identifier "Radeon"
VendorName "ATI"
Driver "ati"
Option "AGPMode" "1"
EndSection
</verb>
The Screen section should then reference the Radeon device:
<verb>
Section "Screen"
Identifier "Screen 1"
Device "Radeon"
Monitor "High Res Monitor"
DefaultDepth 16
Subsection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 32
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
</verb>
<p>
The kernel module for the Radeon is named <tt>radeon.o</tt> and
should be installed in /lib/modules/2.4.x/kernel/drivers/char/drm/.
It will be automatically loaded by the Xserver if needed.
<p>
The DRI 3D driver for the Radeon should be in
<tt>/usr/X11R6/lib/modules/dri/radeon_dri.so</tt>.
This will be automatically loaded by libGL.so.
<p>
You may also set your screen depth to 32 for 32bpp mode.
<p>
<sect2>Performance and Features
<p>
While this driver supports many of the features of ATI Radeon
cards, we do not <em/yet/ fully support the card's TCL
features. This work is progressing, but is not yet ready.
<p>
The AGP mode may be set to 1, 2, or 4. One is used by default.
Higher AGP speeds may result in unreliable performance depending
on your motherboard.
<p>
The following OpenGL features are implemented in software and will
be slow:
<itemize>
<item>Blend subtract, blend min/max and blend logicops
<item>Stencil and accumulation operations
<item>1D and 3D textures
<item>Texture borders
</itemize>
<p>
The GL_EXT_texture_env_combine, GL_EXT_texture_env_add and
GL_EXT_texture_env_dot3 extensions are supported (or will be
soon supported in the new driver based on Mesa 3.5).
<p>
We hope to implement support for the following features in the
future:
<itemize>
<item>Vertex transformation, clipping and lighting (TCL)
<item>Hardware stencil buffer
<item>Cube map textures
<item>3D textures
<item>Three texture units
</itemize>
<p>
<sect2>Known Problems
<p>
Certain (early?) revisions of the AMD Irongate chipset have
AGPGART problems which effect Radeon, and other graphics cards.
The card may work unreliably, or not work at all. If the DRM
kernel module is not loaded, the 2D Xserver may work. There's
hope that this can be fixed in the future.
<p>
<sect1>3DLabs Oxygen GMX 2000
<p>
The driver for this hardware was experimental and is no longer being
developed or supported.
<sect>General Limitations and Known Bugs
<p>
<sect1>OpenGL
<p>
The following OpenGL features are not supported at this time:
overlays, stereo, hardware-accelerated indirect rendering.
<p>
OpenGL-like functionality is provided with the Mesa library.
XFree86 4.1.0 uses Mesa 3.4.2.
Subsequent releases of XFree86 will use newer versions of Mesa.
When newer versions of Mesa are available, the 3D drivers can
be updated without reinstalling XFree86 or libGL.so.
<sect1>GLX
<p>
The GLX 1.3 API is exported but none of the new 1.3 functions
are operational.
<p>
The new <tt/glXGetProcAddressARB/ function is fully supported.
<p>
GLXPixmap rendering is only supported for indirect rendering
contexts. This is a common OpenGL limitation. Attempting
to use a direct rendering context with a GLXPixmap will result
in an X protocol error.
<p>
<sect1>Debugging
<p>
Debugging DRI drivers with gdb can be difficult because of the
locking involved. When debugging OpenGL applications, you should
avoid stepping inside the GL functions. If you're trying to debug
a DRI driver it's recommended that you do so remotely, from a
second system.
<sect1>Scheduling
<p>
When you run multiple GL applications at once you may notice poor
time slicing.
This is due to an interaction problem with the Linux scheduler
which will be addressed in the future.
<sect1>libGL.so and dlopen()
<p>
A number of popular OpenGL applications on Linux (such as Quake3,
HereticII, Heavy Gear 2, etc) dynamically open the libGL.so
library at runtime with dlopen(), rather than linking with -lGL
at compile/link time.
<p>
If dynamic loading of libGL.so is not implemented carefully, there
can be a number of serious problems.
Here are the things to be careful of in your application:
<itemize>
<item>Specify the RTLD_GLOBAL flag to dlopen().
If you don't do this then you'll likely see a runtime error message
complaining that _glapi_Context is undefined when libGL.so
tries to open a hardware-specific driver.
Without this flag, <em>nested</em> opening of dynamic libraries
does not work.
<item>Do not close the library with dlclose() until after
XCloseDisplay() has been called.
When libGL.so initializes itself it registers several callbacks
functions with Xlib.
When XCloseDisplay() is called those callback functions are
called.
If libGL.so has already been unloaded with dlclose() this will
cause a segmentation fault.
<item>
Your application should link with -lpthread.
On Linux, libGL.so uses the pthreads library in order to provide
thread safety.
There is apparently a bug in the dlopen()/dlclose() code which
causes crashes if the library uses pthreads but the parent
application doesn't.
The only known work-around is to link the application with
-lpthread.
</itemize>
Some applications don't yet incorporate these procedures and
may fail.
For example, changing the graphics settings in some video games
will expose this problem.
The DRI developers are working with game vendors to prevent this
problem in the future.
<sect1>Bug Database
<p>
The DRI bug database which includes bugs related to specific
drivers is at the
<htmlurl url="http://sourceforge.net/bugs/?group_id=387"
name="SourceForge DRI Bug Database">
<p>
Please scan both the open and closed bug lists to determine if your
problem has already been reported and perhaps fixed.
<sect>Resources
<p>
<sect1>Software
<p>
A collection of useful configuration files, libraries, headers,
utilities and demo programs is available from
<htmlurl url="http://dri.sourceforge.net/res.phtml"
name="http://dri.sourceforge.net/res.phtml">
<sect1>Documentation
<p>
<itemize>
<item>General OpenGL information is available at the
<htmlurl url="http://www.opengl.org" name="OpenGL Home Page">
<item>XFree86 information is available at the
<htmlurl url="http://www.xfree86.org" name="XFree86 Home Page">
<item>Information about the design of the DRI is available from
<htmlurl url="http://www.precisioninsight.com/piinsights.html"
name="Precision Insight, Inc.">
<item>Visit the <htmlurl url="http://dri.sourceforge.net"
name="DRI project on SourceForge.net"> for the latest development
news about the DRI and 3D drivers.
<item>The <htmlurl
url="http://dri.sourceforge.net/doc/DRIcompile.html"
name="DRI Compilation Guide"> explains how to download, compile
and install the DRI for yourself.
</itemize>
<sect1>Support
<p>
<itemize>
<item>
The DRI-users mailing list at
<htmlurl url="http://sourceforge.net/mail/?group_id=387"
name="SourceForge"> is a forum for people to discuss DRI problems.
<item>
In the future there may be IHV and Linux vendor support resources
for the DRI.
</itemize>
</article>
<!-- Local Variables: -->
<!-- fill-column: 72 -->
<!-- End: -->
|