mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
gg: add a color
field to gg.DrawImageConfig (#11158)
This commit is contained in:
parent
6dbc6f233b
commit
a8905e2788
@ -2,8 +2,8 @@
|
|||||||
// Use of this source code is governed by an MIT license that can be found in the LICENSE file.
|
// Use of this source code is governed by an MIT license that can be found in the LICENSE file.
|
||||||
module gg
|
module gg
|
||||||
|
|
||||||
// import gx
|
|
||||||
// import sokol.sapp
|
// import sokol.sapp
|
||||||
|
import gx
|
||||||
import sokol.gfx
|
import sokol.gfx
|
||||||
import os
|
import os
|
||||||
import sokol
|
import sokol
|
||||||
@ -37,6 +37,7 @@ pub:
|
|||||||
part_rect Rect // defines the size and position of part of the image to use when rendering
|
part_rect Rect // defines the size and position of part of the image to use when rendering
|
||||||
rotate int // amount to rotate the image in degrees
|
rotate int // amount to rotate the image in degrees
|
||||||
z f32
|
z f32
|
||||||
|
color gx.Color = gx.white
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Rect {
|
pub struct Rect {
|
||||||
@ -303,7 +304,7 @@ pub fn (ctx &Context) draw_image_with_config(config DrawImageConfig) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
sgl.begin_quads()
|
sgl.begin_quads()
|
||||||
sgl.c4b(255, 255, 255, 255)
|
sgl.c4b(config.color.r, config.color.g, config.color.b, config.color.a)
|
||||||
sgl.v3f_t2f(x0, y0, config.z, u0f, v0f)
|
sgl.v3f_t2f(x0, y0, config.z, u0f, v0f)
|
||||||
sgl.v3f_t2f(x1, y0, config.z, u1f, v0f)
|
sgl.v3f_t2f(x1, y0, config.z, u1f, v0f)
|
||||||
sgl.v3f_t2f(x1, y1, config.z, u1f, v1f)
|
sgl.v3f_t2f(x1, y1, config.z, u1f, v1f)
|
||||||
|
Loading…
Reference in New Issue
Block a user