Mercurial > hg > Members > kono > Cerium
view old/simple_render/SpuSpan.cpp @ 959:66cddab9fa76
success alpha blending
author | koba <koba@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 04 Aug 2010 18:02:04 +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(); } } }