Commit graph

18583 commits

Author SHA1 Message Date
GamingDuck
72185f0086
Readme.md amendments 2023-07-20 08:41:57 +03:00
Megamouse
568e7481d8 sys_fs: use path instead of u8path
Japanese PS3 games often use unicode paths which hard crash the std::filesystem::string() method.
wstring() would work in these cases, but I guess we can just use path() instead of u8path().
2023-07-20 07:22:07 +03:00
DH
fd16ce4f62 [amdgpu] Update buffer in use flag on rpcsx-gpu side
Fixed dangling pointer dereferences
2023-07-20 03:14:52 +03:00
DH
294feb5f9d Added missed xbyak cmake 2023-07-19 23:30:25 +03:00
DH
2ca090345a [orbis-os] Fix freetype initialization 2023-07-19 23:28:23 +03:00
RyzenDew
81adffbddc
readme.md Improvements part 3 2023-07-19 20:43:55 +03:00
RyzenDew
5a3512304b Update readme.md 2023-07-19 19:49:38 +03:00
RyzenDew
eec6189961 Update readme.md
Fixed everything
2023-07-19 19:49:38 +03:00
RyzenDew
b1e33d5455 Update readme.md 2023-07-19 19:49:38 +03:00
RyzenDew
62229a60c2 Update readme.md
Fixed an issue
2023-07-19 19:49:38 +03:00
RyzenDew
4b1bba6fbe Update readme.md
Add other needed instuctions
2023-07-19 19:49:38 +03:00
Ivan Chikish
76db5849a0 [orbis-kernel] Implement basic sys_socketex
Implement sys_socketclose
2023-07-19 18:04:26 +03:00
DH
cea6052e54 [amdgpu] Initial multi queue support 2023-07-19 15:16:38 +03:00
DH
21f9c9b8ec [amdgpu] Add ImageRef utility 2023-07-19 15:02:57 +03:00
DH
31fd85ce1d [rpcsx-os] vm: add getPageProtection api 2023-07-19 15:00:58 +03:00
Darkhost1999
a0297933ce
Create Missing Paths for Dev_USB/HDD0 and mms
In addiytion, fix 2 warnings.
2023-07-19 12:01:44 +03:00
DH
1d55e83965 [rpcsx-os] linker: fix module load order 2023-07-19 01:42:47 +03:00
Eladash
50dad6801b SPU LLVM: Use get_known_bits() in SHUFB 2023-07-18 22:27:45 +03:00
Malcolm Jestadt
ee7475a9d4 SPU LLVM: Handle SHUFB special cases with a lookup table
- Needs 3 instructions to handle the special cases, since x86 lacks an 8 bit simd shift instruction
2023-07-18 22:27:45 +03:00
RyzenDew
b12cc68bf3
Update readme.md (#19)
add libxbyak-dev as a dep
2023-07-18 19:29:58 +03:00
Ivan Chikish
e981bf3f12 [orbis-kernel] Fix sys_evf_wait timeout+ 2023-07-18 19:13:11 +03:00
DH
9818f5dc62 [rpcsx-os] linker: do not ignore symbols 2023-07-18 18:54:05 +03:00
Ivan Chikish
db39768d12 [orbis-kernel] Fix sys_evf_wait timeout 2023-07-18 16:51:34 +03:00
Ivan Chikish
ef879117f9 SysExit: print to stderr 2023-07-18 15:56:22 +03:00
Ivan Chikish
25b3e08b6a [orbis-kernel] Implement sys_evf timeout 2023-07-18 15:55:13 +03:00
Ivan Chikish
dee73342ac [orbis-kernel] sys_stat: check for dirs 2023-07-18 11:11:04 +03:00
Ivan Chikish
ebb6c58199 [orbis-kernel] Revert notice spam 2023-07-18 10:57:30 +03:00
DH
a8d75fd4ab attempt to fix build workflow 2023-07-18 10:57:30 +03:00
DH
8f1992c535 attempt to fix build workflow 2023-07-18 10:56:11 +03:00
Elad Ashkenazi
ba988f1d3f
Qt: Exit And Save Log - toolbar action (#14212)
Fixup main_window::IsValidFile
2023-07-18 05:11:53 +03:00
DH
07ed4b0802 Use org repo for xbyak 2023-07-18 03:40:05 +03:00
DH
f9ac0426bf [rpcsx-gpu] cleanup resources properly 2023-07-18 03:30:16 +03:00
DH
adacb8daa6 [rpcsx-os] Use xbyak to set context 2023-07-18 03:26:33 +03:00
DH
0d86217715 [amdgpu] Support surface format R8 unorm/snorm 2023-07-17 23:07:10 +03:00
Ivan Chikish
2c3137b566 [orbis-kernel] Fix sys_stat hack 2023-07-17 23:01:24 +03:00
Ivan Chikish
439444d72b [orbis-kernel] Initial osem semaphore implementation 2023-07-17 19:57:16 +03:00
Ivan Chikish
00690fd685 [orbis-kernel] Event flag fixes 2023-07-17 19:15:08 +03:00
DH
e9ffa97caa [rpcsx-gpu] Upload missed file 2023-07-17 15:41:58 +03:00
DH
ccf25ba026 [rpcsx-gpu] WIP Basic tiling support
Implement MRT
Fix buffer write back
Cleanup
2023-07-17 15:36:08 +03:00
Ivan Chikish
9462e12735 Implement thread names 2023-07-17 15:22:23 +03:00
Megamouse
db029ed29f Fix default renderer when creating a brand new config 2023-07-17 09:35:26 +02:00
Elad Ashkenazi
41d38975f7 Savestates/sys_fs: Utilize fs::file::get_id to fix an old bug 2023-07-17 08:09:09 +03:00
Eladash
eecadab387 Implement fs::file::get_id()
File descripor ID with 2 provided ways to compare between them:
1. is_mirror_of():
 Test if identical:
  For example: when LHS writes one byte to a file at X offset, RHS file be able to read that exact byte at X offset)

2. is_coherent_with():
 Test if both files point to the same file:
  For example: if a file descriptor pointing to the complete file exists and is being truncated to 0 bytes from non-
  -zero size state: this has to affect both RHS and LHS files.
2023-07-17 08:09:09 +03:00
Eladash
e27e6c0b2d Implement PPU usleep control setting hack 2023-07-17 07:17:11 +03:00
Eladash
30a5d646ec Qt: Minor fixup 2023-07-16 20:16:20 +02:00
Ivan Chikish
a1a91bb557 [orbis-kernel] Implement sys_mname 2023-07-16 19:57:46 +03:00
Eladash
882fb3e049 Qt: Cache drag-and-drop result when moving it 2023-07-16 19:49:55 +03:00
Eladash
0423781363 Qt: Restrict file types for drag-and-drop 2023-07-16 17:43:27 +03:00
Ivan Chikish
71444c236a [orbis-kernel] Reset memory in kfree 2023-07-16 14:53:35 +03:00
Ivan Chikish
b969ce893a [orbis-kernel] Implement sys_nanosleep 2023-07-16 14:52:54 +03:00