File tree Expand file tree Collapse file tree 7 files changed +14
-10
lines changed
Expand file tree Collapse file tree 7 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 11# SPDX-License-Identifier: MIT
22# -----------------------------------------------------------------------------
3- # Copyright (c) 2024 Arm Limited
3+ # Copyright (c) 2024-2025 Arm Limited
44#
55# Permission is hereby granted, free of charge, to any person obtaining a copy
66# of this software and associated documentation files (the "Software"), to
2424cmake_minimum_required (VERSION 3.19)
2525
2626set (CMAKE_CXX_STANDARD 20)
27+ set (CMAKE_CXX_STANDARD_REQUIRES ON )
2728
2829project (libGPULayers_UnitTests VERSION 1.0.0)
2930
Original file line number Diff line number Diff line change 11# SPDX-License-Identifier: MIT
22# -----------------------------------------------------------------------------
3- # Copyright (c) 2024 Arm Limited
3+ # Copyright (c) 2024-2025 Arm Limited
44#
55# Permission is hereby granted, free of charge, to any person obtaining a copy
66# of this software and associated documentation files (the "Software"), to
2424cmake_minimum_required(VERSION 3.19)
2525
2626set(CMAKE_CXX_STANDARD 20)
27+ set(CMAKE_CXX_STANDARD_REQUIRES ON)
2728
2829project({PROJECT_NAME} VERSION 1.0.0)
2930
Original file line number Diff line number Diff line change 11# SPDX-License-Identifier: MIT
22# -----------------------------------------------------------------------------
3- # Copyright (c) 2024 Arm Limited
3+ # Copyright (c) 2024-2025 Arm Limited
44#
55# Permission is hereby granted, free of charge, to any person obtaining a copy
66# of this software and associated documentation files (the "Software"), to
2424cmake_minimum_required (VERSION 3.19)
2525
2626set (CMAKE_CXX_STANDARD 20)
27+ set (CMAKE_CXX_STANDARD_REQUIRES ON )
2728
2829project (VkLayerExample VERSION 1.0.0)
2930
Original file line number Diff line number Diff line change 2424cmake_minimum_required (VERSION 3.19)
2525
2626set (CMAKE_CXX_STANDARD 20)
27+ set (CMAKE_CXX_STANDARD_REQUIRES ON )
2728
2829project (VkLayerGPUSupport VERSION 1.0.0)
2930
Original file line number Diff line number Diff line change 11# SPDX-License-Identifier: MIT
22# -----------------------------------------------------------------------------
3- # Copyright (c) 2024 Arm Limited
3+ # Copyright (c) 2024-2025 Arm Limited
44#
55# Permission is hereby granted, free of charge, to any person obtaining a copy
66# of this software and associated documentation files (the "Software"), to
2424cmake_minimum_required (VERSION 3.19)
2525
2626set (CMAKE_CXX_STANDARD 20)
27+ set (CMAKE_CXX_STANDARD_REQUIRES ON )
2728
2829project (VkLayerGPUTimeline VERSION 1.0.0)
2930
Original file line number Diff line number Diff line change 11/*
22 * SPDX-License-Identifier: MIT
33 * ----------------------------------------------------------------------------
4- * Copyright (c) 2024 Arm Limited
4+ * Copyright (c) 2024-2025 Arm Limited
55 *
66 * Permission is hereby granted, free of charge, to any person obtaining a copy
77 * of this software and associated documentation files (the "Software"), to
3434#include < iostream>
3535
3636#include < arpa/inet.h>
37+ #include < sys/select.h>
3738#include < sys/socket.h>
3839#include < sys/un.h>
3940#include < unistd.h>
Original file line number Diff line number Diff line change 11/*
22 * SPDX-License-Identifier: MIT
33 * ----------------------------------------------------------------------------
4- * Copyright (c) 2022-2024 Arm Limited
4+ * Copyright (c) 2022-2025 Arm Limited
55 *
66 * Permission is hereby granted, free of charge, to any person obtaining a copy
77 * of this software and associated documentation files (the "Software"), to
@@ -35,8 +35,7 @@ namespace Tracker
3535/* See header for documentation. */
3636CommandBuffer::CommandBuffer (VkCommandBuffer _handle)
3737 : handle(_handle) {
38-
39- };
38+ }
4039
4140/* See header for documentation. */
4241void CommandBuffer::reset ()
@@ -233,8 +232,7 @@ void CommandBuffer::executeCommands(CommandBuffer& secondary)
233232/* See header for documentation. */
234233CommandPool::CommandPool (VkCommandPool _handle)
235234 : handle(_handle) {
236-
237- };
235+ }
238236
239237/* See header for documentation. */
240238CommandBuffer& CommandPool::allocateCommandBuffer (VkCommandBuffer commandBuffer)
You can’t perform that action at this time.
0 commit comments