Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/utils/pipeline_layout.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ namespace renodx::utils::pipeline_layout {
struct PipelineLayoutData {
std::vector<reshade::api::pipeline_layout_param> params;
std::vector<std::vector<reshade::api::descriptor_range>> ranges;
[[deprecated("Use renodx::utils::state descriptor-table tracking instead.")]]
std::vector<reshade::api::descriptor_table> tables;
reshade::api::pipeline_layout layout = {0u};
reshade::api::pipeline_layout replacement_layout = {0u};
reshade::api::pipeline_layout injection_layout = {0u};
Expand Down
2 changes: 0 additions & 2 deletions src/utils/state.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ struct CommandListState {
std::vector<reshade::api::descriptor_table> graphics_descriptor_tables;
reshade::api::pipeline_layout compute_pipeline_layout = {0};
std::vector<reshade::api::descriptor_table> compute_descriptor_tables;
[[deprecated("Use graphics_pipeline_layout/graphics_descriptor_tables or compute_pipeline_layout/compute_descriptor_tables instead.")]]
std::unordered_map<reshade::api::shader_stage, std::pair<reshade::api::pipeline_layout, std::vector<reshade::api::descriptor_table>>> descriptor_tables;

void Apply(reshade::api::command_list* cmd_list) const {
if (!render_targets.empty() || depth_stencil != 0) {
Expand Down
Loading