view TaskManager/Test/test_render/task/DrawBack.h @ 403:8611780d479f

clean up and add more info on task_list
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 23 Sep 2009 12:04:29 +0900
parents 25c820b6060e
children 44c0bce54dcf
line wrap: on
line source

#ifndef INCLUDED_TASK_DRAW_BACK
#define INCLUDED_TASK_DRAW_BACK

#include "SchedTask.h"

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

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

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

#endif