comparison TaskManager/Test/test_render/task/DrawBack.h @ 467:44c0bce54dcf

fix all examples. test_render is not working now.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 01 Oct 2009 19:25:25 +0900
parents 8611780d479f
children
comparison
equal deleted inserted replaced
466:4fa8760e18c2 467:44c0bce54dcf
1 #ifndef INCLUDED_TASK_DRAW_BACK 1 #ifndef INCLUDED_TASK_DRAW_BACK
2 #define INCLUDED_TASK_DRAW_BACK 2 #define INCLUDED_TASK_DRAW_BACK
3 3
4 #include "SchedTask.h" 4 #include "SchedTask.h"
5 5
6 class DrawBack : public SchedTask {
7 public:
8 SchedConstructor(DrawBack);
9 6
10 int run(SchedTask *smanager, void *rbuf, void *wbuf); 7 static void linebuf_init(int *buf, int width, int rgb);
11
12 void linebuf_init(int *buf, int width, int rgb);
13 };
14 8
15 #endif 9 #endif