Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/test_render/spe/DrawBack.cpp @ 354:81b25e5d5379
add example/get_segment and change spe/DrawSpan.cpp
author | koba |
---|---|
date | Wed, 15 Jul 2009 17:39:51 +0900 |
parents | 5c194c71eca8 |
children | b89ba1d96fff |
line wrap: on
line source
// #define DEBUG #include "error.h" #include <stdlib.h> #include <string.h> #include "DrawBack.h" #include "viewer_types.h" SchedDefineTask(DrawBack); void DrawBack::linebuf_init(int *buf, int x, int rgb) { for (int i = 0; i < x; i++) { buf[i] = rgb; } } int DrawBack::run(void *rbuf, void *wbuf) { __debug_spe("DrawBack\n"); int rgb = smanager->get_param(0); int rangex_start = smanager->get_param(1); int rangex_end = smanager->get_param(2); int rangey = smanager->get_param(3); int rangex = rangex_end - rangex_start + 1; int *linebuf; for (int i = 0; i < rangey; i++) { linebuf = (int*)smanager->get_output(i); linebuf_init(linebuf, rangex, rgb); } return 0; }