mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
qmlglsrc: fix vertical flip matrix
Some time ago libgstgl defined the majorness of matrices it uses. The majorness used by qmlglsrc was incompatible with the libgstgl.
This commit is contained in:
parent
203ad39d53
commit
7f1e1d0d9d
1 changed files with 2 additions and 2 deletions
|
@ -79,9 +79,9 @@ G_DEFINE_TYPE_WITH_CODE (GstQtSrc, gst_qt_src,
|
||||||
|
|
||||||
static const gfloat vertical_flip_matrix[] = {
|
static const gfloat vertical_flip_matrix[] = {
|
||||||
1.0f, 0.0f, 0.0f, 0.0f,
|
1.0f, 0.0f, 0.0f, 0.0f,
|
||||||
0.0f, -1.0f, 0.0f, 1.0f,
|
0.0f, -1.0f, 0.0f, 0.0f,
|
||||||
0.0f, 0.0f, 1.0f, 0.0f,
|
0.0f, 0.0f, 1.0f, 0.0f,
|
||||||
0.0f, 0.0f, 0.0f, 1.0f,
|
0.0f, 1.0f, 0.0f, 1.0f,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue