Cleanup: Metal: Silence sometimes-uninitialized warning

Warning message:
`warning: variable 'pos' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized]`

Pull Request: https://projects.blender.org/blender/blender/pulls/114360
This commit is contained in:
Habib Gahbiche 2023-11-01 16:12:30 +01:00 committed by Habib Gahbiche
parent 6bb238c761
commit f54ed1c639
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ vec2 do_tria()
int vidx = gl_VertexID % 4;
bool tria2 = gl_VertexID > 7;
vec2 pos;
vec2 pos = vec2(0.0);
float size = (tria2) ? -tria2Size : tria1Size;
vec2 center = (tria2) ? tria2Center : tria1Center;