Skip to content

Commit

Permalink
Fix typo: bufferView.byteLength
Browse files Browse the repository at this point in the history
  • Loading branch information
emackey committed Nov 30, 2023
1 parent 3b7a961 commit f0fc0c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specification/2.0/Specification.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ Each accessor **MUST** fit its `bufferView`, i.e.,
accessor.byteOffset + EFFECTIVE_BYTE_STRIDE * (accessor.count - 1) + SIZE_OF_COMPONENT * NUMBER_OF_COMPONENTS
----

**MUST** be less than or equal to `bufferView.length`.
**MUST** be less than or equal to `bufferView.byteLength`.

For performance and compatibility reasons, each element of a vertex attribute **MUST** be aligned to 4-byte boundaries inside a `bufferView` (i.e., `accessor.byteOffset` and `bufferView.byteStride` **MUST** be multiples of 4).

Expand Down

0 comments on commit f0fc0c7

Please sign in to comment.