remove unused data from dc6 headers

This commit is contained in:
Alex Yatskov 2018-12-17 12:10:39 -08:00
parent c30edb6aca
commit 2bacae3c01

View File

@ -7,30 +7,24 @@ import (
"github.com/FooSoft/lazarus/streaming" "github.com/FooSoft/lazarus/streaming"
) )
const (
FlagIsSerialized = 1 << iota
FlagIsLoadedInHw
FlagIs24Bits
)
type fileHeader struct { type fileHeader struct {
Version uint32 Version uint32
Flags uint32 UnusedFlags uint32
Format uint32 UnusedFormat uint32
SkipColor uint32 UnusedSkipColor uint32
DirCount uint32 DirCount uint32
FramesPerDir uint32 FramesPerDir uint32
} }
type frameHeader struct { type frameHeader struct {
Flip uint32 Flip uint32
Width uint32 Width uint32
Height uint32 Height uint32
OffsetX uint32 OffsetX uint32
OffsetY uint32 OffsetY uint32
AllocSize uint32 UnusedAllocSize uint32
NextBlock uint32 UnusedNextBlock uint32
Length uint32 Length uint32
} }
type Direction struct { type Direction struct {