mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Cleanup extension initialization
This commit is contained in:
parent
766cace955
commit
ad0bf64b18
2 changed files with 6 additions and 2 deletions
|
@ -1711,11 +1711,14 @@ void registerGlExtensions(CGlExtensions &ext)
|
||||||
|
|
||||||
// ARB extensions
|
// ARB extensions
|
||||||
// -------------
|
// -------------
|
||||||
if(!ext.DisableHardwareVertexArrayAGP)
|
if (!ext.DisableHardwareVertexArrayAGP)
|
||||||
{
|
{
|
||||||
ext.ARBVertexBufferObject = setupARBVertexBufferObject(glext);
|
ext.ARBVertexBufferObject = setupARBVertexBufferObject(glext);
|
||||||
|
if (ext.ARBVertexBufferObject)
|
||||||
|
{
|
||||||
ext.ARBMapBufferRange = setupARBMapBufferRange(glext);
|
ext.ARBMapBufferRange = setupARBMapBufferRange(glext);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// fix for radeon 7200 -> disable agp
|
// fix for radeon 7200 -> disable agp
|
||||||
if (ext.NbTextureStages == 3 && (ext.ATIVertexArrayObject || ext.ARBVertexBufferObject))
|
if (ext.NbTextureStages == 3 && (ext.ATIVertexArrayObject || ext.ARBVertexBufferObject))
|
||||||
|
|
|
@ -168,6 +168,7 @@ public:
|
||||||
EXTVertexShader= false;
|
EXTVertexShader= false;
|
||||||
ARBFragmentProgram = false;
|
ARBFragmentProgram = false;
|
||||||
ARBVertexBufferObject = false;
|
ARBVertexBufferObject = false;
|
||||||
|
ARBMapBufferRange = false;
|
||||||
ARBVertexProgram = false;
|
ARBVertexProgram = false;
|
||||||
NVTextureRectangle = false;
|
NVTextureRectangle = false;
|
||||||
EXTTextureRectangle = false;
|
EXTTextureRectangle = false;
|
||||||
|
|
Loading…
Reference in a new issue