From patchwork Tue Jan 17 15:42:13 2012 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: 6267 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 E046B23E13 for ; Tue, 17 Jan 2012 15:42:15 +0000 (UTC) Received: from mail-bk0-f52.google.com (mail-bk0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id B22FEA1845E for ; Tue, 17 Jan 2012 15:42:15 +0000 (UTC) Received: by bkbzt4 with SMTP id zt4so1842245bkb.11 for ; Tue, 17 Jan 2012 07:42:15 -0800 (PST) Received: by 10.204.41.143 with SMTP id o15mr6996951bke.63.1326814935273; Tue, 17 Jan 2012 07:42:15 -0800 (PST) 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.205.82.144 with SMTP id ac16cs122355bkc; Tue, 17 Jan 2012 07:42:14 -0800 (PST) Received: by 10.180.92.101 with SMTP id cl5mr4311322wib.21.1326814933549; Tue, 17 Jan 2012 07:42:13 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id a15si4305134wed.37.2012.01.17.07.42.13 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 17 Jan 2012 07:42:13 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1RnBAr-000132-9R for ; Tue, 17 Jan 2012 15:42:13 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 3F4E9E06D2 for ; Tue, 17 Jan 2012 15:42:13 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: glmark2 X-Launchpad-Branch: ~glmark2-dev/glmark2/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 184 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~glmark2-dev/glmark2/trunk] Rev 184: TextRenderer: Fix position() method signature. Message-Id: <20120117154213.3322.19895.launchpad@ackee.canonical.com> Date: Tue, 17 Jan 2012 15:42:13 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14676"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: f041cb9e1abd2cb91ba7136ea7655c5cb31bc346 ------------------------------------------------------------ revno: 184 committer: Alexandros Frantzis branch nick: trunk timestamp: Fri 2012-01-13 20:36:53 +0200 message: TextRenderer: Fix position() method signature. modified: src/text-renderer.cpp src/text-renderer.h --- lp:glmark2 https://code.launchpad.net/~glmark2-dev/glmark2/trunk You are subscribed to branch lp:glmark2. To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription === modified file 'src/text-renderer.cpp' --- src/text-renderer.cpp 2012-01-05 09:35:49 +0000 +++ src/text-renderer.cpp 2012-01-13 18:36:53 +0000 @@ -97,7 +97,7 @@ * @param t the position */ void -TextRenderer::position(LibMatrix::vec2& p) +TextRenderer::position(const LibMatrix::vec2& p) { if (position_ != p) { position_ = p; === modified file 'src/text-renderer.h' --- src/text-renderer.h 2011-12-13 14:25:41 +0000 +++ src/text-renderer.h 2012-01-13 18:36:53 +0000 @@ -38,7 +38,7 @@ ~TextRenderer(); void text(const std::string& t); - void position(LibMatrix::vec2& p); + void position(const LibMatrix::vec2& p); void size(float s); void render();