You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CircularShadow.hpp 261B

1234567891011121314151617
  1. #pragma once
  2. #include "app/common.hpp"
  3. #include "widgets/TransparentWidget.hpp"
  4. namespace rack {
  5. struct CircularShadow : TransparentWidget {
  6. float blurRadius;
  7. float opacity;
  8. CircularShadow();
  9. void draw(NVGcontext *vg) override;
  10. };
  11. } // namespace rack