From patchwork Fri Jun 24 16:21:35 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: alexandros.frantzis@linaro.org X-Patchwork-Id: 2305 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 18C6823F7C for ; Fri, 24 Jun 2011 16:22:09 +0000 (UTC) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.216.173]) by fiordland.canonical.com (Postfix) with ESMTP id D9640A18375 for ; Fri, 24 Jun 2011 16:22:08 +0000 (UTC) Received: by qyk10 with SMTP id 10so482198qyk.11 for ; Fri, 24 Jun 2011 09:22:08 -0700 (PDT) Received: by 10.229.7.141 with SMTP id d13mr340881qcd.21.1308932528310; Fri, 24 Jun 2011 09:22:08 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.230.139 with SMTP id jm11cs52824qcb; Fri, 24 Jun 2011 09:22:08 -0700 (PDT) Received: by 10.227.151.196 with SMTP id d4mr3258237wbw.102.1308932524261; Fri, 24 Jun 2011 09:22:04 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id en14si6440310wbb.115.2011.06.24.09.22.03; Fri, 24 Jun 2011 09:22:04 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1Qa98q-0000fo-SG for ; Fri, 24 Jun 2011 16:22:00 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 2E5502E802E for ; Fri, 24 Jun 2011 16:21:35 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: glcompbench X-Launchpad-Branch: ~glcompbench-dev/glcompbench/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 42 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~glcompbench-dev/glcompbench/trunk] Rev 42: Document CompositeTest options. Message-Id: <20110624162135.19375.29178.launchpad@loganberry.canonical.com> Date: Fri, 24 Jun 2011 16:21:35 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13265"; Instance="initZopeless config overlay" X-Launchpad-Hash: 77b42c5f977bf8d9746c660a129bbe21e7ed2011 ------------------------------------------------------------ revno: 42 committer: Alexandros Frantzis branch nick: trunk timestamp: Fri 2011-06-24 19:02:39 +0300 message: Document CompositeTest options. modified: src/composite-test-simple-base.cc src/composite-test.cc --- 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 === modified file 'src/composite-test-simple-base.cc' --- src/composite-test-simple-base.cc 2011-06-23 13:32:36 +0000 +++ src/composite-test-simple-base.cc 2011-06-24 16:02:39 +0000 @@ -40,7 +40,8 @@ : CompositeTest(test_name), vs_filename_(vs_filename), fs_filename_(fs_filename) { - options_["use-vbo"] = CompositeTest::Option("use-vbo", "true", ""); + options_["use-vbo"] = CompositeTest::Option("use-vbo", "true", + "Whether to use VBOs for rendering [true,false]"); } void === modified file 'src/composite-test.cc' --- src/composite-test.cc 2011-06-23 13:52:16 +0000 +++ src/composite-test.cc 2011-06-24 16:02:39 +0000 @@ -31,8 +31,10 @@ CompositeTest::CompositeTest(const string& test_name) : name_(test_name) { - options_["duration"] = CompositeTest::Option("duration", "3.0", ""); - options_["iterations"] = CompositeTest::Option("iterations", "5", ""); + options_["duration"] = CompositeTest::Option("duration", "3.0", + "The duration of each iteration in seconds"); + options_["iterations"] = CompositeTest::Option("iterations", "5", + "The number of iterations run for this test"); } /**