mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
7 lines
125 B
Text
7 lines
125 B
Text
vec4 xlat_main() {
|
|
return vec4(1.0, 1e7, 1e-6, 1.5);
|
|
}
|
|
void main() {
|
|
vec4 x = xlat_main();
|
|
gl_FragData[0] = x;
|
|
}
|