AtlatestRepositorysigil-graphics
1;;; test-render-target — smoke test for sigil-graphics render targets
2;;;
3;;; Renders a coloured quad into a 256×256 offscreen render target, then
4;;; composites the target back onto the swap chain at four different
5;;; positions and sizes. Quits after ~4 seconds or when escape is pressed.
6
7(package
8 name: "test-render-target"
9 version: "0.0.1"
10 sigil: "^0.15"
11 description: "Smoke test: offscreen render target end-to-end"
12 license: "BSD-3-Clause"
13 authors: (list "David Wilson <[email protected]>")
15 entry: '(test-render-target main)
16 bundle-name: "test-render-target"
18 configs: (list
19 (config
20 name: 'dev
21 output-dir: "build/dev"
22 debug?: #t
23 optimize: 0
24 bundle?: #t))
26 dependencies: (list
27 (from-git url: "codeberg:sigil/sigil-app" version: "^0.8.2")
28 (from-git url: "codeberg:sigil/sigil-graphics" version: "^0.9.3")))