mirror of
https://github.com/KhronosGroup/Vulkan-Headers.git
synced 2025-04-04 20:54:58 +00:00
14 lines
243 B
C
14 lines
243 B
C
/*
|
|
* Copyright 2022-2023 The Khronos Group Inc.
|
|
* Copyright 2022-2023 Valve Corporation
|
|
* Copyright 2022-2023 LunarG, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "vulkan/vk_layer.h"
|
|
|
|
int square(int i)
|
|
{
|
|
return i * i;
|
|
}
|