This also moves the option to be a per editor space setting so you can have different cache visualization options in different editor spaces at the same time. A quick toggle for the cache visualization is now available in the overlays popover. Pull Request: https://projects.blender.org/blender/blender/pulls/119428
21 lines
456 B
C++
21 lines
456 B
C++
/* SPDX-FileCopyrightText: 2004 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup sequencer
|
|
*/
|
|
|
|
struct bContext;
|
|
struct Scene;
|
|
|
|
void SEQ_prefetch_stop_all();
|
|
/**
|
|
* Use also to update scene and context changes
|
|
* This function should almost always be called by cache invalidation, not directly.
|
|
*/
|
|
void SEQ_prefetch_stop(Scene *scene);
|
|
bool SEQ_prefetch_need_redraw(const bContext *C, Scene *scene);
|