mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
9764c13d6d
The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage.The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage. This commit aims to address those issues.
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
// Copyright 2019 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <algorithm>
|
|
#include <cstddef>
|
|
#include <iterator>
|
|
|
|
#include "common/common_types.h"
|
|
#include "video_core/engines/maxwell_3d.h"
|
|
|
|
namespace VideoCommon::Dirty {
|
|
|
|
enum : u8 {
|
|
NullEntry = 0,
|
|
|
|
Descriptors,
|
|
|
|
RenderTargets,
|
|
RenderTargetControl,
|
|
ColorBuffer0,
|
|
ColorBuffer1,
|
|
ColorBuffer2,
|
|
ColorBuffer3,
|
|
ColorBuffer4,
|
|
ColorBuffer5,
|
|
ColorBuffer6,
|
|
ColorBuffer7,
|
|
ZetaBuffer,
|
|
|
|
LastCommonEntry,
|
|
};
|
|
|
|
template <typename Integer>
|
|
void FillBlock(Tegra::Engines::Maxwell3D::DirtyState::Table& table, std::size_t begin,
|
|
std::size_t num, Integer dirty_index) {
|
|
const auto it = std::begin(table) + begin;
|
|
std::fill(it, it + num, static_cast<u8>(dirty_index));
|
|
}
|
|
|
|
template <typename Integer1, typename Integer2>
|
|
void FillBlock(Tegra::Engines::Maxwell3D::DirtyState::Tables& tables, std::size_t begin,
|
|
std::size_t num, Integer1 index_a, Integer2 index_b) {
|
|
FillBlock(tables[0], begin, num, index_a);
|
|
FillBlock(tables[1], begin, num, index_b);
|
|
}
|
|
|
|
void SetupDirtyRenderTargets(Tegra::Engines::Maxwell3D::DirtyState::Tables& tables);
|
|
|
|
} // namespace VideoCommon::Dirty
|