Files
test/source/blender/imbuf/intern/module.c
Jesse Yurkovich 38573d515e Cleanup: Remove unused IMB tile cache code
This removes the unused code for the IBM tile cache APIs.  These have
been unused for as far back as I could manage to search.

Since TIFF was used for the cached images, this removal will allow for
an easier review when it comes time to move TIFF to OIIO as part of
T101413.

Differential Revision: https://developer.blender.org/D16587
2022-11-23 19:31:10 -08:00

31 lines
508 B
C

/* 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(void)
{
imb_refcounter_lock_init();
imb_mmap_lock_init();
imb_filetypes_init();
colormanagement_init();
}
void IMB_exit(void)
{
imb_filetypes_exit();
colormanagement_exit();
imb_mmap_lock_exit();
imb_refcounter_lock_exit();
}