mirror of
https://github.com/open-goal/jak-project
synced 2026-05-23 23:05:43 -04:00
3afd99a8e3
* temp * some decomp * tfrag dma setup * fix negative label bug * tfrag dma setup * tfrag, with pipeline tricks * kinda works * cleanup before trying some color stuff * time of day works * clean up * temp before render changes * a few more fixes * fix up tests * clean up * fix * fix alignment * one more cleanup
40 lines
980 B
Common Lisp
Vendored
Generated
40 lines
980 B
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition for method 4 of type drawable-inline-array
|
|
(defmethod length drawable-inline-array ((obj drawable-inline-array))
|
|
(-> obj length)
|
|
)
|
|
|
|
;; definition for method 9 of type drawable-inline-array
|
|
(defmethod login drawable-inline-array ((obj drawable-inline-array))
|
|
obj
|
|
)
|
|
|
|
;; definition for method 10 of type drawable-inline-array
|
|
;; INFO: Return type mismatch int vs none.
|
|
(defmethod
|
|
draw
|
|
drawable-inline-array
|
|
((obj drawable-inline-array) (arg0 drawable) (arg1 display-frame))
|
|
0
|
|
(none)
|
|
)
|
|
|
|
;; definition for method 14 of type drawable-inline-array
|
|
;; INFO: Return type mismatch int vs none.
|
|
(defmethod collect-stats drawable-inline-array ((obj drawable-inline-array))
|
|
0
|
|
(none)
|
|
)
|
|
|
|
;; definition for method 15 of type drawable-inline-array
|
|
;; INFO: Return type mismatch int vs none.
|
|
(defmethod
|
|
debug-draw
|
|
drawable-inline-array
|
|
((obj drawable-inline-array) (arg0 drawable) (arg1 display-frame))
|
|
0
|
|
(none)
|
|
)
|