0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

libobs: Add support for FreeBSD to gs_window

Enable the X11 specific members in the gs_window struct when on FreeBSD.
This commit is contained in:
Kris Moore 2015-05-01 22:05:00 +02:00 committed by fryshorts
parent d998c16724
commit 9c483aae10

View File

@ -426,7 +426,7 @@ struct gs_window {
void *hwnd;
#elif defined(__APPLE__)
__unsafe_unretained id view;
#elif defined(__linux__)
#elif defined(__linux__) || defined(__FreeBSD__)
/* I'm not sure how portable defining id to uint32_t is. */
uint32_t id;
void* display;