View Single Post
Old 08-08-2003, 09:43 PM   #6 (permalink)
dunkelhelmut
Insane
 
As a graphics developer, I am a strong proponent of OpenGL. The graphics code is cross platform, so I can compile it on a Mac, *NIX, Windows, etc without rewriting the program completely.

Both platforms have essentially the same features and performance. Both DX and OGL are very fast and can do a lot of things.

On the surface, they may appear to be the same. However, they are worlds apart

- OGL supports extensions to the code base. For example, if ATI wants to add some hardware-specific function to their boards, OGL can take advantage of it and you don't need to rewrite the OGL API around it

- OGL is not COM based. For most programmers, this is a godsend. DX is COM based, and there is no way around that.

- OGL is not OO. You can write OGL code in a straightforward linear fashion, or you can write it with an OO style. DX is OO by design.
dunkelhelmut is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73