Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Results 1 to 5 of 5

Thread: what do they refer to when they say....

  1. #1
    Junior Member Newbie
    Join Date
    Nov 2001
    Location
    Los Angeles, CA
    Posts
    17

    what do they refer to when they say....

    Hello everyone, what does it mean when they refer to 'fragments'. Are they refering to primitives or something else? Please clarify. Thanks

  2. #2
    Super Moderator OpenGL Guru dorbie's Avatar
    Join Date
    Jul 2000
    Location
    Bay Area, CA, USA
    Posts
    4,388

    Re: what do they refer to when they say....

    They mean pixels. I think the distinction is made because it reffers to different terms, like the texture term, the color term etc before they are completely processed and written to the framebuffer. So the texture fragment color, is the texture color for a pixel.

  3. #3
    Junior Member Newbie
    Join Date
    Nov 2001
    Location
    Los Angeles, CA
    Posts
    17

    Re: what do they refer to when they say....

    Thanks!


    Originally posted by dorbie:
    They mean pixels. I think the distinction is made because it reffers to different terms, like the texture term, the color term etc before they are completely processed and written to the framebuffer. So the texture fragment color, is the texture color for a pixel.

  4. #4
    Advanced Member Frequent Contributor
    Join Date
    Sep 2000
    Location
    SWEDEN
    Posts
    718

    Re: what do they refer to when they say....

    A fragment is basically a bundle of state used to update a single pixel. E.g a fragment may have an alpha value used in alpha testing, even though the framebuffer pixels doesn't have an alpha value.

  5. #5
    Junior Member Regular Contributor
    Join Date
    Sep 2000
    Location
    Lubbock, TX, USA
    Posts
    224

    Re: what do they refer to when they say....

    If I'm not mistaken the definition is

    Fragment = RGBA + depth + stencil

    Pixel = RGB (A, if your card supports destination alpha)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •