From 80e8f7f0fd0196430d9dd168f1cc591837afc046 Mon Sep 17 00:00:00 2001 From: Claudius Holeksa Date: Sun, 26 Feb 2023 12:57:43 +0100 Subject: [PATCH] binary file --- .gitignore | 2 +- driver/gl/gl_context_xcb.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 857509f..e879075 100644 --- a/.gitignore +++ b/.gitignore @@ -59,7 +59,7 @@ dkms.conf # binary files bin/ -result/ +result # test files assets/ # custom build tracking diff --git a/driver/gl/gl_context_xcb.cpp b/driver/gl/gl_context_xcb.cpp index 6dac1e2..08a0e90 100644 --- a/driver/gl/gl_context_xcb.cpp +++ b/driver/gl/gl_context_xcb.cpp @@ -91,8 +91,8 @@ own xcb_gl_context::create_window(const video_mode &video_mode, return nullptr; } - ::GLXWindow glx_window = glXCreatewindow(device->display, fb_config, - window->xcb_window, nullptr); + ::GLXWindow glx_window = glXCreateWindow(device->display, fb_config, + window->xcb_window_, nullptr); return heap(std::move(window), *this, glx_window); }