Where can I get OpenGL driver for new LCD TVs? I checked the website of the manufacturer but there's no drivers to download. Is it builtin or GL ES? I wonder how these TVs render images if there's...
Type: Posts; User: Janika
Where can I get OpenGL driver for new LCD TVs? I checked the website of the manufacturer but there's no drivers to download. Is it builtin or GL ES? I wonder how these TVs render images if there's...
You missed the point, making it convenient to access the 3D API. Lets wait till it gets implemented.
IHVs can start implementing EGL on desktop as an experimental project, maybe later name it DGL. This should not hurt or cause any damage to anyone. However it will probably have some harm to other...
Then this is unfortunate :(. Our only hope is just to sit and pray to God.
Oh wait i just remembered something...was it GS...instancing...where the word "NO" came from the same ppl???
No...
When IHVs find a good specification they will respond somehow. But I see your point, as always, do nothing because no body care. And please don't speak on behalf of others, I bet there are many...
Here's something to start with:
// This approach will eliminate the necessity to create a temporary profile first
// in order to access the new versions...
glDll =...
First we create the specification for context management on desktop platforms, as EGL for embedded systems.
Next step, we get feedback from IHV driver developers.
Do necessary changes to the...
Anyway after all this mess I've been through trying to find a nice way to create a core profile I came up with an idea that may work, but it worth trying. Now I fully understand that the ARB is not...
Yup. So no body can just search for OpenGL32.dll file and hit Delete? :)
get it! so
hdll = LoadLibrary("opengl32.dll");
wglGetProccAdress = GetProcAddress(hdll, "wglGetProccAdress");
then use wglGetProccAdress...
Customized error reporting in case OpenGL is not...
A question from a novice who knows nothing and wants to learn from experts.
If I'm linking at run time to the OpenGL32.DLL using LoadLibrary, how can I use the wglGetProcAdress or even load other...
What does knowledge of GPU details have to do with API design? You are mixing two different things, drivers and APIs. When we talk about API design we talk from a higher abstract level that should...
Very true and accurate.
In my opinion, driver implementers should not be involved in the specification, or even users. It should only be designed and maintained by Academia, computer graphics...
The idea of keeping legacy stuff by means of compatibility profiles shows that the ARB was not so confident about the new API.
Could you please tell me why it's there then? I'm not saying that I've found any benefits from using core profile, but I'm basing my argument on that fact that there's a core profile, and hence...
Let me make my point clear. First I'm saying I want to roll my own GL function loader because other existing libraries cannot do the job. However I tried GLEW and there's a known issue with it when...
:doh:
:doh:
Simply because the wheel they want to reinvet sucks.
I would agree if there were an official (provided by the ARB) well maintained "library" or headers, up to date and clean.
I need to load mainly the following wgl functions:
wglMakeContextCurrent
wglDeleteContext
wglCreateContextAttribsARB
wglChoosePixelFormatARB
wglGetProcAddress
And of course the macro...
While struggling with running my own OpenGL API loader, I encountered a weird problem with wglext.h. It cannot see any windows.h types, such as HGLDC, HDC, ...etc. Besides there's still no clean...
Understood. Then what I was asking for is somehow can be accomplished with performance penalty using something like OpenCL or CUDA...
Thanks a lot!
I may run my own API function loader, but is there any gl.h and wgl.h updated to 4.2 API?
Ok problem solved. The big bug was hiding in the GLEW, it calls glGetString(GL_EXTENSIONS) on core profile...lol
It's glGetError() what I'm calling. BTW this weird error I'm getting is when using core profile only. Another weird error the gDebugger cannot detect, but stops without reporting the reason. It...