HomeSort by relevance Sort by last modified time
    Searched refs:m_attribValues (Results 1 - 2 of 2) sorted by null

  /sdk/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 142 s_fbConfigs[i]->m_attribValues,
220 int dCfgId = s_fbConfigs[fbIdx]->m_attribValues[4]; //CONFIG_ID
240 m_attribValues = new GLint[s_numConfigAttribs];
242 m_attribValues[i] = 0;
243 s_egl.eglGetConfigAttrib(p_eglDpy, p_eglCfg, s_configAttribs[i], &m_attribValues[i]);
249 m_attribValues[i] |= EGL_WINDOW_BIT;
256 if (m_attribValues) {
257 delete[] m_attribValues;

Completed in 1595 milliseconds