You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

7.6 KiB

User Handbook - Graphics

Visual Enhancements

Anti-aliasing

Enhancements aimed at removing jagged lines/sharp edges and/or masking artifacts.

  • No AA: Default, provides no anti-aliasing.
  • FXAA: Fast Anti-Aliasing, an implementation as described on this blog post. Generally fast but with some innocuos artifacts.
  • SMAA: Subpixel Morphological Anti-Aliasing, an implementation as described on this article.

Filters

Various graphical filters exist - each of them aimed at a specific target/image quality preset.

  • Nearest: Provides no filtering - useful for debugging.
    • Pros: Fast, works in any hardware.
    • Cons: Less image quality.
  • Bilinear: Provides the hardware default filtering of the Tegra X1.
    • Pros: Fast with acceptable image quality.
  • Bicubic: Provides a bicubic interpolation using a Catmull-Rom (or hardware-accelerated) implementation.
    • Pros: Better image quality with more rounded edges.
  • Zero-Tangent, B-Spline, Mitchell: Provides bicubic interpolation using the respective matrix weights. They're normally not hardware accelerated unless the device supports the VK_QCOM_filter_cubic_weights extension. The matrix weights are those matching the specification itself.
    • Pros/Cons: Each of them is a variation of the Bicubic interpolation model with different weights, they offer different methods to fix some artifacts present in Catmull-Rom.
  • Spline-1: Bicubic interpolation (similar to Mitchell) but with a faster texel fetch method. Generally less blurry than bicubic.
    • Pros: Faster than bicubic even without hardware accelerated bicubic.
  • Gaussian: Whole-area blur, an applied gaussian blur is done to the entire frame.
    • Pros: Less edge artifacts.
    • Cons: Slow and sometimes blurry.
  • Lanczos: An implementation using a = 3 (49 texel fetches). Provides sharper edges but blurrier artifacts.
    • Pros: Less edge artifacts and less blurry than gaussian.
    • Cons: Slow.
  • ScaleForce: Experimental texture upscale method, see ScaleFish.
    • Pros: Relatively fast.
  • FSR: Uses AMD FidelityFX Super Resolution to enhance image quality.
    • Pros: Great for upscaling, and offers sharper visual quality.
    • Cons: Somewhat slow, and may be offputtingly sharp.
  • Area: Area interpolation (high kernel count).
    • Pros: Best for downscaling (internal resolution > display resolution).
    • Cons: Costly and slow.
  • MMPX: Nearest-neighbour filter aimed at providing higher pixel-art quality.
    • Pros: Offers decent pixel-art upscaling.
    • Cons: Only works for pixel-art.

Anisotropy values

The anisotropy value is (value game wants + the set value); Default will use the native anisotropy value as it would be on hardware. Automatic sets it according to screen resolution. Turning off anisotropy is not recommended as it can break a myriad of games, however it is provided in the name of flexibility.

Values from x2, x4, x8, x16, x32 up to x64 values are provided. This should be enough to not need to revise those values in my lifetime ever again.

External

While stock shaders offer a basic subset of options for most users, programs such as ReShade offer a more flexible experience. In addition to that users can also seek out modifications (mods) for enhancing visual experience (60 FPS mods, HDR, etc).

Installing ReShade (Windows)

  1. Download ReShade with add-on support.
  1. Open ReShade and hit browse, then the folder where eden.exe is at, hit open, then hit next.
  2. Select Vulkan as the rendering API, hit next.
  3. In "Select effects to install" screen: hit next don't change anything.
  4. In "Select add on" screen: click the box for Shader Toggler by Otis (GitHub) and hit next.

Using the Shader Toggler

  1. Launch a game, you must see a ReShade pop up afterwards.
  2. Progress to a point with a flickering shader.
  3. Hit the Home key on keyboard (or change binds if you don't have one).
  4. Navigate to the add on tab at the top of the ReShade menu.
  5. At the bottom where Shader Toggler is at open the drop down and max out the slider that says "# of fames collected" then select change shaders while staring at the flickering shader.
  6. When the Shader Toggler finishes collecting frames in the top left hit Numpad 2 till it turns off the flickering lines.
  7. Hit Numpad 3 to add it the group of shaders to turn off and hit done and save all toggle groups.
  8. Hit the edit button and select "active at startup" for the shader to be turned off on every game launch.
  9. Caps lock to manually turn on and off the shader (default key you can change it with the previous edit button)

Driver specifics

Mesa environment variable hacks

The software requires a certain version of Vulkan and a certain version of OpenGL to work - otherwise it will refuse to load, this can be easily bypassed by setting an environment variable: MESA_GL_VERSION_OVERRIDE=4.6 MESA_GLSL_VERSION_OVERRIDE=460 (OpenGL) and MESA_VK_VERSION_OVERRIDE=1.3 (Vulkan), for more information see Environment variables for Mesa.

NVIDIA OpenGL environment variables

Unstable multithreaded optimisations are offered by the stock proprietary NVIDIA driver on X11 platforms. Setting __GL_THREADED_OPTIMIZATIONS to 1 would enable such optimisations. This mainly benefits the OpenGL backend. For more information see Environment Variables for X11 NVIDIA.

swrast/LLVMpipe crashes under high load

The OpenGL backend would invoke behaviour that would result in swarst/LLVMpipe writing an invalid SSA IR (on old versions of Mesa), and then proceeding to crash. The solution is using a script found in tools/llvmpipe-run.sh.

HaikuOS compatibility

HaikuOS bundles a Mesa library that doesn't support full core OpenGL 4.6 (required by the emulator). This leads to HaikuOS being one of the few computer platforms where Vulkan is the only available option for users. If OpenGL is desired, Mesa has to be built manually from source. For debugging purpouses lavapipe is recommended over the GPU driver; there is in-kernel support for NVIDIA cards through.

Fixes for Windows 10 and above having "Device loss"

Run the following batch script inside the Eden folder:

@echo off
pushd "%~dp0"
if exist "%temp%\FixFullScreen.reg" (
  del %temp%\FixFullScreen.reg
)
set str_path="%cd:\=\\%\\eden.exe"
echo Windows Registry Editor Version 5.00 >> %temp%\FixFullScreen.reg
echo. >> %temp%\FixFullScreen.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers] >> %temp%\FixFullScreen.reg
echo %str_path%="~ DISABLEDXMAXIMIZEDWINDOWEDMODE HIGHDPIAWARE" >> %temp%\FixFullScreen.reg
regedit /s %temp%\FixFullScreen.reg
del %temp%\FixFullScreen.reg
exit /b