eo/shaders/fs_basic.sc

9 lines
131 B
Python
Raw Normal View History

2025-01-27 18:16:31 +00:00
$input f_position
2024-11-15 00:12:51 +00:00
#include <bgfx_shader.sh>
#include <shaderlib.sh>
void main() {
2025-01-27 18:16:31 +00:00
gl_FragColor = vec4(f_position.xyz, 1.0f);
}