mirror of
https://github.com/open-goal/jak-project
synced 2026-09-03 02:14:07 -04:00
19 lines
372 B
Common Lisp
19 lines
372 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: decomp-h.gc
|
|
;; name in dgo: decomp-h
|
|
;; dgos: GAME
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
(deftype decomp-work (structure)
|
|
"Temporary storage for visibility data decompression.
|
|
This is stored on the scratchpad."
|
|
((buffer0 uint8 2048)
|
|
(buffer1 uint8 2048)
|
|
(indices uint16 2048)
|
|
(temp-indices uint16 2048)
|
|
)
|
|
)
|