25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
182 B

  1. struct FragmentData {
  2. vec2 texCoords;
  3. vec3 color;
  4. };
  5. struct VertexData {
  6. vec2 pos;
  7. vec3 color;
  8. };
  9. const float GLOW_SIZE = 100.00;
  10. const float GLOW_ALPHA = 0.05;