Is OpenGL dead? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T01:15:23Zhttp://stackoverflow.com/feeds/question/19842http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/19842/is-opengl-dead9Is OpenGL dead?Kronikarz2008-08-21T13:19:54Z2008-11-18T16:28:35Z
<p>I recently found out that <a href="http://www.khronos.org/opengl/" rel="nofollow">OpenGL 3.0</a> was released a week ago. I glanced through the specification and read through some of the forum posts on the Khronos message board, and... I'm devastated. Not only did they not release the promised object model, but they deprecated most of the functionality that, IMHO, made OpenGL great, in favor of a more DirectX-like model.</p>
<p>I'm only a beginner, but it seems to me like this is a clumsy step in an entirely incorrect direction, and a step you can't come back from.</p>
<p>Me and OpenGL - it was love at first sight. It symbolized freedom and nonconformity. And now... I don't know what the future holds, and frankly, I'm scared.</p>
<p>What are your opinions?</p>
http://stackoverflow.com/questions/19842/is-opengl-dead/19853#198533Answer by sparkes for Is OpenGL dead?sparkes2008-08-21T13:23:40Z2008-08-21T13:23:40Z<p>OpenGL is alive and kicking. </p>
<p>PERSONAL:
My games are remakes of old arcade hits that I do for myself and if I can't write and run them as easily when I'm using my WinTel, Apple or *nix machines I wouldn't bother.</p>
<p>BUSINESS:
There are lots of companies in the business of doing graphics that certainly are not in the business of using MS technologies they aren't going to reinvent the wheel</p>
<p>LOGICAL:
Just because a technology is taking a different path to the one you'd like to see doesn't make it dead or PHP wouldn't be <em>everywhere</em> :)</p>
http://stackoverflow.com/questions/19842/is-opengl-dead/19855#198555Answer by DrPizza for Is OpenGL dead?DrPizza2008-08-21T13:25:06Z2008-08-21T13:25:06Z<p>OpenGL isn't dead, but I could envisage people sticking with 2/2.1 and ignoring 3.</p>
http://stackoverflow.com/questions/19842/is-opengl-dead/19858#1985819Answer by Prakash for Is OpenGL dead?Prakash2008-08-21T13:26:04Z2008-08-21T13:39:12Z<p><a href="http://www.khronos.org/opengles/" rel="nofollow"><img src="http://www.khronos.org/opengles/images/opengles_75px.png" alt="OpenGL ES" /></a> is far from dead..</p>
<ul>
<li>has been chosen as the official 3D graphics API in Symbian & Android</li>
<li>is used as the 3D library for the iPhone SDK</li>
<li>is supported by the Playstation 3 as an official graphics API</li>
</ul>
http://stackoverflow.com/questions/19842/is-opengl-dead/19866#198661Answer by basszero for Is OpenGL dead?basszero2008-08-21T13:29:49Z2008-08-21T13:29:49Z<p>Just curious, what parts of the API (now deprecated) are giving you heart burn? </p>
http://stackoverflow.com/questions/19842/is-opengl-dead/19912#199123Answer by jmcd for Is OpenGL dead?jmcd2008-08-21T13:39:09Z2008-08-21T13:39:09Z<p>It'll be interesting to see what John Carmack has to say about OpenGL 3.0, as he's obviously done some pretty amazing things in his time using OpenGL. Also, iD's new game <em>Rage</em> is entirely OpenGL on the PC - so I wouldn't say it was quite dead yet. </p>
<p>I haven't looked at the specification for 3.0 - but I think style compatability with DirectX would be a good thing, as this can only make cross-platform development easier. </p>
http://stackoverflow.com/questions/19842/is-opengl-dead/19917#199170Answer by Kronikarz for Is OpenGL dead?Kronikarz2008-08-21T13:39:34Z2008-08-21T13:39:34Z<p>Hm, maybe what I meant was: was this a heart attack and should we be worried about OpenGL's health? At least on PC's?</p>
<p>@basszero: Intermediate mode functions (<code>Begin</code>/<code>End</code>), vertex processing functions (<code>Translate</code>, <code>Rotate</code>, etc.), quad/polygon primitives, display lists (I may be doing things wrong but they are still the fastest on my PC).</p>
http://stackoverflow.com/questions/19842/is-opengl-dead/20044#200443Answer by Judge Maygarden for Is OpenGL dead?Judge Maygarden2008-08-21T14:16:58Z2008-08-21T14:16:58Z<p>A lot of the choices in the last specification seem to have been driven by the large amount of CAD software that uses OpenGL. This version has really upset the game programmers and they are being very vocal at the moment. However, CAD is a big market that OpenGL doesn't want to lose.</p>
<p>I'm not giving up on OpenGL by any means and I think they will get the big changings developers are demanding into the API in due time. However, a good analogy I heard about version 3.0 was that the Kronos group has turned in the right direction, but hasn't taken any steps yet.</p>
http://stackoverflow.com/questions/19842/is-opengl-dead/20073#200733Answer by DrPizza for Is OpenGL dead?DrPizza2008-08-21T14:27:27Z2008-08-21T14:27:27Z<blockquote>
<p>A lot of the choices in the last specification seem to have been driven by the large amount of CAD software that uses OpenGL. This version has really upset the game programmers and they are being very vocal at the moment. However, CAD is a big market that OpenGL doesn't want to lose.</p>
</blockquote>
<p>The thing is, though, that was, is, and always shall be a completely bogus argument. Why? Because CAD software can stick with OpenGL 2.1. Let them co-exist side-by-side (you know, just like I have Direct3D9 sitting alongside the wholly incompatible Direct3D10 so that I can use both seamlessly) and let OpenGL 3 be forward-looking. You don't need to retard OpenGL 3 just to let people continue to use OpenGL 2.1.</p>
http://stackoverflow.com/questions/19842/is-opengl-dead/21604#216041Answer by Ashwin for Is OpenGL dead?Ashwin2008-08-22T01:43:58Z2008-08-22T01:43:58Z<p>I haven't checked out the changes in OpenGL 3.0, but OpenGL itself is far from dead. It might never become the most popular game programming library (it was never meant to, by design). For one, it's primitives are too low-level and insufficient for game programming. It requires a higher level abstraction to be built around it with extra functionality (sound, UI and input device control) to be useful.</p>
<p>However, OpenGL is clean and simple by design and multi-platform. So, it will live on in areas like CAD, engineering, graphics research, 3D applications and mobile devices.</p>
http://stackoverflow.com/questions/19842/is-opengl-dead/22237#222370Answer by Greg Whitfield for Is OpenGL dead?Greg Whitfield2008-08-22T12:49:14Z2008-08-22T12:49:14Z<p>Definitely not dead. For people like me who write SDK's that sit on top of OpenGL, version 3 is just another minor complication I have to support. There are some interesting things to exploit too.</p>
<p>OpenGL also has cross-platform benefits than makes it the API of choice for many applications. My customer base is interested in Mac as well as Windows, with a smattering of Linux in there too. It is a shame that OGL3 veers away from it's original lofty aims a bit, but I don't really understand the vitriol of the people on the message board. It's just a freakin' API for heaven's sake...., </p>
http://stackoverflow.com/questions/19842/is-opengl-dead/26575#265757Answer by Chris Blackwell for Is OpenGL dead?Chris Blackwell2008-08-25T18:21:11Z2008-08-25T18:21:11Z<p>I'm guessing your question should have been qualified "On Windows" because it certainly isn't dead in OSX. OpenGL ES looks to have some staying power as well.</p>
<p>Though the watered down 3.0 spec might not be the competition to D3D many hoped it would be, the API is still going to be in use for other platforms and for businesses with a vested interest (which granted, are few on the Windows side.)</p>
<p>I certainly don't ever see D3D making the leap to any non-Microsoft platforms, so until the day that all other platforms die, the answers is no, it's not dead.</p>
http://stackoverflow.com/questions/19842/is-opengl-dead/299266#299266-1Answer by joeld42 for Is OpenGL dead?joeld422008-11-18T16:28:35Z2008-11-18T16:28:35Z<p>It's not dead, it just smells funny. </p>