summaryrefslogtreecommitdiff
path: root/chickadee
Commit message (Expand)AuthorAgeFilesLines
* render: texture: Fix error when splitting certain textures.David Thompson2019-01-061-4/+2
* render: font: Export a default-font procedure.David Thompson2018-12-141-3/+5
* Re-hide SDL2 details.David Thompson2018-12-132-207/+98
* render: font: Include a default font for convenience.David Thompson2018-12-131-2/+7
* render: sprite: Use a single buffer for unbatched sprite mesh.David Thompson2018-12-131-36/+46
* render: sprite: batch: Combine vertices and texcoords into one buffer.David Thompson2018-12-131-31/+36
* math: rect: Add make-rect alias.David Thompson2018-12-131-2/+4
* render: font: Use set-vec2! where convenient.David Thompson2018-12-131-2/+1
* render: sprite: Use set-vec2! where convenient.David Thompson2018-12-131-8/+4
* math: vector: Add set-vec2! and set-vec3! procedures.David Thompson2018-12-131-5/+11
* render: shader: Change shader variable naming convention to camel case.David Thompson2018-12-111-5/+5
* render: shader: Improve docstrings.David Thompson2018-12-111-0/+9
* render: buffer: Improve docstrings.David Thompson2018-12-111-7/+64
* render: framebuffer: Add default projection matrix for convenience.David Thompson2018-12-102-12/+20
* math: grid: Simplify a formula.David Thompson2018-12-091-2/+2
* Add particle rendering module.David Thompson2018-12-071-0/+476
* render: buffer: Add support for int and double component types.David Thompson2018-12-051-2/+6
* render: blend: Fix additive blending mode.David Thompson2018-12-031-1/+1
* math: grid: A couple more optimizations.David Thompson2018-12-021-4/+3
* math: grid: Refactor to improve performance a little bit.David Thompson2018-12-021-173/+163
* scripting: channel: Update copyright year.David Thompson2018-11-291-1/+1
* scripting: channel: Add channel-get! and channel-put! procedures.David Thompson2018-11-291-4/+18
* queue: Add queue-length procedure.David Thompson2018-11-291-6/+9
* scripting: channel: Remove unncessary module imports.David Thompson2018-11-291-2/+0
* render: Add gpu-apply/instanced syntax.David Thompson2018-10-251-3/+19
* render: buffer: Add render-vertices/instanced procedure.David Thompson2018-10-251-1/+12
* render: buffer: Add divisor field to typed buffers.David Thompson2018-10-251-8/+18
* render: gl: Add glDrawElementsInstanced binding.David Thompson2018-10-251-3/+12
* Move pathfinding module to math directory.David Thompson2018-10-031-6/+6
* math: grid: Fix docstring in grid-move.David Thompson2018-10-021-1/+1
* math: matrix: Fix a few docstrings.David Thompson2018-09-271-3/+3
* render: texture: Fix bug in framebuffer texture coordinates.David Thompson2018-09-101-1/+1
* render: framebuffer: Flip UV coordinates.David Thompson2018-09-101-0/+1
* render: texture: Add flip? argument to make-texture.David Thompson2018-09-101-5/+11
* render: Change texture origin to top-left.David Thompson2018-09-104-49/+37
* math: vector: Fix vec2-normalize and vec3-normalize.David Thompson2018-09-101-12/+12
* math: vector: Add vec2*, vec2+, and vec2- procedures.David Thompson2018-09-101-0/+21
* render: asset: Don't use mipmaps for now.David Thompson2018-09-071-4/+6
* render: asset: Use default sampler index of 0 when loading textures.David Thompson2018-09-071-1/+2
* render: asset: Removing debug print calls.David Thompson2018-09-071-2/+2
* render: scene: Make material factors default to 1.0.David Thompson2018-09-072-7/+7
* render: asset: Add material texture parsing and loading.David Thompson2018-09-071-54/+103
* render: scene: Apply base color texture and factor.David Thompson2018-09-071-5/+7
* render: scene: Merge metallic roughness into material record type.David Thompson2018-09-071-44/+40
* render: shader: Add support for vec3 uniform values.David Thompson2018-09-071-5/+5
* render: gl: Re-export gl-uniform3fv.David Thompson2018-09-071-0/+1
* render: scene: Stop allocating matrices when rendering.David Thompson2018-09-061-22/+17
* render: buffer: Fix pointer argument to glVertexAttribPointer.David Thompson2018-09-061-4/+1
* render: buffer: Use correct data type for index buffer when rendering.David Thompson2018-09-061-6/+6
* render: buffer: Stop using glBufferSubData when creating VBOs.David Thompson2018-09-061-6/+3