refactor: remove not needed volatile

Related-To: NEO-10767
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2025-01-15 19:01:49 +00:00
committed by Compute-Runtime-Automation
parent 4cdd5671f7
commit 99a7b5a4fb
6 changed files with 17 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2021 Intel Corporation
* Copyright (C) 2018-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -19,7 +19,7 @@ struct MonitoredFence {
D3DKMT_HANDLE fenceHandle = 0;
D3DGPU_VIRTUAL_ADDRESS gpuAddress = 0;
volatile uint64_t *cpuAddress = nullptr;
volatile uint64_t currentFenceValue = 0;
uint64_t currentFenceValue = 0;
uint64_t lastSubmittedFence = 0;
};