mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 11:30:59 +00:00
gtk4: Rename a variable to make more sense
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1032>
This commit is contained in:
parent
f72540f5c2
commit
439ada614c
1 changed files with 8 additions and 8 deletions
|
@ -735,7 +735,7 @@ impl PaintableSink {
|
|||
fn initialize_x11egl(
|
||||
&self,
|
||||
display: gdk::Display,
|
||||
display_ctx_guard: &mut Option<gst_gl::GLDisplay>,
|
||||
display_guard: &mut Option<gst_gl::GLDisplay>,
|
||||
app_ctx_guard: &mut Option<gst_gl::GLContext>,
|
||||
) {
|
||||
gst::info!(
|
||||
|
@ -778,7 +778,7 @@ impl PaintableSink {
|
|||
Some(gst_app_context) => gst_app_context,
|
||||
};
|
||||
|
||||
display_ctx_guard.replace(gst_display);
|
||||
display_guard.replace(gst_display);
|
||||
app_ctx_guard.replace(gst_app_context);
|
||||
}
|
||||
}
|
||||
|
@ -787,7 +787,7 @@ impl PaintableSink {
|
|||
fn initialize_x11glx(
|
||||
&self,
|
||||
display: gdk::Display,
|
||||
display_ctx_guard: &mut Option<gst_gl::GLDisplay>,
|
||||
display_guard: &mut Option<gst_gl::GLDisplay>,
|
||||
app_ctx_guard: &mut Option<gst_gl::GLContext>,
|
||||
) {
|
||||
gst::info!(
|
||||
|
@ -830,7 +830,7 @@ impl PaintableSink {
|
|||
Some(gst_app_context) => gst_app_context,
|
||||
};
|
||||
|
||||
display_ctx_guard.replace(gst_display);
|
||||
display_guard.replace(gst_display);
|
||||
app_ctx_guard.replace(gst_app_context);
|
||||
}
|
||||
}
|
||||
|
@ -839,7 +839,7 @@ impl PaintableSink {
|
|||
fn initialize_waylandegl(
|
||||
&self,
|
||||
display: gdk::Display,
|
||||
display_ctx_guard: &mut Option<gst_gl::GLDisplay>,
|
||||
display_guard: &mut Option<gst_gl::GLDisplay>,
|
||||
app_ctx_guard: &mut Option<gst_gl::GLContext>,
|
||||
) {
|
||||
gst::info!(
|
||||
|
@ -887,7 +887,7 @@ impl PaintableSink {
|
|||
Some(gst_app_context) => gst_app_context,
|
||||
};
|
||||
|
||||
display_ctx_guard.replace(gst_display);
|
||||
display_guard.replace(gst_display);
|
||||
app_ctx_guard.replace(gst_app_context);
|
||||
}
|
||||
}
|
||||
|
@ -896,7 +896,7 @@ impl PaintableSink {
|
|||
fn initialize_macosgl(
|
||||
&self,
|
||||
display: gdk::Display,
|
||||
display_ctx_guard: &mut Option<gst_gl::GLDisplay>,
|
||||
display_guard: &mut Option<gst_gl::GLDisplay>,
|
||||
app_ctx_guard: &mut Option<gst_gl::GLContext>,
|
||||
) {
|
||||
gst::info!(
|
||||
|
@ -927,7 +927,7 @@ impl PaintableSink {
|
|||
Some(gst_app_context) => gst_app_context,
|
||||
};
|
||||
|
||||
display_ctx_guard.replace(gst_display);
|
||||
display_guard.replace(gst_display);
|
||||
app_ctx_guard.replace(gst_app_context);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue