source: opengl-game/gl-shaders/explosion.frag@ 7f60b28

feature/imgui-sdl
Last change on this file since 7f60b28 was 4d84c72, checked in by Dmitry Portnoy <dmp1488@…>, 5 years ago

Move the OpenGL shaders to a gl-shaders folder

  • Property mode set to 100644
File size: 136 bytes
RevLine 
[db06984]1#version 410 core
2
3in float opacity;
4
5out vec4 frag_color;
6
7void main() {
[adb104f]8 frag_color = vec4(1.0, opacity * opacity, 0.0, opacity);
[db06984]9}
Note: See TracBrowser for help on using the repository browser.