kimci86
eab8f426e7
Make Sensor::Type a scoped enumeration
2023-12-15 15:18:25 -07:00
kimci86
3fb0ffce51
Make Mouse::Button and Mouse::Wheel scoped enumerations
2023-12-15 15:18:25 -07:00
kimci86
ebf190b660
Make Joystick::Axis a scoped enumeration
2023-12-15 15:18:25 -07:00
kimci86
df2f56fe83
Make Cursor::Type a scoped enumeration
2023-12-15 15:18:25 -07:00
Chris Thrasher
5e18e5403b
Fix Nix pkg-config support
...
CMAKE_INSTALL_LIBDIR is an absolute path on Nix (which is a valid
thing to do). In such a case two absolute paths would get appended
resulting in a nonsense path that broke pkg-config support.
2023-12-15 09:42:56 -07:00
Chris Thrasher
9cea872dbc
Update changelog for #2821
2023-12-15 09:42:56 -07:00
Chris Thrasher
b9fdc1de7b
Remove unnecessary helper function
2023-12-15 09:04:22 -07:00
Chris Thrasher
3cf25d1c2e
Add readability-containers-contains clang-tidy check
2023-12-12 09:10:51 -07:00
Chris Thrasher
2c4ffe997a
Implement predicate with lambdas
2023-12-12 00:16:26 -07:00
Chris Thrasher
bdf676aec1
Fix CMake formatting
2023-12-11 23:42:12 -07:00
Chris Thrasher
79cd91124a
Remove unused variable
2023-12-11 23:11:23 -07:00
Chris Thrasher
04a7184ab4
Simplify sf::View
construction
2023-12-11 19:33:20 -07:00
Chris Thrasher
a6b63de5ec
Remove unnecessary sf::
namespaces
2023-12-11 17:19:31 -07:00
Chris Thrasher
9a75494c01
Merge branch '2.6.x' into master
2023-12-11 15:52:55 -07:00
Chris Thrasher
81a86ebdbd
Merge branch '2.6.x' into feature/backmerge
2023-12-11 09:32:14 -07:00
Chris Thrasher
ea42079da9
Update Catch2
...
https://github.com/catchorg/Catch2/releases/tag/v3.5.0
2023-12-10 19:40:28 -07:00
Chris Thrasher
b199cc68d1
Unify TODO comment style for better searchability
2023-12-10 17:20:25 -07:00
Lukas Dürrenberger
c9d065a054
Issue an error when using a MinGW UCRT version
2023-12-11 00:57:08 +01:00
Chris Thrasher
0e17f4d320
Apply const to more local variables
2023-12-10 16:38:08 -07:00
Chris Thrasher
819bdb67e9
Use ranged for loop
2023-12-10 14:44:06 -07:00
Chris Thrasher
e11154e7f7
Define default special member functions in headers
2023-12-10 10:28:42 -07:00
Chris Thrasher
7223a5db63
Remove unused forward declaration
2023-12-10 00:44:12 -07:00
Chris Thrasher
f93e1e4974
Fix typos
2023-12-09 12:33:26 -07:00
Chris Thrasher
7f5d87dcd5
Add move semantics to sf::Context
2023-12-09 10:27:57 -07:00
Chris Thrasher
cc5dc0f08c
Fix sf::Context::setActive
bug
2023-12-08 13:42:00 -07:00
Chris Thrasher
4e2f6ae655
Add more tests for sf::Context
2023-12-01 07:09:03 -07:00
Chris Thrasher
7c9e7aa31a
Avoid taking lock when not necessary
2023-11-29 17:41:24 -07:00
Chris Thrasher
48071ed335
Remove some references to SFML 2
...
Mentioning the version number isn't always necessary so I removed
some instances of the version number to prevent us redoing this work
for new major releases going forward.
2023-11-29 17:37:10 -07:00
Chris Thrasher
c3f69e5d64
Remove leading newlines
2023-11-29 15:54:38 -07:00
Chris Thrasher
c89c5eae69
Replace raw loops with standard algorithm
2023-11-28 09:41:28 -07:00
Chris Thrasher
c6919e28fc
Prefer std::optional
return types over output parameters
2023-11-28 09:37:03 -07:00
Chris Thrasher
fe0785769e
Ensure consistent behavior between Android and other OSes
...
Android never checked if m_file was null and thus would invoke UB
upon calling certain functions whereas all other OSes would return
a defined value.
2023-11-27 17:22:15 -07:00
Chris Thrasher
9b751899eb
Add tests for sf::InputSoundFile
2023-11-27 10:49:51 -05:00
Chris Thrasher
35d82b7847
Simplify implementation of sf::InputSoundFile::close
2023-11-27 10:49:51 -05:00
Chris Thrasher
0a1090c89d
Let compiler define default constructors
2023-11-27 10:49:51 -05:00
Chris Thrasher
95465a3359
Modernize memory management of FLAC pointers
2023-11-26 23:30:19 -05:00
Chris Thrasher
f3341359eb
Add tests for sf::SoundFileFactory
2023-11-26 19:53:07 -05:00
Chris Thrasher
2fcdec5153
Remove unnecessary reinterpret_cast
s
2023-11-26 18:08:02 -05:00
Chris Thrasher
fca84e4011
Implicitly define default constructors
2023-11-20 21:31:40 -07:00
Chris Thrasher
27acbab3d9
Use sf::Rect<T>::getCenter()
in more places
2023-11-20 16:01:36 -07:00
Chris Thrasher
24a935b623
Remove unnecessary preprocessor conditionals
...
The build system handles whether or not these files are compiled.
We don't need the preprocessor to do that.
2023-11-20 16:00:27 -07:00
Chris Thrasher
1699105377
Remove unused CMake variable
2023-11-20 16:00:09 -07:00
Chris Thrasher
1e4cdf89b6
Use std::array
to reduce code duplication
...
std::array lets us have a single source of truth for array size
rather than needing separate constants or magic numbers that have
to stay in sync with the underlying array.
2023-11-20 12:14:21 -07:00
binary1248
5a2f30c5ae
Added support for scissor testing.
2023-11-20 11:01:33 -07:00
Chris Thrasher
08eca7c9a4
Default all sf::Font
special member functions
2023-11-18 20:52:17 -07:00
Lukas Dürrenberger
c1c65b53ec
Update changelog for SFML 2.6.x
2023-11-16 22:34:48 +01:00
Chris Thrasher
c1f92ed020
Remove compatibility measures with FindSFML.cmake
2023-11-16 13:40:12 -07:00
Chris Thrasher
dd706d6aed
Remove leading newlines
2023-11-16 12:02:28 -07:00
Chris Thrasher
daa1efcf05
Add tests for various loadFromStream()
functions
2023-11-16 10:03:29 -07:00
Bruno Van de Velde
0da4382d6c
Android example no longer needs to search Audio and Network modules as they are no longer being linked
2023-11-15 17:29:42 -07:00