Autor Tópico: Aceleração 3D - Intel Graphics Media Accelerator  (Lida 13975 vezes)

Offline maurowil

  • Usuário Ubuntu
  • *
  • Mensagens: 2
    • Ver perfil
Aceleração 3D - Intel Graphics Media Accelerator
« Online: 08 de Novembro de 2006, 23:41 »
Amigos,
Estou com um probleminha.
Possuo o seguinte Notebook:

Citar
Intel Pentium Core Solo CST1300 1.66GHz
Barramento 667 MHz
Cache 2MB
Disco Rígido 120GB
Memória 512MB DDR2 400/533 ate 2GB
Drive Óptico DVD-RW Dual Layer
Tela Screen 15.4" WXGA TFT
Resolução 1280 x 800
Dispositivos OnBoard Áudio, Vídeo ( Intel© Graphics Media Accelerator 950 64MB), Rede, Fax
Wireless Acer InviLink 54Mbps Wi-Fi IEEE 802.11b/g
Bluetooth
PCMCIA 1 Type IIÿPCCard slot
Card Reader Não
Câmera de Vídeo Não
Dimensões 1.5" Height x 14.3" Width x 11" Depth
Bateria 6 Cel até 3 horas
Conectores Integrados DC-in, RJ-11 modem, RJ-45 LAN, VGA, headphones/speakers/line-out com SPDIF support, microphone/line-in, 3 USB 2.0
Sistema Operacional Ubuntu Edgy

Acabei de configurar minha placa de vídeo e a resolução agora está 1280x800. Mas não estou conseguindo configurar a aceleração 3D. O driver que estou utilizando é o i810, que, segundo o que li em muitos sites, é o driver correto e foi reconhecido pelo Ubuntu na instalação.

Meu xorg.conf está com a seguinte configuração:

Citar
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
    FontPath    "/usr/share/X11/fonts/misc"
    FontPath    "/usr/share/X11/fonts/cyrillic"
    FontPath    "/usr/share/X11/fonts/100dpi/:unscaled"
    FontPath    "/usr/share/X11/fonts/75dpi/:unscaled"
    FontPath    "/usr/share/X11/fonts/Type1"
    FontPath    "/usr/share/X11/fonts/100dpi"
    FontPath    "/usr/share/X11/fonts/75dpi"
    FontPath    "/usr/share/fonts/X11/misc"
    # path to defoma fonts
    FontPath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
    Load    "i2c"
    Load    "bitmap"
    Load    "ddc"
    Load    "dri"
    Load    "extmod"
    Load    "freetype"
    Load    "glx"
    Load    "int10"
    Load    "type1"
    Load    "vbe"
EndSection

Section "InputDevice"
    Identifier    "Generic Keyboard"
    Driver        "kbd"
    Option        "CoreKeyboard"
    Option        "XkbRules"    "xorg"
    Option        "XkbModel"    "pc105"
    Option        "XkbLayout"    "us"
    Option        "XkbOptions"    "lv3:ralt_switch"
    Option        "XkbVariant"    "intl"
EndSection

Section "InputDevice"
    Identifier    "Configured Mouse"
    Driver        "mouse"
    Option        "CorePointer"
    Option        "Device"        "/dev/input/mice"
    Option        "Protocol"        "ExplorerPS/2"
    Option        "ZAxisMapping"        "4 5"
    Option        "Emulate3Buttons"    "true"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "Device"
    Identifier    "Intel Corporation Mobile Integrated Graphics Controller"
    Driver        "i810"
    BusID        "PCI:0:2:0"
    Option        "XAANoOffscreenPixmaps" "true"
    Option        "ForceBIOS" "1024×768=1280×800"
EndSection

Section "Monitor"
    Identifier    "Generic Monitor"
    Option        "DPMS"
    HorizSync    28-64
    VertRefresh    43-60
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Device        "Intel Corporation Mobile Integrated Graphics Controller"
    Monitor        "Generic Monitor"
    DefaultDepth    24
    SubSection "Display"
        Depth        1
        Modes        "1280x800"
    EndSubSection
    SubSection "Display"
        Depth        4
        Modes        "1280x800"
    EndSubSection
    SubSection "Display"
        Depth        8
        Modes        "1280x800"
    EndSubSection
    SubSection "Display"
        Depth        15
        Modes        "1280x800"
    EndSubSection
    SubSection "Display"
        Depth        16
        Modes        "1280x800"
    EndSubSection
    SubSection "Display"
        Depth        24
        Modes        "1280x800"
    EndSubSection
EndSection

Section "ServerLayout"
    Identifier    "Default Layout"
    Screen        "Default Screen"
    InputDevice    "Generic Keyboard"
    InputDevice    "Configured Mouse"
    InputDevice     "stylus" "SendCoreEvents"
    InputDevice     "cursor" "SendCoreEvents"
    InputDevice     "eraser" "SendCoreEvents"
EndSection

Section "DRI"
    Mode    0666
EndSection

Section "Extensions"
    Option        "Composite" "true"
EndSection

Quando executo o comando glxinfo | grep rendering o resultado é:

Citar
willian@ubuntu-laptop:~$ glxinfo | grep rendering
direct rendering: No


Mas o correto seria:

Citar
willian@ubuntu-laptop:~$ glxinfo | grep rendering
direct rendering: Yes


Alguém poderia me ajudar a configurar a aceleração 3D no meu notebook?


Agradeço desde já.




Abraços,

Offline Jorge

  • DavidCrifeAJ
  • Usuário Ubuntu
  • *
  • Mensagens: 5
    • Ver perfil
