Searched defs:attrib (Results 1 - 8 of 8) sorted by relevance

/sdk/emulator/opengl/host/libs/Translator/EGL/
H A DEglPbufferSurface.cpp18 bool EglPbufferSurface::setAttrib(EGLint attrib,EGLint val) { argument
19 switch(attrib) {
48 bool EglPbufferSurface::getAttrib(EGLint attrib,EGLint* val) { argument
49 switch(attrib) {
H A DEglSurface.cpp30 bool EglSurface::setAttrib(EGLint attrib,EGLint val) { argument
31 switch(attrib) {
H A DEglPixmapSurface.cpp40 bool EglPixmapSurface::getAttrib(EGLint attrib,EGLint* val) { argument
41 switch(attrib) {
H A DEglWindowSurface.cpp41 bool EglWindowSurface::getAttrib(EGLint attrib,EGLint* val) { argument
42 switch(attrib) {
H A DEglValidate.cpp19 bool EglValidate::confAttrib(EGLint attrib) { argument
20 switch(attrib) {
55 bool EglValidate::noAttribs(const EGLint* attrib) { argument
56 return !attrib || attrib[0] == EGL_NONE ;
H A DEglContext.cpp71 bool EglContext::getAttrib(EGLint attrib,EGLint* value) { argument
72 switch(attrib) {
H A DEglConfig.cpp150 bool EglConfig::getConfAttrib(EGLint attrib,EGLint* val) const { argument
151 switch(attrib) {
/sdk/emulator/opengl/tests/ut_renderer/
H A DRendererSurface.cpp30 EGLint attrib[MAX_ATTRIB]; local
33 attrib[pos++] = EGL_SURFACE_TYPE; attrib[pos++] = EGL_WINDOW_BIT;
34 if (config & CONFIG_DEPTH) {attrib[pos++] = EGL_DEPTH_SIZE; attrib[pos++] = 1;}
35 attrib[pos++] = EGL_NONE;
37 if (!eglChooseConfig(eglDisplay, attrib, &eglConfig, 1, &nConfigs)) {

Completed in 2062 milliseconds