OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:attribidx
(Results
1 - 1
of
1
) sorted by null
/development/tools/emulator/opengl/system/egl/
eglDisplay.cpp
396
EGLBoolean eglDisplay::getAttribValue(EGLConfig config, EGLint
attribIdx
, EGLint * value)
398
if (
attribIdx
== ATTRIBUTE_NONE)
403
*value = *(m_configs + (int)config*m_numConfigAttribs +
attribIdx
);
429
EGLBoolean eglDisplay::setAttribValue(EGLConfig config, EGLint
attribIdx
, EGLint value)
431
if (
attribIdx
== ATTRIBUTE_NONE)
436
*(m_configs + (int)config*m_numConfigAttribs +
attribIdx
) = value;
Completed in 39 milliseconds