mirror of
https://github.com/RPCSX/rpcsx.git
synced 2024-11-23 03:19:47 +00:00
ps5: dce: implement buffer in use reporting
This commit is contained in:
parent
e92dd13d58
commit
8559a3d5dd
@ -356,6 +356,14 @@ static orbis::ErrorCode dce_ioctl(orbis::File *file, std::uint64_t request,
|
||||
return {};
|
||||
}
|
||||
|
||||
if (args->id == 0x33) {
|
||||
if (args->arg2 == 0 && args->ptr == nullptr && args->arg5 == 0 &&
|
||||
args->arg6 == 0) {
|
||||
gpuCtx.bufferInUseAddress[thread->tproc->vmId] = args->size;
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
ORBIS_LOG_FATAL("dce: unimplemented 0x80308217 request", args->id,
|
||||
args->padding, args->arg2, args->ptr, args->size,
|
||||
args->arg5, args->arg6);
|
||||
|
Loading…
Reference in New Issue
Block a user