-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explicitly set stencil mode (disabled) in heatmap texture copy
- Loading branch information
Lauren Budorick
authored
Jun 13, 2018
1 parent
5273e28
commit 7d079a7
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+7.28 KB
test/integration/render-tests/regressions/mapbox-gl-js#6806/expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions
47
test/integration/render-tests/regressions/mapbox-gl-js#6806/style.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"version": 8, | ||
"metadata": { | ||
"test": { | ||
"height": 64, | ||
"width": 64, | ||
"description": "Contains two expected images (for ubyte-based rendering and half-float-based); one of them should pass depending on platform." | ||
} | ||
}, | ||
"center": [ | ||
13.418056, | ||
52.4963 | ||
], | ||
"zoom": 14, | ||
"sources": { | ||
"mapbox": { | ||
"type": "vector", | ||
"maxzoom": 14, | ||
"tiles": [ | ||
"local://tiles/{z}-{x}-{y}.mvt" | ||
] | ||
} | ||
}, | ||
"glyphs": "local://glyphs/{fontstack}/{range}.pbf", | ||
"layers": [ | ||
{ | ||
"id": "background", | ||
"type": "background", | ||
"paint": { | ||
"background-color": "white" | ||
} | ||
}, | ||
{ | ||
"id": "fill", | ||
"type": "fill", | ||
"source": "mapbox", | ||
"source-layer": "building" | ||
}, | ||
{ | ||
"id": "poi_heat", | ||
"type": "heatmap", | ||
"source": "mapbox", | ||
"source-layer": "poi_label", | ||
"paint": {} | ||
} | ||
] | ||
} |