From 5c98c0760b0dc798fc7f9d0a71ae5191fb2d2eab Mon Sep 17 00:00:00 2001 From: JalonSolov Date: Mon, 17 Aug 2020 17:34:51 -0400 Subject: [PATCH] gg: use OpenGL on Windows until D3D issues resolved (#6155) --- vlib/sokol/c/declaration.c.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vlib/sokol/c/declaration.c.v b/vlib/sokol/c/declaration.c.v index 9b5143670a..2e99c2459f 100644 --- a/vlib/sokol/c/declaration.c.v +++ b/vlib/sokol/c/declaration.c.v @@ -21,7 +21,8 @@ pub const ( //#flag darwin -framework OpenGL -framework Cocoa -framework QuartzCore // D3D -#flag windows -DSOKOL_D3D11 +#flag windows -DSOKOL_GLCORE33 +//#flag windows -DSOKOL_D3D11 // for simplicity, all header includes are here because import order matters and we dont have any way // to ensure import order with V yet