view 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
line wrap: on
line source

#include <stdio.h>
#include "SchedTask.h"
#include "Hello.h"
#include "Func.h"

/* ɬ */
SchedDefineTask(Hello);

int
Hello::run(void *rbuf, void *wbuf)
{
    int id = get_param(0);

    printf("Hello, World!! post_func output %d\n", id);

    return 0;
}