diff options
author | Lepton Wu <[email protected]> | 2019-11-01 23:41:29 -0700 |
---|---|---|
committer | Lepton Wu <[email protected]> | 2019-11-06 21:58:28 +0000 |
commit | 5a40e153fd7df58a6419cf2e6211828d7d31cf4e (patch) | |
tree | d6495162ecae1751874262065298aa530e7cb0ea /src/gallium | |
parent | c1c346f1667375e9330aa3f729b97e4a6ece0320 (diff) |
gallium: dri2: Use index as plane number.
This fix wrong color when playing video under Android + virgl
configuration.
Fixes: 2decad495f3 ("gallium/dri2: Support images with multiple planes for modifiers")
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Signed-off-by: Lepton Wu <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/state_trackers/dri/dri2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/dri/dri2.c b/src/gallium/state_trackers/dri/dri2.c index 38b7c3f8b36..2a8ba40c36a 100644 --- a/src/gallium/state_trackers/dri/dri2.c +++ b/src/gallium/state_trackers/dri/dri2.c @@ -940,7 +940,7 @@ dri2_create_image_from_fd(__DRIscreen *_screen, whandles[i].stride = (unsigned)strides[index]; whandles[i].offset = (unsigned)offsets[index]; whandles[i].modifier = modifier; - whandles[i].plane = i; + whandles[i].plane = index; } img = dri2_create_image_from_winsys(_screen, width, height, use, map, |