From aafe1330a26010d71635012c13075ea3be5efc5c Mon Sep 17 00:00:00 2001 From: Frank Galligan Date: Fri, 20 Oct 2017 11:19:53 -0700 Subject: [PATCH] Spec: Update some type info - Addresses a comment in KhronosGroup/glTF#1114 --- docs/spec/04.00.00.conventions.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/spec/04.00.00.conventions.md b/docs/spec/04.00.00.conventions.md index 8179c58..b184650 100644 --- a/docs/spec/04.00.00.conventions.md +++ b/docs/spec/04.00.00.conventions.md @@ -52,11 +52,14 @@ section is the header. The second section contains the metadata. This section is ### Draco Conventions -* When bit reading is finished it will always pad the read to the current -byte. +* f[n] + * 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. +* Float is IEEE 754 Single precision. + * varUI32 and varUI64 types must be decoded by the LEB128() function. * varUI32 can represent values in the range 0 to 2^32 - 1.