From f97ba60da46445b15fcdea9bd6c1d7ceb63138e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20K=C3=A4fer?= Date: Thu, 31 May 2018 15:15:12 +0200 Subject: [core] rename gl::Attribute to gl::Attribute to remove overloaded naming --- src/mbgl/programs/attributes.hpp | 44 ++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'src/mbgl/programs/attributes.hpp') diff --git a/src/mbgl/programs/attributes.hpp b/src/mbgl/programs/attributes.hpp index c677c84d5d..f1f1bdaa3f 100644 --- a/src/mbgl/programs/attributes.hpp +++ b/src/mbgl/programs/attributes.hpp @@ -35,116 +35,116 @@ MBGL_DEFINE_ATTRIBUTE(uint8_t, 2, a_placed); template struct a_data { static auto name() { return "a_data"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_size { static auto name() { return "a_size"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; template struct a_offset { static auto name() { return "a_offset"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; // Paint attributes struct a_color { static auto name() { return "a_color"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_fill_color { static auto name() { return "a_fill_color"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_halo_color { static auto name() { return "a_halo_color"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_stroke_color { static auto name() { return "a_stroke_color"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_outline_color { static auto name() { return "a_outline_color"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_opacity { static auto name() { return "a_opacity"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_stroke_opacity { static auto name() { return "a_stroke_opacity"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_blur { static auto name() { return "a_blur"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_radius { static auto name() { return "a_radius"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_width { static auto name() { return "a_width"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_floorwidth { static auto name() { return "a_floorwidth"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_height { static auto name() { return "a_height"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_base { static auto name() { return "a_base"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_gapwidth { static auto name() { return "a_gapwidth"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_stroke_width { static auto name() { return "a_stroke_width"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; template <> struct a_offset<1> { static auto name() { return "a_offset"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_halo_width { static auto name() { return "a_halo_width"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_halo_blur { static auto name() { return "a_halo_blur"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; struct a_weight { static auto name() { return "a_weight"; } - using Type = gl::Attribute; + using Type = gl::AttributeType; }; } // namespace attributes -- cgit v1.2.1