This commit is contained in:
Aras Pranckevicius
2024-06-04 22:08:42 +03:00
parent 4f21b26675
commit 078a737fd6

View File

@@ -109,8 +109,9 @@ enum eGPUSeqFlags : uint32_t {
/* VSE per-strip data for timeline rendering. */
struct SeqStripDrawData {
/* Horizontal strip positions (1.0 is one frame). */
float left_handle, right_handle; /* Left and right strip sides. */
float content_start, content_end; /* Start and end of actual content (only relevant for strips that have holdout regions). */
float left_handle, right_handle; /* Left and right strip sides. */
float content_start, content_end; /* Start and end of actual content (only relevant for strips
that have holdout regions). */
float handle_width;
/* Vertical strip positions (1.0 is one channel). */
float bottom;
@@ -138,7 +139,6 @@ struct SeqContextDrawData {
};
BLI_STATIC_ASSERT_ALIGN(SeqContextDrawData, 16)
enum TestStatus : uint32_t {
TEST_STATUS_NONE = 0u,
TEST_STATUS_PASSED = 1u,