539
|
1 // #define DEBUG
|
|
2 #include "error.h"
|
|
3
|
|
4 #include <stdlib.h>
|
|
5 #include <string.h>
|
|
6 #include "Load_Texture.h"
|
|
7 #include "texture.h"
|
|
8 #include "Func.h"
|
|
9 #include "global_alloc.h"
|
|
10
|
|
11 SchedDefineTask(LoadTexture);
|
|
12
|
|
13 /**
|
|
14 * 「Load」といいながら、結局 DrawSpan で使う
|
|
15 * Hash の準備だけなので、名前変えないとなー
|
|
16 */
|
|
17 static int
|
|
18 run(SchedTask *smanager, void *rbuf , void *wbuf)
|
|
19 {
|
|
20 __debug_spe("LoadTexture\n");
|
|
21
|
|
22 MemList *ml = smanager->createMemList(sizeof(uint32) * TEXTURE_BLOCK_SIZE, MAX_TILE);
|
|
23 smanager->global_set(GLOBAL_TILE_LIST, (void *)ml);
|
|
24
|
792
|
25 smanager->printf("%d\n",GLOBAL_TILE_LIST);
|
|
26
|
539
|
27 return 0;
|
|
28 }
|