view TaskManager/Test/test_render/post.cpp @ 396:d1f1e27d0a12

don't move. separate allExecute from run_loop
author game@henri.cr.ie.u-ryukyu.ac.jp
date Fri, 18 Sep 2009 18:28:56 +0900
parents 5c194c71eca8
children a4f690f44842
line wrap: on
line source

#include "viewer.h"

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();
}