Removed extension query functions.

This commit is contained in:
Jean-Philip Desjardins 2015-11-15 17:39:30 -05:00
parent 0dfa3253fa
commit c0124f7a14
2 changed files with 0 additions and 31 deletions

View File

@ -2061,33 +2061,6 @@ void CGSH_OpenGL::ReadFramebuffer(uint32 width, uint32 height, void* buffer)
#endif
}
bool CGSH_OpenGL::IsBlendColorExtSupported()
{
#ifndef GLES_COMPATIBILITY
return glBlendColorEXT != NULL;
#else
return true;
#endif
}
bool CGSH_OpenGL::IsBlendEquationExtSupported()
{
#ifndef GLES_COMPATIBILITY
return glBlendEquationEXT != NULL;
#else
return true;
#endif
}
bool CGSH_OpenGL::IsFogCoordfExtSupported()
{
#ifndef GLES_COMPATIBILITY
return glFogCoordfEXT != NULL;
#else
return true;
#endif
}
/////////////////////////////////////////////////////////////
// Framebuffer
/////////////////////////////////////////////////////////////

View File

@ -26,10 +26,6 @@ public:
void ProcessLocalToLocalTransfer() override;
void ReadFramebuffer(uint32, uint32, void*) override;
bool IsBlendColorExtSupported();
bool IsBlendEquationExtSupported();
bool IsFogCoordfExtSupported();
protected:
void TexCache_Flush();
void PalCache_Flush();