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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
554 B
C++
Raw Normal View History

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
2002-10-12 11:37:38 +00:00
/** \file
* \ingroup imbuf
2011-02-27 20:23:21 +00:00
*/
#include <cstddef>
#include "BLI_utildefines.h"
2024-01-18 22:50:23 +02:00
#include "IMB_allocimbuf.hh"
#include "IMB_colormanagement_intern.hh"
#include "IMB_filetype.hh"
#include "IMB_imbuf.hh"
2002-10-12 11:37:38 +00:00
void IMB_init()
{
imb_refcounter_lock_init();
imb_mmap_lock_init();
imb_filetypes_init();
colormanagement_init();
}
2002-10-12 11:37:38 +00:00
void IMB_exit()
{
imb_filetypes_exit();
colormanagement_exit();
imb_mmap_lock_exit();
imb_refcounter_lock_exit();
}