I' new to openGL ES 1.0/1.1 programming, and this error's been haunting me for a few days..
I'm trying to init a texture with glTexImage2D, however it always throws a 0x501/1281 error whenever I try creating a POT (power of two) texture with dimensions greater than 128 (either height or width or both). This is the call I'm using.
glTexImage2D (GL_TEXTURE_2D, 0, GL_RGB, aWidth, aHeight, 0,GL_RGB, GL_UNSIGNED_SHORT_5_6_5, NULL);
The whole code goes something like:
#include <stdlib.h>
#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/keysym.h>
#include "GLES/egl.h"
#include "GLES/gl.h"
EGLSurface eglwindow;
EGLDisplay egldisplay;
Display *dpy;
Window window;
static int attributeList[] = { EGL_RED_SIZE, 1, EGL_DEPTH_SIZE, 1, EGL_NONE };
static GLuint texture[1];
int GLW_height;
int GLW_width;
void
createEGLWindow(int width, int height, char *name) {
EGLConfig config[4];
EGLContext cx;
int nconfig;
XSizeHints sizehints;
XSetWindowAttributes swa;
XVisualInfo *vi, tmp;
int vid, n;
egldisplay = eglGetDisplay(dpy = XOpenDisplay(NULL));
eglInitialize(egldisplay, 0, 0);
if (!eglChooseConfig(egldisplay, attributeList, config, sizeof config/sizeof config[0], &nconfig)) {
printf("can't find requested config\n");
exit(1);
}
cx = eglCreateContext(egldisplay, config[0], 0, 0);
eglGetConfigAttrib(egldisplay, config[0], EGL_NATIVE_VISUAL_ID, &vid);
tmp.visualid = vid;
vi = XGetVisualInfo(dpy, VisualIDMask, &tmp, &n);
swa.colormap = XCreateColormap(dpy, RootWindow(dpy, vi->screen),
vi->visual, AllocNone);
sizehints.flags = 0;
sizehints.flags = PMinSize | PMaxSize;
sizehints.min_width = sizehints.max_width = width;
sizehints.min_height = sizehints.max_height = height;
swa.border_pixel = 0;
swa.event_mask = ExposureMask | StructureNotifyMask | KeyPressMask | ButtonPressMask | ButtonReleaseMask;
window = XCreateWindow(dpy, RootWindow(dpy, vi->screen), 0, 0, width, height,
0, vi->depth, InputOutput, vi->visual,
CWBorderPixel|CWColormap|CWEventMask, &swa);
XMapWindow(dpy, window);
XSetStandardProperties(dpy, window, name, name,
None, (void *)0, 0, &sizehints);
eglwindow = eglCreateWindowSurface(egldisplay, config[0], (NativeWindowType)window, 0);
eglMakeCurrent(egldisplay, eglwindow, eglwindow, cx);
}
void x86CreateWindow(const char *aTitle, unsigned int aWidth, unsigned int aHeight) {
GLW_height = aHeight;
GLW_width = aWidth;
createEGLWindow(aWidth, aHeight, aTitle);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_MODELVIEW);
glEnable(GL_TEXTURE_2D);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
glEnableClientState(GL_VERTEX_ARRAY);
glGenTextures( 1, &texture[0] );
glBindTexture( GL_TEXTURE_2D, texture[0] );
glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameterx(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexImage2D (GL_TEXTURE_2D, 0, GL_RGB, aWidth, aHeight, 0,GL_RGB, GL_UNSIGNED_SHORT_5_6_5, NULL);
glLoadIdentity();
glMatrixMode( GL_PROJECTION );
if( glGetError() != GL_NO_ERROR ) {
fprintf(stderr, "\n\n%s: Could not create window\n\n", __FUNCTION__);
exit(0);
}
sleep(1);
}
int main(){
x86CreateWindow("Window", 256, 128);
return 0;
}
Can somebody please help me out on this? ~:-(
Further info: I am trying to run this on a linux desktop on the GLES-on-GL library (openGL ES 1.1) Thanks!