[mutter] renderer/native: Use the right EGL image parameters for extra planes
- From: Jonas Ådahl <jadahl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter] renderer/native: Use the right EGL image parameters for extra planes
- Date: Thu, 22 Feb 2018 06:05:39 +0000 (UTC)
commit b22875aae971bc28d74a676244fe533b3ccd1462
Author: Louis-Francis Ratté-Boulianne <lfrb collabora com>
Date: Tue Feb 13 14:05:02 2018 -0500
renderer/native: Use the right EGL image parameters for extra planes
There was a typo for modifier parameter of planes 1 & 2.
https://gitlab.gnome.org/GNOME/mutter/issues/18
src/backends/native/meta-renderer-native-gles3.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/src/backends/native/meta-renderer-native-gles3.c
b/src/backends/native/meta-renderer-native-gles3.c
index 3bb09ce76..a606d0ddd 100644
--- a/src/backends/native/meta-renderer-native-gles3.c
+++ b/src/backends/native/meta-renderer-native-gles3.c
@@ -106,9 +106,9 @@ create_egl_image (MetaEgl *egl,
attribs[atti++] = strides[1];
if (has_modifier)
{
- attribs[atti++] = EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT;
+ attribs[atti++] = EGL_DMA_BUF_PLANE1_MODIFIER_LO_EXT;
attribs[atti++] = modifiers[1] & 0xFFFFFFFF;
- attribs[atti++] = EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT;
+ attribs[atti++] = EGL_DMA_BUF_PLANE1_MODIFIER_HI_EXT;
attribs[atti++] = modifiers[1] >> 32;
}
}
@@ -123,9 +123,9 @@ create_egl_image (MetaEgl *egl,
attribs[atti++] = strides[2];
if (has_modifier)
{
- attribs[atti++] = EGL_DMA_BUF_PLANE0_MODIFIER_LO_EXT;
+ attribs[atti++] = EGL_DMA_BUF_PLANE2_MODIFIER_LO_EXT;
attribs[atti++] = modifiers[2] & 0xFFFFFFFF;
- attribs[atti++] = EGL_DMA_BUF_PLANE0_MODIFIER_HI_EXT;
+ attribs[atti++] = EGL_DMA_BUF_PLANE2_MODIFIER_HI_EXT;
attribs[atti++] = modifiers[2] >> 32;
}
}
@@ -190,9 +190,9 @@ meta_renderer_native_gles3_blit_shared_bo (MetaEgl *egl,
unsigned int width;
unsigned int height;
uint32_t i, n_planes;
- uint32_t strides[4] = { 0, };
- uint32_t offsets[4] = { 0, };
- uint64_t modifiers[4] = { 0, };
+ uint32_t strides[4] = { 0 };
+ uint32_t offsets[4] = { 0 };
+ uint64_t modifiers[4] = { 0 };
uint32_t format;
EGLImageKHR egl_image;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]