summaryrefslogtreecommitdiff
path: root/progs/egl/opengles1/Makefile
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-03-01 15:21:46 +0800
committerChia-I Wu <olv@lunarg.com>2010-04-04 22:07:20 +0800
commitad3575e2dd81252e9ea341d1a7355e0bfd1cccee (patch)
tree268d07f9816663bfff0f65b5066718e27edab11c /progs/egl/opengles1/Makefile
parenta1aa53b2a934ca026bb115aca18a46fd920f9e8d (diff)
progs/egl: Add an OpenGL ES demo for EGL_OES_image_pixmap.
The demo uses a Pixmap as its drawing area, and whatever is drawn on the pixmap will be used as a texture to draw a cube.
Diffstat (limited to 'progs/egl/opengles1/Makefile')
-rw-r--r--progs/egl/opengles1/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/egl/opengles1/Makefile b/progs/egl/opengles1/Makefile
index c575a9703e..dac911e39f 100644
--- a/progs/egl/opengles1/Makefile
+++ b/progs/egl/opengles1/Makefile
@@ -35,6 +35,7 @@ PROGRAMS = \
msaa \
pbuffer \
render_tex \
+ texture_from_pixmap \
torus \
two_win
@@ -72,6 +73,9 @@ render_tex: render_tex.o $(ES1_LIB_DEPS)
$(CC) $(CFLAGS) render_tex.o $(ES1_LIBS) -o $@
+texture_from_pixmap: texture_from_pixmap.o $(ES1_LIB_DEPS)
+ $(CC) $(CFLAGS) texture_from_pixmap.o $(ES1_LIBS) -o $@
+
torus: torus.o $(ES1_LIB_DEPS)
$(CC) $(CFLAGS) torus.o $(ES1_LIBS) -o $@