pebble-engine 0.12.8

A modular, ECS-style graphics/app framework for Rust.
Documentation
1
2
3
4
5
6
7
8
#version 460
layout(location = 0) out vec4 fragColor;

layout(location = 0) in vec3 vPos;

void main() {
    fragColor = vec4(vPos, 1.0f);
}