• samc@feddit.uk
    link
    fedilink
    English
    arrow-up
    59
    ·
    9 months ago

    At the end there’s a little jab towards Wayland:

    Today, the Wayland enthusiasts like to talk about how they are modernizing the Linux graphics stack. But Linux is a Unix, and in Unix, everything is meant to be a file. So any Wayland evangelists out there, tell us: where in the file system can I find the files describing a window on the screen under the Wayland protocol? What file holds the coordinates of the window, its place in the Z-order, its colour depth, its contents?

    As far as I’m aware nobody has even considered extending the file metaphor to the graphics stack, and it sounds a bit ridiculous to me.

    It also reminds me of this talk that suggests maybe trying to express everything as a file might not be the best idea…

    • SavvyWolf@pawb.social
      link
      fedilink
      English
      arrow-up
      22
      arrow-down
      2
      ·
      9 months ago

      I have a 144Hz display. I’m sure my system would love every frame hitting the filesystem layer.

      • Kornblumenratte@feddit.de
        link
        fedilink
        arrow-up
        21
        arrow-down
        2
        ·
        9 months ago

        /dev/fb0 is the framebuffer. So yes, you can feed data into the filesystem and you’ll see it on your display.

        For Unixoids, being a file does not mean that this data is stored on a hard disk, but that all data, processes and hardware are accessible with the same toolkit. /dev/fb0, for instance, is part of the file-like interface of your graphics card.

        • skilltheamps@feddit.de
          link
          fedilink
          arrow-up
          7
          arrow-down
          1
          ·
          9 months ago

          /dev/fb is mostly one thing: deprecated. Also it is not really a interface of your graphics card, it is a legacy way kindly still provided for pushing fullscreen pixels to your monitor in an unaccelerated fashion for things that have not made it to kms drm (which at this point is pretty much merely the console emulation on the TTYs). It is not an interface to the graphics card, because it doesn’t provide any capabilities a graphics card has (like shaders etc). In fact for just pushing pixels you can leave any graphics card completely out of your computer if you connect your screen by other means (think stuff like SPI which is common in embedded devices; you can find many examples of such drivers in the kernel source at drivers/gpu/drm/tiny ).

      • kbal@kbin.melroy.org
        link
        fedilink
        arrow-up
        7
        ·
        9 months ago

        Dennis Ritchie and Ken Thompson […] ignored what the industry was doing, went back to their original ideas, and kept working on refining them. The result is the next step in the development of Unix

        Plan 9 is clearly what the article is talking about. Odd that they don’t name it.

    • ijhoo@lemmy.ml
      link
      fedilink
      arrow-up
      3
      ·
      9 months ago

      This was a great talk (video you linked, not the article). Wonder what Linus would say about C being a wrong thing today.