Mercurial > hg > Members > kono > Cerium
view Renderer/Engine/task/DataUpdate.cc @ 985:e40dd2384357
fix light data update
author | root@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 01 Oct 2010 02:49:38 +0900 |
parents | 01b6d924a560 |
children |
line wrap: on
line source
#include <stdio.h> #include "DataUpdate.h" #include "Func.h" #include "string.h" /* これは必須 */ SchedDefineTask(DataUpdate); static int run(SchedTask *s, void *rbuf, void *wbuf) { long count = (long)s->get_param(0); long id_base = (long)s->get_param(1); for(int i=0; i<count; i++) { void *idata = (void*)s->get_input(rbuf, i); long size = (long)s->get_inputSize(i); void *global_data = (void*)s->global_get(id_base+i); memcpy(global_data,idata,size); } return 0; }