view TaskManager/Test/test_render/task/Load_Texture.h @ 354:81b25e5d5379

add example/get_segment and change spe/DrawSpan.cpp
author koba
date Wed, 15 Jul 2009 17:39:51 +0900
parents c8b868871dce
children eab18aa0c7f6
line wrap: on
line source

#ifndef INCLUDED_TASK_LOAD_TEXTURE
#define INCLUDED_TASK_LOAD_TEXTURE

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

#ifndef INCLUDED_TAPESTRY
#  include "Tapestry.h"
#endif

class LoadTexture : public SchedTask {
public:
    SchedConstructor(LoadTexture);

    int run(void *rbuf, void *wbuf);
};

#endif