1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/sokol/gfx/gfx_utils.v

16 lines
423 B
V
Raw Normal View History

2020-01-16 22:45:47 +03:00
module gfx
pub fn create_clear_pass(r f32, g f32, b f32, a f32) C.sg_pass_action {
mut color_action := C.sg_color_attachment_action{
action: gfx.Action(C.SG_ACTION_CLEAR)
2020-01-16 22:45:47 +03:00
}
// color_action.set_color_values(r, g, b, a)
color_action.val[0] = r
color_action.val[1] = g
color_action.val[2] = b
color_action.val[3] = a
2020-04-16 16:53:34 +03:00
mut pass_action := C.sg_pass_action{}
2020-01-16 22:45:47 +03:00
pass_action.colors[0] = color_action
return pass_action
}