summaryrefslogtreecommitdiff
path: root/chickadee
Commit message (Expand)AuthorAgeFilesLines
* render: Collect all managed GPU state into a single record type.David Thompson2019-11-068-74/+138
* render: particles: Fix keyword argument names for gpu-apply call.David Thompson2019-11-061-4/+4
* render: phong: Tweak default directional light parameters.David Thompson2019-11-051-4/+4
* render: phong: Zero out specular factor when material shininess is 0.David Thompson2019-11-051-1/+4
* render: phong: Fix error in shader.David Thompson2019-11-051-1/+1
* render: model: Make a few small tweaks.David Thompson2019-11-051-4/+11
* render: model: Move expressions after definitions to fix Guile 2.2 compatibil...David Thompson2019-11-031-41/+41
* render: model: Invert texture V coords when parsing OBJ files.David Thompson2019-10-291-2/+7
* render: shader: Fix bug with arrays handling in shader-uniform-set!David Thompson2019-10-291-1/+2
* render: texture: Include id when printing.David Thompson2019-10-291-1/+2
* render: shader: Fix sampler2D uniform value application.David Thompson2019-10-292-19/+44
* render: model: Add additional aliases for .mtl bump map specifiers.David Thompson2019-10-281-1/+1
* render: model: Suppress warnings for some deliberately ignored .obj data.David Thompson2019-10-281-11/+19
* render: model: Load ambient maps in .mtl files.David Thompson2019-10-281-1/+16
* render: phong: Add ambient map to material.David Thompson2019-10-281-11/+29
* render: model: Load diffuse, specular, bump textures in .mtl files.David Thompson2019-10-281-32/+111
* render: phong: Add support for diffuse and specular maps.David Thompson2019-10-281-22/+58
* render: viewport: Use light sky blue for default clear color.David Thompson2019-10-261-1/+1
* render: shader: Fix bug where default values for local fields didn't work.David Thompson2019-10-261-8/+18
* render: model: Support faces with 5 or more elements in OBJ loader.David Thompson2019-10-261-6/+33
* render: model: Correctly handle faces with 4 elements in OBJ loader.David Thompson2019-10-251-15/+35
* render: Restructure 3D modules and add basic support for OBJ models.David Thompson2019-10-245-745/+1201
* render: shader: Rename <shader-data-type> to <shader-primitive-type>.David Thompson2019-10-231-50/+50
* render: shader: Allow client-side only fields in shader structs.David Thompson2019-10-231-2/+11
* render: shader: Convert camel case uniform names to lispy snake case.David Thompson2019-10-231-1/+11
* render: shader: Remove unnecessary module import.David Thompson2019-10-211-1/+0
* render: shader: Remove debugging code.David Thompson2019-10-211-19/+1
* render: shader: Add support for shader structs.David Thompson2019-10-212-147/+490
* render: shader: Improve shader compilation error printing.David Thompson2019-10-181-1/+3
* render: shader: Support primitive array uniform variables.David Thompson2019-10-171-47/+52
* render: shader: Move shader loading helper procedures out of top level.David Thompson2019-10-171-126/+115
* render: shader: Decouple uniform serialization with uniform setting.David Thompson2019-10-172-38/+104
* render: gl: Add more glUniform functions.David Thompson2019-10-171-1/+11
* render: shader: Encapsulate GLSL types in <shader-data-type> records.David Thompson2019-10-161-108/+109
* math: vector: Add vec3 cross product procedures.David Thompson2019-10-111-0/+16
* math: vector: Add vec3 arithmetic procedures.David Thompson2019-10-111-0/+21
* math: matrix: Add procedures for X and Y axis rotations.David Thompson2019-10-111-0/+30
* array-list: Add bounds checking to array-list-ref.David Thompson2019-10-111-1/+3
* render: Introduce render context object.David Thompson2019-10-111-60/+43
* render: particles: Fix misuse of streaming vertex buffer.David Thompson2019-07-241-116/+105
* render: tiled: Add point->tile.David Thompson2019-06-041-0/+6
* render: sprite: Add draw-sprite-batch* procedure.David Thompson2019-05-221-9/+30
* Update copyright year on sprite and buffer modules.David Thompson2019-05-162-2/+2
* render: Replace broken refs to "typed buffer" with "buffer view".David Thompson2019-05-132-51/+51
* render: Rename "typed buffer" to "buffer view".David Thompson2019-05-133-182/+182
* doc: Improve texture documentation.David Thompson2019-05-131-1/+1
* render: texture: Stop exporting texture-id.David Thompson2019-05-131-1/+0
* render: sprite: Rewrite sprite batching API.David Thompson2019-05-123-288/+312
* render: buffer: Allow specifying read/write mode when mapping buffer.David Thompson2019-05-101-2/+5
* render: buffer: Fix buffer orphaning for streaming buffers.David Thompson2019-05-101-4/+3