Hi,
I just installed KDE 4.1 on my desktop -- so far it's been working fine, except I can't get OpenGL desktop effects to work.
When I try to enable OpenGL compositing, I get no effects -- as in, the screen looks exactly as with effects disabled. On the tty from which I started X I can see:
|
Source code
|
1
2
3
|
kwin(3108): Couldn't find framebuffer configuration for depth 32 (no ARGB GLX visual)!
kwin(3108): Failed to initialize compositing, compositing disabled
kwin(3108): Consult http://techbase.kde.org/Projects/KWin/4.0-release-notes#Setting_up
|
Googling for this output didn't help me any -- I only found a page or two listing the KWin source file that produces this output. Following the link from the output, it seems that I have my driver set-up properly.
I've tried playing with the options in the Screen section of my xorg.conf, but with no
success. Other OpenGL apps work fine as well as other compositors,
including the KDE 3.5's one. XRender compositing works too, and I'm
using that right now -- but I'd love to get OpenGL working.
I'm using NVidia GeForce 7300 GT with NVidia driver version 173.14.09 on an x86_64 ArchLinux box. My xorg.conf contains this (removed things like font paths and input devices):
|
Source code
|
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
|
Section "Module"
Load "dbe"
Load "extmod"
Load "freetype"
Load "glx"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
Option "NoLogo" "True"
Option "AddARGBGLXVisuals" "True"
Option "DamageEvents" "True"
Option "TripleBuffer" "True"
Option "HWCursor" "True"
Option "AllowGLXWithComposite" "True"
Option "UseEdidDpi" "False"
Option "DPI" "96 x 96"
SubSection "Display"
Depth 24
Modes "1152x864"
EndSubSection
EndSection
Section "Extensions"
Option "Composite" "Enable"
Option "Damage" "Enable"
Option "Render" "Enable"
EndSection
|