AtlatestRepositorysigil-graphics
sigil-graphics / tree / test / test-postprocess-demopackage.sgl
1
;;; test-postprocess-demo — end-to-end bloom postprocess demo2
;;;3
;;; Renders a few moving bright shapes into an offscreen render target,4
;;; then composites the target onto the swap chain through a one-pass5
;;; bloom shader. Validates the full sigil-graphics post-processing6
;;; surface end-to-end (RT + custom shader + auto-uniforms). Quits7
;;; after ~5 seconds or when escape is pressed.9
(package10
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: (list21
(config22
name: 'dev23
output-dir: "build/dev"24
debug?: #t25
optimize: 026
bundle?: #t))28
dependencies: (list29
(from-git url: "codeberg:sigil/sigil-app" version: "^0.8.2")30
(from-git url: "codeberg:sigil/sigil-graphics" version: "^0.9.3")))