Reshade dependency update

This commit is contained in:
2025-12-31 14:27:34 +01:00
parent f2e1c64880
commit 6479bef5e0
8 changed files with 248 additions and 119 deletions

View File

@@ -197,6 +197,11 @@ namespace reshade { namespace api
/// </summary>
dynamic = (1 << 3),
/// <summary>
/// Immutable resources can never be written to again after creationn, either by the CPU or the GPU.
/// The flag is only supported in D3D10 and D3D11.
/// </summary>
immutable = (1 << 4),
/// <summary>
/// Required to create <see cref="resource_view_type::texture_cube"/> or <see cref="resource_view_type::texture_cube_array"/> views of the resource.
/// </summary>
cube_compatible = (1 << 2),