Intel HD Graphics 520が統合されたCore i7-6500Uを実行しています。GNOMEでは、アクティビティ画面への移動、Firefoxでのスクロールなど、すべてのアニメーションが途切れます。 VLCでは動画でもスムーズに再生されません。私のラップトップには4K LCDパネルが組み込まれていますが、1920x1080でも途切れます。よりスムーズにするためにできることはありますか、それともGPUの制限ですか?カーネルは4.16.9です。 inxi -Gが言う
Graphics: Card: Intel HD Graphics 520
Display Server: x11 (X.Org 1.19.6 )
drivers: fbdev (unloaded: modesetting,vesa)
Resolution: [email protected]
OpenGL: renderer: Mesa DRI Intel HD Graphics 520 (Skylake GT2)
version: 4.5 Mesa 18.0.0-rc5
glxinfo | grep -Ei 'opengl | direct rendering'によると
direct rendering: Yes
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) HD Graphics 520 (Skylake GT2)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 18.0.0-rc5
OpenGL core profile shading language version string: 4.50
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 3.0 Mesa 18.0.0-rc5
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.2 Mesa 18.0.0-rc5
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
OpenGL ES profile extensions:
わかりました。したがって、通常は、xorg.conf
を作成し、パラメーターを適切に設定するだけで、より適切なエクスペリエンスを得ることができます。この場合、パラメーターAccelMethod
をsna
に設定し、TearFree
をtrue
に設定するのがトリックです。ターミナルで続行する方法は次のとおりです。
最初のステップ:
Sudo mkdir /etc/X11/xorg.conf.d/
2番目のステップ:
コマンドを実行する
echo -e 'Section "Device"\n Identifier "Intel Graphics"\n Driver "Intel"\n Option "AccelMethod" "sna"\n Option "TearFree" "true"\nEndSection' | Sudo tee /etc/X11/xorg.conf.d/20-intel.conf
これにより、コンテンツを含む/etc/X11/xorg.conf.d/20-intel.conf
ファイルが作成されます。
Section "Device"
Identifier "Intel Graphics"
Driver "Intel"
Option "AccelMethod" "sna"
Option "TearFree" "true"
EndSection
その後、再起動するだけです。それが役に立てば幸い。