Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-29 | Clipper: Compact buffers on each clipping pass | Yuri Kunde Schlesner | |
Use a new buffer management scheme in the clipper that allows using a bounded minimal amount of buffer space. Even though it copies more data it is still slightly faster likely due to using less cache. | |||
2014-12-29 | Clipper: Avoid dynamic allocations | Yuri Kunde Schlesner | |
The triangle clipper was allocating its temporary input, output and work buffers using a std::vector. Since this is a hot path, it's desirable to use stack allocation instead. | |||
2014-12-29 | Vertex Shader: Zero OutputVertex to avoid denormals | Yuri Kunde Schlesner | |
Unused OutputVertex attributes were being left un-initialized. The leftover garbage sometimes decoded as floating-point denormalized values, causing fallbacks to microcode and massive slowdowns in the rest of the rasterization pipeline even though the results were unused. By zeroing the structure we ensure these attributes only contain harmless zeros. | |||
2014-12-28 | Merge pull request #347 from bunnei/frameskip | bunnei | |
Frameskip | |||
2014-12-28 | Merge pull request #355 from lioncash/simp | bunnei | |
armemu: Simplify some instructions. | |||
2014-12-28 | GPU: Implement frameskip and remove forced framebuffer swap hack. | bunnei | |
2014-12-28 | Merge pull request #352 from xdec/PR_XDEC_172 | bunnei | |
Qt: Citra crashes if disassembler pause button is pressed while no game is running. #172 | |||
2014-12-28 | Merge pull request #359 from lioncash/vfp | bunnei | |
vfp: Actually make the code somewhat readable | |||
2014-12-28 | Merge pull request #331 from yuriks/handle-reform | bunnei | |
New Handle manager | |||
2014-12-28 | vfp: Actually make the code somewhat readable | Lioncash | |
2014-12-28 | dyncom: Implement PKHBT and PKHTB. | bunnei | |
2014-12-28 | armemu: Fix PKHTB to do an arithmetic shift and correctly decode immediate ↵ | bunnei | |
field. | |||
2014-12-28 | Qt: we don't need to check if model is valid. | xdec | |
2014-12-28 | dyncom: Implement USAD8/USADA8 | Lioncash | |
2014-12-28 | armemu: Simplify SSAT/SSAT16/SXTB/SXTAB | Lioncash | |
2014-12-28 | armemu: Simplify REV/REV16/SXTH/SXTAH | Lioncash | |
2014-12-28 | Merge pull request #354 from lioncash/usaduflow | bunnei | |
armemu: Fix underflows in USAD8/USADA8 | |||
2014-12-28 | armemu: Simplify USAT16/UXTB/UXTAB | Lioncash | |
2014-12-28 | armemu: Simplify REVSH/UXTH/UXTAH | Lioncash | |
2014-12-28 | Kernel: New handle manager | Yuri Kunde Schlesner | |
This handle manager more closely mirrors the behaviour of the CTR-OS one. In addition object ref-counts and support for DuplicateHandle have been added. Note that support for DuplicateHandle is still experimental, since parts of the kernel still use Handles internally, which will likely cause troubles if two different handles to the same object are used to e.g. wait on a synchronization primitive. | |||
2014-12-28 | Kernel: Replace GetStaticHandleType by HANDLE_TYPE constants | Yuri Kunde Schlesner | |
2014-12-28 | Rename ObjectPool to HandleTable | Yuri Kunde Schlesner | |
2014-12-28 | armemu: Fix underflows in USAD8/USADA8 | Lioncash | |
Initially reported by xdec. | |||
2014-12-28 | Fix crash when the disassembler pause button is pressed while no game is ↵ | xdec | |
running. | |||
2014-12-27 | dyncom: Implement UQADD8, UQADD16, UQSUB8, UQSUB16, UQASX, and UQSAX. | Lioncash | |
2014-12-27 | armemu: Implement UQADD8, UQADD16, UQSUB16, UQASX, and UQSAX | Lioncash | |
2014-12-27 | dyncom: Implement UHADD8, UHADD16, UHSUB8, UHSUB16, UHASX, and UHSAX | Lioncash | |
2014-12-27 | Merge pull request #348 from lioncash/uhops | bunnei | |
armemu: Implement UHADD8, UHADD16, UHSUB8, UHSUB16, UHASX, and UHSAX | |||
2014-12-26 | armemu: Implement UHADD8, UHADD16, UHSUB8, UHSUB16, UHASX, and UHSAX | Lioncash | |
2014-12-26 | GPU: Change internal framerate to 30fps. | bunnei | |
2014-12-26 | Merge pull request #327 from Apology11/master | bunnei | |
Fix visual studio ambiguous symbol error | |||
2014-12-25 | Merge pull request #339 from bunnei/fixup-gsp-synch | bunnei | |
Fixup gsp synch | |||
2014-12-25 | Merge pull request #330 from purpasmart96/new_srv | bunnei | |
More services & small clean ups | |||
2014-12-25 | GPU: Further improve synchronization. | bunnei | |
2014-12-25 | ARM: Add a mechanism for faking CPU time elapsed during HLE. | bunnei | |
- Also a few cleanups. | |||
2014-12-25 | More services & small clean ups | purpasmart96 | |
2014-12-25 | Merge pull request #343 from lioncash/smmla | bunnei | |
armemu: Implement SMMUL, SMMLA, and SMMLS. | |||
2014-12-25 | Merge pull request #341 from lioncash/moresmops | bunnei | |
armemu: Implement SMLALD/SMLSLD | |||
2014-12-25 | armemu: Implement SMMUL, SMMLA, and SMMLS. | Lioncash | |
2014-12-24 | armemu: Implement SMLALD/SMLSLD | Lioncash | |
2014-12-24 | armemu: Fix GE/Q flag setting semantics | Lioncash | |
2014-12-23 | Merge pull request #328 from archshift/writeable | bunnei | |
Stubbed IsSdmcWriteable to always return writeable. | |||
2014-12-23 | Stubbed IsSdmcWriteable to always return writeable. | archshift | |
2014-12-23 | armemu: Set the Q flag correctly for much of the other ops | Lioncash | |
They were setting the old S flag. | |||
2014-12-23 | armemu: Set the Q flag properly for SMLAD/SMUAD | Lioncash | |
2014-12-23 | Merge pull request #334 from lioncash/cpsr | bunnei | |
armemu: Fix retrieval of the CPSR in MRS instructions. | |||
2014-12-23 | Merge pull request #335 from lioncash/cpsrcreate | bunnei | |
armemu: Emulate the GE and Q flags. | |||
2014-12-22 | armemu: Properly set the Q flag for SSAT16/USAT16 upon saturation. | Lioncash | |
2014-12-22 | armemu: Fix SEL | Lioncash | |
Needs to use the updated state of the CPSR. | |||
2014-12-22 | armemu: Fix construction of the CPSR | Lioncash | |