summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorFox Caminiti <fox@foxcam.net>2022-07-28 17:28:13 -0400
committerFox Caminiti <fox@foxcam.net>2022-07-28 17:28:13 -0400
commit7d3dcee5b370c05065eb409ad5c21d0bc64790b1 (patch)
treeff8a849022d40a775f3649a15166649639f95f5e /main.h
parent313ca58550163380e072880b360bc6076d27c8e5 (diff)
blend modes implemented in renderers
Diffstat (limited to 'main.h')
-rw-r--r--main.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.h b/main.h
index 3c81c43..612e24f 100644
--- a/main.h
+++ b/main.h
@@ -257,6 +257,7 @@ struct transform_info {
uint32 FullLayerWidth;
uint32 FullLayerHeight;
real32 LayerOpacity;
+ blend_mode BlendMode;
real32 OriginX;
real32 OriginY;
uint32 BufferPitch;
@@ -397,6 +398,9 @@ struct project_state
int32 MsgTime; // currently in "frames"
char *Msg;
+
+ ImGuiTextFilter filter; // This filter API is pretty ballin'.
+ bool32 RerouteEffects; // Allows shift+space hotkey to gain focus on the effects panel.
};
struct brush_tool
@@ -415,7 +419,7 @@ enum focused_window
struct ui
{
- real32 TimelineSplit = 200;
+ real32 TimelineSplit = 600;
real32 TimelineZoom;
ImVec2 CompZoom;