7
7
#include < cstring>
8
8
#include < iostream>
9
9
#include < memory>
10
- #include < span>
11
10
#include < thread>
12
11
#include < type_traits>
13
12
14
13
namespace SL ::Screen_Capture {
15
14
16
- template < class MonitorT > bool IsMonitorInsideBounds (MonitorT monitors, const Monitor &monitor)
15
+ bool IsMonitorInsideBounds (const Monitor * monitors, const int monitorsize , const Monitor &monitor)
17
16
{
18
17
19
18
auto totalwidth = 0 ;
20
19
21
- for (auto &m : monitors ) {
22
- totalwidth += Width (m );
20
+ for (int i = 0 ; i < monitorsize; i++ ) {
21
+ totalwidth += Width (monitors[i] );
23
22
}
24
23
25
24
// 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) {
27
29
return false ;
28
30
} // if the area to capture is outside the dimensions of the desktop!!
29
31
@@ -44,7 +46,7 @@ template <class MonitorT> bool IsMonitorInsideBounds(MonitorT monitors, const Mo
44
46
return true ;
45
47
}
46
48
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); }
48
50
49
51
namespace C_API {
50
52
@@ -272,7 +274,7 @@ int SCL_GetWindows(SCL_WindowRef windows, int monitors_size)
272
274
273
275
int SCL_IsMonitorInsideBounds (SCL_MonitorRefConst monitors, const int monitorsize, SCL_MonitorRefConst monitor)
274
276
{
275
- return int (IsMonitorInsideBounds (std::span ( monitors, monitorsize) , *monitor));
277
+ return int (IsMonitorInsideBounds (monitors, monitorsize, *monitor));
276
278
}
277
279
278
280
void SCL_MonitorOnNewFrame (SCL_ICaptureConfigurationScreenCaptureCallbackWrapperRef ptr, SCL_ScreenCaptureCallback cb)
0 commit comments