forked from eden-emu/eden
Video_Core: Implement a new Buffer Cache
This commit is contained in:
parent
46fb3bfd15
commit
8098f3ba58
9 changed files with 560 additions and 327 deletions
|
@ -19,6 +19,10 @@ inline CacheAddr ToCacheAddr(const void* host_ptr) {
|
|||
return reinterpret_cast<CacheAddr>(host_ptr);
|
||||
}
|
||||
|
||||
inline u8* FromCacheAddr(CacheAddr cache_addr) {
|
||||
return reinterpret_cast<u8*>(cache_addr);
|
||||
}
|
||||
|
||||
namespace Core {
|
||||
class System;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue