/* SPDX-License-Identifier: MIT *//* The authors below grant copyright rights under the MIT license:
* Copyright (c) 2019-2023 Nick Klingensmith
* Copyright (c) 2023 Qualcomm Technologies, Inc.
*/#pragma once
#include"_platform.h"#ifdefined(SK_OS_LINUX)
namespace sk {boollinux_get_cursor(vec2 &out_pos);floatlinux_get_scroll();voidlinux_set_cursor(vec2 window_pos);}// namespace sk
#endif// defined(SK_OS_LINUX)