Files
test2/source/blender/imbuf/intern/module.cc

33 lines
554 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Foundation
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup imbuf
*/
#include <stddef.h>
#include "BLI_utildefines.h"
#include "IMB_allocimbuf.h"
#include "IMB_colormanagement_intern.h"
#include "IMB_filetype.h"
#include "IMB_imbuf.h"
void IMB_init()
{
imb_refcounter_lock_init();
imb_mmap_lock_init();
imb_filetypes_init();
colormanagement_init();
}
void IMB_exit()
{
imb_filetypes_exit();
colormanagement_exit();
imb_mmap_lock_exit();
imb_refcounter_lock_exit();
}