diff Renderer/test_render/task/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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Renderer/test_render/task/DrawBack.h	Fri Jun 05 16:49:12 2009 +0900
@@ -0,0 +1,17 @@
+#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