summaryrefslogtreecommitdiff
path: root/src/glamo-engine.h
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2009-05-01 23:37:30 +0200
committerLars-Peter Clausen <lars@metafoo.de>2009-05-01 23:37:30 +0200
commit8b82afb51440f33fcbbe609a50ceb2c5986adf57 (patch)
tree139c2da99108c3a7703610489897cfdf2b8624d9 /src/glamo-engine.h
parent16a993d8b17ef623a21b003f6f08adb86c76de77 (diff)
Code cleanup:
* Delete unused files * Move engine code to it's own file * Remove some proxy functions
Diffstat (limited to 'src/glamo-engine.h')
-rw-r--r--src/glamo-engine.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/glamo-engine.h b/src/glamo-engine.h
new file mode 100644
index 0000000..187fa1f
--- /dev/null
+++ b/src/glamo-engine.h
@@ -0,0 +1,48 @@
+/*
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that copyright
+ * notice and this permission notice appear in supporting documentation, and
+ * that the name of the copyright holders not be used in advertising or
+ * publicity pertaining to distribution of the software without specific,
+ * written prior permission. The copyright holders make no representations
+ * about the suitability of this software for any purpose. It is provided "as
+ * is" without express or implied warranty.
+ *
+ * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+ * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+ * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+ * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
+ * OF THIS SOFTWARE.
+ */
+
+#include <stdbool.h>
+
+enum GLAMOEngine {
+ GLAMO_ENGINE_CMDQ,
+ GLAMO_ENGINE_ISP,
+ GLAMO_ENGINE_2D,
+ GLAMO_ENGINE_MPEG,
+ GLAMO_ENGINE_ALL,
+ NB_GLAMO_ENGINES /*should be the last entry*/
+};
+
+void
+GLAMOEngineEnable(GlamoPtr pGlamo, enum GLAMOEngine engine);
+
+void
+GLAMOEngineDisable(GlamoPtr pGlamo, enum GLAMOEngine engine);
+
+void
+GLAMOEngineReset(GlamoPtr pGlamo, enum GLAMOEngine engine);
+
+bool
+GLAMOEngineBusy(GlamoPtr pGlamo, enum GLAMOEngine engine);
+
+void
+GLAMOEngineWait(GlamoPtr pGlamo, enum GLAMOEngine engine);
+
+