Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-09-12 04:20:22 +0300
committerCampbell Barton <campbell@blender.org>2022-09-12 04:20:22 +0300
commitc9a8380426462686e3281ed5ee504a4a8f553d6b (patch)
treed5aa24877f4e506388265043263e43e239d1a600
parentf884a34cae6323327b181ebaa217758cc938fd29 (diff)
Cleanup: remove unused ImBuf.next/prev pointers
-rw-r--r--source/blender/imbuf/IMB_imbuf_types.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/imbuf/IMB_imbuf_types.h b/source/blender/imbuf/IMB_imbuf_types.h
index 45d05e9b856..03bb11d0cf6 100644
--- a/source/blender/imbuf/IMB_imbuf_types.h
+++ b/source/blender/imbuf/IMB_imbuf_types.h
@@ -166,8 +166,6 @@ typedef enum eImBufFlags {
* \{ */
typedef struct ImBuf {
- struct ImBuf *next, *prev; /** < allow lists of #ImBufs, for caches or flip-books. */
-
/* dimensions */
/** Width and Height of our image buffer.
* Should be 'unsigned int' since most formats use this.