vk_state_tracker: Implement dirty flags for depth bias

This commit is contained in:
ReinUsesLisp 2020-02-21 00:28:45 -03:00
parent 42f1874965
commit a33870996b
3 changed files with 17 additions and 0 deletions

View file

@ -1015,6 +1015,9 @@ void RasterizerVulkan::UpdateScissorsState(Tegra::Engines::Maxwell3D& gpu) {
}
void RasterizerVulkan::UpdateDepthBias(Tegra::Engines::Maxwell3D& gpu) {
if (!state_tracker.TouchDepthBias()) {
return;
}
const auto& regs = gpu.regs;
scheduler.Record([constant = regs.polygon_offset_units, clamp = regs.polygon_offset_clamp,
factor = regs.polygon_offset_factor](auto cmdbuf, auto& dld) {

View file

@ -30,6 +30,7 @@ Flags MakeInvalidationFlags() {
Flags flags{};
flags[Viewports] = true;
flags[Scissors] = true;
flags[DepthBias] = true;
return flags;
}
@ -76,6 +77,13 @@ void SetupDirtyScissors(Tables& tables) {
FillBlock(tables[0], OFF(scissor_test), NUM(scissor_test), Scissors);
}
void SetupDirtyDepthBias(Tables& tables) {
auto& table = tables[0];
table[OFF(polygon_offset_units)] = DepthBias;
table[OFF(polygon_offset_clamp)] = DepthBias;
table[OFF(polygon_offset_factor)] = DepthBias;
}
} // Anonymous namespace
StateTracker::StateTracker(Core::System& system)
@ -87,6 +95,7 @@ void StateTracker::Initialize() {
SetupDirtyRenderTargets(tables);
SetupDirtyViewports(tables);
SetupDirtyScissors(tables);
SetupDirtyDepthBias(tables);
auto& store = dirty.on_write_stores;
store[RenderTargets] = true;

View file

@ -21,6 +21,7 @@ enum : u8 {
Viewports,
Scissors,
DepthBias,
};
} // namespace Dirty
@ -41,6 +42,10 @@ public:
return Exchange(Dirty::Scissors, false);
}
bool TouchDepthBias() {
return Exchange(Dirty::DepthBias, false);
}
private:
using Flags = std::remove_reference_t<decltype(Tegra::Engines::Maxwell3D::dirty.flags)>;