18 lines
		
	
	
		
			381 B
		
	
	
	
		
			V
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			381 B
		
	
	
	
		
			V
		
	
	
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)
 | 
						|
		value: C.sg_color {
 | 
						|
			r: r
 | 
						|
			g: g
 | 
						|
			b: b
 | 
						|
			a: a
 | 
						|
		}
 | 
						|
	}
 | 
						|
	// color_action.set_color_values(r, g, b, a)
 | 
						|
	mut pass_action := C.sg_pass_action{}
 | 
						|
	pass_action.colors[0] = color_action
 | 
						|
	return pass_action
 | 
						|
}
 |