web-dev-qa-db-ja.com

Googleでのみ引き裂くChrome

Xubuntu 15.04とGeForce GT 630を使用しています。

また、このハックを使用しています https://github.com/chjj/compton/wiki/vsync-guide (最後のポイント)およびnvidiaドライバー355.11は、Xfceでの破損を防ぎます。

すべてのアプリケーションで問題はありませんが、Google Chrome(バージョン45.0.2454.101)でまだ涙が出ています:Youtubeビデオ、GoogleマップなどのWebアプリケーションなど、Firefoxではそうではありません。

この問題を何らかの形で修正することは可能ですか?

3
ipeacocks

破損を防ぐために、Nvidiaカード用にカスタムxorg.confを作成しました(以下を参照)。あなたがメインラインを見ることができるようにあります:

 Option         "metamodes" "nvidia-auto-select +0+0 { ForceFullCompositionPipeline = On }"

失敗した場合は、独自のxorg.confを生成してください。 Nvidiaのドライバーを更新するたびにxorg.confを置き換えることができるため、再度置き換えるだけです。

このハックにより、Webビデオの破損も修正されました。

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 364.19  (buildmeister@swio-display-x64-rhel04-11)  Tue Apr 19 15:22:17 PDT 2016

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    Option         "metamodes" "nvidia-auto-select +0+0 { ForceFullCompositionPipeline = On }"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
4
ipeacocks

[Chrome設定]> [詳細設定を表示...]に移動し、[使用可能な場合はハードウェアアクセラレーションを使用する]を無効にします。

それは私のために働いた。

1
juankvillegas