Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions cgltf.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
* this function returns `cgltf_result_success`, you have to call
* `cgltf_free()` on the created `cgltf_data*` variable.
* Note that contents of external files for buffers and images are not
* automatically loaded. You'll need to read these files yourself using
* URIs in the `cgltf_data` structure.
* automatically loaded because the file path can't be resolved.
* You'll need to read these files yourself using URIs in the
* `cgltf_data` structure.
*
* `cgltf_options` is the struct passed to `cgltf_parse()` to control
* parts of the parsing process. You can use it to force the file type
Expand Down Expand Up @@ -248,7 +249,7 @@ typedef struct cgltf_accessor
cgltf_type type;
cgltf_size offset;
cgltf_size count;
cgltf_size stride;
cgltf_size stride; /* calculated from cgltf_calc_size */
cgltf_buffer_view* buffer_view;
cgltf_bool has_min;
cgltf_float min[16];
Expand Down