mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
10 lines
138 B
Text
10 lines
138 B
Text
|
struct str {
|
||
|
float params[3];
|
||
|
};
|
||
|
void main() {
|
||
|
str s;
|
||
|
for (int i = 0; i < 3; ++i)
|
||
|
s.params[i] = 1.0;
|
||
|
gl_FragColor = vec4(0.0);
|
||
|
}
|