mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-01-08 18:25:30 +00:00
gtk4: Fix compilation on macOS
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/332 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1138>
This commit is contained in:
parent
a38e6ca99b
commit
825fe9a4e2
1 changed files with 1 additions and 1 deletions
|
@ -856,7 +856,7 @@ impl PaintableSink {
|
||||||
let wrapped_context = match wrapped_context {
|
let wrapped_context = match wrapped_context {
|
||||||
None => {
|
None => {
|
||||||
gst::error!(CAT, imp: self, "Failed to create wrapped GL context");
|
gst::error!(CAT, imp: self, "Failed to create wrapped GL context");
|
||||||
return;
|
return None;
|
||||||
}
|
}
|
||||||
Some(wrapped_context) => wrapped_context,
|
Some(wrapped_context) => wrapped_context,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue