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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-12-20 02:42:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-20 02:42:32 +0300
commit6ccef2aa7e010c1e5b6986a696dc27ef8826c6c2 (patch)
treee33bc3cbe63cbe8cb4bc8093ea469fb0189df63b /source
parentecfb7eab0ca7fd3264648713170d58c4ffa33e5d (diff)
Cleanup: use BLI_bitmap type
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/render/render_opengl.c2
1 files changed, 1 insertions, 1 deletions
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;