mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-21 21:17:19 +00:00
[client] egl: mark all preset-only options as such
This commit is contained in:
parent
44850f1699
commit
3345ff8448
@ -81,6 +81,7 @@ static void egl_filterDownscaleEarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "downscale",
|
||||
.description = "Enable downscaling",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_BOOL,
|
||||
.value.x_bool = false
|
||||
},
|
||||
@ -88,6 +89,7 @@ static void egl_filterDownscaleEarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "downscalePixelSize",
|
||||
.description = "Downscale filter pixel size",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_FLOAT,
|
||||
.value.x_float = 2.0f
|
||||
},
|
||||
@ -95,6 +97,7 @@ static void egl_filterDownscaleEarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "downscaleHOffset",
|
||||
.description = "Downscale filter horizontal offset",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_FLOAT,
|
||||
.value.x_float = 0.0f
|
||||
},
|
||||
@ -102,6 +105,7 @@ static void egl_filterDownscaleEarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "downscaleVOffset",
|
||||
.description = "Downscale filter vertical offset",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_FLOAT,
|
||||
.value.x_float = 0.0f
|
||||
},
|
||||
@ -109,6 +113,7 @@ static void egl_filterDownscaleEarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "downscaleFilter",
|
||||
.description = "Downscale filter type",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_INT,
|
||||
.value.x_int = 0
|
||||
},
|
||||
|
@ -56,6 +56,7 @@ static void egl_filterFFXCASEarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "ffxCAS",
|
||||
.description = "AMD FidelityFX CAS",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_BOOL,
|
||||
.value.x_bool = false
|
||||
},
|
||||
@ -63,6 +64,7 @@ static void egl_filterFFXCASEarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "ffxCASSharpness",
|
||||
.description = "AMD FidelityFX CAS Sharpness",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_FLOAT,
|
||||
.value.x_float = 0.0f
|
||||
},
|
||||
|
@ -61,6 +61,7 @@ static void egl_filterFFXFSR1EarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "ffxFSR",
|
||||
.description = "AMD FidelityFX FSR",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_BOOL,
|
||||
.value.x_bool = false
|
||||
},
|
||||
@ -68,6 +69,7 @@ static void egl_filterFFXFSR1EarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "ffxFSRSharpness",
|
||||
.description = "AMD FidelityFX FSR Sharpness",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_FLOAT,
|
||||
.value.x_float = 1.0f
|
||||
},
|
||||
|
@ -70,6 +70,7 @@ void egl_postProcessEarlyInit(void)
|
||||
.module = "eglFilter",
|
||||
.name = "order",
|
||||
.description = "The order of filters to use",
|
||||
.preset = true,
|
||||
.type = OPTION_TYPE_STRING,
|
||||
.value.x_string = ""
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user