Doc fixes
This commit is contained in:
parent
e9be2a62d5
commit
0a14409aea
@ -32,7 +32,7 @@ struct gmio_stringstream
|
|||||||
/*! Stream to iterate over */
|
/*! Stream to iterate over */
|
||||||
struct gmio_stream stream;
|
struct gmio_stream stream;
|
||||||
|
|
||||||
/*! Holds contents read from stream */
|
/*! Holds contents chunk read from stream */
|
||||||
struct gmio_string strbuff;
|
struct gmio_string strbuff;
|
||||||
|
|
||||||
/*! Position after last char in strbuff */
|
/*! Position after last char in strbuff */
|
||||||
@ -44,7 +44,8 @@ struct gmio_stringstream
|
|||||||
/*! Data to be passed to callback func_stream_read */
|
/*! Data to be passed to callback func_stream_read */
|
||||||
void* cookie;
|
void* cookie;
|
||||||
|
|
||||||
/*! Pointer on a function called each time next contents has to be read */
|
/*! Pointer on a function called each time next contents chunk has to be
|
||||||
|
* read */
|
||||||
size_t (*func_stream_read)(
|
size_t (*func_stream_read)(
|
||||||
void* cookie, struct gmio_stream* stream, char* ptr, size_t len);
|
void* cookie, struct gmio_stream* stream, char* ptr, size_t len);
|
||||||
};
|
};
|
||||||
|
@ -49,6 +49,8 @@ GMIO_C_LINKAGE_BEGIN
|
|||||||
* It will try to read 512 bytes from \p stream into a buffer and then
|
* It will try to read 512 bytes from \p stream into a buffer and then
|
||||||
* analyses this data to guess the format.
|
* analyses this data to guess the format.
|
||||||
*
|
*
|
||||||
|
* The position of the input stream is preserved.
|
||||||
|
*
|
||||||
* \retval GMIO_STL_FORMAT_UNKNOWN in case of error.
|
* \retval GMIO_STL_FORMAT_UNKNOWN in case of error.
|
||||||
*/
|
*/
|
||||||
GMIO_LIBSTL_EXPORT
|
GMIO_LIBSTL_EXPORT
|
||||||
|
@ -34,8 +34,7 @@ struct gmio_stl_coords
|
|||||||
float z;
|
float z;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*! STL mesh triangle defined three geometric vertices and an
|
/*! STL mesh triangle defined three vertices and a normal(orientation) */
|
||||||
* orientation(normal) */
|
|
||||||
struct gmio_stl_triangle
|
struct gmio_stl_triangle
|
||||||
{
|
{
|
||||||
struct gmio_stl_coords n; /*!< Normal vector */
|
struct gmio_stl_coords n; /*!< Normal vector */
|
||||||
|
Loading…
Reference in New Issue
Block a user