From c4245b0dd3e6c908872f4eb560f3b45ed8089691 Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Tue, 24 Oct 2023 13:23:41 +1100 Subject: [PATCH] remove duplicate EGL_ALPHA_SIZE on Windows --- windows/polyvox_filament_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/polyvox_filament_plugin.cpp b/windows/polyvox_filament_plugin.cpp index 0c931997..dfe1a0bb 100644 --- a/windows/polyvox_filament_plugin.cpp +++ b/windows/polyvox_filament_plugin.cpp @@ -260,7 +260,7 @@ bool PolyvoxFilamentPlugin::CreateSharedEGLContext() { EGLint configAttribs[] = { EGL_RED_SIZE, 8, EGL_GREEN_SIZE, 8, EGL_BLUE_SIZE, 8, - EGL_ALPHA_SIZE, 8, EGL_DEPTH_SIZE, 24, EGL_STENCIL_SIZE, 8, EGL_ALPHA_SIZE, 8, + EGL_DEPTH_SIZE, 24, EGL_STENCIL_SIZE, 8, EGL_ALPHA_SIZE, 8, EGL_NONE };