From 5de31d6310dc405550986306920df2eb215ece92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Thu, 21 Mar 2019 16:25:33 +0100 Subject: =?UTF-8?q?=F0=9F=92=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mbgl/gfx/draw_mode.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mbgl/gfx/draw_mode.hpp b/src/mbgl/gfx/draw_mode.hpp index 586f41cb13..aedf93d0d3 100644 --- a/src/mbgl/gfx/draw_mode.hpp +++ b/src/mbgl/gfx/draw_mode.hpp @@ -9,12 +9,13 @@ namespace gfx { class DrawMode { protected: - DrawMode(DrawModeType type_, float) - : type(type_) { + DrawMode(DrawModeType type_, float value_) + : type(type_), value(value_) { } public: const DrawModeType type; + const float value; }; class Points : public DrawMode { -- cgit v1.2.1