Render queues and some test fixes

This commit is contained in:
BirDt_ 2026-04-02 14:16:25 +08:00
parent 12754b61a3
commit 213dfc67b6
4 changed files with 94 additions and 24 deletions

View file

@ -40,8 +40,8 @@
;; System addition and state modification
(check (length systems) => 0) ;; Systems list starts empty
(define sys-1 (make-system 'foo '3d 0 '() void))
(define sys-2 (make-system 'bar '2d 1 '() void))
(define sys-1 (make-system 'foo 0 '() void))
(define sys-2 (make-system 'bar 1 '() void))
(add-system sys-1)
(check (length systems) => 0) ;; Systems list is not immediately updated