| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-01-04 | service/vi: Correct reported dimensions from IApplicationDisplayService's ↵ | Lioncash | |
| GetDisplayResolution() Within the actual service, it makes no distinguishing between docked and undocked modes. This will always return the constants values reporting 1280x720 as the dimensions. | |||
| 2019-01-04 | qt: Move profile manager to own UI tab | Zach Hilman | |
| 2019-01-04 | Removed pulse event type | David Marcec | |
| Pulse is considered a hack and nothing should be using it. We should completely remove it | |||
| 2019-01-03 | Merge pull request #1975 from lioncash/vi | bunnei | |
| service/vi: Minor updates and corrections to the DisplayInfo struct | |||
| 2019-01-04 | Return no application area when games try to open an application area | David Marcec | |
| This will prompt CreateApplicationArea | |||
| 2019-01-04 | Proper no message handling for AM::PopMessage | David Marcec | |
| When we have no messages, we should be returning an error code. | |||
| 2019-01-03 | Fixed botw deadlock(and possibly 30 fps games rendering too fast? needs ↵ | David Marcec | |
| testing to confirm) Upon investigating the issue with #1878, I found that games are the ones who handle the vsync event resetting and not us. | |||
| 2019-01-02 | Merge pull request #1976 from lioncash/display | bunnei | |
| service/vi: Implement OpenDefaultDisplay in terms of OpenDisplay | |||
| 2019-01-02 | Merge pull request #1978 from lioncash/enabled | bunnei | |
| service/vi: Implement SetDisplayEnabled() | |||
| 2019-01-02 | Merge pull request #1942 from DarkLordZach/profile-select-game-boot | bunnei | |
| qt: Add setting to prompt for user on game boot | |||
| 2019-01-02 | Merge pull request #1941 from DarkLordZach/profile-select-save-data | bunnei | |
| qt: Use ProfileSelectionDialog when selecting user for save data | |||
| 2019-01-02 | service/vi: Implement SetDisplayEnabled() | Lioncash | |
| This IPC command is simply a stub inside the actual service itself, and just returns a successful error code regardless of input. This is likely only retained in the service interface to not break older code that relied upon it succeeding in some way. | |||
| 2019-01-02 | Merge pull request #1977 from lioncash/vi-log | bunnei | |
| service/vi: Log more information where applicable | |||
| 2019-01-02 | service/vi: Log more information where applicable | Lioncash | |
| In many cases, we didn't bother to log out any of the popped data members. This logs them out to the console within the logging call to provide more contextual information. | |||
| 2019-01-02 | service/vi: Implement OpenDefaultDisplay in terms of OpenDisplay | Lioncash | |
| Internally within the vi services, this is essentially all that OpenDefaultDisplay does, so it's trivial to just do the same, and forward the default display string into the function. | |||
| 2019-01-02 | Merge pull request #1961 from ReinUsesLisp/tex-view-2d | bunnei | |
| gl_rasterizer_cache: Texture view if shader samples array but OGL is not | |||
| 2019-01-02 | service/vi: Correct initial width and height values | Lioncash | |
| Based off RE, it appears that almost all display types seem to use 1920x1080 except for a few (null display, edid display). | |||
| 2019-01-02 | service/vi: Document unknown DisplayInfo struct members | Lioncash | |
| It appears that the two members indicate whether a display has a bounded number of layers (and if set, the second member indicates the total number of layers). | |||
| 2019-01-02 | Merge pull request #1944 from FearlessTobi/port-4187 | bunnei | |
| Port citra-emu/citra#4187: "Qt/Configure: Use sidebar to divide tabs into smaller groups" | |||
| 2019-01-02 | Merge pull request #1969 from lioncash/cast | bunnei | |
| yuzu: Fix truncation warnings within UI code | |||
| 2018-12-31 | yuzu/configure_general: Silence truncation warnings in loadConfiguration() | Lioncash | |
| The QPixmap API expects an unsigned int. | |||
| 2018-12-31 | yuzu/config: Silence truncation warnings | Lioncash | |
| 2018-12-31 | core/kernel: Remove unnecessary inclusions | Lioncash | |
| Gets rid of a few unnecessary header dependencies in some source files. | |||
| 2018-12-31 | Merge pull request #1966 from lioncash/backtrace | bunnei | |
| arm_interface: Minor cleanup | |||
| 2018-12-30 | kernel/svc: Correct misleading error message within CreateThread() | Lioncash | |
| This is a bounds check to ensure that the thread priority is within the valid range of 0-64. If it exceeds 64, that doesn't necessarily mean that an actual priority of 64 was expected (it actually means whoever called the function screwed up their math). Instead clarify the message to indicate the allowed range of thread priorities. | |||
| 2018-12-30 | kernel/svc: Sanitize core number and thread priorities in CreateThread() | Lioncash | |
| Now that we handle the kernel capability descriptors we can correct CreateThread to properly check against the core and priority masks like the actual kernel does. | |||
| 2018-12-30 | kernel/process: Rename GetAllowedProcessorMask() and ↵ | Lioncash | |
| GetAllowedThreadPriorityMask() Makes them consistent with their kernel capability counterparts. | |||
| 2018-12-30 | kernel/svc: Simplify thread core ID sanitizing in CreateThread | Lioncash | |
| Rather than use a switch here, this can be collapsed into a simple range check, which is a little easier on the eyes. | |||
| 2018-12-30 | arm_interface: Make include path relative for arm_interface.h | Lioncash | |
| Makes it consistent with the rest of the includes. | |||
| 2018-12-30 | arm_interface: Make LogBacktrace() a const member function | Lioncash | |
| This function doesn't modify instance state, so it can be made const. | |||
| 2018-12-30 | arm_interface: Mark variables as const where applicable in LogBacktrace() | Lioncash | |
| Two of these variables have fixed values, so we can make that immediately obvious from the get-go. | |||
| 2018-12-30 | arm_interface: Remove unnecessary semicolon | Lioncash | |
| Namespaces don't require the use of a semicolon. Silences a -Wextra-semi warning. | |||
| 2018-12-30 | Merge pull request #1956 from lioncash/process-thread | Sebastian Valle | |
| kernel/process: Start the main thread using the specified ideal core | |||
| 2018-12-29 | Merge pull request #1847 from ogniK5377/backtrace-break | bunnei | |
| Print backtrace on svcBreak | |||
| 2018-12-29 | Merge pull request #1964 from lioncash/time | bunnei | |
| service/time: Minor cleanup | |||
| 2018-12-29 | gl_rasterizer_cache: Texture view if shader samples array but OGL is not | ReinUsesLisp | |
| When a shader samples a texture array but that texture in OpenGL is created without layers, use a texture view to increase the texture hierarchy. For example, instead of binding a GL_TEXTURE_2D bind a GL_TEXTURE_2D_ARRAY view. | |||
| 2018-12-29 | service/time: Minor cleanup to GetClockSnapshot() | Lioncash | |
| Moves some variables closer to their actual usage sites. | |||
| 2018-12-29 | service/time: Fill in some structures and remove padding where not necessary | Lioncash | |
| 2018-12-29 | Moved log backtrace to arm_interface.cpp. Added printing of error code to fatal | David Marcec | |
| 2018-12-28 | travis: Use correct package for linux Qt5WebEngine | Zach Hilman | |
| 2018-12-28 | web_browser: Add bounds checking to applet interface | Zach Hilman | |
| 2018-12-28 | gpu: Remove PixelFormat G8R8U and G8R8S, as they do not seem to exist. | bunnei | |
| - Fixes UI rendering issues in The Legend of Zelda: Breath of the Wild. | |||
| 2018-12-28 | Merge pull request #1958 from lioncash/audio | bunnei | |
| audio_core: Convert LOG_CRITICAL + UNREACHABLE over to UNIMPLEMENTED/UNIMPLEMENTED_MSG | |||
| 2018-12-28 | main: Add main window integrations for QtWebBrowserApplet | Zach Hilman | |
| 2018-12-28 | qt: Implement Qt frontend to web browser | Zach Hilman | |
| Using a custom reimplementation of QWebEngineView and an injector script. | |||
| 2018-12-28 | core: Add getter and setter for WebBrowserApplet frontend | Zach Hilman | |
| 2018-12-28 | frontend: Add frontend responder for web browser | Zach Hilman | |
| 2018-12-28 | applets: Implement LibAppletOff (Web) applet | Zach Hilman | |
| 2018-12-28 | loader: Add accessor for Manual RomFS | Zach Hilman | |
| 2018-12-28 | hid: Make Hid service accessible and add GetPressState | Zach Hilman | |
