binary file

dev
Claudius Holeksa 2023-02-26 12:57:43 +01:00
parent 0605ea1e3d
commit 80e8f7f0fd
2 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -59,7 +59,7 @@ dkms.conf
# binary files
bin/
result/
result
# test files
assets/
# custom build tracking

View File

@ -91,8 +91,8 @@ own<gl_window> 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<xcb_gl_window>(std::move(window), *this, glx_window);
}