• randomname@sh.itjust.works
    link
    fedilink
    arrow-up
    5
    ·
    3 days ago

    Not sure why most games cant/dont do this, but i’ve seen Minecraft shaders use temporal upscaling exclusively on the clouds, reflections, and shadows. while using fxaa for the rest of the image.

    • Natanael@infosec.pub
      link
      fedilink
      arrow-up
      3
      ·
      3 days ago

      Because you need to dig into the rendering engine to do that, and if you didn’t build it yourself you might not be able to do that easily

      • Lv_InSaNe_vL@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        2 days ago

        Which would be easier if you were a dev making your own game than if you were making a mod for an existing one no?

        • Natanael@infosec.pub
          link
          fedilink
          arrow-up
          1
          ·
          2 days ago

          Depends on the rendering engine architecture. If it processes stuff in layers already you can work with that more easily, same if you can insert rules for stuff like different shaders for different object types.

          If you’re dealing with a game where the rendering engine can’t do that it will be very complex regardless of how much source code you have.