summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* graphics: tiled: Remove version constraint.David Thompson2020-11-161-5/+2
|
* graphics: font: Add color argument to draw-text.David Thompson2020-11-162-5/+11
|
* math: vector: Add vec2-cross procedure.David Thompson2020-11-131-0/+5
|
* math: rect: Fix rect-union and rect-clip.David Thompson2020-11-131-4/+4
|
* math: rect: Fix rect-inflate.David Thompson2020-10-151-2/+3
|
* math: matrix: Add 3x3 matrix.David Thompson2020-10-151-106/+345
|
* math: rect: Export make-null-rect.David Thompson2020-10-151-0/+1
|
* math: rect: Move functional procedures after the imperative ones.David Thompson2020-10-151-56/+61
| | | | | The functional procedures weren't working because of a quirk with Guile's handling of the top level.
* graphics: color: Add DawnBringer 32-color palette.David Thompson2020-10-151-26/+132
|
* math: vector: Add origin argument to vec2/polar.David Thompson2020-10-131-3/+4
|
* math: vector: Add vec2= and vec3= procedures.David Thompson2020-10-131-0/+11
|
* graphics: buffer: Always apply index buffer before rendering.David Thompson2020-10-131-11/+15
| | | | I can't believe this didn't cause me trouble before now. Wow.
* math: rect: Fix rect-union when one of the rectangles has no area.David Thompson2020-10-131-8/+18
| | | | | Rectangles that have no area shouldn't be considered as part of the union.
* graphics: stencil: Fix incorrect variable name.David Thompson2020-10-131-1/+1
|
* graphics: Add color mask support.David Thompson2020-10-123-7/+64
|
* graphics: Add multisampling support.David Thompson2020-10-123-5/+34
|
* graphics: buffer: Fix segfault in resize-buffer!David Thompson2020-10-121-7/+9
|
* graphics: Fix argument order in gpu-apply and gpu-apply/instanced.David Thompson2020-10-111-2/+2
|
* render: buffer: Allow streaming buffers to be resized.David Thompson2020-10-111-2/+21
|
* math: Delete square procedure.David Thompson2020-10-112-8/+4
| | | | It's just not useful.
* render: gl: Export glPolygonMode and glColorMask.David Thompson2020-10-111-0/+8
|
* render: buffer: Support vertex arrays with no index buffer.David Thompson2020-10-113-21/+27
|
* graphics: shader: Replace reference to deleted 'color' procedure.David Thompson2020-10-111-1/+1
|
* graphics: texture: Add load-tileset procedure.David Thompson2020-10-112-1/+37
|
* math: grid: Export grid-rect-ref.David Thompson2020-10-111-0/+1
|
* graphics: color: Remove 'color' procedure.David Thompson2020-10-111-4/+1
| | | | Use 'make-color' instead.
* Update game controller database file.David Thompson2020-10-081-11/+283
|
* graphics: Improve GLSL 1.2 compatibility.Jelle Licht2020-10-064-13/+40
|
* graphics: framebuffer: Use a fully transparent clear color.David Thompson2020-10-041-1/+4
| | | | | Without this it is impossible to render multiple framebuffers on top of each other and get the desired result.
* Rename 'render' subdirectory to 'graphics'.David Thompson2020-10-0335-174/+174
|
* Do not auto-compile example files before running them.David Thompson2020-10-031-1/+1
|
* font: Make Inconsolata the new default font.David Thompson2020-10-036-252/+7
|
* Add OTF/TTF font support via freetype.David Thompson2020-10-038-32/+542
|
* render: gpu: Lookup max texture size.David Thompson2020-10-012-1/+12
|
* array-list: Fix yet another iteration bug.David Thompson2020-09-301-1/+1
|
* array-list: Handle deletions during iteration a bit better.David Thompson2020-09-291-6/+4
|
* array-list: Allow user-specified initial capacity.David Thompson2020-09-291-2/+2
|
* array-list: Expand by 1.5x rather than 2x.David Thompson2020-09-291-1/+3
|
* array-list: Fix the bug fix in array-list-delete! procedure.David Thompson2020-09-291-17/+18
| | | | Ugh!!!!
* array-list: Fix bug in array-list-delete! procedure.David Thompson2020-09-291-1/+2
|
* array-list: Add array-list-delete! procedure.David Thompson2020-09-291-0/+24
|
* array-list: Add array-list-fold procedure.David Thompson2020-09-291-1/+11
|
* array-list: Clear old elements so they can be GC'd.David Thompson2020-09-291-0/+9
|
* render: Add stencil test to render context.David Thompson2020-08-261-1/+13
|
* render: Add stencil test support.David Thompson2020-08-265-1/+158
|
* render: Expand depth testing support.David Thompson2020-08-267-15/+82
| | | | Now includes depth function, mask, and range configuration.
* scripting: Add custom polling support.David Thompson2020-08-253-7/+53
|
* render: Take a stab at GLSL 1.2 compatibility.David Thompson2020-08-246-16/+100
| | | | | | I don't have a machine to test on so this is just a best guess. I'm sure there's some bugs that other people will just have to point out to me. It's a start, at least.
* render: sprite: Fix GLSL 3.3 shader.David Thompson2020-08-241-1/+1
|
* render: Add shader compatibility for GLSL 3.3.David Thompson2020-08-246-38/+131
| | | | | Big thanks to Aleix Conchillo FlaquƩ <aconchillo@gmail.com> for working out the necessary changes while testing Chickadee on MacOS.