- 28 Jun, 2020 1 commit
-
-
Wieland Morgenstern authored
The type qualifiers const, restrict and volatile as defined by the C99 specification are supported. These qualifiers cannot be used with image2d_t or image3d_t type. Types other than pointer types shall not use the restrict qualifier. See discussion in https://github.com/stitchEm/stitchEm/issues/100
-
- 16 May, 2020 2 commits
-
-
Wieland Morgenstern authored
-
Wieland Morgenstern authored
-
- 03 May, 2020 2 commits
-
-
Clement Guedez authored
OpenCV4 support : change old C definition to standard c++ one in use the old definition still exist in imgproc.c_types.h
-
jeremad authored
-
- 07 Feb, 2020 1 commit
-
-
jerem authored
-
- 05 Dec, 2019 6 commits
-
-
Jeremy Tellaa authored
-
Wieland Morgenstern authored
-
Wieland Morgenstern authored
The change is needed as MSVC doesn't allow for a vector of a map of a non-copyable object. We can't use a list, as apparently several calls to loadAudio need to write the blocks of different audio groups into the same position in the output vector. std::list doesn't have random access. Using a map now, so we can keep the previous behavior. The int64_t key is only used in construction, and can be disregarded by the loading code.
-
Wieland Morgenstern authored
-
Wieland Morgenstern authored
Audio::Samples are a move-only class, they can't be copied. Using this non-copyable class in a std::vector<std::map<..>> does not compile in Visual Studio 2017, see e.g.: https://stackoverflow.com/questions/58700780/vector-of-maps-of-non-copyable-objects-fails-to-compile-in-msvc Replacing the use of vector with list, which does compile.
-
jeremad authored
-
- 21 Aug, 2019 1 commit
-
-
Wieland Morgenstern authored
-
- 29 Apr, 2019 1 commit
-
-
jerem authored
LINUX_PKG is now the only option
-
- 18 Apr, 2019 1 commit
-
-
stitchEm authored
-