7 unstable releases (3 breaking)

0.11.0 Apr 5, 2023
0.10.0 Jan 16, 2023
0.9.0 Dec 1, 2022
0.8.3 Dec 26, 2021
0.8.0 Sep 17, 2021

#161 in Rendering

Download history 743/week @ 2023-12-13 359/week @ 2023-12-20 321/week @ 2023-12-27 485/week @ 2024-01-03 631/week @ 2024-01-10 775/week @ 2024-01-17 684/week @ 2024-01-24 489/week @ 2024-01-31 253/week @ 2024-02-07 704/week @ 2024-02-14 619/week @ 2024-02-21 993/week @ 2024-02-28 743/week @ 2024-03-06 780/week @ 2024-03-13 815/week @ 2024-03-20 427/week @ 2024-03-27

3,004 downloads per month
Used in imgui-sdl2-support

MIT/Apache

695KB
14K SLoC

Renderer for [imgui-rs][imgui] using the glow library for OpenGL.

This is heavily influenced by the example from upstream.

Basic usage

A few code examples are provided in the source.

In short, create either an AutoRenderer (for basic usage) or Renderer (for slightly more customizable operation), then call the render(...) method with draw data from imgui.

OpenGL (ES) versions

This renderer is expected to work with OpenGL version 3.3 and above, and OpenGL ES version 3.0 or above. This should cover the vast majority of even fairly dated hardware. Please submit an issue for any incompatibilities found with these OpenGL versions, pull requests to extend support to earlier versions are welcomed.

Scope

Consider this an example renderer. It is intended to be sufficent for simple applications running imgui-rs as the final rendering step. If your application has more specific needs, it's probably best to write your own renderer, in which case this can be a useful starting point. This renderer is also not foolproof (largely due to the global nature of the OpenGL state). For example, a few "internal" functions are marked pub to allow the user more fine-grained control at the cost of allowing potential rendering errors.

sRGB

When outputting colors to a screen, colors need to be converted from a linear color space to a non-linear space matching the monitor (e.g. sRGB). When using the AutoRenderer, this library will convert colors to sRGB as a step in the shader. When initialising a Renderer, you can choose whether or not to include this step in the shader or not when calling Renderer::initialize.

This library also assumes that textures have their internal format set appropriately when uploaded to OpenGL. That is, assuming your texture is sRGB (if you don't know, it probably is) the internal_format is one of the SRGB* values.

Dependencies

~14–21MB
~299K SLoC