Try fixing filling arbitrary polygons
This commit is contained in:
parent
bc9f4afe76
commit
f13f69b1ed
|
@ -529,7 +529,7 @@ namespace BizHawk.Bizware.Graphics
|
||||||
var vectorPoints = Array.ConvertAll(points, static p => p.ToVector());
|
var vectorPoints = Array.ConvertAll(points, static p => p.ToVector());
|
||||||
fixed (Vector2* p = vectorPoints)
|
fixed (Vector2* p = vectorPoints)
|
||||||
{
|
{
|
||||||
_imGuiDrawList.AddConvexPolyFilled(
|
_imGuiDrawList.AddConcavePolyFilled(
|
||||||
points: ref *p,
|
points: ref *p,
|
||||||
num_points: vectorPoints.Length,
|
num_points: vectorPoints.Length,
|
||||||
col: (uint)color.ToArgb());
|
col: (uint)color.ToArgb());
|
||||||
|
|
Loading…
Reference in New Issue