Forum

What version of OpenGL does your GFX card support?

Discuss anything not covered by any of the other categories.

Moderator: InsideQC Admins

What is the maximum version of OpenGL supported by your graphics card?

OpenGL 1.x - please say which in comment
2
10%
OpenGL 2.0
0
No votes
OpenGL 2.1
2
10%
OpenGL 3.0
1
5%
OpenGL 3.1
0
No votes
OpenGL 3.2
4
20%
OpenGL 3.3
7
35%
OpenGL 4.0
2
10%
OpenGL 4.1
2
10%
 
Total votes : 20

What version of OpenGL does your GFX card support?

Postby ArchAngel » Sat Jun 25, 2011 9:00 pm

Quick question for people here... I'm playing with some engine development but I want to start using some of the cool new toys, but I'm not sure what people have as a standard gfx card these days.

So what have you got. Any comments feel free to make them below.
ArchAngel
 
Posts: 37
Joined: Fri Jun 03, 2011 7:33 pm

Postby revelator » Sat Jun 25, 2011 9:07 pm

gtx285 old now but still going toe to toe with some of the newer cards only downside is no dx11 support.
User avatar
revelator
 
Posts: 2567
Joined: Thu Jan 24, 2008 12:04 pm
Location: inside tha debugger

Postby mankrip » Sat Jun 25, 2011 11:11 pm

2.1, I guess. It's a GeForce 9500 GT, and its control panel only displays its DirectX version (9.0c).
Ph'nglui mglw'nafh mankrip Hell's end wgah'nagl fhtagn.
==-=-=-=-=-=-=-=-=-=-==
Dev blog / Twitter / YouTube
User avatar
mankrip
 
Posts: 915
Joined: Fri Jul 04, 2008 3:02 am

Postby xaGe » Sun Jun 26, 2011 2:18 am

My old Ati 4850 supports version 3.2. The GeForce 9500 GT supports up to version 2.1.
User avatar
xaGe
 
Posts: 461
Joined: Wed Mar 01, 2006 8:29 am
Location: Upstate, New York

Postby dreadlorde » Sun Jun 26, 2011 4:17 am

Nvidia quadro fx 880m, opengl 3.2.
Ken Thompson wrote:One of my most productive days was throwing away 1000 lines of code.

Get off my lawn!
User avatar
dreadlorde
 
Posts: 268
Joined: Tue Nov 24, 2009 2:20 am

Re: What version of OpenGL does your GFX card support?

Postby dfblogic » Sun Jun 26, 2011 4:58 am

ArchAngel wrote:Quick question for people here... I'm playing with some engine development but I want to start using some of the cool new toys, but I'm not sure what people have as a standard gfx card these days.

So what have you got. Any comments feel free to make them below.


OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce GTS 450/PCI/SSE2
OpenGL version string: 4.1.0 NVIDIA 275.09.07

Running on Gentoo. I would also like to try out the new OpenGL features. Never seem to get around to it, though. Turning on hardware tesselation in the Unigine demo was exciting :).

While it could take some time before OpenGL 3 and 4 become common, I suspect it may happen sooner than one might expect. I have a Windows 7 "budget" notebook with AMD Mobility. It has OpenGL 2.1 and Quake style games are playable on lower settings. Of course, there are still a lot of machines out there that can't do 3D FPS games at all, but I think in a year or two that may no longer be the case.
User avatar
dfblogic
 
Posts: 5
Joined: Wed May 18, 2011 6:19 pm

Postby behind_you » Sun Jun 26, 2011 6:43 am

Graphics card: Intel 845G 128mb

OpenGl Version: 1.5.0

........................... :(
User avatar
behind_you
 
Posts: 237
Joined: Sat Feb 05, 2011 6:57 am
Location: Tripoli, Libya

Postby Spirit » Sun Jun 26, 2011 6:51 am

3.3.0 NVIDIA 275.09.07
Improve Quaddicted, send me a pull request: https://github.com/SpiritQuaddicted/Quaddicted-reviews
Spirit
 
Posts: 1031
Joined: Sat Nov 20, 2004 9:00 pm

Postby staw » Sun Jun 26, 2011 7:47 am

GPU Caps Viewer and NVIDIA GeForce GTX 460M:
OpenGL 4.0 - Extensions: 233 (GL=213, WGL=20)
staw
 
Posts: 1
Joined: Wed Jun 08, 2011 1:18 pm

Postby mh » Sun Jun 26, 2011 3:09 pm

3.3 and I say go for it; out with the old and all that.
We had the power, we had the space, we had a sense of time and place
We knew the words, we knew the score, we knew what we were fighting for
User avatar
mh
 
Posts: 2292
Joined: Sat Jan 12, 2008 1:38 am

Postby ArchAngel » Sun Jun 26, 2011 11:47 pm

mh wrote:3.3 and I say go for it; out with the old and all that.


That's kinda what I'm thinking I just don't know how far I want to go. I've gotta admit I'm not sold on full on 3 and above, the lack of an inbuilt matrix stack seems a bit much... surely this means pushing Matrix processing on to the CPU? I thought most Matrix stuff was done on GPU with previous versions of OpenGL... I know I can go hybrid, but that's a recipe for disaster in nearly all circumstances.

The main thing I was looking at was an alternative for MipMap generation for PNG files, I'd rather go with core support for OpenGL 3, over GLU but who am I alienating by doing that.
ArchAngel
 
Posts: 37
Joined: Fri Jun 03, 2011 7:33 pm

Postby Spike » Mon Jun 27, 2011 12:09 am

not much difference between gl versions when its all shaders anyway.
if its gl2, use ftransform, otherwise not. easy...

no version of gl has provided a hardware matrix stack, only the final matricies themselves - there's not much difference between glLoadMatrix and glUniformMatrix4fv, certainly there isn't as far as the hardware cares. glMultMatrix, and all the functions which are defined as basically wrappers to it are all basically quite slow. Even with gl2 you ought to just call glLoadMatrix instead of messing around with that stuff.
Matrix stacks are just a convienience that can be replaced with a software library, one that can have its operations inlined and optimised by your compiler so you don't have so much maths done every single time. also easier to cache, and more reliable over multiple separate models.

pre-assign attribute locations at shader creation time. if its gl2 and you want to use ftransform, attribute 0 is defined as the gl_Vertex attribute every time, otherwise its gl3 or you don't care about ftransform, in which case just use whatever attribute indexes you want. There's no point in retaining much more of the fixed-function pipeline, which is the exact reason gl3 core contexts are meant to throw an error when you try.
Spike
 
Posts: 2892
Joined: Fri Nov 05, 2004 3:12 am
Location: UK

Postby dfblogic » Tue Jun 28, 2011 4:32 pm

Ran across this. Almost 400 responses.

http://www.misterpoll.com/polls/521555/results
User avatar
dfblogic
 
Posts: 5
Joined: Wed May 18, 2011 6:19 pm


Return to General Discussion

Who is online

Users browsing this forum: No registered users and 2 guests