Home | History | Annotate | Download | only in OGLES3

Lines Matching refs:extension

45     /* Retrieve GL extension string */
67 @Input extension extension to query for
68 @Returns True if the extension is supported
69 @Description Queries for support of an extension
71 bool CPVRTgles3Ext::IsGLExtensionSupported(const char * const extension)
79 /* Extension names should not have spaces. */
80 where = (GLubyte *) strchr(extension, ' ');
81 if (where || *extension == '\0')
90 where = (GLubyte *) strstr((const char *) start, extension);
93 terminator = where + strlen(extension);