This is ready for review, but may not go upstream until after the release.
--
v3: vkd3d-shader/spirv: Add a parameter name for int64 capability.
tests/shader-runner: Add 64-bit bitwise tests.
tests/shader-runner: Add 64-bit arithmetic tests.
tests/shader-runner: Introduce a 'shader int64' requirement directive.
vkd3d-shader/spirv: Emit an error if 64-bit integers are used.
vkd3d-shader/dxil: Introduce an instruction flag to suppress masking of bitwise shift counts.
https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/489
This series mainly:
- tests and implement fixes for GetStartupInfoW:
+ it should transform PEB's RTL_USER_PROCESS_PARAMETERS on the
fly (instead of caching the results as GetStartupInfoA)
+ it doesn't set all the fields of returned in STARTUPINFOW
(unlike GetStartupInfoA)
- no longer allow console and console handles for non CUI apps:
+ forbid inheritance of console handles for non CUI apps
+ don't create a unix console for initial (non CUI) app
--
v2: ntdll,start: Don't create Unix console for GUI apps.
ntdll: Don't inherit std console handles for non CUI child process.
kernelbase: GetStartupInfoW: set std handle only when USESTDHANDLES is set.
kernelbase: No longer cache GetStartupInfoW() results.
kernel32/tests: Add tests for GetStartupInfo(A|W).
kernel32/tests: Identify untouched fields returned from GetStartupInfo.
https://gitlab.winehq.org/wine/wine/-/merge_requests/4573
Goes atop !477. The last two commits belong to this MR.
--
v5: tests/shader-runner: Add a non-const-indexing test for asfloat() result storage.
vkd3d-shader/spirv: Bitcast if necessary in the spirv_compiler_emit_mov() general implementation.
https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/498