summaryrefslogtreecommitdiff
path: root/src/frame-impl.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-12-30 17:58:01 +0100
committerHenrik Rydberg <rydberg@euromail.se>2010-12-30 17:58:01 +0100
commitf0aba58c91933a4702a7cc74f7daf4192868f570 (patch)
tree648c41fe09adb72344769dd6242638cbad835482 /src/frame-impl.h
Initial load of utouch-framev1.0.0
Compiles and runs on mtdev. ABI proof. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/frame-impl.h')
-rw-r--r--src/frame-impl.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/frame-impl.h b/src/frame-impl.h
new file mode 100644
index 0000000..c31f7da
--- /dev/null
+++ b/src/frame-impl.h
@@ -0,0 +1,18 @@
1#ifndef _FRAME_IMPL_H
2#define _FRAME_IMPL_H
3
4#include <utouch/frame.h>
5
6struct utouch_frame_engine {
7 int num_frames;
8 int num_slots;
9 int hold_ms;
10 int frame;
11 int slot;
12 float max_orient;
13 struct utouch_surface *surface;
14 struct utouch_frame **frames;
15 struct utouch_frame *next;
16};
17
18#endif