Skip to content

Commit 9303bbc

Browse files
authored
Merge pull request #144 from RandomPrototypes/compat_cpp17_cmake3.16
cpp 17 and cmake 3.16 compatibility
2 parents 7586bd5 + 8eb6a13 commit 9303bbc

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
cmake_minimum_required(VERSION 3.20)
1+
cmake_minimum_required(VERSION 3.16)
22
project(screen_capture_lite_build)
33

4-
set(CMAKE_CXX_STANDARD 20)
4+
set(CMAKE_CXX_STANDARD 17)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)
66
set(CMAKE_CXX_EXTENSIONS OFF)
77
option(BUILD_EXAMPLE "Build example" ON)

Example_OpenGL/Screen_Capture_Example_OpenGL.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include "ScreenCapture.h"
44
#include <GLFW/glfw3.h>
55
#include <iostream>
6+
#include <atomic>
67
using namespace std::chrono_literals;
78

89
void CheckStatus(GLuint obj, bool isShader)

src_cpp/ScreenCapture.cpp

+9-7
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,25 @@
77
#include <cstring>
88
#include <iostream>
99
#include <memory>
10-
#include <span>
1110
#include <thread>
1211
#include <type_traits>
1312

1413
namespace SL::Screen_Capture {
1514

16-
template <class MonitorT> bool IsMonitorInsideBounds(MonitorT monitors, const Monitor &monitor)
15+
bool IsMonitorInsideBounds(const Monitor *monitors, const int monitorsize, const Monitor &monitor)
1716
{
1817

1918
auto totalwidth = 0;
2019

21-
for (auto &m : monitors) {
22-
totalwidth += Width(m);
20+
for (int i = 0; i < monitorsize; i++) {
21+
totalwidth += Width(monitors[i]);
2322
}
2423

2524
// if the monitor doesnt exist any more!
26-
if (std::find_if(begin(monitors), end(monitors), [&](auto &m) { return m.Id == monitor.Id; }) == end(monitors)) {
25+
int index = 0;
26+
while(index < monitorsize && monitors[index].Id != monitor.Id)
27+
index++;
28+
if (index == monitorsize) {
2729
return false;
2830
} // if the area to capture is outside the dimensions of the desktop!!
2931

@@ -44,7 +46,7 @@ template <class MonitorT> bool IsMonitorInsideBounds(MonitorT monitors, const Mo
4446
return true;
4547
}
4648

47-
bool isMonitorInsideBounds(const std::vector<Monitor> &monitors, const Monitor &monitor) { return IsMonitorInsideBounds(monitors, monitor); }
49+
bool isMonitorInsideBounds(const std::vector<Monitor> &monitors, const Monitor &monitor) { return IsMonitorInsideBounds(monitors.data(), (int)monitors.size(), monitor); }
4850

4951
namespace C_API {
5052

@@ -272,7 +274,7 @@ int SCL_GetWindows(SCL_WindowRef windows, int monitors_size)
272274

273275
int SCL_IsMonitorInsideBounds(SCL_MonitorRefConst monitors, const int monitorsize, SCL_MonitorRefConst monitor)
274276
{
275-
return int(IsMonitorInsideBounds(std::span(monitors, monitorsize), *monitor));
277+
return int(IsMonitorInsideBounds(monitors, monitorsize, *monitor));
276278
}
277279

278280
void SCL_MonitorOnNewFrame(SCL_ICaptureConfigurationScreenCaptureCallbackWrapperRef ptr, SCL_ScreenCaptureCallback cb)

0 commit comments

Comments
 (0)