While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- New US Congress bill proposal requires all operating system providers to verify ages [updated]
- Mozilla announced "Thunderbolt", their open-source and self-hostable AI client
- US operating system age verification bill "Parents Decide Act" gets published
- PlayStation 3 emulator RPCS3 can now auto-configure games for you
- X.Org X server and Xwayland security advisory released for multiple issues
- > See more over 30 days here
- Away all of next week
- Liam Dawe - Testing the VRAM valve patch
- Koopa - New Desktop Screenshot Thread
- tmtvl - Shop Crush - Psychological Horror Thrift Sim with Literal Illusio…
- hollowlimb - Proton/Wine Games Locking Up
- Caldathras - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
Under Windows I can tweak the Brightness in the Catalyst Settings.
But from Performance Standpoint the Game
runs better then under the nativ OS.
for example
xrandr --output DP-4 --gamma 1.50:1.50:1.50ofc use output of your monitor port and to change it back do the same but gamma values 1.0
you can script it and keybind the scripts to change when needed also
Last edited by Xpander on 18 Feb 2023 at 4:41 pm UTC
#include "ReShade.fxh"
#define BRIGHTNESS_BOOST 0.2f // 0.0f no boost, 1.0f full white
float3 PS_HSLFXmain(float4 vpos : SV_Position, float2 texcoord : TexCoord) : SV_Target
{
float3 input = tex2D(ReShade::BackBuffer, texcoord).rgb;
return clamp(input + BRIGHTNESS_BOOST, 0.0, 1.0);
}
technique HSL
{
pass
{
VertexShader = PostProcessVS;
PixelShader = PS_HSLFXmain;
}
}
Save the code as HSL.fs and save it in the configured reshade dir. Adjust brightness from 0.0 to 1.0 with the BRIGHTNESS_BOOST constant.
You need the [reshade headers](https://github.com/crosire/reshade-shaders) and a config like this:
effects = HSL
reshadeTexturePath = "/home/user/.config/vkBasalt/reshade/textures/"
reshadeIncludePath = "/home/user/.config/vkBasalt/reshade/shaders"
HSL = "/home/user/.config/vkBasalt/reshade/shaders/HSL.fx"
There is however most likely a much better and more straightforward way to do this.
Last edited by whizse on 18 Feb 2023 at 9:26 pm UTC
But other than that. For singleplayer games. Yeah thats also one way to do it. or maybe even use the fakehdr.fx and tweak the values there.
However as Xpander mentioned, since this is a multiplayer game you're probably better off not using vkBasalt and just adjusting the gamma.
Last edited by whizse on 23 Feb 2023 at 1:58 pm UTC