summaryrefslogtreecommitdiff
path: root/chickadee
Commit message (Expand)AuthorAgeFilesLines
* Add gl-get-tex-image binding.David Thompson2023-03-251-0/+6
* Add file-extension, absolute-file-name, and tmpdir utility procedures.David Thompson2023-03-251-1/+17
* Add libpng bindings for writing PNG files.David Thompson2023-03-251-3/+157
* image: png: Fix completely broken libpng warning/error printing.David Thompson2023-01-041-8/+8
* graphics: 9-patch: Fix rendering of texture regions.David Thompson2022-12-271-2/+2
* graphics: text: Add #:smooth? keyword argument to make-texture.David Thompson2022-12-271-3/+9
* audio: Fix bug where #:audio argument is ignored in make-source.David Thompson2022-11-271-0/+2
* cli: bundle: Remove FLAC from shared library list.David Thompson2022-10-271-1/+0
* cli: bundle: Fix list of bundled libraries.David Thompson2022-10-261-5/+1
* Allow for changing the default clear color in run-game procedure.David Thompson2022-10-251-1/+10
* math: rect: Fix vec2-clamp-to-rect implementation.David Thompson2022-10-241-1/+3
* math: matrix: Add copy procedures.David Thompson2022-10-241-9/+28
* graphics: text: Fix page size calculation.David Thompson2022-10-181-3/+11
* graphics: color: Define custom color printer.David Thompson2022-10-181-0/+8
* Rename (chickadee graphics font) to (chickadee graphics text).David Thompson2022-10-172-2/+2
* graphics: font: Add compositor and page layers to rendering pipeline.David Thompson2022-10-171-123/+309
* cli: play: Wrap line over 80 characters.David Thompson2022-10-151-1/+2
* script: Add join procedure.David Thompson2022-10-111-6/+28
* scripting: Fix some indenting.David Thompson2022-10-111-3/+3
* image: png: Add support for paletted images via auto-expansion.David Thompson2022-10-091-3/+5
* async-repl: Remove 'pk' that was accidentally left in.David Thompson2022-10-091-1/+0
* play: Slightly improve rendering of error messages.David Thompson2022-10-081-3/+4
* play: Fix crash when exception stack frame is from an unknown file.David Thompson2022-10-081-1/+5
* Update error handling to use Guile's new exception API.David Thompson2022-10-082-35/+33
* Allow 'chickadee play' to use languages other than Scheme.Arne Babenhauserheide2022-10-081-11/+33
* audio: Do not crash if there are no audio devices available.David Thompson2022-09-171-8/+13
* graphics: path: Apply transformation matrix to path origin.David Thompson2022-08-271-1/+1
* math: vector: Separate vec2 and vec3 things into their own sections.David Thompson2022-08-031-140/+150
* math: matrix: Add matrix4-inverse and matrix4-inverse! procedures.David Thompson2022-08-031-0/+153
* math: matrix: Replace matrix4-transform! with matrix4-transform-{vec2,vec3}!David Thompson2022-08-031-5/+41
* math: matrix: Add matrix4= procedure.David Thompson2022-08-031-0/+5
* math: matrix: Fix error in a comment.David Thompson2022-08-031-1/+1
* math: matrix: Add docstring to matrix3-inverse procedure.David Thompson2022-08-031-0/+1
* math: vector: Reduce character count of printed vectors.David Thompson2022-08-031-2/+2
* math: vector: Export set-vec3-z!David Thompson2022-08-031-0/+1
* graphics: sprite: Add #:shear argument to sprite-batch-add!David Thompson2022-08-011-4/+6
* graphics: sprite: Add #:shear argument to draw-sprite.David Thompson2022-08-011-5/+8
* math: matrix: Clean up matrix4-2d-transform! implementation.David Thompson2022-08-011-37/+35
* math: matrix: Fix shear implementation in matrix4-2d-transform!David Thompson2022-08-011-6/+6
* Remove dependence on SDL2_image and use our own JPEG/PNG loading.David Thompson2021-12-171-29/+39
* Add libpng bindings.David Thompson2021-12-172-0/+401
* Add libturbojpeg bindings.David Thompson2021-12-172-0/+154
* graphics: font: Fix Y-coordinates of bitmap font characters.David Thompson2021-12-091-1/+4
* Fix typo in chickadee/config.scm.in.David Thompson2021-10-291-1/+1
* audio: Don't crash if there is no sound system to update.David Thompson2021-10-241-1/+3
* cli: bundle: Allow excluding asset files via regexp match.David Thompson2021-10-241-16/+22
* cli: bundle: Fix tar command arguments.David Thompson2021-10-241-1/+1
* cli: bundle: Add project directory to load path.David Thompson2021-10-241-2/+10
* scripting: agenda: Fix clear-agenda.David Thompson2021-10-211-1/+1
* graphics: path: Add arc-to procedure.David Thompson2021-10-061-49/+86