summaryrefslogtreecommitdiff
path: root/src/til_video_setup.h
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2023-11-30 11:19:13 -0800
committerVito Caputo <vcaputo@pengaru.com>2023-11-30 11:19:13 -0800
commit97b3dd17c1499c7ffd6d429a01d64ceaed233df2 (patch)
treee462322bfaf8149cc004aff16159755a02af77a2 /src/til_video_setup.h
parent686b24cfb95e4f451b5993c2c15cbf50c173b32e (diff)
til: introduce til_video_setup_t
Preparatory commit for wiring up aspect ratio settings at the fb middle layer. This will be a bit crufty initially, but should cleanup alright over time. til_video_setup_t will be passed around the fb stuff instead of a bare til_setup_t.
Diffstat (limited to 'src/til_video_setup.h')
-rw-r--r--src/til_video_setup.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/til_video_setup.h b/src/til_video_setup.h
new file mode 100644
index 0000000..21c5844
--- /dev/null
+++ b/src/til_video_setup.h
@@ -0,0 +1,10 @@
+#ifndef _TIL_VIDEO_SETUP_H
+#define _TIL_VIDEO_SETUP_H
+
+#include "til_setup.h"
+
+typedef struct til_video_setup_t {
+ til_setup_t til_setup;
+} til_video_setup_t;
+
+#endif
© All Rights Reserved