ambiguous chars
This commit is contained in:
parent
26ff0f5835
commit
348e0c42a6
1 changed files with 2 additions and 2 deletions
|
|
@ -383,7 +383,7 @@ typedef struct SkrMesh {
|
||||||
* across meshes.
|
* across meshes.
|
||||||
*/
|
*/
|
||||||
typedef struct SkrModel {
|
typedef struct SkrModel {
|
||||||
SkrTexture* Textures; /*!< Array of textures used by model’s meshes. */
|
SkrTexture* Textures; /*!< Array of textures used by model's meshes. */
|
||||||
SkrMesh* Meshes; /*!< Array of meshes that compose the model. */
|
SkrMesh* Meshes; /*!< Array of meshes that compose the model. */
|
||||||
char* Path; /*!< Filesystem path of the model file. */
|
char* Path; /*!< Filesystem path of the model file. */
|
||||||
} SkrModel;
|
} SkrModel;
|
||||||
|
|
@ -402,7 +402,7 @@ typedef struct SkrModel {
|
||||||
* @param channels Output pointer to receive the number of color channels.
|
* @param channels Output pointer to receive the number of color channels.
|
||||||
*
|
*
|
||||||
* @return Pointer to raw pixel data (heap-allocated). The exact format (e.g.
|
* @return Pointer to raw pixel data (heap-allocated). The exact format (e.g.
|
||||||
* RGB vs. RGBA) is determined by the user’s implementation. Returns
|
* RGB vs. RGBA) is determined by the user's implementation. Returns
|
||||||
* NULL if the image could not be loaded.
|
* NULL if the image could not be loaded.
|
||||||
*
|
*
|
||||||
* @note The returned memory must be freed with ::skr_free_image.
|
* @note The returned memory must be freed with ::skr_free_image.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue