drisw: Use separate drisw_loader_funcs for shm
authorMichal Srb <msrb@suse.com>
Fri, 23 Nov 2018 16:03:53 +0000 (17:03 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Wed, 5 Dec 2018 13:16:09 +0000 (13:16 +0000)
commit63c0916ada7eed7eddc0453dfbfed3cc7f42ca85
tree361c3b4388d0bb33f41db19428e0608dde29d499
parentc0ac038c97b89a8266375339c297b17b3700dfb0
drisw: Use separate drisw_loader_funcs for shm

The original code was modifying the global drisw_lf variable, which is bad
when there are multiple contexts in single process, each initialized with
different loader. One may support put_image_shm and the other not.

Since there are currently only two possible combinations, lets create two
global tables, one for each. Lets make them const, since we won't change them
and they can be shared.

This fixes crash in VLC. It used two GL contexts (each in different thread), one
was initialized by its Qt GUI, the other by its video output plugin. The first
one set the put_image_shm=drisw_put_image_shm, the second did not, but
since the same structure was used, the drisw_put_image_shm was used too. Then
it crashed because the second loader did not have putImageShm set.

Downstream bug:
https://bugzilla.opensuse.org/show_bug.cgi?id=1113533

v2: Added Fixes and described the VLC bug.

Fixes: 63c427fa71a ("drisw: use putImageShm if available")
Signed-off-by: Michal Srb <msrb@suse.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
src/gallium/state_trackers/dri/drisw.c