CYD-UI
A C++ library for building native graphic user interfaces
Loading...
Searching...
No Matches
complexity.cppm
Go to the documentation of this file.
1//
2// Created by castle on 2/26/25.
3//
4
6
7export namespace cydui {
8 enum class AnimationComplexity {
9 COMPOSE = 0, // Only needs compositing
10 REPAINT = 1, // Requires updating and repainting the fragment
11 REFLOW = 2, // Requires recomputing dimensions
12 FULL_UPDATE = 3, // Requires an entire component update
13 };
14}
AnimationComplexity