Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/intern/tiff.c
| Show First 20 Lines • Show All 77 Lines • ▼ Show 20 Lines | |||||
| #define IMB_TIFF_GET_MEMFILE(x) ((ImbTIFFMemFile *)(x)) | #define IMB_TIFF_GET_MEMFILE(x) ((ImbTIFFMemFile *)(x)) | ||||
| /***************************** | /***************************** | ||||
| * Function implementations. * | * Function implementations. * | ||||
| *****************************/ | *****************************/ | ||||
| static void imb_tiff_DummyUnmapProc(thandle_t fd, tdata_t base, toff_t size) | static void imb_tiff_DummyUnmapProc(thandle_t fd, tdata_t base, toff_t size) | ||||
| { | { | ||||
| /* Mute readability-non-const-parameter warning from clang-tidy. */ | |||||
| size = size; | |||||
| (void)fd; | (void)fd; | ||||
| (void)base; | (void)base; | ||||
| (void)size; | (void)size; | ||||
| } | } | ||||
| static int imb_tiff_DummyMapProc(thandle_t fd, tdata_t *pbase, toff_t *psize) | static int imb_tiff_DummyMapProc(thandle_t fd, tdata_t *pbase, toff_t *psize) | ||||
| { | { | ||||
| /* Mute readability-non-const-parameter warning from clang-tidy. */ | |||||
| psize = psize; | |||||
| (void)fd; | (void)fd; | ||||
| (void)pbase; | (void)pbase; | ||||
| (void)psize; | (void)psize; | ||||
| return (0); | return (0); | ||||
| } | } | ||||
| /** | /** | ||||
| ▲ Show 20 Lines • Show All 850 Lines • Show Last 20 Lines | |||||