bgfx_weld_vertices

Weld vertices.

  1. uint bgfx_weld_vertices(void* _output, const(bgfx_vertex_layout_t)* _layout, const(void)* _data, uint _num, bool _index32, float _epsilon)
    version(BindBgfx_Static)
    extern (C) @nogc nothrow
    uint
    bgfx_weld_vertices
    (
    void* _output
    ,,
    const(void)* _data
    ,
    uint _num
    ,,
    float _epsilon
    )
  2. da_bgfx_weld_vertices bgfx_weld_vertices;

Parameters

_output void*

Welded vertices remapping table. The size of buffer must be the same as number of vertices.

_layout const(bgfx_vertex_layout_t)*

Vertex stream layout.

_data const(void)*

Vertex stream.

_num uint

Number of vertices in vertex stream.

_index32 bool

Set to true if input indices are 32-bit.

_epsilon float

Error tolerance for vertex position comparison.

Meta