mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-25 11:01:10 +00:00
examples/overlaycomposition: Fix compilation with cairo API changes
This commit is contained in:
parent
9c86aa9f76
commit
b05b2b3aaa
1 changed files with 2 additions and 2 deletions
|
@ -181,11 +181,11 @@ fn create_pipeline() -> Result<gst::Pipeline, Error> {
|
|||
)
|
||||
.unwrap();
|
||||
|
||||
let cr = cairo::Context::new(&surface);
|
||||
let cr = cairo::Context::new(&surface).expect("Failed to create cairo context");
|
||||
|
||||
cr.save().expect("Failed to save state");
|
||||
cr.set_operator(cairo::Operator::Clear);
|
||||
cr.paint();
|
||||
cr.paint().expect("Failed to clear background");
|
||||
cr.restore().expect("Failed to restore state");
|
||||
|
||||
// The image we draw (the text) will be static, but we will change the
|
||||
|
|
Loading…
Reference in a new issue