diff options
author | colin <colin@cicadas.surf> | 2023-08-06 09:06:43 -0700 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-08-06 09:06:43 -0700 |
commit | 2cbb8e4114c860e1774efd40d18661aee8ab2a72 (patch) | |
tree | 1dd53008e31b479676df3835db6aa88d1e34f694 /src/interactive/canvas.lisp | |
parent | 32d322050b4ad7b658c2976b4edab13737143102 (diff) |
Fix frameset initialization
Diffstat (limited to 'src/interactive/canvas.lisp')
-rw-r--r-- | src/interactive/canvas.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interactive/canvas.lisp b/src/interactive/canvas.lisp index 9a3515f..af54634 100644 --- a/src/interactive/canvas.lisp +++ b/src/interactive/canvas.lisp @@ -198,7 +198,7 @@ e.g., drawing a line in a particular color." (gl:bind-framebuffer :framebuffer 0))) (defun blit (canvas) - "Blits a canvas to the its texture" + "Blits a canvas to its texture" (with-slots (fbo texture data pixel-width pixel-height) canvas (gl:bind-framebuffer :framebuffer fbo) (gl:bind-texture :texture-2d (texture-id texture)) |