Add an option to take an screenshot in the debug library.
#290
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
In the same way, we have an option to draw some text on the screen, to add a way of generating a BMP from the current content of the screen would be useful for debugging purposes.
So this PR adds an easy and optimal way of generating the screenshot.
It just uses static memory for that, and it does it line by line, so it barely consumes RAM.
I have created a dummy sample in the
src/samples/debug/screenshotwhere I saw how this function is used:Off topic:
The main reason why I'm adding this feature is that I want to start running
screenshot testingover some of theGUsamples we have inPSPSDK.Using
PPSSPPHeadless, we can run several tests that will be executed when a PR is created. How I plan to do some refactors oversceGuI want to be sure I'm not going to break anything.Cheers