Mercurial > hg > Members > kono > Cerium
view Renderer/Engine/spe/Load_Texture.cc @ 792:f2497e0ecd7c
add light switch
author | yutaka@localhost.localdomain |
---|---|
date | Sun, 02 May 2010 04:17:34 +0900 |
parents | 58cdb81f7f96 |
children | 496a8159e840 |
line wrap: on
line source
// #define DEBUG #include "error.h" #include <stdlib.h> #include <string.h> #include "Load_Texture.h" #include "texture.h" #include "Func.h" #include "global_alloc.h" SchedDefineTask(LoadTexture); /** * 「Load」といいながら、結局 DrawSpan で使う * Hash の準備だけなので、名前変えないとなー */ static int run(SchedTask *smanager, void *rbuf , void *wbuf) { __debug_spe("LoadTexture\n"); MemList *ml = smanager->createMemList(sizeof(uint32) * TEXTURE_BLOCK_SIZE, MAX_TILE); smanager->global_set(GLOBAL_TILE_LIST, (void *)ml); smanager->printf("%d\n",GLOBAL_TILE_LIST); return 0; }