Mercurial > hg > Members > kono > Cerium
view old/simple_render/SpuSpan.cpp @ 770:aed3d2501c38
property_chain is under construction
author | hiroki@henri.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Sun, 14 Feb 2010 04:18:38 +0900 |
parents | 735f76483bb2 |
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(); } } }