Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-20 | Merge pull request #2032 from lioncash/web | bunnei | |
yuzu/configuration/configure_web: Amend verification string | |||
2019-01-20 | Merge pull request #2025 from DarkLordZach/loader-banner-logo | bunnei | |
loader: Add getters for application banner and logo | |||
2019-01-19 | Merge pull request #2031 from lioncash/priv | bunnei | |
yuzu/web_browser: Minor cleanup | |||
2019-01-19 | Merge pull request #2033 from ReinUsesLisp/fixup-clip-warning | bunnei | |
gl_rasterizer: Silent unsafe mix warning | |||
2019-01-18 | file_sys/directory: Remove unused DirectoryBackend class | Lioncash | |
This isn't used at all, so we can just get rid of it. | |||
2019-01-18 | gl_rasterizer: Silent unsafe mix warning | ReinUsesLisp | |
2019-01-17 | yuzu/configuration/configure_web: Remove an unused lambda capture | Lioncash | |
'this' isn't actually used within the lambda, since what we need from the class is already assigned within the capture section of the lambda. | |||
2019-01-17 | yuzu/configuration/configure_web: Use an ellipsis with 'Verifying' text | Lioncash | |
It's a common UI pattern to use an ellipsis to indicate an ongoing action, rather than just specifying the word by itself. | |||
2019-01-17 | core/frontend/applets/web_browser: Include missing headers | Lioncash | |
Gets rid of a few indirect inclusions. | |||
2019-01-17 | core/frontend/applets/web_browser: Make OpenPage() non-const | Lioncash | |
This is a function that definitely doesn't always have a non-modifying behavior across all implementations, so this should be made non-const. This gets rid of the need to mark data members as mutable to work around the fact mutating data members needs to occur. | |||
2019-01-17 | yuzu/web_browser: std::move std::function instances in OpenPage() | Lioncash | |
Avoids the need to potentially reallocate the contained callbacks. | |||
2019-01-17 | yuzu/web_browser: Make slot functions private | Lioncash | |
These currently aren't used by anything other than the QtWebBrowser class itself, and can be made private. | |||
2019-01-15 | loader: Propagate NCA logo section to ReadBanner and ReadLogo | Zach Hilman | |
2019-01-15 | content_archive: Add getter for logo section of NCA | Zach Hilman | |
2019-01-14 | audio_core: remove unnecessary spaces on comments | Otávio Pace | |
2019-01-12 | Merge pull request #1848 from FreddyFunk/QJsonArray | bunnei | |
game_list: Remove a reference of a reference | |||
2019-01-10 | Merge pull request #1959 from DarkLordZach/custom-rtc | bunnei | |
settings: Add support for setting the RTC manually | |||
2019-01-10 | Merge pull request #1939 from DarkLordZach/web-applet | bunnei | |
applets: Implement HLE web browser applet (LibAppletOff) | |||
2019-01-08 | gl_global_cache: Add dummy global cache manager | ReinUsesLisp | |
2019-01-07 | settings: Fix comment structure | Zach Hilman | |
2019-01-07 | settings: Use std::chrono::seconds instead of s64 for RTC | Zach Hilman | |
2019-01-07 | time: Use custom RTC settings if applicable for game | Zach Hilman | |
2019-01-07 | core: Set custom RTC differential on game boot | Zach Hilman | |
2019-01-07 | qt: Provide UI to edit custom RTC settings | Zach Hilman | |
2019-01-07 | settings: Add custom RTC settings | Zach Hilman | |
Stored as signed seconds since epoch. | |||
2019-01-07 | Merge pull request #1999 from ReinUsesLisp/dirty-shader | bunnei | |
gl_shader_cache: Use dirty flags for shaders | |||
2019-01-07 | gl_shader_cache: Use dirty flags for shaders | ReinUsesLisp | |
2019-01-07 | Merge pull request #1989 from lioncash/set | bunnei | |
service/vi: Unstub IApplicationDisplayService's SetLayerScalingMode | |||
2019-01-07 | Merge pull request #1992 from DarkLordZach/move-profile-manager-ui | bunnei | |
qt: Move profile manager to own UI tab | |||
2019-01-07 | Merge pull request #1990 from ReinUsesLisp/copy-surface-stream-copy | bunnei | |
gl_rasterizer_cache: Use GL_STREAM_COPY for PBOs | |||
2019-01-05 | gl_rasterizer_cache: Use GL_STREAM_COPY for PBOs | ReinUsesLisp | |
Since the data is doing the path CPU -> GPU -> GPU copy is the most approximate hint. Using GL_STREAM_DRAW generated a performance warning on Nvidia's stack. Changing this hint removed the warning. | |||
2019-01-05 | Merge pull request #1988 from lioncash/res | bunnei | |
service/vi: Correct reported dimensions from IApplicationDisplayService's GetDisplayResolution() | |||
2019-01-04 | service/vi: Correct scaling mode conversions | Lioncash | |
These values are not equivalent, based off RE. The internal value is put into a lookup table with the following values: [3, 0, 1, 2, 4] So the values absolutely do not map 1:1 like the comment was indicating. | |||
2019-01-04 | service/vi: Factor out scaling mode conversions from the IPC function itself | Lioncash | |
Avoids entangling the IPC buffer appending with the actual operation of converting the scaling values over. This also inserts the proper error handling for invalid scaling values. | |||
2019-01-04 | service/vi: Unstub IApplicationDisplayService' SetLayerScalingMode() | Lioncash | |
This appears to only check if the scaling mode can actually be handled, rather than actually setting the scaling mode for the layer. This implements the same error handling performed on the passed in values. | |||
2019-01-04 | Merge pull request #1981 from ogniK5377/open-app-area-create | bunnei | |
Return no application area when games try to open an application area | |||
2019-01-04 | Merge pull request #1980 from ogniK5377/applet-msg-update | bunnei | |
Proper no message handling for AM::PopMessage | |||
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 |