1 /*
2  * This program is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU General Public License
4  * as published by the Free Software Foundation; either version 2
5  * of the License, or (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software Foundation,
14  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15  *
16  * The Original Code is Copyright (C) 2013 Blender Foundation.
17  * All rights reserved.
18  */
19 
20 #include <stdlib.h>
21 
22 #include "BLI_utildefines.h"
23 #include "IMB_imbuf.h"
24 
25 struct ColorSpace;
26 struct ImBuf;
27 
IMB_freeImBuf(struct ImBuf * UNUSED (ibuf))28 void IMB_freeImBuf(struct ImBuf *UNUSED(ibuf))
29 {
30 }
IMB_colormanagement_display_to_scene_linear_v3(float UNUSED (pixel[3]),struct ColorManagedDisplay * UNUSED (display))31 void IMB_colormanagement_display_to_scene_linear_v3(float UNUSED(pixel[3]),
32                                                     struct ColorManagedDisplay *UNUSED(display))
33 {
34 }
35 
IMB_colormanagement_space_is_scene_linear(struct ColorSpace * colorspace)36 bool IMB_colormanagement_space_is_scene_linear(struct ColorSpace *colorspace)
37 {
38   return false;
39 }
40 
IMB_colormanagement_space_is_data(struct ColorSpace * colorspace)41 bool IMB_colormanagement_space_is_data(struct ColorSpace *colorspace)
42 {
43   return false;
44 }
45 
BKE_material_defaults_free_gpu(void)46 void BKE_material_defaults_free_gpu(void)
47 {
48 }
49 
50 /* Variables. */
51 int G;
52 
53 /* Functions which aren't called. */
54 void *BKE_image_free_buffers = NULL;
55 void *BKE_image_get_tile = NULL;
56 void *BKE_image_get_tile_from_iuser = NULL;
57 void *BKE_tempdir_session = NULL;
58 void *DRW_deferred_shader_remove = NULL;
59 void *datatoc_common_view_lib_glsl = NULL;
60 void *ntreeFreeLocalTree = NULL;
61 void *ntreeGPUMaterialNodes = NULL;
62 void *ntreeLocalize = NULL;
63