Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-04-02 | Merge pull request #262 from daniellimws/fmtlib-macros | bunnei | |
Logging: Add fmtlib-based macros | |||
2018-04-02 | Merge pull request #267 from N00byKing/patch-1 | bunnei | |
Update Dialog from citra to yuzu | |||
2018-04-02 | Merge pull request #276 from N00byKing/acctoyuzu | bunnei | |
Change Telemetry Names to yuzu and remove links to citra | |||
2018-04-02 | Merge pull request #304 from daniellimws/fix-openbsd | bunnei | |
Fix build on OpenBSD | |||
2018-04-03 | deconstructed_rom_directory.cpp: Fix Typo | N00byKing | |
2018-04-03 | externals: Update fmt to 4d35f94 | Daniel Lim Wee Soong | |
Versions prior to this didn't compile on OpenBSD due to unconditional use of the non-standard strtod_l() function. The fmt::MemoryWriter API has been removed in the intervening versions, so replace its use with fmt::memory_buffer and fmt::format_to. The library also no longer provides the fmt::fmt ALIAS, so define it in externals/CMakeLists.txt. | |||
2018-04-03 | common: fix swap functions on Bitrig and OpenBSD | Daniel Lim Wee Soong | |
swap{16,32,64} are defined as macros on the two, but client code tries to invoke them as Common::swap{16,32,64}, which naturally doesn't work. This hack redefines the macros as inline functions in the Common namespace: the bodies of the functions are the same as the original macros, but relying on OS-specific implementation details like this is of course brittle. | |||
2018-04-02 | Merge pull request #297 from bunnei/hid-touch-state | bunnei | |
hid: Write empty touch screen state. | |||
2018-04-02 | Merge pull request #296 from bunnei/misc-mem-fsp-fixes | bunnei | |
Fix stack region, implement FSP GetSize/SetSize, and some stubs | |||
2018-04-02 | Merge pull request #288 from Subv/macro_interpreter | bunnei | |
GPU: Implemented a gpu macro interpreter | |||
2018-04-01 | GPU: Use the MacroInterpreter class to execute the GPU macros instead of ↵ | Subv | |
HLEing them. | |||
2018-04-01 | GPU: Implemented a gpu macro interpreter. | Subv | |
The Ryujinx macro interpreter and envydis were used as reference. Macros are programs that are uploaded by the games during boot and can later be called by writing to their method id in a GPU command buffer. | |||
2018-04-01 | hid: Write empty touch screen state. | bunnei | |
2018-03-31 | hle_ipc, fsp_srv: Cleanup logging. | bunnei | |
2018-03-31 | hid: Stub out GetSupportedNpadStyleSet. | bunnei | |
2018-03-31 | hle_ipc: Do not ensure write buffer size. | bunnei | |
2018-03-31 | fsp_srv: Implement GetSize and SetSize. | bunnei | |
2018-03-31 | memory: Fix stack region. | bunnei | |
2018-03-31 | Merge pull request #293 from N00byKing/drkthm | bunnei | |
Add Dark Theme (And Theming in General + Icon Theming) | |||
2018-03-30 | Port citra-emu/citra#3610 to yuzu | N00byKing | |
2018-03-30 | Remove whitespaces | N00byKing | |
2018-03-30 | Add Dark theme, Icon theming | N00byKing | |
configure_general.ui: Add UI Option for Themes config.cpp: Save Theme Settings | |||
2018-03-29 | audren_u: Stub QueryAudioDeviceSystemEvent and GetActiveChannelCount. | bunnei | |
2018-03-29 | svc: Stub GetThreadCoreMask. | bunnei | |
2018-03-29 | service: Add NFP module interface. | bunnei | |
service: Initialize NFP service. Log: Add NFP service as a log subtype. | |||
2018-03-28 | result: Check against self-assignment in ResultVal's copy assignment operator | Lioncash | |
Avoids doing work that doesn't need to be done. | |||
2018-03-27 | Merge pull request #286 from N00byKing/citratoyuzuagain | bunnei | |
main.h: Add pragma once, remove ifndef | |||
2018-03-27 | main.h: Add pragma once, remove ifndef | N00byKing | |
2018-03-27 | Merge pull request #284 from bunnei/docked-config | bunnei | |
Add config for "Docked" mode and various settings cleanup | |||
2018-03-27 | telemetry.h: Reword comment from citra to yuzu | N00byKing | |
2018-03-27 | telemetry_session.h: Reword Documentation Comment from citra to yuzu | N00byKing | |
2018-03-27 | Remove Links to citra Services | N00byKing | |
2018-03-27 | Change Telemetry Names to yuzu | N00byKing | |
2018-03-26 | Merge pull request #282 from N00byKing/patch-2 | bunnei | |
Change comments from citra to yuzu | |||
2018-03-26 | settings: Remove unused CpuCore class. | bunnei | |
2018-03-26 | config: Use simplified checkbox (from Citra) for CPU JIT. | bunnei | |
2018-03-26 | config: Rename is_docked to use_docked_mode to be consistent with other ↵ | bunnei | |
config bools. | |||
2018-03-26 | configure_general: Cleanup naming. | bunnei | |
2018-03-26 | qt: Add config option for is_docked. | bunnei | |
2018-03-26 | config: Add setting for whether the system is docked or not. | bunnei | |
2018-03-26 | renderer_opengl: Use better naming for DrawScreens and DrawSingleScreen. | bunnei | |
2018-03-26 | graphics_surface: Remove superfluous cast. | bunnei | |
2018-03-26 | gl_rasterizer: Move code to bind framebuffer surfaces before draw to its own ↵ | bunnei | |
function. | |||
2018-03-26 | gl_rasterizer: Add a SyncViewport method. | bunnei | |
2018-03-26 | gl_rasterizer: Move PrimitiveTopology check to MaxwellToGL. | bunnei | |
2018-03-26 | graphics_surface: Fix merge conflicts. | bunnei | |
2018-03-26 | gl_rasterizer: Use ReadBlock instead of GetPointer for SetupVertexArray. | bunnei | |
2018-03-26 | gl_rasterizer: Normalize vertex array data as appropriate. | bunnei | |
2018-03-26 | memory: Fix cast for ReadBlock/WriteBlock/ZeroBlock/CopyBlock. | bunnei | |
2018-03-26 | maxwel_to_gl: Fix string formatting in log statements. | bunnei | |