view old/simple_render/spe/CreatePolygonPack.h @ 507:735f76483bb2

Reorganization..
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 12 Oct 2009 09:39:35 +0900
parents TaskManager/Test/simple_render/spe/CreatePolygonPack.h@3e331f7576a1
children
line wrap: on
line source

#ifndef INCLUDED_TASK_CREATE_POLYGON_PACK
#define INCLUDED_TASK_CREATE_POLYGON_PACK

#ifndef INCLUDED_SCHED_TASK
#  include "SchedTask.h"
#endif

class CreatePolygonPack : public SchedTask {
public:
    CreatePolygonPack(TaskListPtr _tlist, TaskPtr _task,
		      void* _rbuf, void* _wbuf, DmaManager* _con)
	:SchedTask(_tlist, _task, _rbuf, _wbuf, _con) {}
    void read(void);
    int run(void *readbuf, void *writebuf);
    void write(void);
    
private:
    void rotate(float *xyz, float *matrix);
    inline float sum_across_float4(vector float v);
};

#endif