mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-23 10:30:40 +00:00
video/gtk4: Fix typo in info logs
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1030>
This commit is contained in:
parent
002e3fa171
commit
cf0ba40115
1 changed files with 4 additions and 4 deletions
|
@ -735,7 +735,7 @@ impl PaintableSink {
|
|||
gst::info!(
|
||||
CAT,
|
||||
imp: self,
|
||||
"Initializing GL with for x11 EGL backend and display."
|
||||
"Initializing GL for x11 EGL backend and display."
|
||||
);
|
||||
|
||||
let platform = gst_gl::GLPlatform::EGL;
|
||||
|
@ -778,7 +778,7 @@ impl PaintableSink {
|
|||
gst::info!(
|
||||
CAT,
|
||||
imp: self,
|
||||
"Initializing GL with for x11 GLX backend and display."
|
||||
"Initializing GL for x11 GLX backend and display."
|
||||
);
|
||||
|
||||
let platform = gst_gl::GLPlatform::GLX;
|
||||
|
@ -821,7 +821,7 @@ impl PaintableSink {
|
|||
gst::info!(
|
||||
CAT,
|
||||
imp: self,
|
||||
"Initializing GL with for Wayland EGL backend and display."
|
||||
"Initializing GL for Wayland EGL backend and display."
|
||||
);
|
||||
|
||||
let platform = gst_gl::GLPlatform::EGL;
|
||||
|
@ -868,7 +868,7 @@ impl PaintableSink {
|
|||
gst::info!(
|
||||
CAT,
|
||||
imp: self,
|
||||
"Initializing GL with for macOS backend and display."
|
||||
"Initializing GL for macOS backend and display."
|
||||
);
|
||||
|
||||
let platform = gst_gl::GLPlatform::CGL;
|
||||
|
|
Loading…
Reference in a new issue