annotate Renderer/Engine/task/DataAllocate.cc @ 992:1b018a00cd17

task/DataAllocate.cc is changed for fifo64.
author tkaito
date Mon, 11 Oct 2010 19:42:28 +0900
parents 0b6f8c82625a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
751
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
1 #include <stdio.h>
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
2 #include <string.h>
915
ad10d6d39ca6 create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents: 823
diff changeset
3 #include "DataAllocate.h"
751
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
4 #include "Func.h"
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
5
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
6 /* これは必須 */
915
ad10d6d39ca6 create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents: 823
diff changeset
7 SchedDefineTask(DataAllocate);
751
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
8
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
9 static int
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
10 run(SchedTask *s, void *rbuf, void *wbuf)
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
11 {
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
12
992
1b018a00cd17 task/DataAllocate.cc is changed for fifo64.
tkaito
parents: 988
diff changeset
13 int count = (long)s->get_param(0);
986
ac437c3cf766 double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 915
diff changeset
14 for(int i=0;i<count;i++) {
ac437c3cf766 double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 915
diff changeset
15 void *idata = s->get_input(rbuf, i);
ac437c3cf766 double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 915
diff changeset
16 long size = (long)s->get_param(i*2+1);
ac437c3cf766 double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 915
diff changeset
17 long load_id = (long)s->get_param(i*2+2);
751
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
18
986
ac437c3cf766 double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 915
diff changeset
19 void *buff = s->global_alloc(load_id, size);
ac437c3cf766 double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 915
diff changeset
20 if (idata != NULL) {
ac437c3cf766 double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 915
diff changeset
21 memcpy(buff,idata,size);
ac437c3cf766 double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 915
diff changeset
22 }
ac437c3cf766 double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents: 915
diff changeset
23 }
751
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
24
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
25 return 0;
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
26 }
8b45afad160f add task/DataLoad task/DataUpdate
hiroki
parents:
diff changeset
27