Home
last modified time | relevance | path

Searched refs:m_attribValues (Results 1 – 2 of 2) sorted by relevance

/sdk/emulator/opengl/host/libs/libOpenglRender/
DFBConfig.h41 GLuint getDepthSize() const { return (m_attribValues ? m_attribValues[0] : 0); } in getDepthSize()
42 GLuint getStencilSize() const { return (m_attribValues ? m_attribValues[1] : 0); } in getStencilSize()
43 GLuint getRenderableType() const { return (m_attribValues ? m_attribValues[2] : 0); } in getRenderableType()
44 GLuint getSurfaceType() const { return (m_attribValues ? m_attribValues[3] : 0); } in getSurfaceType()
57 GLint *m_attribValues; variable
DFBConfig.cpp143 s_fbConfigs[i]->m_attribValues, in packConfigsInfo()
219 int dCfgId = s_fbConfigs[fbIdx]->m_attribValues[4]; //CONFIG_ID in chooseConfig()
239 m_attribValues = new GLint[s_numConfigAttribs]; in FBConfig()
241 m_attribValues[i] = 0; in FBConfig()
242 s_egl.eglGetConfigAttrib(p_eglDpy, p_eglCfg, s_configAttribs[i], &m_attribValues[i]); in FBConfig()
248 m_attribValues[i] |= EGL_WINDOW_BIT; in FBConfig()
255 if (m_attribValues) { in ~FBConfig()
256 delete[] m_attribValues; in ~FBConfig()