Skip to content

Commit 257bc58

Browse files
committed
Fix default color not beinf premultiplied
1 parent 2e02881 commit 257bc58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/de/bluecolored/bluemap/core/resources/BlockColorCalculatorFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class BlockColorCalculatorFactory {
5959
BLEND_MAX_Z = BLEND_RADIUS_H;
6060

6161
private static final ColorFunction DEFAULT_COLOR_FUNCTION =
62-
(c, b, target) -> target.set(0xffffffff);
62+
(c, b, target) -> target.set(0xffffffff, true);
6363

6464
private int[] foliageMap = new int[0];
6565
private int[] dryFoliageMap = new int[0];

0 commit comments

Comments
 (0)