Commit graph

159409 commits

Author SHA1 Message Date
Eric Pouech 766085edd2 msvcrt: Correctly support space generation in pointers.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
2022-08-31 17:44:53 +02:00
Alistair Leslie-Hughes 4e1b7cec16 winepulse: Use the predicate to terminate the connect cond_wait loop. 2022-08-31 17:44:53 +02:00
Nikolay Sivov 3a481200a4 mshtml/tests: Fix a typo in test message (Coverity).
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2022-08-31 17:44:53 +02:00
Nikolay Sivov 114a06364b win32u/hook: Fix a leak on earlier return (Coverity).
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2022-08-31 17:44:53 +02:00
Nikolay Sivov 9d58733b3b evr/filter: Initialize interface pointer in GetService() (Coverity).
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2022-08-31 17:44:53 +02:00
Nikolay Sivov bc05d15cf1 mfsrcsnk/wave: Initialize buffer pointer in ProcessSample() (Coverity).
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2022-08-31 17:44:53 +02:00
Nikolay Sivov c6a75d01b5 bcrypt/tests: Use CRT allocation functions.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2022-08-31 17:44:53 +02:00
Francois Gouget c0ad6d745e winspool.drv/tests: Fix the spelling of a variable name. 2022-08-30 22:00:55 +02:00
Francois Gouget b886f6198b mscvpdb: Fix a spelling error in a comment. 2022-08-30 22:00:55 +02:00
Francois Gouget b25b2ed31a dbghelp: Fix a couple of spelling errors in a comment. 2022-08-30 22:00:55 +02:00
Francois Gouget a9e28f130d mshtml/tests: Fix a spelling error in an ok() message. 2022-08-30 22:00:55 +02:00
Rémi Bernon 4d0e202092 wmvcore/tests: Test async reader DedicatedDeliveryThread setting. 2022-08-30 21:38:39 +02:00
Rémi Bernon 18f1e9bd00 wmvcore/tests: Test async reader compressed sample monotonic pts. 2022-08-30 21:38:39 +02:00
Rémi Bernon ea6de10f89 wmvcore/tests: Test that the callback thread is always the same. 2022-08-30 21:38:39 +02:00
Rémi Bernon 161846fb71 wmvcore/tests: Test async reader output settings read / write. 2022-08-30 21:38:39 +02:00
Rémi Bernon 11fe0d115c wmvcore/tests: Test sync reader output settings read / write. 2022-08-30 21:38:39 +02:00
Rémi Bernon 7cd83c9804 wmvcore/tests: Use a constant for test.wmv duration. 2022-08-30 21:38:39 +02:00
Matteo Bruni b996a96981 d3dx10/tests: Add a test for D3DX10PreprocessShaderFromMemory(). 2022-08-30 21:38:39 +02:00
Andrey Gusev 8ffbd56a43 d3dx10: Implement D3DX10PreprocessShaderFromMemory().
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53427
2022-08-30 21:38:39 +02:00
Nikolay Sivov 24e90e4350 evr/filter: Implement pin's connect/disconnect.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2022-08-30 21:38:39 +02:00
Rémi Bernon d82af2f320 winemac.drv: Support enumerating non-primary adapters display modes. 2022-08-30 21:38:39 +02:00
Rémi Bernon 0f014f5030 winemac.drv: Support getting non-primary adapter current display mode. 2022-08-30 21:38:39 +02:00
Rémi Bernon 75fa51e555 winemac.drv: Check for non-primary adapter earlier in macdrv_ChangeDisplaySettingsEx. 2022-08-30 21:38:39 +02:00
Rémi Bernon 66a051d29a winemac.drv: Remove unnecessary macdrv_EnumDisplaySettingsEx declaration. 2022-08-30 21:38:39 +02:00
Rémi Bernon 4571201f2e winemac.drv: Invalidate mode cache when enum flags changes. 2022-08-30 21:38:39 +02:00
Rémi Bernon 557270355f winemac.drv: Rename display modes cache variables. 2022-08-30 21:38:39 +02:00
Piotr Caban 6fc4b80e5d d3dx10/tests: Improve cube textures data testing. 2022-08-30 21:38:39 +02:00
Piotr Caban 13801e63c9 d3dx10: Add support for loading MipLevels data in load_texture_data. 2022-08-30 21:38:39 +02:00
Piotr Caban d1c03fe48a d3dx10: Don't check frame count in load_texture_data. 2022-08-30 21:38:39 +02:00
Piotr Caban 3265019d7c d3dx10: Add support for texture cubes in D3DX10CreateTexture functions. 2022-08-30 21:38:39 +02:00
Piotr Caban 77d0bd8267 d3dx10: Use WIC functions to obtain info about DDS image. 2022-08-30 21:38:39 +02:00
Piotr Caban 82bb308f7a d3dx10: Factor out image format conversion function. 2022-08-30 21:38:39 +02:00
Connor McAdams 00c8117a72 combase: Omit thread ID from the stub manager ipid for MTA objects.
It is possible for a thread that creates an MTA to call
CoUninitialize() and not destroy the MTA if another thread has
entered the MTA in the meantime. If the original thread then creates
an STA, subsequent attempts to find the MTA with 'apartment_findfromtid'
will get the original thread's STA. To avoid this, don't set a TID value
in the stub manager IPID value to indicate that the stub resides in the
MTA.

Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
2022-08-30 21:38:39 +02:00
Jacek Caban 55db1dbb32 user32: Call winproc_init before dpiaware_init.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53601
2022-08-30 21:38:39 +02:00
Zebediah Figura 099f84c4f0 include: Add list_move_after() and list_move_before().
Cherry-picked from vkd3d commit a2996c2d59b140a0a92efc85d43c8f9b59540a12.
2022-08-30 21:38:39 +02:00
Henri Verbeet 57c9bc9056 include: Avoid _t-suffixes.
The _t-suffix is reserved by POSIX.

