gpt4 book ai didi

ios - 如何用 glkit、opengl es2 绘制数千个正方形?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:50:13 26 4
gpt4 key购买 nike

我正在尝试在屏幕上绘制多达 200,000 个正方形。或者基本上有很多方 block 。我相信我只是在调用许多绘制调用,这会削弱应用程序的性能。方 block 只会在我按下按钮时更新,所以我不必每一帧都更新它。

这是我现在的代码:

- (void)glkViewControllerUpdate:(GLKViewController *)controller
{

//static float transY = 0.0f;
//float y = sinf(transY)/2.0f;
//transY += 0.175f;

GLKMatrix4 modelview = GLKMatrix4MakeTranslation(0, 0, -5.f);
effect.transform.modelviewMatrix = modelview;

//GLfloat ratio = self.view.bounds.size.width/self.view.bounds.size.height;
GLKMatrix4 projection = GLKMatrix4MakeOrtho(0, 768, 1024, 0, 0.1f, 20.0f);
effect.transform.projectionMatrix = projection;
_isOpenGLViewReady = YES;
}

- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect
{
if(_model.updateView && _isOpenGLViewReady)
{

glClear(GL_COLOR_BUFFER_BIT);
[effect prepareToDraw];
int pixelSize = _model.pixelSize;
if(!_model.isReady)
return;
//NSLog(@"UPDATING: %d, %d", _model.rows, _model.columns);
for(int i = 0; i < _model.rows; i++)
{
for(int ii = 0; ii < _model.columns; ii++)
{
ColorModel *color = [_model getColorAtRow:i andColumn:ii];
CGRect rect = CGRectMake(ii * pixelSize, i*pixelSize, pixelSize, pixelSize);
//[self drawRectWithRect:rect withColor:c];
GLubyte squareColors[] = {
color.red, color.green, color.blue, 255,
color.red, color.green, color.blue, 255,
color.red, color.green, color.blue, 255,
color.red, color.green, color.blue, 255
};

// NSLog(@"Drawing color with red: %d", color.red);


int xVal = rect.origin.x;
int yVal = rect.origin.y;
int width = rect.size.width;
int height = rect.size.height;
GLfloat squareVertices[] = {
xVal, yVal, 1,
xVal + width, yVal, 1,
xVal, yVal + height, 1,
xVal + width, yVal + height, 1
};

glEnableVertexAttribArray(GLKVertexAttribPosition);
glEnableVertexAttribArray(GLKVertexAttribColor);

glVertexAttribPointer(GLKVertexAttribPosition, 3, GL_FLOAT, GL_FALSE, 0, squareVertices);
glVertexAttribPointer(GLKVertexAttribColor, 4, GL_UNSIGNED_BYTE, GL_TRUE, 0, squareColors);

glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);

glDisableVertexAttribArray(GLKVertexAttribPosition);
glDisableVertexAttribArray(GLKVertexAttribColor);


}
}
_model.updateView = YES;
}

最佳答案

首先,你真的需要画20万个正方形吗?您的视口(viewport)总共只有 786,000 个像素。您可以减少绘制对象的数量,而不会显着影响场景的整体质量。

也就是说,如果这些是较小的正方形,您可以将它们绘制为像素大小足以覆盖正方形区域的点。这需要将顶点着色器中的 gl_PointSize 设置为适当的像素宽度。然后您可以生成您的坐标并将它们全部发送以作为 GL_POINTS 立即绘制。这应该消除三角形的额外几何体和您在此处使用的各个绘制调用的开销。

即使您不使用点,也最好先计算您需要的所有三角形几何体,然后在一次绘制调用中发送所有这些几何体。这将显着减少您的 OpenGL ES API 调用开销。

您可以研究的另一件事是使用顶点缓冲区对象来存储此几何体。如果几何图形是静态的,您可以避免在每个绘制的帧上发送它,或者只更新其中发生变化的部分。即使您只是更改每一帧的数据,我相信将 VBO 用于动态几何在现代 iOS 设备上具有性能优势。

关于ios - 如何用 glkit、opengl es2 绘制数千个正方形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11454859/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com