Spec: Update some type info

- Addresses a comment in KhronosGroup/glTF#1114
This commit is contained in:
Frank Galligan 2017-10-20 11:19:53 -07:00
parent b5bdbe7c82
commit aafe1330a2

View File

@ -52,11 +52,14 @@ section is the header. The second section contains the metadata. This section is
### Draco Conventions ### Draco Conventions
* When bit reading is finished it will always pad the read to the current * f[n]
byte. * Unsigned n-bit number appearing directly in the bitstream. The bits are read from high to low order.
* When bit reading is finished it will always pad the read to the current byte.
* I16, UI16, I32, UI32, I64, UI64, and Float values must be little endian. * I16, UI16, I32, UI32, I64, UI64, and Float values must be little endian.
* Float is IEEE 754 Single precision.
* varUI32 and varUI64 types must be decoded by the LEB128() function. * varUI32 and varUI64 types must be decoded by the LEB128() function.
* varUI32 can represent values in the range 0 to 2^32 - 1. * varUI32 can represent values in the range 0 to 2^32 - 1.