view Renderer/Engine/task/RunMove.cc @ 914:05696567d1d2

0 is filled on the spe side.
author yutaka@localhost.localdomain
date Thu, 22 Jul 2010 00:23:37 +0900
parents 01b6d924a560
children
line wrap: on
line source

#include <stdlib.h>
#include <string.h>
#include "RunMove.h"
#include "SgChange.h"

SchedDefineTask(RunMove);

static int
run(SchedTask *smanager, void *rbuf , void *wbuf)
{
    //SceneGraphRoot *sgroot = (SceneGraphRoot *)smanager->get_param(0);    
    SgChange *sgchange = (SgChange *)smanager->get_param(0);
    long width  = (long)smanager->get_param(1);
    long height = (long)smanager->get_param(2);
    SceneGraphRoot *sgroot = sgchange->sgroot_A;
    sgroot->updateControllerState();
    sgroot->oneExecute(width, height);
    sgchange->viewer->light_xyz_stock = sgroot->getLightVector();

    return 0;
}