Searched defs:pszWantedExtension (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-ogl.cpp980 * @param pszWantedExtension The name of the OpenGL extension we want padded
984 static bool vmsvga3dCheckGLExtension(PVMSVGA3DSTATE pState, float fMinGLVersion, const char *pszWantedExtension) argument
987 Assert(pszWantedExtension[0] == ' ');
988 Assert(pszWantedExtension[1] != ' ');
989 Assert(strchr(&pszWantedExtension[1], ' ') + 1 == strchr(pszWantedExtension, '\0'));
993 if (strstr(pState->pszExtensions, pszWantedExtension))
1002 pszWantedExtension, (int)(pState->fGLVersion * 10), (int)(fMinGLVersion * 10), fRet));
1006 pszWantedExtension, (int)(pState->fGLVersion * 10), (int)(fMinGLVersion * 10), fRet));

Completed in 63 milliseconds