mirror of
https://gitee.com/openharmony/third_party_vulkan-headers
synced 2024-11-26 17:30:41 +00:00
35e74be546
Signed-off-by: andrew0229 <zhangzhao62@huawei.com> Change-Id: Iea9dae9f174999d70e16290430669ed16181a54d
15 lines
241 B
C
15 lines
241 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_icd.h"
|
|
|
|
int square(int i)
|
|
{
|
|
return i * i;
|
|
}
|