Skip to content

Commit 752f20f

Browse files
JaroszPiotrigcbot
authored andcommitted
Update date in the copyright notice
Update date in the copyright notice
1 parent 894e8de commit 752f20f

File tree

13 files changed

+22
-15
lines changed

13 files changed

+22
-15
lines changed

IGC/AdaptorCommon/RayTracing/API/RayDispatchGlobalData.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2020-2024 Intel Corporation
3+
Copyright (C) 2020-2025 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66
@@ -198,6 +198,7 @@ struct RayDispatchGlobalData
198198
dispatchRaysDimensions[1] = umd.GetDispatchHeight();
199199
dispatchRaysDimensions[2] = umd.GetDispatchDepth();
200200
uberTilesMap = umd.GetUberTilesMap();
201+
201202
}
202203
};
203204

@@ -320,6 +321,7 @@ static_assert((sizeof(RayDispatchGlobalData::RT::Xe) - sizeof(RayDispatchGlobalD
320321
static_assert((sizeof(RayDispatchGlobalData::RT::Xe3) - sizeof(RayDispatchGlobalData::RayDispatchGlobalDataCommon)) % 64 == 0, "Unexpected GlobalData alignment");
321322

322323
static_assert(sizeof(RayDispatchGlobalData) == 192, "unexpected size?");
324+
323325
static_assert(sizeof(RayDispatchGlobalData::RT::Xe) == sizeof(RayDispatchGlobalData), "unexpected size?");
324326
static_assert(sizeof(RayDispatchGlobalData::RT::Xe3) == sizeof(RayDispatchGlobalData), "unexpected size?");
325327
static_assert(offsetof(RayDispatchGlobalData::RT::Xe, common) == offsetof(RayDispatchGlobalData::RT::Xe3, common), "unexpected size?");

IGC/AdaptorCommon/RayTracing/RTArgs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2020-2021 Intel Corporation
3+
Copyright (C) 2020-2025 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66

IGC/AdaptorCommon/RayTracing/RTBuilder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2019-2022 Intel Corporation
3+
Copyright (C) 2019-2025 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66

IGC/AdaptorCommon/RayTracing/RTBuilder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2019-2023 Intel Corporation
3+
Copyright (C) 2019-2025 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66

IGC/AdaptorCommon/RayTracing/RTStackFormat.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2019-2021 Intel Corporation
3+
Copyright (C) 2019-2025 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66
@@ -164,6 +164,7 @@ struct KSP
164164
static_assert(sizeof(KSP) == 8, "changed?");
165165

166166

167+
167168
struct NodeInfo
168169
{
169170
enum class Bits : uint8_t
@@ -328,7 +329,7 @@ struct MemRay<Xe>
328329
rayMask = 8,
329330

330331
ComparisonValue = 7,
331-
pad2 = 8,
332+
pad2 = 8,
332333
};
333334

334335
// 32 B
@@ -430,7 +431,8 @@ struct MemRay<Xe>
430431
struct {
431432
uint64_t instLeafPtr : (T)Bits::instLeafPtr; // the pointer to instance leaf in case we traverse an instance (64-bytes alignment)
432433
uint64_t rayMask : (T)Bits::rayMask; // ray mask used for ray masking
433-
uint64_t pad2 : (T)Bits::pad2;
434+
435+
uint64_t pad2 : (T)Bits::pad2;
434436
};
435437
};
436438
};

IGC/AdaptorCommon/RayTracing/RayTracingInterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2018-2021 Intel Corporation
3+
Copyright (C) 2018-2025 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66

IGC/AdaptorCommon/RayTracing/RayTracingPasses.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2017-2023 Intel Corporation
3+
Copyright (C) 2017-2025 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66

IGC/Compiler/CodeGenPublic.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2017-2023 Intel Corporation
3+
Copyright (C) 2017-2025 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66
@@ -569,6 +569,7 @@ namespace IGC
569569
// no need to compile it for collection state objects.
570570
std::optional<SBindlessProgram> callStackHandler;
571571

572+
572573
typedef llvm::SmallVector<SBindlessProgram, 8> BindlessShaderVec;
573574
// These are the raygen shaders
574575
BindlessShaderVec m_DispatchPrograms;

IGC/Compiler/InitializePasses.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2017-2024 Intel Corporation
3+
Copyright (C) 2017-2025 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66

IGC/DriverInterface/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#=========================== begin_copyright_notice ============================
22
#
3-
# Copyright (C) 2017-2021 Intel Corporation
3+
# Copyright (C) 2017-2025 Intel Corporation
44
#
55
# SPDX-License-Identifier: MIT
66
#

0 commit comments

Comments
 (0)