Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/test/multitest/stubs.c
| Show All 13 Lines | |||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| * | * | ||||
| * The Original Code is Copyright (C) 2013 Blender Foundation. | * The Original Code is Copyright (C) 2013 Blender Foundation. | ||||
| * All rights reserved. | * All rights reserved. | ||||
| */ | */ | ||||
| #include <stdlib.h> | #include <stdlib.h> | ||||
| #include "BLI_utildefines.h" | |||||
| #include "IMB_imbuf.h" | |||||
| struct ColorSpace; | struct ColorSpace; | ||||
| struct ImBuf; | struct ColorManagedDisplay; | ||||
| void IMB_freeImBuf(struct ImBuf *UNUSED(ibuf)) | |||||
| { | |||||
| } | |||||
| void IMB_colormanagement_display_to_scene_linear_v3(float UNUSED(pixel[3]), | void IMB_colormanagement_display_to_scene_linear_v3(float UNUSED(pixel[3]), | ||||
| struct ColorManagedDisplay *UNUSED(display)) | struct ColorManagedDisplay *UNUSED(display)) | ||||
| { | { | ||||
| } | } | ||||
| bool IMB_colormanagement_space_is_scene_linear(struct ColorSpace *colorspace) | bool IMB_colormanagement_space_is_scene_linear(struct ColorSpace *colorspace) | ||||
| { | { | ||||
| return false; | return false; | ||||
| Show All 24 Lines | |||||