Nodes implementation

This commit is contained in:
bloeys
2021-11-20 00:37:59 +04:00
parent c0a308b178
commit 5b5d091d56
3 changed files with 73 additions and 10 deletions

View File

@ -47,7 +47,7 @@ func main() {
for i := 0; i < len(ts); i++ {
t := ts[i]
fmt.Printf("T(%v): Name=%v, Hint=%v, Width=%v, Height=%v, NumTexels=%v", i, t.Filename, t.FormatHint, t.Width, t.Height, len(t.Data))
fmt.Printf("T(%v): Name=%v, Hint=%v, Width=%v, Height=%v, NumTexels=%v\n", i, t.Filename, t.FormatHint, t.Width, t.Height, len(t.Data))
if t.FormatHint == "png" {
decodePNG(t.Data)