Module: wine
Branch: master
Commit: dd1a3213026b727cedba8e7efbba8902a11449d5
URL: https://source.winehq.org/git/wine.git/?a=commit;h=dd1a3213026b727cedba8e7e…
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Wed Jan 12 11:34:37 2022 +0300
d3d11/tests: Run test_generate_mips separately.
Signed-off-by: Stefan Dösinger <stefan(a)codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/d3d11/tests/d3d11.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/d3d11/tests/d3d11.c b/dlls/d3d11/tests/d3d11.c
index 2dfb1cc0bf5..0d91d828676 100644
--- a/dlls/d3d11/tests/d3d11.c
+++ b/dlls/d3d11/tests/d3d11.c
@@ -34088,7 +34088,6 @@ START_TEST(d3d11)
test_compressed_format_compatibility);
queue_test(test_clip_distance);
queue_test(test_combined_clip_and_cull_distances);
- queue_test(test_generate_mips);
queue_test(test_alpha_to_coverage);
queue_test(test_unbound_multisample_texture);
queue_test(test_multiple_viewports);
@@ -34116,8 +34115,9 @@ START_TEST(d3d11)
run_queued_tests();
- /* This test fails randomly on Win10 when run together with others
- * on Radeon GPUs. Radeon 560 (0x1002:0x67ef), both on the testbot
- * and Stefan's macbook. */
+ /* There should be no reason these tests can't be run in parallel with the
+ * others, yet they randomly fail or crash when doing so.
+ * (Radeon 560, Windows 10) */
test_instanced_draw();
+ test_generate_mips();
}
Module: wine
Branch: master
Commit: b7808643c51eb4373818b7d50242add9cb3da234
URL: https://source.winehq.org/git/wine.git/?a=commit;h=b7808643c51eb4373818b7d5…
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Wed Jan 12 11:34:36 2022 +0300
d3d10core/tests: Run test_generate_mips separately.
Signed-off-by: Stefan Dösinger <stefan(a)codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/d3d10core/tests/d3d10core.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/dlls/d3d10core/tests/d3d10core.c b/dlls/d3d10core/tests/d3d10core.c
index 287292ebb5f..ffab5cbfca3 100644
--- a/dlls/d3d10core/tests/d3d10core.c
+++ b/dlls/d3d10core/tests/d3d10core.c
@@ -19319,7 +19319,6 @@ START_TEST(d3d10core)
queue_test(test_compressed_format_compatibility);
queue_test(test_clip_distance);
queue_test(test_combined_clip_and_cull_distances);
- queue_test(test_generate_mips);
queue_test(test_alpha_to_coverage);
queue_test(test_unbound_multisample_texture);
queue_test(test_multiple_viewports);
@@ -19338,11 +19337,10 @@ START_TEST(d3d10core)
run_queued_tests();
- /* There should be no reason this test can't be run in parallel with the
- * others, yet it fails when doing so. (AMD Radeon HD 6310, Windows 7) */
+ /* There should be no reason these tests can't be run in parallel with the
+ * others, yet they randomly fail or crash when doing so.
+ * (AMD Radeon HD 6310, Radeon 560, Windows 7 and Windows 10) */
test_stream_output_vs();
- /* Same here, this test fails randomly on Win10 when run together with
- * others on Radeon GPUs. Radeon 560 (0x1002:0x67ef), both on the testbot
- * and Stefan's macbook. */
test_instanced_draw();
+ test_generate_mips();
}
Module: wine
Branch: master
Commit: d416f1c4ce8b5ef6487db2ba60f9cee37f4764cd
URL: https://source.winehq.org/git/wine.git/?a=commit;h=d416f1c4ce8b5ef6487db2ba…
Author: Rémi Bernon <rbernon(a)codeweavers.com>
Date: Wed Jan 12 17:23:58 2022 +0100
user32: Increase the default message buffer size.
The DS4 controllers are sending 563 bytes HID reports by default, this
translates to WM_INPUT messages larger than the default message size.
We would otherwise need an additional server roundtrip on each message,
and these devices are also known to be very verbose and continuously
send HID reports, so we really don't want it.
Signed-off-by: Rémi Bernon <rbernon(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/user32/message.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/user32/message.c b/dlls/user32/message.c
index d7dbc64d796..44b08da79dd 100644
--- a/dlls/user32/message.c
+++ b/dlls/user32/message.c
@@ -2665,7 +2665,7 @@ static int peek_message( MSG *msg, HWND hwnd, UINT first, UINT last, UINT flags,
struct received_message_info info, *old_info;
unsigned int hw_id = 0; /* id of previous hardware message */
void *buffer;
- size_t buffer_size = 256;
+ size_t buffer_size = 1024;
if (!(buffer = HeapAlloc( GetProcessHeap(), 0, buffer_size ))) return -1;