LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   direct rendering issue on slackware (https://www.linuxquestions.org/questions/linux-newbie-8/direct-rendering-issue-on-slackware-669435/)

shingo013 09-12-2008 05:17 AM

direct rendering issue on slackware
 
Its almost a week now that i'm trying to enable direct rendering on my machine.
I have a intel chipset 82815 and i've tried most of google's advices on enabling it but i still get :
Code:

root@hell:~# glxinfo | grep direct
direct rendering: No (If you want to find out why, try setting LIBGL_DEBUG=verbose)
OpenGL renderer string: Mesa GLX Indirect
root@hell:~#

stuff i tried:
-loading the glx and dri modules
-adding a section "dri" to xorg.conf (mode 0666)
-compiled drm kernel modules and used them
-changing the driver line of the graphic section in xorg.conf from "intel" (that was set up from xorgsetup ) to i810
-tried to change xorf.conf-vesa

i'm frustrated.anyone has any idea?
if you need my xorg.conf file let me know and i will post it.

masonm 09-12-2008 07:40 AM

Two things:

1. post your xorg.conf
2. Have you checked the xorg log to see what errors there may be regarding the card?

shingo013 09-12-2008 09:57 AM

my xorg.conf:
Code:

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/TTF"
        FontPath    "/usr/share/fonts/OTF"
        FontPath    "/usr/share/fonts/Type1"
        FontPath    "/usr/share/fonts/misc"
        FontPath    "/usr/share/fonts/75dpi/:unscaled"
EndSection

Section "Module"
        Load  "xtrap"
        Load  "dbe"
        Load  "dri"
        Load  "GLcore"
        Load  "extmod"
        Load  "record"
        Load  "glx"
        Load  "freetype"
        Load  "type1"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel"  "pc101"
        Option      "XkbLayout"  "us"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option            "Protocol" "auto"
        Option            "Device" "/dev/input/mice"
        Option            "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        #DisplaySize          310  230        # mm
        Identifier  "Monitor0"
        VendorName  "NEC"
        ModelName    "NEC LCD1525V"
 ### Comment all HorizSync and VertRefresh values to use DDC:
        HorizSync    24.0 - 49.0
        VertRefresh  55.0 - 75.0
        Option            "DPMS"
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    "NoAccel"                    # [<bool>]
        #Option    "SWcursor"                  # [<bool>]
        #Option    "ColorKey"                  # <i>
        #Option    "CacheLines"                # <i>
        #Option    "Dac6Bit"                    # [<bool>]
        Option    "DRI"    "yes"                    # [<bool>]
        #Option    "NoDDC"                      # [<bool>]
        #Option    "ShowCache"                  # [<bool>]
        #Option    "XvMCSurfaces"              # <i>
        #Option    "PageFlip"                  # [<bool>]
        Identifier  "Card0"
        Driver      "intel"                            #intel
        VendorName  "Intel Corporation"
        BoardName  "82815 Chipset Graphics Controller (CGC)"
        BusID      "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device    "Card0"
        Monitor    "Monitor0"
        DefaultDepth 24
        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 "DRI"
  Mode 0666
 EndSection

Section "Extensions"
  Option        "Composite"    "Enable"
EndSection

i don't see any error msg in the xorg log ..
thnx for helping me masonm


All times are GMT -5. The time now is 06:33 PM.