[Bf-blender-cvs] [6ccef2aa7e0] master: Cleanup: use BLI_bitmap type

Campbell Barton noreply at git.blender.org
Fri Dec 20 00:48:16 CET 2019


Commit: 6ccef2aa7e010c1e5b6986a696dc27ef8826c6c2
Author: Campbell Barton
Date:   Fri Dec 20 10:42:32 2019 +1100
Branches: master
https://developer.blender.org/rB6ccef2aa7e010c1e5b6986a696dc27ef8826c6c2

Cleanup: use BLI_bitmap type

===================================================================

M	source/blender/editors/render/render_opengl.c

===================================================================

diff --git a/source/blender/editors/render/render_opengl.c b/source/blender/editors/render/render_opengl.c
index c7a93e371fb..9a1eef348f9 100644
--- a/source/blender/editors/render/render_opengl.c
+++ b/source/blender/editors/render/render_opengl.c
@@ -130,7 +130,7 @@ typedef struct OGLRender {
   int totvideos;
 
   /* For only rendering frames that have a key in animation data. */
-  unsigned int *render_frames; /* BLI_bitmap */
+  BLI_bitmap *render_frames;
 
   /* quick lookup */
   int view_id;



More information about the Bf-blender-cvs mailing list