Skip to content

Commit

Permalink
update submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
Proton Merge Bot committed Aug 27, 2024
1 parent 95282c8 commit ce80ee2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dxvk-nvapi
Submodule dxvk-nvapi updated 49 files
+3 −0 .gitmodules
+1 −0 external/nvapi
+0 −943 inc/NvApiDriverSettings.c
+0 −1,147 inc/NvApiDriverSettings.h
+348 −129 inc/catch_amalgamated.cpp
+137 −130 inc/catch_amalgamated.hpp
+0 −141 inc/nvShaderExtnEnums.h
+0 −26,654 inc/nvapi.h
+0 −515 inc/nvapi_interface.h
+624 −454 inc/nvml.h
+3 −3 inc/trompeloeil/coro.hpp
+2 −0 inc/trompeloeil/lifetime.hpp
+297 −90 inc/trompeloeil/mock.hpp
+8 −4 inc/trompeloeil/sequence.hpp
+1 −0 meson.build
+1 −1 package-release.sh
+1 −1 src/meson.build
+1 −1 src/nvapi.cpp
+6 −6 src/nvapi_d3d.cpp
+2 −2 src/nvapi_d3d11.cpp
+15 −11 src/nvapi_d3d12.cpp
+2 −2 src/nvapi_disp.cpp
+1 −1 src/nvapi_drs.cpp
+111 −11 src/nvapi_gpu.cpp
+3 −1 src/nvapi_interface.cpp
+4 −1 src/nvapi_private.h
+3 −3 src/nvapi_sys.cpp
+37 −19 src/sysinfo/nvapi_adapter.cpp
+20 −8 src/sysinfo/nvapi_adapter.h
+6 −2 src/sysinfo/nvapi_adapter_registry.cpp
+7 −0 src/sysinfo/nvml.cpp
+2 −0 src/sysinfo/nvml.h
+1 −1 src/util/util_op_code.h
+2 −2 src/util/util_statuscode.h
+1 −1 tests/meson.build
+2 −4 tests/mock_factory.h
+3 −3 tests/nvapi_d3d.cpp
+3 −3 tests/nvapi_d3d11.cpp
+19 −16 tests/nvapi_d3d12.cpp
+1 −1 tests/nvapi_drs.cpp
+132 −13 tests/nvapi_sysinfo.cpp
+6 −6 tests/nvapi_sysinfo_hdr.cpp
+9 −1 tests/nvapi_sysinfo_mocks.h
+33 −3 tests/nvapi_sysinfo_nvml.cpp
+6 −6 tests/nvapi_sysinfo_topo.cpp
+12 −10 tests/nvapi_system.cpp
+53 −3 tests/resource_factory_util.cpp
+5 −2 tests/resource_factory_util.h
+1 −1 version.h.in
2 changes: 1 addition & 1 deletion vkd3d-proton
Submodule vkd3d-proton updated 80 files
+2 −2 .github/workflows/test-build-linux.yml
+5 −0 README.md
+7 −2 VP_D3D12_VKD3D_PROTON_profile.json
+2 −0 include/vkd3d.h
+15 −0 include/vkd3d_device_vkd3d_ext.idl
+4 −0 include/vkd3d_shader.h
+1 −0 include/vkd3d_vk_includes.h
+4 −0 libs/vkd3d-shader/dxil.c
+6 −3 libs/vkd3d/breadcrumbs.c
+696 −267 libs/vkd3d/command.c
+54 −33 libs/vkd3d/device.c
+110 −18 libs/vkd3d/device_vkd3d_ext.c
+16 −10 libs/vkd3d/memory.c
+14 −4 libs/vkd3d/resource.c
+31 −0 libs/vkd3d/state.c
+17 −5 libs/vkd3d/swapchain.c
+42 −25 libs/vkd3d/utils.c
+74 −14 libs/vkd3d/vkd3d_private.h
+4 −0 libs/vkd3d/vulkan_procs.h
+4 −0 profiles/PROFILES.md
+1 −1 programs/vkd3d-rs-parse/main.c
+1 −1 subprojects/dxil-spirv
+17 −17 tests/d3d12_copy.c
+37 −30 tests/d3d12_crosstest.h
+218 −536 tests/d3d12_depth_stencil.c
+1 −1 tests/d3d12_descriptors.c
+0 −1 tests/d3d12_device.c
+165 −0 tests/d3d12_dxvk_interop_device.c
+5 −5 tests/d3d12_mesh_shader.c
+1 −1 tests/d3d12_pso.c
+1 −1 tests/d3d12_pso_blob.c
+4 −4 tests/d3d12_render_target.c
+3 −3 tests/d3d12_resource.c
+2 −2 tests/d3d12_sampler_feedback.c
+1 −1 tests/d3d12_shaders.c
+4 −4 tests/d3d12_sm_advanced.c
+1 −1 tests/d3d12_sparse.c
+2 −0 tests/d3d12_tests.h
+1 −1 tests/d3d12_vrs.c
+1 −0 tests/meson.build
+8 −0 tests/shaders/depth_stencil/cs_load_depth.cs_5_0.hlsl
+8 −0 tests/shaders/depth_stencil/cs_load_stencil.cs_5_0.hlsl
+19 −0 tests/shaders/depth_stencil/headers/cs_load_depth.h
+19 −0 tests/shaders/depth_stencil/headers/cs_load_stencil.h
+17 −0 tests/shaders/depth_stencil/headers/ps_depth_bias_behaviour.h
+20 −0 tests/shaders/depth_stencil/headers/ps_depth_clip.h
+22 −0 tests/shaders/depth_stencil/headers/ps_depth_compare.h
+14 −0 tests/shaders/depth_stencil/headers/ps_depth_stencil_layout.h
+15 −0 tests/shaders/depth_stencil/headers/ps_early_depth_stencil.h
+19 −0 tests/shaders/depth_stencil/headers/ps_front_back.h
+21 −0 tests/shaders/depth_stencil/headers/ps_load_depth.h
+20 −0 tests/shaders/depth_stencil/headers/ps_load_stencil.h
+17 −0 tests/shaders/depth_stencil/headers/ps_read_only_depth.h
+20 −0 tests/shaders/depth_stencil/headers/ps_sample_depth.h
+27 −0 tests/shaders/depth_stencil/headers/ps_sample_depth_stencil.h
+24 −0 tests/shaders/depth_stencil/headers/ps_sample_stencil.h
+78 −0 tests/shaders/depth_stencil/headers/ps_stencil_export.h
+21 −0 tests/shaders/depth_stencil/headers/ps_stencil_export_load.h
+23 −0 tests/shaders/depth_stencil/headers/vs_constant_depth.h
+25 −0 tests/shaders/depth_stencil/headers/vs_depth_bias_behaviour.h
+25 −0 tests/shaders/depth_stencil/headers/vs_depth_stencil_layout.h
+17 −0 tests/shaders/depth_stencil/headers/vs_passthrough.h
+4 −0 tests/shaders/depth_stencil/ps_depth_bias_behaviour.ps_5_0.hlsl
+7 −0 tests/shaders/depth_stencil/ps_depth_clip.ps_5_0.hlsl
+9 −0 tests/shaders/depth_stencil/ps_depth_compare.ps_5_0.hlsl
+3 −0 tests/shaders/depth_stencil/ps_depth_stencil_layout.ps_5_0.hlsl
+7 −0 tests/shaders/depth_stencil/ps_early_depth_stencil.ps_5_0.hlsl
+6 −0 tests/shaders/depth_stencil/ps_front_back.ps_5_0.hlsl
+6 −0 tests/shaders/depth_stencil/ps_load_depth.ps_5_0.hlsl
+6 −0 tests/shaders/depth_stencil/ps_load_stencil.ps_5_0.hlsl
+6 −0 tests/shaders/depth_stencil/ps_read_only_depth.ps_5_0.hlsl
+7 −0 tests/shaders/depth_stencil/ps_sample_depth.ps_5_0.hlsl
+14 −0 tests/shaders/depth_stencil/ps_sample_depth_stencil.ps_5_0.hlsl
+8 −0 tests/shaders/depth_stencil/ps_sample_stencil.ps_5_0.hlsl
+6 −0 tests/shaders/depth_stencil/ps_stencil_export.ps_5_0.ps_6_0.hlsl
+6 −0 tests/shaders/depth_stencil/ps_stencil_export_load.ps_5_0.hlsl
+12 −0 tests/shaders/depth_stencil/vs_constant_depth.vs_5_0.hlsl
+5 −0 tests/shaders/depth_stencil/vs_depth_bias_behaviour.vs_5_0.hlsl
+14 −0 tests/shaders/depth_stencil/vs_depth_stencil_layout.vs_5_0.hlsl
+4 −0 tests/shaders/depth_stencil/vs_passthrough.vs_5_0.hlsl
2 changes: 1 addition & 1 deletion wine
Submodule wine updated 72 files
+66 −8 dlls/d3dx9_36/d3dx9_private.h
+1 −1 dlls/d3dx9_36/effect.c
+5 −3 dlls/d3dx9_36/render.c
+779 −687 dlls/d3dx9_36/surface.c
+538 −0 dlls/d3dx9_36/tests/d3dx9_test_images.h
+2 −0 dlls/d3dx9_36/tests/effect.c
+1 −0 dlls/d3dx9_36/tests/line.c
+1 −0 dlls/d3dx9_36/tests/math.c
+1 −0 dlls/d3dx9_36/tests/shader.c
+250 −234 dlls/d3dx9_36/tests/surface.c
+535 −105 dlls/d3dx9_36/tests/texture.c
+71 −18 dlls/d3dx9_36/tests/volume.c
+0 −138 dlls/d3dx9_36/tests/xfile.c
+172 −181 dlls/d3dx9_36/texture.c
+68 −115 dlls/d3dx9_36/volume.c
+131 −0 dlls/gdi32/tests/font.c
+18 −5 dlls/gdiplus/graphics.c
+0 −2 dlls/gdiplus/tests/graphics.c
+3 −2 dlls/kernel32/kernel32.spec
+68 −0 dlls/kernel32/tests/time.c
+44 −6 dlls/kernelbase/file.c
+3 −3 dlls/kernelbase/kernelbase.spec
+82 −168 dlls/kernelbase/path.c
+1 −0 dlls/kernelbase/process.c
+26 −0 dlls/kernelbase/sync.c
+242 −0 dlls/kernelbase/tests/path.c
+7 −1 dlls/mf/evr.c
+131 −2 dlls/mmdevapi/audiosessionmanager.c
+0 −3 dlls/mmdevapi/client.c
+2 −0 dlls/mmdevapi/mmdevapi_private.h
+23 −0 dlls/mmdevapi/session.c
+76 −1 dlls/mmdevapi/tests/render.c
+23 −14 dlls/nsiproxy.sys/udp.c
+27 −1 dlls/ntdll/loader.c
+46 −0 dlls/ntdll/tests/info.c
+109 −0 dlls/ntdll/tests/pipe.c
+16 −8 dlls/ntdll/unix/debug.c
+55 −0 dlls/ntdll/unix/file.c
+1 −1 dlls/ntdll/unix/socket.c
+92 −0 dlls/ntdll/unix/system.c
+0 −11 dlls/ntdll/unix/virtual.c
+5 −0 dlls/shell32/shell32_classes.idl
+423 −12 dlls/shell32/shlfileop.c
+664 −0 dlls/shell32/tests/shlfileop.c
+19 −19 dlls/user32/tests/msg.c
+1 −0 dlls/win32u/defwnd.c
+38 −9 dlls/win32u/font.c
+15 −10 dlls/win32u/scroll.c
+1 −1 dlls/win32u/sysparams.c
+21 −8 dlls/win32u/window.c
+6 −0 dlls/winebus.sys/bus_udev.c
+2 −2 dlls/winegstreamer/media-converter/lib.c
+2 −2 dlls/winegstreamer/media-converter/videoconv.c
+6 −0 dlls/winegstreamer/quartz_parser.c
+2 −2 dlls/winegstreamer/unix_private.h
+1 −1 dlls/winegstreamer/video_decoder.c
+5 −1 dlls/winegstreamer/wg_transform.c
+21 −7 dlls/winex11.drv/desktop.c
+61 −0 dlls/winex11.drv/display.c
+24 −0 dlls/winex11.drv/fs.c
+1 −1 dlls/winex11.drv/window.c
+3 −1 dlls/winex11.drv/x11drv.h
+4 −0 dlls/wow64/system.c
+49 −0 dlls/ws2_32/tests/sock.c
+1 −0 include/Makefile.in
+1 −1 include/realtimeapiset.h
+115 −0 include/sherrors.h
+17 −0 include/shobjidl_core.idl
+81 −1 server/named_pipe.c
+14 −1 server/protocol.def
+20 −0 server/sock.c
+23 −0 server/trace.c

0 comments on commit ce80ee2

Please sign in to comment.