Object Mode: Draw object center after the floorgrid

This commit is contained in:
Clément Foucault 2018-09-14 18:31:54 +02:00
parent 1f1d5e1dd2
commit 424aeda112
1 changed files with 2 additions and 2 deletions

View File

@ -2926,8 +2926,6 @@ static void OBJECT_draw_scene(void *vedata)
DRW_draw_pass(psl->lightprobes);
}
DRW_draw_pass(psl->ob_center);
if (DRW_state_is_fbo()) {
if (e_data.draw_grid) {
GPU_framebuffer_bind(dfbl->color_only_fb);
@ -2984,6 +2982,8 @@ static void OBJECT_draw_scene(void *vedata)
BLI_ghash_free(stl->g_data->sgl_ghost.image_plane_map, NULL, MEM_freeN);
stl->g_data->sgl_ghost.image_plane_map = NULL;
}
DRW_draw_pass(psl->ob_center);
}
static const DrawEngineDataSize OBJECT_data_size = DRW_VIEWPORT_DATA_SIZE(OBJECT_Data);