8 lines
88 B
GLSL
8 lines
88 B
GLSL
uniform vec4 cryptohash;
|
|
out vec4 fragColor;
|
|
|
|
void main()
|
|
{
|
|
fragColor = cryptohash;
|
|
}
|