view TaskManager/Test/test_render/task/DrawBack.h @ 167:c8b868871dce

DrawSpan で使う Tile の Hash の扱いは class TileHash を生成する事に。
author gongo@localhost.localdomain
date Tue, 09 Dec 2008 15:07:31 +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