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.

55 lines
1.8KB

  1. #pragma once
  2. #include <widget/Widget.hpp>
  3. namespace rack {
  4. namespace widget {
  5. /** Caches its children's draw() result to a framebuffer image.
  6. When dirty, its children will be re-rendered on the next call to step().
  7. */
  8. struct FramebufferWidget : Widget {
  9. struct Internal;
  10. Internal* internal;
  11. /** Set this to true to re-render the children to the framebuffer the next time it is drawn */
  12. bool dirty = true;
  13. bool bypassed = false;
  14. float oversample = 1.0;
  15. /** Redraw when the world offset of the FramebufferWidget changes its fractional value. */
  16. bool dirtyOnSubpixelChange = true;
  17. /** If finite, the maximum size of the framebuffer is the viewport expanded by this margin.
  18. The framebuffer is re-rendered when the viewport moves outside the margin.
  19. */
  20. math::Vec viewportMargin = math::Vec(INFINITY, INFINITY);
  21. FramebufferWidget();
  22. ~FramebufferWidget();
  23. void setDirty(bool dirty = true);
  24. int getImageHandle();
  25. NVGLUframebuffer* getFramebuffer();
  26. math::Vec getFramebufferSize();
  27. void deleteFramebuffer();
  28. void step() override;
  29. /** Draws the framebuffer to the NanoVG scene, re-rendering it if necessary.
  30. */
  31. void draw(const DrawArgs& args) override;
  32. /** Re-renders the framebuffer, re-creating it if necessary.
  33. Handles oversampling (if >1) by rendering to a temporary (larger) framebuffer and then downscaling it to the main persistent framebuffer.
  34. */
  35. void render(math::Vec scale = math::Vec(1, 1), math::Vec offsetF = math::Vec(0, 0), math::Rect clipBox = math::Rect::inf());
  36. /** Initializes the current GL context and draws children to it.
  37. */
  38. virtual void drawFramebuffer();
  39. void onDirty(const DirtyEvent& e) override;
  40. void onContextCreate(const ContextCreateEvent& e) override;
  41. void onContextDestroy(const ContextDestroyEvent& e) override;
  42. };
  43. } // namespace widget
  44. } // namespace rack