source: opengl-game/shaders/explosion.frag@ 845a2cb

points-test
Last change on this file since 845a2cb was 845a2cb, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 5 years ago

test point size

  • Property mode set to 100644
File size: 224 bytes
Line 
1#version 450
2#extension GL_ARB_separate_shader_objects : enable
3
4layout(location = 0) in float opacity;
5
6layout(location = 0) out vec4 frag_color;
7
8void main() {
9 frag_color = vec4(1.0, opacity * opacity, 0.0, opacity);
10}
Note: See TracBrowser for help on using the repository browser.