Home
last modified time | relevance | path

Searched refs:RasterResamplingType (Results 1 – 8 of 8) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Draster_layer_properties.hpp39 struct RasterResampling : PaintProperty<RasterResamplingType> {
40 static RasterResamplingType defaultValue() { return RasterResamplingType::Linear; } in defaultValue()
H A Draster_layer.cpp239 PropertyValue<RasterResamplingType> RasterLayer::getDefaultRasterResampling() { in getDefaultRasterResampling()
240 return { RasterResamplingType::Linear }; in getDefaultRasterResampling()
243 PropertyValue<RasterResamplingType> RasterLayer::getRasterResampling() const { in getRasterResampling()
247 void RasterLayer::setRasterResampling(PropertyValue<RasterResamplingType> value) { in setRasterResampling()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Draster_layer.hpp70 static PropertyValue<RasterResamplingType> getDefaultRasterResampling();
71 PropertyValue<RasterResamplingType> getRasterResampling() const;
72 void setRasterResampling(PropertyValue<RasterResamplingType>);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dtypes.cpp28 MBGL_DEFINE_ENUM(RasterResamplingType, {
29 { RasterResamplingType::Linear, "linear" },
30 { RasterResamplingType::Nearest, "nearest" },
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dtypes.hpp41 enum class RasterResamplingType : bool { enum
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dvalue.cpp313 template type::Type valueTypeToExpressionType<RasterResamplingType>();
314 template struct ValueConverter<RasterResamplingType>;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_raster_layer.cpp126 …const gl::TextureFilter filter = evaluated.get<RasterResampling>() == RasterResamplingType::Neares… in render()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dmake_property_setters.hpp209 …result["raster-resampling"] = &setProperty<RasterLayer, PropertyValue<RasterResamplingType>, &Rast… in makePaintPropertySetters()