Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 2e277c9

Browse files
committed
fix enum
1 parent 28cf41b commit 2e277c9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

flow/frame_timings.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ class FrameTimingsRecorder {
2424
/// Various states that the recorder can be in. When created the recorder is
2525
/// in an unitialized state and transtions in sequential order of the states.
2626
enum class State : uint32_t {
27-
kUninitialized = 0,
28-
kVsync = 1,
29-
kBuildStart = 2,
30-
kBuildEnd = 3,
31-
kRasterStart = 4,
32-
kRasterEnd = 5,
27+
kUninitialized,
28+
kVsync,
29+
kBuildStart,
30+
kBuildEnd,
31+
kRasterStart,
32+
kRasterEnd,
3333
};
3434

3535
/// Default constructor, initializes the recorder with State::kUninitialized.

0 commit comments

Comments
 (0)