Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2023-01-27 21:46:22 +0300
committerSebastian Dröge <sebastian@centricular.com>2023-01-27 21:46:22 +0300
commit62bfc545d370ec35063a52861bdc41be08bbdb99 (patch)
tree98e03ed15cc52666a7f02a18d0a20e0e00fe5c28 /video
parentabe4efc4a2239d2063cdf8b06c9428aaccbff90f (diff)
gtk4: Fix compilation after `gst_gl::Display` API changes
Diffstat (limited to 'video')
-rw-r--r--video/gtk4/src/sink/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/gtk4/src/sink/imp.rs b/video/gtk4/src/sink/imp.rs
index 2f2e7bee..df6c0c91 100644
--- a/video/gtk4/src/sink/imp.rs
+++ b/video/gtk4/src/sink/imp.rs
@@ -732,7 +732,7 @@ impl PaintableSink {
"Successfully deactivated GL Context after fill_info"
);
- let gst_context = match display.create_context(app_ctx) {
+ let gst_context = match display.create_context(Some(app_ctx)) {
Ok(gst_context) => gst_context,
Err(err) => {
gst::error!(CAT, imp: self, "Could not create GL context: {err}");