diff mbox

[Branch,~glcompbench-dev/glcompbench/trunk] Rev 70: Build, Doc: Add documentation for --backend option to man page.

Message ID 20111214181215.10230.50255.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

alexandros.frantzis@linaro.org Dec. 14, 2011, 6:12 p.m. UTC
------------------------------------------------------------
revno: 70
committer: Alexandros Frantzis <alexandros.frantzis@linaro.org>
branch nick: trunk
timestamp: Wed 2011-12-14 13:37:13 +0200
message:
  Build,Doc: Add documentation for --backend option to man page.
modified:
  doc/glcompbench.1.in
  doc/wscript_build


--
lp:glcompbench
https://code.launchpad.net/~glcompbench-dev/glcompbench/trunk

You are subscribed to branch lp:glcompbench.
To unsubscribe from this branch go to https://code.launchpad.net/~glcompbench-dev/glcompbench/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'doc/glcompbench.1.in'
--- doc/glcompbench.1.in	2011-10-17 14:15:32 +0000
+++ doc/glcompbench.1.in	2011-12-14 11:37:13 +0000
@@ -43,6 +43,9 @@ 
 Don't update the screen by swapping the front and
 back buffer, use glFinish() instead
 .TP
+\fB\-\-backend\fR
+The OpenGL backend to use (supported backends: @backends@)
+.TP
 \fB\-d\fR, \fB\-\-debug\fR
 Display debug messages
 .TP

=== modified file 'doc/wscript_build'
--- doc/wscript_build	2011-06-24 14:56:59 +0000
+++ doc/wscript_build	2011-12-14 11:37:13 +0000
@@ -6,7 +6,8 @@ 
         install_path = '${PREFIX}/share/man/man1',
         APPNAME = 'GLCOMPBENCH-GLX',
         appname = 'glcompbench-glx',
-        appversion = bld.env.GLCOMPBENCH_VERSION
+        appversion = bld.env.GLCOMPBENCH_VERSION,
+        backends = 'glx'
     )
 
 if bld.env.BUILD_EGL_GL:
@@ -17,7 +18,8 @@ 
         install_path = '${PREFIX}/share/man/man1',
         APPNAME = 'GLCOMPBENCH-EGL-GL',
         appname = 'glcompbench-egl-gl',
-        appversion = bld.env.GLCOMPBENCH_VERSION
+        appversion = bld.env.GLCOMPBENCH_VERSION,
+        backends = 'egl-gl'
     )
 
 if bld.env.BUILD_EGL_ES2:
@@ -28,7 +30,8 @@ 
         install_path = '${PREFIX}/share/man/man1',
         APPNAME = 'GLCOMPBENCH-EGL-ES2',
         appname = 'glcompbench-egl-es2',
-        appversion = bld.env.GLCOMPBENCH_VERSION
+        appversion = bld.env.GLCOMPBENCH_VERSION,
+        backends = 'egl-es2'
     )
 
 bld(