view TaskManager/Test/test_render/spe/DrawBack.h @ 354:81b25e5d5379

add example/get_segment and change spe/DrawSpan.cpp
author koba
date Wed, 15 Jul 2009 17:39:51 +0900
parents 5c194c71eca8
children 25c820b6060e
line wrap: on
line source

#ifndef INCLUDED_TASK_DRAW_BACK
#define INCLUDED_TASK_DRAW_BACK

#ifndef INCLUDED_SCHED_TASK
#  include "SchedTask.h"
#endif

class DrawBack : public SchedTask {
public:
    SchedConstructor(DrawBack);

    int run(void *rbuf, void *wbuf);

    void linebuf_init(int *buf, int width, int rgb);
};

#endif