Searched refs:config (Results 176 - 200 of 228) sorted by path

12345678910

/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp66 egl_surface_t::egl_surface_t(egl_display_t* dpy, EGLConfig config, argument
69 egl_object_t(dpy), surface(surface), config(config), win(win), cnx(cnx)
89 egl_context_t::egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config, argument
92 config(config), read(0), draw(0), cnx(cnx), version(version) {
H A Degl_object.h134 egl_surface_t(egl_display_t* dpy, EGLConfig config,
139 EGLConfig config; member in class:android::egl_surface_t
150 egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config,
158 EGLConfig config; member in class:android::egl_context_t
/frameworks/native/opengl/tests/EGLTest/
H A DEGL_test.cpp60 EGLConfig config; local
68 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
75 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
78 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
81 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
92 EGLConfig config; local
102 EXPECT_TRUE(eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs));
110 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config,
122 EGLConfig config; local
134 success = eglChooseConfig(mEglDisplay, attrs, &config,
[all...]
/frameworks/native/opengl/tests/angeles/
H A Dapp-linux.cpp133 EGLConfig config; local
144 dpy, configAttribs, window, &config);
150 surface = eglCreateWindowSurface(dpy, config, window, NULL);
155 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Degl.h147 /* 0x3039 - 0x304F reserved for additional config attributes. */
204 GLAPI EGLBoolean APIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value);
206 GLAPI EGLSurface APIENTRY eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list);
207 GLAPI EGLSurface APIENTRY eglCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list);
208 GLAPI EGLSurface APIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list);
212 GLAPI EGLContext APIENTRY eglCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list);
/frameworks/native/opengl/tests/fillrate/
H A Dfillrate.cpp43 EGLConfig config; local
54 dpy, configAttribs, window, &config);
60 surface = eglCreateWindowSurface(dpy, config, window, NULL);
61 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/native/opengl/tests/filter/
H A Dfilter.cpp35 EGLConfig config; local
51 dpy, s_configAttribs, window, &config);
52 surface = eglCreateWindowSurface(dpy, config, window, NULL);
55 eglChooseConfig(dpy, s_configAttribs, &config, 1, &numConfigs);
57 surface = eglCreatePbufferSurface(dpy, config, attribs);
62 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/native/opengl/tests/finish/
H A Dfinish.cpp44 EGLConfig config; local
55 dpy, configAttribs, window, &config);
61 surface = eglCreateWindowSurface(dpy, config, window, NULL);
62 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/native/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp178 void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
219 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java240 public void onSurfaceCreated(GL10 glUnused, EGLConfig config) { argument
/frameworks/native/opengl/tests/gl2_copyTexImage/
H A Dgl2_copyTexImage.cpp282 void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
323 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/opengl/tests/gl2_java/src/com/android/gl2java/
H A DGL2JavaView.java83 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java141 for(EGLConfig config : configs) {
142 int d = findConfigAttrib(egl, display, config,
144 int s = findConfigAttrib(egl, display, config,
147 int r = findConfigAttrib(egl, display, config,
149 int g = findConfigAttrib(egl, display, config,
151 int b = findConfigAttrib(egl, display, config,
153 int a = findConfigAttrib(egl, display, config,
161 closestConfig = config;
169 EGLConfig config, int attribute, int defaultValue) {
171 if (egl.eglGetConfigAttrib(display, config, attribut
168 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
187 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
291 onSurfaceCreated(GL10 gl, EGLConfig config) argument
[all...]
/frameworks/native/opengl/tests/gl2_yuvtex/
H A Dgl2_yuvtex.cpp283 void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
324 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp97 void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
138 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/opengl/tests/gl_jni/src/com/android/gljni/
H A DGLJNIView.java79 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java141 for(EGLConfig config : configs) {
142 int d = findConfigAttrib(egl, display, config,
144 int s = findConfigAttrib(egl, display, config,
147 int r = findConfigAttrib(egl, display, config,
149 int g = findConfigAttrib(egl, display, config,
151 int b = findConfigAttrib(egl, display, config,
153 int a = findConfigAttrib(egl, display, config,
161 closestConfig = config;
169 EGLConfig config, int attribute, int defaultValue) {
171 if (egl.eglGetConfigAttrib(display, config, attribut
168 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
187 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
291 onSurfaceCreated(GL10 gl, EGLConfig config) argument
[all...]
/frameworks/native/opengl/tests/gl_yuvtex/
H A Dgl_yuvtex.cpp173 void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
214 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java144 for(EGLConfig config : configs) {
145 int d = findConfigAttrib(egl, display, config,
147 int s = findConfigAttrib(egl, display, config,
150 int r = findConfigAttrib(egl, display, config,
152 int g = findConfigAttrib(egl, display, config,
154 int b = findConfigAttrib(egl, display, config,
156 int a = findConfigAttrib(egl, display, config,
164 closestConfig = config;
172 EGLConfig config, int attribute, int defaultValue) {
174 if (egl.eglGetConfigAttrib(display, config, attribut
171 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
190 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
294 onSurfaceCreated(GL10 gl, EGLConfig config) argument
[all...]
H A DTriangleRenderer.java37 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp39 static void printEGLConfiguration(EGLDisplay dpy, EGLConfig config);
980 static void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) argument
1022 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
/frameworks/native/opengl/tests/include/
H A DEGLUtils.h101 EGLConfig config = NULL; local
106 config = configs[i];
114 *outConfig = config;
H A DglTestLib.h32 void glTestPrintEGLConfiguration(EGLDisplay dpy, EGLConfig config);
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp69 void glTestPrintEGLConfiguration(EGLDisplay dpy, EGLConfig config) argument
111 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
/frameworks/native/opengl/tests/lighting1709/src/com/android/lightingtest/
H A DClearActivity.java70 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument

Completed in 142 milliseconds

12345678910