core: Fix mmap being unable to map GPU memory

This commit is contained in:
Daniel R. 2024-10-12 16:35:12 +02:00
parent b412cb4cca
commit 7c00ac637a
No known key found for this signature in database
GPG key ID: B8ADC8F57BA18DBA
4 changed files with 23 additions and 24 deletions

View file

@ -28,7 +28,7 @@ enum class MemoryProt : u32 {
CpuReadWrite = 2,
GpuRead = 16,
GpuWrite = 32,
GpuReadWrite = 38,
GpuReadWrite = 48,
};
DECLARE_ENUM_FLAG_OPERATORS(MemoryProt)