2025-02-18 16:58:45 +08:00

17 lines
340 B
Plaintext

@startuml
state CommandBufferState {
[*] --> Idle
Idle --> Recording : Begin()
Recording --> Executable : End()
Executable --> Pending : Submit()
Pending --> Idle : Reset()
}
state CacheState {
[*] --> Valid
Valid --> Invalid : Widget Changed
Invalid --> Rendering : Start Update
Rendering --> Valid : Complete
}
@enduml