view Renderer/test_render/spe/DrawBack.h @ 283:55ea4465b1a2

fix test_render
author e065746@localhost.localdomain
date Fri, 05 Jun 2009 16:49:12 +0900
parents
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