Module: vkd3d
Branch: master
Commit: b363fdbb21188b740f6289c86121021deaf8810f
URL: https://gitlab.winehq.org/wine/vkd3d/-/commit/b363fdbb21188b740f6289c861210…
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Mon May 27 12:27:12 2024 +0200
include: Add a \since tag for VKD3D_FALSE.
---
include/vkd3d_types.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/vkd3d_types.h b/include/vkd3d_types.h
index 420dd787..706fa7ed 100644
--- a/include/vkd3d_types.h
+++ b/include/vkd3d_types.h
@@ -41,7 +41,7 @@ enum vkd3d_result
{
/** Success. */
VKD3D_OK = 0,
- /** Success as a result of there being nothing to do. */
+ /** Success as a result of there being nothing to do. \since 1.12 */
VKD3D_FALSE = 1,
/** An unspecified failure occurred. */
VKD3D_ERROR = -1,
Module: vkd3d
Branch: master
Commit: 9a3fa67c1f7af66ac5143289bcfca2d941ecdd0e
URL: https://gitlab.winehq.org/wine/vkd3d/-/commit/9a3fa67c1f7af66ac5143289bcfca…
Author: Giovanni Mascellani <gmascellani(a)codeweavers.com>
Date: Sat May 25 14:16:12 2024 +0200
tests: Skip a test that freezes the GPU on NVIDIA.
---
tests/d3d12.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/tests/d3d12.c b/tests/d3d12.c
index 26b6e2b8..75989215 100644
--- a/tests/d3d12.c
+++ b/tests/d3d12.c
@@ -35625,6 +35625,13 @@ static void test_conditional_rendering(void)
for (i = 0; i < 2; ++i)
{
+ if (i == 0 && is_nvidia_device(context.device))
+ {
+ /* I can reproduce that on an NVIDIA Quadro P2000, driver version 535.161.08. */
+ skip("Triggers a GPU freeze on NVIDIA.\n");
+ continue;
+ }
+
ID3D12GraphicsCommandList_SetPipelineState(command_list, pipeline_state);
ID3D12GraphicsCommandList_SetComputeRootSignature(command_list, root_signature);
ID3D12GraphicsCommandList_SetComputeRootConstantBufferView(command_list,