| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-07-28 | dyncom: Remove an unnecessary typedef | Lioncash | |
| 2015-07-28 | dyncom: Use enum class for instruction decoding results | Lioncash | |
| 2015-07-27 | Move input values into an array | James Rowe | |
| 2015-07-27 | dyncom: Remove code duplication regarding thumb instructions | Lioncash | |
| 2015-07-27 | dyncom: Migrate exclusive memory access control into armstate | Lioncash | |
| 2015-07-27 | dyncom: Remove duplicated typedef and extern | Lioncash | |
| These are already present in arm_dyncom_dec.h. | |||
| 2015-07-27 | Merge pull request #1001 from lioncash/arm | bunnei | |
| dyncom: Centralize state-related functions. | |||
| 2015-07-26 | Merge pull request #991 from yuriks/globjects | bunnei | |
| OpenGL: Make OpenGL object resource wrappers fully inline | |||
| 2015-07-26 | dyncom: Use std::array for register arrays | Lioncash | |
| 2015-07-26 | dyncom: Use ARMul_State as an object | Lioncash | |
| Gets rid of C-like parameter passing. | |||
| 2015-07-26 | Merge pull request #992 from yuriks/hot-path-debug | bunnei | |
| VideoCore: #ifdef out some debugging routines | |||
| 2015-07-26 | citra-qt/debug_utils: Use lock_guard everywhere | Lectem | |
| unique_lock were being used as lock_guards. Also replaced manual lock/unlock by lock_guard for harmonization. | |||
| 2015-07-26 | citra-qt/command list: Do not recreate a widget after each selection | Lectem | |
| Recreating / replacing a widget is slow since it triggers a layout pass. | |||
| 2015-07-26 | citra-qt/command list: Add mask column | Lectem | |
| 2015-07-26 | citra-qt/command list: monospace font on windows | Lectem | |
| 2015-07-26 | OpenGL: Make OpenGL object resource wrappers fully inline | Yuri Kunde Schlesner | |
| The functions are so simple that having them separate only bloats the code and hinders optimization. | |||
| 2015-07-26 | Merge pull request #987 from yuriks/regnames | Tony Wasserka | |
| Videocore: Don't reinitialize register name map on every query. | |||
| 2015-07-26 | Videocore: Don't reinitialize register name map on every query | Yuri Kunde Schlesner | |
| This greatly speeds up the command list debug widget. | |||
| 2015-07-26 | Merge pull request #995 from linkmauve/remove-dead-option | Yuri Kunde Schlesner | |
| Remove dead gpu_refresh_rate option from the default ini file | |||
| 2015-07-26 | Citra: Remove dead gpu_refresh_rate option from the default ini file. | Emmanuel Gil Peyrot | |
| 2015-07-26 | Merge pull request #986 from Lectem/better_widgets | Tony Wasserka | |
| citra-qt: Improve pica command list widget. | |||
| 2015-07-26 | Videocore: Simplify variables in vertex shader interpreter | Yuri Kunde Schlesner | |
| Simplifies the code and gives a tiny speed-up. | |||
| 2015-07-26 | Videocore: Replace std::stack in shader interpreter with static_vector | Yuri Kunde Schlesner | |
| Shaves off 1/3rd of the vertex shader time in Fire Emblem | |||
| 2015-07-26 | VideoCore: #ifdef out some debugging routines | Yuri Kunde Schlesner | |
| Some disabled debugging functionality was being called from rendering routines in VideoCore. Although disabled, many of them still allocated memory or did some extra work that was enough to show up in a profiler. Gives a slight (~2ms) speedup. | |||
| 2015-07-25 | dyncom: Remove unnecessary initialization code. | Lioncash | |
| Targeting ARM version variants was only a thing on armemu. The reset routine also does basically the same thing as NewState. | |||
| 2015-07-25 | dyncom: Remove unnecessary abort-related cruft | Lioncash | |
| Both the MPCore and the ARM9 have the same data abort model (base restored), so differentiating isn't necessary. | |||
| 2015-07-25 | dyncom: Rename armdefs.h to armstate.h | Lioncash | |
| 2015-07-25 | dyncom: Get rid of skyeye typedefs | Lioncash | |
| 2015-07-25 | dyncom: Move helper functions to their own header | Lioncash | |
| 2015-07-25 | dyncom: Move arminit.cpp and armsupp.cpp into skyeye_common | Lioncash | |
| 2015-07-25 | Merge pull request #989 from lioncash/extern | Yuri Kunde Schlesner | |
| armdefs: Remove unnecessary extern keywords | |||
| 2015-07-25 | armdefs: Remove unnecessary extern keywords | Lioncash | |
| 2015-07-25 | loader: Remove unnecessary else usages | Lioncash | |
| 2015-07-25 | citra-qt/command list: Enable uniform row heights and automatically resize ↵ | Lectem | |
| columns. Uniform row heights enables some optimisations for a smoother scrolling. Resize columns to content so that we don't have to do it manually | |||
| 2015-07-25 | citra-qt/command list: Split register and value columns. | Lectem | |
| Also removed the extra spaces for each cell | |||
| 2015-07-25 | Merge pull request #888 from zawata/Warning-Fixes-2 | Yuri Kunde Schlesner | |
| Core\HLE : Fix Warning | |||
| 2015-07-25 | Address error that remained in last merge | Yuri Kunde Schlesner | |
| 2015-07-25 | Merge pull request #892 from zawata/another-warning-fixes | Yuri Kunde Schlesner | |
| Yet More Warning Fixes | |||
| 2015-07-25 | Merge pull request #981 from Subv/checkboxes | Yuri Kunde Schlesner | |
| Qt/GPU Breakpoints: Changed the widget to have a checkbox next to each bp type | |||
| 2015-07-23 | Service/APT: Fixed a regression, PreloadLibraryApplet should also start an ↵ | Subv | |
| applet when called. | |||
| 2015-07-23 | Service/APT: Return proper parameters in GetLockHandle. | Subv | |
| Documented some APT functions This allows applets to boot. | |||
| 2015-07-23 | Qt/GPU Breakpoints: Changed the widget so that we don't have to select and ↵ | Subv | |
| click the Enable button when enabling/disabling a breakpoint, now it is done via a checkbox next to the breakpoint's name. | |||
| 2015-07-23 | Merge pull request #983 from yuriks/null-memory-fill | Yuri Kunde Schlesner | |
| GSP: Don't try to write memory fill registers if start address is 0 | |||
| 2015-07-23 | GSP: Don't try to write memory fill registers if start address is 0 | Yuri Kunde Schlesner | |
| Verified to be what GSP does via REing. Fixes invalid virt->phys translation error spam in some games. | |||
| 2015-07-24 | Merge pull request #980 from Subv/more_breakpoints | Tony Wasserka | |
| Qt/GPU Breakpoints: Added three more breakpoint types. | |||
| 2015-07-23 | VideoCore: Fix values of unset components in input attribute arrays | Yuri Kunde Schlesner | |
| If an input attribute array had a field with less than 4 components, the remaining components were left unset if not specified by a default vertex attribute. If neither mechanism would set a component, it would assume a garbage value. It has been verified that the hardware behavior is to instead to set the missing components from the fixed default of (0 0 0 1). The default vertex attribute values aren't used at all if a vertex array is specified for that attribute. Fixes UI graphics on Fire Emblem: Awakening, a small texturing glitch when selecting a character in Cubic Ninja, as well as eliminating the unset-W hack which was required for Ocarina of Time to not have garbled triangles. This change has been tested against hardware. | |||
| 2015-07-23 | VideoCore: Saturate vertex colors before interpolating | Yuri Kunde Schlesner | |
| During testing, it was discovered that hardware does not interpolate colors output by the vertex shader as-is. Rather, it drops the sign and saturates the value to 1.0. This is done before interpolation, such that (e.g.) interpolating outputs 1.5 and -0.5 is equivalent to as if the shader had output the values 1.0 and 0.5 instead, with the interpolated value never crossing 0.0. This change has been tested against hardware. | |||
| 2015-07-23 | Qt/GPU Breakpoints: Added three more breakpoint types: | Subv | |
| * IncomingDisplayTransfer: Triggered just before a display transfer is performed. * GSPCommandProcessed: Triggered right after a GSP command is processed. * BufferSwapped: Triggered when the frames flip | |||
| 2015-07-23 | Merge pull request #977 from yuriks/glenable-tex2d | bunnei | |
| GL Renderer: Remove erroneous glEnable(GL_TEXTURE_2D) calls | |||
| 2015-07-22 | Rasterizer/GL: Set the border color when binding a texture. | Subv | |
