1#pragma once
2
3#ifdef TI_WITH_GLFW
4#include "GLFW/glfw3.h"
5#endif // TI_WITH_GLFW
6
7namespace taichi::lang::window_system {
8
9bool glfw_context_acquire();
10void glfw_context_release();
11
12} // namespace taichi::lang::window_system
13