@@ -1,3 +1,9 @@
+mesa-demos (8.0.1-3) unstable; urgency=low
+
+ * Add mesa-utils-extra packages like in ubuntu
+
+ -- Riku Voipio <riku.voipio@linaro.org> Sat, 30 Jul 2011 13:07:53 +0300
+
mesa-demos (8.0.1-2) unstable; urgency=low
* Upload to unstable.
@@ -13,9 +13,9 @@ Build-Depends: debhelper (>= 7.2.7),
libgl1-mesa-dev,
libglew1.5-dev,
libglu1-mesa-dev,
-# libegl1-mesa-dev,
-# libgles1-mesa-dev,
-# libgles2-mesa-dev,
+ libegl1-mesa-dev,
+ libgles1-mesa-dev,
+ libgles2-mesa-dev,
Homepage: http://mesa3d.org/
Vcs-Git: git://git.debian.org/git/pkg-xorg/app/mesa-demos.git
Vcs-Browser: http://git.debian.org/?p=pkg-xorg/app/mesa-demos.git
@@ -31,13 +31,13 @@ Description: Miscellaneous Mesa GL utilities
This package provides several basic GL utilities built by Mesa, including
glxinfo and glxgears.
-#Package: mesa-utils-extra
-#Section: x11
-#Priority: optional
-#Architecture: any
-#Depends:
-# ${shlibs:Depends},
-# ${misc:Depends},
-#Description: Miscellaneous Mesa utilies (opengles, egl)
-# This package provides several basic utilities built from Mesa, including
-# eglgears, eglinfo, glesgears
+Package: mesa-utils-extra
+Section: x11
+Priority: optional
+Architecture: any
+Depends:
+ ${shlibs:Depends},
+ ${misc:Depends},
+Description: Miscellaneous Mesa utilies (opengles, egl)
+ This package provides several basic utilities built from Mesa, including
+ es2gears, es2_info and es2tri
new file mode 100644
@@ -0,0 +1,21 @@
+.TH es2_info 1 "2011-02-01"
+.SH NAME
+es2_info \- list OpenGL ES extensions
+.SH SYNOPSIS
+.B es2_info
+.RI [ options ]
+.SH DESCRIPTION
+The \fIes2_info\fP program shows information about the supported OpenGL ES
+extensions.
+.SH OPTIONS
+.TP 8
+.B \-display \fIdisplay\fP
+Specify the X display to run on.
+.TP 8
+.B \-h
+Print usage information.
+.SH AUTHOR
+es2_info was written by Tunsgten Graphics.
+.PP
+This manual page was written by Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>,
+for the Debian project (but may be used by others).
new file mode 100644
@@ -0,0 +1,14 @@
+.TH es2gears 1 "2011-02-01"
+.SH NAME
+es2gears \- ``gears'' demo for GLES2
+.SH SYNOPSIS
+.B es2gears
+.SH DESCRIPTION
+The \fIes2gears\fP program is a port of the ``gears'' demo to GLES2. It displays
+a set of rotating gears and prints out the frame rate at regular intervals. It
+has become quite popular as basic benchmarking tool.
+.SH AUTHOR
+glxgears was written by Brian Paul <brian.paul@tungstengraphics.com>.
+.PP
+This manual page was written by Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>,
+for the Debian project (but may be used by others).
new file mode 100644
@@ -0,0 +1,14 @@
+.TH es2tri 1 "2011-02-01"
+.SH NAME
+es2tri \- a draw demonstration using X/EGL and OpenGL ES 2.x
+.SH SYNOPSIS
+.B es2tri
+.SH DESCRIPTION
+The \fIes2tri\fP program demonstrate the usage of X/EGL and OpenGL ES 2.x by
+drawing a triangle at the screen. This program is most useful when studied
+in its source code form.
+.SH AUTHOR
+es2tri was written by Tungsten Graphics.
+.PP
+This manual page was written by Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>,
+for the Debian project (but may be used by others).
new file mode 100644
@@ -0,0 +1,11 @@
+usr/bin/es2_info
+usr/bin/es2gears
+usr/bin/tri
+usr/bin/es1_info
+usr/bin/gears_screen
+usr/bin/gears_x11
+usr/bin/torus_screen
+usr/bin/torus_x11
+usr/bin/tri_screen
+usr/bin/tri_x11
+
new file mode 100644
@@ -0,0 +1,3 @@
+debian/es2_info.1
+debian/es2gears.1
+debian/es2tri.1
new file mode 100644
@@ -0,0 +1,4 @@
+usr/bin/glxdemo
+usr/bin/glxgears
+usr/bin/glxheads
+usr/bin/glxinfo
@@ -42,18 +42,20 @@ noinst_PROGRAMS = \
bindtex \
drawtex_screen \
drawtex_x11 \
- es1_info \
- gears_screen \
- gears_x11 \
msaa \
pbuffer\
render_tex \
texture_from_pixmap \
+ two_win
+
+bin_PROGRAMS = \
+ es1_info \
+ gears_screen \
+ gears_x11 \
torus_screen \
torus_x11 \
tri_screen \
- tri_x11 \
- two_win
+ tri_x11
endif
endif
@@ -38,7 +38,7 @@ AM_LDFLAGS = \
if HAVE_EGL
if HAVE_GLESV2
-noinst_PROGRAMS = \
+bin_PROGRAMS = \
es2_info \
es2gears \
tri
new file mode 120000
@@ -0,0 +1 @@
+../opengles1/es1_info.c
Add a package with OpenGL ES 1.1 and OpenGL ES 2.0 test applications Package mostly from ubuntu. Signed-off-by: Riku Voipio <riku.voipio@linaro.org> --- debian/changelog | 6 ++++++ debian/control | 26 +++++++++++++------------- debian/es2_info.1 | 21 +++++++++++++++++++++ debian/es2gears.1 | 14 ++++++++++++++ debian/es2tri.1 | 14 ++++++++++++++ debian/mesa-utils-extra.install | 11 +++++++++++ debian/mesa-utils-extra.manpages | 3 +++ debian/mesa-utils.install | 4 ++++ src/egl/opengles1/Makefile.am | 12 +++++++----- src/egl/opengles2/Makefile.am | 2 +- src/egl/opengles2/es2_info.c | 1 + 11 files changed, 95 insertions(+), 19 deletions(-) create mode 100644 debian/es2_info.1 create mode 100644 debian/es2gears.1 create mode 100644 debian/es2tri.1 create mode 100644 debian/mesa-utils-extra.install create mode 100644 debian/mesa-utils-extra.manpages create mode 100644 debian/mesa-utils.install create mode 120000 src/egl/opengles2/es2_info.c \ No newline at end of file