Fix T65319 Crash when selecting vertices in edit mode

This commit is contained in:
Clément Foucault 2019-05-31 00:28:03 +02:00
parent 846056de6b
commit fc336f973d
Notes: blender-bot 2023-02-14 02:22:15 +01:00
Referenced by issue #65319, Crash when selecting vertices in edit mode
Referenced by issue #65311, Crash when right click on buttons
1 changed files with 1 additions and 1 deletions

View File

@ -2580,7 +2580,7 @@ void DRW_draw_depth_loop_gpencil(struct Depsgraph *depsgraph,
/** See #DRW_shgroup_world_clip_planes_from_rv3d. */
static void draw_world_clip_planes_from_rv3d(GPUBatch *batch, const float world_clip_planes[6][4])
{
GPU_batch_uniform_4fv_array(batch, "clipPlanes", 6, world_clip_planes[0]);
GPU_batch_uniform_4fv_array(batch, "WorldClipPlanes", 6, world_clip_planes[0]);
}
/**