Files
Odin/core
Jeroen van Rijn e036a321a0 Replace core:image's sidecar with explicit metadata_ptr and metadata_type.
To unpack, use:
```odin

v: ^png.Info;

if img.metadata_ptr != nil && img.metadata_type == png.Info {
	v = (^png.Info)(img.metadata_ptr);
	...
}
```
2021-06-21 16:32:42 +02:00
..
2021-01-09 23:43:34 +00:00
2021-04-01 10:06:00 +01:00
2021-06-18 15:42:04 +02:00
2021-05-12 23:26:21 +01:00
2021-03-13 21:18:07 +00:00
2021-06-16 12:12:24 +01:00
2021-06-20 17:33:39 +02:00