summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'main.h')
-rw-r--r--main.h29
1 files changed, 16 insertions, 13 deletions
diff --git a/main.h b/main.h
index 096107a..26b3666 100644
--- a/main.h
+++ b/main.h
@@ -116,6 +116,12 @@ enum focused_window
focus_timeline
};
+struct sorted_property_info
+{
+ uint32 MinYIndex;
+ uint32 MaxYIndex;
+};
+
struct sorted_comp_info
{
uint32 LayerCount;
@@ -127,6 +133,16 @@ struct sorted_layer
real32 SortedOffset;
};
+struct sorted_file
+{
+ sorted_layer *LayerArray;
+ sorted_comp_info *CompArray;
+ sorted_property_info *PropertyInfo;
+ uint16 *PropertyArray;
+ uint64 Layer_SortSize;
+ uint64 Property_SortSize;
+};
+
enum timeline_mode
{
timeline_mode_default,
@@ -362,19 +378,6 @@ struct property_header
real32 MaxVal;
};
-struct graph_info
-{
- real32 MinVal = FLT_MAX;
- real32 MaxVal = FLT_MIN;
- real32 LowestOffset = FLT_MIN;
-};
-
-struct property_info
-{
- real32 MinVal = FLT_MAX;
- real32 MaxVal = FLT_MIN;
-};
-
struct property_channel {
uint8 Occupied;
char *Name;