Apply CamelCase for class and struct names 2/2

Additionally change .clang-tidy not to ignore struct names.

Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
This commit is contained in:
Fabian Zwolinski
2023-04-24 17:17:08 +00:00
committed by Compute-Runtime-Automation
parent e48bb5ad6a
commit 2022592f3d
122 changed files with 636 additions and 630 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2021 Intel Corporation
* Copyright (C) 2018-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -14,12 +14,12 @@ using namespace NEO;
namespace ULT {
struct IntelMotionEstimationTest : public api_tests {
struct IntelMotionEstimationTest : public ApiTests {
public:
IntelMotionEstimationTest() {}
void SetUp() override {
api_tests::SetUp();
ApiTests::SetUp();
desc.mb_block_type = CL_ME_MB_TYPE_16x16_INTEL;
desc.subpixel_mode = CL_ME_SUBPIXEL_MODE_QPEL_INTEL;
@@ -28,7 +28,7 @@ struct IntelMotionEstimationTest : public api_tests {
}
void TearDown() override {
api_tests::TearDown();
ApiTests::TearDown();
}
protected: