From db59585a51b5ee1cfa1044d539fed5207051a3b4 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 31 Oct 2020 14:14:49 +0200 Subject: [PATCH] sokol.gfx: fix C.sg_depth_stencil_state compilation with tcc --- vlib/sokol/gfx/gfx_structs.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/sokol/gfx/gfx_structs.v b/vlib/sokol/gfx/gfx_structs.v index 75db39855c..8f032bb583 100644 --- a/vlib/sokol/gfx/gfx_structs.v +++ b/vlib/sokol/gfx/gfx_structs.v @@ -407,8 +407,8 @@ pub mut: } pub struct C.sg_depth_stencil_state { - stencil_front sg_stencil_state - stencil_back sg_stencil_state + stencil_front C.sg_stencil_state + stencil_back C.sg_stencil_state depth_compare_func CompareFunc depth_write_enabled bool stencil_enabled bool