Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[core] fix icon-size for small data-driven values
Browse files Browse the repository at this point in the history
  • Loading branch information
ansis committed Aug 15, 2018
1 parent 20f880e commit 0a6c4f9
Show file tree
Hide file tree
Showing 6 changed files with 200 additions and 194 deletions.
2 changes: 1 addition & 1 deletion mapbox-gl-js
Submodule mapbox-gl-js updated 206 files
8 changes: 7 additions & 1 deletion platform/node/test/ignores.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,11 @@
"render-tests/combinations/symbol-translucent--fill-extrusion-translucent": "needs investigation",
"render-tests/feature-state/composite-expression": "skip - port https://github.com/mapbox/mapbox-gl-js/pull/6263 - needs issue",
"render-tests/feature-state/data-expression": "skip - port https://github.com/mapbox/mapbox-gl-js/pull/6263 - needs issue",
"render-tests/feature-state/vector-source": "skip - port https://github.com/mapbox/mapbox-gl-js/pull/6263 - needs issue"
"render-tests/feature-state/vector-source": "skip - port https://github.com/mapbox/mapbox-gl-js/pull/6263 - needs issue",
"render-tests/text-field/formatted-arabic": "https://github.com/mapbox/mapbox-gl-native/issues/12612",
"render-tests/text-field/formatted-line": "https://github.com/mapbox/mapbox-gl-native/issues/12612",
"render-tests/text-field/formatted": "https://github.com/mapbox/mapbox-gl-native/issues/12612",
"render-tests/basic-v9/z0-wide": "https://github.com/mapbox/mapbox-gl-native/pull/12611",
"render-tests/bright-v9/z0-wide": "https://github.com/mapbox/mapbox-gl-native/pull/12611",
"render-tests/satellite-v9/z0-wide": "https://github.com/mapbox/mapbox-gl-native/pull/12611"
}
4 changes: 2 additions & 2 deletions src/mbgl/programs/symbol_program.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ struct SymbolLayoutAttributes : gl::Attributes<
{{
tx,
ty,
static_cast<uint16_t>(sizeData.min * 10),
static_cast<uint16_t>(sizeData.max * 10)
static_cast<uint16_t>(sizeData.min * 256),
static_cast<uint16_t>(sizeData.max * 256)
}}
};
}
Expand Down
Loading

0 comments on commit 0a6c4f9

Please sign in to comment.