diff options
author | Chia-I Wu <olvaffe@gmail.com> | 2009-08-05 16:08:48 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-08-05 16:08:48 -0600 |
commit | 246f58d922272a778454a466abd50106317e16ac (patch) | |
tree | 6f75aa2e837b9c3ad017ea77ec6ca074022101dd | |
parent | 6f97a41964b38aa065649d4b65660042ceb32871 (diff) |
progs/egl: Add xeglbindtex.
This is a simple demo for eglBindTexImage. It uses a OpenGL context,
instead of the required OpenGL ES one. But it still suffices the demo
and test purpose.
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
-rw-r--r-- | progs/egl/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/egl/Makefile b/progs/egl/Makefile index d3c32d46f7..fd72f540ca 100644 --- a/progs/egl/Makefile +++ b/progs/egl/Makefile @@ -17,6 +17,7 @@ PROGRAMS = \ eglgears \ eglscreen \ peglgears \ + xeglbindtex \ xeglgears \ xeglthreads \ xegl_tri @@ -84,6 +85,12 @@ peglgears.o: peglgears.c $(HEADERS) $(CC) -c $(CFLAGS) -I$(TOP)/include peglgears.c +xeglbindtex: xeglbindtex.o $(TOP)/$(LIB_DIR)/libEGL.so + $(CC) $(CFLAGS) xeglbindtex.o -L$(TOP)/$(LIB_DIR) -lEGL -lGL $(LIBDRM_LIB) $(APP_LIB_DEPS) -o $@ + +xeglbindtex.o: xeglbindtex.c $(HEADERS) + $(CC) -c $(CFLAGS) -I$(TOP)/include xeglbindtex.c + xeglgears: xeglgears.o $(TOP)/$(LIB_DIR)/libEGL.so $(CC) $(CFLAGS) xeglgears.o -L$(TOP)/$(LIB_DIR) -lEGL -lGL $(LIBDRM_LIB) $(APP_LIB_DEPS) -o $@ |