summaryrefslogtreecommitdiffstats
path: root/opengl/libagl
diff options
context:
space:
mode:
authorJack Palevich <>2009-03-24 22:48:26 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-24 22:48:26 -0700
commit4c7533cfc81a0dda4c25355e86558199accab3ea (patch)
treecf422c41de1377eb09736edd83b8aabd196da5fa /opengl/libagl
parent7d1e577d5f7ae96bfc533e1c73a3a6a272a4a16d (diff)
downloadframeworks_base-4c7533cfc81a0dda4c25355e86558199accab3ea.zip
frameworks_base-4c7533cfc81a0dda4c25355e86558199accab3ea.tar.gz
frameworks_base-4c7533cfc81a0dda4c25355e86558199accab3ea.tar.bz2
Automated import from //branches/donutburger/...@142484,142484
Diffstat (limited to 'opengl/libagl')
-rw-r--r--opengl/libagl/egl.cpp24
1 files changed, 18 insertions, 6 deletions
diff --git a/opengl/libagl/egl.cpp b/opengl/libagl/egl.cpp
index 5b90bf0..3b4c041 100644
--- a/opengl/libagl/egl.cpp
+++ b/opengl/libagl/egl.cpp
@@ -1055,8 +1055,12 @@ EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list,
{
if (egl_display_t::is_valid(dpy) == EGL_FALSE)
return setError(EGL_BAD_DISPLAY, EGL_FALSE);
+
+ if (ggl_unlikely(num_config==0)) {
+ return setError(EGL_BAD_PARAMETER, EGL_FALSE);
+ }
- if (ggl_unlikely(configs==0 || attrib_list==0)) {
+ if (ggl_unlikely(attrib_list==0)) {
*num_config = 0;
return EGL_TRUE;
}
@@ -1102,11 +1106,19 @@ EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list,
// return the configurations found
int n=0;
if (possibleMatch) {
- for (int i=0 ; config_size && i<numConfigs ; i++) {
- if (possibleMatch & (1<<i)) {
- *configs++ = (EGLConfig)i;
- config_size--;
- n++;
+ if (configs) {
+ for (int i=0 ; config_size && i<numConfigs ; i++) {
+ if (possibleMatch & (1<<i)) {
+ *configs++ = (EGLConfig)i;
+ config_size--;
+ n++;
+ }
+ }
+ } else {
+ for (int i=0 ; i<numConfigs ; i++) {
+ if (possibleMatch & (1<<i)) {
+ n++;
+ }
}
}
}