2020-01-16 20:45:47 +01:00
|
|
|
module gfx
|
|
|
|
|
2022-01-02 19:36:01 +01:00
|
|
|
pub fn create_clear_pass(r f32, g f32, b f32, a f32) PassAction {
|
|
|
|
mut color_action := ColorAttachmentAction{
|
2021-05-08 12:32:29 +02:00
|
|
|
action: Action(C.SG_ACTION_CLEAR)
|
2022-01-02 19:36:01 +01:00
|
|
|
value: Color{
|
2021-04-07 20:39:23 +02:00
|
|
|
r: r
|
|
|
|
g: g
|
|
|
|
b: b
|
|
|
|
a: a
|
|
|
|
}
|
2020-01-16 20:45:47 +01:00
|
|
|
}
|
2020-10-18 08:48:13 +02:00
|
|
|
// color_action.set_color_values(r, g, b, a)
|
2022-01-02 19:36:01 +01:00
|
|
|
mut pass_action := PassAction{}
|
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
|
|
|
}
|