Cherry-picked from vkd3d commit 78c203b395b1fa4b5918cf881ebba8e9d47ae997.
2022-08-30 21:38:39 +02:00
Alexandre Julliard 96742389f6 include: Add va_list version of the debug printf functions. 2022-08-30 18:33:23 +02:00
Alexandre Julliard 4d0468e316 include: Simplify handling of va_list in debug printf functions. 2022-08-30 18:33:20 +02:00
Alexandre Julliard a8b007da58 kernelbase: Fix error value for PE files without resource.
Avoids spurious "dll is missing" messages from winetest.
2022-08-30 18:30:13 +02:00
Nikolay Sivov f143af50a3 evr/filter: Implement media type testing for QueryAccept().
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2022-08-29 20:04:17 +02:00
Nikolay Sivov 4d7b3c7861 evr/filter: Add IMFTopologyServiceLookup stub.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2022-08-29 20:04:17 +02:00
Nikolay Sivov 27972922c7 evr/filter: Add IMediaEventSink stub.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
2022-08-29 20:04:17 +02:00
Bernhard Kölbl cb2dfa437d windows.media.speech/tests: Skip SpeechRecognitionListConstraint tests on Win10 1709 x32 and below. 2022-08-29 20:04:17 +02:00
Bernhard Kölbl b2b0e7ee99 windows.media.speech/tests: Add basic query tests for SpeechSynthesizerOptions. 2022-08-29 20:04:17 +02:00
Bernhard Kölbl 958b3da947 include/windows.media.speechsynthesis.idl: Add missing interfaces to SpeechSynthesizerOptions runtimeclass.
And their dependencies.
2022-08-29 20:04:17 +02:00
Bernhard Kölbl df9fc8958f windows.media.speech: Add missing async_void_Release implementation.
Signed-off-by: Bernhard Kölbl <besentv@gmail.com>
2022-08-29 20:04:17 +02:00
Bernhard Kölbl 6dc873bcae windows.media.speech/tests: Remove some flaky refcount checks.
They can fail, when the recognition session outlives the test
function, which is expected to happen, as the session is concurrent.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=53458
2022-08-29 20:04:17 +02:00
Alexandre Julliard 81e91afb36 urlmon/tests: Run tests against the gitlab server to avoid redirects. 2022-08-29 16:04:29 +02:00
Alexandre Julliard a4930f003f Release 7.16.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
2022-08-28 14:24:49 +02:00
Gabriel Ivăncescu d9c1f5a41b mshtml: Implement remainingSpace prop for sessionStorage.
And a character quota that matches native.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
2022-08-27 16:53:48 +02:00