Change-Id: Ic816341abc92e229b9a51d51da467edf5b929319
Signed-off-by: Sangjin Kim <sangjin3.kim@samsung.com>
+* 1.5.27
+- Change the FB configs limitaion from 10 to 32 for each process.
+== Sangjin Kim <sangjin3.kim@samsung.com> 2013-04-12
* 1.5.26
- Add glFinish() after AGL function aglTexImagePBuffer() cause of pbuffer bug on MAC os.
== Sangjin Kim <sangjin3.kim@samsung.com> 2013-04-11
-Version: 1.5.26
+Version: 1.5.27
Maintainer: Yeong-Kyoon Lee<yeongkyoon.lee@samsung.com>
Source: emulator
#define MAX_HANDLED_PROCESS 100
#define MAX_ASSOC_SIZE 100
-#define MAX_FBCONFIG 10
+#define MAX_FBCONFIG 32
#define MAX_PENDING_DRAWABLE 8
case glXChooseFBConfig_func:
{
- if (process->nfbconfig == MAX_FBCONFIG) {
+ if (process->nfbconfig >= MAX_FBCONFIG) {
+ fprintf(stderr, "[%s]:%d Request FB configs error, excceed the MAX FBCONFIG of one process, return NULL!\n", __FUNCTION__, __LINE__);
*(int *) args[3] = 0;
ret.i = 0;
} else {