annotate example/post_function/ppe/Hello.cc @ 130:40978d4b608a
draft
テクスチャの大きさを128x128以外にも使えるように。(若干バグ有り)
author |
gongo@gendarme.cr.ie.u-ryukyu.ac.jp |
date |
Tue, 25 Nov 2008 17:19:43 +0900 |
parents |
028ffc9c0375 |
children |
768452fab95e |
rev |
line source |
109
|
1 #include <stdio.h>
|
|
2 #include "SchedTask.h"
|
|
3 #include "Hello.h"
|
|
4 #include "Func.h"
|
|
5
|
|
6 /* ɬ */
|
|
7 SchedDefineTask(Hello);
|
|
8
|
|
9 int
|
|
10 Hello::run(void *rbuf, void *wbuf)
|
|
11 {
|
|
12 int id = get_param(0);
|
|
13
|
|
14 printf("Hello, World!! post_func output %d\n", id);
|
|
15
|
|
16 return 0;
|
|
17 }
|