sdl3 0.18.0

Bindings to SDL3, a cross-platform library to abstract the platform-specific details for building applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#version 450

// Final color of the pixel
layout (location = 0) out vec4 final_color;

// Color from our vertex shader
layout (location = 0) in vec3 frag_color;

void main() {
	final_color = vec4(frag_color, 1.0);
}