NVIDIA 레터박스용 xorg.conf 메타모드 설정

NVIDIA 레터박스용 xorg.conf 메타모드 설정

저는 현재 왜곡 없이 오래된 게임을 전체 화면으로 플레이할 수 있도록 xorg.conf디스플레이의 기본 해상도( )보다 작은 레터박스 화면 해상도를 구성하려고 합니다 . 1680x1050에 메타모드를 추가하는 방법이 있다는 것을 알았습니다 . 하지만 문서화 수준이 매우 낮기 때문에 추가 입력 없이 xorg.conf작업을 시작하는 것이 조금 두렵습니다 . xorg.conf예를 들어 기본 해상도인 1024x768. 중앙과 레터박스에 무엇을 추가해야 합니까?

여기 나의 xorg.conf:

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"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

다음은 유용할 수 있는 몇 가지 링크입니다.

비슷한 질문:http://www.nvnews.net/vbulletin/showthread.php?t=184968

선적 서류 비치:http://us.download.nvidia.com/XFree86/Linux-x86_64/302.17/README/configtwinview.html#metamodes

감사해요!

관련 정보