OpenGL Fragment vs Pixel

Поделиться
HTML-код
  • Опубликовано: 6 фев 2025
  • Shows the difference between a fragment and a pixel. A fragment is a potential pixel that has to pass some tests before becoming a pixel.

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

  • @tariqoder
    @tariqoder 2 года назад +2

    9 years later, this channel is still a gem !

  • @patrickvimr7812
    @patrickvimr7812 5 лет назад +1

    Hey man, I am learning for a computer graphics exam right now and didn't know what a fragment is until this video! Very easy to understand and a helpful explanation. Thanks a lot!

    • @JamieKingCS
      @JamieKingCS  5 лет назад +1

      No problem. Glad it helped out.

  • @frizzleskillet18
    @frizzleskillet18 9 лет назад +29

    NOPE. THERES ALREADY A PARKING LOT THERE YOUR COCOON IS DEAD MUHAHAHA LOL

    • @danlan4132
      @danlan4132 9 лет назад

      Bob Duncan actually i did not get the joke....but the lecture is pretty great

  • @charvakpatel962
    @charvakpatel962 8 лет назад +5

    When i found your channel and started watching your videos. I just felt like i found the ultimate gold chest. Watched your compiler C++ series instead of TV while eating because its more entertaining than any of this stuff.
    You just made my Summer merry.

  • @rafaellabuonora3036
    @rafaellabuonora3036 7 лет назад

    There's already a parking lot there, your cocoon is dead...
    Great videos man! Thanks!

  • @EivindDahl
    @EivindDahl 8 лет назад +1

    A neat explanation I heard someone say (in a SIGGRAPH video introduction to OpenGL) for what a fragment is versus a pixel is that it's a "potential pixel"

    • @DrenKajm
      @DrenKajm 7 лет назад

      Oh well, that's all I needed to know, "potential pixel", in google answers people start talking about quantum physics.

  • @HugoIetsGaming
    @HugoIetsGaming 9 лет назад +1

    Why was the line "GLushort indices[] = {3,4,5,0,1,2, "};" legal?
    It ended with a ,
    Why doesnt it gives an error?

    • @JamieKingCS
      @JamieKingCS  9 лет назад

      +TeleTubbie Luver The theory to compiler writers is that an array is open-ended and can always be added to.

    • @HugoIetsGaming
      @HugoIetsGaming 9 лет назад

      Jamie King Oh, it makes sense now, thanks.