OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_attribValues
(Results
1 - 2
of
2
) sorted by null
/development/tools/emulator/opengl/host/libs/libOpenglRender/
FBConfig.h
41
GLuint getDepthSize() const { return (
m_attribValues
?
m_attribValues
[0] : 0); }
42
GLuint getStencilSize() const { return (
m_attribValues
?
m_attribValues
[1] : 0); }
43
GLuint getRenderableType() const { return (
m_attribValues
?
m_attribValues
[2] : 0); }
44
GLuint getSurfaceType() const { return (
m_attribValues
?
m_attribValues
[3] : 0); }
57
GLint *
m_attribValues
;
FBConfig.cpp
143
s_fbConfigs[i]->
m_attribValues
,
219
int dCfgId = s_fbConfigs[fbIdx]->
m_attribValues
[4]; //CONFIG_ID
239
m_attribValues
= new GLint[s_numConfigAttribs];
241
m_attribValues
[i] = 0;
242
s_egl.eglGetConfigAttrib(p_eglDpy, p_eglCfg, s_configAttribs[i], &
m_attribValues
[i]);
248
m_attribValues
[i] |= EGL_WINDOW_BIT;
255
if (
m_attribValues
) {
256
delete[]
m_attribValues
;
Completed in 17 milliseconds