comparison Renderer/test_render/spe/DrawSpanRenew.h @ 283:55ea4465b1a2

fix test_render
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 16:49:12 +0900
parents
children
comparison
equal deleted inserted replaced
282:ef061be0baff 283:55ea4465b1a2
1 #ifndef INCLUDED_TASK_DRAW_SPAN2
2 #define INCLUDED_TASK_DRAW_SPAN2
3
4 #ifndef INCLUDED_TASK_DRAW_SPAN
5 # include "DrawSpan.h"
6 #endif
7
8 class DrawSpanRenew : public DrawSpan {
9 public:
10 SchedConstructor(DrawSpanRenew);
11
12 DrawSpanArgPtr args;
13
14 int run(void *rbuf, void *wbuf);
15
16 // override
17 void reboot(SpanPackPtr spack, int cur_span_x);
18 };
19
20 #endif