Mercurial > hg > Game > Cerium
annotate TaskManager/Test/test_render/ChangeLog @ 178:4efb799779d7 draft
add makeTapestry in SceneGraph.cpp
author | gongo@localhost.localdomain |
---|---|
date | Tue, 16 Dec 2008 17:45:28 +0900 |
parents | deb02b0e6291 |
children | 6e62f8cfbfe3 |
rev | line source |
---|---|
176 | 1 2008-12-16 Wataru MIYAGUNI <gongo@cr.ie.u-ryukyu.ac.jp> |
2 | |
178
4efb799779d7
add makeTapestry in SceneGraph.cpp
gongo@localhost.localdomain
parents:
177
diff
changeset
|
3 * SceneGraph.cpp (makeTapestry): add |
4efb799779d7
add makeTapestry in SceneGraph.cpp
gongo@localhost.localdomain
parents:
177
diff
changeset
|
4 SceneGraph::get_data にあったけど、ごちゃごちゃしてたので |
4efb799779d7
add makeTapestry in SceneGraph.cpp
gongo@localhost.localdomain
parents:
177
diff
changeset
|
5 関数として生成 |
4efb799779d7
add makeTapestry in SceneGraph.cpp
gongo@localhost.localdomain
parents:
177
diff
changeset
|
6 |
177 | 7 * viewer.cpp (Viewer::run_init, Viewer::run_draw): fix |
8 * spe/DrawSpan.cpp (DrawSpan::zRow_init): delete | |
9 | |
10 Z Buffering に使う zRow は DrawSpan で毎回生成、初期化するのではなく、 | |
11 PPE で生成、初期化を行っておき、DrawSpan に add_inData で | |
12 DMA で渡すという方法に変更。速度的にはほんのちょっとしか(ry | |
13 | |
176 | 14 * spe/CreateSpan.cpp (CreateSpan::half_triangle): fix |
15 getScale に渡す tex_width,tex_height を修正。 | |
16 比較にそのまま tex_width, tex_height を使うと、 | |
17 Span が持つテクスチャが全体の一部分だったとしても | |
18 比較結果で縮小が行われてしまうため。 | |
19 | |
20 - 例 | |
21 span->length_x = 32; | |
22 tex_width = 128; | |
23 tex_x_len = (span->tex_x2 - span->tex_x1) = (0.5 - 0.3) = 0.2; | |
24 | |
25 今までの処理だと、span->length_x < tex_width の結果により | |
26 縮小されたテクスチャを使うことになる。 | |
27 しかし、実際に Span が使う Texture の長さは | |
28 | |
29 tex_width*tex_x_len = 24 | |
30 | |
31 なので、縮小を行う必要は無い | |
32 | |
33 | |
175 | 34 2008-12-12 Wataru MIYAGUNI <gongo@cr.ie.u-ryukyu.ac.jp> |
35 | |
176 | 36 * SceneGraph.cpp (SceneGraph::get_data): Todo |
37 テクスチャの縦横が 8 の倍数でなければ弾く処理を入れる。 | |
38 | |
175 | 39 * spe/DrawSpan.cpp (DrawSpan::run): Todo |
40 テクスチャの座標計算と、そこから取得できる Tile の DMA を | |
41 一スレッドで処理しているのでそれを分けないといけない | |
42 | |
43 * spe/CreateSpan.cpp (getTapestry): Add | |
44 (getScale): Add | |
45 | |
46 * memo: 雑記 | |
47 ようやくこいつに ChangeLog を加えました。 | |
48 なんか emacs で「C-x 4 a」とかすると、ChangeLog の entry が | |
49 加えれられるんだけど、上の階層のを探しにいくので、TaskManager/ のに | |
50 加えようとしてたわけさ。まあそういう仕様なんだけど。 | |
51 で、だからといって不可能ってわけじゃないから書けばよかったんだが。 | |
52 | |
53 要するに、これからはちゃんと書いていこうと思います。 |