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: Does ATI Radeon support hardware T&L ?

  1. #1
    Junior Member Newbie
    Join Date
    Mar 2001
    Location
    Worcester, MA
    Posts
    3

    Does ATI Radeon support hardware T&L ?

    Hi,

    I am not a programmer, nor very familiar with OpenGL and the ATI Radeon.

    Any info I can pass on to a friend regarding the topic would be much appreciated.

    Does anyone know if Apple's OpenGL 1.2.1 supports hardware T&L on the ATI Radeon card (BTO or retail) ?

    TIA,

    PossumTT

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

    Re: Does ATI Radeon support hardware T&L ?

    If the card has HW T&L, any OpenGL implementation will support it. And yes the Radeon does T&L in hardware.

  3. #3
    Junior Member Newbie
    Join Date
    Mar 2001
    Location
    Worcester, MA
    Posts
    3

    Re: Does ATI Radeon support hardware T&L ?

    Harsman,

    Thanks for your reply. Again, I am not a programmer, but would like to pass on any info I can regarding Mac ATI Radeon hardware T&L. Is there somewhere on the Web you could point me to help me gain more knowledge on how to implement hardware T&L on the Radeon ? More specifically, where I could point my programmer friend ?

    PossumTT

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

    Re: Does ATI Radeon support hardware T&L ?

    OK, first of all I'm assuming ATI supports MacOS with drivers, if the driver is from a third party (like the DRI drivers on Linux) then the driver writers may not know exactly how the hardware works and therefore not all functions will be accelerated. Secondly, you don't have to "do" anything to enable hardware T&L in OpenGL, you just setup the modelview matrix and send in your untransformed vertices (if you don't get this your programmer friend will). The reason some games don't support hardware T&L is they do the calculations themselves on the CPU, that was faster when the gfx cards didn't do T&L. To get good performance on a HW T&L card, tell your programmer friend to make sure to use vertex arrays, avoid state changes and never ever read back results from the card. It really isn't more complex than that, you just throw as many triangles at the card as possible, avoiding CPU work.

    [This message has been edited by harsman (edited 03-22-2001).]

  5. #5
    Junior Member Newbie
    Join Date
    Mar 2001
    Location
    Worcester, MA
    Posts
    3

    Re: Does ATI Radeon support hardware T&L ?

    Thanks Harsman

    PossumTT

Posting Permissions

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