Bonjour,

Je desespère de faire fonction l'openGL sur mon portable. Je sais que ça peut fonctionner parce qu'avec un liveCD d'ubuntu, le dri est "supported"

uname -a :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
Linux localhost 2.6.16-gentoo-r9 #5 SMP Tue Oct 10 17:58:00 CEST 2006 i686 Intel(R) Pentium(R) M processor 1.60GHz GenuineIntel GNU/Linux
lspci

Code : Sélectionner tout - Visualiser dans une fenêtre à part
00:02.1 Display controller: Intel Corporation 82852/855GM Integrated Graphics Device (rev 02)
Mon noyau :
Graphics support :
<*> Intel 810/815 support (EXPERIMENTAL)
[ ] use VESA Generalized Timing Formula
<*> Intel 830M/845G/852GM/855GM/865G support (EXPERIMENTAL) [*] Intel driver Debug Messages

cat /etc/X11/xorg.conf

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
# File generated by XFdrake.
 
# **********************************************************************
# Refer to the XF86Config man page for details about the format of
# this file.
# **********************************************************************
 
Section "Files"
    # Multiple FontPath entries are allowed (they are concatenated together)
    # By default, Mandrake 6.0 and later now use a font server independent of
    # the X server to render fonts.
#    FontPath "unix/:-1"
EndSection
 
Section "ServerFlags"
    #DontZap # disable <Crtl><Alt><BS> (server abort)
    AllowMouseOpenFail # allows the server to start up even if the mouse does not work
    #DontZoom # disable <Crtl><Alt><KP_+>/<KP_-> (resolution switching)
EndSection
 
Section "Module"
    Load "dbe" # Double-Buffering Extension
    Load "v4l" # Video for Linux
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx" # 3D layer
#    Load "dri" # direct rendering
EndSection
 
Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "fr"
    Option "XkbOptions" "compose:rwin"
EndSection
 
Section "InputDevice"
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "PS/2"
    Option "Device" "/dev/psaux"
    Option "ZAxisMapping" "6 7"
    Option "Emulate3Buttons"    "true"
EndSection
 
Section "Monitor"
    Identifier "monitor1"
    VendorName "Generic"
    ModelName "1024x768 @ 70 Hz"
    HorizSync 31.5-57.0
    VertRefresh 50-70
 
    # TV fullscreen mode or DVD fullscreen output.
    # 768x576 @ 79 Hz, 50 kHz hsync
    ModeLine "768x576"     50.00  768  832  846 1000   576  590  595  630
 
    # 768x576 @ 100 Hz, 61.6 kHz hsync
    ModeLine "768x576"     63.07  768  800  960 1024   576  578  590  616
EndSection
 
Section "Device"
    Identifier "device1"
    VendorName "Intel Corp."
    BoardName "Intel 85x"
#    Driver "fglrx"
    Driver "i810"
    BusID "PCI:0:2:0"
    Option "DPMS" "false"
EndSection
 
Section "Screen"
    Identifier "screen1"
    Device "device1"
    Monitor "monitor1"
    DefaultColorDepth 16
 
    Subsection "Display"
        Depth 8
        Virtual 1024 768
    EndSubsection
 
    Subsection "Display"
        Depth 15
        Virtual 1024 768
    EndSubsection
 
    Subsection "Display"
        Depth 16
        Virtual 1024 768
    EndSubsection
 
    Subsection "Display"
        Depth 24
        Virtual 1024 768
    EndSubsection
EndSection
 
Section "ServerLayout"
    Identifier "layout1"
    InputDevice "Keyboard1" "CoreKeyboard"
    InputDevice "Mouse1" "CorePointer"
    Screen "screen1"
EndSection

L'erreur :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
AIGLX: Screen 0 is not DRI capable
If you can, PLEAS HELP !!!!