mirror of
https://github.com/open-goal/jak-project
synced 2026-06-22 00:56:36 -04:00
8a18072d97
* git: ignore vs build dir * cmake: ditch `clang-cl` on windows in favor of actual `clang` * build: suppress a significant number of warnings * build: adjust workflows and vendor nasm * docs: update docs to remove `clang-cl` mentions * tests: move jak1 reference tests into their own folder * tests: update offline tests to support multiple games * tests: some additional fixes and multi-game handling * tests: update reference tests
18 lines
683 B
Common Lisp
Vendored
Generated
18 lines
683 B
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; failed to figure out what this is:
|
|
(setup-font-texture! *texture-pool*)
|
|
|
|
;; definition for symbol *shadow-middot-texture*, type texture
|
|
(define *shadow-middot-texture* (lookup-texture-by-id (new 'static 'texture-id :index #x4 :page #x2)))
|
|
|
|
;; definition for symbol *generic-envmap-texture*, type texture
|
|
(define *generic-envmap-texture* (lookup-texture-by-id (the-as texture-id #x10000014)))
|
|
|
|
;; definition for symbol *ocean-texture*, type texture
|
|
(define *ocean-texture* (lookup-texture-by-id (new 'static 'texture-id :page #x370)))
|
|
|
|
;; failed to figure out what this is:
|
|
(set! (-> *texture-pool* allocate-func) texture-page-common-boot-allocate)
|