Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions sparse_strips/vello_common/src/coarse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1434,6 +1434,7 @@ impl<const MODE: u8> WideTile<MODE> {
/// - Regular layers: Use local `blend_buf` stack for temporary storage
/// - Filtered layers: Materialized in persistent layer storage for filter processing
/// - Clip layers: Special handling for clipping operations
#[inline(always)]
fn push_buf(&mut self, layer_kind: LayerKind) {
let top_layer = layer_kind.id();
if matches!(layer_kind, LayerKind::Filtered(_)) {
Expand Down Expand Up @@ -1463,6 +1464,7 @@ impl<const MODE: u8> WideTile<MODE> {
}

/// Pop the most recent buffer.
#[inline(always)]
fn pop_buf(&mut self) {
if MODE == MODE_HYBRID {
self.push_buf_indices.pop();
Expand Down