summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/vf/axis.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/vf/axis.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/vf/axis.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/vf/axis.h b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/vf/axis.h
new file mode 100644
index 00000000000..54d0d7cd3bd
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/vf/axis.h
@@ -0,0 +1,21 @@
+#ifndef CARYLL_VF_AXIS_H
+#define CARYLL_VF_AXIS_H
+
+#include "caryll/element.h"
+#include "caryll/vector.h"
+#include "otfcc/primitives.h"
+
+typedef struct {
+ uint32_t tag;
+ pos_t minValue;
+ pos_t defaultValue;
+ pos_t maxValue;
+ uint16_t flags;
+ uint16_t axisNameID;
+} vf_Axis;
+
+extern caryll_ValElementInterface(vf_Axis) vf_iAxis;
+typedef caryll_Vector(vf_Axis) vf_Axes;
+extern caryll_VectorInterface(vf_Axes, vf_Axis) vf_iAxes;
+
+#endif