Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
3802344e by Shaun Ren at 2025-08-05T16:06:07+02:00
vkd3d-shader/hlsl: Allocate groupshared registers.
- - - - -
fa560b58 by Shaun Ren at 2025-08-05T16:09:45+02:00
vkd3d-shader/hlsl: Emit dcl_tgsm_raw instructions for raw groupshared variables.
- - - - -
c8d2d40b by Shaun Ren at 2025-08-05T16:18:26+02:00
vkd3d-shader/hlsl: Support loads from groupshared variables.
- - - - -
8d0d8d10 by Shaun Ren at 2025-08-05T16:32:34+02:00
vkd3d-shader/hlsl: Support stores to raw groupshared variables.
- - - - -
4bb880f9 by Shaun Ren at 2025-08-05T16:33:08+02:00
vkd3d-shader/hlsl: Support interlocked operations on non-indexed groupshared variables.
- - - - -
6 changed files:
- libs/vkd3d-shader/hlsl.c
- libs/vkd3d-shader/hlsl.h
- libs/vkd3d-shader/hlsl.y
- libs/vkd3d-shader/hlsl_codegen.c
- libs/vkd3d-shader/tpf.c
- tests/hlsl/tgsm.shader_test
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/e615e435d937f554097dc3a7bed5…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/e615e435d937f554097dc3a7bed5…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
161d463f by Victor Chiletto at 2025-08-05T14:25:44+02:00
tests/hlsl: Add a few extra structured buffer matrix load + swizzle tests.
- - - - -
5dbf8590 by Victor Chiletto at 2025-08-05T14:25:50+02:00
vkd3d-shader/hlsl: Parse SRV structured buffers.
- - - - -
e718546e by Victor Chiletto at 2025-08-05T14:25:50+02:00
vkd3d-shader/hlsl: Transform hlsl_ir_index into structured buffers into field specific hlsl_ir_resource_loads.
- - - - -
e615e435 by Victor Chiletto at 2025-08-05T14:25:50+02:00
vkd3d-shader/hlsl: Split matrix copies from resource loads.
- - - - -
6 changed files:
- libs/vkd3d-shader/hlsl.c
- libs/vkd3d-shader/hlsl.h
- libs/vkd3d-shader/hlsl.l
- libs/vkd3d-shader/hlsl.y
- libs/vkd3d-shader/hlsl_codegen.c
- tests/hlsl/srv-structuredbuffer.shader_test
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/721859005f3edfb3d52bc0f810d1…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/721859005f3edfb3d52bc0f810d1…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
37267588 by Conor McCarthy at 2025-08-05T22:11:10+09:00
mfplat/tests: Add NV12 650 x 850 to image_size_tests.
- - - - -
20b97208 by Conor McCarthy at 2025-08-05T22:11:10+09:00
mf/tests: Add a video processor NV12 test with a width alignment of 2.
GStreamer has a minimum NV12 alignment of 4.
- - - - -
c767b6a6 by Conor McCarthy at 2025-08-05T22:11:12+09:00
winegstreamer: Do not pass a sample size to wg_transform_read_mf().
The size is not used. We could perhaps check it against the maximum size
of the MF sample, but it would be more relevant to check the maximum size
against the size GStreamer requires, which is unknown in this function.
- - - - -
15 changed files:
- + dlls/mf/tests/nv12frame-crop-1d.bmp
- + dlls/mf/tests/nv12frame-crop-2d.bmp
- + dlls/mf/tests/nv12frame-crop.bmp
- dlls/mf/tests/resource.rc
- dlls/mf/tests/transform.c
- dlls/mfplat/tests/mfplat.c
- dlls/winegstreamer/aac_decoder.c
- dlls/winegstreamer/color_convert.c
- dlls/winegstreamer/gst_private.h
- dlls/winegstreamer/resampler.c
- dlls/winegstreamer/video_decoder.c
- dlls/winegstreamer/video_encoder.c
- dlls/winegstreamer/video_processor.c
- dlls/winegstreamer/wg_sample.c
- dlls/winegstreamer/wma_decoder.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/90af2f3f8347588bf8c61de8de8f8…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/90af2f3f8347588bf8c61de8de8f8…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
adc7014a by Hans Leidekker at 2025-08-05T16:30:08+09:00
widl: Use a structure for the version attribute.
- - - - -
0cb84583 by Hans Leidekker at 2025-08-05T16:30:08+09:00
widl: Fix version attribute value.
winmd stores high and low word in opposite order from typelib.
- - - - -
76fe44e0 by Hans Leidekker at 2025-08-05T16:30:11+09:00
widl: Skip array size parameters.
- - - - -
f401d4d2 by Hans Leidekker at 2025-08-05T16:30:11+09:00
widl: Fix encoding of array parameters.
Array return values are encoded as out parameters even if they have a retval attribute.
- - - - -
252b1b30 by Hans Leidekker at 2025-08-05T16:30:12+09:00
widl: Only use 32-bit integers in row structures.
To avoid uninitialized padding.
- - - - -
805de7f1 by Hans Leidekker at 2025-08-05T16:30:14+09:00
widl: Add an implicit apicontract attribute.
midlrt includes this attribute when generating metadata. Adding this attribute when an apicontract
is defined allows us to move member references from types to attributes where they belong.
- - - - -
90af2f3f by Hans Leidekker at 2025-08-05T16:30:15+09:00
widl: Always store member references in attributes.
- - - - -
13 changed files:
- tools/widl/attribute.c
- tools/widl/client.c
- tools/widl/header.c
- tools/widl/metadata.c
- tools/widl/parser.y
- tools/widl/register.c
- tools/widl/server.c
- tools/widl/typetree.c
- tools/widl/utils.h
- tools/widl/widl.h
- tools/widl/widltypes.h
- tools/widl/write_msft.c
- tools/widl/write_sltg.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/81d379e76f98f64d721b2568882ad…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/81d379e76f98f64d721b2568882ad…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
9a79398b by Nikolay Sivov at 2025-08-05T16:15:15+09:00
d2d1: Add initial implementation of CopyFromRenderTarget().
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
89294861 by Nikolay Sivov at 2025-08-05T16:15:15+09:00
d2d1: Improve bitmap methods traces.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
9a42f16b by Nikolay Sivov at 2025-08-05T16:15:15+09:00
d2d1: Implement ComputeArea() for rectangles.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
1254b1d7 by Nikolay Sivov at 2025-08-05T16:15:16+09:00
d2d1: Implement ComputeArea() for transformed geometries.
Signed-off-by: Nikolay Sivov <nsivov(a)codeweavers.com>
- - - - -
4 changed files:
- dlls/d2d1/bitmap.c
- dlls/d2d1/d2d1_private.h
- dlls/d2d1/geometry.c
- dlls/d2d1/tests/d2d1.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/39c19620969c11320ba079379acfd…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/39c19620969c11320ba079379acfd…
You're receiving this email because of your account on gitlab.winehq.org.