Skip to content

Instantly share code, notes, and snippets.

@JokerMartini
Last active May 14, 2021 23:30
Show Gist options
  • Save JokerMartini/18b355bc031ed193e538 to your computer and use it in GitHub Desktop.
Save JokerMartini/18b355bc031ed193e538 to your computer and use it in GitHub Desktop.
GLSL Shader: A simple solid color shader
void main()
{
gl_FragColor = vec4(1.0,0.5,0.5,.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment