[Bf-blender-cvs] [060243a8ae] blender2.8: Edit Mode Engine: Remove unecessary matrix.

Clément Foucault noreply at git.blender.org
Mon Mar 20 15:29:23 CET 2017


Commit: 060243a8ae5644f35c85b0b9aef495f06ea3ecbe
Author: Clément Foucault
Date:   Mon Mar 20 14:59:58 2017 +0100
Branches: blender2.8
https://developer.blender.org/rB060243a8ae5644f35c85b0b9aef495f06ea3ecbe

Edit Mode Engine: Remove unecessary matrix.

===================================================================

M	source/blender/draw/modes/edit_mesh_mode.c

===================================================================

diff --git a/source/blender/draw/modes/edit_mesh_mode.c b/source/blender/draw/modes/edit_mesh_mode.c
index fee2a284d6..e1016c87c1 100644
--- a/source/blender/draw/modes/edit_mesh_mode.c
+++ b/source/blender/draw/modes/edit_mesh_mode.c
@@ -303,11 +303,10 @@ static void EDIT_MESH_cache_init(void)
 
 		/* we need a full screen pass to combine the result */
 		struct Batch *quad = DRW_cache_fullscreen_quad_get();
-		static float mat[4][4]; /* not even used but avoid crash */
 
 		psl->mix_occlude = DRW_pass_create("Mix Occluded Wires", DRW_STATE_WRITE_COLOR | DRW_STATE_BLEND);
 		DRWShadingGroup *mix_shgrp = DRW_shgroup_create(e_data.overlay_mix_sh, psl->mix_occlude);
-		DRW_shgroup_call_add(mix_shgrp, quad, mat);
+		DRW_shgroup_call_add(mix_shgrp, quad, NULL);
 		DRW_shgroup_uniform_float(mix_shgrp, "alpha", &backwire_opacity, 1);
 		DRW_shgroup_uniform_buffer(mix_shgrp, "wireColor", &txl->occlude_wire_color_tx, 0);
 		DRW_shgroup_uniform_buffer(mix_shgrp, "wireDepth", &txl->occlude_wire_depth_tx, 2);




More information about the Bf-blender-cvs mailing list