Mercurial > hg > Game > Cerium
view Renderer/Engine/spe/Property.cc @ 844:ba9e10f636eb draft
send_linda's bug fix, and replace wait_rd() to rd() on dynamic_load
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 02 Jun 2010 17:04:26 +0900 |
parents | d77fe7cfad19 |
children |
line wrap: on
line source
#include <stdio.h> #include <string.h> #include <math.h> #include "Property.h" #include "Func.h" #include "types.h" /* これは必須 */ SchedDefineTask(PropertyTask); typedef struct { float xyz[3]; const char *name; } Property, *PropertyPtr; static int run(SchedTask *s,void *rbuf, void *wbuf) { PropertyPtr property = (PropertyPtr)s->get_input(rbuf, 0); PropertyPtr update_property = (PropertyPtr)s->get_output(wbuf, 0); property->xyz[0] += 1.0f; property->xyz[1] += 1.0f; property->xyz[2] += 1.0f; memcpy((void*)update_property, (void*)property, sizeof(Property)); return 0; }