In 2024, with GNOME 45, Wayland, and 1.25 fractional scaling, regular DPI displays still look better than HiDPI displays. This is a photo of Discord on two laptops side by side.

The blurry one is the HiDPI display from Framework 13. The sharp one is a regular DPI display from Dell XPS 13. Both laptops.

The difference is even more stark in person.

Even the screenshots from the Framework are blurrier than the screen shots from the Dell.

  • Max-P@lemmy.max-p.me
    link
    fedilink
    arrow-up
    2
    ·
    6 months ago

    Unless it changed recently, Gnome and fractional scaling factors do that. When you set it to 1.25, internally it does 2x then downscales that back to 1.25.

    • deadcream@sopuli.xyz
      link
      fedilink
      arrow-up
      4
      arrow-down
      3
      ·
      6 months ago

      Even “real” fractional scaling in Plasma with Qt 6 is not much better. Text will look slightly sharper, but icons are still blurry. There is no way for them to look sharp with 1.25 scaling since they are drawn with a pixel grid in mind. Unless you invent some way to stretch svgs so that their individual elements and spaces between them retain their integer-ness while the scale of the whole image is fractional.

      The only other solution is monitors with 300+ PPI where blurriness is simply not noticeable (that’s the way Apple went).

      • acockworkorange@mander.xyz
        link
        fedilink
        arrow-up
        3
        ·
        edit-2
        6 months ago

        SVG is vector based, you can scale it endlessly. I don’t know how KDE does it, but the only thing I can imagine SVG giving you grief scaling is if the DE is caching bitmaps and scaling the cached versions instead of redrawing the icons.

        Caching bitmaps for SVGs is sensible, not updating them when needed is madness. So probably it’s something else.

        • deadcream@sopuli.xyz
          link
          fedilink
          arrow-up
          1
          ·
          6 months ago

          It is scalable but the icons are still drawn against the virtual pixel grid. If an icon is designed to be perfectly pixel-aligned when rasterized at a certain size, then rasterizing it at 1.25 of that size will cause small distortions if it contains small elements (such as 1 px width lines).