view Renderer/test_render/spe/DrawBack.h @ 422:976ca6f00d65

comment
author game@henri.cr.ie.u-ryukyu.ac.jp
date Thu, 24 Sep 2009 12:35:32 +0900
parents 55ea4465b1a2
children
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