7 lines
87 B
GLSL
7 lines
87 B
GLSL
/* HELLO WORLD */
|
|
|
|
half4 main() {
|
|
// Return green.
|
|
return half4(0, 1, 0, 1);
|
|
}
|