Home
last modified time | relevance | path

Searched refs:CircleProgram (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Dcircle_bucket.cpp70 vertices.emplace_back(CircleProgram::vertex(point, -1, -1)); // 1 in addFeature()
71 vertices.emplace_back(CircleProgram::vertex(point, 1, -1)); // 2 in addFeature()
72 vertices.emplace_back(CircleProgram::vertex(point, 1, 1)); // 3 in addFeature()
73 vertices.emplace_back(CircleProgram::vertex(point, -1, 1)); // 4 in addFeature()
95 static float get(const RenderCircleLayer& layer, const std::map<std::string, CircleProgram::PaintPr… in get()
H A Dcircle_bucket.hpp35 std::map<std::string, CircleProgram::PaintPropertyBinders> paintPropertyBinders;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dcircle_program.hpp16 class CircleProgram : public Program< class
48 using CircleLayoutVertex = CircleProgram::LayoutVertex;
49 using CircleAttributes = CircleProgram::Attributes;
H A Dprograms.hpp54 ProgramMap<CircleProgram> circle;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_circle_layer.cpp70 CircleProgram::UniformValues { in render()