Alexandre Julliard pushed to branch master at wine / wine
Commits:
e5ab1396 by Ziqing Hui at 2025-09-02T23:01:41+02:00
mf/tests: Test GetOutputStatus for video processor.
- - - - -
1af014a3 by Ziqing Hui at 2025-09-02T23:01:41+02:00
winegstreamer: Add semi-stub implementation for video_processor_GetOutputStatus.
- - - - -
2 changed files:
- dlls/mf/tests/transform.c
- dlls/winegstreamer/video_processor.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c80b19d98d54b3355e28afeeb7d5c…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c80b19d98d54b3355e28afeeb7d5c…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
3c006b2a by Henri Verbeet at 2025-09-02T11:36:37+02:00
vkd3d-shader/spirv: Rename vkd3d_spirv_get_type_id() to spirv_get_type_id_for_component_type().
- - - - -
23c042f8 by Henri Verbeet at 2025-09-02T11:36:37+02:00
vkd3d-shader/spirv: Rename vkd3d_spirv_get_type_id_for_data_type() to spirv_get_type_id().
- - - - -
c81b5398 by Henri Verbeet at 2025-09-02T11:36:37+02:00
vkd3d-shader/spirv: Use spirv_get_type_id() in spirv_compiler_get_type_id_for_reg().
- - - - -
b68096f5 by Henri Verbeet at 2025-09-02T11:36:37+02:00
vkd3d-shader/spirv: Use spirv_get_type_id() in spirv_compiler_emit_spec_constant().
- - - - -
d6bed4be by Henri Verbeet at 2025-09-02T11:36:37+02:00
vkd3d-shader/spirv: Use spirv_get_type_id() in spirv_compiler_get_buffer_parameter().
- - - - -
1 changed file:
- libs/vkd3d-shader/spirv.c
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/744a49ea4d236251748dc904ef89…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/744a49ea4d236251748dc904ef89…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
9f2e1222 by Henri Verbeet at 2025-09-02T11:35:33+02:00
vkd3d-shader/ir: Introduce vsir_data_type_get_name().
- - - - -
3063bbe3 by Henri Verbeet at 2025-09-02T11:35:33+02:00
vkd3d-shader/ir: Use vsir_data_type_get_name() in vsir_validate_label_register().
- - - - -
2be53483 by Henri Verbeet at 2025-09-02T11:35:33+02:00
vkd3d-shader/ir: Use vsir_data_type_get_name() in vsir_validate_sampler_register().
- - - - -
34432062 by Henri Verbeet at 2025-09-02T11:35:33+02:00
vkd3d-shader/ir: Use vsir_data_type_get_name() in vsir_validate_resource_register().
- - - - -
744a49ea by Henri Verbeet at 2025-09-02T11:35:34+02:00
vkd3d-shader/ir: Use vsir_data_type_get_name() in vsir_validate_uav_register().
- - - - -
3 changed files:
- libs/vkd3d-shader/d3d_asm.c
- libs/vkd3d-shader/ir.c
- libs/vkd3d-shader/vkd3d_shader_private.h
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/02d70be6ef62e270766569143cc2…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/02d70be6ef62e270766569143cc2…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
887da605 by Elizabeth Figura at 2025-09-02T11:26:30+02:00
vkd3d-shader/hlsl: Initialize the allocator with a type.
- - - - -
933907d3 by Elizabeth Figura at 2025-09-02T11:32:35+02:00
vkd3d-shader/ir: Reallocate temps.
- - - - -
25ae2fcc by Elizabeth Figura at 2025-09-02T11:33:25+02:00
vkd3d-shader/hlsl: Use unique temps for non-indexable variables.
- - - - -
02d70be6 by Elizabeth Figura at 2025-09-02T11:33:25+02:00
vkd3d-shader/hlsl: Use unique temps for per-component operations.
- - - - -
3 changed files:
- libs/vkd3d-shader/hlsl.h
- libs/vkd3d-shader/hlsl_codegen.c
- libs/vkd3d-shader/ir.c
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/979d7e4b85f2fb8db60219f4a267…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/979d7e4b85f2fb8db60219f4a267…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
6b1c07b8 by Gabriel Ivăncescu at 2025-09-01T20:41:35+02:00
mshtml: Implement DOMParser constructor and instance object.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
cc904bf8 by Gabriel Ivăncescu at 2025-09-01T20:41:35+02:00
mshtml: Move document dispex info initialization to create_document_node.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
04850bc3 by Gabriel Ivăncescu at 2025-09-01T20:41:35+02:00
mshtml: Use Gecko's responseXML to create the XML document in IE10 and up.
Native modes IE10 and up implement XML documents as children of the
DocumentPrototype, which have standard IHTMLDocument interfaces. But
previous modes do not, but instead have the IXMLDOMDocument interface
(which suggests it uses msxml like now).
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
2de16339 by Gabriel Ivăncescu at 2025-09-01T20:41:35+02:00
mshtml: Fallback to text/xml for unknown content types ending with +xml in get_mimeType.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
75bc5e47 by Gabriel Ivăncescu at 2025-09-01T20:41:35+02:00
mshtml: Implement anchors prop for XML documents.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
3e0a5e72 by Gabriel Ivăncescu at 2025-09-01T20:41:35+02:00
mshtml: Implement DOMParser's parseFromString.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
10 changed files:
- dlls/mshtml/htmldoc.c
- dlls/mshtml/mshtml_private.h
- dlls/mshtml/nsembed.c
- dlls/mshtml/nsiface.idl
- dlls/mshtml/omnavigator.c
- dlls/mshtml/tests/documentmode.js
- dlls/mshtml/tests/es5.js
- dlls/mshtml/tests/xhr.js
- dlls/mshtml/tests/xmlhttprequest.c
- dlls/mshtml/xmlhttprequest.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6643fbd21d1cd2cb93e3c21e482db…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6643fbd21d1cd2cb93e3c21e482db…
You're receiving this email because of your account on gitlab.winehq.org.