Blender V5.0
BLI_time.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved.
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9
10#pragma once
11
16extern double BLI_time_now_seconds(void);
17
19extern long int BLI_time_now_seconds_i(void);
20
25void BLI_time_sleep_ms(int ms);
26
33void BLI_time_sleep_precise_us(int us);
void BLI_time_sleep_ms(int ms)
Definition time.cc:133
double BLI_time_now_seconds(void)
Definition time.cc:113
void BLI_time_sleep_precise_us(int us)
Definition time.cc:143
long int BLI_time_now_seconds_i(void)
Definition time.cc:123