Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-20 | Fix typos | Ricardo de Almeida Gonzaga | |
2016-10-07 | Merge pull request #2024 from JamePeng/update-boss-code | bunnei | |
Update the stub code of BOSS | |||
2016-10-06 | Merge pull request #2082 from yuriks/shader-interp-crash | bunnei | |
Fix/mask crash in shader debugger in Mii Maker | |||
2016-10-04 | Merge pull request #1652 from wwylele/kernal-tool | bunnei | |
Debugger: implement wait tree widget | |||
2016-10-03 | Merge pull request #2106 from wwylele/delete-recursive | bunnei | |
FS: implement DeleteDirectoryRecursively | |||
2016-10-03 | Merge pull request #2103 from wwylele/gpu-reg-cleanup | bunnei | |
GPU: DisplayTransfer & MemoryFill cleanup and param check | |||
2016-10-02 | Update the stub code of BOSS | JamePeng | |
2016-10-02 | fs: clean up log format | wwylele | |
2016-10-02 | fs: implement DeleteDirectoryRecursively | wwylele | |
2016-09-29 | VideoCore: Shader interpreter cleanups | Yuri Kunde Schlesner | |
2016-09-29 | Common: Remove dangerous Vec[234] array constructors | Yuri Kunde Schlesner | |
They're not currently used, and it's easy to accidentally pass a single pointer argument to them, causing an out-of-bounds read. | |||
2016-09-29 | VideoCore: Fix out-of-bounds read in ShaderSetup::ProduceDebugInfo | Yuri Kunde Schlesner | |
As far as I can tell, memset was replaced by a fill without correcting the parameter type, causing an out-of-bounds array read in the Vec4 constructor. | |||
2016-09-29 | OpenGL: Take cached viewport sub-rect into account for scissor | Yuri Kunde Schlesner | |
Fixes #1938 | |||
2016-09-29 | gpu: DisplayTransfer: a less amazing algorithm for flip | wwylele | |
the old implementation modifies the loop variable in the loop. Though it actually works, it is really confusing. Makes it morereadable now. | |||
2016-09-29 | gpu: keep the old signal strategy for null pointer | wwylele | |
previous commits changes the behaviour of interrupt when meeting invalid params. Regresses to the same behaviour as before needs more hwtest | |||
2016-09-29 | gpu: add validity check for TextureCopy, DisplayTransfer and FillMemory | wwylele | |
prevent further operation with invalid values which may cause assertion failure or divided by zero. needs more hwtest | |||
2016-09-29 | memory: fix IsValidVirtualAddress for RasterizerCachedMemory | wwylele | |
RasterizerCachedMemory doesn't has pointer but should be considered as valid | |||
2016-09-29 | gpu: move MemoryFill, TextureCopy and DisplayTransfer into functions | wwylele | |
The old code indented too much to read. Split into functions and do general cleanup. | |||
2016-09-29 | rasterizer: separate TextureCopy from DisplayTransfer | wwylele | |
2016-09-22 | qt: shutdown system if error | wwylele | |
2016-09-22 | move ResetType to kernel.h | wwylele | |
2016-09-22 | name objects | wwylele | |
2016-09-22 | implement wait tree widget | wwylele | |
2016-09-21 | Remove special rules for Windows.h and library includes | Yuri Kunde Schlesner | |
2016-09-21 | Use negative priorities to avoid special-casing the self-include | Yuri Kunde Schlesner | |
2016-09-21 | Remove empty newlines in #include blocks. | Emmanuel Gil Peyrot | |
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | |||
2016-09-18 | Manually tweak source formatting and then re-run clang-format | Yuri Kunde Schlesner | |
2016-09-18 | Tweak formatting settings | Yuri Kunde Schlesner | |
2016-09-18 | Sources: Run clang-format on everything. | Emmanuel Gil Peyrot | |
2016-09-18 | Dyncom: Disable clang-format on the decoding table. | Emmanuel Gil Peyrot | |
2016-09-18 | Sources: Add a .clang-format configuration file. | Emmanuel Gil Peyrot | |
2016-09-15 | VideoCore: Fix dangling lambda context in shader interpreter | Yuri Kunde Schlesner | |
The static meant that after the first execution, these lambda context would be pointing to a random location on the stack. Fixes a random crash when using the interpreter. | |||
2016-09-15 | arm_dynarmic: Implement GetVFPSystemReg/SetVFPSystemReg. | bunnei | |
2016-09-15 | microprofile: Double buffer size to 16MB. | bunnei | |
2016-09-15 | arm: ResetContext shouldn't be part of ARM_Interface. | bunnei | |
2016-09-15 | arm_dynarmic/arm_dyncom: Remove unnecessary "virtual" keyword. | bunnei | |
2016-09-15 | dyncom: Use VFP_FPSCR/VFP_FPEXC. | bunnei | |
2016-09-15 | qt: Add UI configuration option to enable CPU JIT. | bunnei | |
2016-09-15 | core: Add configuration option for CPU JIT. | bunnei | |
2016-09-15 | dynarmic: Implement ARM CPU interface. | bunnei | |
2016-09-13 | Merge pull request #2064 from linkmauve/remove-readdir_r | Yuri Kunde Schlesner | |
Switch to readdir() from readdir_r() | |||
2016-09-13 | Common: readdir_r() is deprecated, switch to readdir(). | Emmanuel Gil Peyrot | |
2016-09-13 | Qt: fix birthday combo box updating | wwylele | |
2016-09-07 | audio_core: Tweak audio latency | MerryMage | |
2016-09-03 | Merge pull request #2050 from MerryMage/adpcm | Yuri Kunde Schlesner | |
codec: Fix ADPCM distortion caused by incorrect nibble order | |||
2016-09-03 | codec: Fix ADPCM distortion caused by incorrect nibble order | fincs | |
Closes #2049. Signed-off-by: MerryMage <MerryMage@users.noreply.github.com> | |||
2016-09-02 | Qt: unify running detection | wwylele | |
2016-08-31 | Merge pull request #2032 from bunnei/qt-graphics | bunnei | |
Qt graphics configure & V-Sync option | |||
2016-08-31 | qt: Rename all "toogle" to "toggle". | bunnei | |
2016-08-31 | configure_audio: User-configuratble option to enable/disable audio stretching | MerryMage | |