refactor: Rename member variables to camelCase 3/n

Additionally enable clang-tidy check for member variables

Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
This commit is contained in:
Fabian Zwolinski
2023-04-28 09:38:31 +00:00
committed by Compute-Runtime-Automation
parent fd1ad7c1f0
commit cbce863dc2
111 changed files with 622 additions and 620 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2021 Intel Corporation
* Copyright (C) 2018-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -17,11 +17,11 @@ struct HeapInfo {
const void *pDsh = nullptr;
const void *pSsh = nullptr;
uint32_t KernelHeapSize = 0U;
uint32_t GeneralStateHeapSize = 0U;
uint32_t DynamicStateHeapSize = 0U;
uint32_t SurfaceStateHeapSize = 0U;
uint32_t KernelUnpaddedSize = 0U;
uint32_t kernelHeapSize = 0U;
uint32_t generalStateHeapSize = 0U;
uint32_t dynamicStateHeapSize = 0U;
uint32_t surfaceStateHeapSize = 0U;
uint32_t kernelUnpaddedSize = 0U;
};
} // namespace NEO