diff options
author | David Thompson <dthompson2@worcester.edu> | 2017-09-13 21:29:11 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2017-09-13 22:02:39 -0400 |
commit | 1a2e71e76e964f62ea2a49715050ee5a51638df5 (patch) | |
tree | d445a8efe6cc63a3bff88fd332015e391616ad48 | |
parent | b1f419114ea546bf3679e7a8dc49bdf268d5fd2a (diff) |
render: shader: Export more procedures.
* chickadee/render/shader.scm: Export shader-attributes, attribute?,
attribute-name, attribute-location, and attribute-type.
-rw-r--r-- | chickadee/render/shader.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chickadee/render/shader.scm b/chickadee/render/shader.scm index 2f0219f..cb4426f 100644 --- a/chickadee/render/shader.scm +++ b/chickadee/render/shader.scm @@ -40,12 +40,17 @@ strings->shader shader-uniform shader-uniforms + shader-attributes uniform? uniform-name uniform-type uniform-value uniform-default-value set-uniform-value! + attribute? + attribute-name + attribute-location + attribute-type *shader-state*)) (define-record-type <shader> |