2026-07-22 18:09:06 +02:00
|
|
|
|
//SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
|
|
//SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
|
|
|
|
|
|
2026-05-02 21:08:20 +02:00
|
|
|
|
#version 460
|
|
|
|
|
|
#extension GL_GOOGLE_include_directive : enable
|
2026-06-18 13:26:37 +00:00
|
|
|
|
#extension GL_KHR_shader_subgroup_basic : enable
|
|
|
|
|
|
#extension GL_KHR_shader_subgroup_arithmetic : enable
|
2026-05-02 21:08:20 +02:00
|
|
|
|
#include "ui-shared.glsl"
|
|
|
|
|
|
|
2026-06-16 15:45:12 +00:00
|
|
|
|
// One workgroup per 8×8 screen tile. The workgroup cooperatively streams the
|
|
|
|
|
|
// ImageItem list in chunks of 64 (see ui-shared.glsl), culling each chunk
|
|
|
|
|
|
// against the tile and compacting survivors — in buffer order — into shared
|
|
|
|
|
|
// memory; every thread then accumulates over only those survivors.
|
2026-05-02 21:08:20 +02:00
|
|
|
|
layout(push_constant) uniform PC {
|
|
|
|
|
|
UIDispatchHeader hdr;
|
|
|
|
|
|
} pc;
|
|
|
|
|
|
|
|
|
|
|
|
layout(local_size_x = 8, local_size_y = 8, local_size_z = 1) in;
|
|
|
|
|
|
|
2026-06-16 15:45:12 +00:00
|
|
|
|
shared vec4 s_rect[UI_CHUNK];
|
|
|
|
|
|
shared vec4 s_uv[UI_CHUNK];
|
|
|
|
|
|
shared vec4 s_tint[UI_CHUNK];
|
|
|
|
|
|
shared uvec4 s_slots[UI_CHUNK];
|
2026-06-18 13:22:07 +00:00
|
|
|
|
// 1.0/rect.zw, precomputed once per item at cooperative-load time so the
|
|
|
|
|
|
// per-pixel inner loop multiplies instead of recomputing a vec2 reciprocal of
|
|
|
|
|
|
// the (loop-invariant, but shared-mem + varying-index, so non-hoistable by the
|
|
|
|
|
|
// compiler) rect size for every pixel × item.
|
|
|
|
|
|
shared vec2 s_invRectSize[UI_CHUNK];
|
2026-06-16 15:45:12 +00:00
|
|
|
|
shared uint s_keep[UI_CHUNK];
|
|
|
|
|
|
shared uint s_order[UI_CHUNK];
|
|
|
|
|
|
shared uint s_count;
|
2026-06-18 13:26:37 +00:00
|
|
|
|
shared uint s_subTotals[UI_CHUNK]; // per-subgroup survivor totals (carry step)
|
|
|
|
|
|
|
|
|
|
|
|
// Stable in-order compaction of one chunk's survivors via a per-subgroup
|
|
|
|
|
|
// exclusive prefix-sum plus a carry across subgroups, so a survivor's slot in
|
|
|
|
|
|
// s_order[] equals the number of survivors with a smaller local index — buffer
|
|
|
|
|
|
// (draw) order preserved. Replaces the old lane-0 serial scan. See
|
|
|
|
|
|
// ui-fused.comp.glsl for the full rationale; the body is identical.
|
|
|
|
|
|
void uiCompactChunk() {
|
|
|
|
|
|
uint lid = gl_LocalInvocationIndex;
|
|
|
|
|
|
uint keep = s_keep[lid];
|
|
|
|
|
|
uint subPrefix = subgroupExclusiveAdd(keep);
|
|
|
|
|
|
uint subTotal = subgroupAdd(keep);
|
|
|
|
|
|
if (subgroupElect())
|
|
|
|
|
|
s_subTotals[gl_SubgroupID] = subTotal;
|
|
|
|
|
|
barrier();
|
|
|
|
|
|
|
|
|
|
|
|
uint base = 0u;
|
|
|
|
|
|
uint total = 0u;
|
|
|
|
|
|
for (uint s = 0u; s < gl_NumSubgroups; ++s) {
|
|
|
|
|
|
uint t = s_subTotals[s];
|
|
|
|
|
|
if (s < gl_SubgroupID) base += t;
|
|
|
|
|
|
total += t;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (lid == 0u) s_count = total;
|
|
|
|
|
|
|
|
|
|
|
|
if (keep != 0u)
|
|
|
|
|
|
s_order[base + subPrefix] = lid;
|
|
|
|
|
|
}
|
2026-06-16 15:45:12 +00:00
|
|
|
|
|
2026-05-02 21:08:20 +02:00
|
|
|
|
void main() {
|
|
|
|
|
|
ivec2 screenPx;
|
2026-06-16 15:45:12 +00:00
|
|
|
|
bool valid = uiResolveScreenPixel(pc.hdr, screenPx);
|
2026-05-02 21:08:20 +02:00
|
|
|
|
|
2026-06-18 13:26:32 +00:00
|
|
|
|
// Defer the destination read-modify-write: a sparse UI leaves most tiles
|
|
|
|
|
|
// untouched, so only load the pixel when the first surviving item blends
|
|
|
|
|
|
// over it (`loaded`), and only store when something actually touched it.
|
|
|
|
|
|
// The fused kernel amortizes a single load/store across all categories; the
|
|
|
|
|
|
// standalone Dispatch* path has no such umbrella and otherwise pays a full
|
|
|
|
|
|
// read-modify-write per empty tile.
|
|
|
|
|
|
vec4 dst = vec4(0.0);
|
|
|
|
|
|
vec2 sp = vec2(0.0);
|
|
|
|
|
|
bool loaded = false;
|
|
|
|
|
|
if (valid) sp = vec2(screenPx) + 0.5;
|
2026-05-02 21:08:20 +02:00
|
|
|
|
|
2026-06-16 15:45:12 +00:00
|
|
|
|
vec2 tileMin, tileMax;
|
|
|
|
|
|
uiTileBounds(tileMin, tileMax);
|
|
|
|
|
|
|
|
|
|
|
|
uint lid = gl_LocalInvocationIndex;
|
|
|
|
|
|
for (uint base = 0u; base < pc.hdr.itemCount; base += UI_CHUNK) {
|
|
|
|
|
|
uint idx = base + lid;
|
|
|
|
|
|
bool keep = false;
|
|
|
|
|
|
if (idx < pc.hdr.itemCount) {
|
|
|
|
|
|
s_rect[lid] = uiImageHeap[pc.hdr.itemBuffer].items[idx].rect;
|
|
|
|
|
|
s_uv[lid] = uiImageHeap[pc.hdr.itemBuffer].items[idx].uv;
|
|
|
|
|
|
s_tint[lid] = uiImageHeap[pc.hdr.itemBuffer].items[idx].tint;
|
|
|
|
|
|
s_slots[lid] = uiImageHeap[pc.hdr.itemBuffer].items[idx].slots;
|
2026-06-18 13:22:07 +00:00
|
|
|
|
s_invRectSize[lid] = 1.0 / s_rect[lid].zw;
|
2026-06-16 15:45:12 +00:00
|
|
|
|
keep = uiAabbOverlapsTile(s_rect[lid].xy, s_rect[lid].xy + s_rect[lid].zw,
|
|
|
|
|
|
tileMin, tileMax);
|
|
|
|
|
|
}
|
|
|
|
|
|
s_keep[lid] = keep ? 1u : 0u;
|
|
|
|
|
|
barrier();
|
|
|
|
|
|
|
2026-06-18 13:26:37 +00:00
|
|
|
|
uiCompactChunk();
|
2026-06-16 15:45:12 +00:00
|
|
|
|
barrier();
|
|
|
|
|
|
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
for (uint j = 0u; j < s_count; ++j) {
|
|
|
|
|
|
uint c = s_order[j];
|
|
|
|
|
|
|
|
|
|
|
|
vec2 lo = s_rect[c].xy;
|
|
|
|
|
|
vec2 hi = s_rect[c].xy + s_rect[c].zw;
|
|
|
|
|
|
if (sp.x < lo.x || sp.y < lo.y) continue;
|
|
|
|
|
|
if (sp.x >= hi.x || sp.y >= hi.y) continue;
|
|
|
|
|
|
|
2026-06-18 13:22:07 +00:00
|
|
|
|
vec2 t = (sp - s_rect[c].xy) * s_invRectSize[c];
|
2026-06-16 15:45:12 +00:00
|
|
|
|
vec2 uv = mix(s_uv[c].xy, s_uv[c].zw, t);
|
|
|
|
|
|
|
|
|
|
|
|
uint texSlot = s_slots[c].x;
|
|
|
|
|
|
uint sampSlot = s_slots[c].y;
|
|
|
|
|
|
|
|
|
|
|
|
vec4 sampled = texture(
|
|
|
|
|
|
sampler2D(uiTextures[nonuniformEXT(texSlot)],
|
|
|
|
|
|
uiSamplers[nonuniformEXT(sampSlot)]),
|
|
|
|
|
|
uv
|
|
|
|
|
|
);
|
|
|
|
|
|
vec4 src = sampled * s_tint[c];
|
|
|
|
|
|
if (src.a <= 0.0) continue;
|
2026-06-18 13:26:32 +00:00
|
|
|
|
if (!loaded) {
|
|
|
|
|
|
dst = imageLoad(uiImages[pc.hdr.outImage], screenPx);
|
|
|
|
|
|
loaded = true;
|
|
|
|
|
|
}
|
2026-06-16 15:45:12 +00:00
|
|
|
|
dst = uiBlendOver(dst, src);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
barrier();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-06-18 13:26:32 +00:00
|
|
|
|
if (loaded) imageStore(uiImages[pc.hdr.outImage], screenPx, dst); // loaded ⇒ valid
|
2026-05-02 21:08:20 +02:00
|
|
|
|
}
|