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

all: ~500 more byte=>u8

This commit is contained in:
Alexander Medvednikov
2022-04-15 18:25:45 +03:00
parent ae6a25f44e
commit fbb9e65c0f
148 changed files with 544 additions and 494 deletions

View File

@ -527,9 +527,9 @@ struct C.sg_stencil_state {
enabled bool
front StencilFaceState
back StencilFaceState
read_mask byte
write_mask byte
ref byte
read_mask u8
write_mask u8
ref u8
}
pub type StencilState = C.sg_stencil_state
@ -594,7 +594,7 @@ pub type DepthAttachmentAction = C.sg_depth_attachment_action
struct C.sg_stencil_attachment_action {
pub mut:
action Action
value byte
value u8
}
pub type StencilAttachmentAction = C.sg_stencil_attachment_action