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.c.v

18 lines
363 B
V

module gfx
pub fn create_clear_pass(r f32, g f32, b f32, a f32) PassAction {
mut color_action := ColorAttachmentAction{
action: unsafe { Action(C.SG_ACTION_CLEAR) }
value: Color{
r: r
g: g
b: b
a: a
}
}
// color_action.set_color_values(r, g, b, a)
mut pass_action := PassAction{}
pass_action.colors[0] = color_action
return pass_action
}