aboutsummaryrefslogtreecommitdiffstats
path: root/tests/perf/fbperf.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Standardize log message prefix formatMadeleine Nilsson2024-11-111-2/+2
| | | | The reason for this is to keep a consistency through out the project.
* Mark overridden virtual functionsPierre Ossman2024-06-241-6/+6
| | | | | Use the new "override" keyword to properly differentiate between new virtual methods, and existing virtual methods being overridden.
* Use nullptr in all C++ codePierre Ossman2024-06-241-7/+7
| | | | | It's more readable than 0, and a bit safer than NULL, so let's try to follow modern norms.
* Return std::string instead of dynamic allocationsPierre Ossman2023-02-041-6/+3
| | | | | | We mostly use classical C strings, but the memory management around them can get confusing and error prone. Let's use std::string for the cases where we need to return a newly allocated string.
* Use stdint typesPierre Ossman2023-02-011-3/+3
| | | | | Avoid having our own custom stuff and instead use the modern, standard types, for familiarity.
* Explicitly mark unused parametersPierre Ossman2023-01-041-1/+1
| | | | | This allows us to separate accidentally unused, from explicitly unused parameters, which allows us to turn on such checks in the compiler.
* Add missing FLTK include statementsAlbrecht Schlosser2022-07-071-0/+1
| | | | Add also missing <stdlib.h> where required.
* Be consistent in including config.hPierre Ossman2021-12-301-0/+4
| | | | | | The generally recommended way is to include it from source files, not headers. We had a mix of both. Let's try to be consistent and follow the recommended way.
* Split test programs to benchmarking and unit testsPierre Ossman2019-09-251-0/+399
They have very different purpose, so make things easier to work with by having multiple directories.