tornavis/source/blender/gpu/GPU_init_exit.h

23 lines
318 B
C

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2013 Blender Foundation. All rights reserved. */
/** \file
* \ingroup gpu
*/
#pragma once
#include "BLI_utildefines.h"
#ifdef __cplusplus
extern "C" {
#endif
void GPU_init(void);
void GPU_exit(void);
bool GPU_is_init(void);
#ifdef __cplusplus
}
#endif