* Added app icon to the window
* Added Roms path
Added an option to the config to set a folder that opens when selecting a game instead of having to navigate to the folder manually every time.
* Clear up PR
* Clear up PR
---------
Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
* Add shader uniform-read unit test
* Add unit test f24 vector formatter
* Add Address Register Offset shader unit test
* Implement float-uniform out-of-bound return value
In the case that the resulting float-uniform index is greater than the 96 slots that it has, a result of `{1,1,1,1}` is to be returned.
* Implement shader relative addressing
Fails on the negative unit tests at the moment but passes all of the
others.
* Fix `MOVA` source register indexing
* Rename `dynapica` TU to `shader`
These unit-tests in particular only actually test
the shader-interpreter and not any of the JITs.
* Conditionally test the shader-jit
In the case that the host supports the shader-jit, the interpreter and the shader-jit will both be tested with the same unit-tests. Allowing for even more coverage.
* Remove weird git submodule
* Initialize catch-2 based unit tests
* Add nihstro submodule
Enabled only during testing to help with assembling shaders in-code.
* Implement `ADD` instruction unit-test
* Add arithmetic/logical instruction unit tests
* Add embedded catch2 submodule
Will use the host catch2 if available.
* Ignore `.cache` folder
* Add `AlberCore` build-target
Separate the AlberCore from its frontends. Allowing two front-ends to interface
with the same core implementation. This also allows for the core to interface
better with unit-testing.
* Modularize SDL/Qt frontend
Separates all QT/SDL build files and options into the frontend-build-target
* Fix optional OpenGL enablement
Software renderer requires OpenGL, so AlberCore requries OpenGL.
The QT frontend currently requires OpenGL due to `ScreenWidget`
* Fix Android build
* Fix LTO linking
* Fix windows build
`LoadLibrary` is a preprocessor that will use either `LoadLibraryW` or
`LoadLibraryA` depending on if `UNICODE` is defined or not.
In this case we are using an ASCII string literal and and can explicitly
specify the usage of `LoadLibraryA` with an ASCII literal.
* Bonk
* Bonk
---------
Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
* Add Dynamic colors option for Android 12 or above (#8)
* Dynamic color for android 12 or above @Ishan09811
* Revert "Add Dynamic colors option for Android 12 or above (#8)" (#9)
This reverts commit 6ee1a39fb4.
* Material Switch (#10) | ISHAN | REVIEW
* Review Material Switch
* basic implement, ds editor, and remake theme selector
* add swap screen in drawer
* basic file provider for access private folder from file explorer
* Pandroid: Game about dialog (#7)
* Alert dialog idea
* Reimplement ishan game dialog.
* Add Picture In Picture support with a option (#11)
- Ishan picture in picture pr
* some fixes
* Add game to launcher and some clear code.
---------
Co-authored-by: Ishan09811 <156402647+Ishan09811@users.noreply.github.com>
Co-authored-by: gabriel <gabriel>
* Implement audio output
* Semi-proper audio output
* Add audio enable and vsync settings
* Add audio enable and vsync settings
* Optimize audio output a bit
* Make max ring buffer timeout smaller
* Make max ring buffer timeout smaller
* Revert to spinlocking for audio sync
* Sleep emulator thread if too many samples queued
* Fix Teakra submodule breaking
* Don't start audio device too soon
* Fix IWYU errors
* Fix compilation errors on GCC/Clang
* Ignore std::hardware_destructive_interference_size on Android NDK
* Fix more IWYU errors