mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-12 10:49:59 +01:00
Original implementation of Resampling Image filters
This involves also resizing the renderbuffer of the clone source. Upsampling is cubic (faster approximation) and Downsampling is bilinear.
This commit is contained in:
@@ -694,6 +694,11 @@ void SessionVisitor::visit (DelayFilter& f)
|
||||
xmlCurrent_->SetAttribute("delay", f.delay());
|
||||
}
|
||||
|
||||
void SessionVisitor::visit (ResampleFilter& f)
|
||||
{
|
||||
xmlCurrent_->SetAttribute("factor", (int) f.factor());
|
||||
}
|
||||
|
||||
void SessionVisitor::visit (BlurFilter& f)
|
||||
{
|
||||
xmlCurrent_->SetAttribute("method", (int) f.method());
|
||||
|
||||
Reference in New Issue
Block a user