AtlatestRepositorysigil-graphics
1;;; test-postprocess-demo — end-to-end bloom postprocess demo
2;;;
3;;; Renders a few moving bright shapes into an offscreen render target,
4;;; then composites the target onto the swap chain through a one-pass
5;;; bloom shader. Validates the full sigil-graphics post-processing
6;;; surface end-to-end (RT + custom shader + auto-uniforms). Quits
7;;; after ~5 seconds or when escape is pressed.
8
9(package
10 name: "test-postprocess-demo"
11 version: "0.0.1"
12 sigil: "^0.15"
13 description: "End-to-end bloom postprocess demo on sigil-graphics"
14 license: "BSD-3-Clause"
15 authors: (list "David Wilson <[email protected]>")
17 entry: '(test-postprocess-demo main)
18 bundle-name: "test-postprocess-demo"
20 configs: (list
21 (config
22 name: 'dev
23 output-dir: "build/dev"
24 debug?: #t
25 optimize: 0
26 bundle?: #t))
28 dependencies: (list
29 (from-git url: "codeberg:sigil/sigil-app" version: "^0.8.2")
30 (from-git url: "codeberg:sigil/sigil-graphics" version: "^0.9.3")))