Mercurial > hg > Game > Cerium
annotate Renderer/Engine/spe/UpdateKey.cc @ 539:3bc98f6d31ff draft
Reorganization..
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 12 Oct 2009 09:39:35 +0900 |
parents | |
children | eb6add789a24 |
rev | line source |
---|---|
539 | 1 #include "TaskManager.h" |
2 #include "KeyStat.h" | |
3 #include "UpdateKey.h" | |
4 #include "global_alloc.h" | |
5 | |
6 SchedDefineTask(UpdateKey); | |
7 | |
8 static int | |
9 run(SchedTask *smanager, void *rbuf, void *wbuf) | |
10 { | |
11 key_stat *key = (key_stat*)smanager->get_input(rbuf, 0); | |
12 key_stat *gdata = (key_stat*)smanager->global_get(KEY_STATUS); | |
13 memcpy(gdata, key, sizeof(key_stat)); | |
14 | |
15 return 0; | |
16 } |