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 <ideasman42@gmail.com>2018-03-31 14:09:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-03-31 14:11:38 +0300
commit0ef38879b3adc200f65b24ab11e1134c6eeec161 (patch)
treebfa8220d514ccd55f332451039687de29d08fc31 /source/blender/editors/space_file/file_draw.c
parent8b74741b9e1b8ac2cead829a3ca2621bb5950865 (diff)
Cleanup: BLF batch drawing naming
- batching -> batch_draw. - ct & size -> len. - start/end -> begin/end (follow GL convention).
Diffstat (limited to 'source/blender/editors/space_file/file_draw.c')
-rw-r--r--source/blender/editors/space_file/file_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c
index 35e1558ef94..fb0ff23a57f 100644
--- a/source/blender/editors/space_file/file_draw.c
+++ b/source/blender/editors/space_file/file_draw.c
@@ -609,7 +609,7 @@ void file_draw_list(const bContext *C, ARegion *ar)
}
}
- BLF_batching_start();
+ BLF_batch_draw_begin();
for (i = offset; (i < numfiles) && (i < offset + numfiles_layout); i++) {
unsigned int file_selflag;
@@ -740,7 +740,7 @@ void file_draw_list(const bContext *C, ARegion *ar)
}
}
- BLF_batching_end();
+ BLF_batch_draw_end();
UI_block_end(C, block);
UI_block_draw(C, block);