

It takes clean input (audio or video) and subjects it to algorithmic "torture" to produce something entirely new. 🚀 What’s New in v050?
Previous builds used a bitwise logical left shift ( << ) combined with a modulo operation to create visual tearing. The pseudocode logic was roughly: pixel_value = (source_pixel << shift_amount) % 255 This was slow. It required accessing the color value, performing a shift, performing a division (modulo), and reassigning the value. Furthermore, the % 255 operation created color banding artifacts that were considered undesirable by the development standards. cruel serenade gutter trash v050 bitshift better
Enhanced volumetric fog and neon bloom effects for a more immersive atmosphere. It takes clean input (audio or video) and
The visual engine in the Gutter Trash series has always been taxing on GPUs. v050 introduces: performing a shift