imgui-wgpu 0.11.0

A wgpu render backend for imgui-rs.
Documentation
#version 450

layout(set = 0, binding = 0) uniform View {
  mat4 u_Matrix;
};

layout(location = 0) in vec2 a_Pos;
layout(location = 1) in vec2 a_UV;
layout(location = 2) in uint a_Color;

layout(location = 0) out vec2 v_UV;
layout(location = 1) out vec4 v_Color;

// Built-in:
// vec4 gl_Position

void main() {
  v_UV = a_UV;
  v_Color = vec4(a_Color & 0xFF, (a_Color >> 8) & 0xFF, (a_Color >> 16) & 0xFF, (a_Color >> 24) & 0xFF) / 255.0;
  gl_Position = u_Matrix * vec4(a_Pos.xy, 0.0, 1.0);
}