A mid-level 2D graphics library for rust
rgx is a 2D graphics library built on top of [wgpu] and [Vulkan]. This
library aims to be "mid-level" in that it provides an API that is higher level
than Vulkan, but lower level than most 2D graphics libraries in the wild, by
exposing the user to concepts such as pipelines, buffers and swap chains.
The goal of rgx is to provide as simple an API as possible without
sacrificing performance or control over the rendering pipeline. See the
examples
directory to get a feel.
At this stage, the focus is on 2D bitmap graphics and sprite rendering. In the future, support for 3D pipelines may be added.
The library is split into two modules, kit
, and core
. The latter provides
rgx's core API with no assumption on what kind of 2D graphics will be
rendered, while the former exposes some useful building blocks for various use-cases,
such as a shape-oriented pipeline and a sprite oriented pipeline. Users can construct
their own pipelines and use them with rgx.
kit
See examples/helloworld.rs for a simple usage example.
To rebuild the shaders run the following:
glslc -c -Werror --target-env=vulkan ./examples/data/framebuffer.vert -o ./examples/data/framebuffer.vert.spv
glslc -c -Werror --target-env=vulkan ./examples/data/framebuffer.frag -o ./examples/data/framebuffer.frag.spv
glslc -c -Werror --target-env=vulkan ./src/kit/data/shape.frag -o ./src/kit/data/shape.frag.spv
glslc -c -Werror --target-env=vulkan ./src/kit/data/sprite.frag -o ./src/kit/data/sprite.frag.spv
glslc -c -Werror --target-env=vulkan ./src/kit/data/shape.vert -o ./src/kit/data/shape.vert.spv
glslc -c -Werror --target-env=vulkan ./src/kit/data/sprite.vert -o ./src/kit/data/sprite.vert.spv
If you find this project useful, consider supporting it by sending ₿ (Bitcoin) to
1HMfp9QFXmVUarNPmHxa1rhecZXyAPiPZd
. <3
(c) 2019 Alexis Sellier\ Licensed under the MIT license.