jak-project/goal_src/jak2/engine/load/decomp-h.gc
water111 2bead6db97
[decompile] Joint (#1813)
* temp

* decompile joints

* fix merge
2022-08-28 16:38:58 -04:00

23 lines
605 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: decomp-h.gc
;; name in dgo: decomp-h
;; dgos: ENGINE, GAME
(define-extern unpack-comp-lzo (function object object none))
;; DECOMP BEGINS
;; temporary storage for visibility data decompression.
;; this is stored on the scratchpad.
(deftype decomp-work (structure)
((buffer0 uint8 2048 :offset-assert 0)
(buffer1 uint8 2048 :offset-assert 2048)
(indices uint16 2048 :offset-assert 4096)
(temp-indices uint16 2048 :offset-assert 8192)
)
:method-count-assert 9
:size-assert #x3000
:flag-assert #x900003000
)