twn_lines: combine differently colored lines into same batch

This commit is contained in:
veclavtalica 2025-03-12 12:00:53 +03:00
parent e974194af0
commit 183dfa6be5

View File

@ -68,7 +68,7 @@ void draw_line_3d(Vec3 start,
struct LineVertex const v1 = { .position = finish, .color = color };
/* 3d case, unordered depth based draw */
struct LineBatchItemKey const key = { .color = color, .thickness = (uint8_t)(floorf(thickness)) };
struct LineBatchItemKey const key = { .thickness = (uint8_t)(floorf(thickness)) };
struct LineBatchItem *batch_p = hmgetp_null(ctx.line_batches, key);
if (!batch_p) {
hmput(ctx.line_batches, key, ((struct LinePrimitive){.thickness = thickness, .color = color}));