2020-01-16 20:45:47 +01:00
|
|
|
module gfx
|
|
|
|
|
|
|
|
pub fn create_clear_pass(r, g, b, a f32) C.sg_pass_action {
|
2020-04-16 15:53:34 +02:00
|
|
|
mut color_action := C.sg_color_attachment_action {
|
2020-01-16 20:45:47 +01:00
|
|
|
action: C.SG_ACTION_CLEAR
|
|
|
|
}
|
|
|
|
color_action.set_color_values(r, g, b, a)
|
|
|
|
|
2020-04-16 15:53:34 +02:00
|
|
|
mut pass_action := C.sg_pass_action{}
|
2020-01-16 20:45:47 +01:00
|
|
|
pass_action.colors[0] = color_action
|
|
|
|
return pass_action
|
2020-01-22 21:34:38 +01:00
|
|
|
}
|