How the heck does wayland work?

Поделиться
HTML-код
  • Опубликовано: 21 сен 2024

Комментарии • 29

  • @Dje4321
    @Dje4321 12 часов назад +9

    Reminds me alot of vulkan in the sense of "Here is this modern, extensible API designed to make use of your hardware to the fullest extent while supporting every use case. To get started, just prototype out a few thousand lines of code to get a triangle drawn onto the screen".

    • @Mempler
      @Mempler 11 часов назад

      Oh totally lmao

  • @sodiboo
    @sodiboo 23 часа назад +2

    this is exactly the question i keep asking myself and just the right kind of video to answer it. thank you

  • @DJRanoia
    @DJRanoia 14 часов назад +1

    Subscribed! Such a cool idea. Going to watch this later this week.

  • @hugocusson6496
    @hugocusson6496 День назад +5

    love your shit, im a senior platform dev and struggle to find interesting content. keep it up dude

  • @Ngoma746
    @Ngoma746 День назад +18

    Holy shit

    • @wondays654
      @wondays654 День назад +9

      That's what I think anytime this guy posts.

    • @proton..
      @proton.. День назад +1

      sholy hit

  • @narrowbtw3970
    @narrowbtw3970 День назад +5

    ayo love your content, keep it up. Also, could you use rust in the next stream?

  • @cooldude3010
    @cooldude3010 День назад +39

    Hi I like your videos but the brick wall thing above your video is distracting / unnecessary IMO.

    • @creator-link
      @creator-link 23 часа назад +7

      But my adhd needs it to focus

    • @davidbriggs8109
      @davidbriggs8109 23 часа назад

      Me too
      It’s unnecessary

    • @Nootlink
      @Nootlink 22 часа назад +1

      I don't even notice the brick until you pointed it out lol.
      My brains just kinda ignore all of the unnecessary part.

  • @twobob
    @twobob Час назад

    big endian and litle endian refers to Gullivers travels and the Lilliputians arguing over the optimal rotation for breakfast boiled eggs (and the ensuing war)

  • @user-ls6qv6js7s
    @user-ls6qv6js7s 8 часов назад

    Now, I personally wouldn't quite put the blame on "the spec" as the "Wayland Book" is more of an unofficial *draft* reformatted version of the *actual* official spec. Though the lack of such an important detail about new_id is just terrible.

  • @bobby9568
    @bobby9568 23 часа назад

    this guy is a genius! more C content please!

  • @ooijaz6063
    @ooijaz6063 День назад +1

    How

  • @tyulen-vn6qj
    @tyulen-vn6qj 3 часа назад

    I love you as a human being.

    • @sphaerophoria
      @sphaerophoria  Час назад

      If you love me so much, why dont you marry me

  • @user-dz6il2bx5p70
    @user-dz6il2bx5p70 18 часов назад +1

    i understand jack shit

  • @chweyou
    @chweyou 20 часов назад +2

    2:24:50 That's the moment I was waiting for ...

  • @ericoutofthegfw
    @ericoutofthegfw 9 часов назад

    Please don’t remove the maze ❤

  • @b33lz3bubth
    @b33lz3bubth 12 часов назад

    watching this, so that i can make a window manager, like i3wm, hopefully i will able to understand it.

    • @mikesoto890
      @mikesoto890 3 часа назад

      you could try forking weston or sway

  • @RayleignIda-s7z
    @RayleignIda-s7z 8 часов назад

    Johnson Jose Anderson Dorothy Wilson Michael

  • @user-ls6qv6js7s
    @user-ls6qv6js7s 9 часов назад

    That several-minute 4-byte rounding fiasco was frankly, even though slightly, painful to watch. Considering you could've just done `(len + 3) & ~3` [code annotated between backticks]. The general rounding algorithm for rounding X to a multiple of N where N is a power of 2 is `(X + (N - 1)) & ~(N - 1)` where ~(N - 1) is a bit negation of (N - 1) [this operator notation is applicable for e.g. Zig]