Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add more texture anchor types. | David Thompson | 2014-03-31 | 1 | -10/+22 |
| | | | | | | | | * 2d/texture.scm (anchor-texture): Add top-right, bottom-left, bottom-right, top-center, and bottom-center anchor types. * 2d/font.scm (make-label): Don't call anchor-texture when there is no texture. | ||||
* | Replace figl with the new guile-opengl official release. | David Thompson | 2014-03-23 | 1 | -2/+2 |
| | |||||
* | Change license to GPLv3+. | David Thompson | 2014-03-08 | 1 | -8/+8 |
| | |||||
* | Add 'top-left as possible anchor value. | David Thompson | 2014-02-16 | 1 | -0/+2 |
| | | | | * 2d/texture.scm (anchor-texture): Add 'top-left condition. | ||||
* | Move texture anchor procedure. | David Thompson | 2014-02-16 | 1 | -1/+14 |
| | | | | | * 2d/sprite.scm (make-anchor): Delete it. * 2d/texture.scm (anchor-texture): New procedure. | ||||
* | Change sprite-vertex to texture-vertex. | David Thompson | 2014-02-16 | 1 | -1/+46 |
| | | | | | | | | | | * 2d/sprite.scm (sprite-vertex, sprite-vertex-size, x-offset, s-offset, pack-sprite-vertices, draw-sprite-vertices): Delete. (update-sprite-vertices!): Use 'pack-texture-vertices'. (make-sprite): Use 'texture-vertex'. (draw-sprite): Use 'draw-texture-vertices'. * 2d/texture.scm (texture-vertex, texture-vertex-size, x-offset, s-offset, pack-texture-vertices, draw-texture-vertices): New variables. | ||||
* | Delete draw-texture. | David Thompson | 2014-02-16 | 1 | -24/+0 |
| | | | | * 2d/texture.scm (draw-texture): Delete it. | ||||
* | Add define-guardian macro. | David Thompson | 2014-02-09 | 1 | -16/+8 |
| | | | | | | * 2d/helpers.scm (define-guardian): New macro. * 2d/texture.scm (reap-textures): Delete it. (texture-guardian): Defined using define-guardian. | ||||
* | Remove commented code. | David Thompson | 2014-01-13 | 1 | -4/+0 |
| | | | | * 2d/texture.scm: Remove commented code. | ||||
* | Replace obsolete procedure call with the correct one. | David Thompson | 2014-01-12 | 1 | -4/+8 |
| | | | | * 2d/texture.scm (draw-texture): Use color module. | ||||
* | Clean up docstrings for sprite module. | David Thompson | 2013-09-18 | 1 | -1/+1 |
| | |||||
* | Clean up docstrings for texture module. | David Thompson | 2013-09-18 | 1 | -2/+10 |
| | |||||
* | Create tileset module. | David Thompson | 2013-08-26 | 1 | -18/+1 |
| | |||||
* | Make the origin the top-left corner of the window again. | David Thompson | 2013-08-26 | 1 | -0/+2 |
| | |||||
* | Throw error if image file does not exist. | David Thompson | 2013-08-24 | 1 | -1/+7 |
| | |||||
* | Use GL_NEAREST method for texture scaling. | David Thompson | 2013-08-18 | 1 | -2/+4 |
| | |||||
* | Change origin to bottom-left corner of window. | David Thompson | 2013-08-17 | 1 | -1/+0 |
| | |||||
* | Flip freeimage bitmaps vertically because the y-axis is the reverse of what ↵ | David Thompson | 2013-08-15 | 1 | -4/+9 |
| | | | | we want. | ||||
* | Use freeimage for texture loading. | David Thompson | 2013-08-14 | 1 | -21/+17 |
| | |||||
* | Remove reference to pixel-format* enum. | David Thompson | 2013-08-14 | 1 | -2/+2 |
| | |||||
* | Move gl.scm to wrappers subdirectory. | David Thompson | 2013-08-14 | 1 | -1/+1 |
| | |||||
* | Ensure that all texture objects are added to the texture guardian. | David Thompson | 2013-08-04 | 1 | -8/+11 |
| | |||||
* | Refactor <texture-region> into <texture>. | David Thompson | 2013-08-02 | 1 | -71/+73 |
| | |||||
* | Fix figl enum. | David Thompson | 2013-07-28 | 1 | -1/+1 |
| | |||||
* | Split sprite module into 3 modules. | David Thompson | 2013-07-22 | 1 | -0/+178 |
| | |||||
* | Deleted texture module and moved contents into sprite module. | David Thompson | 2013-07-06 | 1 | -153/+0 |
| | |||||
* | Add optional texture coordinate parameters to texture-quad and ↵ | David Thompson | 2013-07-06 | 1 | -5/+6 |
| | | | | sprite-batch-draw. | ||||
* | Add texture regions. | David Thompson | 2013-07-06 | 1 | -1/+37 |
| | |||||
* | Reap OpenGL textures when texture objects are GC'd. | David Thompson | 2013-06-23 | 1 | -3/+22 |
| | |||||
* | Add support for creating textures from RGB and RGBA surfaces. | David Thompson | 2013-06-16 | 1 | -3/+12 |
| | |||||
* | Add a color parameter to texture-quad. | David Thompson | 2013-06-16 | 1 | -1/+2 |
| | |||||
* | Change gl-tex-parameter to gl-texture-parameter. | David Thompson | 2013-06-13 | 1 | -15/+15 |
| | |||||
* | Add texture module. | David Thompson | 2013-06-12 | 1 | -0/+87 |