cloudwu / bgfxidl

An IDL for bgfx
28 stars 5 forks source link

IDL docs. #20

Closed bkaradzic closed 5 years ago

bkaradzic commented 5 years ago

There is a bug with docs:

    /// Set index buffer for draw primitive.
    /// Set index buffer for draw primitive.
    /// Set index buffer for draw primitive.
    /// Set index buffer for draw primitive.
    ///
    /// @param[in] _handle Index buffer.
    /// @param[in] _firstIndex First index to render.
    /// @param[in] _numIndices Number of indices to render.
    ///
    /// @attention C99 equivalent is `bgfx_encoder_set_index_buffer`.
    ///
    void setIndexBuffer(
          IndexBufferHandle _handle
        , uint32_t _firstIndex
        , uint32_t _numIndices
        );
cloudwu commented 5 years ago

I need to find another way to add comments to functions.

cloudwu commented 5 years ago

Fixed