diff Renderer/Engine/post.cc @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Renderer/Engine/post.cc	Mon Oct 12 09:39:35 2009 +0900
@@ -0,0 +1,30 @@
+#include "viewer.h"
+
+/*
+// post.cppの中身を viewer.cpp の中に持って行く
+extern Viewer *screen;
+
+void
+post2runLoop(void *arg)
+{
+    screen->run_loop();
+}
+
+void
+post2runDraw(void *arg)
+{
+    screen->run_draw();
+}
+
+void
+post2runMove(void *arg)
+{
+    screen->run_move();
+}
+
+void
+post2exchange_sgroot(void *arg)
+{
+    screen->exchange_sgroot();
+}
+*/