mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 17:01:22 +00:00
7fb335a215
Shaders can be built as spv files and installed into $libdir/quakeforge/shaders or as spvc files and compiled into the engine. Loading supports $builtin/name to access builtin shaders, $shader/path to access external standard shaders and quake filesystem access for all other paths.
8 lines
104 B
GLSL
8 lines
104 B
GLSL
#version 450
|
|
|
|
layout (location = 0) in vec4 app_position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = app_position;
|
|
}
|