From e694ccad803157b71b2de78d63ee6dacc489faab Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Sun, 31 Jan 2010 13:04:12 +0800 Subject: egl: Refactor _eglInitImage. Refactor attribute list parsing code to _eglParseImageAttribList. --- src/egl/main/eglimage.c | 50 +++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 10 deletions(-) (limited to 'src/egl/main/eglimage.c') diff --git a/src/egl/main/eglimage.c b/src/egl/main/eglimage.c index 5044112fa8..5b27df0267 100644 --- a/src/egl/main/eglimage.c +++ b/src/egl/main/eglimage.c @@ -1,31 +1,61 @@ #include +#include #include "eglimage.h" -#include "egldisplay.h" +#include "eglcurrent.h" +#include "egllog.h" #ifdef EGL_KHR_image_base -EGLBoolean -_eglInitImage(_EGLDriver *drv, _EGLImage *img, const EGLint *attrib_list) +/** + * Parse the list of image attributes and return the proper error code. + */ +static EGLint +_eglParseImageAttribList(_EGLImage *img, const EGLint *attrib_list) { - EGLint i; + EGLint i, err = EGL_SUCCESS; - img->Preserved = EGL_FALSE; + if (!attrib_list) + return EGL_SUCCESS; - for (i = 0; attrib_list && attrib_list[i] != EGL_NONE; i++) { - switch (attrib_list[i]) { + for (i = 0; attrib_list[i] != EGL_NONE; i++) { + EGLint attr = attrib_list[i++]; + EGLint val = attrib_list[i]; + + switch (attr) { case EGL_IMAGE_PRESERVED_KHR: - i++; - img->Preserved = attrib_list[i]; + img->Preserved = val; break; default: - /* not an error */ + err = EGL_BAD_ATTRIBUTE; + break; + } + + if (err != EGL_SUCCESS) { + _eglLog(_EGL_DEBUG, "bad image attribute 0x%04x", attr); break; } } + return err; +} + + +EGLBoolean +_eglInitImage(_EGLDriver *drv, _EGLImage *img, const EGLint *attrib_list) +{ + EGLint err; + + memset(img, 0, sizeof(_EGLImage)); + + img->Preserved = EGL_FALSE; + + err = _eglParseImageAttribList(img, attrib_list); + if (err != EGL_SUCCESS) + return _eglError(err, "eglCreateImageKHR"); + return EGL_TRUE; } -- cgit v1.2.3