grimoire   ![BUILD-img] ![MIT-img] ![APACHE-img] ![RUSTC-img]

grimoire is a command-line tool for creating shader demos on Windows, MacOS, and Linux

Create interactive art, make games, learn computer graphics, have fun!

What?

grimoire is best described as a native clone of shadertoy and vertexshaderart with the following features:

Install now and learn by example!

grimoire is in the early stages of development. You will encounter bugs and features may change with notice. Bug reports, feedback, and PRs are welcomed!

How?

```glsl // image.glsl /* [dog] image = "poodle.png"

[cat] image = "garfield.png"

[[pass]] iChannel0 = "dog" iChannel1 = "cat" */

void mainImage(out vec4 fragColor, in vec2 fragCoord) { vec2 uv = fragCoord / iResolution.xy; fragColor = mix(texture(iChannel0, uv), texture(iChannel1, uv), 0.5 + 0.5 * sin(iTime)); } console $ grimoire image.glsl ```

Want to learn more? Read the spec or learn by example!

Install

You need to build and install grimoire from source using rust and install the required system dependencies:

Windows

This is a really rough experience right now and the following steps may not work for you without further tinkering:

console $ pacman -S mingw-w64-x86_64-pkg-config mingw-w64-x86_64-SDL2 mingw-w64-x86_64-GStreamer mingw-w64-x86_64-gst-plugins-base mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav $ rustup target add x86_64-pc-windows-gnu $ git clone https://github.com/jshrake/grimoire $ cd grimoire $ cargo build --release

Breadcrumbs: - https://github.com/sdroege/GStreamer-rs#windows

MacOS

console $ curl https://sh.rustup.rs -sSf | sh $ brew install sdl2 gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav $ git clone https://github.com/jshrake/grimoire $ cd grimoire $ cargo install --path .

Linux

console $ curl https://sh.rustup.rs -sSf | sh $ apt-get install libsdl2-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav $ git clone https://github.com/jshrake/grimoire $ cd grimoire $ cargo install --path .

Resources

fragment shaders

vertex shaders

Inspiration

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.