[Bug 92059] Missing textures and geometry in "Middle-earth: Shadow of Mordor"

2015-09-20 Thread bugzilla-dae...@freedesktop.org
h on your list? -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150920/8a93446d/attachment.html>

[Bug 92059] Missing textures and geometry in "Middle-earth: Shadow of Mordor"

2015-09-20 Thread bugzilla-dae...@freedesktop.org
<http://lists.freedesktop.org/archives/dri-devel/attachments/20150920/a686b8fe/attachment.html>

[Bug 91930] Program with GtkGLArea widget does not redraw

2015-09-20 Thread bugzilla-dae...@freedesktop.org
mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150920/dfcb8915/attachment.html>

[Bug 92060] Noise at the right border of the screen

2015-09-20 Thread bugzilla-dae...@freedesktop.org
se ask if you need one. Cheers! -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150920/af33e354/attachment.html>

[Bug 92059] Missing textures and geometry in "Middle-earth: Shadow of Mordor"

2015-09-20 Thread bugzilla-dae...@freedesktop.org
part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150920/bf88360a/attachment.html>

[PATCH 2/2] drm/vmwgfx: make vmw_cotable_unbind return an initialized value

2015-09-20 Thread Nicolas Iooss
In vmw_cotable_unbind(), local variable ret is never initialized before being used in a return statement at the end of the function. Fix this by directly returning zero and removing the variable. Signed-off-by: Nicolas Iooss --- drivers/gpu/drm/vmwgfx/vmwgfx_cotable.c | 3 +-- 1 file changed, 1

[PATCH 1/2] drm/vmwgfx: make vmw_kms_helper_dirty return an initialized value

2015-09-20 Thread Nicolas Iooss
In vmw_kms_helper_dirty(), local variable ret is never initialized before begin used in a return statement when vmw_fifo_reserve() fails. Instead of returning an uninitialized value, return -ENOMEM here and remove the useless variable. Signed-off-by: Nicolas Iooss --- drivers/gpu/drm/vmwgfx/vmwg