;;-*-Lisp-*- (in-package goal) ;; definition of type pris-mtx (deftype pris-mtx (structure) ((data float 32 :offset 0) (vector vector 8 :inline :offset 0) (t-mtx matrix :inline :offset 0) (n-mtx matrix3 :inline :offset 64) (scale vector :inline :offset 112) ) :method-count-assert 9 :size-assert #x80 :flag-assert #x900000080 ) ;; definition for method 3 of type pris-mtx (defmethod inspect pris-mtx ((obj pris-mtx)) (format #t "[~8x] ~A~%" obj 'pris-mtx) (format #t "~Tdata[32] @ #x~X~%" (-> obj t-mtx)) (format #t "~Tvector[8] @ #x~X~%" (-> obj t-mtx)) (format #t "~Tt-mtx: #~%" (-> obj t-mtx)) (format #t "~Tn-mtx: #~%" (-> obj n-mtx)) (format #t "~Tscale: #~%" (-> obj scale)) obj ) ;; definition of type generic-pris-mtx-save (deftype generic-pris-mtx-save (structure) ((loc-mtx pris-mtx :inline :offset-assert 0) (par-mtx pris-mtx :inline :offset-assert 128) (dif-mtx pris-mtx :inline :offset-assert 256) ) :method-count-assert 9 :size-assert #x180 :flag-assert #x900000180 ) ;; definition for method 3 of type generic-pris-mtx-save (defmethod inspect generic-pris-mtx-save ((obj generic-pris-mtx-save)) (format #t "[~8x] ~A~%" obj 'generic-pris-mtx-save) (format #t "~Tloc-mtx: #~%" (-> obj loc-mtx)) (format #t "~Tpar-mtx: #~%" (-> obj par-mtx)) (format #t "~Tdif-mtx: #~%" (-> obj dif-mtx)) obj ) ;; definition of type generic-constants (deftype generic-constants (structure) ((fog vector :inline :offset-assert 0) (adgif gs-gif-tag :inline :offset-assert 16) (giftag gs-gif-tag :inline :offset-assert 32) (hvdf-offset vector :inline :offset-assert 48) (hmge-scale vector :inline :offset-assert 64) (invh-scale vector :inline :offset-assert 80) (guard vector :inline :offset-assert 96) (adnop qword :inline :offset-assert 112) (flush qword :inline :offset-assert 128) (stores qword :inline :offset-assert 144) ) :method-count-assert 9 :size-assert #xa0 :flag-assert #x9000000a0 ) ;; definition for method 3 of type generic-constants (defmethod inspect generic-constants ((obj generic-constants)) (format #t "[~8x] ~A~%" obj 'generic-constants) (format #t "~Tfog: #~%" (-> obj fog)) (format #t "~Tadgif: #~%" (-> obj adgif)) (format #t "~Tgiftag: #~%" (-> obj giftag)) (format #t "~Thvdf-offset: #~%" (-> obj hvdf-offset)) (format #t "~Thmge-scale: #~%" (-> obj hmge-scale)) (format #t "~Tinvh-scale: #~%" (-> obj invh-scale)) (format #t "~Tguard: #~%" (-> obj guard)) (format #t "~Tadnop: #~%" (-> obj adnop)) (format #t "~Tflush: #~%" (-> obj flush)) (format #t "~Tstores: #~%" (-> obj stores)) obj ) ;; failed to figure out what this is: 0