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

sokol: update sokol_gfx.h to the LAST version, and fix example 06 (#13100)

This commit is contained in:
penguindark
2022-01-08 19:29:29 +01:00
committed by GitHub
parent 64c8fb061d
commit 22fce6a525
5 changed files with 311 additions and 52 deletions

View File

@@ -297,3 +297,10 @@ pub enum Action {
dontcare
_num
}
pub enum UniformLayout {
uniformlayout_default = 0 // value 0 reserved for default-init
uniformlayout_native // default: layout depends on currently active backend
uniformlayout_std140 // std140: memory layout according to std140
_num
}