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

@@ -6,6 +6,7 @@
#pragma once
#include "reshade_api_resource.hpp"
#include <cstddef>
namespace reshade { namespace api
{
@@ -83,6 +84,14 @@ namespace reshade { namespace api
/// </summary>
sampler_with_resource_view = 1,
/// <summary>
/// Descriptors are either of type <see cref="buffer_shader_resource_view"/> or <see cref="texture_shader_resource_view"/>.
/// </summary>
shader_resource_view = 2,
/// <summary>
/// Descriptors are either of type <see cref="buffer_unordered_access_view"/> or <see cref="texture_unordered_access_view"/>.
/// </summary>
unordered_access_view = 3,
/// <summary>
/// Descriptors are an array of <see cref="resource_view"/>.
/// </summary>
buffer_shader_resource_view = 4,
@@ -93,19 +102,11 @@ namespace reshade { namespace api
/// <summary>
/// Descriptors are an array of <see cref="resource_view"/>.
/// </summary>
texture_shader_resource_view = 2,
texture_shader_resource_view = shader_resource_view,
/// <summary>
/// Descriptors are an array of <see cref="resource_view"/>.
/// </summary>
texture_unordered_access_view = 3,
/// <summary>
/// Descriptors are either of type <see cref="buffer_shader_resource_view"/> or <see cref="texture_shader_resource_view"/>.
/// </summary>
shader_resource_view = texture_shader_resource_view,
/// <summary>
/// Descriptors are either of type <see cref="buffer_unordered_access_view"/> or <see cref="texture_unordered_access_view"/>.
/// </summary>
unordered_access_view = texture_unordered_access_view,
texture_unordered_access_view = unordered_access_view,
/// <summary>
/// Descriptors are an array of <see cref="buffer_range"/>.
/// </summary>
@@ -117,7 +118,7 @@ namespace reshade { namespace api
/// <summary>
/// Descriptors are an array of <see cref="resource_view"/>.
/// </summary>
acceleration_structure = 8
acceleration_structure = 10
};
/// <summary>