mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-25 07:57:11 +02:00
Fix a small size related issue on MapBufferEx and add the BC7U texture format
This commit is contained in:
parent
adeb8793c2
commit
49fd76db0f
6 changed files with 11 additions and 8 deletions
|
@ -140,11 +140,9 @@ namespace Ryujinx.Core.OsHle.Services.Nv.NvGpuAS
|
|||
|
||||
if (Size == 0)
|
||||
{
|
||||
Size = Map.Size;
|
||||
Size = (uint)Map.Size;
|
||||
}
|
||||
|
||||
Size = Map.Size;
|
||||
|
||||
int Result = NvResult.Success;
|
||||
|
||||
//Note: When the fixed offset flag is not set,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue