view Renderer/Engine/task/DataAllocate.cc @ 986:ac437c3cf766 akira

double buffering of spanpack/polgonpack not yet worked.
author root@henri.cr.ie.u-ryukyu.ac.jp
date Fri, 01 Oct 2010 03:42:25 +0900
parents ad10d6d39ca6
children 0b6f8c82625a
line wrap: on
line source

#include <stdio.h>
#include <string.h>
#include "DataAllocate.h"
#include "Func.h"

/* これは必須 */
SchedDefineTask(DataAllocate);

static int
run(SchedTask *s, void *rbuf, void *wbuf)
{

  int count = (int)s->get_input(rbuf, 0);
  for(int i=0;i<count;i++) {
      void *idata = s->get_input(rbuf, i);
      long size = (long)s->get_param(i*2+1);
      long load_id = (long)s->get_param(i*2+2);

      void *buff = s->global_alloc(load_id, size);
      if (idata != NULL) {
	memcpy(buff,idata,size);
      }
  }

  return 0;
}