=== modified file 'src/composite-canvas.cc'
@@ -26,6 +26,7 @@
#include <inttypes.h>
#include <sys/time.h>
#include <sstream>
+#include <string>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
@@ -40,6 +41,8 @@
#include "log.h"
#include "profiler.h"
+const std::string glcompbench_version_string("glcompbench "GLCOMPBENCH_VERSION);
+
/*******************
* Private methods *
*******************/
@@ -537,7 +540,7 @@
/* Create the X window we are going to draw on */
width_ = Options::size;
height_ = Options::size;
- canvas_ = create_canvas_x_window("EGLImage TFP - Composite", 0, 0,
+ canvas_ = create_canvas_x_window(glcompbench_version_string.c_str(), 0, 0,
width_, height_,
vis_info);
XFree(vis_info);
=== modified file 'src/options.cc'
@@ -77,7 +77,7 @@
void
Options::print_help()
{
- printf("An EGL/GLES2.0 example of using EGL_KHR_image_pixmap with XComposite.\n"
+ printf("An OpenGL (ES) 2.0 compositing benchmark\n"
"\n"
"Options:\n"
" -i, --ids IDs A comma separated list of window ids to track\n"