-
9327a70f
by Elizabeth Figura at 2026-02-07T12:33:00-06:00
mfplat-streaming-support: Remove patch 0065.
This was probably written for XAudio, but tests show that Win32 XAudio does not
actually support the XMA format (or XBox files in general.)
The WMA decoder also does not actually expose XMA support from GetInputType().
It is likely that this is just incorrect. Even if it is supported, the GStreamer
glue will be trivial to recreate.
-
c72fd8ed
by Elizabeth Figura at 2026-02-07T12:39:03-06:00
wined3d-Accounting: Remove patch.
This has been rejected for using an experimental extension in Wine, which we
avoid. Besides that, it would need to be rewritten plumbed to the CS thread.
It is not clear that it is providing anything in the way of meaningful value to
users anyway.
-
9338f428
by Elizabeth Figura at 2026-02-07T13:03:35-06:00
wined3d-atomic_minmax_merge: Remove patch.
This is not correct. Signed and unsigned min/max are simply different
operations. Performing a signed atomic on an unsigned type, and vice versa, is
impossible in GL.
At best we can detect whether an integer register is only used with unsigned or
signed operations and declare it appropriately. This would be a lot of work,
however, and would not work if both operations are used.
Given the existence of the Vulkan renderer, which does not have this limitation
(and should be supportable for any GPU which exposes atomics anyway), spending
effort trying to implement this behaviour is not worthwhile.
Users affected by bug 52233 should use the Vulkan renderer if possible.
-
391e9e4f
by Elizabeth Figura at 2026-02-07T13:03:45-06:00
wined3d-wined3d_guess_gl_vendor: Remove patch set.
This was for ReactOS. According to opengl.gpuinfo.org, no other system has ever
used the default vendor name. Meanwhile, ReactOS only exposes GL 1.1, which is
no longer enough to run wined3d.
If the situation changes, this patch will be easy to rewrite.