May 25, 20188 yr This is what i have added into tonemap.glsl Ryzen 5 1600x - 16GB DDR4 - RTX 3050 8GB - MSI Gaming Plus
May 25, 20188 yr No don't work , now i am getting legacy.glsl error. Ryzen 5 1600x - 16GB DDR4 - RTX 3050 8GB - MSI Gaming Plus
May 25, 20188 yr did you add the #endif? Im using 11.20. | Dave | I've been around for most of my life. There's always a sunset happening somewhere in the world that somebody is enjoying.
May 25, 20188 yr Author 3 minutes ago, sightseer said: did you add the #endif? don't forget this one, like I said: 3 lines to edit
May 25, 20188 yr Excellent. thanks Jean-Luc it really enhance the simulation. Alex C https://www.youtube.com/channel/UCqT3Oe3qlHHZ3A0hIJguEIw
May 25, 20188 yr Colors do seem to be more deeper , i have now added the warmth lines gotta try it. Can we increase the gamma ? Ryzen 5 1600x - 16GB DDR4 - RTX 3050 8GB - MSI Gaming Plus
May 25, 20188 yr I like it , wondering if it does cause some fps loss ? i need to try this in linux XP because Windows AMD Drivers are terrible. Did notice something weird with the water but i need to recheck it. Ryzen 5 1600x - 16GB DDR4 - RTX 3050 8GB - MSI Gaming Plus
May 25, 20188 yr Author 1 hour ago, HumptyDumpty said: wondering if it does cause some fps loss it causes none, because it is only changing the existing shader parameters to different values! The only extra processing is when you also use any 'PostProcessXXXX' function, which are way marginally impacting anything at all.
May 25, 20188 yr Must be the stupid Windows 10 Latest update along with the stupid amd opengl windows drivers. But overall it looks excellent. Just need some gamma adjustment. Ryzen 5 1600x - 16GB DDR4 - RTX 3050 8GB - MSI Gaming Plus
May 26, 20188 yr No fps deficit under linux Ryzen 5 1600x - 16GB DDR4 - RTX 3050 8GB - MSI Gaming Plus
May 26, 20188 yr @RXP I find the colors a bit too strong. is that due to the warmth ? Ryzen 5 1600x - 16GB DDR4 - RTX 3050 8GB - MSI Gaming Plus
May 26, 20188 yr Thanks for working this out! Is there a way to add sharpening to the PP pipeline with this technique, or do I have to stay with Reshade for that purpose? I only need Reshade for contrast boost and sharpening, and it would be nice to have one thing less running with X-Plane. Edited May 26, 20188 yr by Guest-475
May 26, 20188 yr Author @HumptyDumpty warmth post processing is a cross-talk filter between reg, green and blue which balances the color differently than stock, with a stronger emphasis on 'blue'. NB: I find your screenshots way too blue though, compared to what I get on NVidia. Actually you can see this easily in the code, which uses a matrix to modify each RGB component: const mat3x3 warmth = mat3x3( vec3( 1.10,-0.10,-0.10), vec3(-0.10, 1.15,-0.10), vec3(-0.10,-0.10, 1.20)); You can change these value to adjust the levels differently, or keep the same colour balance has the stock X-Plane renderer, but 'boosting' a little bit in using PostProcessSaturation (or PostProcessVibrancy) instead: //rgb = PostProcessWarmth(rgb); //rgb = PostProcessSaturation(rgb, 1.15); rgb = PostProcessVibrancy(rgb, 1.1); The default values above boost saturation by 15% or vibrancy by 10%. @mgeiss yes we could also add a 'sharpen' shader in the pack as the necessary information is already available, but this is not offered in the code I've published in this discussion. The same with 'god rays' and similar effects. Edited May 26, 20188 yr by RXP
Archived
This topic is now archived and is closed to further replies.