
我運行的是具有集成 Intel HD Graphics 520 的 Core i7-6500U。甚至連影片在 VLC 中也不能流暢播放。我的筆記型電腦有內建 4K LCD 面板,但即使在 1920x1080 下也很不穩定。我可以做些什麼來讓它更流暢,還是這只是 GPU 的限制?內核是4.16.9。因西-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: 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:
答案1
好的,通常您只需要建立一個xorg.conf
並正確設定參數即可獲得更不錯的體驗。在這種情況下,參數AccelMethod
設定為sna
和TearFree
totrue
就是起作用的。以下是在終端機中進行操作的方法:
第一步:
sudo mkdir /etc/X11/xorg.conf.d/
第二步:
運行命令
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
之後只需重新啟動即可。希望能幫助你。