gg: fix top left corner pixel not being drawn (#11202)

pull/11200/head
Benjamin Stigsen 2021-08-16 03:59:05 +02:00 committed by GitHub
parent ea4f6fd48f
commit 022503a107
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 + 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()
}