Re: Aceleração 3D - Intel Graphics Media Accelerator
« Resposta #1 Online: 16 de Novembro de 2006, 23:06 »
Olha acredito que está errado tua configuração o certo é esse aí:   (Tenho um notebook tambem com a 945 GMA intel rodando rudo de 3D que existe)

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
   FontPath   "/usr/share/X11/fonts/misc"
   FontPath   "/usr/share/X11/fonts/cyrillic"
   FontPath   "/usr/share/X11/fonts/100dpi/:unscaled"
   FontPath   "/usr/share/X11/fonts/75dpi/:unscaled"
   FontPath   "/usr/share/X11/fonts/Type1"
   FontPath   "/usr/share/X11/fonts/100dpi"
   FontPath   "/usr/share/X11/fonts/75dpi"
   FontPath   "/usr/share/fonts/X11/misc"
   # path to defoma fonts
   FontPath   "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
   Load   "i2c"
   Load   "bitmap"
   Load   "ddc"
   Load   "dri"
   Load   "extmod"
   Load   "freetype"
   Load   "glx"
   Load   "int10"
   Load   "type1"
   Load   "vbe"
EndSection

Section "InputDevice"
   Identifier   "Generic Keyboard"
   Driver      "kbd"
   Option      "CoreKeyboard"
   Option      "XkbRules"   "xorg"
   Option      "XkbModel"   "pc105"
   Option      "XkbLayout"   "us"
   Option      "XkbOptions"   "lv3:ralt_switch"
   Option      "XkbVariant"   "intl"
EndSection

Section "InputDevice"
   Identifier   "Configured Mouse"
   Driver      "mouse"
   Option      "CorePointer"
   Option      "Device"      "/dev/input/mice"
   Option      "Protocol"      "ExplorerPS/2"
   Option      "ZAxisMapping"      "4 5"
   Option      "Emulate3Buttons"   "true"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "Device"
   Identifier   "Intel Corporation Mobile Integrated Graphics Controller"
   Driver      "i810"
   BusID      "PCI:0:2:0"
EndSection

Section "Monitor"
   Identifier   "Generic Monitor"
   Option      "DPMS"
   HorizSync   28-64
   VertRefresh   43-60
EndSection

Section "Screen"
   Identifier   "Default Screen"
   Device      "Intel Corporation Mobile Integrated Graphics Controller"
   Monitor      "Generic Monitor"
   DefaultDepth   24
   SubSection "Display"
      Depth      1
      Modes      "1280x800"
   EndSubSection
   SubSection "Display"
      Depth      4
      Modes      "1280x800"
   EndSubSection
   SubSection "Display"
      Depth      8
      Modes      "1280x800"
   EndSubSection
   SubSection "Display"
      Depth      15
      Modes      "1280x800"
   EndSubSection
   SubSection "Display"
      Depth      16
      Modes      "1280x800"
   EndSubSection
   SubSection "Display"
      Depth      24
      Modes      "1280x800"
   EndSubSection
EndSection

Section "ServerLayout"
   Identifier   "Default Layout"
   Screen      "Default Screen"
   InputDevice   "Generic Keyboard"
   InputDevice   "Configured Mouse"
   InputDevice     "stylus" "SendCoreEvents"
   InputDevice     "cursor" "SendCoreEvents"
   InputDevice     "eraser" "SendCoreEvents"
EndSection

Section "DRI"
   Mode   0666
EndSection


isso xorg.conf

Espero que ajude

Offline soulswork

  • Usuário Ubuntu
  • *
  • Mensagens: 5
  • Din Fernandes
    • Ver perfil
    • My Space Din
Re: Aceleração 3D - Intel Graphics Media Accelerator
« Resposta #2 Online: 02 de Fevereiro de 2007, 20:01 »
Olha...

Na minha primeira instalação, eu tive o mesmo problema, usava o Dapper.
Eu consegui resolver intalando o Edgy Eft. E o drive que automáticamente foi usado foi o 915i da Intel
Mas depois que minha aceleração 3D fucionou no monitor apresenta 1024x768, apesar do Xorg dizer que são 1280X800.

Abraço.





Din
why u cry, penguin?

Offline clcampos

  • Administrador
  • Usuário Ubuntu
  • *****
  • Mensagens: 10.790
  • .:: User Linux #439596 ::.
    • Ver perfil
Re: Aceleração 3D - Intel Graphics Media Accelerator
« Resposta #3 Online: 16 de Abril de 2007, 22:40 »
Quando executo o comando glxinfo | grep rendering recebo o resultado. Alguém sabe o que é este erro?

Código: [Selecionar]
# glxinfo | grep rendering
libGL warning: 3D driver claims to not support visual 0x5b
direct rendering: Yes

Minha placa é uma Intel GMA 950, instalada num note Acer TravelMate 4222WLMI
Cristiano/Timóteo - MG
.: Como Fazer Perguntas de Forma Inteligente :.                
Com dúvida? pesquise!

Offline rafasnn

  • Usuário Ubuntu
  • *
  • Mensagens: 611
    • Ver perfil
Re: Aceleração 3D - Intel Graphics Media Accelerator
« Resposta #4 Online: 26 de Junho de 2008, 11:41 »
Olha acredito que está errado tua configuração o certo é esse aí:   (Tenho um notebook tambem com a 945 GMA intel rodando rudo de 3D que existe)

só para ilustrar o meu problema, juro que quando conseguir rodar o Command Conquer Tiberiun Wars, apago o Vista   ;D

já tentei o wine, comprei o cedega e nada....

Macbook Pro 2,33 4GB 250GB
iPhone 8GB