commit 9faf3b4ca3e7abe4cf1be903b82593ee99fe8030
parent 8e049691cd716e9679e7166c009614c0ca29bc16
Author: Adam M <[email protected]>
Date: Wed, 3 Nov 2021 12:48:47 -0500
remove unused drawShadow method in pigure
Diffstat:
1 file changed, 0 insertions(+), 12 deletions(-)
diff --git a/src/ComputerscareStolyFickPigure.cpp b/src/ComputerscareStolyFickPigure.cpp
@@ -330,18 +330,6 @@ struct StolyFickPigureWidget : ModuleWidget {
addParam(createParam<ScrambleKnob>(Vec(81, 357), module, StolyFickPigure::SCRAMBLE));
}
- void drawShadow(const DrawArgs& args) {
- DEBUG("my draw shadow has been called");
- nvgBeginPath(args.vg);
- float r = 20; // Blur radius
- float c = 20; // Corner radius
- math::Vec b = math::Vec(-10, 30); // Offset from each corner
- nvgRect(args.vg, b.x - r, b.y - r, box.size.x - 2 * b.x + 2 * r, box.size.y - 2 * b.y + 2 * r);
- NVGcolor shadowColor = nvgRGBAf(120, 0, 0, 0.7);
- NVGcolor transparentColor = nvgRGBAf(120, 0, 0, 0);
- nvgFillPaint(args.vg, nvgBoxGradient(args.vg, b.x, b.y, box.size.x - 2 * b.x, box.size.y - 2 * b.y, c, r, shadowColor, transparentColor));
- nvgFill(args.vg);
- }
void appendContextMenu(Menu* menu) override {
StolyFickPigure* module = dynamic_cast<StolyFickPigure*>(this->module);