Documentation on docs.rs Travis Build Status AppVeyor Build Status gfx on crates.io Gitter Chat
Documentation | LearningGfx tutorial | Graphics By Squares tutorial | Blog

## gfx-rs `gfx` is a high-performance, bindless graphics API for the Rust programming language. It aims to be the default API for Rust graphics: for one-off applications, or higher level libraries or engines. ## Motivation - Graphics APIs are mostly designed with C and C++ in mind, and hence are dangerous and error prone, with little static safety guarantees. - Providing type safe wrappers around platform-specific APIs is feasible, but only pushes the problem of platform independence to a higher level of abstraction, often to the game or rendering engine. - Modern graphics APIs, whilst providing a great degree of flexibility and a high level of performance, often have a much higher barrier to entry than traditional [fixed-function](https://en.wikipedia.org/wiki/Fixed-function) APIs. - Graphics APIs like OpenGL still [require the developer to 'bind' and 'unbind' objects](https://www.khronos.org/opengl/wiki/Buffer_Object) in order to perform operations on them. This results in a large amount of boiler plate code, and brings with it the usual problems associated with global state. ## Features Graphics backends: - [OpenGL 2.1+](src/backend/gl) - [OpenGL ES2+](src/backend/gl) ([works](https://github.com/gfx-rs/gfx/pull/993) on Android as well as WebGL2) - [Direct3D 11](src/backend/dx11) - [Metal](src/backend/metal) (WIP 75%) - ~~[Vulkan](src/backend/vulkan) (WIP 40%)~~ Hardware features: - [x] off-screen render targets - [x] multisampling - [x] instancing - [x] geometry shaders - [x] tessellation - [ ] computing - [x] persistent mapping ## Who's using it? Biggest open-source projects are: - [Amethyst](https://github.com/amethyst/amethyst) engine - [ggez](https://github.com/ggez/ggez) engine - Piston engine - [2d graphics](https://github.com/PistonDevelopers/gfx_graphics) - [LazyBox](https://github.com/lazybox/lazybox) engine - [Zone of Control](https://github.com/ozkriff/zoc) game - [Vange-rs](https://github.com/kvark/vange-rs) game - [Claymore](https://github.com/kvark/claymore) game/engine - [Rust-oids](https://github.com/itadinanta/rust-oids) game Shiny screens, including some older projects:

Hematite LazyBox Vange-rs Claymore ZoC Rust-oids

## Getting started The gfx-rs git repository contains a number of examples. Those examples are automatically downloaded if you clone the gfx directory: $ cd $ git clone https://github.com/gfx-rs/gfx where `` is a directory name of your choice. Once gfx is downloaded you can build any of the gfx examples. The examples are listed in the `/gfx/Cargo.toml` file. For example try: $ cd gfx $ cargo run --example cube If you compile the example for the first time, it may take some while since all dependencies must be compiled too. If you want to build your own stand-alone gfx program, add the following to your new `Cargo.toml`: [dependencies] gfx = "0.18" For gfx to work, it needs access to the graphics system of the OS. This is typically provided through some window initialization API. gfx can use a couple of those to acquire graphical contexts. For example; [glfw](https://github.com/PistonDevelopers/glfw-rs) or [glutin](https://github.com/tomaka/glutin/). To see how the graphic context is acquired, see the [cube example](https://github.com/gfx-rs/gfx/tree/pre-ll/examples/cube) or the [triangle example](https://github.com/gfx-rs/gfx/tree/pre-ll/examples/triangle). To use `glutin`, for example, your `Cargo.toml` must be extended with the following dependencies: [dependencies] ... glutin ="*" gfx_window_glutin = "*" Alternatively, an excellent introduction into gfx and its related crates can be found [here](https://wiki.alopex.li/LearningGfx). ## Structure and current versions `gfx` consist of several crates. You can find all of them in this repository. | Core functionality: | Graphic backends: | Window backends: | | :---: | :---: | :---: | | [![gfx on crates.io](http://img.shields.io/crates/v/gfx.svg?label=gfx)](http://crates.io/crates/gfx) | [![gfx_device_gl on crates.io](http://img.shields.io/crates/v/gfx_device_gl.svg?label=gfx_device_gl)](http://crates.io/crates/gfx_device_gl) | [![gfx_window_sdl on crates.io](http://img.shields.io/crates/v/gfx_window_sdl.svg?label=gfx_window_sdl)](http://crates.io/crates/gfx_window_sdl) | | [![gfx_app on crates.io](http://img.shields.io/crates/v/gfx_app.svg?label=gfx_app)](http://crates.io/crates/gfx_app) | [![gfx_device_dx11 on crates.io](http://img.shields.io/crates/v/gfx_device_dx11.svg?label=gfx_device_dx11)](http://crates.io/crates/gfx_device_dx11) | [![gfx_window_dxgi on crates.io](http://img.shields.io/crates/v/gfx_window_dxgi.svg?label=gfx_window_dxgi)](http://crates.io/crates/gfx_window_dxgi) | | [![gfx_core on crates.io](http://img.shields.io/crates/v/gfx_core.svg?label=gfx_core)](http://crates.io/crates/gfx_core) | [![gfx_device_metal on crates.io](http://img.shields.io/crates/v/gfx_device_metal.svg?label=gfx_device_metal)](http://crates.io/crates/gfx_device_metal) | [![gfx_window_glfw on crates.io](http://img.shields.io/crates/v/gfx_window_glfw.svg?label=gfx_window_glfw)](http://crates.io/crates/gfx_window_glfw) | | [![gfx_macros on crates.io](http://img.shields.io/crates/v/gfx_macros.svg?label=gfx_macros)](http://crates.io/crates/gfx_macros) | [![gfx_device_vulkan on crates.io](http://img.shields.io/crates/v/gfx_device_vulkan.svg?label=gfx_device_vulkan)](http://crates.io/crates/gfx_device_vulkan) | [![gfx_window_metal on crates.io](http://img.shields.io/crates/v/gfx_window_metal.svg?label=gfx_window_metal)](http://crates.io/crates/gfx_window_metal) | | | | [![gfx_window_glutin on crates.io](http://img.shields.io/crates/v/gfx_window_glutin.svg?label=gfx_window_glutin)](http://crates.io/crates/gfx_window_glutin) | | | | [![gfx_window_vulkan on crates.io](http://img.shields.io/crates/v/gfx_window_vulkan.svg?label=gfx_window_vulkan)](http://crates.io/crates/gfx_window_vulkan) | ## Note `gfx` is still in development. API may change with new backends/features to be implemented. If you are interested in helping out, checkout [contrib.md](info/contrib.md) and do not hesitate to contact the developers on [Gitter](https://gitter.im/gfx-rs/gfx).