Skip to content

Commit 7b4179d

Browse files
committed
add translucency to outlineColor
fix for #8553 PR adds translucency to outlineColor in BillboardCollectionVS update contributors to include Geoplex GIS GmbH members
1 parent 3b54b9d commit 7b4179d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CONTRIBUTORS.md

+3
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,9 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to Cesiu
154154
- [Jonathan Nogueira](https://github.com/LuminousPath)
155155
- [Palantir Technologies, Inc.](https://palantir.com)
156156
- [Joey Rafidi](https://github.com/jrafidi)
157+
- [Geoplex GIS GmbH](https://www.geoplex.de)
158+
- [Hannes Gräuler](https://github.com/lordi)
159+
- [Leonard Holst](https://github.com/LHolst)
157160

158161
## [Individual CLA](Documentation/Contributors/CLAs/individual-contributor-license-agreement-v1.0.pdf)
159162

Source/Shaders/BillboardCollectionVS.glsl

+1
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ if (lengthSq < disableDepthTestDistance) {
423423

424424
v_outlineWidth = outlineWidth / 255.0;
425425
v_outlineColor = outlineColor;
426+
v_outlineColor.a *= translucency;
426427
#endif
427428

428429
v_pickColor = pickColor;

0 commit comments

Comments
 (0)