mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
gg: fix top left corner pixel not being drawn (#11202)
This commit is contained in:
parent
ea4f6fd48f
commit
022503a107
@ -290,7 +290,7 @@ pub fn (ctx &Context) draw_empty_rect(x f32, y f32, w f32, h f32, c gx.Color) {
|
|||||||
sgl.v2f((x + w) * ctx.scale, y * ctx.scale)
|
sgl.v2f((x + w) * ctx.scale, y * ctx.scale)
|
||||||
sgl.v2f((x + w) * ctx.scale, (y + h) * ctx.scale)
|
sgl.v2f((x + w) * ctx.scale, (y + h) * ctx.scale)
|
||||||
sgl.v2f(x * ctx.scale, (y + h) * ctx.scale)
|
sgl.v2f(x * ctx.scale, (y + h) * ctx.scale)
|
||||||
sgl.v2f(x * ctx.scale, y * ctx.scale)
|
sgl.v2f(x * ctx.scale, (y-1) * ctx.scale)
|
||||||
sgl.end()
|
sgl.end()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user