David Piuva 038b6ae2ec Updated readme and removed old comments. 7 ay önce
..
DFPSR e32bf92d1a Fixed memory leak by assuming that std::function will always heap allocate captured data. 7 ay önce
SDK 1ba9759660 Implemented control and command clicks to allow doing right and middle clicks with a single mouse button. 7 ay önce
soundManagers 73ed86cc59 Removed unused variable from AlsaSound.cpp. 8 ay önce
templates 1279d72f18 Added build scripts for MacOS. 8 ay önce
test 9e5663ba0b Optimized sound engine. 9 ay önce
tools 1279d72f18 Added build scripts for MacOS. 8 ay önce
windowManagers 038b6ae2ec Updated readme and removed old comments. 7 ay önce
README.md 321fddf72b Getting cache line width using system APIs. 10 ay önce
check.sh 15d1526231 Cleaned up the code a bit using cppcheck. 10 ay önce

README.md

Source folder

The source folder contains the framework, system dependent backends, code examples and tools.

System dependent code

Some of the code depends on different hardware and operating systems to abstract them away.

  • Source/DFPSR/api/fileAPI: The file API is implemented to hande file access on different operating systems.

  • Source/DFPSR/base/simd.h: The simd.h header is a SIMD abstraction layer that works without SIMD but can become faster for specific processor architectures by implementing the features.

  • Source/DFPSR/base/heap.cpp: The getCacheLineSize function depends on the operating system to get the cache line width for memory alignment, because aligning with cache lines is needed for thread safety and getting cache line width directly from hardware would require contemporary inline assembler hacks that will not work for future generations of hardware.

  • Source/windowManagers: Contains the integrations for displaying graphics and getting mouse and keyboard input on specific operating systems. These are selected based on the operating system in Source/DFPSR/DFPSR.DsrHead

  • Source/soundManagers: Contains the integrations for sound on specific operating systems. These are selected based on the operating system in Source/DFPSR/DFPSR.DsrHead