用Apple的Metal渲染第二个顶点缓冲区

时间:2016-01-29 13:26:07

标签: rendering gpu memory-alignment gpu-programming metal

我遇到了一个问题,我想要渲染两个三角形(每个三角形存储在分开的缓冲区中),Metal API拒绝尝试渲染第二个顶点缓冲区。我怀疑这是关于对齐的。断言消息是失败断言`(长度 - 偏移量)(0)必须是> =在索引0处的缓冲区绑定时对于vertexArray [0]。这里代码:

顶点和常量结构:

struct VertexPositionColor
{
    VertexPositionColor(const simd::float4& pos,
                        const simd::float4& col)
    : position(pos), color(col) {}

    simd::float4 position;
    simd::float4 color;
};
typedef struct
{
    simd::float4x4 model_view_projection;
} constants_t;

这是我存储和添加新缓冲区的方式(该函数被调用两次):

NSMutableArray<id<MTLBuffer>> *_vertexBuffer;
NSMutableArray<id<MTLBuffer>> *_uniformBuffer;
NSMutableArray<id<MTLBuffer>> *_indexBuffer;

- (void)linkGeometry:(metalGeometry*)geometry
{
    [_vertexBuffer addObject:[_device newBufferWithBytes:[geometry vertices]
                                         length:[geometry vertices_length]
                                        options:0]
     ];

    [_uniformBuffer addObject:[_device newBufferWithLength:[geometry uniforms_length]
                                          options:0]
     ];

    RCB::constants_t* guts = (RCB::constants_t*) [[_uniformBuffer lastObject] contents];
    guts->model_view_projection = [geometry uniforms]->model_view_projection;

    [geometry linkTransformation:(RCB::constants_t *)[[_uniformBuffer lastObject] contents]];
}

接下来是断言失败的行(最后一行):

[render setVertexBuffer:_vertexBuffer[0] offset:0 atIndex:0];
[render setVertexBuffer:_uniformBuffer[0] offset:0 atIndex:1];
[render drawPrimitives:MTLPrimitiveTypeTriangle vertexStart:0 vertexCount:3];

[render setVertexBuffer:_vertexBuffer[1] offset:3*sizeof(VertexPositionColor) atIndex:0];
[render setVertexBuffer:_uniformBuffer[1] offset:sizeof(constants_t) atIndex:1];
[render drawPrimitives:MTLPrimitiveTypeTriangle vertexStart:3 vertexCount:3];

因此,我们只使偏移量等于前一个缓冲区占用的内存大小。请注意,如果我们对最后一行进行注释,则第一个三角形将按预期呈现。

有谁能理解我错过了什么?我真的很感激。

此致

1 个答案:

答案 0 :(得分:4)

offset参数表示提供的缓冲区中数据开头的偏移量。如果为每个对象使用单独的缓冲区,则偏移量应为0.