sokol: fix for example06 (#13101)

pull/13109/head
penguindark 2022-01-09 15:02:24 +01:00 committed by GitHub
parent 22fce6a525
commit 92fcb82ca3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -396,15 +396,15 @@ fn (mut obj_part ObjPart) load_materials() {
// vertex data struct
pub struct Vertex_pnct {
pub mut:
x f32 // poistion
y f32
z f32
nx f32 // normal
ny f32
nz f32
color u32 = 0xFFFFFFFF // color
u f32 // uv
v f32
x f32 // poistion
y f32
z f32
nx f32 // normal
ny f32
nz f32
// color u32 = 0xFFFFFFFF // color
u f32 // uv
v f32
// u u16 // for compatibility with D3D11
// v u16 // for compatibility with D3D11
}