Code Monkey home page Code Monkey logo

gfx's Introduction

Documentation on docs.rs Travis Build Status AppVeyor Build Status gfx on crates.io Gitter Chat
Documentation | 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.

Under Construction

gfx-rs is undergoing severe changes now with transition to the new low-level core. All the following sections apply to the pre-ll branch and will be outdated soon. The new development focus is on zero-cost low-level abstraction of current-gen graphics APIs, such as Vulkan, D3D12, and Metal.


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 APIs.
  • Graphics APIs like OpenGL still require the developer to 'bind' and 'unbind' objects 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:

Hardware features:

  • off-screen render targets
  • multisampling
  • instancing
  • geometry shaders
  • tessellation
  • computing
  • persistent mapping

Who's using it?

Biggest open-source projects are:

Shiny screens, including some older projects:

Hematite LazyBox Vange-rs Claymore ZoC Rust-Quake Rust-oids

Getting started

If you want to build your own stand-alone gfx program, add the following to your new Cargo.toml:

[dependencies]
gfx = "0.16"

or, if you want the absolute latest commits to master, you can instead add.

[dependencies]
gfx = { git = "https://github.com/gfx-rs/gfx.git" }

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 or glutin.

To see how the graphic context is acquired, see the cube example or the triangle example.

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.

Running the Examples

The examples directory contains all the examples for GFX, as well as the accompanying documentation for understanding and running those examples.

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 gfx_device_gl on crates.io gfx_window_sdl on crates.io
gfx_device_dx11 on crates.io gfx_window_dxgi on crates.io
gfx_core on crates.io gfx_device_metal on crates.io gfx_window_glfw on crates.io
gfx_macros on crates.io gfx_device_vulkan on crates.io gfx_window_metal on crates.io
gfx_window_glutin on crates.io
gfx_window_vulkan on crates.io

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 and do not hesitate to contact the developers on Gitter.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.