[Bf-blender-cvs] [0f61b27e93f] master: DRW: Fix wrong use of GPU_blend

Clément Foucault noreply at git.blender.org
Mon Sep 14 01:10:31 CEST 2020


Commit: 0f61b27e93f1eedff4217b2dc8d11c774d4d0f6f
Author: Clément Foucault
Date:   Mon Sep 14 01:08:35 2020 +0200
Branches: master
https://developer.blender.org/rB0f61b27e93f1eedff4217b2dc8d11c774d4d0f6f

DRW: Fix wrong use of GPU_blend

Use the enum instead of a boolean. Exibit n°5512 where typecast
warning would have find the error.

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

M	source/blender/draw/intern/draw_view.c

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

diff --git a/source/blender/draw/intern/draw_view.c b/source/blender/draw/intern/draw_view.c
index 3033cf70b29..86f19c6cfd7 100644
--- a/source/blender/draw/intern/draw_view.c
+++ b/source/blender/draw/intern/draw_view.c
@@ -231,7 +231,7 @@ void DRW_draw_cursor_2d(void)
 
     /* Draw nice Anti Aliased cursor. */
     GPU_line_width(1.0f);
-    GPU_blend(true);
+    GPU_blend(GPU_BLEND_ALPHA);
     GPU_line_smooth(true);
 
     /* Draw lines */
@@ -248,7 +248,7 @@ void DRW_draw_cursor_2d(void)
 
     GPU_batch_draw(cursor_batch);
 
-    GPU_blend(false);
+    GPU_blend(GPU_BLEND_NONE);
     GPU_line_smooth(false);
     GPU_matrix_pop();
     GPU_matrix_projection_set(original_proj);



More information about the Bf-blender-cvs mailing list