diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-03-05 08:08:33 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-03-05 08:08:33 -0500 |
commit | bab0bc161e1ecd9ad89e6c3fb9ba646e75b1f594 (patch) | |
tree | 6fe40f0a8e0feb76bb942b11110231f999d1703e | |
parent | 2bed164bdea04034140b843fc4a3cb20488138b6 (diff) |
Compile buffer module before shader module.
The shader module includes the buffer module.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 998c378..6dd8dfc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -69,9 +69,9 @@ SOURCES = \ chickadee/graphics/depth.scm \ chickadee/graphics/stencil.scm \ chickadee/graphics/multisample.scm \ + chickadee/graphics/buffer.scm \ chickadee/graphics/texture.scm \ chickadee/graphics/shader.scm \ - chickadee/graphics/buffer.scm \ chickadee/graphics/viewport.scm \ chickadee/graphics/framebuffer.scm \ chickadee/graphics/sprite.scm \ |