Add support for reading uchar aka uint8_t
This commit is contained in:
parent
ced4af98a3
commit
15f00e6c92
@ -7,7 +7,7 @@ changed functionality, fixed bugs).
|
|||||||
|
|
||||||
- When logging that there is no reader implemented for a certain data-block type, the filepath of the blend file that contains that data-block is now included in the message ([#92885](https://projects.blender.org/blender/blender-asset-tracer/pulls/92885)).
|
- When logging that there is no reader implemented for a certain data-block type, the filepath of the blend file that contains that data-block is now included in the message ([#92885](https://projects.blender.org/blender/blender-asset-tracer/pulls/92885)).
|
||||||
- Add support for tracing OpenVDB files ([#92884](https://projects.blender.org/blender/blender-asset-tracer/pulls/92884)).
|
- Add support for tracing OpenVDB files ([#92884](https://projects.blender.org/blender/blender-asset-tracer/pulls/92884)).
|
||||||
|
- Add support for reading `uint8_t` (aka `uchar`, aka `unsigned char`).
|
||||||
|
|
||||||
# Version 1.17 (2023-12-14)
|
# Version 1.17 (2023-12-14)
|
||||||
|
|
||||||
|
|||||||
@ -255,6 +255,7 @@ class Struct:
|
|||||||
)
|
)
|
||||||
|
|
||||||
simple_readers = {
|
simple_readers = {
|
||||||
|
b"uchar": endian.read_char,
|
||||||
b"int": endian.read_int,
|
b"int": endian.read_int,
|
||||||
b"short": endian.read_short,
|
b"short": endian.read_short,
|
||||||
b"uint64_t": endian.read_ulong,
|
b"uint64_t": endian.read_ulong,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user