You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
May be interesting to implement. Most older games request it but d3d9 doesn't support it. Could be upstreamed too to d3d9. Not sure if it was ever a thing in 32-bit color. But a lot of games use textures or buffers with more limited colors. Also might be interesting to emulate 16-bit color with dithering if possible.
Modern games still use dithering. For example Unity adds random noise to reduce quantization error. It can, however, somewhat sacrifice recorded video quality so it should be configurable. Worth looking into what techniques classic D3D games might expect from drivers, which blits etc have dithering applied.
The text was updated successfully, but these errors were encountered:
Could be upstreamed too to d3d9. Not sure if it was ever a thing in 32-bit color.
Hi Jeff, when you talk about Dithering the first game that comes to my mind is GTA San Andreas, I think dithering can benefit D3D9 game too, Wesser made a mod that corrects the Sky Gradient of GTA SA with dithering, it's called SkyGrad:
Now, do you plan to implement Dithering as an enableable option per game, as a solution to this problem?
Edit: Something Wesser mentions in the link I linked that may help you:
I got rid of the awful sky bandings which make the gradient looking blocky thanks to dithering: a randomized grain raster is sampled and each pixel is taken as a threshold to choose whether to dither or not to dither when the integer rounding would inevitably compromise the linearity of the color interpolation.
May be interesting to implement. Most older games request it but d3d9 doesn't support it. Could be upstreamed too to d3d9. Not sure if it was ever a thing in 32-bit color. But a lot of games use textures or buffers with more limited colors. Also might be interesting to emulate 16-bit color with dithering if possible.
Modern games still use dithering. For example Unity adds random noise to reduce quantization error. It can, however, somewhat sacrifice recorded video quality so it should be configurable. Worth looking into what techniques classic D3D games might expect from drivers, which blits etc have dithering applied.
The text was updated successfully, but these errors were encountered: