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.

19 lines
226B

  1. #include "app.hpp"
  2. namespace rack {
  3. SVGPort::SVGPort() {
  4. background = new SVGWidget();
  5. addChild(background);
  6. }
  7. void SVGPort::draw(NVGcontext *vg) {
  8. Port::draw(vg);
  9. FramebufferWidget::draw(vg);
  10. }
  11. } // namespace rack