Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/space_sequencer/space_sequencer.c
| Show First 20 Lines • Show All 226 Lines • ▼ Show 20 Lines | if (scopes->vector_ibuf) { | ||||
| IMB_freeImBuf(scopes->vector_ibuf); | IMB_freeImBuf(scopes->vector_ibuf); | ||||
| } | } | ||||
| if (scopes->histogram_ibuf) { | if (scopes->histogram_ibuf) { | ||||
| IMB_freeImBuf(scopes->histogram_ibuf); | IMB_freeImBuf(scopes->histogram_ibuf); | ||||
| } | } | ||||
| if (sseq->runtime.last_displayed_thumbnails) { | if (sseq->runtime.last_displayed_thumbnails) { | ||||
| BLI_ghash_free( | BLI_ghash_free(sseq->runtime.last_displayed_thumbnails, NULL, thumbnail_runtime_cache_free); | ||||
| sseq->runtime.last_displayed_thumbnails, NULL, last_displayed_thumbnails_list_free); | |||||
| sseq->runtime.last_displayed_thumbnails = NULL; | sseq->runtime.last_displayed_thumbnails = NULL; | ||||
| } | } | ||||
| } | } | ||||
| /* Spacetype init callback. */ | /* Spacetype init callback. */ | ||||
| static void sequencer_init(struct wmWindowManager *UNUSED(wm), ScrArea *UNUSED(area)) | static void sequencer_init(struct wmWindowManager *UNUSED(wm), ScrArea *UNUSED(area)) | ||||
| { | { | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 814 Lines • Show Last 20 Lines | |||||