summaryrefslogtreecommitdiff
path: root/src/mbgl/programs/attributes.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/programs/attributes.hpp')
-rw-r--r--src/mbgl/programs/attributes.hpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mbgl/programs/attributes.hpp b/src/mbgl/programs/attributes.hpp
index a2e0772762..b015c06366 100644
--- a/src/mbgl/programs/attributes.hpp
+++ b/src/mbgl/programs/attributes.hpp
@@ -2,7 +2,6 @@
#include <mbgl/gl/attribute.hpp>
#include <mbgl/gl/uniform.hpp>
-#include <mbgl/gl/normalization.hpp>
#include <cstdint>
@@ -122,19 +121,19 @@ struct a_outline_color : gl::Attribute<float, 2> {
}
};
-struct a_opacity : gl::Attribute<gl::Normalized<uint8_t>, 1> {
+struct a_opacity : gl::Attribute<float, 1> {
static auto name() { return "a_opacity"; }
static Value value(float opacity) {
- return {{ gl::Normalized<uint8_t>(opacity) }};
+ return {{ opacity }};
}
};
-struct a_stroke_opacity : gl::Attribute<gl::Normalized<uint8_t>, 1> {
+struct a_stroke_opacity : gl::Attribute<float, 1> {
static auto name() { return "a_stroke_opacity"; }
static Value value(float opacity) {
- return {{ gl::Normalized<uint8_t>(opacity) }};
+ return {{ opacity }};
}
};