Compare commits
43 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
cdccf89e10 | ||
|
2ca0b17339 | ||
|
47639e6eeb | ||
|
cd78adf07f | ||
|
a3dc295c5f | ||
|
2ef4f92b07 | ||
|
2b6cc4b353 | ||
|
075575200d | ||
|
3a3b51893e | ||
|
44dbab3848 | ||
|
cada4d04ef | ||
|
e9edf0ab7f | ||
|
6e40b64554 | ||
|
1a676ee913 | ||
|
a23d8cb92f | ||
|
ab12fbe963 | ||
|
d0cc13ce0b | ||
|
65c035cdf8 | ||
|
56c5dbe557 | ||
|
5976a5161b | ||
|
3d4dea624d | ||
|
89a274c6a6 | ||
|
c6f8bfed90 | ||
|
9b94662b4b | ||
|
216026c096 | ||
|
7070cf6ae5 | ||
|
9839cd56fb | ||
|
99f46e22e2 | ||
|
22fb8c9d4f | ||
|
2f93ae9a19 | ||
|
3224ddeeb4 | ||
|
446f2854a5 | ||
|
8884d1fd73 | ||
|
268c9aecf8 | ||
|
e916662b0f | ||
|
2ddd3dd4a7 | ||
|
a8f7ababb5 | ||
|
22e3ff06b5 | ||
|
9480e5c5ce | ||
|
0652813b0f | ||
|
e7f2342eba | ||
|
543d75a587 | ||
|
338ff79e1e |
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
|||||||
- { name: win-x64, os: windows-latest, zip_os_name: win_x64 }
|
- { name: win-x64, os: windows-latest, zip_os_name: win_x64 }
|
||||||
- { name: linux-x64, os: ubuntu-latest, zip_os_name: linux_x64 }
|
- { name: linux-x64, os: ubuntu-latest, zip_os_name: linux_x64 }
|
||||||
- { name: linux-arm64, os: ubuntu-latest, zip_os_name: linux_arm64 }
|
- { name: linux-arm64, os: ubuntu-latest, zip_os_name: linux_arm64 }
|
||||||
- { name: osx-x64, os: macOS-latest, zip_os_name: osx_x64 }
|
- { name: osx-x64, os: macos-13, zip_os_name: osx_x64 }
|
||||||
|
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
steps:
|
steps:
|
||||||
@@ -41,12 +41,12 @@ jobs:
|
|||||||
- name: Change config filename
|
- name: Change config filename
|
||||||
run: sed -r --in-place 's/\%\%RYUJINX_CONFIG_FILE_NAME\%\%/PRConfig\.json/g;' src/Ryujinx.Common/ReleaseInformation.cs
|
run: sed -r --in-place 's/\%\%RYUJINX_CONFIG_FILE_NAME\%\%/PRConfig\.json/g;' src/Ryujinx.Common/ReleaseInformation.cs
|
||||||
shell: bash
|
shell: bash
|
||||||
if: github.event_name == 'pull_request' && matrix.platform.os != 'macOS-latest'
|
if: github.event_name == 'pull_request' && matrix.platform.os != 'macos-13'
|
||||||
|
|
||||||
- name: Change config filename for macOS
|
- name: Change config filename for macOS
|
||||||
run: sed -r -i '' 's/\%\%RYUJINX_CONFIG_FILE_NAME\%\%/PRConfig\.json/g;' src/Ryujinx.Common/ReleaseInformation.cs
|
run: sed -r -i '' 's/\%\%RYUJINX_CONFIG_FILE_NAME\%\%/PRConfig\.json/g;' src/Ryujinx.Common/ReleaseInformation.cs
|
||||||
shell: bash
|
shell: bash
|
||||||
if: github.event_name == 'pull_request' && matrix.platform.os == 'macOS-latest'
|
if: github.event_name == 'pull_request' && matrix.platform.os == 'macos-13'
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: dotnet build -c "${{ matrix.configuration }}" -p:Version="${{ env.RYUJINX_BASE_VERSION }}" -p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" -p:ExtraDefineConstants=DISABLE_UPDATER
|
run: dotnet build -c "${{ matrix.configuration }}" -p:Version="${{ env.RYUJINX_BASE_VERSION }}" -p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" -p:ExtraDefineConstants=DISABLE_UPDATER
|
||||||
@@ -61,15 +61,15 @@ jobs:
|
|||||||
|
|
||||||
- name: Publish Ryujinx
|
- name: Publish Ryujinx
|
||||||
run: dotnet publish -c "${{ matrix.configuration }}" -r "${{ matrix.platform.name }}" -o ./publish -p:Version="${{ env.RYUJINX_BASE_VERSION }}" -p:DebugType=embedded -p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" -p:ExtraDefineConstants=DISABLE_UPDATER src/Ryujinx --self-contained true
|
run: dotnet publish -c "${{ matrix.configuration }}" -r "${{ matrix.platform.name }}" -o ./publish -p:Version="${{ env.RYUJINX_BASE_VERSION }}" -p:DebugType=embedded -p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" -p:ExtraDefineConstants=DISABLE_UPDATER src/Ryujinx --self-contained true
|
||||||
if: github.event_name == 'pull_request' && matrix.platform.os != 'macOS-latest'
|
if: github.event_name == 'pull_request' && matrix.platform.os != 'macos-13'
|
||||||
|
|
||||||
- name: Publish Ryujinx.Headless.SDL2
|
- name: Publish Ryujinx.Headless.SDL2
|
||||||
run: dotnet publish -c "${{ matrix.configuration }}" -r "${{ matrix.platform.name }}" -o ./publish_sdl2_headless -p:Version="${{ env.RYUJINX_BASE_VERSION }}" -p:DebugType=embedded -p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" -p:ExtraDefineConstants=DISABLE_UPDATER src/Ryujinx.Headless.SDL2 --self-contained true
|
run: dotnet publish -c "${{ matrix.configuration }}" -r "${{ matrix.platform.name }}" -o ./publish_sdl2_headless -p:Version="${{ env.RYUJINX_BASE_VERSION }}" -p:DebugType=embedded -p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" -p:ExtraDefineConstants=DISABLE_UPDATER src/Ryujinx.Headless.SDL2 --self-contained true
|
||||||
if: github.event_name == 'pull_request' && matrix.platform.os != 'macOS-latest'
|
if: github.event_name == 'pull_request' && matrix.platform.os != 'macos-13'
|
||||||
|
|
||||||
- name: Publish Ryujinx.Gtk3
|
- name: Publish Ryujinx.Gtk3
|
||||||
run: dotnet publish -c "${{ matrix.configuration }}" -r "${{ matrix.platform.name }}" -o ./publish_gtk -p:Version="${{ env.RYUJINX_BASE_VERSION }}" -p:DebugType=embedded -p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" -p:ExtraDefineConstants=DISABLE_UPDATER src/Ryujinx.Gtk3 --self-contained true
|
run: dotnet publish -c "${{ matrix.configuration }}" -r "${{ matrix.platform.name }}" -o ./publish_gtk -p:Version="${{ env.RYUJINX_BASE_VERSION }}" -p:DebugType=embedded -p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" -p:ExtraDefineConstants=DISABLE_UPDATER src/Ryujinx.Gtk3 --self-contained true
|
||||||
if: github.event_name == 'pull_request' && matrix.platform.os != 'macOS-latest'
|
if: github.event_name == 'pull_request' && matrix.platform.os != 'macos-13'
|
||||||
|
|
||||||
- name: Set executable bit
|
- name: Set executable bit
|
||||||
run: |
|
run: |
|
||||||
@@ -83,21 +83,21 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: ryujinx-${{ matrix.configuration }}-${{ env.RYUJINX_BASE_VERSION }}+${{ steps.git_short_hash.outputs.result }}-${{ matrix.platform.zip_os_name }}
|
name: ryujinx-${{ matrix.configuration }}-${{ env.RYUJINX_BASE_VERSION }}+${{ steps.git_short_hash.outputs.result }}-${{ matrix.platform.zip_os_name }}
|
||||||
path: publish
|
path: publish
|
||||||
if: github.event_name == 'pull_request' && matrix.platform.os != 'macOS-latest'
|
if: github.event_name == 'pull_request' && matrix.platform.os != 'macos-13'
|
||||||
|
|
||||||
- name: Upload Ryujinx.Headless.SDL2 artifact
|
- name: Upload Ryujinx.Headless.SDL2 artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: sdl2-ryujinx-headless-${{ matrix.configuration }}-${{ env.RYUJINX_BASE_VERSION }}+${{ steps.git_short_hash.outputs.result }}-${{ matrix.platform.zip_os_name }}
|
name: sdl2-ryujinx-headless-${{ matrix.configuration }}-${{ env.RYUJINX_BASE_VERSION }}+${{ steps.git_short_hash.outputs.result }}-${{ matrix.platform.zip_os_name }}
|
||||||
path: publish_sdl2_headless
|
path: publish_sdl2_headless
|
||||||
if: github.event_name == 'pull_request' && matrix.platform.os != 'macOS-latest'
|
if: github.event_name == 'pull_request' && matrix.platform.os != 'macos-13'
|
||||||
|
|
||||||
- name: Upload Ryujinx.Gtk3 artifact
|
- name: Upload Ryujinx.Gtk3 artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: gtk-ryujinx-${{ matrix.configuration }}-${{ env.RYUJINX_BASE_VERSION }}+${{ steps.git_short_hash.outputs.result }}-${{ matrix.platform.zip_os_name }}
|
name: gtk-ryujinx-${{ matrix.configuration }}-${{ env.RYUJINX_BASE_VERSION }}+${{ steps.git_short_hash.outputs.result }}-${{ matrix.platform.zip_os_name }}
|
||||||
path: publish_gtk
|
path: publish_gtk
|
||||||
if: github.event_name == 'pull_request' && matrix.platform.os != 'macOS-latest'
|
if: github.event_name == 'pull_request' && matrix.platform.os != 'macos-13'
|
||||||
|
|
||||||
build_macos:
|
build_macos:
|
||||||
name: macOS Universal (${{ matrix.configuration }})
|
name: macOS Universal (${{ matrix.configuration }})
|
||||||
|
@@ -8,8 +8,8 @@
|
|||||||
<PackageVersion Include="Avalonia.Desktop" Version="11.0.10" />
|
<PackageVersion Include="Avalonia.Desktop" Version="11.0.10" />
|
||||||
<PackageVersion Include="Avalonia.Diagnostics" Version="11.0.10" />
|
<PackageVersion Include="Avalonia.Diagnostics" Version="11.0.10" />
|
||||||
<PackageVersion Include="Avalonia.Markup.Xaml.Loader" Version="11.0.10" />
|
<PackageVersion Include="Avalonia.Markup.Xaml.Loader" Version="11.0.10" />
|
||||||
<PackageVersion Include="Avalonia.Svg" Version="11.0.0.16" />
|
<PackageVersion Include="Avalonia.Svg" Version="11.0.0.18" />
|
||||||
<PackageVersion Include="Avalonia.Svg.Skia" Version="11.0.0.16" />
|
<PackageVersion Include="Avalonia.Svg.Skia" Version="11.0.0.18" />
|
||||||
<PackageVersion Include="CommandLineParser" Version="2.9.1" />
|
<PackageVersion Include="CommandLineParser" Version="2.9.1" />
|
||||||
<PackageVersion Include="Concentus" Version="1.1.7" />
|
<PackageVersion Include="Concentus" Version="1.1.7" />
|
||||||
<PackageVersion Include="DiscordRichPresence" Version="1.2.1.24" />
|
<PackageVersion Include="DiscordRichPresence" Version="1.2.1.24" />
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
<PackageVersion Include="LibHac" Version="0.19.0" />
|
<PackageVersion Include="LibHac" Version="0.19.0" />
|
||||||
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" />
|
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" />
|
||||||
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
|
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
|
||||||
<PackageVersion Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.4.0" />
|
<PackageVersion Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1" />
|
||||||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
||||||
<PackageVersion Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.0" />
|
<PackageVersion Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.0" />
|
||||||
<PackageVersion Include="MsgPack.Cli" Version="1.0.1" />
|
<PackageVersion Include="MsgPack.Cli" Version="1.0.1" />
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
<PackageVersion Include="Silk.NET.Vulkan" Version="2.16.0" />
|
<PackageVersion Include="Silk.NET.Vulkan" Version="2.16.0" />
|
||||||
<PackageVersion Include="Silk.NET.Vulkan.Extensions.EXT" Version="2.16.0" />
|
<PackageVersion Include="Silk.NET.Vulkan.Extensions.EXT" Version="2.16.0" />
|
||||||
<PackageVersion Include="Silk.NET.Vulkan.Extensions.KHR" Version="2.16.0" />
|
<PackageVersion Include="Silk.NET.Vulkan.Extensions.KHR" Version="2.16.0" />
|
||||||
<PackageVersion Include="SixLabors.ImageSharp" Version="2.1.7" />
|
<PackageVersion Include="SixLabors.ImageSharp" Version="2.1.8" />
|
||||||
<PackageVersion Include="SixLabors.ImageSharp.Drawing" Version="1.0.0" />
|
<PackageVersion Include="SixLabors.ImageSharp.Drawing" Version="1.0.0" />
|
||||||
<PackageVersion Include="SPB" Version="0.0.4-build32" />
|
<PackageVersion Include="SPB" Version="0.0.4-build32" />
|
||||||
<PackageVersion Include="System.IO.Hashing" Version="8.0.0" />
|
<PackageVersion Include="System.IO.Hashing" Version="8.0.0" />
|
||||||
|
@@ -36,8 +36,8 @@
|
|||||||
|
|
||||||
## Compatibility
|
## Compatibility
|
||||||
|
|
||||||
As of October 2023, Ryujinx has been tested on approximately 4,200 titles;
|
As of May 2024, Ryujinx has been tested on approximately 4,300 titles;
|
||||||
over 4,150 boot past menus and into gameplay, with roughly 3,500 of those being considered playable.
|
over 4,100 boot past menus and into gameplay, with roughly 3,550 of those being considered playable.
|
||||||
|
|
||||||
You can check out the compatibility list [here](https://github.com/Ryujinx/Ryujinx-Games-List/issues).
|
You can check out the compatibility list [here](https://github.com/Ryujinx/Ryujinx-Games-List/issues).
|
||||||
|
|
||||||
|
@@ -4,6 +4,8 @@
|
|||||||
<s:String x:Key="/Default/CodeStyle/CSharpVarKeywordUsage/ForOtherTypes/@EntryValue">UseExplicitType</s:String>
|
<s:String x:Key="/Default/CodeStyle/CSharpVarKeywordUsage/ForOtherTypes/@EntryValue">UseExplicitType</s:String>
|
||||||
<s:String x:Key="/Default/CodeStyle/CSharpVarKeywordUsage/ForSimpleTypes/@EntryValue">UseExplicitType</s:String>
|
<s:String x:Key="/Default/CodeStyle/CSharpVarKeywordUsage/ForSimpleTypes/@EntryValue">UseExplicitType</s:String>
|
||||||
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=TypesAndNamespaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb"><ExtraRule Prefix="I" Suffix="" Style="AaBb" /></Policy></s:String>
|
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=TypesAndNamespaces/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb"><ExtraRule Prefix="I" Suffix="" Style="AaBb" /></Policy></s:String>
|
||||||
|
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=a0b4bc4d_002Dd13b_002D4a37_002Db37e_002Dc9c6864e4302/@EntryIndexedValue"><Policy><Descriptor Staticness="Any" AccessRightKinds="Any" Description="Types and namespaces"><ElementKinds><Kind Name="NAMESPACE" /><Kind Name="CLASS" /><Kind Name="STRUCT" /><Kind Name="ENUM" /><Kind Name="DELEGATE" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb"><ExtraRule Prefix="I" Suffix="" Style="AaBb" /></Policy></Policy></s:String>
|
||||||
|
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EPredefinedNamingRulesToUserRulesUpgrade/@EntryIndexedValue">True</s:Boolean>
|
||||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=ASET/@EntryIndexedValue">True</s:Boolean>
|
<s:Boolean x:Key="/Default/UserDictionary/Words/=ASET/@EntryIndexedValue">True</s:Boolean>
|
||||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Astc/@EntryIndexedValue">True</s:Boolean>
|
<s:Boolean x:Key="/Default/UserDictionary/Words/=Astc/@EntryIndexedValue">True</s:Boolean>
|
||||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Luma/@EntryIndexedValue">True</s:Boolean>
|
<s:Boolean x:Key="/Default/UserDictionary/Words/=Luma/@EntryIndexedValue">True</s:Boolean>
|
||||||
|
@@ -2426,7 +2426,11 @@ namespace ARMeilleure.Instructions
|
|||||||
}
|
}
|
||||||
else if (Optimizations.FastFP && Optimizations.UseSse41 && sizeF == 0)
|
else if (Optimizations.FastFP && Optimizations.UseSse41 && sizeF == 0)
|
||||||
{
|
{
|
||||||
Operand res = EmitSse41Round32Exp8OpF(context, context.AddIntrinsic(Intrinsic.X86Rsqrtss, GetVec(op.Rn)), scalar: true);
|
// RSQRTSS handles subnormals as zero, which differs from Arm, so we can't use it here.
|
||||||
|
|
||||||
|
Operand res = context.AddIntrinsic(Intrinsic.X86Sqrtss, GetVec(op.Rn));
|
||||||
|
res = context.AddIntrinsic(Intrinsic.X86Rcpss, res);
|
||||||
|
res = EmitSse41Round32Exp8OpF(context, res, scalar: true);
|
||||||
|
|
||||||
context.Copy(GetVec(op.Rd), context.VectorZeroUpper96(res));
|
context.Copy(GetVec(op.Rd), context.VectorZeroUpper96(res));
|
||||||
}
|
}
|
||||||
@@ -2451,7 +2455,11 @@ namespace ARMeilleure.Instructions
|
|||||||
}
|
}
|
||||||
else if (Optimizations.FastFP && Optimizations.UseSse41 && sizeF == 0)
|
else if (Optimizations.FastFP && Optimizations.UseSse41 && sizeF == 0)
|
||||||
{
|
{
|
||||||
Operand res = EmitSse41Round32Exp8OpF(context, context.AddIntrinsic(Intrinsic.X86Rsqrtps, GetVec(op.Rn)), scalar: false);
|
// RSQRTPS handles subnormals as zero, which differs from Arm, so we can't use it here.
|
||||||
|
|
||||||
|
Operand res = context.AddIntrinsic(Intrinsic.X86Sqrtps, GetVec(op.Rn));
|
||||||
|
res = context.AddIntrinsic(Intrinsic.X86Rcpps, res);
|
||||||
|
res = EmitSse41Round32Exp8OpF(context, res, scalar: false);
|
||||||
|
|
||||||
if (op.RegisterSize == RegisterSize.Simd64)
|
if (op.RegisterSize == RegisterSize.Simd64)
|
||||||
{
|
{
|
||||||
|
@@ -29,7 +29,7 @@ namespace ARMeilleure.Translation.PTC
|
|||||||
private const string OuterHeaderMagicString = "PTCohd\0\0";
|
private const string OuterHeaderMagicString = "PTCohd\0\0";
|
||||||
private const string InnerHeaderMagicString = "PTCihd\0\0";
|
private const string InnerHeaderMagicString = "PTCihd\0\0";
|
||||||
|
|
||||||
private const uint InternalVersion = 6613; //! To be incremented manually for each change to the ARMeilleure project.
|
private const uint InternalVersion = 6634; //! To be incremented manually for each change to the ARMeilleure project.
|
||||||
|
|
||||||
private const string ActualDir = "0";
|
private const string ActualDir = "0";
|
||||||
private const string BackupDir = "1";
|
private const string BackupDir = "1";
|
||||||
@@ -857,8 +857,14 @@ namespace ARMeilleure.Translation.PTC
|
|||||||
|
|
||||||
Stopwatch sw = Stopwatch.StartNew();
|
Stopwatch sw = Stopwatch.StartNew();
|
||||||
|
|
||||||
threads.ForEach((thread) => thread.Start());
|
foreach (var thread in threads)
|
||||||
threads.ForEach((thread) => thread.Join());
|
{
|
||||||
|
thread.Start();
|
||||||
|
}
|
||||||
|
foreach (var thread in threads)
|
||||||
|
{
|
||||||
|
thread.Join();
|
||||||
|
}
|
||||||
|
|
||||||
threads.Clear();
|
threads.Clear();
|
||||||
|
|
||||||
|
@@ -1,8 +1,10 @@
|
|||||||
using Ryujinx.Audio.Backends.Common;
|
using Ryujinx.Audio.Backends.Common;
|
||||||
using Ryujinx.Audio.Common;
|
using Ryujinx.Audio.Common;
|
||||||
using Ryujinx.Common.Logging;
|
using Ryujinx.Common.Logging;
|
||||||
|
using Ryujinx.Common.Memory;
|
||||||
using Ryujinx.Memory;
|
using Ryujinx.Memory;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
|
||||||
@@ -87,7 +89,9 @@ namespace Ryujinx.Audio.Backends.SDL2
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] samples = new byte[frameCount * _bytesPerFrame];
|
using IMemoryOwner<byte> samplesOwner = ByteMemoryPool.Rent(frameCount * _bytesPerFrame);
|
||||||
|
|
||||||
|
Span<byte> samples = samplesOwner.Memory.Span;
|
||||||
|
|
||||||
_ringBuffer.Read(samples, 0, samples.Length);
|
_ringBuffer.Read(samples, 0, samples.Length);
|
||||||
|
|
||||||
|
@@ -1,8 +1,10 @@
|
|||||||
using Ryujinx.Audio.Backends.Common;
|
using Ryujinx.Audio.Backends.Common;
|
||||||
using Ryujinx.Audio.Backends.SoundIo.Native;
|
using Ryujinx.Audio.Backends.SoundIo.Native;
|
||||||
using Ryujinx.Audio.Common;
|
using Ryujinx.Audio.Common;
|
||||||
|
using Ryujinx.Common.Memory;
|
||||||
using Ryujinx.Memory;
|
using Ryujinx.Memory;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Concurrent;
|
using System.Collections.Concurrent;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
@@ -37,7 +39,7 @@ namespace Ryujinx.Audio.Backends.SoundIo
|
|||||||
_outputStream = _driver.OpenStream(RequestedSampleFormat, RequestedSampleRate, RequestedChannelCount);
|
_outputStream = _driver.OpenStream(RequestedSampleFormat, RequestedSampleRate, RequestedChannelCount);
|
||||||
_outputStream.WriteCallback += Update;
|
_outputStream.WriteCallback += Update;
|
||||||
_outputStream.Volume = requestedVolume;
|
_outputStream.Volume = requestedVolume;
|
||||||
// TODO: Setup other callbacks (errors, ect).
|
// TODO: Setup other callbacks (errors, etc.)
|
||||||
|
|
||||||
_outputStream.Open();
|
_outputStream.Open();
|
||||||
}
|
}
|
||||||
@@ -120,7 +122,9 @@ namespace Ryujinx.Audio.Backends.SoundIo
|
|||||||
|
|
||||||
int channelCount = areas.Length;
|
int channelCount = areas.Length;
|
||||||
|
|
||||||
byte[] samples = new byte[frameCount * bytesPerFrame];
|
using IMemoryOwner<byte> samplesOwner = ByteMemoryPool.Rent(frameCount * bytesPerFrame);
|
||||||
|
|
||||||
|
Span<byte> samples = samplesOwner.Memory.Span;
|
||||||
|
|
||||||
_ringBuffer.Read(samples, 0, samples.Length);
|
_ringBuffer.Read(samples, 0, samples.Length);
|
||||||
|
|
||||||
|
@@ -212,7 +212,7 @@ namespace Ryujinx.Audio.Renderer.Server
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Check if the audio renderer should fix the GC-ADPCM context not being provided to the DSP.
|
/// Check if the audio renderer should fix the GC-ADPCM context not being provided to the DSP.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>True if if the audio renderer should fix it.</returns>
|
/// <returns>True if the audio renderer should fix it.</returns>
|
||||||
public bool IsAdpcmLoopContextBugFixed()
|
public bool IsAdpcmLoopContextBugFixed()
|
||||||
{
|
{
|
||||||
return CheckFeatureSupported(UserRevision, BaseRevisionMagic + Revision2);
|
return CheckFeatureSupported(UserRevision, BaseRevisionMagic + Revision2);
|
||||||
|
@@ -159,6 +159,11 @@ namespace Ryujinx.Audio.Renderer.Server.Splitter
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (destinationCount < parameter.DestinationCount)
|
||||||
|
{
|
||||||
|
input.Advance((parameter.DestinationCount - destinationCount) * sizeof(int));
|
||||||
|
}
|
||||||
|
|
||||||
Debug.Assert(parameter.Id == Id);
|
Debug.Assert(parameter.Id == Id);
|
||||||
|
|
||||||
if (parameter.Id == Id)
|
if (parameter.Id == Id)
|
||||||
|
@@ -1,7 +1,5 @@
|
|||||||
namespace Ryujinx.Common.Configuration.Hid
|
namespace Ryujinx.Common.Configuration.Hid
|
||||||
{
|
{
|
||||||
// NOTE: Please don't change this to struct.
|
|
||||||
// This breaks Avalonia's TwoWay binding, which makes us unable to save new KeyboardHotkeys.
|
|
||||||
public class KeyboardHotkeys
|
public class KeyboardHotkeys
|
||||||
{
|
{
|
||||||
public Key ToggleVsync { get; set; }
|
public Key ToggleVsync { get; set; }
|
||||||
|
@@ -44,7 +44,7 @@ namespace Ryujinx.Common.Extensions
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// DO NOT use <paramref name="copyDestinationIfRequiredDoNotUse"/> after calling this method, as it will only
|
/// DO NOT use <paramref name="copyDestinationIfRequiredDoNotUse"/> after calling this method, as it will only
|
||||||
/// contain a value if the value couldn't be referenced directly because it spans multiple <see cref="ReadOnlyMemory{Byte}"/> segments.
|
/// contain a value if the value couldn't be referenced directly because it spans multiple <see cref="ReadOnlyMemory{Byte}"/> segments.
|
||||||
/// To discourage use, it is recommended to to call this method like the following:
|
/// To discourage use, it is recommended to call this method like the following:
|
||||||
/// <c>
|
/// <c>
|
||||||
/// ref readonly MyStruct value = ref sequenceReader.GetRefOrRefToCopy{MyStruct}(out _);
|
/// ref readonly MyStruct value = ref sequenceReader.GetRefOrRefToCopy{MyStruct}(out _);
|
||||||
/// </c>
|
/// </c>
|
||||||
|
@@ -1,89 +0,0 @@
|
|||||||
using System;
|
|
||||||
|
|
||||||
namespace Ryujinx.Common.Memory
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// A struct that can represent both a Span and Array.
|
|
||||||
/// This is useful to keep the Array representation when possible to avoid copies.
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="T">Element Type</typeparam>
|
|
||||||
public readonly ref struct SpanOrArray<T> where T : unmanaged
|
|
||||||
{
|
|
||||||
public readonly T[] Array;
|
|
||||||
public readonly ReadOnlySpan<T> Span;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Create a new SpanOrArray from an array.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="array">Array to store</param>
|
|
||||||
public SpanOrArray(T[] array)
|
|
||||||
{
|
|
||||||
Array = array;
|
|
||||||
Span = ReadOnlySpan<T>.Empty;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Create a new SpanOrArray from a readonly span.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="array">Span to store</param>
|
|
||||||
public SpanOrArray(ReadOnlySpan<T> span)
|
|
||||||
{
|
|
||||||
Array = null;
|
|
||||||
Span = span;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Return the contained array, or convert the span if necessary.
|
|
||||||
/// </summary>
|
|
||||||
/// <returns>An array containing the data</returns>
|
|
||||||
public T[] ToArray()
|
|
||||||
{
|
|
||||||
return Array ?? Span.ToArray();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Return a ReadOnlySpan from either the array or ReadOnlySpan.
|
|
||||||
/// </summary>
|
|
||||||
/// <returns>A ReadOnlySpan containing the data</returns>
|
|
||||||
public ReadOnlySpan<T> AsSpan()
|
|
||||||
{
|
|
||||||
return Array ?? Span;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Cast an array to a SpanOrArray.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="array">Source array</param>
|
|
||||||
public static implicit operator SpanOrArray<T>(T[] array)
|
|
||||||
{
|
|
||||||
return new SpanOrArray<T>(array);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Cast a ReadOnlySpan to a SpanOrArray.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="span">Source ReadOnlySpan</param>
|
|
||||||
public static implicit operator SpanOrArray<T>(ReadOnlySpan<T> span)
|
|
||||||
{
|
|
||||||
return new SpanOrArray<T>(span);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Cast a Span to a SpanOrArray.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="span">Source Span</param>
|
|
||||||
public static implicit operator SpanOrArray<T>(Span<T> span)
|
|
||||||
{
|
|
||||||
return new SpanOrArray<T>(span);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Cast a SpanOrArray to a ReadOnlySpan
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="spanOrArray">Source SpanOrArray</param>
|
|
||||||
public static implicit operator ReadOnlySpan<T>(SpanOrArray<T> spanOrArray)
|
|
||||||
{
|
|
||||||
return spanOrArray.AsSpan();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,5 +1,6 @@
|
|||||||
using Ryujinx.Common.Utilities;
|
using Ryujinx.Common.Utilities;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
@@ -41,6 +42,22 @@ namespace Ryujinx.Common
|
|||||||
return StreamUtils.StreamToBytes(stream);
|
return StreamUtils.StreamToBytes(stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static IMemoryOwner<byte> ReadFileToRentedMemory(string filename)
|
||||||
|
{
|
||||||
|
var (assembly, path) = ResolveManifestPath(filename);
|
||||||
|
|
||||||
|
return ReadFileToRentedMemory(assembly, path);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static IMemoryOwner<byte> ReadFileToRentedMemory(Assembly assembly, string filename)
|
||||||
|
{
|
||||||
|
using var stream = GetStream(assembly, filename);
|
||||||
|
|
||||||
|
return stream is null
|
||||||
|
? null
|
||||||
|
: StreamUtils.StreamToRentedMemory(stream);
|
||||||
|
}
|
||||||
|
|
||||||
public async static Task<byte[]> ReadAsync(Assembly assembly, string filename)
|
public async static Task<byte[]> ReadAsync(Assembly assembly, string filename)
|
||||||
{
|
{
|
||||||
using var stream = GetStream(assembly, filename);
|
using var stream = GetStream(assembly, filename);
|
||||||
|
@@ -1,4 +1,6 @@
|
|||||||
|
using Microsoft.IO;
|
||||||
using Ryujinx.Common.Memory;
|
using Ryujinx.Common.Memory;
|
||||||
|
using System.Buffers;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -9,12 +11,50 @@ namespace Ryujinx.Common.Utilities
|
|||||||
{
|
{
|
||||||
public static byte[] StreamToBytes(Stream input)
|
public static byte[] StreamToBytes(Stream input)
|
||||||
{
|
{
|
||||||
using MemoryStream stream = MemoryStreamManager.Shared.GetStream();
|
using RecyclableMemoryStream output = StreamToRecyclableMemoryStream(input);
|
||||||
|
|
||||||
|
return output.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
input.CopyTo(stream);
|
public static IMemoryOwner<byte> StreamToRentedMemory(Stream input)
|
||||||
|
{
|
||||||
|
if (input is MemoryStream inputMemoryStream)
|
||||||
|
{
|
||||||
|
return MemoryStreamToRentedMemory(inputMemoryStream);
|
||||||
|
}
|
||||||
|
else if (input.CanSeek)
|
||||||
|
{
|
||||||
|
long bytesExpected = input.Length;
|
||||||
|
|
||||||
return stream.ToArray();
|
IMemoryOwner<byte> ownedMemory = ByteMemoryPool.Rent(bytesExpected);
|
||||||
|
|
||||||
|
var destSpan = ownedMemory.Memory.Span;
|
||||||
|
|
||||||
|
int totalBytesRead = 0;
|
||||||
|
|
||||||
|
while (totalBytesRead < bytesExpected)
|
||||||
|
{
|
||||||
|
int bytesRead = input.Read(destSpan[totalBytesRead..]);
|
||||||
|
|
||||||
|
if (bytesRead == 0)
|
||||||
|
{
|
||||||
|
ownedMemory.Dispose();
|
||||||
|
|
||||||
|
throw new IOException($"Tried reading {bytesExpected} but the stream closed after reading {totalBytesRead}.");
|
||||||
|
}
|
||||||
|
|
||||||
|
totalBytesRead += bytesRead;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ownedMemory;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// If input is (non-seekable) then copy twice: first into a RecyclableMemoryStream, then to a rented IMemoryOwner<byte>.
|
||||||
|
using RecyclableMemoryStream output = StreamToRecyclableMemoryStream(input);
|
||||||
|
|
||||||
|
return MemoryStreamToRentedMemory(output);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static async Task<byte[]> StreamToBytesAsync(Stream input, CancellationToken cancellationToken = default)
|
public static async Task<byte[]> StreamToBytesAsync(Stream input, CancellationToken cancellationToken = default)
|
||||||
@@ -25,5 +65,26 @@ namespace Ryujinx.Common.Utilities
|
|||||||
|
|
||||||
return stream.ToArray();
|
return stream.ToArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static IMemoryOwner<byte> MemoryStreamToRentedMemory(MemoryStream input)
|
||||||
|
{
|
||||||
|
input.Position = 0;
|
||||||
|
|
||||||
|
IMemoryOwner<byte> ownedMemory = ByteMemoryPool.Rent(input.Length);
|
||||||
|
|
||||||
|
// Discard the return value because we assume reading a MemoryStream always succeeds completely.
|
||||||
|
_ = input.Read(ownedMemory.Memory.Span);
|
||||||
|
|
||||||
|
return ownedMemory;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static RecyclableMemoryStream StreamToRecyclableMemoryStream(Stream input)
|
||||||
|
{
|
||||||
|
RecyclableMemoryStream stream = MemoryStreamManager.Shared.GetStream();
|
||||||
|
|
||||||
|
input.CopyTo(stream);
|
||||||
|
|
||||||
|
return stream;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -85,6 +85,70 @@ namespace Ryujinx.Cpu.Jit
|
|||||||
_addressSpace = new(Tracking, backingMemory, _nativePageTable, useProtectionMirrors);
|
_addressSpace = new(Tracking, backingMemory, _nativePageTable, useProtectionMirrors);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override ReadOnlySequence<byte> GetReadOnlySequence(ulong va, int size, bool tracked = false)
|
||||||
|
{
|
||||||
|
if (size == 0)
|
||||||
|
{
|
||||||
|
return ReadOnlySequence<byte>.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (tracked)
|
||||||
|
{
|
||||||
|
SignalMemoryTracking(va, (ulong)size, false);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
AssertValidAddressAndSize(va, (ulong)size);
|
||||||
|
}
|
||||||
|
|
||||||
|
ulong endVa = va + (ulong)size;
|
||||||
|
int offset = 0;
|
||||||
|
|
||||||
|
BytesReadOnlySequenceSegment first = null, last = null;
|
||||||
|
|
||||||
|
while (va < endVa)
|
||||||
|
{
|
||||||
|
(MemoryBlock memory, ulong rangeOffset, ulong copySize) = GetMemoryOffsetAndSize(va, (ulong)(size - offset));
|
||||||
|
|
||||||
|
Memory<byte> physicalMemory = memory.GetMemory(rangeOffset, (int)copySize);
|
||||||
|
|
||||||
|
if (first is null)
|
||||||
|
{
|
||||||
|
first = last = new BytesReadOnlySequenceSegment(physicalMemory);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (last.IsContiguousWith(physicalMemory, out nuint contiguousStart, out int contiguousSize))
|
||||||
|
{
|
||||||
|
Memory<byte> contiguousPhysicalMemory = new NativeMemoryManager<byte>(contiguousStart, contiguousSize).Memory;
|
||||||
|
|
||||||
|
last.Replace(contiguousPhysicalMemory);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
last = last.Append(physicalMemory);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
va += copySize;
|
||||||
|
offset += (int)copySize;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new ReadOnlySequence<byte>(first, 0, last, (int)(size - last.RunningIndex));
|
||||||
|
}
|
||||||
|
catch (InvalidMemoryRegionException)
|
||||||
|
{
|
||||||
|
if (_invalidAccessHandler == null || !_invalidAccessHandler(va))
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ReadOnlySequence<byte>.Empty;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public void Map(ulong va, ulong pa, ulong size, MemoryMapFlags flags)
|
public void Map(ulong va, ulong pa, ulong size, MemoryMapFlags flags)
|
||||||
{
|
{
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
|
using Ryujinx.Common.Memory;
|
||||||
using Ryujinx.Memory;
|
using Ryujinx.Memory;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
@@ -143,11 +145,11 @@ namespace Ryujinx.Graphics.Device
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Memory<byte> memory = new byte[size];
|
IMemoryOwner<byte> memoryOwner = ByteMemoryPool.Rent(size);
|
||||||
|
|
||||||
GetSpan(va, size).CopyTo(memory.Span);
|
GetSpan(va, size).CopyTo(memoryOwner.Memory.Span);
|
||||||
|
|
||||||
return new WritableRegion(this, va, memory, tracked: true);
|
return new WritableRegion(this, va, memoryOwner, tracked: true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -36,6 +36,8 @@ namespace Ryujinx.Graphics.GAL
|
|||||||
public readonly bool SupportsMismatchingViewFormat;
|
public readonly bool SupportsMismatchingViewFormat;
|
||||||
public readonly bool SupportsCubemapView;
|
public readonly bool SupportsCubemapView;
|
||||||
public readonly bool SupportsNonConstantTextureOffset;
|
public readonly bool SupportsNonConstantTextureOffset;
|
||||||
|
public readonly bool SupportsQuads;
|
||||||
|
public readonly bool SupportsSeparateSampler;
|
||||||
public readonly bool SupportsShaderBallot;
|
public readonly bool SupportsShaderBallot;
|
||||||
public readonly bool SupportsShaderBarrierDivergence;
|
public readonly bool SupportsShaderBarrierDivergence;
|
||||||
public readonly bool SupportsShaderFloat64;
|
public readonly bool SupportsShaderFloat64;
|
||||||
@@ -92,6 +94,8 @@ namespace Ryujinx.Graphics.GAL
|
|||||||
bool supportsMismatchingViewFormat,
|
bool supportsMismatchingViewFormat,
|
||||||
bool supportsCubemapView,
|
bool supportsCubemapView,
|
||||||
bool supportsNonConstantTextureOffset,
|
bool supportsNonConstantTextureOffset,
|
||||||
|
bool supportsQuads,
|
||||||
|
bool supportsSeparateSampler,
|
||||||
bool supportsShaderBallot,
|
bool supportsShaderBallot,
|
||||||
bool supportsShaderBarrierDivergence,
|
bool supportsShaderBarrierDivergence,
|
||||||
bool supportsShaderFloat64,
|
bool supportsShaderFloat64,
|
||||||
@@ -144,6 +148,8 @@ namespace Ryujinx.Graphics.GAL
|
|||||||
SupportsMismatchingViewFormat = supportsMismatchingViewFormat;
|
SupportsMismatchingViewFormat = supportsMismatchingViewFormat;
|
||||||
SupportsCubemapView = supportsCubemapView;
|
SupportsCubemapView = supportsCubemapView;
|
||||||
SupportsNonConstantTextureOffset = supportsNonConstantTextureOffset;
|
SupportsNonConstantTextureOffset = supportsNonConstantTextureOffset;
|
||||||
|
SupportsQuads = supportsQuads;
|
||||||
|
SupportsSeparateSampler = supportsSeparateSampler;
|
||||||
SupportsShaderBallot = supportsShaderBallot;
|
SupportsShaderBallot = supportsShaderBallot;
|
||||||
SupportsShaderBarrierDivergence = supportsShaderBarrierDivergence;
|
SupportsShaderBarrierDivergence = supportsShaderBarrierDivergence;
|
||||||
SupportsShaderFloat64 = supportsShaderFloat64;
|
SupportsShaderFloat64 = supportsShaderFloat64;
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
using Ryujinx.Common.Memory;
|
using System.Buffers;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.GAL
|
namespace Ryujinx.Graphics.GAL
|
||||||
{
|
{
|
||||||
@@ -17,10 +17,34 @@ namespace Ryujinx.Graphics.GAL
|
|||||||
PinnedSpan<byte> GetData();
|
PinnedSpan<byte> GetData();
|
||||||
PinnedSpan<byte> GetData(int layer, int level);
|
PinnedSpan<byte> GetData(int layer, int level);
|
||||||
|
|
||||||
void SetData(SpanOrArray<byte> data);
|
/// <summary>
|
||||||
void SetData(SpanOrArray<byte> data, int layer, int level);
|
/// Sets the texture data. The data passed as a <see cref="IMemoryOwner{Byte}" /> will be disposed when
|
||||||
void SetData(SpanOrArray<byte> data, int layer, int level, Rectangle<int> region);
|
/// the operation completes.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="data">Texture data bytes</param>
|
||||||
|
void SetData(IMemoryOwner<byte> data);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sets the texture data. The data passed as a <see cref="IMemoryOwner{Byte}" /> will be disposed when
|
||||||
|
/// the operation completes.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="data">Texture data bytes</param>
|
||||||
|
/// <param name="layer">Target layer</param>
|
||||||
|
/// <param name="level">Target level</param>
|
||||||
|
void SetData(IMemoryOwner<byte> data, int layer, int level);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sets the texture data. The data passed as a <see cref="IMemoryOwner{Byte}" /> will be disposed when
|
||||||
|
/// the operation completes.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="data">Texture data bytes</param>
|
||||||
|
/// <param name="layer">Target layer</param>
|
||||||
|
/// <param name="level">Target level</param>
|
||||||
|
/// <param name="region">Target sub-region of the texture to update</param>
|
||||||
|
void SetData(IMemoryOwner<byte> data, int layer, int level, Rectangle<int> region);
|
||||||
|
|
||||||
void SetStorage(BufferRange buffer);
|
void SetStorage(BufferRange buffer);
|
||||||
|
|
||||||
void Release();
|
void Release();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
||||||
using Ryujinx.Graphics.GAL.Multithreading.Resources;
|
using Ryujinx.Graphics.GAL.Multithreading.Resources;
|
||||||
using System;
|
using System.Buffers;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
||||||
{
|
{
|
||||||
@@ -8,9 +8,9 @@ namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
|||||||
{
|
{
|
||||||
public readonly CommandType CommandType => CommandType.TextureSetData;
|
public readonly CommandType CommandType => CommandType.TextureSetData;
|
||||||
private TableRef<ThreadedTexture> _texture;
|
private TableRef<ThreadedTexture> _texture;
|
||||||
private TableRef<byte[]> _data;
|
private TableRef<IMemoryOwner<byte>> _data;
|
||||||
|
|
||||||
public void Set(TableRef<ThreadedTexture> texture, TableRef<byte[]> data)
|
public void Set(TableRef<ThreadedTexture> texture, TableRef<IMemoryOwner<byte>> data)
|
||||||
{
|
{
|
||||||
_texture = texture;
|
_texture = texture;
|
||||||
_data = data;
|
_data = data;
|
||||||
@@ -19,7 +19,7 @@ namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
|||||||
public static void Run(ref TextureSetDataCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
public static void Run(ref TextureSetDataCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
||||||
{
|
{
|
||||||
ThreadedTexture texture = command._texture.Get(threaded);
|
ThreadedTexture texture = command._texture.Get(threaded);
|
||||||
texture.Base.SetData(new ReadOnlySpan<byte>(command._data.Get(threaded)));
|
texture.Base.SetData(command._data.Get(threaded));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
||||||
using Ryujinx.Graphics.GAL.Multithreading.Resources;
|
using Ryujinx.Graphics.GAL.Multithreading.Resources;
|
||||||
using System;
|
using System.Buffers;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
||||||
{
|
{
|
||||||
@@ -8,11 +8,11 @@ namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
|||||||
{
|
{
|
||||||
public readonly CommandType CommandType => CommandType.TextureSetDataSlice;
|
public readonly CommandType CommandType => CommandType.TextureSetDataSlice;
|
||||||
private TableRef<ThreadedTexture> _texture;
|
private TableRef<ThreadedTexture> _texture;
|
||||||
private TableRef<byte[]> _data;
|
private TableRef<IMemoryOwner<byte>> _data;
|
||||||
private int _layer;
|
private int _layer;
|
||||||
private int _level;
|
private int _level;
|
||||||
|
|
||||||
public void Set(TableRef<ThreadedTexture> texture, TableRef<byte[]> data, int layer, int level)
|
public void Set(TableRef<ThreadedTexture> texture, TableRef<IMemoryOwner<byte>> data, int layer, int level)
|
||||||
{
|
{
|
||||||
_texture = texture;
|
_texture = texture;
|
||||||
_data = data;
|
_data = data;
|
||||||
@@ -23,7 +23,7 @@ namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
|||||||
public static void Run(ref TextureSetDataSliceCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
public static void Run(ref TextureSetDataSliceCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
||||||
{
|
{
|
||||||
ThreadedTexture texture = command._texture.Get(threaded);
|
ThreadedTexture texture = command._texture.Get(threaded);
|
||||||
texture.Base.SetData(new ReadOnlySpan<byte>(command._data.Get(threaded)), command._layer, command._level);
|
texture.Base.SetData(command._data.Get(threaded), command._layer, command._level);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
||||||
using Ryujinx.Graphics.GAL.Multithreading.Resources;
|
using Ryujinx.Graphics.GAL.Multithreading.Resources;
|
||||||
using System;
|
using System.Buffers;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
||||||
{
|
{
|
||||||
@@ -8,12 +8,12 @@ namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
|||||||
{
|
{
|
||||||
public readonly CommandType CommandType => CommandType.TextureSetDataSliceRegion;
|
public readonly CommandType CommandType => CommandType.TextureSetDataSliceRegion;
|
||||||
private TableRef<ThreadedTexture> _texture;
|
private TableRef<ThreadedTexture> _texture;
|
||||||
private TableRef<byte[]> _data;
|
private TableRef<IMemoryOwner<byte>> _data;
|
||||||
private int _layer;
|
private int _layer;
|
||||||
private int _level;
|
private int _level;
|
||||||
private Rectangle<int> _region;
|
private Rectangle<int> _region;
|
||||||
|
|
||||||
public void Set(TableRef<ThreadedTexture> texture, TableRef<byte[]> data, int layer, int level, Rectangle<int> region)
|
public void Set(TableRef<ThreadedTexture> texture, TableRef<IMemoryOwner<byte>> data, int layer, int level, Rectangle<int> region)
|
||||||
{
|
{
|
||||||
_texture = texture;
|
_texture = texture;
|
||||||
_data = data;
|
_data = data;
|
||||||
@@ -25,7 +25,7 @@ namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
|||||||
public static void Run(ref TextureSetDataSliceRegionCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
public static void Run(ref TextureSetDataSliceRegionCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
||||||
{
|
{
|
||||||
ThreadedTexture texture = command._texture.Get(threaded);
|
ThreadedTexture texture = command._texture.Get(threaded);
|
||||||
texture.Base.SetData(new ReadOnlySpan<byte>(command._data.Get(threaded)), command._layer, command._level, command._region);
|
texture.Base.SetData(command._data.Get(threaded), command._layer, command._level, command._region);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
using Ryujinx.Common.Memory;
|
|
||||||
using Ryujinx.Graphics.GAL.Multithreading.Commands.Texture;
|
using Ryujinx.Graphics.GAL.Multithreading.Commands.Texture;
|
||||||
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
||||||
|
using System.Buffers;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.GAL.Multithreading.Resources
|
namespace Ryujinx.Graphics.GAL.Multithreading.Resources
|
||||||
{
|
{
|
||||||
@@ -110,21 +110,24 @@ namespace Ryujinx.Graphics.GAL.Multithreading.Resources
|
|||||||
_renderer.QueueCommand();
|
_renderer.QueueCommand();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data)
|
||||||
{
|
{
|
||||||
_renderer.New<TextureSetDataCommand>().Set(Ref(this), Ref(data.ToArray()));
|
_renderer.New<TextureSetDataCommand>().Set(Ref(this), Ref(data));
|
||||||
_renderer.QueueCommand();
|
_renderer.QueueCommand();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data, int layer, int level)
|
||||||
{
|
{
|
||||||
_renderer.New<TextureSetDataSliceCommand>().Set(Ref(this), Ref(data.ToArray()), layer, level);
|
_renderer.New<TextureSetDataSliceCommand>().Set(Ref(this), Ref(data), layer, level);
|
||||||
_renderer.QueueCommand();
|
_renderer.QueueCommand();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level, Rectangle<int> region)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data, int layer, int level, Rectangle<int> region)
|
||||||
{
|
{
|
||||||
_renderer.New<TextureSetDataSliceRegionCommand>().Set(Ref(this), Ref(data.ToArray()), layer, level, region);
|
_renderer.New<TextureSetDataSliceRegionCommand>().Set(Ref(this), Ref(data), layer, level, region);
|
||||||
_renderer.QueueCommand();
|
_renderer.QueueCommand();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -126,6 +126,8 @@ namespace Ryujinx.Graphics.Gpu.Engine.Compute
|
|||||||
ulong samplerPoolGpuVa = ((ulong)_state.State.SetTexSamplerPoolAOffsetUpper << 32) | _state.State.SetTexSamplerPoolB;
|
ulong samplerPoolGpuVa = ((ulong)_state.State.SetTexSamplerPoolAOffsetUpper << 32) | _state.State.SetTexSamplerPoolB;
|
||||||
ulong texturePoolGpuVa = ((ulong)_state.State.SetTexHeaderPoolAOffsetUpper << 32) | _state.State.SetTexHeaderPoolB;
|
ulong texturePoolGpuVa = ((ulong)_state.State.SetTexHeaderPoolAOffsetUpper << 32) | _state.State.SetTexHeaderPoolB;
|
||||||
|
|
||||||
|
int samplerPoolMaximumId = _state.State.SetTexSamplerPoolCMaximumIndex;
|
||||||
|
|
||||||
GpuChannelPoolState poolState = new(
|
GpuChannelPoolState poolState = new(
|
||||||
texturePoolGpuVa,
|
texturePoolGpuVa,
|
||||||
_state.State.SetTexHeaderPoolCMaximumIndex,
|
_state.State.SetTexHeaderPoolCMaximumIndex,
|
||||||
@@ -139,7 +141,7 @@ namespace Ryujinx.Graphics.Gpu.Engine.Compute
|
|||||||
sharedMemorySize,
|
sharedMemorySize,
|
||||||
_channel.BufferManager.HasUnalignedStorageBuffers);
|
_channel.BufferManager.HasUnalignedStorageBuffers);
|
||||||
|
|
||||||
CachedShaderProgram cs = memoryManager.Physical.ShaderCache.GetComputeShader(_channel, poolState, computeState, shaderGpuVa);
|
CachedShaderProgram cs = memoryManager.Physical.ShaderCache.GetComputeShader(_channel, samplerPoolMaximumId, poolState, computeState, shaderGpuVa);
|
||||||
|
|
||||||
_context.Renderer.Pipeline.SetProgram(cs.HostProgram);
|
_context.Renderer.Pipeline.SetProgram(cs.HostProgram);
|
||||||
|
|
||||||
@@ -184,7 +186,7 @@ namespace Ryujinx.Graphics.Gpu.Engine.Compute
|
|||||||
sharedMemorySize,
|
sharedMemorySize,
|
||||||
_channel.BufferManager.HasUnalignedStorageBuffers);
|
_channel.BufferManager.HasUnalignedStorageBuffers);
|
||||||
|
|
||||||
cs = memoryManager.Physical.ShaderCache.GetComputeShader(_channel, poolState, computeState, shaderGpuVa);
|
cs = memoryManager.Physical.ShaderCache.GetComputeShader(_channel, samplerPoolMaximumId, poolState, computeState, shaderGpuVa);
|
||||||
|
|
||||||
_context.Renderer.Pipeline.SetProgram(cs.HostProgram);
|
_context.Renderer.Pipeline.SetProgram(cs.HostProgram);
|
||||||
}
|
}
|
||||||
|
@@ -4,6 +4,7 @@ using Ryujinx.Graphics.Gpu.Engine.Threed;
|
|||||||
using Ryujinx.Graphics.Gpu.Memory;
|
using Ryujinx.Graphics.Gpu.Memory;
|
||||||
using Ryujinx.Graphics.Texture;
|
using Ryujinx.Graphics.Texture;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
@@ -308,7 +309,7 @@ namespace Ryujinx.Graphics.Gpu.Engine.Dma
|
|||||||
|
|
||||||
if (target != null)
|
if (target != null)
|
||||||
{
|
{
|
||||||
byte[] data;
|
IMemoryOwner<byte> data;
|
||||||
if (srcLinear)
|
if (srcLinear)
|
||||||
{
|
{
|
||||||
data = LayoutConverter.ConvertLinearStridedToLinear(
|
data = LayoutConverter.ConvertLinearStridedToLinear(
|
||||||
|
@@ -157,6 +157,9 @@ namespace Ryujinx.Graphics.Gpu.Engine.GPFifo
|
|||||||
}
|
}
|
||||||
else if (operation == SyncpointbOperation.Incr)
|
else if (operation == SyncpointbOperation.Incr)
|
||||||
{
|
{
|
||||||
|
// "Unbind" render targets since a syncpoint increment might indicate future CPU access for the textures.
|
||||||
|
_parent.TextureManager.RefreshModifiedTextures();
|
||||||
|
|
||||||
_context.CreateHostSyncIfNeeded(HostSyncFlags.StrictSyncpoint);
|
_context.CreateHostSyncIfNeeded(HostSyncFlags.StrictSyncpoint);
|
||||||
_context.Synchronization.IncrementSyncpoint(syncpointId);
|
_context.Synchronization.IncrementSyncpoint(syncpointId);
|
||||||
}
|
}
|
||||||
|
@@ -4,6 +4,7 @@ using Ryujinx.Graphics.Gpu.Engine.Dma;
|
|||||||
using Ryujinx.Graphics.Gpu.Engine.InlineToMemory;
|
using Ryujinx.Graphics.Gpu.Engine.InlineToMemory;
|
||||||
using Ryujinx.Graphics.Gpu.Engine.Threed;
|
using Ryujinx.Graphics.Gpu.Engine.Threed;
|
||||||
using Ryujinx.Graphics.Gpu.Engine.Twod;
|
using Ryujinx.Graphics.Gpu.Engine.Twod;
|
||||||
|
using Ryujinx.Graphics.Gpu.Image;
|
||||||
using Ryujinx.Graphics.Gpu.Memory;
|
using Ryujinx.Graphics.Gpu.Memory;
|
||||||
using System;
|
using System;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
@@ -28,6 +29,11 @@ namespace Ryujinx.Graphics.Gpu.Engine.GPFifo
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public MemoryManager MemoryManager => _channel.MemoryManager;
|
public MemoryManager MemoryManager => _channel.MemoryManager;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Channel texture manager.
|
||||||
|
/// </summary>
|
||||||
|
public TextureManager TextureManager => _channel.TextureManager;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 3D Engine.
|
/// 3D Engine.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
using Ryujinx.Common;
|
using Ryujinx.Common;
|
||||||
|
using Ryujinx.Common.Memory;
|
||||||
using Ryujinx.Graphics.Device;
|
using Ryujinx.Graphics.Device;
|
||||||
using Ryujinx.Graphics.Texture;
|
using Ryujinx.Graphics.Texture;
|
||||||
using System;
|
using System;
|
||||||
@@ -198,7 +199,8 @@ namespace Ryujinx.Graphics.Gpu.Engine.InlineToMemory
|
|||||||
if (target != null)
|
if (target != null)
|
||||||
{
|
{
|
||||||
target.SynchronizeMemory();
|
target.SynchronizeMemory();
|
||||||
target.SetData(data, 0, 0, new GAL.Rectangle<int>(_dstX, _dstY, _lineLengthIn / target.Info.FormatInfo.BytesPerPixel, _lineCount));
|
var dataCopy = ByteMemoryPool.RentCopy(data);
|
||||||
|
target.SetData(dataCopy, 0, 0, new GAL.Rectangle<int>(_dstX, _dstY, _lineLengthIn / target.Info.FormatInfo.BytesPerPixel, _lineCount));
|
||||||
target.SignalModified();
|
target.SignalModified();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@@ -1429,7 +1429,18 @@ namespace Ryujinx.Graphics.Gpu.Engine.Threed
|
|||||||
addressesSpan[index] = baseAddress + shader.Offset;
|
addressesSpan[index] = baseAddress + shader.Offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
CachedShaderProgram gs = shaderCache.GetGraphicsShader(ref _state.State, ref _pipeline, _channel, ref _currentSpecState.GetPoolState(), ref _currentSpecState.GetGraphicsState(), addresses);
|
int samplerPoolMaximumId = _state.State.SamplerIndex == SamplerIndex.ViaHeaderIndex
|
||||||
|
? _state.State.TexturePoolState.MaximumId
|
||||||
|
: _state.State.SamplerPoolState.MaximumId;
|
||||||
|
|
||||||
|
CachedShaderProgram gs = shaderCache.GetGraphicsShader(
|
||||||
|
ref _state.State,
|
||||||
|
ref _pipeline,
|
||||||
|
_channel,
|
||||||
|
samplerPoolMaximumId,
|
||||||
|
ref _currentSpecState.GetPoolState(),
|
||||||
|
ref _currentSpecState.GetGraphicsState(),
|
||||||
|
addresses);
|
||||||
|
|
||||||
// Consume the modified flag for spec state so that it isn't checked again.
|
// Consume the modified flag for spec state so that it isn't checked again.
|
||||||
_currentSpecState.SetShader(gs);
|
_currentSpecState.SetShader(gs);
|
||||||
|
@@ -395,8 +395,14 @@ namespace Ryujinx.Graphics.Gpu
|
|||||||
{
|
{
|
||||||
Renderer.CreateSync(SyncNumber, strict);
|
Renderer.CreateSync(SyncNumber, strict);
|
||||||
|
|
||||||
SyncActions.ForEach(action => action.SyncPreAction(syncpoint));
|
foreach (var action in SyncActions)
|
||||||
SyncpointActions.ForEach(action => action.SyncPreAction(syncpoint));
|
{
|
||||||
|
action.SyncPreAction(syncpoint);
|
||||||
|
}
|
||||||
|
foreach (var action in SyncpointActions)
|
||||||
|
{
|
||||||
|
action.SyncPreAction(syncpoint);
|
||||||
|
}
|
||||||
|
|
||||||
SyncNumber++;
|
SyncNumber++;
|
||||||
|
|
||||||
|
@@ -62,8 +62,9 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <param name="channel">GPU channel that the texture pool cache belongs to</param>
|
/// <param name="channel">GPU channel that the texture pool cache belongs to</param>
|
||||||
/// <param name="address">Start address of the texture pool</param>
|
/// <param name="address">Start address of the texture pool</param>
|
||||||
/// <param name="maximumId">Maximum ID of the texture pool</param>
|
/// <param name="maximumId">Maximum ID of the texture pool</param>
|
||||||
|
/// <param name="bindingsArrayCache">Cache of texture array bindings</param>
|
||||||
/// <returns>The found or newly created texture pool</returns>
|
/// <returns>The found or newly created texture pool</returns>
|
||||||
public T FindOrCreate(GpuChannel channel, ulong address, int maximumId)
|
public T FindOrCreate(GpuChannel channel, ulong address, int maximumId, TextureBindingsArrayCache bindingsArrayCache)
|
||||||
{
|
{
|
||||||
// Remove old entries from the cache, if possible.
|
// Remove old entries from the cache, if possible.
|
||||||
while (_pools.Count > MaxCapacity && (_currentTimestamp - _pools.First.Value.CacheTimestamp) >= MinDeltaForRemoval)
|
while (_pools.Count > MaxCapacity && (_currentTimestamp - _pools.First.Value.CacheTimestamp) >= MinDeltaForRemoval)
|
||||||
@@ -73,6 +74,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
_pools.RemoveFirst();
|
_pools.RemoveFirst();
|
||||||
oldestPool.Dispose();
|
oldestPool.Dispose();
|
||||||
oldestPool.CacheNode = null;
|
oldestPool.CacheNode = null;
|
||||||
|
bindingsArrayCache.RemoveAllWithPool(oldestPool);
|
||||||
}
|
}
|
||||||
|
|
||||||
T pool;
|
T pool;
|
||||||
@@ -87,8 +89,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
if (pool.CacheNode != _pools.Last)
|
if (pool.CacheNode != _pools.Last)
|
||||||
{
|
{
|
||||||
_pools.Remove(pool.CacheNode);
|
_pools.Remove(pool.CacheNode);
|
||||||
|
_pools.AddLast(pool.CacheNode);
|
||||||
pool.CacheNode = _pools.AddLast(pool);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pool.CacheTimestamp = _currentTimestamp;
|
pool.CacheTimestamp = _currentTimestamp;
|
||||||
|
@@ -1,5 +1,4 @@
|
|||||||
using Ryujinx.Common.Logging;
|
using Ryujinx.Common.Logging;
|
||||||
using Ryujinx.Common.Memory;
|
|
||||||
using Ryujinx.Graphics.GAL;
|
using Ryujinx.Graphics.GAL;
|
||||||
using Ryujinx.Graphics.Gpu.Memory;
|
using Ryujinx.Graphics.Gpu.Memory;
|
||||||
using Ryujinx.Graphics.Texture;
|
using Ryujinx.Graphics.Texture;
|
||||||
@@ -7,6 +6,7 @@ using Ryujinx.Graphics.Texture.Astc;
|
|||||||
using Ryujinx.Memory;
|
using Ryujinx.Memory;
|
||||||
using Ryujinx.Memory.Range;
|
using Ryujinx.Memory.Range;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@@ -390,7 +390,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
{
|
{
|
||||||
_views.Remove(texture);
|
_views.Remove(texture);
|
||||||
|
|
||||||
Group.RemoveView(texture);
|
Group.RemoveView(_views, texture);
|
||||||
|
|
||||||
texture._viewStorage = texture;
|
texture._viewStorage = texture;
|
||||||
|
|
||||||
@@ -661,7 +661,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
SpanOrArray<byte> result = ConvertToHostCompatibleFormat(data);
|
IMemoryOwner<byte> result = ConvertToHostCompatibleFormat(data);
|
||||||
|
|
||||||
if (ScaleFactor != 1f && AllowScaledSetData())
|
if (ScaleFactor != 1f && AllowScaledSetData())
|
||||||
{
|
{
|
||||||
@@ -684,7 +684,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// Uploads new texture data to the host GPU.
|
/// Uploads new texture data to the host GPU.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="data">New data</param>
|
/// <param name="data">New data</param>
|
||||||
public void SetData(SpanOrArray<byte> data)
|
public void SetData(IMemoryOwner<byte> data)
|
||||||
{
|
{
|
||||||
BlacklistScale();
|
BlacklistScale();
|
||||||
|
|
||||||
@@ -703,7 +703,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <param name="data">New data</param>
|
/// <param name="data">New data</param>
|
||||||
/// <param name="layer">Target layer</param>
|
/// <param name="layer">Target layer</param>
|
||||||
/// <param name="level">Target level</param>
|
/// <param name="level">Target level</param>
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level)
|
public void SetData(IMemoryOwner<byte> data, int layer, int level)
|
||||||
{
|
{
|
||||||
BlacklistScale();
|
BlacklistScale();
|
||||||
|
|
||||||
@@ -721,7 +721,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <param name="layer">Target layer</param>
|
/// <param name="layer">Target layer</param>
|
||||||
/// <param name="level">Target level</param>
|
/// <param name="level">Target level</param>
|
||||||
/// <param name="region">Target sub-region of the texture to update</param>
|
/// <param name="region">Target sub-region of the texture to update</param>
|
||||||
public void SetData(ReadOnlySpan<byte> data, int layer, int level, Rectangle<int> region)
|
public void SetData(IMemoryOwner<byte> data, int layer, int level, Rectangle<int> region)
|
||||||
{
|
{
|
||||||
BlacklistScale();
|
BlacklistScale();
|
||||||
|
|
||||||
@@ -739,7 +739,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <param name="level">Mip level to convert</param>
|
/// <param name="level">Mip level to convert</param>
|
||||||
/// <param name="single">True to convert a single slice</param>
|
/// <param name="single">True to convert a single slice</param>
|
||||||
/// <returns>Converted data</returns>
|
/// <returns>Converted data</returns>
|
||||||
public SpanOrArray<byte> ConvertToHostCompatibleFormat(ReadOnlySpan<byte> data, int level = 0, bool single = false)
|
public IMemoryOwner<byte> ConvertToHostCompatibleFormat(ReadOnlySpan<byte> data, int level = 0, bool single = false)
|
||||||
{
|
{
|
||||||
int width = Info.Width;
|
int width = Info.Width;
|
||||||
int height = Info.Height;
|
int height = Info.Height;
|
||||||
@@ -754,11 +754,11 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
int sliceDepth = single ? 1 : depth;
|
int sliceDepth = single ? 1 : depth;
|
||||||
|
|
||||||
SpanOrArray<byte> result;
|
IMemoryOwner<byte> linear;
|
||||||
|
|
||||||
if (Info.IsLinear)
|
if (Info.IsLinear)
|
||||||
{
|
{
|
||||||
result = LayoutConverter.ConvertLinearStridedToLinear(
|
linear = LayoutConverter.ConvertLinearStridedToLinear(
|
||||||
width,
|
width,
|
||||||
height,
|
height,
|
||||||
Info.FormatInfo.BlockWidth,
|
Info.FormatInfo.BlockWidth,
|
||||||
@@ -770,7 +770,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result = LayoutConverter.ConvertBlockLinearToLinear(
|
linear = LayoutConverter.ConvertBlockLinearToLinear(
|
||||||
width,
|
width,
|
||||||
height,
|
height,
|
||||||
depth,
|
depth,
|
||||||
@@ -787,33 +787,41 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
data);
|
data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IMemoryOwner<byte> result = linear;
|
||||||
|
|
||||||
// Handle compressed cases not supported by the host:
|
// Handle compressed cases not supported by the host:
|
||||||
// - ASTC is usually not supported on desktop cards.
|
// - ASTC is usually not supported on desktop cards.
|
||||||
// - BC4/BC5 is not supported on 3D textures.
|
// - BC4/BC5 is not supported on 3D textures.
|
||||||
if (!_context.Capabilities.SupportsAstcCompression && Format.IsAstc())
|
if (!_context.Capabilities.SupportsAstcCompression && Format.IsAstc())
|
||||||
{
|
{
|
||||||
if (!AstcDecoder.TryDecodeToRgba8P(
|
using (result)
|
||||||
result.ToArray(),
|
|
||||||
Info.FormatInfo.BlockWidth,
|
|
||||||
Info.FormatInfo.BlockHeight,
|
|
||||||
width,
|
|
||||||
height,
|
|
||||||
sliceDepth,
|
|
||||||
levels,
|
|
||||||
layers,
|
|
||||||
out byte[] decoded))
|
|
||||||
{
|
{
|
||||||
string texInfo = $"{Info.Target} {Info.FormatInfo.Format} {Info.Width}x{Info.Height}x{Info.DepthOrLayers} levels {Info.Levels}";
|
if (!AstcDecoder.TryDecodeToRgba8P(
|
||||||
|
result.Memory,
|
||||||
|
Info.FormatInfo.BlockWidth,
|
||||||
|
Info.FormatInfo.BlockHeight,
|
||||||
|
width,
|
||||||
|
height,
|
||||||
|
sliceDepth,
|
||||||
|
levels,
|
||||||
|
layers,
|
||||||
|
out IMemoryOwner<byte> decoded))
|
||||||
|
{
|
||||||
|
string texInfo = $"{Info.Target} {Info.FormatInfo.Format} {Info.Width}x{Info.Height}x{Info.DepthOrLayers} levels {Info.Levels}";
|
||||||
|
|
||||||
Logger.Debug?.Print(LogClass.Gpu, $"Invalid ASTC texture at 0x{Info.GpuAddress:X} ({texInfo}).");
|
Logger.Debug?.Print(LogClass.Gpu, $"Invalid ASTC texture at 0x{Info.GpuAddress:X} ({texInfo}).");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (GraphicsConfig.EnableTextureRecompression)
|
||||||
|
{
|
||||||
|
using (decoded)
|
||||||
|
{
|
||||||
|
return BCnEncoder.EncodeBC7(decoded.Memory, width, height, sliceDepth, levels, layers);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return decoded;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (GraphicsConfig.EnableTextureRecompression)
|
|
||||||
{
|
|
||||||
decoded = BCnEncoder.EncodeBC7(decoded, width, height, sliceDepth, levels, layers);
|
|
||||||
}
|
|
||||||
|
|
||||||
result = decoded;
|
|
||||||
}
|
}
|
||||||
else if (!_context.Capabilities.SupportsEtc2Compression && Format.IsEtc2())
|
else if (!_context.Capabilities.SupportsEtc2Compression && Format.IsEtc2())
|
||||||
{
|
{
|
||||||
@@ -821,16 +829,22 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
{
|
{
|
||||||
case Format.Etc2RgbaSrgb:
|
case Format.Etc2RgbaSrgb:
|
||||||
case Format.Etc2RgbaUnorm:
|
case Format.Etc2RgbaUnorm:
|
||||||
result = ETC2Decoder.DecodeRgba(result, width, height, sliceDepth, levels, layers);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return ETC2Decoder.DecodeRgba(result.Memory.Span, width, height, sliceDepth, levels, layers);
|
||||||
|
}
|
||||||
case Format.Etc2RgbPtaSrgb:
|
case Format.Etc2RgbPtaSrgb:
|
||||||
case Format.Etc2RgbPtaUnorm:
|
case Format.Etc2RgbPtaUnorm:
|
||||||
result = ETC2Decoder.DecodePta(result, width, height, sliceDepth, levels, layers);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return ETC2Decoder.DecodePta(result.Memory.Span, width, height, sliceDepth, levels, layers);
|
||||||
|
}
|
||||||
case Format.Etc2RgbSrgb:
|
case Format.Etc2RgbSrgb:
|
||||||
case Format.Etc2RgbUnorm:
|
case Format.Etc2RgbUnorm:
|
||||||
result = ETC2Decoder.DecodeRgb(result, width, height, sliceDepth, levels, layers);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return ETC2Decoder.DecodeRgb(result.Memory.Span, width, height, sliceDepth, levels, layers);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!TextureCompatibility.HostSupportsBcFormat(Format, Target, _context.Capabilities))
|
else if (!TextureCompatibility.HostSupportsBcFormat(Format, Target, _context.Capabilities))
|
||||||
@@ -839,48 +853,75 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
{
|
{
|
||||||
case Format.Bc1RgbaSrgb:
|
case Format.Bc1RgbaSrgb:
|
||||||
case Format.Bc1RgbaUnorm:
|
case Format.Bc1RgbaUnorm:
|
||||||
result = BCnDecoder.DecodeBC1(result, width, height, sliceDepth, levels, layers);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return BCnDecoder.DecodeBC1(result.Memory.Span, width, height, sliceDepth, levels, layers);
|
||||||
|
}
|
||||||
case Format.Bc2Srgb:
|
case Format.Bc2Srgb:
|
||||||
case Format.Bc2Unorm:
|
case Format.Bc2Unorm:
|
||||||
result = BCnDecoder.DecodeBC2(result, width, height, sliceDepth, levels, layers);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return BCnDecoder.DecodeBC2(result.Memory.Span, width, height, sliceDepth, levels, layers);
|
||||||
|
}
|
||||||
case Format.Bc3Srgb:
|
case Format.Bc3Srgb:
|
||||||
case Format.Bc3Unorm:
|
case Format.Bc3Unorm:
|
||||||
result = BCnDecoder.DecodeBC3(result, width, height, sliceDepth, levels, layers);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return BCnDecoder.DecodeBC3(result.Memory.Span, width, height, sliceDepth, levels, layers);
|
||||||
|
}
|
||||||
case Format.Bc4Snorm:
|
case Format.Bc4Snorm:
|
||||||
case Format.Bc4Unorm:
|
case Format.Bc4Unorm:
|
||||||
result = BCnDecoder.DecodeBC4(result, width, height, sliceDepth, levels, layers, Format == Format.Bc4Snorm);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return BCnDecoder.DecodeBC4(result.Memory.Span, width, height, sliceDepth, levels, layers, Format == Format.Bc4Snorm);
|
||||||
|
}
|
||||||
case Format.Bc5Snorm:
|
case Format.Bc5Snorm:
|
||||||
case Format.Bc5Unorm:
|
case Format.Bc5Unorm:
|
||||||
result = BCnDecoder.DecodeBC5(result, width, height, sliceDepth, levels, layers, Format == Format.Bc5Snorm);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return BCnDecoder.DecodeBC5(result.Memory.Span, width, height, sliceDepth, levels, layers, Format == Format.Bc5Snorm);
|
||||||
|
}
|
||||||
case Format.Bc6HSfloat:
|
case Format.Bc6HSfloat:
|
||||||
case Format.Bc6HUfloat:
|
case Format.Bc6HUfloat:
|
||||||
result = BCnDecoder.DecodeBC6(result, width, height, sliceDepth, levels, layers, Format == Format.Bc6HSfloat);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return BCnDecoder.DecodeBC6(result.Memory.Span, width, height, sliceDepth, levels, layers, Format == Format.Bc6HSfloat);
|
||||||
|
}
|
||||||
case Format.Bc7Srgb:
|
case Format.Bc7Srgb:
|
||||||
case Format.Bc7Unorm:
|
case Format.Bc7Unorm:
|
||||||
result = BCnDecoder.DecodeBC7(result, width, height, sliceDepth, levels, layers);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return BCnDecoder.DecodeBC7(result.Memory.Span, width, height, sliceDepth, levels, layers);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!_context.Capabilities.SupportsR4G4Format && Format == Format.R4G4Unorm)
|
else if (!_context.Capabilities.SupportsR4G4Format && Format == Format.R4G4Unorm)
|
||||||
{
|
{
|
||||||
result = PixelConverter.ConvertR4G4ToR4G4B4A4(result, width);
|
using (result)
|
||||||
|
|
||||||
if (!_context.Capabilities.SupportsR4G4B4A4Format)
|
|
||||||
{
|
{
|
||||||
result = PixelConverter.ConvertR4G4B4A4ToR8G8B8A8(result, width);
|
var converted = PixelConverter.ConvertR4G4ToR4G4B4A4(result.Memory.Span, width);
|
||||||
|
|
||||||
|
if (_context.Capabilities.SupportsR4G4B4A4Format)
|
||||||
|
{
|
||||||
|
return converted;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
using (converted)
|
||||||
|
{
|
||||||
|
return PixelConverter.ConvertR4G4B4A4ToR8G8B8A8(converted.Memory.Span, width);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (Format == Format.R4G4B4A4Unorm)
|
else if (Format == Format.R4G4B4A4Unorm)
|
||||||
{
|
{
|
||||||
if (!_context.Capabilities.SupportsR4G4B4A4Format)
|
if (!_context.Capabilities.SupportsR4G4B4A4Format)
|
||||||
{
|
{
|
||||||
result = PixelConverter.ConvertR4G4B4A4ToR8G8B8A8(result, width);
|
using (result)
|
||||||
|
{
|
||||||
|
return PixelConverter.ConvertR4G4B4A4ToR8G8B8A8(result.Memory.Span, width);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!_context.Capabilities.Supports5BitComponentFormat && Format.Is16BitPacked())
|
else if (!_context.Capabilities.Supports5BitComponentFormat && Format.Is16BitPacked())
|
||||||
@@ -889,19 +930,27 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
{
|
{
|
||||||
case Format.B5G6R5Unorm:
|
case Format.B5G6R5Unorm:
|
||||||
case Format.R5G6B5Unorm:
|
case Format.R5G6B5Unorm:
|
||||||
result = PixelConverter.ConvertR5G6B5ToR8G8B8A8(result, width);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return PixelConverter.ConvertR5G6B5ToR8G8B8A8(result.Memory.Span, width);
|
||||||
|
}
|
||||||
case Format.B5G5R5A1Unorm:
|
case Format.B5G5R5A1Unorm:
|
||||||
case Format.R5G5B5X1Unorm:
|
case Format.R5G5B5X1Unorm:
|
||||||
case Format.R5G5B5A1Unorm:
|
case Format.R5G5B5A1Unorm:
|
||||||
result = PixelConverter.ConvertR5G5B5ToR8G8B8A8(result, width, Format == Format.R5G5B5X1Unorm);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return PixelConverter.ConvertR5G5B5ToR8G8B8A8(result.Memory.Span, width, Format == Format.R5G5B5X1Unorm);
|
||||||
|
}
|
||||||
case Format.A1B5G5R5Unorm:
|
case Format.A1B5G5R5Unorm:
|
||||||
result = PixelConverter.ConvertA1B5G5R5ToR8G8B8A8(result, width);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return PixelConverter.ConvertA1B5G5R5ToR8G8B8A8(result.Memory.Span, width);
|
||||||
|
}
|
||||||
case Format.R4G4B4A4Unorm:
|
case Format.R4G4B4A4Unorm:
|
||||||
result = PixelConverter.ConvertR4G4B4A4ToR8G8B8A8(result, width);
|
using (result)
|
||||||
break;
|
{
|
||||||
|
return PixelConverter.ConvertR4G4B4A4ToR8G8B8A8(result.Memory.Span, width);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -44,6 +44,11 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public TextureUsageFlags Flags { get; }
|
public TextureUsageFlags Flags { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates that the binding is for a sampler.
|
||||||
|
/// </summary>
|
||||||
|
public bool IsSamplerOnly { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Constructs the texture binding information structure.
|
/// Constructs the texture binding information structure.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -74,8 +79,17 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <param name="cbufSlot">Constant buffer slot where the texture handle is located</param>
|
/// <param name="cbufSlot">Constant buffer slot where the texture handle is located</param>
|
||||||
/// <param name="handle">The shader texture handle (read index into the texture constant buffer)</param>
|
/// <param name="handle">The shader texture handle (read index into the texture constant buffer)</param>
|
||||||
/// <param name="flags">The texture's usage flags, indicating how it is used in the shader</param>
|
/// <param name="flags">The texture's usage flags, indicating how it is used in the shader</param>
|
||||||
public TextureBindingInfo(Target target, int binding, int arrayLength, int cbufSlot, int handle, TextureUsageFlags flags) : this(target, (Format)0, binding, arrayLength, cbufSlot, handle, flags)
|
/// <param name="isSamplerOnly">Indicates that the binding is for a sampler</param>
|
||||||
|
public TextureBindingInfo(
|
||||||
|
Target target,
|
||||||
|
int binding,
|
||||||
|
int arrayLength,
|
||||||
|
int cbufSlot,
|
||||||
|
int handle,
|
||||||
|
TextureUsageFlags flags,
|
||||||
|
bool isSamplerOnly) : this(target, 0, binding, arrayLength, cbufSlot, handle, flags)
|
||||||
{
|
{
|
||||||
|
IsSamplerOnly = isSamplerOnly;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -21,12 +21,98 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
private readonly GpuContext _context;
|
private readonly GpuContext _context;
|
||||||
private readonly GpuChannel _channel;
|
private readonly GpuChannel _channel;
|
||||||
private readonly bool _isCompute;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Array cache entry key.
|
/// Array cache entry key.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private readonly struct CacheEntryKey : IEquatable<CacheEntryKey>
|
private readonly struct CacheEntryFromPoolKey : IEquatable<CacheEntryFromPoolKey>
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Whether the entry is for an image.
|
||||||
|
/// </summary>
|
||||||
|
public readonly bool IsImage;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether the entry is for a sampler.
|
||||||
|
/// </summary>
|
||||||
|
public readonly bool IsSampler;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Texture or image target type.
|
||||||
|
/// </summary>
|
||||||
|
public readonly Target Target;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Number of entries of the array.
|
||||||
|
/// </summary>
|
||||||
|
public readonly int ArrayLength;
|
||||||
|
|
||||||
|
private readonly TexturePool _texturePool;
|
||||||
|
private readonly SamplerPool _samplerPool;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Creates a new array cache entry.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="isImage">Whether the entry is for an image</param>
|
||||||
|
/// <param name="bindingInfo">Binding information for the array</param>
|
||||||
|
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
||||||
|
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
||||||
|
public CacheEntryFromPoolKey(bool isImage, TextureBindingInfo bindingInfo, TexturePool texturePool, SamplerPool samplerPool)
|
||||||
|
{
|
||||||
|
IsImage = isImage;
|
||||||
|
IsSampler = bindingInfo.IsSamplerOnly;
|
||||||
|
Target = bindingInfo.Target;
|
||||||
|
ArrayLength = bindingInfo.ArrayLength;
|
||||||
|
|
||||||
|
_texturePool = texturePool;
|
||||||
|
_samplerPool = samplerPool;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Checks if the pool matches the cached pool.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="texturePool">Texture or sampler pool instance</param>
|
||||||
|
/// <returns>True if the pool matches, false otherwise</returns>
|
||||||
|
public bool MatchesPool<T>(IPool<T> pool)
|
||||||
|
{
|
||||||
|
return _texturePool == pool || _samplerPool == pool;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Checks if the texture and sampler pools matches the cached pools.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="texturePool">Texture pool instance</param>
|
||||||
|
/// <param name="samplerPool">Sampler pool instance</param>
|
||||||
|
/// <returns>True if the pools match, false otherwise</returns>
|
||||||
|
private bool MatchesPools(TexturePool texturePool, SamplerPool samplerPool)
|
||||||
|
{
|
||||||
|
return _texturePool == texturePool && _samplerPool == samplerPool;
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool Equals(CacheEntryFromPoolKey other)
|
||||||
|
{
|
||||||
|
return IsImage == other.IsImage &&
|
||||||
|
IsSampler == other.IsSampler &&
|
||||||
|
Target == other.Target &&
|
||||||
|
ArrayLength == other.ArrayLength &&
|
||||||
|
MatchesPools(other._texturePool, other._samplerPool);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object obj)
|
||||||
|
{
|
||||||
|
return obj is CacheEntryFromBufferKey other && Equals(other);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode()
|
||||||
|
{
|
||||||
|
return HashCode.Combine(_texturePool, _samplerPool, IsSampler);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Array cache entry key.
|
||||||
|
/// </summary>
|
||||||
|
private readonly struct CacheEntryFromBufferKey : IEquatable<CacheEntryFromBufferKey>
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether the entry is for an image.
|
/// Whether the entry is for an image.
|
||||||
@@ -61,7 +147,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
||||||
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
||||||
/// <param name="textureBufferBounds">Constant buffer bounds with the texture handles</param>
|
/// <param name="textureBufferBounds">Constant buffer bounds with the texture handles</param>
|
||||||
public CacheEntryKey(
|
public CacheEntryFromBufferKey(
|
||||||
bool isImage,
|
bool isImage,
|
||||||
TextureBindingInfo bindingInfo,
|
TextureBindingInfo bindingInfo,
|
||||||
TexturePool texturePool,
|
TexturePool texturePool,
|
||||||
@@ -100,7 +186,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
return _textureBufferBounds.Equals(textureBufferBounds);
|
return _textureBufferBounds.Equals(textureBufferBounds);
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool Equals(CacheEntryKey other)
|
public bool Equals(CacheEntryFromBufferKey other)
|
||||||
{
|
{
|
||||||
return IsImage == other.IsImage &&
|
return IsImage == other.IsImage &&
|
||||||
Target == other.Target &&
|
Target == other.Target &&
|
||||||
@@ -112,7 +198,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
public override bool Equals(object obj)
|
public override bool Equals(object obj)
|
||||||
{
|
{
|
||||||
return obj is CacheEntryKey other && Equals(other);
|
return obj is CacheEntryFromBufferKey other && Equals(other);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override int GetHashCode()
|
public override int GetHashCode()
|
||||||
@@ -122,40 +208,15 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Array cache entry.
|
/// Array cache entry from pool.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private class CacheEntry
|
private class CacheEntry
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// Key for this entry on the cache.
|
|
||||||
/// </summary>
|
|
||||||
public readonly CacheEntryKey Key;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Linked list node used on the texture bindings array cache.
|
|
||||||
/// </summary>
|
|
||||||
public LinkedListNode<CacheEntry> CacheNode;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Timestamp set on the last use of the array by the cache.
|
|
||||||
/// </summary>
|
|
||||||
public int CacheTimestamp;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// All cached textures, along with their invalidated sequence number as value.
|
/// All cached textures, along with their invalidated sequence number as value.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly Dictionary<Texture, int> Textures;
|
public readonly Dictionary<Texture, int> Textures;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// All pool texture IDs along with their textures.
|
|
||||||
/// </summary>
|
|
||||||
public readonly Dictionary<int, Texture> TextureIds;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// All pool sampler IDs along with their samplers.
|
|
||||||
/// </summary>
|
|
||||||
public readonly Dictionary<int, Sampler> SamplerIds;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Backend texture array if the entry is for a texture, otherwise null.
|
/// Backend texture array if the entry is for a texture, otherwise null.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -166,44 +227,39 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly IImageArray ImageArray;
|
public readonly IImageArray ImageArray;
|
||||||
|
|
||||||
private readonly TexturePool _texturePool;
|
/// <summary>
|
||||||
private readonly SamplerPool _samplerPool;
|
/// Texture pool where the array textures are located.
|
||||||
|
/// </summary>
|
||||||
|
protected readonly TexturePool TexturePool;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sampler pool where the array samplers are located.
|
||||||
|
/// </summary>
|
||||||
|
protected readonly SamplerPool SamplerPool;
|
||||||
|
|
||||||
private int _texturePoolSequence;
|
private int _texturePoolSequence;
|
||||||
private int _samplerPoolSequence;
|
private int _samplerPoolSequence;
|
||||||
|
|
||||||
private int[] _cachedTextureBuffer;
|
|
||||||
private int[] _cachedSamplerBuffer;
|
|
||||||
|
|
||||||
private int _lastSequenceNumber;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new array cache entry.
|
/// Creates a new array cache entry.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="key">Key for this entry on the cache</param>
|
|
||||||
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
||||||
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
||||||
private CacheEntry(ref CacheEntryKey key, TexturePool texturePool, SamplerPool samplerPool)
|
private CacheEntry(TexturePool texturePool, SamplerPool samplerPool)
|
||||||
{
|
{
|
||||||
Key = key;
|
|
||||||
Textures = new Dictionary<Texture, int>();
|
Textures = new Dictionary<Texture, int>();
|
||||||
TextureIds = new Dictionary<int, Texture>();
|
|
||||||
SamplerIds = new Dictionary<int, Sampler>();
|
|
||||||
|
|
||||||
_texturePool = texturePool;
|
TexturePool = texturePool;
|
||||||
_samplerPool = samplerPool;
|
SamplerPool = samplerPool;
|
||||||
|
|
||||||
_lastSequenceNumber = -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new array cache entry.
|
/// Creates a new array cache entry.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="key">Key for this entry on the cache</param>
|
|
||||||
/// <param name="array">Backend texture array</param>
|
/// <param name="array">Backend texture array</param>
|
||||||
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
||||||
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
||||||
public CacheEntry(ref CacheEntryKey key, ITextureArray array, TexturePool texturePool, SamplerPool samplerPool) : this(ref key, texturePool, samplerPool)
|
public CacheEntry(ITextureArray array, TexturePool texturePool, SamplerPool samplerPool) : this(texturePool, samplerPool)
|
||||||
{
|
{
|
||||||
TextureArray = array;
|
TextureArray = array;
|
||||||
}
|
}
|
||||||
@@ -211,11 +267,10 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new array cache entry.
|
/// Creates a new array cache entry.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="key">Key for this entry on the cache</param>
|
|
||||||
/// <param name="array">Backend image array</param>
|
/// <param name="array">Backend image array</param>
|
||||||
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
||||||
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
||||||
public CacheEntry(ref CacheEntryKey key, IImageArray array, TexturePool texturePool, SamplerPool samplerPool) : this(ref key, texturePool, samplerPool)
|
public CacheEntry(IImageArray array, TexturePool texturePool, SamplerPool samplerPool) : this(texturePool, samplerPool)
|
||||||
{
|
{
|
||||||
ImageArray = array;
|
ImageArray = array;
|
||||||
}
|
}
|
||||||
@@ -224,7 +279,8 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// Synchronizes memory for all textures in the array.
|
/// Synchronizes memory for all textures in the array.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="isStore">Indicates if the texture may be modified by the access</param>
|
/// <param name="isStore">Indicates if the texture may be modified by the access</param>
|
||||||
public void SynchronizeMemory(bool isStore)
|
/// <param name="blacklistScale">Indicates if the texture should be blacklisted for scaling</param>
|
||||||
|
public void SynchronizeMemory(bool isStore, bool blacklistScale)
|
||||||
{
|
{
|
||||||
foreach (Texture texture in Textures.Keys)
|
foreach (Texture texture in Textures.Keys)
|
||||||
{
|
{
|
||||||
@@ -234,29 +290,22 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
{
|
{
|
||||||
texture.SignalModified();
|
texture.SignalModified();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (blacklistScale && texture.ScaleMode != TextureScaleMode.Blacklisted)
|
||||||
|
{
|
||||||
|
// Scaling textures used on arrays is currently not supported.
|
||||||
|
|
||||||
|
texture.BlacklistScale();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Clears all cached texture instances.
|
/// Clears all cached texture instances.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public void Reset()
|
public virtual void Reset()
|
||||||
{
|
{
|
||||||
Textures.Clear();
|
Textures.Clear();
|
||||||
TextureIds.Clear();
|
|
||||||
SamplerIds.Clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Updates the cached constant buffer data.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="cachedTextureBuffer">Constant buffer data with the texture handles (and sampler handles, if they are combined)</param>
|
|
||||||
/// <param name="cachedSamplerBuffer">Constant buffer data with the sampler handles</param>
|
|
||||||
/// <param name="separateSamplerBuffer">Whether <paramref name="cachedTextureBuffer"/> and <paramref name="cachedSamplerBuffer"/> comes from different buffers</param>
|
|
||||||
public void UpdateData(ReadOnlySpan<int> cachedTextureBuffer, ReadOnlySpan<int> cachedSamplerBuffer, bool separateSamplerBuffer)
|
|
||||||
{
|
|
||||||
_cachedTextureBuffer = cachedTextureBuffer.ToArray();
|
|
||||||
_cachedSamplerBuffer = separateSamplerBuffer ? cachedSamplerBuffer.ToArray() : _cachedTextureBuffer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -279,39 +328,105 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks if the cached texture or sampler pool has been modified since the last call to this method.
|
/// Checks if the cached texture or sampler pool has been modified since the last call to this method.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>True if any used entries of the pools might have been modified, false otherwise</returns>
|
/// <returns>True if any used entries of the pool might have been modified, false otherwise</returns>
|
||||||
public bool PoolsModified()
|
public bool TexturePoolModified()
|
||||||
{
|
{
|
||||||
bool texturePoolModified = _texturePool.WasModified(ref _texturePoolSequence);
|
return TexturePool.WasModified(ref _texturePoolSequence);
|
||||||
bool samplerPoolModified = _samplerPool.WasModified(ref _samplerPoolSequence);
|
}
|
||||||
|
|
||||||
// If both pools were not modified since the last check, we have nothing else to check.
|
/// <summary>
|
||||||
if (!texturePoolModified && !samplerPoolModified)
|
/// Checks if the cached texture or sampler pool has been modified since the last call to this method.
|
||||||
{
|
/// </summary>
|
||||||
return false;
|
/// <returns>True if any used entries of the pool might have been modified, false otherwise</returns>
|
||||||
}
|
public bool SamplerPoolModified()
|
||||||
|
{
|
||||||
|
return SamplerPool.WasModified(ref _samplerPoolSequence);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// If the pools were modified, let's check if any of the entries we care about changed.
|
/// <summary>
|
||||||
|
/// Array cache entry from constant buffer.
|
||||||
|
/// </summary>
|
||||||
|
private class CacheEntryFromBuffer : CacheEntry
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Key for this entry on the cache.
|
||||||
|
/// </summary>
|
||||||
|
public readonly CacheEntryFromBufferKey Key;
|
||||||
|
|
||||||
// Check if any of our cached textures changed on the pool.
|
/// <summary>
|
||||||
foreach ((int textureId, Texture texture) in TextureIds)
|
/// Linked list node used on the texture bindings array cache.
|
||||||
{
|
/// </summary>
|
||||||
if (_texturePool.GetCachedItem(textureId) != texture)
|
public LinkedListNode<CacheEntryFromBuffer> CacheNode;
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if any of our cached samplers changed on the pool.
|
/// <summary>
|
||||||
foreach ((int samplerId, Sampler sampler) in SamplerIds)
|
/// Timestamp set on the last use of the array by the cache.
|
||||||
{
|
/// </summary>
|
||||||
if (_samplerPool.GetCachedItem(samplerId) != sampler)
|
public int CacheTimestamp;
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
/// <summary>
|
||||||
|
/// All pool texture IDs along with their textures.
|
||||||
|
/// </summary>
|
||||||
|
public readonly Dictionary<int, (Texture, TextureDescriptor)> TextureIds;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// All pool sampler IDs along with their samplers.
|
||||||
|
/// </summary>
|
||||||
|
public readonly Dictionary<int, (Sampler, SamplerDescriptor)> SamplerIds;
|
||||||
|
|
||||||
|
private int[] _cachedTextureBuffer;
|
||||||
|
private int[] _cachedSamplerBuffer;
|
||||||
|
|
||||||
|
private int _lastSequenceNumber;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Creates a new array cache entry.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key">Key for this entry on the cache</param>
|
||||||
|
/// <param name="array">Backend texture array</param>
|
||||||
|
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
||||||
|
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
||||||
|
public CacheEntryFromBuffer(ref CacheEntryFromBufferKey key, ITextureArray array, TexturePool texturePool, SamplerPool samplerPool) : base(array, texturePool, samplerPool)
|
||||||
|
{
|
||||||
|
Key = key;
|
||||||
|
_lastSequenceNumber = -1;
|
||||||
|
TextureIds = new Dictionary<int, (Texture, TextureDescriptor)>();
|
||||||
|
SamplerIds = new Dictionary<int, (Sampler, SamplerDescriptor)>();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Creates a new array cache entry.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="key">Key for this entry on the cache</param>
|
||||||
|
/// <param name="array">Backend image array</param>
|
||||||
|
/// <param name="texturePool">Texture pool where the array textures are located</param>
|
||||||
|
/// <param name="samplerPool">Sampler pool where the array samplers are located</param>
|
||||||
|
public CacheEntryFromBuffer(ref CacheEntryFromBufferKey key, IImageArray array, TexturePool texturePool, SamplerPool samplerPool) : base(array, texturePool, samplerPool)
|
||||||
|
{
|
||||||
|
Key = key;
|
||||||
|
_lastSequenceNumber = -1;
|
||||||
|
TextureIds = new Dictionary<int, (Texture, TextureDescriptor)>();
|
||||||
|
SamplerIds = new Dictionary<int, (Sampler, SamplerDescriptor)>();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public override void Reset()
|
||||||
|
{
|
||||||
|
base.Reset();
|
||||||
|
TextureIds.Clear();
|
||||||
|
SamplerIds.Clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Updates the cached constant buffer data.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="cachedTextureBuffer">Constant buffer data with the texture handles (and sampler handles, if they are combined)</param>
|
||||||
|
/// <param name="cachedSamplerBuffer">Constant buffer data with the sampler handles</param>
|
||||||
|
/// <param name="separateSamplerBuffer">Whether <paramref name="cachedTextureBuffer"/> and <paramref name="cachedSamplerBuffer"/> comes from different buffers</param>
|
||||||
|
public void UpdateData(ReadOnlySpan<int> cachedTextureBuffer, ReadOnlySpan<int> cachedSamplerBuffer, bool separateSamplerBuffer)
|
||||||
|
{
|
||||||
|
_cachedTextureBuffer = cachedTextureBuffer.ToArray();
|
||||||
|
_cachedSamplerBuffer = separateSamplerBuffer ? cachedSamplerBuffer.ToArray() : _cachedTextureBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -372,10 +487,51 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Checks if the cached texture or sampler pool has been modified since the last call to this method.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>True if any used entries of the pools might have been modified, false otherwise</returns>
|
||||||
|
public bool PoolsModified()
|
||||||
|
{
|
||||||
|
bool texturePoolModified = TexturePoolModified();
|
||||||
|
bool samplerPoolModified = SamplerPoolModified();
|
||||||
|
|
||||||
|
// If both pools were not modified since the last check, we have nothing else to check.
|
||||||
|
if (!texturePoolModified && !samplerPoolModified)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the pools were modified, let's check if any of the entries we care about changed.
|
||||||
|
|
||||||
|
// Check if any of our cached textures changed on the pool.
|
||||||
|
foreach ((int textureId, (Texture texture, TextureDescriptor descriptor)) in TextureIds)
|
||||||
|
{
|
||||||
|
if (TexturePool.GetCachedItem(textureId) != texture ||
|
||||||
|
(texture == null && TexturePool.IsValidId(textureId) && !TexturePool.GetDescriptorRef(textureId).Equals(descriptor)))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if any of our cached samplers changed on the pool.
|
||||||
|
foreach ((int samplerId, (Sampler sampler, SamplerDescriptor descriptor)) in SamplerIds)
|
||||||
|
{
|
||||||
|
if (SamplerPool.GetCachedItem(samplerId) != sampler ||
|
||||||
|
(sampler == null && SamplerPool.IsValidId(samplerId) && !SamplerPool.GetDescriptorRef(samplerId).Equals(descriptor)))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private readonly Dictionary<CacheEntryKey, CacheEntry> _cache;
|
private readonly Dictionary<CacheEntryFromBufferKey, CacheEntryFromBuffer> _cacheFromBuffer;
|
||||||
private readonly LinkedList<CacheEntry> _lruCache;
|
private readonly Dictionary<CacheEntryFromPoolKey, CacheEntry> _cacheFromPool;
|
||||||
|
private readonly LinkedList<CacheEntryFromBuffer> _lruCache;
|
||||||
|
|
||||||
private int _currentTimestamp;
|
private int _currentTimestamp;
|
||||||
|
|
||||||
@@ -384,14 +540,13 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context">GPU context</param>
|
/// <param name="context">GPU context</param>
|
||||||
/// <param name="channel">GPU channel</param>
|
/// <param name="channel">GPU channel</param>
|
||||||
/// <param name="isCompute">Whether the bindings will be used for compute or graphics pipelines</param>
|
public TextureBindingsArrayCache(GpuContext context, GpuChannel channel)
|
||||||
public TextureBindingsArrayCache(GpuContext context, GpuChannel channel, bool isCompute)
|
|
||||||
{
|
{
|
||||||
_context = context;
|
_context = context;
|
||||||
_channel = channel;
|
_channel = channel;
|
||||||
_isCompute = isCompute;
|
_cacheFromBuffer = new Dictionary<CacheEntryFromBufferKey, CacheEntryFromBuffer>();
|
||||||
_cache = new Dictionary<CacheEntryKey, CacheEntry>();
|
_cacheFromPool = new Dictionary<CacheEntryFromPoolKey, CacheEntry>();
|
||||||
_lruCache = new LinkedList<CacheEntry>();
|
_lruCache = new LinkedList<CacheEntryFromBuffer>();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -449,15 +604,180 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
bool isImage,
|
bool isImage,
|
||||||
SamplerIndex samplerIndex,
|
SamplerIndex samplerIndex,
|
||||||
TextureBindingInfo bindingInfo)
|
TextureBindingInfo bindingInfo)
|
||||||
|
{
|
||||||
|
if (IsDirectHandleType(bindingInfo.Handle))
|
||||||
|
{
|
||||||
|
UpdateFromPool(texturePool, samplerPool, stage, isImage, bindingInfo);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
UpdateFromBuffer(texturePool, samplerPool, stage, stageIndex, textureBufferIndex, isImage, samplerIndex, bindingInfo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Updates a texture or image array bindings and textures from a texture or sampler pool.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="texturePool">Texture pool</param>
|
||||||
|
/// <param name="samplerPool">Sampler pool</param>
|
||||||
|
/// <param name="stage">Shader stage where the array is used</param>
|
||||||
|
/// <param name="isImage">Whether the array is a image or texture array</param>
|
||||||
|
/// <param name="bindingInfo">Array binding information</param>
|
||||||
|
private void UpdateFromPool(TexturePool texturePool, SamplerPool samplerPool, ShaderStage stage, bool isImage, TextureBindingInfo bindingInfo)
|
||||||
|
{
|
||||||
|
CacheEntry entry = GetOrAddEntry(texturePool, samplerPool, bindingInfo, isImage, out bool isNewEntry);
|
||||||
|
|
||||||
|
bool isSampler = bindingInfo.IsSamplerOnly;
|
||||||
|
bool poolModified = isSampler ? entry.SamplerPoolModified() : entry.TexturePoolModified();
|
||||||
|
bool isStore = bindingInfo.Flags.HasFlag(TextureUsageFlags.ImageStore);
|
||||||
|
bool resScaleUnsupported = bindingInfo.Flags.HasFlag(TextureUsageFlags.ResScaleUnsupported);
|
||||||
|
|
||||||
|
if (!poolModified && !isNewEntry && entry.ValidateTextures())
|
||||||
|
{
|
||||||
|
entry.SynchronizeMemory(isStore, resScaleUnsupported);
|
||||||
|
|
||||||
|
if (isImage)
|
||||||
|
{
|
||||||
|
_context.Renderer.Pipeline.SetImageArray(stage, bindingInfo.Binding, entry.ImageArray);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_context.Renderer.Pipeline.SetTextureArray(stage, bindingInfo.Binding, entry.TextureArray);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isNewEntry)
|
||||||
|
{
|
||||||
|
entry.Reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
int length = (isSampler ? samplerPool.MaximumId : texturePool.MaximumId) + 1;
|
||||||
|
length = Math.Min(length, bindingInfo.ArrayLength);
|
||||||
|
|
||||||
|
Format[] formats = isImage ? new Format[bindingInfo.ArrayLength] : null;
|
||||||
|
ISampler[] samplers = isImage ? null : new ISampler[bindingInfo.ArrayLength];
|
||||||
|
ITexture[] textures = new ITexture[bindingInfo.ArrayLength];
|
||||||
|
|
||||||
|
for (int index = 0; index < length; index++)
|
||||||
|
{
|
||||||
|
Texture texture = null;
|
||||||
|
Sampler sampler = null;
|
||||||
|
|
||||||
|
if (isSampler)
|
||||||
|
{
|
||||||
|
sampler = samplerPool?.Get(index);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ref readonly TextureDescriptor descriptor = ref texturePool.GetForBinding(index, out texture);
|
||||||
|
|
||||||
|
if (texture != null)
|
||||||
|
{
|
||||||
|
entry.Textures[texture] = texture.InvalidatedSequence;
|
||||||
|
|
||||||
|
if (isStore)
|
||||||
|
{
|
||||||
|
texture.SignalModified();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (resScaleUnsupported && texture.ScaleMode != TextureScaleMode.Blacklisted)
|
||||||
|
{
|
||||||
|
// Scaling textures used on arrays is currently not supported.
|
||||||
|
|
||||||
|
texture.BlacklistScale();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ITexture hostTexture = texture?.GetTargetTexture(bindingInfo.Target);
|
||||||
|
ISampler hostSampler = sampler?.GetHostSampler(texture);
|
||||||
|
|
||||||
|
Format format = bindingInfo.Format;
|
||||||
|
|
||||||
|
if (hostTexture != null && texture.Target == Target.TextureBuffer)
|
||||||
|
{
|
||||||
|
// Ensure that the buffer texture is using the correct buffer as storage.
|
||||||
|
// Buffers are frequently re-created to accommodate larger data, so we need to re-bind
|
||||||
|
// to ensure we're not using a old buffer that was already deleted.
|
||||||
|
if (isImage)
|
||||||
|
{
|
||||||
|
if (format == 0 && texture != null)
|
||||||
|
{
|
||||||
|
format = texture.Format;
|
||||||
|
}
|
||||||
|
|
||||||
|
_channel.BufferManager.SetBufferTextureStorage(entry.ImageArray, hostTexture, texture.Range, bindingInfo, index, format);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_channel.BufferManager.SetBufferTextureStorage(entry.TextureArray, hostTexture, texture.Range, bindingInfo, index, format);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (isImage)
|
||||||
|
{
|
||||||
|
if (format == 0 && texture != null)
|
||||||
|
{
|
||||||
|
format = texture.Format;
|
||||||
|
}
|
||||||
|
|
||||||
|
formats[index] = format;
|
||||||
|
textures[index] = hostTexture;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
samplers[index] = hostSampler;
|
||||||
|
textures[index] = hostTexture;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isImage)
|
||||||
|
{
|
||||||
|
entry.ImageArray.SetFormats(0, formats);
|
||||||
|
entry.ImageArray.SetImages(0, textures);
|
||||||
|
|
||||||
|
_context.Renderer.Pipeline.SetImageArray(stage, bindingInfo.Binding, entry.ImageArray);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
entry.TextureArray.SetSamplers(0, samplers);
|
||||||
|
entry.TextureArray.SetTextures(0, textures);
|
||||||
|
|
||||||
|
_context.Renderer.Pipeline.SetTextureArray(stage, bindingInfo.Binding, entry.TextureArray);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Updates a texture or image array bindings and textures from constant buffer handles.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="texturePool">Texture pool</param>
|
||||||
|
/// <param name="samplerPool">Sampler pool</param>
|
||||||
|
/// <param name="stage">Shader stage where the array is used</param>
|
||||||
|
/// <param name="stageIndex">Shader stage index where the array is used</param>
|
||||||
|
/// <param name="textureBufferIndex">Texture constant buffer index</param>
|
||||||
|
/// <param name="isImage">Whether the array is a image or texture array</param>
|
||||||
|
/// <param name="samplerIndex">Sampler handles source</param>
|
||||||
|
/// <param name="bindingInfo">Array binding information</param>
|
||||||
|
private void UpdateFromBuffer(
|
||||||
|
TexturePool texturePool,
|
||||||
|
SamplerPool samplerPool,
|
||||||
|
ShaderStage stage,
|
||||||
|
int stageIndex,
|
||||||
|
int textureBufferIndex,
|
||||||
|
bool isImage,
|
||||||
|
SamplerIndex samplerIndex,
|
||||||
|
TextureBindingInfo bindingInfo)
|
||||||
{
|
{
|
||||||
(textureBufferIndex, int samplerBufferIndex) = TextureHandle.UnpackSlots(bindingInfo.CbufSlot, textureBufferIndex);
|
(textureBufferIndex, int samplerBufferIndex) = TextureHandle.UnpackSlots(bindingInfo.CbufSlot, textureBufferIndex);
|
||||||
|
|
||||||
bool separateSamplerBuffer = textureBufferIndex != samplerBufferIndex;
|
bool separateSamplerBuffer = textureBufferIndex != samplerBufferIndex;
|
||||||
|
bool isCompute = stage == ShaderStage.Compute;
|
||||||
|
|
||||||
ref BufferBounds textureBufferBounds = ref _channel.BufferManager.GetUniformBufferBounds(_isCompute, stageIndex, textureBufferIndex);
|
ref BufferBounds textureBufferBounds = ref _channel.BufferManager.GetUniformBufferBounds(isCompute, stageIndex, textureBufferIndex);
|
||||||
ref BufferBounds samplerBufferBounds = ref _channel.BufferManager.GetUniformBufferBounds(_isCompute, stageIndex, samplerBufferIndex);
|
ref BufferBounds samplerBufferBounds = ref _channel.BufferManager.GetUniformBufferBounds(isCompute, stageIndex, samplerBufferIndex);
|
||||||
|
|
||||||
CacheEntry entry = GetOrAddEntry(
|
CacheEntryFromBuffer entry = GetOrAddEntry(
|
||||||
texturePool,
|
texturePool,
|
||||||
samplerPool,
|
samplerPool,
|
||||||
bindingInfo,
|
bindingInfo,
|
||||||
@@ -467,6 +787,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
bool poolsModified = entry.PoolsModified();
|
bool poolsModified = entry.PoolsModified();
|
||||||
bool isStore = bindingInfo.Flags.HasFlag(TextureUsageFlags.ImageStore);
|
bool isStore = bindingInfo.Flags.HasFlag(TextureUsageFlags.ImageStore);
|
||||||
|
bool resScaleUnsupported = bindingInfo.Flags.HasFlag(TextureUsageFlags.ResScaleUnsupported);
|
||||||
|
|
||||||
ReadOnlySpan<int> cachedTextureBuffer;
|
ReadOnlySpan<int> cachedTextureBuffer;
|
||||||
ReadOnlySpan<int> cachedSamplerBuffer;
|
ReadOnlySpan<int> cachedSamplerBuffer;
|
||||||
@@ -475,7 +796,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
{
|
{
|
||||||
if (entry.MatchesSequenceNumber(_context.SequenceNumber))
|
if (entry.MatchesSequenceNumber(_context.SequenceNumber))
|
||||||
{
|
{
|
||||||
entry.SynchronizeMemory(isStore);
|
entry.SynchronizeMemory(isStore, resScaleUnsupported);
|
||||||
|
|
||||||
if (isImage)
|
if (isImage)
|
||||||
{
|
{
|
||||||
@@ -504,7 +825,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
if (entry.MatchesBufferData(cachedTextureBuffer, cachedSamplerBuffer, separateSamplerBuffer, samplerWordOffset))
|
if (entry.MatchesBufferData(cachedTextureBuffer, cachedSamplerBuffer, separateSamplerBuffer, samplerWordOffset))
|
||||||
{
|
{
|
||||||
entry.SynchronizeMemory(isStore);
|
entry.SynchronizeMemory(isStore, resScaleUnsupported);
|
||||||
|
|
||||||
if (isImage)
|
if (isImage)
|
||||||
{
|
{
|
||||||
@@ -569,12 +890,19 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
{
|
{
|
||||||
texture.SignalModified();
|
texture.SignalModified();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (resScaleUnsupported && texture.ScaleMode != TextureScaleMode.Blacklisted)
|
||||||
|
{
|
||||||
|
// Scaling textures used on arrays is currently not supported.
|
||||||
|
|
||||||
|
texture.BlacklistScale();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Sampler sampler = samplerPool?.Get(samplerId);
|
Sampler sampler = samplerPool?.Get(samplerId);
|
||||||
|
|
||||||
entry.TextureIds[textureId] = texture;
|
entry.TextureIds[textureId] = (texture, descriptor);
|
||||||
entry.SamplerIds[samplerId] = sampler;
|
entry.SamplerIds[samplerId] = (sampler, samplerPool?.GetDescriptorRef(samplerId) ?? default);
|
||||||
|
|
||||||
ITexture hostTexture = texture?.GetTargetTexture(bindingInfo.Target);
|
ITexture hostTexture = texture?.GetTargetTexture(bindingInfo.Target);
|
||||||
ISampler hostSampler = sampler?.GetHostSampler(texture);
|
ISampler hostSampler = sampler?.GetHostSampler(texture);
|
||||||
@@ -634,13 +962,12 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a cached texture entry, or creates a new one if not found.
|
/// Gets a cached texture entry from pool, or creates a new one if not found.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="texturePool">Texture pool</param>
|
/// <param name="texturePool">Texture pool</param>
|
||||||
/// <param name="samplerPool">Sampler pool</param>
|
/// <param name="samplerPool">Sampler pool</param>
|
||||||
/// <param name="bindingInfo">Array binding information</param>
|
/// <param name="bindingInfo">Array binding information</param>
|
||||||
/// <param name="isImage">Whether the array is a image or texture array</param>
|
/// <param name="isImage">Whether the array is a image or texture array</param>
|
||||||
/// <param name="textureBufferBounds">Constant buffer bounds with the texture handles</param>
|
|
||||||
/// <param name="isNew">Whether a new entry was created, or an existing one was returned</param>
|
/// <param name="isNew">Whether a new entry was created, or an existing one was returned</param>
|
||||||
/// <returns>Cache entry</returns>
|
/// <returns>Cache entry</returns>
|
||||||
private CacheEntry GetOrAddEntry(
|
private CacheEntry GetOrAddEntry(
|
||||||
@@ -648,17 +975,11 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
SamplerPool samplerPool,
|
SamplerPool samplerPool,
|
||||||
TextureBindingInfo bindingInfo,
|
TextureBindingInfo bindingInfo,
|
||||||
bool isImage,
|
bool isImage,
|
||||||
ref BufferBounds textureBufferBounds,
|
|
||||||
out bool isNew)
|
out bool isNew)
|
||||||
{
|
{
|
||||||
CacheEntryKey key = new CacheEntryKey(
|
CacheEntryFromPoolKey key = new CacheEntryFromPoolKey(isImage, bindingInfo, texturePool, samplerPool);
|
||||||
isImage,
|
|
||||||
bindingInfo,
|
|
||||||
texturePool,
|
|
||||||
samplerPool,
|
|
||||||
ref textureBufferBounds);
|
|
||||||
|
|
||||||
isNew = !_cache.TryGetValue(key, out CacheEntry entry);
|
isNew = !_cacheFromPool.TryGetValue(key, out CacheEntry entry);
|
||||||
|
|
||||||
if (isNew)
|
if (isNew)
|
||||||
{
|
{
|
||||||
@@ -668,13 +989,61 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
{
|
{
|
||||||
IImageArray array = _context.Renderer.CreateImageArray(arrayLength, bindingInfo.Target == Target.TextureBuffer);
|
IImageArray array = _context.Renderer.CreateImageArray(arrayLength, bindingInfo.Target == Target.TextureBuffer);
|
||||||
|
|
||||||
_cache.Add(key, entry = new CacheEntry(ref key, array, texturePool, samplerPool));
|
_cacheFromPool.Add(key, entry = new CacheEntry(array, texturePool, samplerPool));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ITextureArray array = _context.Renderer.CreateTextureArray(arrayLength, bindingInfo.Target == Target.TextureBuffer);
|
ITextureArray array = _context.Renderer.CreateTextureArray(arrayLength, bindingInfo.Target == Target.TextureBuffer);
|
||||||
|
|
||||||
_cache.Add(key, entry = new CacheEntry(ref key, array, texturePool, samplerPool));
|
_cacheFromPool.Add(key, entry = new CacheEntry(array, texturePool, samplerPool));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return entry;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets a cached texture entry from constant buffer, or creates a new one if not found.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="texturePool">Texture pool</param>
|
||||||
|
/// <param name="samplerPool">Sampler pool</param>
|
||||||
|
/// <param name="bindingInfo">Array binding information</param>
|
||||||
|
/// <param name="isImage">Whether the array is a image or texture array</param>
|
||||||
|
/// <param name="textureBufferBounds">Constant buffer bounds with the texture handles</param>
|
||||||
|
/// <param name="isNew">Whether a new entry was created, or an existing one was returned</param>
|
||||||
|
/// <returns>Cache entry</returns>
|
||||||
|
private CacheEntryFromBuffer GetOrAddEntry(
|
||||||
|
TexturePool texturePool,
|
||||||
|
SamplerPool samplerPool,
|
||||||
|
TextureBindingInfo bindingInfo,
|
||||||
|
bool isImage,
|
||||||
|
ref BufferBounds textureBufferBounds,
|
||||||
|
out bool isNew)
|
||||||
|
{
|
||||||
|
CacheEntryFromBufferKey key = new CacheEntryFromBufferKey(
|
||||||
|
isImage,
|
||||||
|
bindingInfo,
|
||||||
|
texturePool,
|
||||||
|
samplerPool,
|
||||||
|
ref textureBufferBounds);
|
||||||
|
|
||||||
|
isNew = !_cacheFromBuffer.TryGetValue(key, out CacheEntryFromBuffer entry);
|
||||||
|
|
||||||
|
if (isNew)
|
||||||
|
{
|
||||||
|
int arrayLength = bindingInfo.ArrayLength;
|
||||||
|
|
||||||
|
if (isImage)
|
||||||
|
{
|
||||||
|
IImageArray array = _context.Renderer.CreateImageArray(arrayLength, bindingInfo.Target == Target.TextureBuffer);
|
||||||
|
|
||||||
|
_cacheFromBuffer.Add(key, entry = new CacheEntryFromBuffer(ref key, array, texturePool, samplerPool));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ITextureArray array = _context.Renderer.CreateTextureArray(arrayLength, bindingInfo.Target == Target.TextureBuffer);
|
||||||
|
|
||||||
|
_cacheFromBuffer.Add(key, entry = new CacheEntryFromBuffer(ref key, array, texturePool, samplerPool));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -700,15 +1069,52 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private void RemoveLeastUsedEntries()
|
private void RemoveLeastUsedEntries()
|
||||||
{
|
{
|
||||||
LinkedListNode<CacheEntry> nextNode = _lruCache.First;
|
LinkedListNode<CacheEntryFromBuffer> nextNode = _lruCache.First;
|
||||||
|
|
||||||
while (nextNode != null && _currentTimestamp - nextNode.Value.CacheTimestamp >= MinDeltaForRemoval)
|
while (nextNode != null && _currentTimestamp - nextNode.Value.CacheTimestamp >= MinDeltaForRemoval)
|
||||||
{
|
{
|
||||||
LinkedListNode<CacheEntry> toRemove = nextNode;
|
LinkedListNode<CacheEntryFromBuffer> toRemove = nextNode;
|
||||||
nextNode = nextNode.Next;
|
nextNode = nextNode.Next;
|
||||||
_cache.Remove(toRemove.Value.Key);
|
_cacheFromBuffer.Remove(toRemove.Value.Key);
|
||||||
_lruCache.Remove(toRemove);
|
_lruCache.Remove(toRemove);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Removes all cached texture arrays matching the specified texture pool.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="pool">Texture pool</param>
|
||||||
|
public void RemoveAllWithPool<T>(IPool<T> pool)
|
||||||
|
{
|
||||||
|
List<CacheEntryFromPoolKey> keysToRemove = null;
|
||||||
|
|
||||||
|
foreach (CacheEntryFromPoolKey key in _cacheFromPool.Keys)
|
||||||
|
{
|
||||||
|
if (key.MatchesPool(pool))
|
||||||
|
{
|
||||||
|
(keysToRemove ??= new()).Add(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (keysToRemove != null)
|
||||||
|
{
|
||||||
|
foreach (CacheEntryFromPoolKey key in keysToRemove)
|
||||||
|
{
|
||||||
|
_cacheFromPool.Remove(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Checks if a handle indicates the binding should have all its textures sourced directly from a pool.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="handle">Handle to check</param>
|
||||||
|
/// <returns>True if the handle represents direct pool access, false otherwise</returns>
|
||||||
|
private static bool IsDirectHandleType(int handle)
|
||||||
|
{
|
||||||
|
(_, _, TextureHandleType type) = TextureHandle.UnpackOffsets(handle);
|
||||||
|
|
||||||
|
return type == TextureHandleType.Direct;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -34,7 +34,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
private readonly TexturePoolCache _texturePoolCache;
|
private readonly TexturePoolCache _texturePoolCache;
|
||||||
private readonly SamplerPoolCache _samplerPoolCache;
|
private readonly SamplerPoolCache _samplerPoolCache;
|
||||||
|
|
||||||
private readonly TextureBindingsArrayCache _arrayBindingsCache;
|
private readonly TextureBindingsArrayCache _bindingsArrayCache;
|
||||||
|
|
||||||
private TexturePool _cachedTexturePool;
|
private TexturePool _cachedTexturePool;
|
||||||
private SamplerPool _cachedSamplerPool;
|
private SamplerPool _cachedSamplerPool;
|
||||||
@@ -72,12 +72,14 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context">The GPU context that the texture bindings manager belongs to</param>
|
/// <param name="context">The GPU context that the texture bindings manager belongs to</param>
|
||||||
/// <param name="channel">The GPU channel that the texture bindings manager belongs to</param>
|
/// <param name="channel">The GPU channel that the texture bindings manager belongs to</param>
|
||||||
|
/// <param name="bindingsArrayCache">Cache of texture array bindings</param>
|
||||||
/// <param name="texturePoolCache">Texture pools cache used to get texture pools from</param>
|
/// <param name="texturePoolCache">Texture pools cache used to get texture pools from</param>
|
||||||
/// <param name="samplerPoolCache">Sampler pools cache used to get sampler pools from</param>
|
/// <param name="samplerPoolCache">Sampler pools cache used to get sampler pools from</param>
|
||||||
/// <param name="isCompute">True if the bindings manager is used for the compute engine</param>
|
/// <param name="isCompute">True if the bindings manager is used for the compute engine</param>
|
||||||
public TextureBindingsManager(
|
public TextureBindingsManager(
|
||||||
GpuContext context,
|
GpuContext context,
|
||||||
GpuChannel channel,
|
GpuChannel channel,
|
||||||
|
TextureBindingsArrayCache bindingsArrayCache,
|
||||||
TexturePoolCache texturePoolCache,
|
TexturePoolCache texturePoolCache,
|
||||||
SamplerPoolCache samplerPoolCache,
|
SamplerPoolCache samplerPoolCache,
|
||||||
bool isCompute)
|
bool isCompute)
|
||||||
@@ -89,7 +91,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
_isCompute = isCompute;
|
_isCompute = isCompute;
|
||||||
|
|
||||||
_arrayBindingsCache = new TextureBindingsArrayCache(context, channel, isCompute);
|
_bindingsArrayCache = bindingsArrayCache;
|
||||||
|
|
||||||
int stages = isCompute ? 1 : Constants.ShaderStages;
|
int stages = isCompute ? 1 : Constants.ShaderStages;
|
||||||
|
|
||||||
@@ -456,7 +458,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
if (bindingInfo.ArrayLength > 1)
|
if (bindingInfo.ArrayLength > 1)
|
||||||
{
|
{
|
||||||
_arrayBindingsCache.UpdateTextureArray(texturePool, samplerPool, stage, stageIndex, _textureBufferIndex, _samplerIndex, bindingInfo);
|
_bindingsArrayCache.UpdateTextureArray(texturePool, samplerPool, stage, stageIndex, _textureBufferIndex, _samplerIndex, bindingInfo);
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -594,7 +596,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
if (bindingInfo.ArrayLength > 1)
|
if (bindingInfo.ArrayLength > 1)
|
||||||
{
|
{
|
||||||
_arrayBindingsCache.UpdateImageArray(pool, stage, stageIndex, _textureBufferIndex, bindingInfo);
|
_bindingsArrayCache.UpdateImageArray(pool, stage, stageIndex, _textureBufferIndex, bindingInfo);
|
||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -732,7 +734,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
ulong poolAddress = _channel.MemoryManager.Translate(poolGpuVa);
|
ulong poolAddress = _channel.MemoryManager.Translate(poolGpuVa);
|
||||||
|
|
||||||
TexturePool texturePool = _texturePoolCache.FindOrCreate(_channel, poolAddress, maximumId);
|
TexturePool texturePool = _texturePoolCache.FindOrCreate(_channel, poolAddress, maximumId, _bindingsArrayCache);
|
||||||
|
|
||||||
TextureDescriptor descriptor;
|
TextureDescriptor descriptor;
|
||||||
|
|
||||||
@@ -770,7 +772,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
? _channel.BufferManager.GetComputeUniformBufferAddress(textureBufferIndex)
|
? _channel.BufferManager.GetComputeUniformBufferAddress(textureBufferIndex)
|
||||||
: _channel.BufferManager.GetGraphicsUniformBufferAddress(stageIndex, textureBufferIndex);
|
: _channel.BufferManager.GetGraphicsUniformBufferAddress(stageIndex, textureBufferIndex);
|
||||||
|
|
||||||
int handle = textureBufferAddress != 0
|
int handle = textureBufferAddress != MemoryManager.PteUnmapped
|
||||||
? _channel.MemoryManager.Physical.Read<int>(textureBufferAddress + (uint)textureWordOffset * 4)
|
? _channel.MemoryManager.Physical.Read<int>(textureBufferAddress + (uint)textureWordOffset * 4)
|
||||||
: 0;
|
: 0;
|
||||||
|
|
||||||
@@ -790,7 +792,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
? _channel.BufferManager.GetComputeUniformBufferAddress(samplerBufferIndex)
|
? _channel.BufferManager.GetComputeUniformBufferAddress(samplerBufferIndex)
|
||||||
: _channel.BufferManager.GetGraphicsUniformBufferAddress(stageIndex, samplerBufferIndex);
|
: _channel.BufferManager.GetGraphicsUniformBufferAddress(stageIndex, samplerBufferIndex);
|
||||||
|
|
||||||
samplerHandle = samplerBufferAddress != 0
|
samplerHandle = samplerBufferAddress != MemoryManager.PteUnmapped
|
||||||
? _channel.MemoryManager.Physical.Read<int>(samplerBufferAddress + (uint)samplerWordOffset * 4)
|
? _channel.MemoryManager.Physical.Read<int>(samplerBufferAddress + (uint)samplerWordOffset * 4)
|
||||||
: 0;
|
: 0;
|
||||||
}
|
}
|
||||||
@@ -828,7 +830,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
if (poolAddress != MemoryManager.PteUnmapped)
|
if (poolAddress != MemoryManager.PteUnmapped)
|
||||||
{
|
{
|
||||||
texturePool = _texturePoolCache.FindOrCreate(_channel, poolAddress, _texturePoolMaximumId);
|
texturePool = _texturePoolCache.FindOrCreate(_channel, poolAddress, _texturePoolMaximumId, _bindingsArrayCache);
|
||||||
_texturePool = texturePool;
|
_texturePool = texturePool;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -839,7 +841,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
if (poolAddress != MemoryManager.PteUnmapped)
|
if (poolAddress != MemoryManager.PteUnmapped)
|
||||||
{
|
{
|
||||||
samplerPool = _samplerPoolCache.FindOrCreate(_channel, poolAddress, _samplerPoolMaximumId);
|
samplerPool = _samplerPoolCache.FindOrCreate(_channel, poolAddress, _samplerPoolMaximumId, _bindingsArrayCache);
|
||||||
_samplerPool = samplerPool;
|
_samplerPool = samplerPool;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -8,6 +8,7 @@ using Ryujinx.Graphics.Texture;
|
|||||||
using Ryujinx.Memory.Range;
|
using Ryujinx.Memory.Range;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Gpu.Image
|
namespace Ryujinx.Graphics.Gpu.Image
|
||||||
{
|
{
|
||||||
@@ -39,6 +40,8 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
private readonly MultiRangeList<Texture> _textures;
|
private readonly MultiRangeList<Texture> _textures;
|
||||||
private readonly HashSet<Texture> _partiallyMappedTextures;
|
private readonly HashSet<Texture> _partiallyMappedTextures;
|
||||||
|
|
||||||
|
private readonly ReaderWriterLockSlim _texturesLock;
|
||||||
|
|
||||||
private Texture[] _textureOverlaps;
|
private Texture[] _textureOverlaps;
|
||||||
private OverlapInfo[] _overlapInfo;
|
private OverlapInfo[] _overlapInfo;
|
||||||
|
|
||||||
@@ -57,6 +60,8 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
_textures = new MultiRangeList<Texture>();
|
_textures = new MultiRangeList<Texture>();
|
||||||
_partiallyMappedTextures = new HashSet<Texture>();
|
_partiallyMappedTextures = new HashSet<Texture>();
|
||||||
|
|
||||||
|
_texturesLock = new ReaderWriterLockSlim();
|
||||||
|
|
||||||
_textureOverlaps = new Texture[OverlapsBufferInitialCapacity];
|
_textureOverlaps = new Texture[OverlapsBufferInitialCapacity];
|
||||||
_overlapInfo = new OverlapInfo[OverlapsBufferInitialCapacity];
|
_overlapInfo = new OverlapInfo[OverlapsBufferInitialCapacity];
|
||||||
|
|
||||||
@@ -75,10 +80,16 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
MultiRange unmapped = ((MemoryManager)sender).GetPhysicalRegions(e.Address, e.Size);
|
MultiRange unmapped = ((MemoryManager)sender).GetPhysicalRegions(e.Address, e.Size);
|
||||||
|
|
||||||
lock (_textures)
|
_texturesLock.EnterReadLock();
|
||||||
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
overlapCount = _textures.FindOverlaps(unmapped, ref overlaps);
|
overlapCount = _textures.FindOverlaps(unmapped, ref overlaps);
|
||||||
}
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_texturesLock.ExitReadLock();
|
||||||
|
}
|
||||||
|
|
||||||
if (overlapCount > 0)
|
if (overlapCount > 0)
|
||||||
{
|
{
|
||||||
@@ -217,7 +228,18 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
public bool UpdateMapping(Texture texture, MultiRange range)
|
public bool UpdateMapping(Texture texture, MultiRange range)
|
||||||
{
|
{
|
||||||
// There cannot be an existing texture compatible with this mapping in the texture cache already.
|
// There cannot be an existing texture compatible with this mapping in the texture cache already.
|
||||||
int overlapCount = _textures.FindOverlaps(range, ref _textureOverlaps);
|
int overlapCount;
|
||||||
|
|
||||||
|
_texturesLock.EnterReadLock();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
overlapCount = _textures.FindOverlaps(range, ref _textureOverlaps);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_texturesLock.ExitReadLock();
|
||||||
|
}
|
||||||
|
|
||||||
for (int i = 0; i < overlapCount; i++)
|
for (int i = 0; i < overlapCount; i++)
|
||||||
{
|
{
|
||||||
@@ -231,11 +253,20 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_textures.Remove(texture);
|
_texturesLock.EnterWriteLock();
|
||||||
|
|
||||||
texture.ReplaceRange(range);
|
try
|
||||||
|
{
|
||||||
|
_textures.Remove(texture);
|
||||||
|
|
||||||
_textures.Add(texture);
|
texture.ReplaceRange(range);
|
||||||
|
|
||||||
|
_textures.Add(texture);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_texturesLock.ExitWriteLock();
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -611,11 +642,17 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
int sameAddressOverlapsCount;
|
int sameAddressOverlapsCount;
|
||||||
|
|
||||||
lock (_textures)
|
_texturesLock.EnterReadLock();
|
||||||
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
// Try to find a perfect texture match, with the same address and parameters.
|
// Try to find a perfect texture match, with the same address and parameters.
|
||||||
sameAddressOverlapsCount = _textures.FindOverlaps(address, ref _textureOverlaps);
|
sameAddressOverlapsCount = _textures.FindOverlaps(address, ref _textureOverlaps);
|
||||||
}
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_texturesLock.ExitReadLock();
|
||||||
|
}
|
||||||
|
|
||||||
Texture texture = null;
|
Texture texture = null;
|
||||||
|
|
||||||
@@ -698,10 +735,16 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
if (info.Target != Target.TextureBuffer)
|
if (info.Target != Target.TextureBuffer)
|
||||||
{
|
{
|
||||||
lock (_textures)
|
_texturesLock.EnterReadLock();
|
||||||
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
overlapsCount = _textures.FindOverlaps(range.Value, ref _textureOverlaps);
|
overlapsCount = _textures.FindOverlaps(range.Value, ref _textureOverlaps);
|
||||||
}
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_texturesLock.ExitReadLock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_overlapInfo.Length != _textureOverlaps.Length)
|
if (_overlapInfo.Length != _textureOverlaps.Length)
|
||||||
@@ -1025,10 +1068,16 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
_cache.Add(texture);
|
_cache.Add(texture);
|
||||||
}
|
}
|
||||||
|
|
||||||
lock (_textures)
|
_texturesLock.EnterWriteLock();
|
||||||
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
_textures.Add(texture);
|
_textures.Add(texture);
|
||||||
}
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_texturesLock.ExitWriteLock();
|
||||||
|
}
|
||||||
|
|
||||||
if (partiallyMapped)
|
if (partiallyMapped)
|
||||||
{
|
{
|
||||||
@@ -1091,7 +1140,19 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
int addressMatches = _textures.FindOverlaps(address, ref _textureOverlaps);
|
int addressMatches;
|
||||||
|
|
||||||
|
_texturesLock.EnterReadLock();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
addressMatches = _textures.FindOverlaps(address, ref _textureOverlaps);
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_texturesLock.ExitReadLock();
|
||||||
|
}
|
||||||
|
|
||||||
Texture textureMatch = null;
|
Texture textureMatch = null;
|
||||||
|
|
||||||
for (int i = 0; i < addressMatches; i++)
|
for (int i = 0; i < addressMatches; i++)
|
||||||
@@ -1232,10 +1293,16 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <param name="texture">The texture to be removed</param>
|
/// <param name="texture">The texture to be removed</param>
|
||||||
public void RemoveTextureFromCache(Texture texture)
|
public void RemoveTextureFromCache(Texture texture)
|
||||||
{
|
{
|
||||||
lock (_textures)
|
_texturesLock.EnterWriteLock();
|
||||||
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
_textures.Remove(texture);
|
_textures.Remove(texture);
|
||||||
}
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_texturesLock.ExitWriteLock();
|
||||||
|
}
|
||||||
|
|
||||||
lock (_partiallyMappedTextures)
|
lock (_partiallyMappedTextures)
|
||||||
{
|
{
|
||||||
@@ -1324,13 +1391,19 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public void Dispose()
|
public void Dispose()
|
||||||
{
|
{
|
||||||
lock (_textures)
|
_texturesLock.EnterReadLock();
|
||||||
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
foreach (Texture texture in _textures)
|
foreach (Texture texture in _textures)
|
||||||
{
|
{
|
||||||
texture.Dispose();
|
texture.Dispose();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
_texturesLock.ExitReadLock();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,4 +1,3 @@
|
|||||||
using Ryujinx.Common.Memory;
|
|
||||||
using Ryujinx.Graphics.GAL;
|
using Ryujinx.Graphics.GAL;
|
||||||
using Ryujinx.Graphics.Gpu.Memory;
|
using Ryujinx.Graphics.Gpu.Memory;
|
||||||
using Ryujinx.Graphics.Texture;
|
using Ryujinx.Graphics.Texture;
|
||||||
@@ -6,6 +5,7 @@ using Ryujinx.Memory;
|
|||||||
using Ryujinx.Memory.Range;
|
using Ryujinx.Memory.Range;
|
||||||
using Ryujinx.Memory.Tracking;
|
using Ryujinx.Memory.Tracking;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
|
||||||
@@ -88,9 +88,9 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
private MultiRange TextureRange => Storage.Range;
|
private MultiRange TextureRange => Storage.Range;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The views list from the storage texture.
|
/// The views array from the storage texture.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private List<Texture> _views;
|
private Texture[] _views;
|
||||||
private TextureGroupHandle[] _handles;
|
private TextureGroupHandle[] _handles;
|
||||||
private bool[] _loadNeeded;
|
private bool[] _loadNeeded;
|
||||||
|
|
||||||
@@ -445,7 +445,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
ReadOnlySpan<byte> data = dataSpan[(offset - spanBase)..];
|
ReadOnlySpan<byte> data = dataSpan[(offset - spanBase)..];
|
||||||
|
|
||||||
SpanOrArray<byte> result = Storage.ConvertToHostCompatibleFormat(data, info.BaseLevel + level, true);
|
IMemoryOwner<byte> result = Storage.ConvertToHostCompatibleFormat(data, info.BaseLevel + level, true);
|
||||||
|
|
||||||
Storage.SetData(result, info.BaseLayer + layer, info.BaseLevel + level);
|
Storage.SetData(result, info.BaseLayer + layer, info.BaseLevel + level);
|
||||||
}
|
}
|
||||||
@@ -1074,7 +1074,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
public void UpdateViews(List<Texture> views, Texture texture)
|
public void UpdateViews(List<Texture> views, Texture texture)
|
||||||
{
|
{
|
||||||
// This is saved to calculate overlapping views for each handle.
|
// This is saved to calculate overlapping views for each handle.
|
||||||
_views = views;
|
_views = views.ToArray();
|
||||||
|
|
||||||
bool layerViews = _hasLayerViews;
|
bool layerViews = _hasLayerViews;
|
||||||
bool mipViews = _hasMipViews;
|
bool mipViews = _hasMipViews;
|
||||||
@@ -1136,9 +1136,13 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Removes a view from the group, removing it from all overlap lists.
|
/// Removes a view from the group, removing it from all overlap lists.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="views">The views list of the storage texture</param>
|
||||||
/// <param name="view">View to remove from the group</param>
|
/// <param name="view">View to remove from the group</param>
|
||||||
public void RemoveView(Texture view)
|
public void RemoveView(List<Texture> views, Texture view)
|
||||||
{
|
{
|
||||||
|
// This is saved to calculate overlapping views for each handle.
|
||||||
|
_views = views.ToArray();
|
||||||
|
|
||||||
int offset = FindOffset(view);
|
int offset = FindOffset(view);
|
||||||
|
|
||||||
foreach (TextureGroupHandle handle in _handles)
|
foreach (TextureGroupHandle handle in _handles)
|
||||||
@@ -1605,9 +1609,11 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
Storage.SignalModifiedDirty();
|
Storage.SignalModifiedDirty();
|
||||||
|
|
||||||
if (_views != null)
|
Texture[] views = _views;
|
||||||
|
|
||||||
|
if (views != null)
|
||||||
{
|
{
|
||||||
foreach (Texture texture in _views)
|
foreach (Texture texture in views)
|
||||||
{
|
{
|
||||||
texture.SignalModifiedDirty();
|
texture.SignalModifiedDirty();
|
||||||
}
|
}
|
||||||
|
@@ -121,7 +121,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
public TextureGroupHandle(TextureGroup group,
|
public TextureGroupHandle(TextureGroup group,
|
||||||
int offset,
|
int offset,
|
||||||
ulong size,
|
ulong size,
|
||||||
List<Texture> views,
|
IEnumerable<Texture> views,
|
||||||
int firstLayer,
|
int firstLayer,
|
||||||
int firstLevel,
|
int firstLevel,
|
||||||
int baseSlice,
|
int baseSlice,
|
||||||
@@ -201,8 +201,8 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
/// Calculate a list of which views overlap this handle.
|
/// Calculate a list of which views overlap this handle.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="group">The parent texture group, used to find a view's base CPU VA offset</param>
|
/// <param name="group">The parent texture group, used to find a view's base CPU VA offset</param>
|
||||||
/// <param name="views">The list of views to search for overlaps</param>
|
/// <param name="views">The views to search for overlaps</param>
|
||||||
public void RecalculateOverlaps(TextureGroup group, List<Texture> views)
|
public void RecalculateOverlaps(TextureGroup group, IEnumerable<Texture> views)
|
||||||
{
|
{
|
||||||
// Overlaps can be accessed from the memory tracking signal handler, so access must be atomic.
|
// Overlaps can be accessed from the memory tracking signal handler, so access must be atomic.
|
||||||
lock (Overlaps)
|
lock (Overlaps)
|
||||||
|
@@ -15,6 +15,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
|
|
||||||
private readonly TextureBindingsManager _cpBindingsManager;
|
private readonly TextureBindingsManager _cpBindingsManager;
|
||||||
private readonly TextureBindingsManager _gpBindingsManager;
|
private readonly TextureBindingsManager _gpBindingsManager;
|
||||||
|
private readonly TextureBindingsArrayCache _bindingsArrayCache;
|
||||||
private readonly TexturePoolCache _texturePoolCache;
|
private readonly TexturePoolCache _texturePoolCache;
|
||||||
private readonly SamplerPoolCache _samplerPoolCache;
|
private readonly SamplerPoolCache _samplerPoolCache;
|
||||||
|
|
||||||
@@ -46,8 +47,9 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
TexturePoolCache texturePoolCache = new(context);
|
TexturePoolCache texturePoolCache = new(context);
|
||||||
SamplerPoolCache samplerPoolCache = new(context);
|
SamplerPoolCache samplerPoolCache = new(context);
|
||||||
|
|
||||||
_cpBindingsManager = new TextureBindingsManager(context, channel, texturePoolCache, samplerPoolCache, isCompute: true);
|
_bindingsArrayCache = new TextureBindingsArrayCache(context, channel);
|
||||||
_gpBindingsManager = new TextureBindingsManager(context, channel, texturePoolCache, samplerPoolCache, isCompute: false);
|
_cpBindingsManager = new TextureBindingsManager(context, channel, _bindingsArrayCache, texturePoolCache, samplerPoolCache, isCompute: true);
|
||||||
|
_gpBindingsManager = new TextureBindingsManager(context, channel, _bindingsArrayCache, texturePoolCache, samplerPoolCache, isCompute: false);
|
||||||
_texturePoolCache = texturePoolCache;
|
_texturePoolCache = texturePoolCache;
|
||||||
_samplerPoolCache = samplerPoolCache;
|
_samplerPoolCache = samplerPoolCache;
|
||||||
|
|
||||||
@@ -384,7 +386,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||||||
{
|
{
|
||||||
ulong poolAddress = _channel.MemoryManager.Translate(poolGpuVa);
|
ulong poolAddress = _channel.MemoryManager.Translate(poolGpuVa);
|
||||||
|
|
||||||
TexturePool texturePool = _texturePoolCache.FindOrCreate(_channel, poolAddress, maximumId);
|
TexturePool texturePool = _texturePoolCache.FindOrCreate(_channel, poolAddress, maximumId, _bindingsArrayCache);
|
||||||
|
|
||||||
return texturePool;
|
return texturePool;
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,8 @@
|
|||||||
|
using Ryujinx.Common.Memory;
|
||||||
using Ryujinx.Memory;
|
using Ryujinx.Memory;
|
||||||
using Ryujinx.Memory.Range;
|
using Ryujinx.Memory.Range;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
@@ -240,11 +242,11 @@ namespace Ryujinx.Graphics.Gpu.Memory
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Memory<byte> memory = new byte[size];
|
IMemoryOwner<byte> memoryOwner = ByteMemoryPool.Rent(size);
|
||||||
|
|
||||||
GetSpan(va, size).CopyTo(memory.Span);
|
GetSpan(va, size).CopyTo(memoryOwner.Memory.Span);
|
||||||
|
|
||||||
return new WritableRegion(this, va, memory, tracked);
|
return new WritableRegion(this, va, memoryOwner, tracked);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
using Ryujinx.Common.Memory;
|
||||||
using Ryujinx.Cpu;
|
using Ryujinx.Cpu;
|
||||||
using Ryujinx.Graphics.Device;
|
using Ryujinx.Graphics.Device;
|
||||||
using Ryujinx.Graphics.Gpu.Image;
|
using Ryujinx.Graphics.Gpu.Image;
|
||||||
@@ -6,6 +7,7 @@ using Ryujinx.Memory;
|
|||||||
using Ryujinx.Memory.Range;
|
using Ryujinx.Memory.Range;
|
||||||
using Ryujinx.Memory.Tracking;
|
using Ryujinx.Memory.Tracking;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
@@ -190,7 +192,9 @@ namespace Ryujinx.Graphics.Gpu.Memory
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Memory<byte> memory = new byte[range.GetSize()];
|
IMemoryOwner<byte> memoryOwner = ByteMemoryPool.Rent(range.GetSize());
|
||||||
|
|
||||||
|
Memory<byte> memory = memoryOwner.Memory;
|
||||||
|
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
for (int i = 0; i < range.Count; i++)
|
for (int i = 0; i < range.Count; i++)
|
||||||
@@ -204,7 +208,7 @@ namespace Ryujinx.Graphics.Gpu.Memory
|
|||||||
offset += size;
|
offset += size;
|
||||||
}
|
}
|
||||||
|
|
||||||
return new WritableRegion(new MultiRangeWritableBlock(range, this), 0, memory, tracked);
|
return new WritableRegion(new MultiRangeWritableBlock(range, this), 0, memoryOwner, tracked);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -58,7 +58,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
|
|
||||||
TextureBindings[i] = stage.Info.Textures.Select(descriptor =>
|
TextureBindings[i] = stage.Info.Textures.Select(descriptor =>
|
||||||
{
|
{
|
||||||
Target target = ShaderTexture.GetTarget(descriptor.Type);
|
Target target = descriptor.Type != SamplerType.None ? ShaderTexture.GetTarget(descriptor.Type) : default;
|
||||||
|
|
||||||
var result = new TextureBindingInfo(
|
var result = new TextureBindingInfo(
|
||||||
target,
|
target,
|
||||||
@@ -66,7 +66,8 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
descriptor.ArrayLength,
|
descriptor.ArrayLength,
|
||||||
descriptor.CbufSlot,
|
descriptor.CbufSlot,
|
||||||
descriptor.HandleIndex,
|
descriptor.HandleIndex,
|
||||||
descriptor.Flags);
|
descriptor.Flags,
|
||||||
|
descriptor.Type == SamplerType.None);
|
||||||
|
|
||||||
if (descriptor.ArrayLength <= 1)
|
if (descriptor.ArrayLength <= 1)
|
||||||
{
|
{
|
||||||
|
@@ -18,6 +18,8 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
private readonly ShaderSpecializationState _newSpecState;
|
private readonly ShaderSpecializationState _newSpecState;
|
||||||
private readonly int _stageIndex;
|
private readonly int _stageIndex;
|
||||||
private readonly bool _isVulkan;
|
private readonly bool _isVulkan;
|
||||||
|
private readonly bool _hasGeometryShader;
|
||||||
|
private readonly bool _supportsQuads;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new instance of the cached GPU state accessor for shader translation.
|
/// Creates a new instance of the cached GPU state accessor for shader translation.
|
||||||
@@ -29,6 +31,7 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
/// <param name="newSpecState">Shader specialization state of the recompiled shader</param>
|
/// <param name="newSpecState">Shader specialization state of the recompiled shader</param>
|
||||||
/// <param name="counts">Resource counts shared across all shader stages</param>
|
/// <param name="counts">Resource counts shared across all shader stages</param>
|
||||||
/// <param name="stageIndex">Shader stage index</param>
|
/// <param name="stageIndex">Shader stage index</param>
|
||||||
|
/// <param name="hasGeometryShader">Indicates if a geometry shader is present</param>
|
||||||
public DiskCacheGpuAccessor(
|
public DiskCacheGpuAccessor(
|
||||||
GpuContext context,
|
GpuContext context,
|
||||||
ReadOnlyMemory<byte> data,
|
ReadOnlyMemory<byte> data,
|
||||||
@@ -36,7 +39,8 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
ShaderSpecializationState oldSpecState,
|
ShaderSpecializationState oldSpecState,
|
||||||
ShaderSpecializationState newSpecState,
|
ShaderSpecializationState newSpecState,
|
||||||
ResourceCounts counts,
|
ResourceCounts counts,
|
||||||
int stageIndex) : base(context, counts, stageIndex)
|
int stageIndex,
|
||||||
|
bool hasGeometryShader) : base(context, counts, stageIndex)
|
||||||
{
|
{
|
||||||
_data = data;
|
_data = data;
|
||||||
_cb1Data = cb1Data;
|
_cb1Data = cb1Data;
|
||||||
@@ -44,6 +48,8 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
_newSpecState = newSpecState;
|
_newSpecState = newSpecState;
|
||||||
_stageIndex = stageIndex;
|
_stageIndex = stageIndex;
|
||||||
_isVulkan = context.Capabilities.Api == TargetApi.Vulkan;
|
_isVulkan = context.Capabilities.Api == TargetApi.Vulkan;
|
||||||
|
_hasGeometryShader = hasGeometryShader;
|
||||||
|
_supportsQuads = context.Capabilities.SupportsQuads;
|
||||||
|
|
||||||
if (stageIndex == (int)ShaderStage.Geometry - 1)
|
if (stageIndex == (int)ShaderStage.Geometry - 1)
|
||||||
{
|
{
|
||||||
@@ -100,7 +106,11 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public GpuGraphicsState QueryGraphicsState()
|
public GpuGraphicsState QueryGraphicsState()
|
||||||
{
|
{
|
||||||
return _oldSpecState.GraphicsState.CreateShaderGraphicsState(!_isVulkan, _isVulkan || _oldSpecState.GraphicsState.YNegateEnabled);
|
return _oldSpecState.GraphicsState.CreateShaderGraphicsState(
|
||||||
|
!_isVulkan,
|
||||||
|
_supportsQuads,
|
||||||
|
_hasGeometryShader,
|
||||||
|
_isVulkan || _oldSpecState.GraphicsState.YNegateEnabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
@@ -109,6 +119,13 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
return _oldSpecState.GraphicsState.HasConstantBufferDrawParameters;
|
return _oldSpecState.GraphicsState.HasConstantBufferDrawParameters;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
/// <exception cref="DiskCacheLoadException">Pool length is not available on the cache</exception>
|
||||||
|
public int QuerySamplerArrayLengthFromPool()
|
||||||
|
{
|
||||||
|
return QueryArrayLengthFromPool(isSampler: true);
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public SamplerType QuerySamplerType(int handle, int cbufSlot)
|
public SamplerType QuerySamplerType(int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
@@ -117,6 +134,7 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
|
/// <exception cref="DiskCacheLoadException">Constant buffer derived length is not available on the cache</exception>
|
||||||
public int QueryTextureArrayLengthFromBuffer(int slot)
|
public int QueryTextureArrayLengthFromBuffer(int slot)
|
||||||
{
|
{
|
||||||
if (!_oldSpecState.TextureArrayFromBufferRegistered(_stageIndex, 0, slot))
|
if (!_oldSpecState.TextureArrayFromBufferRegistered(_stageIndex, 0, slot))
|
||||||
@@ -130,6 +148,13 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
return arrayLength;
|
return arrayLength;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
/// <exception cref="DiskCacheLoadException">Pool length is not available on the cache</exception>
|
||||||
|
public int QueryTextureArrayLengthFromPool()
|
||||||
|
{
|
||||||
|
return QueryArrayLengthFromPool(isSampler: false);
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public TextureFormat QueryTextureFormat(int handle, int cbufSlot)
|
public TextureFormat QueryTextureFormat(int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
@@ -170,6 +195,7 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
|
/// <exception cref="DiskCacheLoadException">Texture information is not available on the cache</exception>
|
||||||
public void RegisterTexture(int handle, int cbufSlot)
|
public void RegisterTexture(int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
if (!_oldSpecState.TextureRegistered(_stageIndex, handle, cbufSlot))
|
if (!_oldSpecState.TextureRegistered(_stageIndex, handle, cbufSlot))
|
||||||
@@ -182,5 +208,24 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
bool coordNormalized = _oldSpecState.GetCoordNormalized(_stageIndex, handle, cbufSlot);
|
bool coordNormalized = _oldSpecState.GetCoordNormalized(_stageIndex, handle, cbufSlot);
|
||||||
_newSpecState.RegisterTexture(_stageIndex, handle, cbufSlot, format, formatSrgb, target, coordNormalized);
|
_newSpecState.RegisterTexture(_stageIndex, handle, cbufSlot, format, formatSrgb, target, coordNormalized);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the cached texture or sampler pool capacity.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="isSampler">True to get sampler pool length, false for texture pool length</param>
|
||||||
|
/// <returns>Pool length</returns>
|
||||||
|
/// <exception cref="DiskCacheLoadException">Pool length is not available on the cache</exception>
|
||||||
|
private int QueryArrayLengthFromPool(bool isSampler)
|
||||||
|
{
|
||||||
|
if (!_oldSpecState.TextureArrayFromPoolRegistered(isSampler))
|
||||||
|
{
|
||||||
|
throw new DiskCacheLoadException(DiskCacheLoadResult.MissingTextureArrayLength);
|
||||||
|
}
|
||||||
|
|
||||||
|
int arrayLength = _oldSpecState.GetTextureArrayFromPoolLength(isSampler);
|
||||||
|
_newSpecState.RegisterTextureArrayLengthFromPool(isSampler, arrayLength);
|
||||||
|
|
||||||
|
return arrayLength;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -22,7 +22,7 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
private const ushort FileFormatVersionMajor = 1;
|
private const ushort FileFormatVersionMajor = 1;
|
||||||
private const ushort FileFormatVersionMinor = 2;
|
private const ushort FileFormatVersionMinor = 2;
|
||||||
private const uint FileFormatVersionPacked = ((uint)FileFormatVersionMajor << 16) | FileFormatVersionMinor;
|
private const uint FileFormatVersionPacked = ((uint)FileFormatVersionMajor << 16) | FileFormatVersionMinor;
|
||||||
private const uint CodeGenVersion = 6489;
|
private const uint CodeGenVersion = 5936;
|
||||||
|
|
||||||
private const string SharedTocFileName = "shared.toc";
|
private const string SharedTocFileName = "shared.toc";
|
||||||
private const string SharedDataFileName = "shared.data";
|
private const string SharedDataFileName = "shared.data";
|
||||||
|
@@ -601,6 +601,8 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
|
|
||||||
TargetApi api = _context.Capabilities.Api;
|
TargetApi api = _context.Capabilities.Api;
|
||||||
|
|
||||||
|
bool hasCachedGs = guestShaders[4].HasValue;
|
||||||
|
|
||||||
for (int stageIndex = Constants.ShaderStages - 1; stageIndex >= 0; stageIndex--)
|
for (int stageIndex = Constants.ShaderStages - 1; stageIndex >= 0; stageIndex--)
|
||||||
{
|
{
|
||||||
if (guestShaders[stageIndex + 1].HasValue)
|
if (guestShaders[stageIndex + 1].HasValue)
|
||||||
@@ -610,7 +612,7 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
byte[] guestCode = shader.Code;
|
byte[] guestCode = shader.Code;
|
||||||
byte[] cb1Data = shader.Cb1Data;
|
byte[] cb1Data = shader.Cb1Data;
|
||||||
|
|
||||||
DiskCacheGpuAccessor gpuAccessor = new(_context, guestCode, cb1Data, specState, newSpecState, counts, stageIndex);
|
DiskCacheGpuAccessor gpuAccessor = new(_context, guestCode, cb1Data, specState, newSpecState, counts, stageIndex, hasCachedGs);
|
||||||
TranslatorContext currentStage = DecodeGraphicsShader(gpuAccessor, api, DefaultFlags, 0);
|
TranslatorContext currentStage = DecodeGraphicsShader(gpuAccessor, api, DefaultFlags, 0);
|
||||||
|
|
||||||
if (nextStage != null)
|
if (nextStage != null)
|
||||||
@@ -623,7 +625,7 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
byte[] guestCodeA = guestShaders[0].Value.Code;
|
byte[] guestCodeA = guestShaders[0].Value.Code;
|
||||||
byte[] cb1DataA = guestShaders[0].Value.Cb1Data;
|
byte[] cb1DataA = guestShaders[0].Value.Cb1Data;
|
||||||
|
|
||||||
DiskCacheGpuAccessor gpuAccessorA = new(_context, guestCodeA, cb1DataA, specState, newSpecState, counts, 0);
|
DiskCacheGpuAccessor gpuAccessorA = new(_context, guestCodeA, cb1DataA, specState, newSpecState, counts, 0, hasCachedGs);
|
||||||
translatorContexts[0] = DecodeGraphicsShader(gpuAccessorA, api, DefaultFlags | TranslationFlags.VertexA, 0);
|
translatorContexts[0] = DecodeGraphicsShader(gpuAccessorA, api, DefaultFlags | TranslationFlags.VertexA, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -711,7 +713,7 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
|
|||||||
GuestCodeAndCbData shader = guestShaders[0].Value;
|
GuestCodeAndCbData shader = guestShaders[0].Value;
|
||||||
ResourceCounts counts = new();
|
ResourceCounts counts = new();
|
||||||
ShaderSpecializationState newSpecState = new(ref specState.ComputeState);
|
ShaderSpecializationState newSpecState = new(ref specState.ComputeState);
|
||||||
DiskCacheGpuAccessor gpuAccessor = new(_context, shader.Code, shader.Cb1Data, specState, newSpecState, counts, 0);
|
DiskCacheGpuAccessor gpuAccessor = new(_context, shader.Code, shader.Cb1Data, specState, newSpecState, counts, 0, false);
|
||||||
gpuAccessor.InitializeReservedCounts(tfEnabled: false, vertexAsCompute: false);
|
gpuAccessor.InitializeReservedCounts(tfEnabled: false, vertexAsCompute: false);
|
||||||
|
|
||||||
TranslatorContext translatorContext = DecodeComputeShader(gpuAccessor, _context.Capabilities.Api, 0);
|
TranslatorContext translatorContext = DecodeComputeShader(gpuAccessor, _context.Capabilities.Api, 0);
|
||||||
|
@@ -17,6 +17,8 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
private readonly int _stageIndex;
|
private readonly int _stageIndex;
|
||||||
private readonly bool _compute;
|
private readonly bool _compute;
|
||||||
private readonly bool _isVulkan;
|
private readonly bool _isVulkan;
|
||||||
|
private readonly bool _hasGeometryShader;
|
||||||
|
private readonly bool _supportsQuads;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new instance of the GPU state accessor for graphics shader translation.
|
/// Creates a new instance of the GPU state accessor for graphics shader translation.
|
||||||
@@ -25,12 +27,20 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// <param name="channel">GPU channel</param>
|
/// <param name="channel">GPU channel</param>
|
||||||
/// <param name="state">Current GPU state</param>
|
/// <param name="state">Current GPU state</param>
|
||||||
/// <param name="stageIndex">Graphics shader stage index (0 = Vertex, 4 = Fragment)</param>
|
/// <param name="stageIndex">Graphics shader stage index (0 = Vertex, 4 = Fragment)</param>
|
||||||
public GpuAccessor(GpuContext context, GpuChannel channel, GpuAccessorState state, int stageIndex) : base(context, state.ResourceCounts, stageIndex)
|
/// <param name="hasGeometryShader">Indicates if a geometry shader is present</param>
|
||||||
|
public GpuAccessor(
|
||||||
|
GpuContext context,
|
||||||
|
GpuChannel channel,
|
||||||
|
GpuAccessorState state,
|
||||||
|
int stageIndex,
|
||||||
|
bool hasGeometryShader) : base(context, state.ResourceCounts, stageIndex)
|
||||||
{
|
{
|
||||||
_isVulkan = context.Capabilities.Api == TargetApi.Vulkan;
|
|
||||||
_channel = channel;
|
_channel = channel;
|
||||||
_state = state;
|
_state = state;
|
||||||
_stageIndex = stageIndex;
|
_stageIndex = stageIndex;
|
||||||
|
_isVulkan = context.Capabilities.Api == TargetApi.Vulkan;
|
||||||
|
_hasGeometryShader = hasGeometryShader;
|
||||||
|
_supportsQuads = context.Capabilities.SupportsQuads;
|
||||||
|
|
||||||
if (stageIndex == (int)ShaderStage.Geometry - 1)
|
if (stageIndex == (int)ShaderStage.Geometry - 1)
|
||||||
{
|
{
|
||||||
@@ -105,7 +115,11 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public GpuGraphicsState QueryGraphicsState()
|
public GpuGraphicsState QueryGraphicsState()
|
||||||
{
|
{
|
||||||
return _state.GraphicsState.CreateShaderGraphicsState(!_isVulkan, _isVulkan || _state.GraphicsState.YNegateEnabled);
|
return _state.GraphicsState.CreateShaderGraphicsState(
|
||||||
|
!_isVulkan,
|
||||||
|
_supportsQuads,
|
||||||
|
_hasGeometryShader,
|
||||||
|
_isVulkan || _state.GraphicsState.YNegateEnabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
@@ -120,6 +134,15 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
return _state.GraphicsState.HasUnalignedStorageBuffer || _state.ComputeState.HasUnalignedStorageBuffer;
|
return _state.GraphicsState.HasUnalignedStorageBuffer || _state.ComputeState.HasUnalignedStorageBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public int QuerySamplerArrayLengthFromPool()
|
||||||
|
{
|
||||||
|
int length = _state.SamplerPoolMaximumId + 1;
|
||||||
|
_state.SpecializationState?.RegisterTextureArrayLengthFromPool(isSampler: true, length);
|
||||||
|
|
||||||
|
return length;
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public SamplerType QuerySamplerType(int handle, int cbufSlot)
|
public SamplerType QuerySamplerType(int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
@@ -141,6 +164,15 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
return arrayLength;
|
return arrayLength;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
public int QueryTextureArrayLengthFromPool()
|
||||||
|
{
|
||||||
|
int length = _state.PoolState.TexturePoolMaximumId + 1;
|
||||||
|
_state.SpecializationState?.RegisterTextureArrayLengthFromPool(isSampler: false, length);
|
||||||
|
|
||||||
|
return length;
|
||||||
|
}
|
||||||
|
|
||||||
//// <inheritdoc/>
|
//// <inheritdoc/>
|
||||||
public TextureFormat QueryTextureFormat(int handle, int cbufSlot)
|
public TextureFormat QueryTextureFormat(int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
|
@@ -213,6 +213,8 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
|
|
||||||
public bool QueryHostSupportsScaledVertexFormats() => _context.Capabilities.SupportsScaledVertexFormats;
|
public bool QueryHostSupportsScaledVertexFormats() => _context.Capabilities.SupportsScaledVertexFormats;
|
||||||
|
|
||||||
|
public bool QueryHostSupportsSeparateSampler() => _context.Capabilities.SupportsSeparateSampler;
|
||||||
|
|
||||||
public bool QueryHostSupportsShaderBallot() => _context.Capabilities.SupportsShaderBallot;
|
public bool QueryHostSupportsShaderBallot() => _context.Capabilities.SupportsShaderBallot;
|
||||||
|
|
||||||
public bool QueryHostSupportsShaderBarrierDivergence() => _context.Capabilities.SupportsShaderBarrierDivergence;
|
public bool QueryHostSupportsShaderBarrierDivergence() => _context.Capabilities.SupportsShaderBarrierDivergence;
|
||||||
|
@@ -5,6 +5,11 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
class GpuAccessorState
|
class GpuAccessorState
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Maximum ID that a sampler pool entry may have.
|
||||||
|
/// </summary>
|
||||||
|
public readonly int SamplerPoolMaximumId;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// GPU texture pool state.
|
/// GPU texture pool state.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -38,18 +43,21 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new GPU accessor state.
|
/// Creates a new GPU accessor state.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <param name="samplerPoolMaximumId">Maximum ID that a sampler pool entry may have</param>
|
||||||
/// <param name="poolState">GPU texture pool state</param>
|
/// <param name="poolState">GPU texture pool state</param>
|
||||||
/// <param name="computeState">GPU compute state, for compute shaders</param>
|
/// <param name="computeState">GPU compute state, for compute shaders</param>
|
||||||
/// <param name="graphicsState">GPU graphics state, for vertex, tessellation, geometry and fragment shaders</param>
|
/// <param name="graphicsState">GPU graphics state, for vertex, tessellation, geometry and fragment shaders</param>
|
||||||
/// <param name="specializationState">Shader specialization state (shared by all stages)</param>
|
/// <param name="specializationState">Shader specialization state (shared by all stages)</param>
|
||||||
/// <param name="transformFeedbackDescriptors">Transform feedback information, if the shader uses transform feedback. Otherwise, should be null</param>
|
/// <param name="transformFeedbackDescriptors">Transform feedback information, if the shader uses transform feedback. Otherwise, should be null</param>
|
||||||
public GpuAccessorState(
|
public GpuAccessorState(
|
||||||
|
int samplerPoolMaximumId,
|
||||||
GpuChannelPoolState poolState,
|
GpuChannelPoolState poolState,
|
||||||
GpuChannelComputeState computeState,
|
GpuChannelComputeState computeState,
|
||||||
GpuChannelGraphicsState graphicsState,
|
GpuChannelGraphicsState graphicsState,
|
||||||
ShaderSpecializationState specializationState,
|
ShaderSpecializationState specializationState,
|
||||||
TransformFeedbackDescriptor[] transformFeedbackDescriptors = null)
|
TransformFeedbackDescriptor[] transformFeedbackDescriptors = null)
|
||||||
{
|
{
|
||||||
|
SamplerPoolMaximumId = samplerPoolMaximumId;
|
||||||
PoolState = poolState;
|
PoolState = poolState;
|
||||||
GraphicsState = graphicsState;
|
GraphicsState = graphicsState;
|
||||||
ComputeState = computeState;
|
ComputeState = computeState;
|
||||||
|
@@ -106,8 +106,11 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// Creates a new graphics state from this state that can be used for shader generation.
|
/// Creates a new graphics state from this state that can be used for shader generation.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="hostSupportsAlphaTest">Indicates if the host API supports alpha test operations</param>
|
/// <param name="hostSupportsAlphaTest">Indicates if the host API supports alpha test operations</param>
|
||||||
|
/// <param name="hostSupportsQuads">Indicates if the host API supports quad primitives</param>
|
||||||
|
/// <param name="hasGeometryShader">Indicates if a geometry shader is used</param>
|
||||||
|
/// <param name="originUpperLeft">If true, indicates that the fragment origin is the upper left corner of the viewport, otherwise it is the lower left corner</param>
|
||||||
/// <returns>GPU graphics state that can be used for shader translation</returns>
|
/// <returns>GPU graphics state that can be used for shader translation</returns>
|
||||||
public readonly GpuGraphicsState CreateShaderGraphicsState(bool hostSupportsAlphaTest, bool originUpperLeft)
|
public readonly GpuGraphicsState CreateShaderGraphicsState(bool hostSupportsAlphaTest, bool hostSupportsQuads, bool hasGeometryShader, bool originUpperLeft)
|
||||||
{
|
{
|
||||||
AlphaTestOp alphaTestOp;
|
AlphaTestOp alphaTestOp;
|
||||||
|
|
||||||
@@ -130,6 +133,9 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool isQuad = Topology == PrimitiveTopology.Quads || Topology == PrimitiveTopology.QuadStrip;
|
||||||
|
bool halvePrimitiveId = !hostSupportsQuads && !hasGeometryShader && isQuad;
|
||||||
|
|
||||||
return new GpuGraphicsState(
|
return new GpuGraphicsState(
|
||||||
EarlyZForce,
|
EarlyZForce,
|
||||||
ConvertToInputTopology(Topology, TessellationMode),
|
ConvertToInputTopology(Topology, TessellationMode),
|
||||||
@@ -149,7 +155,8 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
in FragmentOutputTypes,
|
in FragmentOutputTypes,
|
||||||
DualSourceBlendEnable,
|
DualSourceBlendEnable,
|
||||||
YNegateEnabled,
|
YNegateEnabled,
|
||||||
originUpperLeft);
|
originUpperLeft,
|
||||||
|
halvePrimitiveId);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@@ -2,7 +2,6 @@ using System;
|
|||||||
|
|
||||||
namespace Ryujinx.Graphics.Gpu.Shader
|
namespace Ryujinx.Graphics.Gpu.Shader
|
||||||
{
|
{
|
||||||
#pragma warning disable CS0659 // Class overrides Object.Equals(object o) but does not override Object.GetHashCode()
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// State used by the <see cref="GpuAccessor"/>.
|
/// State used by the <see cref="GpuAccessor"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -52,6 +51,10 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
{
|
{
|
||||||
return obj is GpuChannelPoolState state && Equals(state);
|
return obj is GpuChannelPoolState state && Equals(state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode()
|
||||||
|
{
|
||||||
|
return HashCode.Combine(TexturePoolGpuVa, TexturePoolMaximumId, TextureBufferIndex);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#pragma warning restore CS0659
|
|
||||||
}
|
}
|
||||||
|
@@ -192,12 +192,14 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// This automatically translates, compiles and adds the code to the cache if not present.
|
/// This automatically translates, compiles and adds the code to the cache if not present.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="channel">GPU channel</param>
|
/// <param name="channel">GPU channel</param>
|
||||||
|
/// <param name="samplerPoolMaximumId">Maximum ID that an entry in the sampler pool may have</param>
|
||||||
/// <param name="poolState">Texture pool state</param>
|
/// <param name="poolState">Texture pool state</param>
|
||||||
/// <param name="computeState">Compute engine state</param>
|
/// <param name="computeState">Compute engine state</param>
|
||||||
/// <param name="gpuVa">GPU virtual address of the binary shader code</param>
|
/// <param name="gpuVa">GPU virtual address of the binary shader code</param>
|
||||||
/// <returns>Compiled compute shader code</returns>
|
/// <returns>Compiled compute shader code</returns>
|
||||||
public CachedShaderProgram GetComputeShader(
|
public CachedShaderProgram GetComputeShader(
|
||||||
GpuChannel channel,
|
GpuChannel channel,
|
||||||
|
int samplerPoolMaximumId,
|
||||||
GpuChannelPoolState poolState,
|
GpuChannelPoolState poolState,
|
||||||
GpuChannelComputeState computeState,
|
GpuChannelComputeState computeState,
|
||||||
ulong gpuVa)
|
ulong gpuVa)
|
||||||
@@ -214,7 +216,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
}
|
}
|
||||||
|
|
||||||
ShaderSpecializationState specState = new(ref computeState);
|
ShaderSpecializationState specState = new(ref computeState);
|
||||||
GpuAccessorState gpuAccessorState = new(poolState, computeState, default, specState);
|
GpuAccessorState gpuAccessorState = new(samplerPoolMaximumId, poolState, computeState, default, specState);
|
||||||
GpuAccessor gpuAccessor = new(_context, channel, gpuAccessorState);
|
GpuAccessor gpuAccessor = new(_context, channel, gpuAccessorState);
|
||||||
gpuAccessor.InitializeReservedCounts(tfEnabled: false, vertexAsCompute: false);
|
gpuAccessor.InitializeReservedCounts(tfEnabled: false, vertexAsCompute: false);
|
||||||
|
|
||||||
@@ -291,6 +293,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// <param name="state">GPU state</param>
|
/// <param name="state">GPU state</param>
|
||||||
/// <param name="pipeline">Pipeline state</param>
|
/// <param name="pipeline">Pipeline state</param>
|
||||||
/// <param name="channel">GPU channel</param>
|
/// <param name="channel">GPU channel</param>
|
||||||
|
/// <param name="samplerPoolMaximumId">Maximum ID that an entry in the sampler pool may have</param>
|
||||||
/// <param name="poolState">Texture pool state</param>
|
/// <param name="poolState">Texture pool state</param>
|
||||||
/// <param name="graphicsState">3D engine state</param>
|
/// <param name="graphicsState">3D engine state</param>
|
||||||
/// <param name="addresses">Addresses of the shaders for each stage</param>
|
/// <param name="addresses">Addresses of the shaders for each stage</param>
|
||||||
@@ -299,6 +302,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
ref ThreedClassState state,
|
ref ThreedClassState state,
|
||||||
ref ProgramPipelineState pipeline,
|
ref ProgramPipelineState pipeline,
|
||||||
GpuChannel channel,
|
GpuChannel channel,
|
||||||
|
int samplerPoolMaximumId,
|
||||||
ref GpuChannelPoolState poolState,
|
ref GpuChannelPoolState poolState,
|
||||||
ref GpuChannelGraphicsState graphicsState,
|
ref GpuChannelGraphicsState graphicsState,
|
||||||
ShaderAddresses addresses)
|
ShaderAddresses addresses)
|
||||||
@@ -319,7 +323,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
UpdatePipelineInfo(ref state, ref pipeline, graphicsState, channel);
|
UpdatePipelineInfo(ref state, ref pipeline, graphicsState, channel);
|
||||||
|
|
||||||
ShaderSpecializationState specState = new(ref graphicsState, ref pipeline, transformFeedbackDescriptors);
|
ShaderSpecializationState specState = new(ref graphicsState, ref pipeline, transformFeedbackDescriptors);
|
||||||
GpuAccessorState gpuAccessorState = new(poolState, default, graphicsState, specState, transformFeedbackDescriptors);
|
GpuAccessorState gpuAccessorState = new(samplerPoolMaximumId, poolState, default, graphicsState, specState, transformFeedbackDescriptors);
|
||||||
|
|
||||||
ReadOnlySpan<ulong> addressesSpan = addresses.AsSpan();
|
ReadOnlySpan<ulong> addressesSpan = addresses.AsSpan();
|
||||||
|
|
||||||
@@ -335,7 +339,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
|
|
||||||
if (gpuVa != 0)
|
if (gpuVa != 0)
|
||||||
{
|
{
|
||||||
GpuAccessor gpuAccessor = new(_context, channel, gpuAccessorState, stageIndex);
|
GpuAccessor gpuAccessor = new(_context, channel, gpuAccessorState, stageIndex, addresses.Geometry != 0);
|
||||||
TranslatorContext currentStage = DecodeGraphicsShader(gpuAccessor, api, DefaultFlags, gpuVa);
|
TranslatorContext currentStage = DecodeGraphicsShader(gpuAccessor, api, DefaultFlags, gpuVa);
|
||||||
|
|
||||||
if (nextStage != null)
|
if (nextStage != null)
|
||||||
|
@@ -185,11 +185,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
{
|
{
|
||||||
if (texture.ArrayLength > 1)
|
if (texture.ArrayLength > 1)
|
||||||
{
|
{
|
||||||
bool isBuffer = (texture.Type & SamplerType.Mask) == SamplerType.TextureBuffer;
|
ResourceType type = GetTextureResourceType(texture, isImage);
|
||||||
|
|
||||||
ResourceType type = isBuffer
|
|
||||||
? (isImage ? ResourceType.BufferImage : ResourceType.BufferTexture)
|
|
||||||
: (isImage ? ResourceType.Image : ResourceType.TextureAndSampler);
|
|
||||||
|
|
||||||
_resourceDescriptors[setIndex].Add(new ResourceDescriptor(texture.Binding, texture.ArrayLength, type, stages));
|
_resourceDescriptors[setIndex].Add(new ResourceDescriptor(texture.Binding, texture.ArrayLength, type, stages));
|
||||||
}
|
}
|
||||||
@@ -242,16 +238,38 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
{
|
{
|
||||||
foreach (TextureDescriptor texture in textures)
|
foreach (TextureDescriptor texture in textures)
|
||||||
{
|
{
|
||||||
bool isBuffer = (texture.Type & SamplerType.Mask) == SamplerType.TextureBuffer;
|
ResourceType type = GetTextureResourceType(texture, isImage);
|
||||||
|
|
||||||
ResourceType type = isBuffer
|
|
||||||
? (isImage ? ResourceType.BufferImage : ResourceType.BufferTexture)
|
|
||||||
: (isImage ? ResourceType.Image : ResourceType.TextureAndSampler);
|
|
||||||
|
|
||||||
_resourceUsages[setIndex].Add(new ResourceUsage(texture.Binding, texture.ArrayLength, type, stages));
|
_resourceUsages[setIndex].Add(new ResourceUsage(texture.Binding, texture.ArrayLength, type, stages));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static ResourceType GetTextureResourceType(TextureDescriptor texture, bool isImage)
|
||||||
|
{
|
||||||
|
bool isBuffer = (texture.Type & SamplerType.Mask) == SamplerType.TextureBuffer;
|
||||||
|
|
||||||
|
if (isBuffer)
|
||||||
|
{
|
||||||
|
return isImage ? ResourceType.BufferImage : ResourceType.BufferTexture;
|
||||||
|
}
|
||||||
|
else if (isImage)
|
||||||
|
{
|
||||||
|
return ResourceType.Image;
|
||||||
|
}
|
||||||
|
else if (texture.Type == SamplerType.None)
|
||||||
|
{
|
||||||
|
return ResourceType.Sampler;
|
||||||
|
}
|
||||||
|
else if (texture.Separate)
|
||||||
|
{
|
||||||
|
return ResourceType.Texture;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return ResourceType.TextureAndSampler;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new shader information structure from the added information.
|
/// Creates a new shader information structure from the added information.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@@ -31,6 +31,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
PrimitiveTopology = 1 << 1,
|
PrimitiveTopology = 1 << 1,
|
||||||
TransformFeedback = 1 << 3,
|
TransformFeedback = 1 << 3,
|
||||||
TextureArrayFromBuffer = 1 << 4,
|
TextureArrayFromBuffer = 1 << 4,
|
||||||
|
TextureArrayFromPool = 1 << 5,
|
||||||
}
|
}
|
||||||
|
|
||||||
private QueriedStateFlags _queriedState;
|
private QueriedStateFlags _queriedState;
|
||||||
@@ -154,7 +155,8 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
}
|
}
|
||||||
|
|
||||||
private readonly Dictionary<TextureKey, Box<TextureSpecializationState>> _textureSpecialization;
|
private readonly Dictionary<TextureKey, Box<TextureSpecializationState>> _textureSpecialization;
|
||||||
private readonly Dictionary<TextureKey, int> _textureArraySpecialization;
|
private readonly Dictionary<TextureKey, int> _textureArrayFromBufferSpecialization;
|
||||||
|
private readonly Dictionary<bool, int> _textureArrayFromPoolSpecialization;
|
||||||
private KeyValuePair<TextureKey, Box<TextureSpecializationState>>[] _allTextures;
|
private KeyValuePair<TextureKey, Box<TextureSpecializationState>>[] _allTextures;
|
||||||
private Box<TextureSpecializationState>[][] _textureByBinding;
|
private Box<TextureSpecializationState>[][] _textureByBinding;
|
||||||
private Box<TextureSpecializationState>[][] _imageByBinding;
|
private Box<TextureSpecializationState>[][] _imageByBinding;
|
||||||
@@ -165,7 +167,8 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
private ShaderSpecializationState()
|
private ShaderSpecializationState()
|
||||||
{
|
{
|
||||||
_textureSpecialization = new Dictionary<TextureKey, Box<TextureSpecializationState>>();
|
_textureSpecialization = new Dictionary<TextureKey, Box<TextureSpecializationState>>();
|
||||||
_textureArraySpecialization = new Dictionary<TextureKey, int>();
|
_textureArrayFromBufferSpecialization = new Dictionary<TextureKey, int>();
|
||||||
|
_textureArrayFromPoolSpecialization = new Dictionary<bool, int>();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -327,7 +330,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates that the coordinate normalization state of a given texture was used during the shader translation process.
|
/// Registers the length of a texture array calculated from a constant buffer size.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
||||||
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
||||||
@@ -335,10 +338,21 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// <param name="length">Number of elements in the texture array</param>
|
/// <param name="length">Number of elements in the texture array</param>
|
||||||
public void RegisterTextureArrayLengthFromBuffer(int stageIndex, int handle, int cbufSlot, int length)
|
public void RegisterTextureArrayLengthFromBuffer(int stageIndex, int handle, int cbufSlot, int length)
|
||||||
{
|
{
|
||||||
_textureArraySpecialization[new TextureKey(stageIndex, handle, cbufSlot)] = length;
|
_textureArrayFromBufferSpecialization[new TextureKey(stageIndex, handle, cbufSlot)] = length;
|
||||||
_queriedState |= QueriedStateFlags.TextureArrayFromBuffer;
|
_queriedState |= QueriedStateFlags.TextureArrayFromBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Registers the length of a texture array calculated from a texture or sampler pool capacity.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="isSampler">True for sampler pool, false for texture pool</param>
|
||||||
|
/// <param name="length">Number of elements in the texture array</param>
|
||||||
|
public void RegisterTextureArrayLengthFromPool(bool isSampler, int length)
|
||||||
|
{
|
||||||
|
_textureArrayFromPoolSpecialization[isSampler] = length;
|
||||||
|
_queriedState |= QueriedStateFlags.TextureArrayFromPool;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates that the format of a given texture was used during the shader translation process.
|
/// Indicates that the format of a given texture was used during the shader translation process.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -385,7 +399,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks if a given texture was registerd on this specialization state.
|
/// Checks if a given texture was registered on this specialization state.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
||||||
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
||||||
@@ -396,14 +410,25 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks if a given texture array (from constant buffer) was registerd on this specialization state.
|
/// Checks if a given texture array (from constant buffer) was registered on this specialization state.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
||||||
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
||||||
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
||||||
|
/// <returns>True if the length for the given buffer and stage exists, false otherwise</returns>
|
||||||
public bool TextureArrayFromBufferRegistered(int stageIndex, int handle, int cbufSlot)
|
public bool TextureArrayFromBufferRegistered(int stageIndex, int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
return _textureArraySpecialization.ContainsKey(new TextureKey(stageIndex, handle, cbufSlot));
|
return _textureArrayFromBufferSpecialization.ContainsKey(new TextureKey(stageIndex, handle, cbufSlot));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Checks if a given texture array (from a sampler pool or texture pool) was registered on this specialization state.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="isSampler">True for sampler pool, false for texture pool</param>
|
||||||
|
/// <returns>True if the length for the given pool, false otherwise</returns>
|
||||||
|
public bool TextureArrayFromPoolRegistered(bool isSampler)
|
||||||
|
{
|
||||||
|
return _textureArrayFromPoolSpecialization.ContainsKey(isSampler);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -412,6 +437,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
||||||
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
||||||
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
||||||
|
/// <returns>Format and sRGB tuple</returns>
|
||||||
public (uint, bool) GetFormat(int stageIndex, int handle, int cbufSlot)
|
public (uint, bool) GetFormat(int stageIndex, int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
TextureSpecializationState state = GetTextureSpecState(stageIndex, handle, cbufSlot).Value;
|
TextureSpecializationState state = GetTextureSpecState(stageIndex, handle, cbufSlot).Value;
|
||||||
@@ -424,6 +450,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
||||||
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
||||||
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
||||||
|
/// <returns>Texture target</returns>
|
||||||
public TextureTarget GetTextureTarget(int stageIndex, int handle, int cbufSlot)
|
public TextureTarget GetTextureTarget(int stageIndex, int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
return GetTextureSpecState(stageIndex, handle, cbufSlot).Value.TextureTarget;
|
return GetTextureSpecState(stageIndex, handle, cbufSlot).Value.TextureTarget;
|
||||||
@@ -435,6 +462,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
||||||
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
||||||
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
||||||
|
/// <returns>True if coordinates are normalized, false otherwise</returns>
|
||||||
public bool GetCoordNormalized(int stageIndex, int handle, int cbufSlot)
|
public bool GetCoordNormalized(int stageIndex, int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
return GetTextureSpecState(stageIndex, handle, cbufSlot).Value.CoordNormalized;
|
return GetTextureSpecState(stageIndex, handle, cbufSlot).Value.CoordNormalized;
|
||||||
@@ -446,9 +474,20 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
/// <param name="stageIndex">Shader stage where the texture is used</param>
|
||||||
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
/// <param name="handle">Offset in words of the texture handle on the texture buffer</param>
|
||||||
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
/// <param name="cbufSlot">Slot of the texture buffer constant buffer</param>
|
||||||
|
/// <returns>Texture array length</returns>
|
||||||
public int GetTextureArrayFromBufferLength(int stageIndex, int handle, int cbufSlot)
|
public int GetTextureArrayFromBufferLength(int stageIndex, int handle, int cbufSlot)
|
||||||
{
|
{
|
||||||
return _textureArraySpecialization[new TextureKey(stageIndex, handle, cbufSlot)];
|
return _textureArrayFromBufferSpecialization[new TextureKey(stageIndex, handle, cbufSlot)];
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the recorded length of a given texture array (from a sampler or texture pool).
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="isSampler">True to get the sampler pool length, false to get the texture pool length</param>
|
||||||
|
/// <returns>Texture array length</returns>
|
||||||
|
public int GetTextureArrayFromPoolLength(bool isSampler)
|
||||||
|
{
|
||||||
|
return _textureArrayFromPoolSpecialization[isSampler];
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -894,7 +933,23 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
dataReader.ReadWithMagicAndSize(ref textureKey, TexkMagic);
|
dataReader.ReadWithMagicAndSize(ref textureKey, TexkMagic);
|
||||||
dataReader.Read(ref length);
|
dataReader.Read(ref length);
|
||||||
|
|
||||||
specState._textureArraySpecialization[textureKey] = length;
|
specState._textureArrayFromBufferSpecialization[textureKey] = length;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (specState._queriedState.HasFlag(QueriedStateFlags.TextureArrayFromPool))
|
||||||
|
{
|
||||||
|
dataReader.Read(ref count);
|
||||||
|
|
||||||
|
for (int index = 0; index < count; index++)
|
||||||
|
{
|
||||||
|
bool textureKey = default;
|
||||||
|
int length = 0;
|
||||||
|
|
||||||
|
dataReader.ReadWithMagicAndSize(ref textureKey, TexkMagic);
|
||||||
|
dataReader.Read(ref length);
|
||||||
|
|
||||||
|
specState._textureArrayFromPoolSpecialization[textureKey] = length;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -965,10 +1020,25 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||||||
|
|
||||||
if (_queriedState.HasFlag(QueriedStateFlags.TextureArrayFromBuffer))
|
if (_queriedState.HasFlag(QueriedStateFlags.TextureArrayFromBuffer))
|
||||||
{
|
{
|
||||||
count = (ushort)_textureArraySpecialization.Count;
|
count = (ushort)_textureArrayFromBufferSpecialization.Count;
|
||||||
dataWriter.Write(ref count);
|
dataWriter.Write(ref count);
|
||||||
|
|
||||||
foreach (var kv in _textureArraySpecialization)
|
foreach (var kv in _textureArrayFromBufferSpecialization)
|
||||||
|
{
|
||||||
|
var textureKey = kv.Key;
|
||||||
|
var length = kv.Value;
|
||||||
|
|
||||||
|
dataWriter.WriteWithMagicAndSize(ref textureKey, TexkMagic);
|
||||||
|
dataWriter.Write(ref length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_queriedState.HasFlag(QueriedStateFlags.TextureArrayFromPool))
|
||||||
|
{
|
||||||
|
count = (ushort)_textureArrayFromPoolSpecialization.Count;
|
||||||
|
dataWriter.Write(ref count);
|
||||||
|
|
||||||
|
foreach (var kv in _textureArrayFromPoolSpecialization)
|
||||||
{
|
{
|
||||||
var textureKey = kv.Key;
|
var textureKey = kv.Key;
|
||||||
var length = kv.Value;
|
var length = kv.Value;
|
||||||
|
@@ -33,7 +33,8 @@ namespace Ryujinx.Graphics.OpenGL.Effects.Smaa
|
|||||||
|
|
||||||
public int Quality
|
public int Quality
|
||||||
{
|
{
|
||||||
get => _quality; set
|
get => _quality;
|
||||||
|
set
|
||||||
{
|
{
|
||||||
_quality = Math.Clamp(value, 0, _qualities.Length - 1);
|
_quality = Math.Clamp(value, 0, _qualities.Length - 1);
|
||||||
}
|
}
|
||||||
@@ -150,8 +151,8 @@ namespace Ryujinx.Graphics.OpenGL.Effects.Smaa
|
|||||||
_areaTexture = new TextureStorage(_renderer, areaInfo);
|
_areaTexture = new TextureStorage(_renderer, areaInfo);
|
||||||
_searchTexture = new TextureStorage(_renderer, searchInfo);
|
_searchTexture = new TextureStorage(_renderer, searchInfo);
|
||||||
|
|
||||||
var areaTexture = EmbeddedResources.Read("Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaAreaTexture.bin");
|
var areaTexture = EmbeddedResources.ReadFileToRentedMemory("Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaAreaTexture.bin");
|
||||||
var searchTexture = EmbeddedResources.Read("Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaSearchTexture.bin");
|
var searchTexture = EmbeddedResources.ReadFileToRentedMemory("Ryujinx.Graphics.OpenGL/Effects/Textures/SmaaSearchTexture.bin");
|
||||||
|
|
||||||
var areaView = _areaTexture.CreateDefaultView();
|
var areaView = _areaTexture.CreateDefaultView();
|
||||||
var searchView = _searchTexture.CreateDefaultView();
|
var searchView = _searchTexture.CreateDefaultView();
|
||||||
|
@@ -1,4 +1,6 @@
|
|||||||
|
using Ryujinx.Common.Memory;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Runtime.Intrinsics;
|
using System.Runtime.Intrinsics;
|
||||||
@@ -8,9 +10,11 @@ namespace Ryujinx.Graphics.OpenGL.Image
|
|||||||
{
|
{
|
||||||
static class FormatConverter
|
static class FormatConverter
|
||||||
{
|
{
|
||||||
public unsafe static byte[] ConvertS8D24ToD24S8(ReadOnlySpan<byte> data)
|
public unsafe static IMemoryOwner<byte> ConvertS8D24ToD24S8(ReadOnlySpan<byte> data)
|
||||||
{
|
{
|
||||||
byte[] output = new byte[data.Length];
|
IMemoryOwner<byte> outputMemory = ByteMemoryPool.Rent(data.Length);
|
||||||
|
|
||||||
|
Span<byte> output = outputMemory.Memory.Span;
|
||||||
|
|
||||||
int start = 0;
|
int start = 0;
|
||||||
|
|
||||||
@@ -74,7 +78,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
|
|||||||
outSpan[i] = BitOperations.RotateLeft(dataSpan[i], 8);
|
outSpan[i] = BitOperations.RotateLeft(dataSpan[i], 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
return output;
|
return outputMemory;
|
||||||
}
|
}
|
||||||
|
|
||||||
public unsafe static byte[] ConvertD24S8ToS8D24(ReadOnlySpan<byte> data)
|
public unsafe static byte[] ConvertD24S8ToS8D24(ReadOnlySpan<byte> data)
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
using OpenTK.Graphics.OpenGL;
|
using OpenTK.Graphics.OpenGL;
|
||||||
using Ryujinx.Common.Memory;
|
|
||||||
using Ryujinx.Graphics.GAL;
|
using Ryujinx.Graphics.GAL;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.OpenGL.Image
|
namespace Ryujinx.Graphics.OpenGL.Image
|
||||||
{
|
{
|
||||||
@@ -54,19 +54,24 @@ namespace Ryujinx.Graphics.OpenGL.Image
|
|||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data)
|
||||||
{
|
{
|
||||||
var dataSpan = data.AsSpan();
|
var dataSpan = data.Memory.Span;
|
||||||
|
|
||||||
Buffer.SetData(_buffer, _bufferOffset, dataSpan[..Math.Min(dataSpan.Length, _bufferSize)]);
|
Buffer.SetData(_buffer, _bufferOffset, dataSpan[..Math.Min(dataSpan.Length, _bufferSize)]);
|
||||||
|
|
||||||
|
data.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data, int layer, int level)
|
||||||
{
|
{
|
||||||
throw new NotSupportedException();
|
throw new NotSupportedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level, Rectangle<int> region)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data, int layer, int level, Rectangle<int> region)
|
||||||
{
|
{
|
||||||
throw new NotSupportedException();
|
throw new NotSupportedException();
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
using OpenTK.Graphics.OpenGL;
|
using OpenTK.Graphics.OpenGL;
|
||||||
using Ryujinx.Common;
|
using Ryujinx.Common;
|
||||||
using Ryujinx.Common.Memory;
|
|
||||||
using Ryujinx.Graphics.GAL;
|
using Ryujinx.Graphics.GAL;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.OpenGL.Image
|
namespace Ryujinx.Graphics.OpenGL.Image
|
||||||
@@ -448,70 +448,59 @@ namespace Ryujinx.Graphics.OpenGL.Image
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data)
|
public void SetData(IMemoryOwner<byte> data)
|
||||||
{
|
{
|
||||||
var dataSpan = data.AsSpan();
|
using (data = EnsureDataFormat(data))
|
||||||
|
|
||||||
if (Format == Format.S8UintD24Unorm)
|
|
||||||
{
|
{
|
||||||
dataSpan = FormatConverter.ConvertS8D24ToD24S8(dataSpan);
|
unsafe
|
||||||
}
|
|
||||||
|
|
||||||
unsafe
|
|
||||||
{
|
|
||||||
fixed (byte* ptr = dataSpan)
|
|
||||||
{
|
{
|
||||||
ReadFrom((IntPtr)ptr, dataSpan.Length);
|
var dataSpan = data.Memory.Span;
|
||||||
|
fixed (byte* ptr = dataSpan)
|
||||||
|
{
|
||||||
|
ReadFrom((IntPtr)ptr, dataSpan.Length);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level)
|
public void SetData(IMemoryOwner<byte> data, int layer, int level)
|
||||||
{
|
{
|
||||||
var dataSpan = data.AsSpan();
|
using (data = EnsureDataFormat(data))
|
||||||
|
|
||||||
if (Format == Format.S8UintD24Unorm)
|
|
||||||
{
|
{
|
||||||
dataSpan = FormatConverter.ConvertS8D24ToD24S8(dataSpan);
|
unsafe
|
||||||
}
|
|
||||||
|
|
||||||
unsafe
|
|
||||||
{
|
|
||||||
fixed (byte* ptr = dataSpan)
|
|
||||||
{
|
{
|
||||||
int width = Math.Max(Info.Width >> level, 1);
|
fixed (byte* ptr = data.Memory.Span)
|
||||||
int height = Math.Max(Info.Height >> level, 1);
|
{
|
||||||
|
int width = Math.Max(Info.Width >> level, 1);
|
||||||
|
int height = Math.Max(Info.Height >> level, 1);
|
||||||
|
|
||||||
ReadFrom2D((IntPtr)ptr, layer, level, 0, 0, width, height);
|
ReadFrom2D((IntPtr)ptr, layer, level, 0, 0, width, height);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level, Rectangle<int> region)
|
public void SetData(IMemoryOwner<byte> data, int layer, int level, Rectangle<int> region)
|
||||||
{
|
{
|
||||||
var dataSpan = data.AsSpan();
|
using (data = EnsureDataFormat(data))
|
||||||
|
|
||||||
if (Format == Format.S8UintD24Unorm)
|
|
||||||
{
|
{
|
||||||
dataSpan = FormatConverter.ConvertS8D24ToD24S8(dataSpan);
|
int wInBlocks = BitUtils.DivRoundUp(region.Width, Info.BlockWidth);
|
||||||
}
|
int hInBlocks = BitUtils.DivRoundUp(region.Height, Info.BlockHeight);
|
||||||
|
|
||||||
int wInBlocks = BitUtils.DivRoundUp(region.Width, Info.BlockWidth);
|
unsafe
|
||||||
int hInBlocks = BitUtils.DivRoundUp(region.Height, Info.BlockHeight);
|
|
||||||
|
|
||||||
unsafe
|
|
||||||
{
|
|
||||||
fixed (byte* ptr = dataSpan)
|
|
||||||
{
|
{
|
||||||
ReadFrom2D(
|
fixed (byte* ptr = data.Memory.Span)
|
||||||
(IntPtr)ptr,
|
{
|
||||||
layer,
|
ReadFrom2D(
|
||||||
level,
|
(IntPtr)ptr,
|
||||||
region.X,
|
layer,
|
||||||
region.Y,
|
level,
|
||||||
region.Width,
|
region.X,
|
||||||
region.Height,
|
region.Y,
|
||||||
BitUtils.AlignUp(wInBlocks * Info.BytesPerPixel, 4) * hInBlocks);
|
region.Width,
|
||||||
|
region.Height,
|
||||||
|
BitUtils.AlignUp(wInBlocks * Info.BytesPerPixel, 4) * hInBlocks);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -533,6 +522,19 @@ namespace Ryujinx.Graphics.OpenGL.Image
|
|||||||
ReadFrom2D(data, layer, level, x, y, width, height, mipSize);
|
ReadFrom2D(data, layer, level, x, y, width, height, mipSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private IMemoryOwner<byte> EnsureDataFormat(IMemoryOwner<byte> data)
|
||||||
|
{
|
||||||
|
if (Format == Format.S8UintD24Unorm)
|
||||||
|
{
|
||||||
|
using (data)
|
||||||
|
{
|
||||||
|
return FormatConverter.ConvertS8D24ToD24S8(data.Memory.Span);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
private void ReadFrom2D(IntPtr data, int layer, int level, int x, int y, int width, int height, int mipSize)
|
private void ReadFrom2D(IntPtr data, int layer, int level, int x, int y, int width, int height, int mipSize)
|
||||||
{
|
{
|
||||||
TextureTarget target = Target.Convert();
|
TextureTarget target = Target.Convert();
|
||||||
|
@@ -161,6 +161,7 @@ namespace Ryujinx.Graphics.OpenGL
|
|||||||
supportsBgraFormat: false,
|
supportsBgraFormat: false,
|
||||||
supportsR4G4Format: false,
|
supportsR4G4Format: false,
|
||||||
supportsR4G4B4A4Format: true,
|
supportsR4G4B4A4Format: true,
|
||||||
|
supportsScaledVertexFormats: true,
|
||||||
supportsSnormBufferTextureFormat: false,
|
supportsSnormBufferTextureFormat: false,
|
||||||
supports5BitComponentFormat: true,
|
supports5BitComponentFormat: true,
|
||||||
supportsSparseBuffer: false,
|
supportsSparseBuffer: false,
|
||||||
@@ -175,7 +176,8 @@ namespace Ryujinx.Graphics.OpenGL
|
|||||||
supportsMismatchingViewFormat: HwCapabilities.SupportsMismatchingViewFormat,
|
supportsMismatchingViewFormat: HwCapabilities.SupportsMismatchingViewFormat,
|
||||||
supportsCubemapView: true,
|
supportsCubemapView: true,
|
||||||
supportsNonConstantTextureOffset: HwCapabilities.SupportsNonConstantTextureOffset,
|
supportsNonConstantTextureOffset: HwCapabilities.SupportsNonConstantTextureOffset,
|
||||||
supportsScaledVertexFormats: true,
|
supportsQuads: HwCapabilities.SupportsQuads,
|
||||||
|
supportsSeparateSampler: false,
|
||||||
supportsShaderBallot: HwCapabilities.SupportsShaderBallot,
|
supportsShaderBallot: HwCapabilities.SupportsShaderBallot,
|
||||||
supportsShaderBarrierDivergence: !(intelWindows || intelUnix),
|
supportsShaderBarrierDivergence: !(intelWindows || intelUnix),
|
||||||
supportsShaderFloat64: true,
|
supportsShaderFloat64: true,
|
||||||
|
@@ -6,7 +6,6 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Numerics;
|
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
|
namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
|
||||||
{
|
{
|
||||||
@@ -352,7 +351,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
|
|||||||
arrayDecl = "[]";
|
arrayDecl = "[]";
|
||||||
}
|
}
|
||||||
|
|
||||||
string samplerTypeName = definition.Type.ToGlslSamplerType();
|
string samplerTypeName = definition.Separate ? definition.Type.ToGlslTextureType() : definition.Type.ToGlslSamplerType();
|
||||||
|
|
||||||
string layout = string.Empty;
|
string layout = string.Empty;
|
||||||
|
|
||||||
|
@@ -639,14 +639,27 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl.Instructions
|
|||||||
|
|
||||||
private static string GetSamplerName(CodeGenContext context, AstTextureOperation texOp, ref int srcIndex)
|
private static string GetSamplerName(CodeGenContext context, AstTextureOperation texOp, ref int srcIndex)
|
||||||
{
|
{
|
||||||
TextureDefinition definition = context.Properties.Textures[texOp.Binding];
|
TextureDefinition textureDefinition = context.Properties.Textures[texOp.Binding];
|
||||||
string name = definition.Name;
|
string name = textureDefinition.Name;
|
||||||
|
|
||||||
if (definition.ArrayLength != 1)
|
if (textureDefinition.ArrayLength != 1)
|
||||||
{
|
{
|
||||||
name = $"{name}[{GetSourceExpr(context, texOp.GetSource(srcIndex++), AggregateType.S32)}]";
|
name = $"{name}[{GetSourceExpr(context, texOp.GetSource(srcIndex++), AggregateType.S32)}]";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (texOp.IsSeparate)
|
||||||
|
{
|
||||||
|
TextureDefinition samplerDefinition = context.Properties.Textures[texOp.SamplerBinding];
|
||||||
|
string samplerName = samplerDefinition.Name;
|
||||||
|
|
||||||
|
if (samplerDefinition.ArrayLength != 1)
|
||||||
|
{
|
||||||
|
samplerName = $"{samplerName}[{GetSourceExpr(context, texOp.GetSource(srcIndex++), AggregateType.S32)}]";
|
||||||
|
}
|
||||||
|
|
||||||
|
name = $"{texOp.Type.ToGlslSamplerType()}({name}, {samplerName})";
|
||||||
|
}
|
||||||
|
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -160,37 +160,49 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
|
|||||||
{
|
{
|
||||||
int setIndex = context.TargetApi == TargetApi.Vulkan ? sampler.Set : 0;
|
int setIndex = context.TargetApi == TargetApi.Vulkan ? sampler.Set : 0;
|
||||||
|
|
||||||
var dim = (sampler.Type & SamplerType.Mask) switch
|
SpvInstruction imageType;
|
||||||
|
SpvInstruction sampledImageType;
|
||||||
|
|
||||||
|
if (sampler.Type != SamplerType.None)
|
||||||
{
|
{
|
||||||
SamplerType.Texture1D => Dim.Dim1D,
|
var dim = (sampler.Type & SamplerType.Mask) switch
|
||||||
SamplerType.Texture2D => Dim.Dim2D,
|
{
|
||||||
SamplerType.Texture3D => Dim.Dim3D,
|
SamplerType.Texture1D => Dim.Dim1D,
|
||||||
SamplerType.TextureCube => Dim.Cube,
|
SamplerType.Texture2D => Dim.Dim2D,
|
||||||
SamplerType.TextureBuffer => Dim.Buffer,
|
SamplerType.Texture3D => Dim.Dim3D,
|
||||||
_ => throw new InvalidOperationException($"Invalid sampler type \"{sampler.Type & SamplerType.Mask}\"."),
|
SamplerType.TextureCube => Dim.Cube,
|
||||||
};
|
SamplerType.TextureBuffer => Dim.Buffer,
|
||||||
|
_ => throw new InvalidOperationException($"Invalid sampler type \"{sampler.Type & SamplerType.Mask}\"."),
|
||||||
|
};
|
||||||
|
|
||||||
var imageType = context.TypeImage(
|
imageType = context.TypeImage(
|
||||||
context.TypeFP32(),
|
context.TypeFP32(),
|
||||||
dim,
|
dim,
|
||||||
sampler.Type.HasFlag(SamplerType.Shadow),
|
sampler.Type.HasFlag(SamplerType.Shadow),
|
||||||
sampler.Type.HasFlag(SamplerType.Array),
|
sampler.Type.HasFlag(SamplerType.Array),
|
||||||
sampler.Type.HasFlag(SamplerType.Multisample),
|
sampler.Type.HasFlag(SamplerType.Multisample),
|
||||||
1,
|
1,
|
||||||
ImageFormat.Unknown);
|
ImageFormat.Unknown);
|
||||||
|
|
||||||
var sampledImageType = context.TypeSampledImage(imageType);
|
sampledImageType = context.TypeSampledImage(imageType);
|
||||||
var sampledImagePointerType = context.TypePointer(StorageClass.UniformConstant, sampledImageType);
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
imageType = sampledImageType = context.TypeSampler();
|
||||||
|
}
|
||||||
|
|
||||||
|
var sampledOrSeparateImageType = sampler.Separate ? imageType : sampledImageType;
|
||||||
|
var sampledImagePointerType = context.TypePointer(StorageClass.UniformConstant, sampledOrSeparateImageType);
|
||||||
var sampledImageArrayPointerType = sampledImagePointerType;
|
var sampledImageArrayPointerType = sampledImagePointerType;
|
||||||
|
|
||||||
if (sampler.ArrayLength == 0)
|
if (sampler.ArrayLength == 0)
|
||||||
{
|
{
|
||||||
var sampledImageArrayType = context.TypeRuntimeArray(sampledImageType);
|
var sampledImageArrayType = context.TypeRuntimeArray(sampledOrSeparateImageType);
|
||||||
sampledImageArrayPointerType = context.TypePointer(StorageClass.UniformConstant, sampledImageArrayType);
|
sampledImageArrayPointerType = context.TypePointer(StorageClass.UniformConstant, sampledImageArrayType);
|
||||||
}
|
}
|
||||||
else if (sampler.ArrayLength != 1)
|
else if (sampler.ArrayLength != 1)
|
||||||
{
|
{
|
||||||
var sampledImageArrayType = context.TypeArray(sampledImageType, context.Constant(context.TypeU32(), sampler.ArrayLength));
|
var sampledImageArrayType = context.TypeArray(sampledOrSeparateImageType, context.Constant(context.TypeU32(), sampler.ArrayLength));
|
||||||
sampledImageArrayPointerType = context.TypePointer(StorageClass.UniformConstant, sampledImageArrayType);
|
sampledImageArrayPointerType = context.TypePointer(StorageClass.UniformConstant, sampledImageArrayType);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -838,16 +838,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
|
|||||||
}
|
}
|
||||||
|
|
||||||
SamplerDeclaration declaration = context.Samplers[texOp.Binding];
|
SamplerDeclaration declaration = context.Samplers[texOp.Binding];
|
||||||
SpvInstruction image = declaration.Image;
|
SpvInstruction image = GenerateSampledImageLoad(context, texOp, declaration, ref srcIndex);
|
||||||
|
|
||||||
if (declaration.IsIndexed)
|
|
||||||
{
|
|
||||||
SpvInstruction textureIndex = Src(AggregateType.S32);
|
|
||||||
|
|
||||||
image = context.AccessChain(declaration.SampledImagePointerType, image, textureIndex);
|
|
||||||
}
|
|
||||||
|
|
||||||
image = context.Load(declaration.SampledImageType, image);
|
|
||||||
|
|
||||||
int pCount = texOp.Type.GetDimensions();
|
int pCount = texOp.Type.GetDimensions();
|
||||||
|
|
||||||
@@ -1171,16 +1162,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
|
|||||||
}
|
}
|
||||||
|
|
||||||
SamplerDeclaration declaration = context.Samplers[texOp.Binding];
|
SamplerDeclaration declaration = context.Samplers[texOp.Binding];
|
||||||
SpvInstruction image = declaration.Image;
|
SpvInstruction image = GenerateSampledImageLoad(context, texOp, declaration, ref srcIndex);
|
||||||
|
|
||||||
if (declaration.IsIndexed)
|
|
||||||
{
|
|
||||||
SpvInstruction textureIndex = Src(AggregateType.S32);
|
|
||||||
|
|
||||||
image = context.AccessChain(declaration.SampledImagePointerType, image, textureIndex);
|
|
||||||
}
|
|
||||||
|
|
||||||
image = context.Load(declaration.SampledImageType, image);
|
|
||||||
|
|
||||||
int coordsCount = texOp.Type.GetDimensions();
|
int coordsCount = texOp.Type.GetDimensions();
|
||||||
|
|
||||||
@@ -1449,17 +1431,11 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
|
|||||||
{
|
{
|
||||||
AstTextureOperation texOp = (AstTextureOperation)operation;
|
AstTextureOperation texOp = (AstTextureOperation)operation;
|
||||||
|
|
||||||
|
int srcIndex = 0;
|
||||||
|
|
||||||
SamplerDeclaration declaration = context.Samplers[texOp.Binding];
|
SamplerDeclaration declaration = context.Samplers[texOp.Binding];
|
||||||
SpvInstruction image = declaration.Image;
|
SpvInstruction image = GenerateSampledImageLoad(context, texOp, declaration, ref srcIndex);
|
||||||
|
|
||||||
if (declaration.IsIndexed)
|
|
||||||
{
|
|
||||||
SpvInstruction textureIndex = context.GetS32(texOp.GetSource(0));
|
|
||||||
|
|
||||||
image = context.AccessChain(declaration.SampledImagePointerType, image, textureIndex);
|
|
||||||
}
|
|
||||||
|
|
||||||
image = context.Load(declaration.SampledImageType, image);
|
|
||||||
image = context.Image(declaration.ImageType, image);
|
image = context.Image(declaration.ImageType, image);
|
||||||
|
|
||||||
SpvInstruction result = context.ImageQuerySamples(context.TypeS32(), image);
|
SpvInstruction result = context.ImageQuerySamples(context.TypeS32(), image);
|
||||||
@@ -1471,17 +1447,11 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
|
|||||||
{
|
{
|
||||||
AstTextureOperation texOp = (AstTextureOperation)operation;
|
AstTextureOperation texOp = (AstTextureOperation)operation;
|
||||||
|
|
||||||
|
int srcIndex = 0;
|
||||||
|
|
||||||
SamplerDeclaration declaration = context.Samplers[texOp.Binding];
|
SamplerDeclaration declaration = context.Samplers[texOp.Binding];
|
||||||
SpvInstruction image = declaration.Image;
|
SpvInstruction image = GenerateSampledImageLoad(context, texOp, declaration, ref srcIndex);
|
||||||
|
|
||||||
if (declaration.IsIndexed)
|
|
||||||
{
|
|
||||||
SpvInstruction textureIndex = context.GetS32(texOp.GetSource(0));
|
|
||||||
|
|
||||||
image = context.AccessChain(declaration.SampledImagePointerType, image, textureIndex);
|
|
||||||
}
|
|
||||||
|
|
||||||
image = context.Load(declaration.SampledImageType, image);
|
|
||||||
image = context.Image(declaration.ImageType, image);
|
image = context.Image(declaration.ImageType, image);
|
||||||
|
|
||||||
if (texOp.Index == 3)
|
if (texOp.Index == 3)
|
||||||
@@ -1506,8 +1476,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
|
|||||||
|
|
||||||
if (hasLod)
|
if (hasLod)
|
||||||
{
|
{
|
||||||
int lodSrcIndex = declaration.IsIndexed ? 1 : 0;
|
var lod = context.GetS32(operation.GetSource(srcIndex));
|
||||||
var lod = context.GetS32(operation.GetSource(lodSrcIndex));
|
|
||||||
result = context.ImageQuerySizeLod(resultType, image, lod);
|
result = context.ImageQuerySizeLod(resultType, image, lod);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -1905,6 +1874,43 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static SpvInstruction GenerateSampledImageLoad(CodeGenContext context, AstTextureOperation texOp, SamplerDeclaration declaration, ref int srcIndex)
|
||||||
|
{
|
||||||
|
SpvInstruction image = declaration.Image;
|
||||||
|
|
||||||
|
if (declaration.IsIndexed)
|
||||||
|
{
|
||||||
|
SpvInstruction textureIndex = context.Get(AggregateType.S32, texOp.GetSource(srcIndex++));
|
||||||
|
|
||||||
|
image = context.AccessChain(declaration.SampledImagePointerType, image, textureIndex);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (texOp.IsSeparate)
|
||||||
|
{
|
||||||
|
image = context.Load(declaration.ImageType, image);
|
||||||
|
|
||||||
|
SamplerDeclaration samplerDeclaration = context.Samplers[texOp.SamplerBinding];
|
||||||
|
|
||||||
|
SpvInstruction sampler = samplerDeclaration.Image;
|
||||||
|
|
||||||
|
if (samplerDeclaration.IsIndexed)
|
||||||
|
{
|
||||||
|
SpvInstruction samplerIndex = context.Get(AggregateType.S32, texOp.GetSource(srcIndex++));
|
||||||
|
|
||||||
|
sampler = context.AccessChain(samplerDeclaration.SampledImagePointerType, sampler, samplerIndex);
|
||||||
|
}
|
||||||
|
|
||||||
|
sampler = context.Load(samplerDeclaration.ImageType, sampler);
|
||||||
|
image = context.SampledImage(declaration.SampledImageType, image, sampler);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
image = context.Load(declaration.SampledImageType, image);
|
||||||
|
}
|
||||||
|
|
||||||
|
return image;
|
||||||
|
}
|
||||||
|
|
||||||
private static OperationResult GenerateUnary(
|
private static OperationResult GenerateUnary(
|
||||||
CodeGenContext context,
|
CodeGenContext context,
|
||||||
AstOperation operation,
|
AstOperation operation,
|
||||||
|
@@ -102,6 +102,11 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public readonly bool OriginUpperLeft;
|
public readonly bool OriginUpperLeft;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates that the primitive ID values on the shader should be halved due to quad to triangles conversion.
|
||||||
|
/// </summary>
|
||||||
|
public readonly bool HalvePrimitiveId;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new GPU graphics state.
|
/// Creates a new GPU graphics state.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -124,6 +129,7 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
/// <param name="dualSourceBlendEnable">Indicates whether dual source blend is enabled</param>
|
/// <param name="dualSourceBlendEnable">Indicates whether dual source blend is enabled</param>
|
||||||
/// <param name="yNegateEnabled">Indicates if negation of the viewport Y axis is enabled</param>
|
/// <param name="yNegateEnabled">Indicates if negation of the viewport Y axis is enabled</param>
|
||||||
/// <param name="originUpperLeft">If true, indicates that the fragment origin is the upper left corner of the viewport, otherwise it is the lower left corner</param>
|
/// <param name="originUpperLeft">If true, indicates that the fragment origin is the upper left corner of the viewport, otherwise it is the lower left corner</param>
|
||||||
|
/// <param name="halvePrimitiveId">Indicates that the primitive ID values on the shader should be halved due to quad to triangles conversion</param>
|
||||||
public GpuGraphicsState(
|
public GpuGraphicsState(
|
||||||
bool earlyZForce,
|
bool earlyZForce,
|
||||||
InputTopology topology,
|
InputTopology topology,
|
||||||
@@ -143,7 +149,8 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
in Array8<AttributeType> fragmentOutputTypes,
|
in Array8<AttributeType> fragmentOutputTypes,
|
||||||
bool dualSourceBlendEnable,
|
bool dualSourceBlendEnable,
|
||||||
bool yNegateEnabled,
|
bool yNegateEnabled,
|
||||||
bool originUpperLeft)
|
bool originUpperLeft,
|
||||||
|
bool halvePrimitiveId)
|
||||||
{
|
{
|
||||||
EarlyZForce = earlyZForce;
|
EarlyZForce = earlyZForce;
|
||||||
Topology = topology;
|
Topology = topology;
|
||||||
@@ -164,6 +171,7 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
DualSourceBlendEnable = dualSourceBlendEnable;
|
DualSourceBlendEnable = dualSourceBlendEnable;
|
||||||
YNegateEnabled = yNegateEnabled;
|
YNegateEnabled = yNegateEnabled;
|
||||||
OriginUpperLeft = originUpperLeft;
|
OriginUpperLeft = originUpperLeft;
|
||||||
|
HalvePrimitiveId = halvePrimitiveId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -26,13 +26,6 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
/// <returns>Span of the memory location</returns>
|
/// <returns>Span of the memory location</returns>
|
||||||
ReadOnlySpan<ulong> GetCode(ulong address, int minimumSize);
|
ReadOnlySpan<ulong> GetCode(ulong address, int minimumSize);
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the size in bytes of a bound constant buffer for the current shader stage.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="slot">The number of the constant buffer to get the size from</param>
|
|
||||||
/// <returns>Size in bytes</returns>
|
|
||||||
int QueryTextureArrayLengthFromBuffer(int slot);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Queries the binding number of a constant buffer.
|
/// Queries the binding number of a constant buffer.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -142,6 +135,7 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
default,
|
default,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
|
false,
|
||||||
false);
|
false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -298,6 +292,15 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Queries host API support for separate textures and samplers.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>True if the API supports samplers and textures to be combined on the shader, false otherwise</returns>
|
||||||
|
bool QueryHostSupportsSeparateSampler()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Queries host GPU shader ballot support.
|
/// Queries host GPU shader ballot support.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -388,6 +391,12 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the maximum number of samplers that the bound texture pool may have.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>Maximum amount of samplers that the pool may have</returns>
|
||||||
|
int QuerySamplerArrayLengthFromPool();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Queries sampler type information.
|
/// Queries sampler type information.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -399,6 +408,19 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
return SamplerType.Texture2D;
|
return SamplerType.Texture2D;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the size in bytes of a bound constant buffer for the current shader stage.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="slot">The number of the constant buffer to get the size from</param>
|
||||||
|
/// <returns>Size in bytes</returns>
|
||||||
|
int QueryTextureArrayLengthFromBuffer(int slot);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the maximum number of textures that the bound texture pool may have.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>Maximum amount of textures that the pool may have</returns>
|
||||||
|
int QueryTextureArrayLengthFromPool();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Queries texture coordinate normalization information.
|
/// Queries texture coordinate normalization information.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@@ -84,6 +84,10 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
|||||||
value = context.IConvertU32ToFP32(value);
|
value = context.IConvertU32ToFP32(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (offset == AttributeConsts.PrimitiveId && context.TranslatorContext.Definitions.HalvePrimitiveId)
|
||||||
|
{
|
||||||
|
value = context.ShiftRightS32(value, Const(1));
|
||||||
|
}
|
||||||
|
|
||||||
context.Copy(Register(rd), value);
|
context.Copy(Register(rd), value);
|
||||||
}
|
}
|
||||||
@@ -187,6 +191,12 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (op.Imm10 == AttributeConsts.PrimitiveId && context.TranslatorContext.Definitions.HalvePrimitiveId)
|
||||||
|
{
|
||||||
|
// If quads are used, but the host does not support them, they need to be converted to triangles.
|
||||||
|
// Since each quad becomes 2 triangles, we need to compensate here and divide primitive ID by 2.
|
||||||
|
res = context.ShiftRightS32(res, Const(1));
|
||||||
|
}
|
||||||
else if (op.Imm10 == AttributeConsts.FrontFacing && context.TranslatorContext.GpuAccessor.QueryHostHasFrontFacingBug())
|
else if (op.Imm10 == AttributeConsts.FrontFacing && context.TranslatorContext.GpuAccessor.QueryHostHasFrontFacingBug())
|
||||||
{
|
{
|
||||||
// gl_FrontFacing sometimes has incorrect (flipped) values depending how it is accessed on Intel GPUs.
|
// gl_FrontFacing sometimes has incorrect (flipped) values depending how it is accessed on Intel GPUs.
|
||||||
|
@@ -216,6 +216,11 @@ namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
|
|||||||
|
|
||||||
newSources[index] = source;
|
newSources[index] = source;
|
||||||
|
|
||||||
|
if (source != null && source.Type == OperandType.LocalVariable)
|
||||||
|
{
|
||||||
|
source.UseOps.Add(this);
|
||||||
|
}
|
||||||
|
|
||||||
_sources = newSources;
|
_sources = newSources;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -9,6 +9,7 @@ namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
|
|||||||
public TextureFlags Flags { get; private set; }
|
public TextureFlags Flags { get; private set; }
|
||||||
|
|
||||||
public int Binding { get; private set; }
|
public int Binding { get; private set; }
|
||||||
|
public int SamplerBinding { get; private set; }
|
||||||
|
|
||||||
public TextureOperation(
|
public TextureOperation(
|
||||||
Instruction inst,
|
Instruction inst,
|
||||||
@@ -24,6 +25,7 @@ namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
|
|||||||
Format = format;
|
Format = format;
|
||||||
Flags = flags;
|
Flags = flags;
|
||||||
Binding = binding;
|
Binding = binding;
|
||||||
|
SamplerBinding = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void TurnIntoArray(int binding)
|
public void TurnIntoArray(int binding)
|
||||||
@@ -32,6 +34,13 @@ namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
|
|||||||
Binding = binding;
|
Binding = binding;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void TurnIntoArray(int textureBinding, int samplerBinding)
|
||||||
|
{
|
||||||
|
TurnIntoArray(textureBinding);
|
||||||
|
|
||||||
|
SamplerBinding = samplerBinding;
|
||||||
|
}
|
||||||
|
|
||||||
public void SetBinding(int binding)
|
public void SetBinding(int binding)
|
||||||
{
|
{
|
||||||
if ((Flags & TextureFlags.Bindless) != 0)
|
if ((Flags & TextureFlags.Bindless) != 0)
|
||||||
|
@@ -69,6 +69,7 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
{
|
{
|
||||||
string typeName = (type & SamplerType.Mask) switch
|
string typeName = (type & SamplerType.Mask) switch
|
||||||
{
|
{
|
||||||
|
SamplerType.None => "sampler",
|
||||||
SamplerType.Texture1D => "sampler1D",
|
SamplerType.Texture1D => "sampler1D",
|
||||||
SamplerType.TextureBuffer => "samplerBuffer",
|
SamplerType.TextureBuffer => "samplerBuffer",
|
||||||
SamplerType.Texture2D => "sampler2D",
|
SamplerType.Texture2D => "sampler2D",
|
||||||
@@ -95,6 +96,31 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
return typeName;
|
return typeName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string ToGlslTextureType(this SamplerType type)
|
||||||
|
{
|
||||||
|
string typeName = (type & SamplerType.Mask) switch
|
||||||
|
{
|
||||||
|
SamplerType.Texture1D => "texture1D",
|
||||||
|
SamplerType.TextureBuffer => "textureBuffer",
|
||||||
|
SamplerType.Texture2D => "texture2D",
|
||||||
|
SamplerType.Texture3D => "texture3D",
|
||||||
|
SamplerType.TextureCube => "textureCube",
|
||||||
|
_ => throw new ArgumentException($"Invalid texture type \"{type}\"."),
|
||||||
|
};
|
||||||
|
|
||||||
|
if ((type & SamplerType.Multisample) != 0)
|
||||||
|
{
|
||||||
|
typeName += "MS";
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((type & SamplerType.Array) != 0)
|
||||||
|
{
|
||||||
|
typeName += "Array";
|
||||||
|
}
|
||||||
|
|
||||||
|
return typeName;
|
||||||
|
}
|
||||||
|
|
||||||
public static string ToGlslImageType(this SamplerType type, AggregateType componentType)
|
public static string ToGlslImageType(this SamplerType type, AggregateType componentType)
|
||||||
{
|
{
|
||||||
string typeName = (type & SamplerType.Mask) switch
|
string typeName = (type & SamplerType.Mask) switch
|
||||||
|
@@ -9,6 +9,9 @@ namespace Ryujinx.Graphics.Shader.StructuredIr
|
|||||||
public TextureFlags Flags { get; }
|
public TextureFlags Flags { get; }
|
||||||
|
|
||||||
public int Binding { get; }
|
public int Binding { get; }
|
||||||
|
public int SamplerBinding { get; }
|
||||||
|
|
||||||
|
public bool IsSeparate => SamplerBinding >= 0;
|
||||||
|
|
||||||
public AstTextureOperation(
|
public AstTextureOperation(
|
||||||
Instruction inst,
|
Instruction inst,
|
||||||
@@ -16,6 +19,7 @@ namespace Ryujinx.Graphics.Shader.StructuredIr
|
|||||||
TextureFormat format,
|
TextureFormat format,
|
||||||
TextureFlags flags,
|
TextureFlags flags,
|
||||||
int binding,
|
int binding,
|
||||||
|
int samplerBinding,
|
||||||
int index,
|
int index,
|
||||||
params IAstNode[] sources) : base(inst, StorageKind.None, false, index, sources, sources.Length)
|
params IAstNode[] sources) : base(inst, StorageKind.None, false, index, sources, sources.Length)
|
||||||
{
|
{
|
||||||
@@ -23,6 +27,7 @@ namespace Ryujinx.Graphics.Shader.StructuredIr
|
|||||||
Format = format;
|
Format = format;
|
||||||
Flags = flags;
|
Flags = flags;
|
||||||
Binding = binding;
|
Binding = binding;
|
||||||
|
SamplerBinding = samplerBinding;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -169,7 +169,7 @@ namespace Ryujinx.Graphics.Shader.StructuredIr
|
|||||||
|
|
||||||
AstTextureOperation GetAstTextureOperation(TextureOperation texOp)
|
AstTextureOperation GetAstTextureOperation(TextureOperation texOp)
|
||||||
{
|
{
|
||||||
return new AstTextureOperation(inst, texOp.Type, texOp.Format, texOp.Flags, texOp.Binding, texOp.Index, sources);
|
return new AstTextureOperation(inst, texOp.Type, texOp.Format, texOp.Flags, texOp.Binding, texOp.SamplerBinding, texOp.Index, sources);
|
||||||
}
|
}
|
||||||
|
|
||||||
int componentsCount = BitOperations.PopCount((uint)operation.Index);
|
int componentsCount = BitOperations.PopCount((uint)operation.Index);
|
||||||
|
@@ -5,25 +5,39 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
public int Set { get; }
|
public int Set { get; }
|
||||||
public int Binding { get; }
|
public int Binding { get; }
|
||||||
public int ArrayLength { get; }
|
public int ArrayLength { get; }
|
||||||
|
public bool Separate { get; }
|
||||||
public string Name { get; }
|
public string Name { get; }
|
||||||
public SamplerType Type { get; }
|
public SamplerType Type { get; }
|
||||||
public TextureFormat Format { get; }
|
public TextureFormat Format { get; }
|
||||||
public TextureUsageFlags Flags { get; }
|
public TextureUsageFlags Flags { get; }
|
||||||
|
|
||||||
public TextureDefinition(int set, int binding, int arrayLength, string name, SamplerType type, TextureFormat format, TextureUsageFlags flags)
|
public TextureDefinition(
|
||||||
|
int set,
|
||||||
|
int binding,
|
||||||
|
int arrayLength,
|
||||||
|
bool separate,
|
||||||
|
string name,
|
||||||
|
SamplerType type,
|
||||||
|
TextureFormat format,
|
||||||
|
TextureUsageFlags flags)
|
||||||
{
|
{
|
||||||
Set = set;
|
Set = set;
|
||||||
Binding = binding;
|
Binding = binding;
|
||||||
ArrayLength = arrayLength;
|
ArrayLength = arrayLength;
|
||||||
|
Separate = separate;
|
||||||
Name = name;
|
Name = name;
|
||||||
Type = type;
|
Type = type;
|
||||||
Format = format;
|
Format = format;
|
||||||
Flags = flags;
|
Flags = flags;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public TextureDefinition(int set, int binding, string name, SamplerType type) : this(set, binding, 1, false, name, type, TextureFormat.Unknown, TextureUsageFlags.None)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
public TextureDefinition SetFlag(TextureUsageFlags flag)
|
public TextureDefinition SetFlag(TextureUsageFlags flag)
|
||||||
{
|
{
|
||||||
return new TextureDefinition(Set, Binding, ArrayLength, Name, Type, Format, Flags | flag);
|
return new TextureDefinition(Set, Binding, ArrayLength, Separate, Name, Type, Format, Flags | flag);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -13,6 +13,8 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
public readonly int HandleIndex;
|
public readonly int HandleIndex;
|
||||||
public readonly int ArrayLength;
|
public readonly int ArrayLength;
|
||||||
|
|
||||||
|
public readonly bool Separate;
|
||||||
|
|
||||||
public readonly TextureUsageFlags Flags;
|
public readonly TextureUsageFlags Flags;
|
||||||
|
|
||||||
public TextureDescriptor(
|
public TextureDescriptor(
|
||||||
@@ -22,6 +24,7 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
int cbufSlot,
|
int cbufSlot,
|
||||||
int handleIndex,
|
int handleIndex,
|
||||||
int arrayLength,
|
int arrayLength,
|
||||||
|
bool separate,
|
||||||
TextureUsageFlags flags)
|
TextureUsageFlags flags)
|
||||||
{
|
{
|
||||||
Binding = binding;
|
Binding = binding;
|
||||||
@@ -30,6 +33,7 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
CbufSlot = cbufSlot;
|
CbufSlot = cbufSlot;
|
||||||
HandleIndex = handleIndex;
|
HandleIndex = handleIndex;
|
||||||
ArrayLength = arrayLength;
|
ArrayLength = arrayLength;
|
||||||
|
Separate = separate;
|
||||||
Flags = flags;
|
Flags = flags;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -9,6 +9,7 @@ namespace Ryujinx.Graphics.Shader
|
|||||||
SeparateSamplerHandle = 1,
|
SeparateSamplerHandle = 1,
|
||||||
SeparateSamplerId = 2,
|
SeparateSamplerId = 2,
|
||||||
SeparateConstantSamplerHandle = 3,
|
SeparateConstantSamplerHandle = 3,
|
||||||
|
Direct = 4,
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class TextureHandle
|
public static class TextureHandle
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
using Ryujinx.Graphics.Shader.Instructions;
|
using Ryujinx.Graphics.Shader.Instructions;
|
||||||
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
|
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
|
||||||
using Ryujinx.Graphics.Shader.StructuredIr;
|
using Ryujinx.Graphics.Shader.StructuredIr;
|
||||||
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Shader.Translation.Optimizations
|
namespace Ryujinx.Graphics.Shader.Translation.Optimizations
|
||||||
@@ -31,7 +32,8 @@ namespace Ryujinx.Graphics.Shader.Translation.Optimizations
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!TryConvertBindless(block, resourceManager, gpuAccessor, texOp))
|
if (!TryConvertBindless(block, resourceManager, gpuAccessor, texOp) &&
|
||||||
|
!GenerateBindlessAccess(block, resourceManager, gpuAccessor, texOp, node))
|
||||||
{
|
{
|
||||||
// If we can't do bindless elimination, remove the texture operation.
|
// If we can't do bindless elimination, remove the texture operation.
|
||||||
// Set any destination variables to zero.
|
// Set any destination variables to zero.
|
||||||
@@ -46,6 +48,88 @@ namespace Ryujinx.Graphics.Shader.Translation.Optimizations
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool GenerateBindlessAccess(
|
||||||
|
BasicBlock block,
|
||||||
|
ResourceManager resourceManager,
|
||||||
|
IGpuAccessor gpuAccessor,
|
||||||
|
TextureOperation texOp,
|
||||||
|
LinkedListNode<INode> node)
|
||||||
|
{
|
||||||
|
if (!gpuAccessor.QueryHostSupportsSeparateSampler())
|
||||||
|
{
|
||||||
|
// We depend on combining samplers and textures in the shader being supported for this.
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Operand nvHandle = texOp.GetSource(0);
|
||||||
|
|
||||||
|
if (nvHandle.AsgOp is not Operation handleOp ||
|
||||||
|
handleOp.Inst != Instruction.Load ||
|
||||||
|
(handleOp.StorageKind != StorageKind.Input && handleOp.StorageKind != StorageKind.StorageBuffer))
|
||||||
|
{
|
||||||
|
// Right now, we only allow bindless access when the handle comes from a shader input or storage buffer.
|
||||||
|
// This is an artificial limitation to prevent it from being used in cases where it
|
||||||
|
// would have a large performance impact of loading all textures in the pool.
|
||||||
|
// It might be removed in the future, if we can mitigate the performance impact.
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Operand textureHandle = OperandHelper.Local();
|
||||||
|
Operand samplerHandle = OperandHelper.Local();
|
||||||
|
Operand textureIndex = OperandHelper.Local();
|
||||||
|
|
||||||
|
block.Operations.AddBefore(node, new Operation(Instruction.BitwiseAnd, textureHandle, nvHandle, OperandHelper.Const(0xfffff)));
|
||||||
|
block.Operations.AddBefore(node, new Operation(Instruction.ShiftRightU32, samplerHandle, nvHandle, OperandHelper.Const(20)));
|
||||||
|
|
||||||
|
int texturePoolLength = Math.Max(BindlessToArray.MinimumArrayLength, gpuAccessor.QueryTextureArrayLengthFromPool());
|
||||||
|
|
||||||
|
block.Operations.AddBefore(node, new Operation(Instruction.MinimumU32, textureIndex, textureHandle, OperandHelper.Const(texturePoolLength - 1)));
|
||||||
|
|
||||||
|
texOp.SetSource(0, textureIndex);
|
||||||
|
|
||||||
|
bool hasSampler = !texOp.Inst.IsImage();
|
||||||
|
|
||||||
|
int textureBinding = resourceManager.GetTextureOrImageBinding(
|
||||||
|
texOp.Inst,
|
||||||
|
texOp.Type,
|
||||||
|
texOp.Format,
|
||||||
|
texOp.Flags & ~TextureFlags.Bindless,
|
||||||
|
0,
|
||||||
|
TextureHandle.PackOffsets(0, 0, TextureHandleType.Direct),
|
||||||
|
texturePoolLength,
|
||||||
|
hasSampler);
|
||||||
|
|
||||||
|
if (hasSampler)
|
||||||
|
{
|
||||||
|
Operand samplerIndex = OperandHelper.Local();
|
||||||
|
|
||||||
|
int samplerPoolLength = Math.Max(BindlessToArray.MinimumArrayLength, gpuAccessor.QuerySamplerArrayLengthFromPool());
|
||||||
|
|
||||||
|
block.Operations.AddBefore(node, new Operation(Instruction.MinimumU32, samplerIndex, samplerHandle, OperandHelper.Const(samplerPoolLength - 1)));
|
||||||
|
|
||||||
|
texOp.InsertSource(1, samplerIndex);
|
||||||
|
|
||||||
|
int samplerBinding = resourceManager.GetTextureOrImageBinding(
|
||||||
|
texOp.Inst,
|
||||||
|
SamplerType.None,
|
||||||
|
texOp.Format,
|
||||||
|
TextureFlags.None,
|
||||||
|
0,
|
||||||
|
TextureHandle.PackOffsets(0, 0, TextureHandleType.Direct),
|
||||||
|
samplerPoolLength);
|
||||||
|
|
||||||
|
texOp.TurnIntoArray(textureBinding, samplerBinding);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
texOp.TurnIntoArray(textureBinding);
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
private static bool TryConvertBindless(BasicBlock block, ResourceManager resourceManager, IGpuAccessor gpuAccessor, TextureOperation texOp)
|
private static bool TryConvertBindless(BasicBlock block, ResourceManager resourceManager, IGpuAccessor gpuAccessor, TextureOperation texOp)
|
||||||
{
|
{
|
||||||
if (texOp.Inst == Instruction.TextureSample || texOp.Inst.IsTextureQuery())
|
if (texOp.Inst == Instruction.TextureSample || texOp.Inst.IsTextureQuery())
|
||||||
|
@@ -11,7 +11,7 @@ namespace Ryujinx.Graphics.Shader.Translation.Optimizations
|
|||||||
private const int HardcodedArrayLengthOgl = 4;
|
private const int HardcodedArrayLengthOgl = 4;
|
||||||
|
|
||||||
// 1 and 0 elements are not considered arrays anymore.
|
// 1 and 0 elements are not considered arrays anymore.
|
||||||
private const int MinimumArrayLength = 2;
|
public const int MinimumArrayLength = 2;
|
||||||
|
|
||||||
public static void RunPassOgl(BasicBlock block, ResourceManager resourceManager)
|
public static void RunPassOgl(BasicBlock block, ResourceManager resourceManager)
|
||||||
{
|
{
|
||||||
|
@@ -29,7 +29,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
|
|
||||||
private readonly HashSet<int> _usedConstantBufferBindings;
|
private readonly HashSet<int> _usedConstantBufferBindings;
|
||||||
|
|
||||||
private readonly record struct TextureInfo(int CbufSlot, int Handle, int ArrayLength, SamplerType Type, TextureFormat Format);
|
private readonly record struct TextureInfo(int CbufSlot, int Handle, int ArrayLength, bool Separate, SamplerType Type, TextureFormat Format);
|
||||||
|
|
||||||
private struct TextureMeta
|
private struct TextureMeta
|
||||||
{
|
{
|
||||||
@@ -225,7 +225,8 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
TextureFlags flags,
|
TextureFlags flags,
|
||||||
int cbufSlot,
|
int cbufSlot,
|
||||||
int handle,
|
int handle,
|
||||||
int arrayLength = 1)
|
int arrayLength = 1,
|
||||||
|
bool separate = false)
|
||||||
{
|
{
|
||||||
inst &= Instruction.Mask;
|
inst &= Instruction.Mask;
|
||||||
bool isImage = inst.IsImage();
|
bool isImage = inst.IsImage();
|
||||||
@@ -239,7 +240,18 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
format = TextureFormat.Unknown;
|
format = TextureFormat.Unknown;
|
||||||
}
|
}
|
||||||
|
|
||||||
int binding = GetTextureOrImageBinding(cbufSlot, handle, arrayLength, type, format, isImage, intCoords, isWrite, accurateType, coherent);
|
int binding = GetTextureOrImageBinding(
|
||||||
|
cbufSlot,
|
||||||
|
handle,
|
||||||
|
arrayLength,
|
||||||
|
type,
|
||||||
|
format,
|
||||||
|
isImage,
|
||||||
|
intCoords,
|
||||||
|
isWrite,
|
||||||
|
accurateType,
|
||||||
|
coherent,
|
||||||
|
separate);
|
||||||
|
|
||||||
_gpuAccessor.RegisterTexture(handle, cbufSlot);
|
_gpuAccessor.RegisterTexture(handle, cbufSlot);
|
||||||
|
|
||||||
@@ -256,9 +268,10 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
bool intCoords,
|
bool intCoords,
|
||||||
bool write,
|
bool write,
|
||||||
bool accurateType,
|
bool accurateType,
|
||||||
bool coherent)
|
bool coherent,
|
||||||
|
bool separate)
|
||||||
{
|
{
|
||||||
var dimensions = type.GetDimensions();
|
var dimensions = type == SamplerType.None ? 0 : type.GetDimensions();
|
||||||
var dict = isImage ? _usedImages : _usedTextures;
|
var dict = isImage ? _usedImages : _usedTextures;
|
||||||
|
|
||||||
var usageFlags = TextureUsageFlags.None;
|
var usageFlags = TextureUsageFlags.None;
|
||||||
@@ -290,7 +303,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
// For array textures, we also want to use type as key,
|
// For array textures, we also want to use type as key,
|
||||||
// since we may have texture handles stores in the same buffer, but for textures with different types.
|
// since we may have texture handles stores in the same buffer, but for textures with different types.
|
||||||
var keyType = arrayLength > 1 ? type : SamplerType.None;
|
var keyType = arrayLength > 1 ? type : SamplerType.None;
|
||||||
var info = new TextureInfo(cbufSlot, handle, arrayLength, keyType, format);
|
var info = new TextureInfo(cbufSlot, handle, arrayLength, separate, keyType, format);
|
||||||
var meta = new TextureMeta()
|
var meta = new TextureMeta()
|
||||||
{
|
{
|
||||||
AccurateType = accurateType,
|
AccurateType = accurateType,
|
||||||
@@ -332,6 +345,10 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
? $"{prefix}_tcb_{handle:X}_{format.ToGlslFormat()}"
|
? $"{prefix}_tcb_{handle:X}_{format.ToGlslFormat()}"
|
||||||
: $"{prefix}_cb{cbufSlot}_{handle:X}_{format.ToGlslFormat()}";
|
: $"{prefix}_cb{cbufSlot}_{handle:X}_{format.ToGlslFormat()}";
|
||||||
}
|
}
|
||||||
|
else if (type == SamplerType.None)
|
||||||
|
{
|
||||||
|
nameSuffix = cbufSlot < 0 ? $"s_tcb_{handle:X}" : $"s_cb{cbufSlot}_{handle:X}";
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
nameSuffix = cbufSlot < 0 ? $"{prefix}_tcb_{handle:X}" : $"{prefix}_cb{cbufSlot}_{handle:X}";
|
nameSuffix = cbufSlot < 0 ? $"{prefix}_tcb_{handle:X}" : $"{prefix}_cb{cbufSlot}_{handle:X}";
|
||||||
@@ -341,6 +358,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
isImage ? 3 : 2,
|
isImage ? 3 : 2,
|
||||||
binding,
|
binding,
|
||||||
arrayLength,
|
arrayLength,
|
||||||
|
separate,
|
||||||
$"{_stagePrefix}_{nameSuffix}",
|
$"{_stagePrefix}_{nameSuffix}",
|
||||||
meta.Type,
|
meta.Type,
|
||||||
info.Format,
|
info.Format,
|
||||||
@@ -495,6 +513,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
info.CbufSlot,
|
info.CbufSlot,
|
||||||
info.Handle,
|
info.Handle,
|
||||||
info.ArrayLength,
|
info.ArrayLength,
|
||||||
|
info.Separate,
|
||||||
meta.UsageFlags));
|
meta.UsageFlags));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -514,6 +533,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
info.CbufSlot,
|
info.CbufSlot,
|
||||||
info.Handle,
|
info.Handle,
|
||||||
info.ArrayLength,
|
info.ArrayLength,
|
||||||
|
info.Separate,
|
||||||
meta.UsageFlags));
|
meta.UsageFlags));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -45,6 +45,8 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
public bool YNegateEnabled => _graphicsState.YNegateEnabled;
|
public bool YNegateEnabled => _graphicsState.YNegateEnabled;
|
||||||
public bool OriginUpperLeft => _graphicsState.OriginUpperLeft;
|
public bool OriginUpperLeft => _graphicsState.OriginUpperLeft;
|
||||||
|
|
||||||
|
public bool HalvePrimitiveId => _graphicsState.HalvePrimitiveId;
|
||||||
|
|
||||||
public ImapPixelType[] ImapTypes { get; }
|
public ImapPixelType[] ImapTypes { get; }
|
||||||
public bool IaIndexing { get; private set; }
|
public bool IaIndexing { get; private set; }
|
||||||
public bool OaIndexing { get; private set; }
|
public bool OaIndexing { get; private set; }
|
||||||
|
@@ -413,7 +413,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
if (Stage == ShaderStage.Vertex)
|
if (Stage == ShaderStage.Vertex)
|
||||||
{
|
{
|
||||||
int ibBinding = resourceManager.Reservations.IndexBufferTextureBinding;
|
int ibBinding = resourceManager.Reservations.IndexBufferTextureBinding;
|
||||||
TextureDefinition indexBuffer = new(2, ibBinding, 1, "ib_data", SamplerType.TextureBuffer, TextureFormat.Unknown, TextureUsageFlags.None);
|
TextureDefinition indexBuffer = new(2, ibBinding, "ib_data", SamplerType.TextureBuffer);
|
||||||
resourceManager.Properties.AddOrUpdateTexture(indexBuffer);
|
resourceManager.Properties.AddOrUpdateTexture(indexBuffer);
|
||||||
|
|
||||||
int inputMap = _program.AttributeUsage.UsedInputAttributes;
|
int inputMap = _program.AttributeUsage.UsedInputAttributes;
|
||||||
@@ -422,7 +422,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
{
|
{
|
||||||
int location = BitOperations.TrailingZeroCount(inputMap);
|
int location = BitOperations.TrailingZeroCount(inputMap);
|
||||||
int binding = resourceManager.Reservations.GetVertexBufferTextureBinding(location);
|
int binding = resourceManager.Reservations.GetVertexBufferTextureBinding(location);
|
||||||
TextureDefinition vaBuffer = new(2, binding, 1, $"vb_data{location}", SamplerType.TextureBuffer, TextureFormat.Unknown, TextureUsageFlags.None);
|
TextureDefinition vaBuffer = new(2, binding, $"vb_data{location}", SamplerType.TextureBuffer);
|
||||||
resourceManager.Properties.AddOrUpdateTexture(vaBuffer);
|
resourceManager.Properties.AddOrUpdateTexture(vaBuffer);
|
||||||
|
|
||||||
inputMap &= ~(1 << location);
|
inputMap &= ~(1 << location);
|
||||||
@@ -431,7 +431,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||||||
else if (Stage == ShaderStage.Geometry)
|
else if (Stage == ShaderStage.Geometry)
|
||||||
{
|
{
|
||||||
int trbBinding = resourceManager.Reservations.TopologyRemapBufferTextureBinding;
|
int trbBinding = resourceManager.Reservations.TopologyRemapBufferTextureBinding;
|
||||||
TextureDefinition remapBuffer = new(2, trbBinding, 1, "trb_data", SamplerType.TextureBuffer, TextureFormat.Unknown, TextureUsageFlags.None);
|
TextureDefinition remapBuffer = new(2, trbBinding, "trb_data", SamplerType.TextureBuffer);
|
||||||
resourceManager.Properties.AddOrUpdateTexture(remapBuffer);
|
resourceManager.Properties.AddOrUpdateTexture(remapBuffer);
|
||||||
|
|
||||||
int geometryVbOutputSbBinding = resourceManager.Reservations.GeometryVertexOutputStorageBufferBinding;
|
int geometryVbOutputSbBinding = resourceManager.Reservations.GeometryVertexOutputStorageBufferBinding;
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
|
using Ryujinx.Common.Memory;
|
||||||
using Ryujinx.Common.Utilities;
|
using Ryujinx.Common.Utilities;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
@@ -291,16 +293,14 @@ namespace Ryujinx.Graphics.Texture.Astc
|
|||||||
int depth,
|
int depth,
|
||||||
int levels,
|
int levels,
|
||||||
int layers,
|
int layers,
|
||||||
out byte[] decoded)
|
out IMemoryOwner<byte> decoded)
|
||||||
{
|
{
|
||||||
byte[] output = new byte[QueryDecompressedSize(width, height, depth, levels, layers)];
|
decoded = ByteMemoryPool.Rent(QueryDecompressedSize(width, height, depth, levels, layers));
|
||||||
|
|
||||||
AstcDecoder decoder = new(data, output, blockWidth, blockHeight, width, height, depth, levels, layers);
|
AstcDecoder decoder = new(data, decoded.Memory, blockWidth, blockHeight, width, height, depth, levels, layers);
|
||||||
|
|
||||||
Enumerable.Range(0, decoder.TotalBlockCount).AsParallel().ForAll(x => decoder.ProcessBlock(x));
|
Enumerable.Range(0, decoder.TotalBlockCount).AsParallel().ForAll(x => decoder.ProcessBlock(x));
|
||||||
|
|
||||||
decoded = output;
|
|
||||||
|
|
||||||
return decoder.Success;
|
return decoder.Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
using Ryujinx.Common;
|
using Ryujinx.Common;
|
||||||
|
using Ryujinx.Common.Memory;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Buffers.Binary;
|
using System.Buffers.Binary;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Runtime.Intrinsics;
|
using System.Runtime.Intrinsics;
|
||||||
@@ -12,7 +14,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
private const int BlockWidth = 4;
|
private const int BlockWidth = 4;
|
||||||
private const int BlockHeight = 4;
|
private const int BlockHeight = 4;
|
||||||
|
|
||||||
public static byte[] DecodeBC1(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
public static IMemoryOwner<byte> DecodeBC1(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
||||||
{
|
{
|
||||||
int size = 0;
|
int size = 0;
|
||||||
|
|
||||||
@@ -21,12 +23,12 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 4;
|
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] output = new byte[size];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(size);
|
||||||
|
|
||||||
Span<byte> tile = stackalloc byte[BlockWidth * BlockHeight * 4];
|
Span<byte> tile = stackalloc byte[BlockWidth * BlockHeight * 4];
|
||||||
|
|
||||||
Span<uint> tileAsUint = MemoryMarshal.Cast<byte, uint>(tile);
|
Span<uint> tileAsUint = MemoryMarshal.Cast<byte, uint>(tile);
|
||||||
Span<uint> outputAsUint = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputAsUint = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
|
|
||||||
Span<Vector128<byte>> tileAsVector128 = MemoryMarshal.Cast<byte, Vector128<byte>>(tile);
|
Span<Vector128<byte>> tileAsVector128 = MemoryMarshal.Cast<byte, Vector128<byte>>(tile);
|
||||||
|
|
||||||
@@ -100,7 +102,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] DecodeBC2(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
public static IMemoryOwner<byte> DecodeBC2(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
||||||
{
|
{
|
||||||
int size = 0;
|
int size = 0;
|
||||||
|
|
||||||
@@ -109,12 +111,12 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 4;
|
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] output = new byte[size];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(size);
|
||||||
|
|
||||||
Span<byte> tile = stackalloc byte[BlockWidth * BlockHeight * 4];
|
Span<byte> tile = stackalloc byte[BlockWidth * BlockHeight * 4];
|
||||||
|
|
||||||
Span<uint> tileAsUint = MemoryMarshal.Cast<byte, uint>(tile);
|
Span<uint> tileAsUint = MemoryMarshal.Cast<byte, uint>(tile);
|
||||||
Span<uint> outputAsUint = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputAsUint = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
|
|
||||||
Span<Vector128<byte>> tileAsVector128 = MemoryMarshal.Cast<byte, Vector128<byte>>(tile);
|
Span<Vector128<byte>> tileAsVector128 = MemoryMarshal.Cast<byte, Vector128<byte>>(tile);
|
||||||
|
|
||||||
@@ -195,7 +197,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] DecodeBC3(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
public static IMemoryOwner<byte> DecodeBC3(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
||||||
{
|
{
|
||||||
int size = 0;
|
int size = 0;
|
||||||
|
|
||||||
@@ -204,13 +206,13 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 4;
|
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] output = new byte[size];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(size);
|
||||||
|
|
||||||
Span<byte> tile = stackalloc byte[BlockWidth * BlockHeight * 4];
|
Span<byte> tile = stackalloc byte[BlockWidth * BlockHeight * 4];
|
||||||
Span<byte> rPal = stackalloc byte[8];
|
Span<byte> rPal = stackalloc byte[8];
|
||||||
|
|
||||||
Span<uint> tileAsUint = MemoryMarshal.Cast<byte, uint>(tile);
|
Span<uint> tileAsUint = MemoryMarshal.Cast<byte, uint>(tile);
|
||||||
Span<uint> outputAsUint = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputAsUint = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
|
|
||||||
Span<Vector128<byte>> tileAsVector128 = MemoryMarshal.Cast<byte, Vector128<byte>>(tile);
|
Span<Vector128<byte>> tileAsVector128 = MemoryMarshal.Cast<byte, Vector128<byte>>(tile);
|
||||||
|
|
||||||
@@ -292,7 +294,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] DecodeBC4(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers, bool signed)
|
public static IMemoryOwner<byte> DecodeBC4(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers, bool signed)
|
||||||
{
|
{
|
||||||
int size = 0;
|
int size = 0;
|
||||||
|
|
||||||
@@ -304,8 +306,8 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
// Backends currently expect a stride alignment of 4 bytes, so output width must be aligned.
|
// Backends currently expect a stride alignment of 4 bytes, so output width must be aligned.
|
||||||
int alignedWidth = BitUtils.AlignUp(width, 4);
|
int alignedWidth = BitUtils.AlignUp(width, 4);
|
||||||
|
|
||||||
byte[] output = new byte[size];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(size);
|
||||||
Span<byte> outputSpan = new(output);
|
Span<byte> outputSpan = output.Memory.Span;
|
||||||
|
|
||||||
ReadOnlySpan<ulong> data64 = MemoryMarshal.Cast<byte, ulong>(data);
|
ReadOnlySpan<ulong> data64 = MemoryMarshal.Cast<byte, ulong>(data);
|
||||||
|
|
||||||
@@ -400,7 +402,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] DecodeBC5(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers, bool signed)
|
public static IMemoryOwner<byte> DecodeBC5(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers, bool signed)
|
||||||
{
|
{
|
||||||
int size = 0;
|
int size = 0;
|
||||||
|
|
||||||
@@ -412,7 +414,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
// Backends currently expect a stride alignment of 4 bytes, so output width must be aligned.
|
// Backends currently expect a stride alignment of 4 bytes, so output width must be aligned.
|
||||||
int alignedWidth = BitUtils.AlignUp(width, 2);
|
int alignedWidth = BitUtils.AlignUp(width, 2);
|
||||||
|
|
||||||
byte[] output = new byte[size];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(size);
|
||||||
|
|
||||||
ReadOnlySpan<ulong> data64 = MemoryMarshal.Cast<byte, ulong>(data);
|
ReadOnlySpan<ulong> data64 = MemoryMarshal.Cast<byte, ulong>(data);
|
||||||
|
|
||||||
@@ -421,7 +423,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
Span<byte> rPal = stackalloc byte[8];
|
Span<byte> rPal = stackalloc byte[8];
|
||||||
Span<byte> gPal = stackalloc byte[8];
|
Span<byte> gPal = stackalloc byte[8];
|
||||||
|
|
||||||
Span<ushort> outputAsUshort = MemoryMarshal.Cast<byte, ushort>(output);
|
Span<ushort> outputAsUshort = MemoryMarshal.Cast<byte, ushort>(output.Memory.Span);
|
||||||
|
|
||||||
Span<uint> rTileAsUint = MemoryMarshal.Cast<byte, uint>(rTile);
|
Span<uint> rTileAsUint = MemoryMarshal.Cast<byte, uint>(rTile);
|
||||||
Span<uint> gTileAsUint = MemoryMarshal.Cast<byte, uint>(gTile);
|
Span<uint> gTileAsUint = MemoryMarshal.Cast<byte, uint>(gTile);
|
||||||
@@ -525,7 +527,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] DecodeBC6(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers, bool signed)
|
public static IMemoryOwner<byte> DecodeBC6(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers, bool signed)
|
||||||
{
|
{
|
||||||
int size = 0;
|
int size = 0;
|
||||||
|
|
||||||
@@ -534,7 +536,8 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 8;
|
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] output = new byte[size];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(size);
|
||||||
|
Span<byte> outputSpan = output.Memory.Span;
|
||||||
|
|
||||||
int inputOffset = 0;
|
int inputOffset = 0;
|
||||||
int outputOffset = 0;
|
int outputOffset = 0;
|
||||||
@@ -548,7 +551,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
{
|
{
|
||||||
for (int z = 0; z < depth; z++)
|
for (int z = 0; z < depth; z++)
|
||||||
{
|
{
|
||||||
BC6Decoder.Decode(output.AsSpan()[outputOffset..], data[inputOffset..], width, height, signed);
|
BC6Decoder.Decode(outputSpan[outputOffset..], data[inputOffset..], width, height, signed);
|
||||||
|
|
||||||
inputOffset += w * h * 16;
|
inputOffset += w * h * 16;
|
||||||
outputOffset += width * height * 8;
|
outputOffset += width * height * 8;
|
||||||
@@ -563,7 +566,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] DecodeBC7(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
public static IMemoryOwner<byte> DecodeBC7(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
||||||
{
|
{
|
||||||
int size = 0;
|
int size = 0;
|
||||||
|
|
||||||
@@ -572,7 +575,8 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 4;
|
size += Math.Max(1, width >> l) * Math.Max(1, height >> l) * Math.Max(1, depth >> l) * layers * 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] output = new byte[size];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(size);
|
||||||
|
Span<byte> outputSpan = output.Memory.Span;
|
||||||
|
|
||||||
int inputOffset = 0;
|
int inputOffset = 0;
|
||||||
int outputOffset = 0;
|
int outputOffset = 0;
|
||||||
@@ -586,7 +590,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
{
|
{
|
||||||
for (int z = 0; z < depth; z++)
|
for (int z = 0; z < depth; z++)
|
||||||
{
|
{
|
||||||
BC7Decoder.Decode(output.AsSpan()[outputOffset..], data[inputOffset..], width, height);
|
BC7Decoder.Decode(outputSpan[outputOffset..], data[inputOffset..], width, height);
|
||||||
|
|
||||||
inputOffset += w * h * 16;
|
inputOffset += w * h * 16;
|
||||||
outputOffset += width * height * 4;
|
outputOffset += width * height * 4;
|
||||||
|
@@ -1,6 +1,8 @@
|
|||||||
using Ryujinx.Common;
|
using Ryujinx.Common;
|
||||||
|
using Ryujinx.Common.Memory;
|
||||||
using Ryujinx.Graphics.Texture.Encoders;
|
using Ryujinx.Graphics.Texture.Encoders;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
|
|
||||||
namespace Ryujinx.Graphics.Texture
|
namespace Ryujinx.Graphics.Texture
|
||||||
{
|
{
|
||||||
@@ -9,7 +11,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
private const int BlockWidth = 4;
|
private const int BlockWidth = 4;
|
||||||
private const int BlockHeight = 4;
|
private const int BlockHeight = 4;
|
||||||
|
|
||||||
public static byte[] EncodeBC7(byte[] data, int width, int height, int depth, int levels, int layers)
|
public static IMemoryOwner<byte> EncodeBC7(Memory<byte> data, int width, int height, int depth, int levels, int layers)
|
||||||
{
|
{
|
||||||
int size = 0;
|
int size = 0;
|
||||||
|
|
||||||
@@ -21,7 +23,8 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
size += w * h * 16 * Math.Max(1, depth >> l) * layers;
|
size += w * h * 16 * Math.Max(1, depth >> l) * layers;
|
||||||
}
|
}
|
||||||
|
|
||||||
byte[] output = new byte[size];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(size);
|
||||||
|
Memory<byte> outputMemory = output.Memory;
|
||||||
|
|
||||||
int imageBaseIOffs = 0;
|
int imageBaseIOffs = 0;
|
||||||
int imageBaseOOffs = 0;
|
int imageBaseOOffs = 0;
|
||||||
@@ -36,8 +39,8 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
for (int z = 0; z < depth; z++)
|
for (int z = 0; z < depth; z++)
|
||||||
{
|
{
|
||||||
BC7Encoder.Encode(
|
BC7Encoder.Encode(
|
||||||
output.AsMemory()[imageBaseOOffs..],
|
outputMemory[imageBaseOOffs..],
|
||||||
data.AsMemory()[imageBaseIOffs..],
|
data[imageBaseIOffs..],
|
||||||
width,
|
width,
|
||||||
height,
|
height,
|
||||||
EncodeMode.Fast | EncodeMode.Multithreaded);
|
EncodeMode.Fast | EncodeMode.Multithreaded);
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
using Ryujinx.Common;
|
using Ryujinx.Common;
|
||||||
|
using Ryujinx.Common.Memory;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Buffers.Binary;
|
using System.Buffers.Binary;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
@@ -49,15 +51,15 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
new int[] { -3, -5, -7, -9, 2, 4, 6, 8 },
|
new int[] { -3, -5, -7, -9, 2, 4, 6, 8 },
|
||||||
};
|
};
|
||||||
|
|
||||||
public static byte[] DecodeRgb(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
public static IMemoryOwner<byte> DecodeRgb(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
||||||
{
|
{
|
||||||
ReadOnlySpan<ulong> dataUlong = MemoryMarshal.Cast<byte, ulong>(data);
|
ReadOnlySpan<ulong> dataUlong = MemoryMarshal.Cast<byte, ulong>(data);
|
||||||
|
|
||||||
int inputOffset = 0;
|
int inputOffset = 0;
|
||||||
|
|
||||||
byte[] output = new byte[CalculateOutputSize(width, height, depth, levels, layers)];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(CalculateOutputSize(width, height, depth, levels, layers));
|
||||||
|
|
||||||
Span<uint> outputUint = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputUint = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
Span<uint> tile = stackalloc uint[BlockWidth * BlockHeight];
|
Span<uint> tile = stackalloc uint[BlockWidth * BlockHeight];
|
||||||
|
|
||||||
int imageBaseOOffs = 0;
|
int imageBaseOOffs = 0;
|
||||||
@@ -111,15 +113,15 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] DecodePta(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
public static IMemoryOwner<byte> DecodePta(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
||||||
{
|
{
|
||||||
ReadOnlySpan<ulong> dataUlong = MemoryMarshal.Cast<byte, ulong>(data);
|
ReadOnlySpan<ulong> dataUlong = MemoryMarshal.Cast<byte, ulong>(data);
|
||||||
|
|
||||||
int inputOffset = 0;
|
int inputOffset = 0;
|
||||||
|
|
||||||
byte[] output = new byte[CalculateOutputSize(width, height, depth, levels, layers)];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(CalculateOutputSize(width, height, depth, levels, layers));
|
||||||
|
|
||||||
Span<uint> outputUint = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputUint = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
Span<uint> tile = stackalloc uint[BlockWidth * BlockHeight];
|
Span<uint> tile = stackalloc uint[BlockWidth * BlockHeight];
|
||||||
|
|
||||||
int imageBaseOOffs = 0;
|
int imageBaseOOffs = 0;
|
||||||
@@ -168,15 +170,15 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] DecodeRgba(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
public static IMemoryOwner<byte> DecodeRgba(ReadOnlySpan<byte> data, int width, int height, int depth, int levels, int layers)
|
||||||
{
|
{
|
||||||
ReadOnlySpan<ulong> dataUlong = MemoryMarshal.Cast<byte, ulong>(data);
|
ReadOnlySpan<ulong> dataUlong = MemoryMarshal.Cast<byte, ulong>(data);
|
||||||
|
|
||||||
int inputOffset = 0;
|
int inputOffset = 0;
|
||||||
|
|
||||||
byte[] output = new byte[CalculateOutputSize(width, height, depth, levels, layers)];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(CalculateOutputSize(width, height, depth, levels, layers));
|
||||||
|
|
||||||
Span<uint> outputUint = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputUint = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
Span<uint> tile = stackalloc uint[BlockWidth * BlockHeight];
|
Span<uint> tile = stackalloc uint[BlockWidth * BlockHeight];
|
||||||
|
|
||||||
int imageBaseOOffs = 0;
|
int imageBaseOOffs = 0;
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
using Ryujinx.Common;
|
using Ryujinx.Common;
|
||||||
|
using Ryujinx.Common.Memory;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Runtime.Intrinsics;
|
using System.Runtime.Intrinsics;
|
||||||
using static Ryujinx.Graphics.Texture.BlockLinearConstants;
|
using static Ryujinx.Graphics.Texture.BlockLinearConstants;
|
||||||
|
|
||||||
@@ -93,7 +95,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] ConvertBlockLinearToLinear(
|
public static IMemoryOwner<byte> ConvertBlockLinearToLinear(
|
||||||
int width,
|
int width,
|
||||||
int height,
|
int height,
|
||||||
int depth,
|
int depth,
|
||||||
@@ -119,7 +121,8 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
blockHeight,
|
blockHeight,
|
||||||
bytesPerPixel);
|
bytesPerPixel);
|
||||||
|
|
||||||
byte[] output = new byte[outSize];
|
IMemoryOwner<byte> outputOwner = ByteMemoryPool.Rent(outSize);
|
||||||
|
Span<byte> output = outputOwner.Memory.Span;
|
||||||
|
|
||||||
int outOffs = 0;
|
int outOffs = 0;
|
||||||
|
|
||||||
@@ -243,10 +246,10 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
_ => throw new NotSupportedException($"Unable to convert ${bytesPerPixel} bpp pixel format."),
|
_ => throw new NotSupportedException($"Unable to convert ${bytesPerPixel} bpp pixel format."),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return output;
|
return outputOwner;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static byte[] ConvertLinearStridedToLinear(
|
public static IMemoryOwner<byte> ConvertLinearStridedToLinear(
|
||||||
int width,
|
int width,
|
||||||
int height,
|
int height,
|
||||||
int blockWidth,
|
int blockWidth,
|
||||||
@@ -262,8 +265,8 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
int outStride = BitUtils.AlignUp(w * bytesPerPixel, HostStrideAlignment);
|
int outStride = BitUtils.AlignUp(w * bytesPerPixel, HostStrideAlignment);
|
||||||
lineSize = Math.Min(lineSize, outStride);
|
lineSize = Math.Min(lineSize, outStride);
|
||||||
|
|
||||||
byte[] output = new byte[h * outStride];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(h * outStride);
|
||||||
Span<byte> outSpan = output;
|
Span<byte> outSpan = output.Memory.Span;
|
||||||
|
|
||||||
int outOffs = 0;
|
int outOffs = 0;
|
||||||
int inOffs = 0;
|
int inOffs = 0;
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
using Ryujinx.Common;
|
using Ryujinx.Common;
|
||||||
|
using Ryujinx.Common.Memory;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using System.Runtime.Intrinsics;
|
using System.Runtime.Intrinsics;
|
||||||
using System.Runtime.Intrinsics.X86;
|
using System.Runtime.Intrinsics.X86;
|
||||||
@@ -19,13 +21,13 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return (remainder, outRemainder, length / stride);
|
return (remainder, outRemainder, length / stride);
|
||||||
}
|
}
|
||||||
|
|
||||||
public unsafe static byte[] ConvertR4G4ToR4G4B4A4(ReadOnlySpan<byte> data, int width)
|
public unsafe static IMemoryOwner<byte> ConvertR4G4ToR4G4B4A4(ReadOnlySpan<byte> data, int width)
|
||||||
{
|
{
|
||||||
byte[] output = new byte[data.Length * 2];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(data.Length * 2);
|
||||||
|
|
||||||
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 1, 2);
|
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 1, 2);
|
||||||
|
|
||||||
Span<ushort> outputSpan = MemoryMarshal.Cast<byte, ushort>(output);
|
Span<ushort> outputSpan = MemoryMarshal.Cast<byte, ushort>(output.Memory.Span);
|
||||||
|
|
||||||
if (remainder == 0)
|
if (remainder == 0)
|
||||||
{
|
{
|
||||||
@@ -36,7 +38,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
int sizeTrunc = data.Length & ~7;
|
int sizeTrunc = data.Length & ~7;
|
||||||
start = sizeTrunc;
|
start = sizeTrunc;
|
||||||
|
|
||||||
fixed (byte* inputPtr = data, outputPtr = output)
|
fixed (byte* inputPtr = data, outputPtr = output.Memory.Span)
|
||||||
{
|
{
|
||||||
for (ulong offset = 0; offset < (ulong)sizeTrunc; offset += 8)
|
for (ulong offset = 0; offset < (ulong)sizeTrunc; offset += 8)
|
||||||
{
|
{
|
||||||
@@ -47,7 +49,7 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
|
|
||||||
for (int i = start; i < data.Length; i++)
|
for (int i = start; i < data.Length; i++)
|
||||||
{
|
{
|
||||||
outputSpan[i] = (ushort)data[i];
|
outputSpan[i] = data[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -70,16 +72,16 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public unsafe static byte[] ConvertR5G6B5ToR8G8B8A8(ReadOnlySpan<byte> data, int width)
|
public static IMemoryOwner<byte> ConvertR5G6B5ToR8G8B8A8(ReadOnlySpan<byte> data, int width)
|
||||||
{
|
{
|
||||||
byte[] output = new byte[data.Length * 2];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(data.Length * 2);
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
int outOffset = 0;
|
int outOffset = 0;
|
||||||
|
|
||||||
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 2, 4);
|
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 2, 4);
|
||||||
|
|
||||||
ReadOnlySpan<ushort> inputSpan = MemoryMarshal.Cast<byte, ushort>(data);
|
ReadOnlySpan<ushort> inputSpan = MemoryMarshal.Cast<byte, ushort>(data);
|
||||||
Span<uint> outputSpan = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputSpan = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
|
|
||||||
for (int y = 0; y < height; y++)
|
for (int y = 0; y < height; y++)
|
||||||
{
|
{
|
||||||
@@ -107,16 +109,16 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public unsafe static byte[] ConvertR5G5B5ToR8G8B8A8(ReadOnlySpan<byte> data, int width, bool forceAlpha)
|
public static IMemoryOwner<byte> ConvertR5G5B5ToR8G8B8A8(ReadOnlySpan<byte> data, int width, bool forceAlpha)
|
||||||
{
|
{
|
||||||
byte[] output = new byte[data.Length * 2];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(data.Length * 2);
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
int outOffset = 0;
|
int outOffset = 0;
|
||||||
|
|
||||||
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 2, 4);
|
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 2, 4);
|
||||||
|
|
||||||
ReadOnlySpan<ushort> inputSpan = MemoryMarshal.Cast<byte, ushort>(data);
|
ReadOnlySpan<ushort> inputSpan = MemoryMarshal.Cast<byte, ushort>(data);
|
||||||
Span<uint> outputSpan = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputSpan = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
|
|
||||||
for (int y = 0; y < height; y++)
|
for (int y = 0; y < height; y++)
|
||||||
{
|
{
|
||||||
@@ -144,16 +146,16 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public unsafe static byte[] ConvertA1B5G5R5ToR8G8B8A8(ReadOnlySpan<byte> data, int width)
|
public static IMemoryOwner<byte> ConvertA1B5G5R5ToR8G8B8A8(ReadOnlySpan<byte> data, int width)
|
||||||
{
|
{
|
||||||
byte[] output = new byte[data.Length * 2];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(data.Length * 2);
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
int outOffset = 0;
|
int outOffset = 0;
|
||||||
|
|
||||||
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 2, 4);
|
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 2, 4);
|
||||||
|
|
||||||
ReadOnlySpan<ushort> inputSpan = MemoryMarshal.Cast<byte, ushort>(data);
|
ReadOnlySpan<ushort> inputSpan = MemoryMarshal.Cast<byte, ushort>(data);
|
||||||
Span<uint> outputSpan = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputSpan = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
|
|
||||||
for (int y = 0; y < height; y++)
|
for (int y = 0; y < height; y++)
|
||||||
{
|
{
|
||||||
@@ -181,16 +183,16 @@ namespace Ryujinx.Graphics.Texture
|
|||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
public unsafe static byte[] ConvertR4G4B4A4ToR8G8B8A8(ReadOnlySpan<byte> data, int width)
|
public static IMemoryOwner<byte> ConvertR4G4B4A4ToR8G8B8A8(ReadOnlySpan<byte> data, int width)
|
||||||
{
|
{
|
||||||
byte[] output = new byte[data.Length * 2];
|
IMemoryOwner<byte> output = ByteMemoryPool.Rent(data.Length * 2);
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
int outOffset = 0;
|
int outOffset = 0;
|
||||||
|
|
||||||
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 2, 4);
|
(int remainder, int outRemainder, int height) = GetLineRemainders(data.Length, width, 2, 4);
|
||||||
|
|
||||||
ReadOnlySpan<ushort> inputSpan = MemoryMarshal.Cast<byte, ushort>(data);
|
ReadOnlySpan<ushort> inputSpan = MemoryMarshal.Cast<byte, ushort>(data);
|
||||||
Span<uint> outputSpan = MemoryMarshal.Cast<byte, uint>(output);
|
Span<uint> outputSpan = MemoryMarshal.Cast<byte, uint>(output.Memory.Span);
|
||||||
|
|
||||||
for (int y = 0; y < height; y++)
|
for (int y = 0; y < height; y++)
|
||||||
{
|
{
|
||||||
|
@@ -302,12 +302,12 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
SubmitInfo sInfo = new()
|
SubmitInfo sInfo = new()
|
||||||
{
|
{
|
||||||
SType = StructureType.SubmitInfo,
|
SType = StructureType.SubmitInfo,
|
||||||
WaitSemaphoreCount = waitSemaphores != null ? (uint)waitSemaphores.Length : 0,
|
WaitSemaphoreCount = !waitSemaphores.IsEmpty ? (uint)waitSemaphores.Length : 0,
|
||||||
PWaitSemaphores = pWaitSemaphores,
|
PWaitSemaphores = pWaitSemaphores,
|
||||||
PWaitDstStageMask = pWaitDstStageMask,
|
PWaitDstStageMask = pWaitDstStageMask,
|
||||||
CommandBufferCount = 1,
|
CommandBufferCount = 1,
|
||||||
PCommandBuffers = &commandBuffer,
|
PCommandBuffers = &commandBuffer,
|
||||||
SignalSemaphoreCount = signalSemaphores != null ? (uint)signalSemaphores.Length : 0,
|
SignalSemaphoreCount = !signalSemaphores.IsEmpty ? (uint)signalSemaphores.Length : 0,
|
||||||
PSignalSemaphores = pSignalSemaphores,
|
PSignalSemaphores = pSignalSemaphores,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -43,11 +43,11 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
int binding = segment.Binding;
|
int binding = segment.Binding;
|
||||||
int count = segment.Count;
|
int count = segment.Count;
|
||||||
|
|
||||||
if (setIndex == PipelineBase.UniformSetIndex)
|
if (IsBufferType(segment.Type))
|
||||||
{
|
{
|
||||||
entries[seg] = new DescriptorUpdateTemplateEntry()
|
entries[seg] = new DescriptorUpdateTemplateEntry()
|
||||||
{
|
{
|
||||||
DescriptorType = DescriptorType.UniformBuffer,
|
DescriptorType = segment.Type.Convert(),
|
||||||
DstBinding = (uint)binding,
|
DstBinding = (uint)binding,
|
||||||
DescriptorCount = (uint)count,
|
DescriptorCount = (uint)count,
|
||||||
Offset = structureOffset,
|
Offset = structureOffset,
|
||||||
@@ -56,76 +56,31 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
|
|
||||||
structureOffset += (nuint)(Unsafe.SizeOf<DescriptorBufferInfo>() * count);
|
structureOffset += (nuint)(Unsafe.SizeOf<DescriptorBufferInfo>() * count);
|
||||||
}
|
}
|
||||||
else if (setIndex == PipelineBase.StorageSetIndex)
|
else if (IsBufferTextureType(segment.Type))
|
||||||
{
|
{
|
||||||
entries[seg] = new DescriptorUpdateTemplateEntry()
|
entries[seg] = new DescriptorUpdateTemplateEntry()
|
||||||
{
|
{
|
||||||
DescriptorType = DescriptorType.StorageBuffer,
|
DescriptorType = segment.Type.Convert(),
|
||||||
DstBinding = (uint)binding,
|
DstBinding = (uint)binding,
|
||||||
DescriptorCount = (uint)count,
|
DescriptorCount = (uint)count,
|
||||||
Offset = structureOffset,
|
Offset = structureOffset,
|
||||||
Stride = (nuint)Unsafe.SizeOf<DescriptorBufferInfo>()
|
Stride = (nuint)Unsafe.SizeOf<BufferView>()
|
||||||
};
|
};
|
||||||
|
|
||||||
structureOffset += (nuint)(Unsafe.SizeOf<DescriptorBufferInfo>() * count);
|
structureOffset += (nuint)(Unsafe.SizeOf<BufferView>() * count);
|
||||||
}
|
}
|
||||||
else if (setIndex == PipelineBase.TextureSetIndex)
|
else
|
||||||
{
|
{
|
||||||
if (segment.Type != ResourceType.BufferTexture)
|
entries[seg] = new DescriptorUpdateTemplateEntry()
|
||||||
{
|
{
|
||||||
entries[seg] = new DescriptorUpdateTemplateEntry()
|
DescriptorType = segment.Type.Convert(),
|
||||||
{
|
DstBinding = (uint)binding,
|
||||||
DescriptorType = DescriptorType.CombinedImageSampler,
|
DescriptorCount = (uint)count,
|
||||||
DstBinding = (uint)binding,
|
Offset = structureOffset,
|
||||||
DescriptorCount = (uint)count,
|
Stride = (nuint)Unsafe.SizeOf<DescriptorImageInfo>()
|
||||||
Offset = structureOffset,
|
};
|
||||||
Stride = (nuint)Unsafe.SizeOf<DescriptorImageInfo>()
|
|
||||||
};
|
|
||||||
|
|
||||||
structureOffset += (nuint)(Unsafe.SizeOf<DescriptorImageInfo>() * count);
|
structureOffset += (nuint)(Unsafe.SizeOf<DescriptorImageInfo>() * count);
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
entries[seg] = new DescriptorUpdateTemplateEntry()
|
|
||||||
{
|
|
||||||
DescriptorType = DescriptorType.UniformTexelBuffer,
|
|
||||||
DstBinding = (uint)binding,
|
|
||||||
DescriptorCount = (uint)count,
|
|
||||||
Offset = structureOffset,
|
|
||||||
Stride = (nuint)Unsafe.SizeOf<BufferView>()
|
|
||||||
};
|
|
||||||
|
|
||||||
structureOffset += (nuint)(Unsafe.SizeOf<BufferView>() * count);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (setIndex == PipelineBase.ImageSetIndex)
|
|
||||||
{
|
|
||||||
if (segment.Type != ResourceType.BufferImage)
|
|
||||||
{
|
|
||||||
entries[seg] = new DescriptorUpdateTemplateEntry()
|
|
||||||
{
|
|
||||||
DescriptorType = DescriptorType.StorageImage,
|
|
||||||
DstBinding = (uint)binding,
|
|
||||||
DescriptorCount = (uint)count,
|
|
||||||
Offset = structureOffset,
|
|
||||||
Stride = (nuint)Unsafe.SizeOf<DescriptorImageInfo>()
|
|
||||||
};
|
|
||||||
|
|
||||||
structureOffset += (nuint)(Unsafe.SizeOf<DescriptorImageInfo>() * count);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
entries[seg] = new DescriptorUpdateTemplateEntry()
|
|
||||||
{
|
|
||||||
DescriptorType = DescriptorType.StorageTexelBuffer,
|
|
||||||
DstBinding = (uint)binding,
|
|
||||||
DescriptorCount = (uint)count,
|
|
||||||
Offset = structureOffset,
|
|
||||||
Stride = (nuint)Unsafe.SizeOf<BufferView>()
|
|
||||||
};
|
|
||||||
|
|
||||||
structureOffset += (nuint)(Unsafe.SizeOf<BufferView>() * count);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -237,6 +192,16 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
Template = result;
|
Template = result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool IsBufferType(ResourceType type)
|
||||||
|
{
|
||||||
|
return type == ResourceType.UniformBuffer || type == ResourceType.StorageBuffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static bool IsBufferTextureType(ResourceType type)
|
||||||
|
{
|
||||||
|
return type == ResourceType.BufferTexture || type == ResourceType.BufferImage;
|
||||||
|
}
|
||||||
|
|
||||||
public unsafe void Dispose()
|
public unsafe void Dispose()
|
||||||
{
|
{
|
||||||
_gd.Api.DestroyDescriptorUpdateTemplate(_device, Template, null);
|
_gd.Api.DestroyDescriptorUpdateTemplate(_device, Template, null);
|
||||||
|
@@ -3,6 +3,7 @@ using Ryujinx.Graphics.GAL;
|
|||||||
using Ryujinx.Graphics.Shader;
|
using Ryujinx.Graphics.Shader;
|
||||||
using Silk.NET.Vulkan;
|
using Silk.NET.Vulkan;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using CompareOp = Ryujinx.Graphics.GAL.CompareOp;
|
using CompareOp = Ryujinx.Graphics.GAL.CompareOp;
|
||||||
@@ -216,7 +217,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
|
|
||||||
public void Initialize()
|
public void Initialize()
|
||||||
{
|
{
|
||||||
Span<byte> dummyTextureData = stackalloc byte[4];
|
IMemoryOwner<byte> dummyTextureData = ByteMemoryPool.RentCleared(4);
|
||||||
_dummyTexture.SetData(dummyTextureData);
|
_dummyTexture.SetData(dummyTextureData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -174,8 +174,8 @@ namespace Ryujinx.Graphics.Vulkan.Effects
|
|||||||
SwizzleComponent.Blue,
|
SwizzleComponent.Blue,
|
||||||
SwizzleComponent.Alpha);
|
SwizzleComponent.Alpha);
|
||||||
|
|
||||||
var areaTexture = EmbeddedResources.Read("Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaAreaTexture.bin");
|
var areaTexture = EmbeddedResources.ReadFileToRentedMemory("Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaAreaTexture.bin");
|
||||||
var searchTexture = EmbeddedResources.Read("Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaSearchTexture.bin");
|
var searchTexture = EmbeddedResources.ReadFileToRentedMemory("Ryujinx.Graphics.Vulkan/Effects/Textures/SmaaSearchTexture.bin");
|
||||||
|
|
||||||
_areaTexture = _renderer.CreateTexture(areaInfo) as TextureView;
|
_areaTexture = _renderer.CreateTexture(areaInfo) as TextureView;
|
||||||
_searchTexture = _renderer.CreateTexture(searchInfo) as TextureView;
|
_searchTexture = _renderer.CreateTexture(searchInfo) as TextureView;
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
using Ryujinx.Common.Memory;
|
|
||||||
using Ryujinx.Graphics.GAL;
|
using Ryujinx.Graphics.GAL;
|
||||||
using Silk.NET.Vulkan;
|
using Silk.NET.Vulkan;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Format = Ryujinx.Graphics.GAL.Format;
|
using Format = Ryujinx.Graphics.GAL.Format;
|
||||||
using VkFormat = Silk.NET.Vulkan.Format;
|
using VkFormat = Silk.NET.Vulkan.Format;
|
||||||
@@ -94,17 +94,21 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
_bufferView = null;
|
_bufferView = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data)
|
||||||
{
|
{
|
||||||
_gd.SetBufferData(_bufferHandle, _offset, data);
|
_gd.SetBufferData(_bufferHandle, _offset, data.Memory.Span);
|
||||||
|
data.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data, int layer, int level)
|
||||||
{
|
{
|
||||||
throw new NotSupportedException();
|
throw new NotSupportedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level, Rectangle<int> region)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data, int layer, int level, Rectangle<int> region)
|
||||||
{
|
{
|
||||||
throw new NotSupportedException();
|
throw new NotSupportedException();
|
||||||
}
|
}
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
using Ryujinx.Common.Memory;
|
|
||||||
using Ryujinx.Graphics.GAL;
|
using Ryujinx.Graphics.GAL;
|
||||||
using Silk.NET.Vulkan;
|
using Silk.NET.Vulkan;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
@@ -702,19 +702,25 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
return GetDataFromBuffer(result, size, result);
|
return GetDataFromBuffer(result, size, result);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data)
|
||||||
{
|
{
|
||||||
SetData(data, 0, 0, Info.GetLayers(), Info.Levels, singleSlice: false);
|
SetData(data.Memory.Span, 0, 0, Info.GetLayers(), Info.Levels, singleSlice: false);
|
||||||
|
data.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data, int layer, int level)
|
||||||
{
|
{
|
||||||
SetData(data, layer, level, 1, 1, singleSlice: true);
|
SetData(data.Memory.Span, layer, level, 1, 1, singleSlice: true);
|
||||||
|
data.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SetData(SpanOrArray<byte> data, int layer, int level, Rectangle<int> region)
|
/// <inheritdoc/>
|
||||||
|
public void SetData(IMemoryOwner<byte> data, int layer, int level, Rectangle<int> region)
|
||||||
{
|
{
|
||||||
SetData(data, layer, level, 1, 1, singleSlice: true, region);
|
SetData(data.Memory.Span, layer, level, 1, 1, singleSlice: true, region);
|
||||||
|
data.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetData(ReadOnlySpan<byte> data, int layer, int level, int layers, int levels, bool singleSlice, Rectangle<int>? region = null)
|
private void SetData(ReadOnlySpan<byte> data, int layer, int level, int layers, int levels, bool singleSlice, Rectangle<int>? region = null)
|
||||||
|
@@ -691,6 +691,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
supportsBgraFormat: true,
|
supportsBgraFormat: true,
|
||||||
supportsR4G4Format: false,
|
supportsR4G4Format: false,
|
||||||
supportsR4G4B4A4Format: supportsR4G4B4A4Format,
|
supportsR4G4B4A4Format: supportsR4G4B4A4Format,
|
||||||
|
supportsScaledVertexFormats: FormatCapabilities.SupportsScaledVertexFormats(),
|
||||||
supportsSnormBufferTextureFormat: true,
|
supportsSnormBufferTextureFormat: true,
|
||||||
supports5BitComponentFormat: supports5BitComponentFormat,
|
supports5BitComponentFormat: supports5BitComponentFormat,
|
||||||
supportsSparseBuffer: features2.Features.SparseBinding && mainQueueProperties.QueueFlags.HasFlag(QueueFlags.SparseBindingBit),
|
supportsSparseBuffer: features2.Features.SparseBinding && mainQueueProperties.QueueFlags.HasFlag(QueueFlags.SparseBindingBit),
|
||||||
@@ -705,7 +706,8 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
supportsMismatchingViewFormat: true,
|
supportsMismatchingViewFormat: true,
|
||||||
supportsCubemapView: !IsAmdGcn,
|
supportsCubemapView: !IsAmdGcn,
|
||||||
supportsNonConstantTextureOffset: false,
|
supportsNonConstantTextureOffset: false,
|
||||||
supportsScaledVertexFormats: FormatCapabilities.SupportsScaledVertexFormats(),
|
supportsQuads: false,
|
||||||
|
supportsSeparateSampler: true,
|
||||||
supportsShaderBallot: false,
|
supportsShaderBallot: false,
|
||||||
supportsShaderBarrierDivergence: Vendor != Vendor.Intel,
|
supportsShaderBarrierDivergence: Vendor != Vendor.Intel,
|
||||||
supportsShaderFloat64: Capabilities.SupportsShaderFloat64,
|
supportsShaderFloat64: Capabilities.SupportsShaderFloat64,
|
||||||
|
@@ -330,6 +330,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||||||
_swapchainIsDirty)
|
_swapchainIsDirty)
|
||||||
{
|
{
|
||||||
RecreateSwapchain();
|
RecreateSwapchain();
|
||||||
|
semaphoreIndex = (_frameIndex - 1) % _imageAvailableSemaphores.Length;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@@ -75,7 +75,7 @@ namespace Ryujinx
|
|||||||
|
|
||||||
if (OperatingSystem.IsWindows() && !OperatingSystem.IsWindowsVersionAtLeast(10, 0, 17134))
|
if (OperatingSystem.IsWindows() && !OperatingSystem.IsWindowsVersionAtLeast(10, 0, 17134))
|
||||||
{
|
{
|
||||||
MessageBoxA(IntPtr.Zero, "You are running an outdated version of Windows.\n\nStarting on June 1st 2022, Ryujinx will only support Windows 10 1803 and newer.\n", $"Ryujinx {Version}", MbIconWarning);
|
MessageBoxA(IntPtr.Zero, "You are running an outdated version of Windows.\n\nRyujinx supports Windows 10 version 1803 and newer.\n", $"Ryujinx {Version}", MbIconWarning);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse arguments
|
// Parse arguments
|
||||||
|
@@ -63,7 +63,7 @@
|
|||||||
</Content>
|
</Content>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64' OR '$(RuntimeIdentifier)' == 'linux-arm64'">
|
<ItemGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64' OR '$(RuntimeIdentifier)' == 'linux-arm64' OR ('$(RuntimeIdentifier)' == '' AND $([MSBuild]::IsOSPlatform('Linux')))">
|
||||||
<Content Include="..\..\distribution\linux\Ryujinx.sh">
|
<Content Include="..\..\distribution\linux\Ryujinx.sh">
|
||||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||||
</Content>
|
</Content>
|
||||||
|
158
src/Ryujinx.Gtk3/UI/Helper/ButtonHelper.cs
Normal file
158
src/Ryujinx.Gtk3/UI/Helper/ButtonHelper.cs
Normal file
@@ -0,0 +1,158 @@
|
|||||||
|
using Ryujinx.Common.Configuration.Hid.Controller;
|
||||||
|
using Ryujinx.Input;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using Key = Ryujinx.Common.Configuration.Hid.Key;
|
||||||
|
using StickInputId = Ryujinx.Common.Configuration.Hid.Controller.StickInputId;
|
||||||
|
|
||||||
|
namespace Ryujinx.UI.Helper
|
||||||
|
{
|
||||||
|
public static class ButtonHelper
|
||||||
|
{
|
||||||
|
private static readonly Dictionary<Key, string> _keysMap = new()
|
||||||
|
{
|
||||||
|
{ Key.Unknown, "Unknown" },
|
||||||
|
{ Key.ShiftLeft, "ShiftLeft" },
|
||||||
|
{ Key.ShiftRight, "ShiftRight" },
|
||||||
|
{ Key.ControlLeft, "CtrlLeft" },
|
||||||
|
{ Key.ControlRight, "CtrlRight" },
|
||||||
|
{ Key.AltLeft, OperatingSystem.IsMacOS() ? "OptLeft" : "AltLeft" },
|
||||||
|
{ Key.AltRight, OperatingSystem.IsMacOS() ? "OptRight" : "AltRight" },
|
||||||
|
{ Key.WinLeft, OperatingSystem.IsMacOS() ? "CmdLeft" : "WinLeft" },
|
||||||
|
{ Key.WinRight, OperatingSystem.IsMacOS() ? "CmdRight" : "WinRight" },
|
||||||
|
{ Key.Up, "Up" },
|
||||||
|
{ Key.Down, "Down" },
|
||||||
|
{ Key.Left, "Left" },
|
||||||
|
{ Key.Right, "Right" },
|
||||||
|
{ Key.Enter, "Enter" },
|
||||||
|
{ Key.Escape, "Escape" },
|
||||||
|
{ Key.Space, "Space" },
|
||||||
|
{ Key.Tab, "Tab" },
|
||||||
|
{ Key.BackSpace, "Backspace" },
|
||||||
|
{ Key.Insert, "Insert" },
|
||||||
|
{ Key.Delete, "Delete" },
|
||||||
|
{ Key.PageUp, "PageUp" },
|
||||||
|
{ Key.PageDown, "PageDown" },
|
||||||
|
{ Key.Home, "Home" },
|
||||||
|
{ Key.End, "End" },
|
||||||
|
{ Key.CapsLock, "CapsLock" },
|
||||||
|
{ Key.ScrollLock, "ScrollLock" },
|
||||||
|
{ Key.PrintScreen, "PrintScreen" },
|
||||||
|
{ Key.Pause, "Pause" },
|
||||||
|
{ Key.NumLock, "NumLock" },
|
||||||
|
{ Key.Clear, "Clear" },
|
||||||
|
{ Key.Keypad0, "Keypad0" },
|
||||||
|
{ Key.Keypad1, "Keypad1" },
|
||||||
|
{ Key.Keypad2, "Keypad2" },
|
||||||
|
{ Key.Keypad3, "Keypad3" },
|
||||||
|
{ Key.Keypad4, "Keypad4" },
|
||||||
|
{ Key.Keypad5, "Keypad5" },
|
||||||
|
{ Key.Keypad6, "Keypad6" },
|
||||||
|
{ Key.Keypad7, "Keypad7" },
|
||||||
|
{ Key.Keypad8, "Keypad8" },
|
||||||
|
{ Key.Keypad9, "Keypad9" },
|
||||||
|
{ Key.KeypadDivide, "KeypadDivide" },
|
||||||
|
{ Key.KeypadMultiply, "KeypadMultiply" },
|
||||||
|
{ Key.KeypadSubtract, "KeypadSubtract" },
|
||||||
|
{ Key.KeypadAdd, "KeypadAdd" },
|
||||||
|
{ Key.KeypadDecimal, "KeypadDecimal" },
|
||||||
|
{ Key.KeypadEnter, "KeypadEnter" },
|
||||||
|
{ Key.Number0, "0" },
|
||||||
|
{ Key.Number1, "1" },
|
||||||
|
{ Key.Number2, "2" },
|
||||||
|
{ Key.Number3, "3" },
|
||||||
|
{ Key.Number4, "4" },
|
||||||
|
{ Key.Number5, "5" },
|
||||||
|
{ Key.Number6, "6" },
|
||||||
|
{ Key.Number7, "7" },
|
||||||
|
{ Key.Number8, "8" },
|
||||||
|
{ Key.Number9, "9" },
|
||||||
|
{ Key.Tilde, "~" },
|
||||||
|
{ Key.Grave, "`" },
|
||||||
|
{ Key.Minus, "-" },
|
||||||
|
{ Key.Plus, "+" },
|
||||||
|
{ Key.BracketLeft, "[" },
|
||||||
|
{ Key.BracketRight, "]" },
|
||||||
|
{ Key.Semicolon, ";" },
|
||||||
|
{ Key.Quote, "'" },
|
||||||
|
{ Key.Comma, "," },
|
||||||
|
{ Key.Period, "." },
|
||||||
|
{ Key.Slash, "/" },
|
||||||
|
{ Key.BackSlash, "\\" },
|
||||||
|
{ Key.Unbound, "Unbound" },
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly Dictionary<GamepadInputId, string> _gamepadInputIdMap = new()
|
||||||
|
{
|
||||||
|
{ GamepadInputId.LeftStick, "LeftStick" },
|
||||||
|
{ GamepadInputId.RightStick, "RightStick" },
|
||||||
|
{ GamepadInputId.LeftShoulder, "LeftShoulder" },
|
||||||
|
{ GamepadInputId.RightShoulder, "RightShoulder" },
|
||||||
|
{ GamepadInputId.LeftTrigger, "LeftTrigger" },
|
||||||
|
{ GamepadInputId.RightTrigger, "RightTrigger" },
|
||||||
|
{ GamepadInputId.DpadUp, "DpadUp" },
|
||||||
|
{ GamepadInputId.DpadDown, "DpadDown" },
|
||||||
|
{ GamepadInputId.DpadLeft, "DpadLeft" },
|
||||||
|
{ GamepadInputId.DpadRight, "DpadRight" },
|
||||||
|
{ GamepadInputId.Minus, "Minus" },
|
||||||
|
{ GamepadInputId.Plus, "Plus" },
|
||||||
|
{ GamepadInputId.Guide, "Guide" },
|
||||||
|
{ GamepadInputId.Misc1, "Misc1" },
|
||||||
|
{ GamepadInputId.Paddle1, "Paddle1" },
|
||||||
|
{ GamepadInputId.Paddle2, "Paddle2" },
|
||||||
|
{ GamepadInputId.Paddle3, "Paddle3" },
|
||||||
|
{ GamepadInputId.Paddle4, "Paddle4" },
|
||||||
|
{ GamepadInputId.Touchpad, "Touchpad" },
|
||||||
|
{ GamepadInputId.SingleLeftTrigger0, "SingleLeftTrigger0" },
|
||||||
|
{ GamepadInputId.SingleRightTrigger0, "SingleRightTrigger0" },
|
||||||
|
{ GamepadInputId.SingleLeftTrigger1, "SingleLeftTrigger1" },
|
||||||
|
{ GamepadInputId.SingleRightTrigger1, "SingleRightTrigger1" },
|
||||||
|
{ GamepadInputId.Unbound, "Unbound" },
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly Dictionary<StickInputId, string> _stickInputIdMap = new()
|
||||||
|
{
|
||||||
|
{ StickInputId.Left, "StickLeft" },
|
||||||
|
{ StickInputId.Right, "StickRight" },
|
||||||
|
{ StickInputId.Unbound, "Unbound" },
|
||||||
|
};
|
||||||
|
|
||||||
|
public static string ToString(Button button)
|
||||||
|
{
|
||||||
|
string keyString = "";
|
||||||
|
|
||||||
|
switch (button.Type)
|
||||||
|
{
|
||||||
|
case ButtonType.Key:
|
||||||
|
var key = button.AsHidType<Key>();
|
||||||
|
|
||||||
|
if (!_keysMap.TryGetValue(button.AsHidType<Key>(), out keyString))
|
||||||
|
{
|
||||||
|
keyString = key.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
case ButtonType.GamepadButtonInputId:
|
||||||
|
var gamepadButton = button.AsHidType<GamepadInputId>();
|
||||||
|
|
||||||
|
if (!_gamepadInputIdMap.TryGetValue(button.AsHidType<GamepadInputId>(), out keyString))
|
||||||
|
{
|
||||||
|
keyString = gamepadButton.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
case ButtonType.StickId:
|
||||||
|
var stickInput = button.AsHidType<StickInputId>();
|
||||||
|
|
||||||
|
if (!_stickInputIdMap.TryGetValue(button.AsHidType<StickInputId>(), out keyString))
|
||||||
|
{
|
||||||
|
keyString = stickInput.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return keyString;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -10,6 +10,7 @@ using Ryujinx.Input;
|
|||||||
using Ryujinx.Input.Assigner;
|
using Ryujinx.Input.Assigner;
|
||||||
using Ryujinx.Input.GTK3;
|
using Ryujinx.Input.GTK3;
|
||||||
using Ryujinx.UI.Common.Configuration;
|
using Ryujinx.UI.Common.Configuration;
|
||||||
|
using Ryujinx.UI.Helper;
|
||||||
using Ryujinx.UI.Widgets;
|
using Ryujinx.UI.Widgets;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@@ -17,6 +18,7 @@ using System.IO;
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
using Button = Ryujinx.Input.Button;
|
||||||
using ConfigGamepadInputId = Ryujinx.Common.Configuration.Hid.Controller.GamepadInputId;
|
using ConfigGamepadInputId = Ryujinx.Common.Configuration.Hid.Controller.GamepadInputId;
|
||||||
using ConfigStickInputId = Ryujinx.Common.Configuration.Hid.Controller.StickInputId;
|
using ConfigStickInputId = Ryujinx.Common.Configuration.Hid.Controller.StickInputId;
|
||||||
using GUI = Gtk.Builder.ObjectAttribute;
|
using GUI = Gtk.Builder.ObjectAttribute;
|
||||||
@@ -887,13 +889,13 @@ namespace Ryujinx.UI.Windows
|
|||||||
Thread.Sleep(10);
|
Thread.Sleep(10);
|
||||||
assigner.ReadInput();
|
assigner.ReadInput();
|
||||||
|
|
||||||
if (_mousePressed || keyboard.IsPressed(Ryujinx.Input.Key.Escape) || assigner.HasAnyButtonPressed() || assigner.ShouldCancel())
|
if (_mousePressed || keyboard.IsPressed(Ryujinx.Input.Key.Escape) || assigner.IsAnyButtonPressed() || assigner.ShouldCancel())
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
string pressedButton = assigner.GetPressedButton();
|
string pressedButton = ButtonHelper.ToString(assigner.GetPressedButton() ?? new Button(Input.Key.Unknown));
|
||||||
|
|
||||||
Application.Invoke(delegate
|
Application.Invoke(delegate
|
||||||
{
|
{
|
||||||
|
@@ -570,7 +570,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
serverProcess.CpuMemory.Write(copyDst, clientProcess.CpuMemory.GetSpan(copySrc, (int)copySize));
|
serverProcess.CpuMemory.Write(copyDst, clientProcess.CpuMemory.GetReadOnlySequence(copySrc, (int)copySize));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (clientResult != Result.Success)
|
if (clientResult != Result.Success)
|
||||||
@@ -858,7 +858,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Ipc
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
clientProcess.CpuMemory.Write(copyDst, serverProcess.CpuMemory.GetSpan(copySrc, (int)copySize));
|
clientProcess.CpuMemory.Write(copyDst, serverProcess.CpuMemory.GetReadOnlySequence(copySrc, (int)copySize));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -2,6 +2,7 @@ using Ryujinx.Horizon.Common;
|
|||||||
using Ryujinx.Memory;
|
using Ryujinx.Memory;
|
||||||
using Ryujinx.Memory.Range;
|
using Ryujinx.Memory.Range;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
@@ -34,6 +35,12 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
protected override ReadOnlySequence<byte> GetReadOnlySequence(ulong va, int size)
|
||||||
|
{
|
||||||
|
return _cpuMemory.GetReadOnlySequence(va, size);
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
protected override ReadOnlySpan<byte> GetSpan(ulong va, int size)
|
protected override ReadOnlySpan<byte> GetSpan(ulong va, int size)
|
||||||
{
|
{
|
||||||
@@ -247,6 +254,12 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||||||
_cpuMemory.SignalMemoryTracking(va, size, write);
|
_cpuMemory.SignalMemoryTracking(va, size, write);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc/>
|
||||||
|
protected override void Write(ulong va, ReadOnlySequence<byte> data)
|
||||||
|
{
|
||||||
|
_cpuMemory.Write(va, data);
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
protected override void Write(ulong va, ReadOnlySpan<byte> data)
|
protected override void Write(ulong va, ReadOnlySpan<byte> data)
|
||||||
{
|
{
|
||||||
|
@@ -5,6 +5,7 @@ using Ryujinx.Horizon.Common;
|
|||||||
using Ryujinx.Memory;
|
using Ryujinx.Memory;
|
||||||
using Ryujinx.Memory.Range;
|
using Ryujinx.Memory.Range;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Buffers;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
|
|
||||||
@@ -1568,7 +1569,7 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||||||
|
|
||||||
while (size > 0)
|
while (size > 0)
|
||||||
{
|
{
|
||||||
ulong copySize = 0x100000; // Copy chunck size. Any value will do, moderate sizes are recommended.
|
ulong copySize = int.MaxValue;
|
||||||
|
|
||||||
if (copySize > size)
|
if (copySize > size)
|
||||||
{
|
{
|
||||||
@@ -1577,11 +1578,11 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||||||
|
|
||||||
if (toServer)
|
if (toServer)
|
||||||
{
|
{
|
||||||
currentProcess.CpuMemory.Write(serverAddress, GetSpan(clientAddress, (int)copySize));
|
currentProcess.CpuMemory.Write(serverAddress, GetReadOnlySequence(clientAddress, (int)copySize));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Write(clientAddress, currentProcess.CpuMemory.GetSpan(serverAddress, (int)copySize));
|
Write(clientAddress, currentProcess.CpuMemory.GetReadOnlySequence(serverAddress, (int)copySize));
|
||||||
}
|
}
|
||||||
|
|
||||||
serverAddress += copySize;
|
serverAddress += copySize;
|
||||||
@@ -1911,9 +1912,9 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||||||
Context.Memory.Fill(GetDramAddressFromPa(dstFirstPagePa), unusedSizeBefore, (byte)_ipcFillValue);
|
Context.Memory.Fill(GetDramAddressFromPa(dstFirstPagePa), unusedSizeBefore, (byte)_ipcFillValue);
|
||||||
|
|
||||||
ulong copySize = addressRounded <= endAddr ? addressRounded - address : size;
|
ulong copySize = addressRounded <= endAddr ? addressRounded - address : size;
|
||||||
var data = srcPageTable.GetSpan(addressTruncated + unusedSizeBefore, (int)copySize);
|
var data = srcPageTable.GetReadOnlySequence(addressTruncated + unusedSizeBefore, (int)copySize);
|
||||||
|
|
||||||
Context.Memory.Write(GetDramAddressFromPa(dstFirstPagePa + unusedSizeBefore), data);
|
((IWritableBlock)Context.Memory).Write(GetDramAddressFromPa(dstFirstPagePa + unusedSizeBefore), data);
|
||||||
|
|
||||||
firstPageFillAddress += unusedSizeBefore + copySize;
|
firstPageFillAddress += unusedSizeBefore + copySize;
|
||||||
|
|
||||||
@@ -1977,9 +1978,9 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||||||
if (send)
|
if (send)
|
||||||
{
|
{
|
||||||
ulong copySize = endAddr - endAddrTruncated;
|
ulong copySize = endAddr - endAddrTruncated;
|
||||||
var data = srcPageTable.GetSpan(endAddrTruncated, (int)copySize);
|
var data = srcPageTable.GetReadOnlySequence(endAddrTruncated, (int)copySize);
|
||||||
|
|
||||||
Context.Memory.Write(GetDramAddressFromPa(dstLastPagePa), data);
|
((IWritableBlock)Context.Memory).Write(GetDramAddressFromPa(dstLastPagePa), data);
|
||||||
|
|
||||||
lastPageFillAddr += copySize;
|
lastPageFillAddr += copySize;
|
||||||
|
|
||||||
@@ -2943,6 +2944,18 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||||||
/// <param name="pageList">Page list where the ranges will be added</param>
|
/// <param name="pageList">Page list where the ranges will be added</param>
|
||||||
protected abstract void GetPhysicalRegions(ulong va, ulong size, KPageList pageList);
|
protected abstract void GetPhysicalRegions(ulong va, ulong size, KPageList pageList);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets a read-only sequence of data from CPU mapped memory.
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Allows reading non-contiguous memory without first copying it to a newly allocated single contiguous block.
|
||||||
|
/// </remarks>
|
||||||
|
/// <param name="va">Virtual address of the data</param>
|
||||||
|
/// <param name="size">Size of the data</param>
|
||||||
|
/// <returns>A read-only sequence of the data</returns>
|
||||||
|
/// <exception cref="Ryujinx.Memory.InvalidMemoryRegionException">Throw for unhandled invalid or unmapped memory accesses</exception>
|
||||||
|
protected abstract ReadOnlySequence<byte> GetReadOnlySequence(ulong va, int size);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a read-only span of data from CPU mapped memory.
|
/// Gets a read-only span of data from CPU mapped memory.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -2952,7 +2965,6 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="va">Virtual address of the data</param>
|
/// <param name="va">Virtual address of the data</param>
|
||||||
/// <param name="size">Size of the data</param>
|
/// <param name="size">Size of the data</param>
|
||||||
/// <param name="tracked">True if read tracking is triggered on the span</param>
|
|
||||||
/// <returns>A read-only span of the data</returns>
|
/// <returns>A read-only span of the data</returns>
|
||||||
/// <exception cref="Ryujinx.Memory.InvalidMemoryRegionException">Throw for unhandled invalid or unmapped memory accesses</exception>
|
/// <exception cref="Ryujinx.Memory.InvalidMemoryRegionException">Throw for unhandled invalid or unmapped memory accesses</exception>
|
||||||
protected abstract ReadOnlySpan<byte> GetSpan(ulong va, int size);
|
protected abstract ReadOnlySpan<byte> GetSpan(ulong va, int size);
|
||||||
@@ -3060,6 +3072,14 @@ namespace Ryujinx.HLE.HOS.Kernel.Memory
|
|||||||
/// <param name="size">Size of the region</param>
|
/// <param name="size">Size of the region</param>
|
||||||
protected abstract void SignalMemoryTracking(ulong va, ulong size, bool write);
|
protected abstract void SignalMemoryTracking(ulong va, ulong size, bool write);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Writes data to CPU mapped memory, with write tracking.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="va">Virtual address to write the data into</param>
|
||||||
|
/// <param name="data">Data to be written</param>
|
||||||
|
/// <exception cref="Ryujinx.Memory.InvalidMemoryRegionException">Throw for unhandled invalid or unmapped memory accesses</exception>
|
||||||
|
protected abstract void Write(ulong va, ReadOnlySequence<byte> data);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Writes data to CPU mapped memory, with write tracking.
|
/// Writes data to CPU mapped memory, with write tracking.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@@ -60,7 +60,7 @@ namespace Ryujinx.HLE.HOS.Services.Fatal
|
|||||||
errorReport.AppendLine($"\tResultCode: {((int)resultCode & 0x1FF) + 2000}-{((int)resultCode >> 9) & 0x3FFF:d4}");
|
errorReport.AppendLine($"\tResultCode: {((int)resultCode & 0x1FF) + 2000}-{((int)resultCode >> 9) & 0x3FFF:d4}");
|
||||||
errorReport.AppendLine($"\tFatalPolicy: {fatalPolicy}");
|
errorReport.AppendLine($"\tFatalPolicy: {fatalPolicy}");
|
||||||
|
|
||||||
if (cpuContext != null)
|
if (!cpuContext.IsEmpty)
|
||||||
{
|
{
|
||||||
errorReport.AppendLine("CPU Context:");
|
errorReport.AppendLine("CPU Context:");
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user