Commit graph

169535 commits

Author SHA1 Message Date
Alexandre Julliard 73a8c06804 jpeg: Import upstream release 9f. 2024-02-17 18:36:56 +01:00
Alexandre Julliard 1e5cc509a7 png: Import upstream release 1.6.42. 2024-02-17 18:36:56 +01:00
Alexandre Julliard 3881edf6f3 mpg123: Import upstream release 1.32.5. 2024-02-17 18:36:56 +01:00
Alexandre Julliard fa42210c49 faudio: Import upstream release 24.02. 2024-02-17 18:18:03 +01:00
Alexandre Julliard 6e9d214096 kernelbase: Update timezone data to version 2024a. 2024-02-17 18:18:03 +01:00
Alex Henrie 90103fa07e where: Implement search with default options.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55282
2024-02-16 23:32:06 +01:00
Daniel Lehman 7c6a50cc46 include: Add some msvcrt declarations. 2024-02-16 23:32:06 +01:00
Paul Gofman 1a4163b686 powershell: Read input command from stdin. 2024-02-16 23:32:06 +01:00
Rémi Bernon 75fa35ad7f mfreadwrite/reader: Repeat pushing / pulling samples while it succeeds. 2024-02-16 23:32:06 +01:00
Rémi Bernon c20fc715e2 mfreadwrite/reader: Introduce new source_reader_(drain|flush)_transform_samples helpers. 2024-02-16 23:32:06 +01:00
Rémi Bernon 8946e6df7e mfreadwrite/reader: Introduce a new source_reader_allocate_stream_sample helper. 2024-02-16 23:32:06 +01:00
Rémi Bernon dd6e8198e0 mfreadwrite/reader: Pass the transform to source_reader_pull_stream_samples. 2024-02-16 23:32:06 +01:00
Rémi Bernon cbb343567a mfreadwrite/reader: Introduce source_reader_queue_sample helper. 2024-02-16 23:32:06 +01:00
Paul Gofman dfe2b717a6 ntdll: Don't hardcode xstate size in exception stack layout. 2024-02-16 23:32:06 +01:00
Paul Gofman 7ae488a2bb ntdll: Don't hardcode xstate size in syscall frame. 2024-02-16 23:32:06 +01:00
Paul Gofman 1e0728c5d4 ntdll: Don't hardcode xstate feature mask. 2024-02-16 23:32:06 +01:00
Alexandre Julliard af4ef5fa02 ntdll: Always set non-volatile pointers for ARM64 unwinding. 2024-02-16 23:32:06 +01:00
Alexandre Julliard 14a290e77d ntdll: Implement CLEAR_UNWOUND_TO_CALL unwinding operation on ARM64. 2024-02-16 23:30:34 +01:00
Alexandre Julliard f4ac9b35c2 ntdll: Implement EC_CONTEXT unwinding operation on ARM64. 2024-02-16 23:30:34 +01:00
Alexandre Julliard 931c1a6887 ntdll: Move ARM64 context conversion functions to a new header. 2024-02-16 23:30:34 +01:00
Alexandre Julliard 41d7baa013 ntdll: Ignore home parameters saving when unwinding epilog on ARM64. 2024-02-16 23:30:08 +01:00
Alexandre Julliard 9cc5ed1802 ntdll/tests: Simplify testing of unwind register values on ARM64. 2024-02-16 16:43:18 +01:00
Alexandre Julliard 18bdd435f1 rpcrt4/tests: Fix some malloc/HeapAlloc mismatches.
Fixes regressions caused by a38e05636d.
2024-02-16 16:43:18 +01:00
Zebediah Figura 4e74e9dfa9 wined3d: Use dynamic state for depth/stencil state if possible. 2024-02-16 16:43:18 +01:00
Zebediah Figura ee620f0277 wined3d: Enable EXT_extended_dynamic_state. 2024-02-16 16:43:18 +01:00
Zebediah Figura a9c9d49a12 wined3d: Make the scissor state dynamic. 2024-02-16 16:43:18 +01:00
Zebediah Figura e8a2f816f0 wined3d: Make the viewport state dynamic. 2024-02-16 16:43:18 +01:00
Zebediah Figura 3b59be59ae wined3d: Set the pipeline key viewport and scissor count at initialization.
It never changes.
2024-02-16 16:43:18 +01:00
Zebediah Figura fabf45a9d8 wined3d/arb: Move fragment program compilation from fragment_prog_arbfp() to arbfp_apply_draw_state(). 2024-02-16 16:43:18 +01:00
Zebediah Figura 17b9c45311 wined3d: Pass a non-const wined3d_context pointer to the FFP *_apply_draw_state() methods. 2024-02-16 16:43:18 +01:00
Zebediah Figura dfb1665b5f wined3d: Pass a wined3d_state pointer to the vp_enable() and fp_enable() methods.
Rename to *_apply_draw_state() per Henri's suggestion.
2024-02-16 16:43:18 +01:00
Zebediah Figura b64cc15d61 wined3d: Introduce a separate fp_disable() method.
Analogous to shader_disable().

