feat(gx): implement CGxDevice::BufData

This commit is contained in:
phaneron 2023-03-20 18:28:23 -04:00 committed by GitHub
parent 5ccf980c23
commit da23578002
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 24 additions and 0 deletions

View file

@ -194,6 +194,11 @@ int32_t CGxDevice::BufUnlock(CGxBuf* buf, uint32_t size) {
return 1;
}
void CGxDevice::BufData(CGxBuf* buf, const void* data, size_t size, uintptr_t offset) {
buf->unk1E = 1;
buf->unk1F = 0;
}
const CGxCaps& CGxDevice::Caps() const {
return this->m_caps;
}