0
我想繪製儘可能多的金字塔來填補空間。我可以畫一個金字塔,改變它的顏色等。但是,現在,我想繪製很多可以填滿屏幕的金字塔。我想要使用一組頂點和索引。 頂點和索引與顏色信息如下:繪圖opengl中的多個相同的金字塔ES 2.0
const Vertex Vertices [] = {
{{-1, -1, -1}, {1, 0, 0, 1}},
{{1, -1, -1}, {1, 0, 0, 1}},
{{1, -1, 1}, {1, 0, 0, 1}},
{{-1, -1, 1}, {1, 0, 0, 1}},
{{0, 1, 0}, {1, 0, 0, 1}}
};
const GLubyte Indices[] = {
2, 4, 3,
1, 4, 2,
0, 4, 1,
4, 0, 3
};
任何人可以幫助我的代碼,我知道我做了一些錯誤。
http://nukecode.blogspot.de/2011/工作07 /幾何instancig換iphone-wip.html – 2013-05-07 13:46:30