• XIIIesq@lemmy.world
    link
    fedilink
    English
    arrow-up
    6
    ·
    6 months ago

    Can someone explain to a noob why driver updates are useful after so many years?

    Is it about compatibility?

    • stevecrox@kbin.run
      link
      fedilink
      arrow-up
      25
      ·
      6 months ago

      Most of the updates are about long term support the performance gains are a side product.

      This driver was one of the earliest open source drivers developed by AMD. The point of the driver is to convert OpenGL (instructions games give to draw 3D shapes) into the low level commands a graphics card uses.

      A library (TMSC I think) was written to do this, however they found OpenGL commands often relied on the results of others and converting back to OpenGL was really CPU expensive.

      So someone invented NIR, its an intermediate layer. You convert all OpenGL commands to NIR and it uses way less CPU to convert from NIR to GPU commands and back.

      People in their spare time have been updating the old AMD drivers so they use the same libraries, interfaces, etc… as the modern AMD drivers.

      This update removes the last of the TMSC? usage so now the driver uses only NIR.

      From a dev perspective everything now works the same way (less effort) from a user perspective those old cards get the performance bump NIR brought.

    • Baguette@lemmy.ml
      link
      fedilink
      English
      arrow-up
      7
      ·
      6 months ago

      Yup, these updates help make sure your gpu still works with each os update, as well as maybe fixing a bit of uncaught issues/bugs