From 04a2ad67f499361edf68d3a8702799d39a935408 Mon Sep 17 00:00:00 2001 From: MonsterDruide1 <5958456@gmail.com> Date: Thu, 4 Dec 2025 23:39:05 +0100 Subject: [PATCH] common: Fix signature of `GPUMemAddrBase::invalidateCPUCache()` --- include/common/aglGPUMemAddr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/aglGPUMemAddr.h b/include/common/aglGPUMemAddr.h index a90637c..f365d04 100644 --- a/include/common/aglGPUMemAddr.h +++ b/include/common/aglGPUMemAddr.h @@ -23,7 +23,7 @@ class GPUMemAddrBase { void setByteOffsetByPtr(void* ptr); void roundUp(int addr); void flushCPUCache(u64); - void invalidateCPUCache(u64); + void invalidateCPUCache(u64) const; bool isValid() const { return mMemoryPool != nullptr; }