We'd like to pass a wined3d_state pointer to fp_enable() to let it handle
actually compiling the fragment pipeline, which doesn't mesh well conceptually
with its use in shader_disable().
2024-02-16 16:43:18 +01:00
Zebediah Figura 9880e29d69 wined3d: Introduce a separate vp_disable() method.
Analogous to shader_disable().

We'd like to pass a wined3d_state pointer to vp_enable() to let it handle
actually compiling the vertex pipeline, which doesn't mesh well conceptually
with its use in shader_disable().
2024-02-16 16:43:18 +01:00
Zebediah Figura c8a98e03c8 wined3d: Merge shader_load_constants() into shader_select().
Arguably there is a benefit here in that it reduces shader backend state
application down to a single method, although whether that is an improvement may
be up for debate.

More saliently, we would like to move FFP state application out of the state
table and into a linear state function. In practice that function will probably
be vp_enable / fp_enable. In that case we will need those functions, and hence
also shader_select(), to be called when more states are dirty.

This does not in itself mean that shader_load_constants() needs to be merged
with shader_select(), but it does remove the primary impetus for keeping them
separate.

Rename to shader_apply_draw_state() to reflect the adjusted purpose, as
suggested by Henri Verbeet.
2024-02-16 16:43:18 +01:00
Eric Pouech 5efab11752 kernel32/tests: Check if thread is suspended in debugger attachment tests.
Looks like thread is suspended until DBG_CONTINUE is sent on thread
creation debug event.

Signed-off-by: Eric Pouech <epouech@codeweavers.com>
2024-02-16 11:36:58 +01:00
Zebediah Figura a97a4af0dd dinput/tests: Return void from test_winmm_joystick(). 2024-02-16 11:36:45 +01:00
Paul Gofman 95e12689e6 webservices: Force debug info in critical sections. 2024-02-16 11:36:30 +01:00
Paul Gofman c65d0a0770 vcomp: Force debug info in critical sections. 2024-02-16 11:36:30 +01:00
Paul Gofman 139d624787 rpcrt4: Force debug info in critical sections. 2024-02-16 11:36:30 +01:00
Paul Gofman 67bea281cc propsys: Force debug info in critical sections. 2024-02-16 11:36:30 +01:00
Paul Gofman 0efd48113e mapi32: Force debug info in critical sections. 2024-02-16 11:36:29 +01:00
Piotr Caban bbf222ca72 wininet: Add support for reading connection settings binary blobs from registry. 2024-02-15 22:01:15 +01:00
Piotr Caban fac555fe68 wininet: Add support for writing connection settings binary blobs from registry. 2024-02-15 22:01:15 +01:00
Piotr Caban 707685642c wininet/tests: Cleanup INTERNET_OPTION_PER_CONNECTION_OPTION tests. 2024-02-15 22:01:15 +01:00
Piotr Caban 9ea0a1072d wininet: Use GlobalAlloc in InternetQueryOption(INTERNET_OPTION_PER_CONNECTION_OPTION).
So the allocator matches with documentation.
2024-02-15 22:01:12 +01:00
Piotr Caban 7dcdfd7bf2 wininet: Fix buffer size calculation in InternetQueryOption(INTERNET_OPTION_PER_CONNECTION_OPTION). 2024-02-15 22:01:12 +01:00
Piotr Caban f54acf3de0 wininet: Test INTERNET_OPTION_PER_CONNECTION_OPTION on process settings.
Setting invalid proxy server has some side effects.
2024-02-15 22:01:10 +01:00
Eric Pouech 9119e3102b winedump: Don't crash on non-effective runtime function entries.
MSVC generates zeroed out entries when EditAndContinue (aka HotPatch)
is enabled.

Signed-off-by: Eric Pouech <epouech@codeweavers.com>
2024-02-15 20:41:49 +01:00
Gabriel Ivăncescu 8a71a4a304 explorer: Set layered style on systray icons before calling into the driver.
Fixes a regression introduced by b5c57b9a62,
which broke the systray integration outside of virtual desktops on some
DEs like XFCE.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
2024-02-15 20:40:55 +01:00
Krzysztof Bogacki 223292da02 win32u: Implement NtGdiDdDDIEnumAdapters2.
Signed-off-by: Krzysztof Bogacki <krzysztof.bogacki@leancode.pl>
2024-02-15 20:39:48 +01:00