OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:extensionStr
(Results
1 - 3
of
3
) sorted by null
/external/deqp/modules/gles3/functional/
es3fImplementationLimitTests.cpp
328
const string
extensionStr
= (const char*)gl.getString(GL_EXTENSIONS);
334
const size_t nextPos =
extensionStr
.find(' ', pos);
335
const size_t len = nextPos == string::npos ?
extensionStr
.length()-pos : nextPos-pos;
338
extensionList.push_back(
extensionStr
.substr(pos, len));
/external/deqp/framework/egl/
egluUtil.cpp
73
const char* const
extensionStr
= egl.queryString(display, EGL_EXTENSIONS);
77
return de::splitString(
extensionStr
, ' ');
88
const char* const
extensionStr
= egl.queryString(EGL_NO_DISPLAY, EGL_EXTENSIONS);
90
if (eglError == EGL_BAD_DISPLAY &&
extensionStr
== DE_NULL) {
97
return de::splitString(
extensionStr
, ' ');
/external/deqp/framework/opengl/simplereference/
sglrReferenceContext.hpp
585
std::string
extensionStr
;
[
all
...]
Completed in 1110 milliseconds