Fix typos in video_core

This commit is contained in:
Viktor Szépe
2024-01-07 22:44:55 +00:00
parent 1220309323
commit 53085a45e0
18 changed files with 52 additions and 52 deletions

View File

@ -269,7 +269,7 @@ void QueryCacheBase<Traits>::CounterReport(GPUVAddr addr, QueryType counter_type
ASSERT(false);
return;
}
query_base->value += streamer->GetAmmendValue();
query_base->value += streamer->GetAmendValue();
streamer->SetAccumulationValue(query_base->value);
if (True(query_base->flags & QueryFlagBits::HasTimestamp)) {
u64 timestamp = impl->gpu.GetTicks();

View File

@ -78,12 +78,12 @@ public:
return dependence_mask;
}
u64 GetAmmendValue() const {
return ammend_value;
u64 GetAmendValue() const {
return amend_value;
}
void SetAccumulationValue(u64 new_value) {
acumulation_value = new_value;
accumulation_value = new_value;
}
protected:
@ -95,8 +95,8 @@ protected:
const size_t id;
u64 dependence_mask;
u64 dependent_mask;
u64 ammend_value{};
u64 acumulation_value{};
u64 amend_value{};
u64 accumulation_value{};
};
template <typename QueryType>