summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #3497 from FernandoS27/microprogfile-extendGravatar bunnei2020-03-121-2/+2
|\ | | | | Small corrections and features to microprofile
| * NVFlinger: Do the microprofile Flip after processing a valid frame.Gravatar Fernando Sahmkow2020-03-121-2/+2
| |
* | framebuffer_layout.h: drop the use of enum for screen dimensions.Gravatar Vitor Kiguchi2020-03-112-10/+10
|/ | | | +clang format
* Merge pull request #3301 from ReinUsesLisp/state-trackerGravatar Rodrigo Locatti2020-03-091-0/+1
|\ | | | | video_core: Remove gl_state and use a state tracker based on dirty flags
| * video_core: Reintroduce dirty flags infrastructureGravatar ReinUsesLisp2020-02-281-0/+1
| |
* | Merge pull request #3452 from Morph1984/anisotropic-filteringGravatar bunnei2020-03-071-0/+1
|\ \ | | | | | | frontend/Graphics: Add "Advanced" graphics tab and experimental Anisotropic Filtering support
| * | Create an "Advanced" tab in the graphics configuration tab and add ↵Gravatar Morph2020-02-271-0/+1
| |/ | | | | | | anisotropic filtering levels.
* | core: hle: Implement separate A32/A64 SVC interfaces.Gravatar bunnei2020-03-022-107/+380
| |
* | core: Implement separate A32/A64 ARM interfaces.Gravatar bunnei2020-03-0220-120/+452
| |
* | core: loader: Remove check for 32-bit.Gravatar bunnei2020-03-021-6/+0
| |
* | core: dynarmic: Add CP15 from Citra.Gravatar bunnei2020-03-023-0/+234
| |
* | Merge pull request #3464 from FernandoS27/jit-fixGravatar bunnei2020-03-022-4/+19
|\ \ | |/ |/| ARM_Interface: Cache the JITs instead of deleting/recreating.
| * ARM_Interface: Cache the JITs instead of deleting/recreating.Gravatar Fernando Sahmkow2020-02-262-4/+19
| | | | | | | | | | | | This was a bug inherited from citra which was fixed by then at some time. This commit corrects such bug and ensures JITs are correctly recycled.
* | Merge pull request #3430 from bunnei/split-presenterGravatar bunnei2020-02-2710-28/+32
|\ \ | | | | | | Port citra-emu/citra#4940: "Split Presentation thread from Render thread"
| * | renderer_opengl: Move Frame/FrameMailbox to OpenGL namespace.Gravatar bunnei2020-02-261-41/+0
| | |
| * | core: frontend: Refactor scope_acquire_window_context to scope_acquire_context.Gravatar bunnei2020-02-255-25/+28
| | |
| * | frontend: sdl2: emu_window: Implement separate presentation thread.Gravatar bunnei2020-02-251-3/+0
| | |
| * | renderer_opengl: Add texture mailbox support for presenter thread.Gravatar bunnei2020-02-251-0/+1
| | |
| * | core: frontend: emu_window: Add TextureMailbox class.Gravatar bunnei2020-02-251-0/+41
| | |
| * | core: settings: Add setting to enable vsync, which is on by default.Gravatar bunnei2020-02-253-0/+3
| |/
* | AM/ICommonStateGetter: Stub SetLcdBacklighOffEnabled (#3454)Gravatar Morph2020-02-272-2/+14
| | | | | | | | | | | | | | | | | | * Stub SetLcdBacklighOffEnabled Used by Super Smash Bros. Ultimate We require backlight services to be implemented to turn on/off the backlight. * Address feedback
* | Merge pull request #3431 from CJBok/npad-fixGravatar bunnei2020-02-251-5/+5
|\ \ | |/ |/| InputCommon: analog_from_button get direction implementation
| * analog_from_button get direction implementationGravatar CJBok2020-02-181-5/+5
| |
* | Scheduler: Inline global scheduler in Scheduler Lock.Gravatar Fernando Sahmkow2020-02-221-4/+2
| |
* | Kernel: Correct pending feedback.Gravatar Fernando Sahmkow2020-02-221-3/+4
| |
* | System: Expose Host thread registering routines from kernel.Gravatar Fernando Sahmkow2020-02-222-0/+14
| |
* | Kernel: Address Feedback.Gravatar Fernando Sahmkow2020-02-226-30/+47
| |
* | Kernel: Implement Scheduler locksGravatar Fernando Sahmkow2020-02-222-0/+89
| |
* | Kernel: Implement Time Manager.Gravatar Fernando Sahmkow2020-02-225-1/+98
| |
* | Kernel: Rename ThreadCallbackHandleTable and Setup Thread Ids on Kernel.Gravatar Fernando Sahmkow2020-02-225-24/+107
| |
* | Kernel: Make global scheduler depend on KernelCoreGravatar Fernando Sahmkow2020-02-224-8/+24
| |
* | httplib compatibilityGravatar Brian Clinkenbeard2020-02-181-3/+4
|/
* Merge pull request #3412 from Morph1984/aspect-ratioGravatar bunnei2020-02-173-3/+34
|\ | | | | GUI: Add aspect ratio dropdown
| * Add 4:3 aspect ratio and address feedbackGravatar Morph2020-02-142-10/+13
| |
| * Address feedbackGravatar Morph2020-02-142-18/+26
| |
| * Use enumeration instead of magic numbersGravatar Morph2020-02-132-5/+11
| |
| * Add following aspect ratios: 16:9, 21:9, Stretch to WindowGravatar Morph2020-02-132-2/+16
| | | | | | | | Available as a drop down within the configure graphics tab.
* | Merge pull request #3420 from namkazt/master2Gravatar bunnei2020-02-172-0/+20
|\ \ | | | | | | nvhost_gpu: implement ChannelSetTimeslice
| * | nvhost_gpu: implement ChannelSetTimesliceGravatar namkazy2020-02-162-0/+20
| | |
* | | IUserLocalCommunicationService: add function Initialize2Gravatar Nguyen Dac Nam2020-02-161-1/+9
| | |
* | | HLE: correct function name of IUserLocalCommunicationServiceGravatar Nguyen Dac Nam2020-02-161-1/+1
|/ / | | | | | | 402: function name should be Initialize2 (7.0.0+) not SetOperationMode Follow by: https://switchbrew.org/wiki/LDN_services#IUserLocalCommunicationService
* | Merge pull request #3401 from FernandoS27/synchronizationGravatar bunnei2020-02-1440-202/+402
|\ \ | | | | | | Set of refactors for Kernel Synchronization and Hardware Constants
| * | Core: Correct compilition in GCCGravatar Fernando Sahmkow2020-02-141-0/+2
| | |
| * | Core: Address FeedbackGravatar Fernando Sahmkow2020-02-136-24/+50
| | |
| * | Core: Set all hardware emulation constants in a single file.Gravatar Fernando Sahmkow2020-02-1117-53/+88
| | |
| * | Kernel: Refactor synchronization to better match REGravatar Fernando Sahmkow2020-02-1123-80/+212
| | |
| * | Kernel: Change WaitObject to Synchronization object. In order to better ↵Gravatar Fernando Sahmkow2020-02-1120-73/+78
| | | | | | | | | | | | reflect RE.
* | | Merge pull request #3400 from makigumo/patch-1Gravatar bunnei2020-02-131-2/+4
|\ \ \ | |_|/ |/| | update hwopus DecodeInterleaved for FW 7.0.0+
| * | update hwopus DecodeInterleaved for FW 7.0.0+Gravatar makigumo2020-02-111-2/+4
| |/ | | | | | | trivial change, see https://switchbrew.org/wiki/Audio_services#IHardwareOpusDecoder
* | address_arbiter: Collapse loops in InsertThread() and RemoveThread()Gravatar Lioncash2020-02-121-19/+17
| | | | | | | | | | Same behavior, but without the need to explicitly loop through everything manually.