Add support for multiple iterations/defining a pipeline with multiple steps #28

Closed
opened 2025-01-06 19:21:55 +00:00 by ChaoticByte · 1 comment
ChaoticByte commented 2025-01-06 19:21:55 +00:00 (Migrated from github.com)

Example usage:

//!load ...

//!steps n

void fragment() {
  if (STEP == 0) {
    ...
  } else if (STEP == 1) {
    ...
  }
  // ... and so on
}

Example usage: ```glsl //!load ... //!steps n void fragment() { if (STEP == 0) { ... } else if (STEP == 1) { ... } // ... and so on } ```
ChaoticByte commented 2025-01-06 21:43:16 +00:00 (Migrated from github.com)

Implemented in 1d9f838668

Implemented in 1d9f838668e9f3211351b95b44ae87b70adbdc54
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: ChaoticByte/Fragmented#28
No description provided.