Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CPU core limit for PW: AAT #8008

Open
wants to merge 2 commits into
base: bleeding-edge
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions proton
Original file line number Diff line number Diff line change
Expand Up @@ -1193,6 +1193,7 @@ default_cpu_limit = {
"618970" : 4, # Outcast - Second Contact
"10150" : 8, # Prototype
"2229830" : 1, # Command & Conquer and The Covert Operations
"787480" : 16, # Phoenix Wright: Ace Attorney Trilogy
}

class Session:
Expand Down
2 changes: 1 addition & 1 deletion vkd3d-proton
Submodule vkd3d-proton updated 62 files
+5 −0 README.md
+7 −2 VP_D3D12_VKD3D_PROTON_profile.json
+1 −0 include/vkd3d.h
+15 −0 include/vkd3d_device_vkd3d_ext.idl
+1 −0 include/vkd3d_vk_includes.h
+6 −3 libs/vkd3d/breadcrumbs.c
+95 −49 libs/vkd3d/command.c
+30 −30 libs/vkd3d/device.c
+102 −16 libs/vkd3d/device_vkd3d_ext.c
+11 −1 libs/vkd3d/resource.c
+17 −0 libs/vkd3d/state.c
+42 −25 libs/vkd3d/utils.c
+31 −4 libs/vkd3d/vkd3d_private.h
+4 −0 libs/vkd3d/vulkan_procs.h
+4 −0 profiles/PROFILES.md
+1 −1 subprojects/dxil-spirv
+37 −30 tests/d3d12_crosstest.h
+216 −534 tests/d3d12_depth_stencil.c
+0 −1 tests/d3d12_device.c
+165 −0 tests/d3d12_dxvk_interop_device.c
+2 −0 tests/d3d12_tests.h
+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 64 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
+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
+4 −0 dlls/wow64/system.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
+13 −0 server/protocol.def
+23 −0 server/trace.c