mirror of
https://github.com/gwm17/glfw.git
synced 2024-11-23 02:38:52 -05:00
Cleanup.
This commit is contained in:
parent
3365139a6c
commit
2aa8e17c88
|
@ -492,16 +492,13 @@ GLboolean _glfwIsValidContext(const _GLFWctxconfig* ctxconfig)
|
|||
|
||||
int _glfwStringInExtensionString(const char* string, const GLubyte* extensions)
|
||||
{
|
||||
const GLubyte* start;
|
||||
const GLubyte* start = extensions;
|
||||
|
||||
for (;;)
|
||||
{
|
||||
GLubyte* where;
|
||||
GLubyte* terminator;
|
||||
|
||||
// It takes a bit of care to be fool-proof about parsing the
|
||||
// OpenGL extensions string. Don't be fooled by sub-strings,
|
||||
// etc.
|
||||
start = extensions;
|
||||
for (;;)
|
||||
{
|
||||
where = (GLubyte*) strstr((const char*) start, string);
|
||||
if (!where)
|
||||
return GL_FALSE;
|
||||
|
|
Loading…
Reference in New Issue
Block a user