You are not logged in.
Pages: 1
Hello everyone,
I installed Arch64 on my Acer Travelmate 5720 and everything now runs really fine.
But I have a problem with Compiz.
The notebook has an Intel X3100 graphics chip and I adjusted my xorg.conf to use AIGLX like it is described in
the wiki. I installed the "intel" driver from testing, because I did not get an X Screen with the "i810" driver.
It seems that AIGLX is not working with that Driver because compiz is missing the GLX_EXT_texture_from_pixmaps when started.
is it not possible to use compiz and X3100 ?
Offline
EXACTLY the same here. Arch64 + X3100 + Compiz => doesn't work.
I found so many threads about problems with GLX_EXT_texture_from_pixmap, but no solution for me.
Seems we have to wait for a new release?!
Offline
I run Arch64 with X3100 too, and compiz-fusion works very well for me. I use nesl247's repo: http://bbs.archlinux.org/viewtopic.php?id=34028. Check that thread, and you should be able to get it working.
Note that playing videos will be slow or even crash, so I just disable compiz when I want to do that. There's an applet called compiz-fusion-icon that is very handy for that. Enabling EXA will stop it from crashing, but then it gets really cpu-heavy. Hopefully it will be solved in the future. Here's my xorg.conf if you're interested:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "extmod"
Load "xtrap"
Load "record"
Load "dbe"
Load "dri"
Load "freetype"
Load "type1"
Load "glx"
Load "synaptics"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "synaptics"
Option "Protocol" "auto-dev"
Option "SendCoreEvents"
Option "Device" "/dev/psaux"
Option "SHMConfig" "True"
Option "VertTwoFingerScroll" "false"
Option "HorizTwoFingerScroll" "false"
Option "PalmDetect" "true"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "ShadowFB" # [<bool>]
#Option "DefaultRefresh" # [<bool>]
#Option "ModeSetClearScreen" # [<bool>]
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "Mobile Integrated Graphics Controller"
BusID "PCI:0:2:0"
Option "XAANoOffscreenPixmaps" "true"
# Option "AccelMethod" "exa"
Option "EnablePageFlip" "true"
Option "RenderAccel" "true"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Extensions"
Option "Composite" "Enable"
EndSection
Offline
Pages: 1