Adjustments, typo fixes, and clarifications in docs

This commit is contained in:
_ 2018-05-19 17:58:13 -07:00
parent b1897c34a9
commit 4477d2a239
2 changed files with 5 additions and 4 deletions

View File

@ -44,13 +44,13 @@ Functions
The pointer of Header can be NULL and will be set to point to The pointer of Header can be NULL and will be set to point to
a region in the buffer. a region in the buffer.
const char*, file data const char*, the buffer containing the whole geometry package.
Can not be NULL. Can not be NULL.
bool getmeshheader(struct MeshHeader**, bool getmeshheader(struct MeshHeader**,
unsigned int, unsigned int,
const char * const); const char * const);
Retrives the i-th MeshHeader in a buffer. Retrieves the i-th MeshHeader in a buffer.
input: input:
Pointer of a pointer to MeshHeader. Pointer of a pointer to MeshHeader.
@ -72,7 +72,7 @@ Functions
bool getbatch(struct Batch*, bool getbatch(struct Batch*,
unsigned int offset, unsigned int offset,
const char * const); const char * const);
Retrives the i-th Batch in a buffer. Retrieves the i-th Batch in a buffer.
input: input:
Pointer to a Batch. Pointer to a Batch.
@ -94,7 +94,7 @@ Functions
unsigned int, unsigned int,
const char*, const char*,
unsigned int); unsigned int);
Retrives the i-th Mesh in a buffer. Retrieves the i-th Mesh in a buffer.
input: input:
Pointer to mesh. Pointer to mesh.

View File

@ -31,6 +31,7 @@ Functions
a region in the buffer. a region in the buffer.
const char*, the buffer containing the whole texture pack file. const char*, the buffer containing the whole texture pack file.
Can not be NULL.
bool getbatchdesc(struct TextureBatchDescriptor**, bool getbatchdesc(struct TextureBatchDescriptor**,
unsigned int, unsigned int,