From b8f92937b32dbbec0f749ec5f2220745dcd1dfdd Mon Sep 17 00:00:00 2001 From: pylbrecht Date: Thu, 12 Sep 2019 20:35:09 +0200 Subject: [PATCH] Implement ColorBurn --- components/canvas/raqote_backend.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/canvas/raqote_backend.rs b/components/canvas/raqote_backend.rs index 51fb4a57fc6..3cd19bfd4e9 100644 --- a/components/canvas/raqote_backend.rs +++ b/components/canvas/raqote_backend.rs @@ -773,7 +773,7 @@ impl ToRaqoteStyle for BlendingStyle { BlendingStyle::Saturation => raqote::BlendMode::Saturation, BlendingStyle::Color => raqote::BlendMode::Color, BlendingStyle::Luminosity => raqote::BlendMode::Luminosity, - BlendingStyle::ColorBurn => unimplemented!("raqote doesn't support colorburn"), + BlendingStyle::ColorBurn => raqote::BlendMode::ColorBurn, } } }