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

sokol: add missing C prefixes

This commit is contained in:
Alexey
2020-04-16 16:53:34 +03:00
committed by GitHub
parent 714ff50322
commit 54226e74cf
5 changed files with 39 additions and 39 deletions

View File

@ -1,12 +1,12 @@
module gfx
pub fn create_clear_pass(r, g, b, a f32) C.sg_pass_action {
mut color_action := sg_color_attachment_action {
mut color_action := C.sg_color_attachment_action {
action: C.SG_ACTION_CLEAR
}
color_action.set_color_values(r, g, b, a)
mut pass_action := sg_pass_action{}
mut pass_action := C.sg_pass_action{}
pass_action.colors[0] = color_action
return pass_action
}