2020-08-29 08:04:30 +00:00
|
|
|
From 1367a881c16592a486229ac024df2cf08fb43b7a Mon Sep 17 00:00:00 2001
|
2020-08-09 11:22:33 +00:00
|
|
|
From: Georges Basile Stavracas Neto <georges.stavracas@gmail.com>
|
|
|
|
Date: Mon, 9 Mar 2020 13:19:31 -0300
|
2020-08-23 10:56:49 +00:00
|
|
|
Subject: [PATCH 02/20] libobs-opengl: Rename gl-x11.c to gl-x11-glx.c
|
2020-08-09 11:22:33 +00:00
|
|
|
|
|
|
|
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 1d53d518..776f1330 100644
|
|
|
|
--- a/libobs-opengl/CMakeLists.txt
|
|
|
|
+++ b/libobs-opengl/CMakeLists.txt
|
|
|
|
@@ -49,7 +49,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
|
|
|
|
--
|
|
|
|
2.28.0
|
|
|
|
|