3

嗨,我正在编写 3D 建模应用程序,我想加快 OpenGL 中的渲染速度。目前我使用 glBegin/glEnd 这真的很慢而且不推荐使用。我需要绘制非常快速的平面阴影模型。我每帧都在 CPU 上生成法线。这是非常缓慢的。我尝试使用带有索引几何的 glDrawElements,但在法线生成中存在问题,因为法线是在顶点而不是三角形级别指定的。
另一个想法是在几何着色器中使用 GLSL 在 GPU 上生成法线。我为正常生成编写了这段代码:

#version 120 
#extension GL_EXT_geometry_shader4 : enable

vec3 NormalFromTriangleVertices(vec3 triangleVertices[3])
{
    // now is same as RedBook (OpenGL Programming Guide)
    vec3 u = triangleVertices[0] - triangleVertices[1];
    vec3 v = triangleVertices[1] - triangleVertices[2];
    return cross(v, u);
}

void main()
{
    // no change of position
    // computes normal from input triangle and front color for that triangle

    vec3 triangleVertices[3];
    vec3 computedNormal;

    vec3 normal, lightDir;
    vec4 diffuse;
    float NdotL;

    vec4 finalColor;

    for(int i = 0; i < gl_VerticesIn; i += 3)
    {
        for (int j = 0; j < 3; j++)
        {
            triangleVertices[j] = gl_PositionIn[i + j].xyz;
        }
        computedNormal = NormalFromTriangleVertices(triangleVertices);
        normal = normalize(gl_NormalMatrix * computedNormal);

        // hardcoded light direction 
        vec4 light = gl_ModelViewMatrix * vec4(0.0, 0.0, 1.0, 0.0);
        lightDir = normalize(light.xyz);

        NdotL = max(dot(normal, lightDir), 0.0);

        // hardcoded
        diffuse = vec4(0.5, 0.5, 0.9, 1.0);

        finalColor = NdotL * diffuse; 
        finalColor.a = 1.0; // final color ignores everything, except lighting

        for (int j = 0; j < 3; j++)
        { 
            gl_FrontColor = finalColor;
            gl_Position = gl_PositionIn[i + j];
            EmitVertex();
        }
    }
    EndPrimitive();
}

当我将着色器集成到我的应用程序中时,速度并没有提高。这比以前更糟。我是 GLSL 和着色器的新手,所以我不知道我做错了什么。我在配备 Geforce 9400M 的 MacBook 上尝试了此代码。

更清楚地说,这是我要替换的代码:

- (void)drawAsCommandsWithScale:(Vector3D)scale
{
    float frontDiffuse[4] = { 0.4, 0.4, 0.4, 1 };
    CGFloat components[4];
    [color getComponents:components];
    float backDiffuse[4];
    float selectedDiffuse[4] = { 1.0f, 0.0f, 0.0f, 1 };

    for (uint i = 0; i < 4; i++)
        backDiffuse[i] = components[i];

    glMaterialfv(GL_BACK, GL_DIFFUSE, backDiffuse);
    glMaterialfv(GL_FRONT, GL_DIFFUSE, frontDiffuse);

    Vector3D triangleVertices[3];

    float *lastDiffuse = frontDiffuse; 

    BOOL flip = scale.x < 0.0f || scale.y < 0.0f || scale.z < 0.0f;

    glBegin(GL_TRIANGLES);

    for (uint i = 0; i < triangles->size(); i++)
    {
        if (selectionMode == MeshSelectionModeTriangles) 
        {
            if (selected->at(i))
            {
                if (lastDiffuse == frontDiffuse)
                {
                    glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE, selectedDiffuse);
                    lastDiffuse = selectedDiffuse;
                }
            }
            else if (lastDiffuse == selectedDiffuse)
            {
                glMaterialfv(GL_BACK, GL_DIFFUSE, backDiffuse);
                glMaterialfv(GL_FRONT, GL_DIFFUSE, frontDiffuse);
                lastDiffuse = frontDiffuse;
            }
        }    
        Triangle currentTriangle = [self triangleAtIndex:i];
        if (flip)
            currentTriangle = FlipTriangle(currentTriangle);

        [self getTriangleVertices:triangleVertices fromTriangle:currentTriangle];
        for (uint j = 0; j < 3; j++)
        {
            for (uint k = 0; k < 3; k++)
            {
                triangleVertices[j][k] *= scale[k];
            }
        }
        Vector3D n = NormalFromTriangleVertices(triangleVertices);
        n.Normalize();
        for (uint j = 0; j < 3; j++)
        {
            glNormal3f(n.x, n.y, n.z);
            glVertex3f(triangleVertices[j].x, triangleVertices[j].y, triangleVertices[j].z);            
        }
    }

    glEnd();    
}

如您所见,它的效率非常低,但是可以工作。triangles是数组中的索引vertices数组。

我尝试使用此代码进行绘图,但我不能只有一个索引数组而不是两个(一个用于顶点,第二个用于法线)。

glEnableClientState(GL_VERTEX_ARRAY);

uint *trianglePtr = (uint *)(&(*triangles)[0]); 
float *vertexPtr = (float *)(&(*vertices)[0]);

glVertexPointer(3, GL_FLOAT, 0, vertexPtr);
glDrawElements(GL_TRIANGLES, triangles->size() * 3, GL_UNSIGNED_INT, trianglePtr);
glDisableClientState(GL_VERTEX_ARRAY);

现在,当某些顶点由不同的三角形共享时,如何指定指向法线的指针,因此它们的法线不同?

4

3 回答 3

2

所以我终于设法提高渲染速度。我只在顶点或三角形发生变化时重新计算 CPU 上的法线,这仅在一个网格而不是整个场景中工作时才会发生。这不是我想要的解决方案,但在现实世界中它比以前的方法更好。
我将整个几何图形缓存到单独的法线和顶点数组中,不能使用索引绘图,因为我想要平面阴影(与 3ds max 中的平滑组类似的问题)。
我使用简单glDrawArrays的和用于照明顶点着色器,这是因为我希望在三角形模式下为选定的三角形使用不同的颜色,为未选择的三角形使用另一种颜色,并且没有材料数组(我没有找到任何材料)。

于 2009-12-27T14:49:22.263 回答
1

您通常不会在每帧计算法线,只有在几何形状发生变化时。并且要为每个三角形设置一个法线,只需为三角形中的每个顶点设置相同的法线即可。这确实意味着您不能在网格中的相邻三角形之间共享顶点,但这在这种事情中并不罕见。

于 2009-12-26T21:57:05.183 回答
1

你的问题让我想起了这篇没有 Normals 的 Normals博客文章。

于 2009-12-26T22:18:35.560 回答