Mercurial > hg > Members > kono > Cerium
comparison TaskManager/Test/test_render/SpanPack.h @ 126:7635f223fc7d
fix RGBA mask (bgr -> rgba)
author | gongo@charles.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Tue, 25 Nov 2008 11:37:57 +0900 |
parents | 5c194c71eca8 |
children | fc314f28b66e |
comparison
equal
deleted
inserted
replaced
125:c3d8216ca79c | 126:7635f223fc7d |
---|---|
20 SpanPack *next; // 4 | 20 SpanPack *next; // 4 |
21 | 21 |
22 int pad[3]; // 12 | 22 int pad[3]; // 12 |
23 | 23 |
24 void init(int ytop) { | 24 void init(int ytop) { |
25 this->info.size = 0; | |
26 this->info.y_top = ytop; | |
27 this->next = NULL; | |
28 } | |
29 | |
30 void reinit(int ytop) { | |
25 SpanPack* top = this; | 31 SpanPack* top = this; |
26 SpanPack* p; | 32 SpanPack* p; |
27 SpanPack* p1; | 33 SpanPack* p1; |
28 | 34 |
29 p = top->next; | 35 p = top->next; |