From 83ae6f6f433eb1c1db4c6d593ce1866117233d1f Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Mon, 9 Mar 2020 13:19:31 -0300 Subject: [PATCH] libobs-opengl: Rename gl-x11.c to gl-x11-glx.c This is in preparation for the future abstraction layer (gl-x11-*) and also to match the actual name of the windowing system. When running under X11, we can glue OpenGL through GLX or EGL, so the new file name matches that now. --- libobs-opengl/CMakeLists.txt | 2 +- libobs-opengl/{gl-x11.c => gl-x11-glx.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename libobs-opengl/{gl-x11.c => gl-x11-glx.c} (100%) diff --git a/libobs-opengl/CMakeLists.txt b/libobs-opengl/CMakeLists.txt index aa25d74ff..c4098c7e5 100644 --- a/libobs-opengl/CMakeLists.txt +++ b/libobs-opengl/CMakeLists.txt @@ -45,7 +45,7 @@ else() #This needs to change to be more specific to get ready for Wayland ${X11_XCB_LIBRARIES}) set(libobs-opengl_PLATFORM_SOURCES - gl-x11.c) + gl-x11-glx.c) endif() set(libobs-opengl_SOURCES diff --git a/libobs-opengl/gl-x11.c b/libobs-opengl/gl-x11-glx.c similarity index 100% rename from libobs-opengl/gl-x11.c rename to libobs-opengl/gl-x11-glx.c -- GitLab