Cleanup: Knife Tool: Remove redundant 'view3d_operator_needs_opengl' calls

This function sets the `RegionView3D` matrices to the GPU.
But the OpenGL library is not actually being used by the operator.
This commit is contained in:
Germano Cavalcante 2021-01-25 10:07:36 -03:00
parent 4792d988fb
commit f226687bb9
1 changed files with 0 additions and 3 deletions

View File

@ -2752,8 +2752,6 @@ static int knifetool_invoke(bContext *C, wmOperator *op, const wmEvent *event)
}
}
view3d_operator_needs_opengl(C);
/* alloc new customdata */
kcd = op->customdata = MEM_callocN(sizeof(KnifeTool_OpData), __func__);
@ -2831,7 +2829,6 @@ static int knifetool_modal(bContext *C, wmOperator *op, const wmEvent *event)
em_setup_viewcontext(C, &kcd->vc);
kcd->region = kcd->vc.region;
view3d_operator_needs_opengl(C);
ED_view3d_init_mats_rv3d(obedit, kcd->vc.rv3d); /* needed to initialize clipping */
if (kcd->mode == MODE_PANNING) {