summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove duplicated docs/update them for changed parameters.Gravatar Yuri Kunde Schlesner2014-11-2410-88/+0
|
* HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-2423-310/+689
| | | | | | | | | | | | | | | | | | | | | | | | | | 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-242-34/+16
| | | | | This prevents them from interfering with other constants defined in different namespaces.
* Merge pull request #191 from archshift/deletexyzGravatar bunnei2014-11-238-26/+194
|\ | | | | Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.
| * Added DeleteFile and DeleteDirectory functions to FS:USER and the archives.Gravatar archshift2014-11-238-26/+194
| |
* | Add more services and some fixes, along with more "override"Gravatar purpasmart962014-11-2026-17/+464
| | | | | | | | in the service's headers
* | Merge pull request #211 from linkmauve/masterGravatar bunnei2014-11-1983-446/+446
|\ \ | | | | | | Remove trailing spaces from the entire project
| * | Remove tabs in all files except in skyeye imports and in generated GL codeGravatar Emmanuel Gil Peyrot2014-11-1914-169/+169
| | |
| * | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-1974-282/+282
| | | | | | | | | | | | or generated
* | | Merge pull request #208 from lioncash/staticsGravatar bunnei2014-11-195-69/+69
|\ \ \ | |/ / |/| | Add static to some variables
| * | Add static to some variablesGravatar Lioncash2014-11-185-69/+69
| | |
* | | Merge pull request #165 from neobrain/viewport-scalingGravatar bunnei2014-11-1811-83/+281
|\ \ \ | | | | | | | | Stretch emulation output to render window and be display density independent
| * | | citra GLFW: Ignore minimal window size hints.Gravatar Tony Wasserka2014-11-181-8/+2
| | | | | | | | | | | | | | | | 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-181-2/+4
| | | | | | | | | | | | | | | | area size.
| * | | citra-qt: Small cleanup.Gravatar Tony Wasserka2014-11-181-2/+1
| | | |
| * | | EmuWindow: Add a TODO.Gravatar Tony Wasserka2014-11-181-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | 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-181-4/+5
| | | |
| * | | OpenGL Renderer: Cleanup viewport extent calculation.Gravatar Tony Wasserka2014-11-182-44/+29
| | | |
| * | | EmuWindow: Better document the purpose of OnMinimalClientAreaChangeRequest.Gravatar Tony Wasserka2014-11-181-0/+7
| | | |
| * | | EmuWindow: Remove window title getters/setters.Gravatar Tony Wasserka2014-11-184-28/+10
| | | | | | | | | | | | | | | | | | | | 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-181-18/+57
| | | |
| * | | EmuWindow: Add support for specifying minimal client area sizes.Gravatar Tony Wasserka2014-11-185-8/+58
| | | |
| * | | Fixup EmuWindow interface and implementations thereof.Gravatar Tony Wasserka2014-11-186-76/+127
| | | |
| * | | Viewport scaling and display density independenceGravatar Kevin Hartman2014-11-187-4/+89
| | | | | | | | | | | | | | | | | | | | 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-182-0/+2
| |/ / | | | | | | | | | Replace asserts with _dbg_assert_.
* | | Merge pull request #207 from lioncash/docsGravatar Tony Wasserka2014-11-183-3/+3
|\ \ \ | | | | | | | | Fix documentation of parameters
| * | | Fix documentation of parametersGravatar Lioncash2014-11-183-3/+3
| |/ /
* | | Merge pull request #209 from lioncash/warnGravatar Tony Wasserka2014-11-181-1/+1
|\ \ \ | | | | | | | | directory_sdmc: Fix a signed/unsigned mismatch comparison
| * | | directory_sdmc: Fix a signed/unsigned mismatch comparisonGravatar Lioncash2014-11-181-1/+1
| |/ /
* | | Merge pull request #210 from lioncash/typedefGravatar Tony Wasserka2014-11-181-10/+10
|\ \ \ | | | | | | | | system: Get rid of an unnecessary enum typedef
| * | | system: Get rid of an unnecessary enum typedefGravatar Lioncash2014-11-181-10/+10
| |/ /
* / / Remove extraneous semicolonsGravatar Lioncash2014-11-188-8/+8
|/ /
* / core: Mark some hle functions as staticGravatar Lioncash2014-11-176-48/+48
|/ | | | These functions are not referred to by their linkage name outside of the translation unit, so they can be marked as static.
* Archive: Fixed to not destroy archive handle on close.Gravatar bunnei2014-11-171-3/+3
|
* Archive: Fixed close archive before freeing.Gravatar bunnei2014-11-171-1/+1
|
* FS_User: Support FileSye::Path in a more generic way.Gravatar bunnei2014-11-172-42/+76
| | | | added a todo to kernel archive
* FileSys: Updated backend code to use FileSys::Path instead of string for paths.Gravatar bunnei2014-11-1712-38/+38
|
* FileSys: Added DebugStr method to Path class.Gravatar bunnei2014-11-171-0/+29
|
* Merge pull request #201 from archshift/bossGravatar bunnei2014-11-174-0/+59
|\ | | | | Add missing boss:U service
| * Add missing boss:U service, needed according to Nintendo Zone logs.Gravatar archshift2014-11-174-0/+59
| |
* | Merge pull request #199 from lioncash/prototypeGravatar bunnei2014-11-171-0/+1
|\ \ | | | | | | mem_map: Add missing prototype for Write64
| * | mem_map: Add missing prototype for Write64Gravatar Lioncash2014-11-161-0/+1
| |/
* / emu_window: Fix initializer list order.Gravatar Lioncash2014-11-171-2/+2
|/ | | | Gets rid of a warning on OSX.
* Merge pull request #195 from lioncash/controlGravatar Tony Wasserka2014-11-161-1/+1
|\ | | | | vertex_shader: Fix control reaches end of function warning
| * vertex_shader: Fix control reaches end of function warningGravatar Lioncash2014-11-161-1/+1
| |
* | Merge pull request #159 from SeannyM/enable_logGravatar Tony Wasserka2014-11-158-0/+37
|\ \ | | | | | | Add support for disabling log from settings
| * | Add support for disabling log from settingsGravatar Sean2014-11-038-0/+37
| | |
* | | Merge pull request #193 from lioncash/fmtGravatar bunnei2014-11-152-3/+3
|\ \ \ | | | | | | | | Fix two format strings.
| * | | Fix two format strings.Gravatar Lioncash2014-11-142-3/+3
| | |/ | |/|
* | | Merge pull request #194 from lioncash/virtGravatar bunnei2014-11-151-1/+1
|\ \ \ | |/ / |/| | ARM_Interface: Make destructor virtual