Mercurial > hg > Game > Cerium
view TaskManager/Test/simple_render/SpuSpan.cpp @ 115:d9ea79aac04f draft
fix Makefile
author | gongo@charles.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Thu, 13 Nov 2008 10:46:36 +0900 |
parents | 028ffc9c0375 |
children |
line wrap: on
line source
//#include <stdio.h> #include "SpuSpan.h" void SpuSpan::init(void) { SpanPackList *spackList; SpanPack *spack; //SpanPack *q = NULL, *q1 = NULL SpanPack *q = 0; SpanPack *q1 = 0; for (int i = 0; i < SPE_NUM_MAX; i++) { spackList = &this->list[i]; spackList->length = 0; for (int j = 0; j < MAX_SIZE_SPAN_PACK; j++) { spack = &spackList->packs[j]; q = spack->next; while (q) { q1 = q->next; delete(q); q = q1; } spack->init(); } } }