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:
Matthew Waters 2019-10-25 21:47:01 +11:00
parent 203ad39d53
commit 7f1e1d0d9d

View file

@ -79,9 +79,9 @@ G_DEFINE_TYPE_WITH_CODE (GstQtSrc, gst_qt_src,
static const gfloat vertical_flip_matrix[] = {
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, 0.0f, 1.0f,
0.0f, 1.0f, 0.0f, 1.0f,
};
static void