summaryrefslogtreecommitdiff
path: root/src/mbgl/shader/box_shader.hpp
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2015-09-10 14:05:16 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2015-09-14 11:29:48 +0300
commit8d6b9696bf3cea0cf8c3beaf9dfb48c7d376d925 (patch)
tree2b5f2cadf5dcb2b63fd71521b8bc27efcb21acd5 /src/mbgl/shader/box_shader.hpp
parentd9c7fdc5655d48a6e7c54016c0efd94710431430 (diff)
downloadqtlocation-mapboxgl-8d6b9696bf3cea0cf8c3beaf9dfb48c7d376d925.tar.gz
[shader] Moved 'a_pos' GL attribute to Shader
Avoids duplicated code in all derived classes.
Diffstat (limited to 'src/mbgl/shader/box_shader.hpp')
-rw-r--r--src/mbgl/shader/box_shader.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mbgl/shader/box_shader.hpp b/src/mbgl/shader/box_shader.hpp
index 5c84d8906c..832d3e1c03 100644
--- a/src/mbgl/shader/box_shader.hpp
+++ b/src/mbgl/shader/box_shader.hpp
@@ -18,7 +18,6 @@ public:
Uniform<float> u_maxzoom = {"u_maxzoom", *this};
protected:
- int32_t a_pos = -1;
int32_t a_extrude = -1;
int32_t a_data = -1;
};