mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
11 lines
171 B
Text
11 lines
171 B
Text
struct SurfaceOutput {
|
|
vec4 color;
|
|
};
|
|
void surf(inout SurfaceOutput o) {
|
|
o.color = vec4(1);
|
|
}
|
|
void main() {
|
|
SurfaceOutput o;
|
|
surf(o);
|
|
gl_FragColor = o.color;
|
|
}
|