aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Fix MinGW buildGravatar darkf2014-11-28
|
* Merge pull request #223 from linkmauve/remove-threadGravatar bunnei2014-11-26
|\ | | | | Remove unused includes to common/thread.h
| * Remove unused includes to common/thread.hGravatar Emmanuel Gil Peyrot2014-11-25
|/
* Merge pull request #147 from yuriks/error-codesGravatar bunnei2014-11-24
|\ | | | | Error codes
| * Use pointers instead of passing handles around in some functions.Gravatar Yuri Kunde Schlesner2014-11-24
| |
| * Remove duplicated docs/update them for changed parameters.Gravatar Yuri Kunde Schlesner2014-11-24
| |
| * HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
| * Change some SkyEye defines to const intsGravatar Yuri Kunde Schlesner2014-11-24
|/ | | | | This prevents them from interfering with other constants defined in different namespaces.
* Merge pull request #191 from archshift/deletexyzGravatar bunnei2014-11-23
|\ | | | | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.
* \ Merge pull request #220 from yuriks/patch-1Gravatar bunnei2014-11-23
|\ \ | | | | | | Add comment style notes to CONTRIBUTING.md
| * | Update CONTRIBUTING.mdGravatar Yuri Kunde Schlesner2014-11-23
| | |
| * | Add comment style notes to CONTRIBUTING.mdGravatar Yuri Kunde Schlesner2014-11-23
|/ / | | | | Closes #215
* | Merge pull request #190 from purpasmart96/more_servicesGravatar bunnei2014-11-23
|\ \ | | | | | | Add more services and general fixes
| | * Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.Gravatar archshift2014-11-23
| | |
| * | Add more services and some fixes, along with more "override"Gravatar purpasmart962014-11-20
|/ / | | | | | | in the service's headers
* | Merge pull request #211 from linkmauve/masterGravatar bunnei2014-11-19
|\ \ | | | | | | Remove trailing spaces from the entire project
* \ \ Merge pull request #208 from lioncash/staticsGravatar bunnei2014-11-19
|\ \ \ | | | | | | | | Add static to some variables
| | * | Remove tabs in all files except in skyeye imports and in generated GL codeGravatar Emmanuel Gil Peyrot2014-11-19
| | | |
| | * | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-19
| |/ / |/| | | | | | | | or generated
| * | Add static to some variablesGravatar Lioncash2014-11-18
| | |
* | | Merge pull request #212 from archshift/ideaGravatar bunnei2014-11-18
|\ \ \ | | | | | | | | Update gitignore to exclude project/editor files
* \ \ \ Merge pull request #165 from neobrain/viewport-scalingGravatar bunnei2014-11-18
|\ \ \ \ | | | | | | | | | | Stretch emulation output to render window and be display density independent
| | * | | Update gitignore to exclude project/editor filesGravatar archshift2014-11-18
| |/ / / |/| | |
* | | | Merge pull request #207 from lioncash/docsGravatar Tony Wasserka2014-11-18
|\ \ \ \ | | | | | | | | | | Fix documentation of parameters
* \ \ \ \ Merge pull request #209 from lioncash/warnGravatar Tony Wasserka2014-11-18
|\ \ \ \ \ | | | | | | | | | | | | directory_sdmc: Fix a signed/unsigned mismatch comparison
* \ \ \ \ \ Merge pull request #210 from lioncash/typedefGravatar Tony Wasserka2014-11-18
|\ \ \ \ \ \ | | | | | | | | | | | | | | system: Get rid of an unnecessary enum typedef
| * | | | | | system: Get rid of an unnecessary enum typedefGravatar Lioncash2014-11-18
| | |_|_|/ / | |/| | | |
| | * | | | directory_sdmc: Fix a signed/unsigned mismatch comparisonGravatar Lioncash2014-11-18
| |/ / / /
* | | | | Merge pull request #206 from lioncash/semicolonGravatar Tony Wasserka2014-11-18
|\ \ \ \ \ | |/ / / / |/| | | | Remove extraneous semicolons
| | * | | Fix documentation of parametersGravatar Lioncash2014-11-18
| |/ / / |/| | |
| * | | Remove extraneous semicolonsGravatar Lioncash2014-11-18
|/ / /
| * | citra GLFW: Ignore minimal window size hints.Gravatar Tony Wasserka2014-11-18
| | | | | | | | | | | | GLFW provides no proper support for this, hence we just allow any window size to be used.
| * | EmuWindow: Add some explicit documentation and set proper minimal client ↵Gravatar Tony Wasserka2014-11-18
| | | | | | | | | | | | area size.
| * | citra-qt: Small cleanup.Gravatar Tony Wasserka2014-11-18
| | |
| * | EmuWindow: Add a TODO.Gravatar Tony Wasserka2014-11-18
| | | | | | | | | | | | | | | | | | Implementing this function currently is not critical, as we don't perform any configuration changes, yet. However, the interface is a good starting point for adding this functionality.
| * | MathUtil: Make Rectangle work with unsigned types.Gravatar Tony Wasserka2014-11-18
| | |
| * | OpenGL Renderer: Cleanup viewport extent calculation.Gravatar Tony Wasserka2014-11-18
| | |
| * | EmuWindow: Better document the purpose of OnMinimalClientAreaChangeRequest.Gravatar Tony Wasserka2014-11-18
| | |
| * | EmuWindow: Remove window title getters/setters.Gravatar Tony Wasserka2014-11-18
| | | | | | | | | | | | | | | The window title is none of the emulation core's business. The GUI code is free to put whatever it wants there. Providing properly thread-safe window title getters and setters is a mess anyway.
| * | EmuWindow: Add documentation.Gravatar Tony Wasserka2014-11-18
| | |
| * | EmuWindow: Add support for specifying minimal client area sizes.Gravatar Tony Wasserka2014-11-18
| | |
| * | Fixup EmuWindow interface and implementations thereof.Gravatar Tony Wasserka2014-11-18
| | |
| * | Viewport scaling and display density independenceGravatar Kevin Hartman2014-11-18
| | | | | | | | | | | | | | | The view is scaled to be as large as possible, without changing the aspect, within the bounds of the window. On "retina" displays, or other displays where window units != pixels, the view should no longer draw incorrectly.
| * | Add a GUI logging channel.Gravatar Tony Wasserka2014-11-18
|/ / | | | | | | Replace asserts with _dbg_assert_.
* | Merge pull request #200 from lioncash/staticsGravatar bunnei2014-11-17
|\ \ | |/ |/| core: Mark some hle functions as static
| * core: Mark some hle functions as staticGravatar Lioncash2014-11-17
|/ | | | These functions are not referred to by their linkage name outside of the translation unit, so they can be marked as static.
* Merge pull request #192 from bunnei/fs-fix-pathsGravatar bunnei2014-11-17
|\ | | | | FileSys: Updates backend code to use FileSys::Path and fixes binary path types.
| * Archive: Fixed to not destroy archive handle on close.Gravatar bunnei2014-11-17
| |
| * Archive: Fixed close archive before freeing.Gravatar bunnei2014-11-17
| |
| * FS_User: Support FileSye::Path in a more generic way.Gravatar bunnei2014-11-17
| | | | | | | | added a todo to kernel archive