Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.31 KB

index.md

File metadata and controls

32 lines (24 loc) · 1.31 KB

Graphics

Graphics

Flax offers a wide variety of graphics pipeline features as well as solid renderer that includes deferred shading, global illumination, reflective environment and post-processing.

This section explains all you need to know about working with materials pipeline, importing textures, lighting the environment and much more.

Supported graphics backends

  • DirectX 11 (with DirectX 10/10.1 fallback)
  • DirectX 12
  • Vulkan
  • Null
  • Platform native (eg. on PS4)

Tip

To check on which rendering backend game is running use GPUDevice.Instance.RendererType. You can also use GPUDevice.Instance.ShaderProfile to check the shaders format that is being used by the rendering backend.

In this section