summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | core: Initialize: Add missing braces.Gravatar bunnei2022-10-181-2/+4
| | | | | | | | |
| * | | | | | | | core: core_timing: Re-initialize if single/multicore state changes.Gravatar bunnei2022-10-183-14/+36
| | | | | | | | |
| * | | | | | | | core: core_timing: Remove unused IsHostTiming.Gravatar bunnei2022-10-181-5/+0
| | | | | | | | |
| * | | | | | | | core: hle: kernel: Use result macros for new/changed code.Gravatar bunnei2022-10-189-128/+110
| | | | | | | | |
| * | | | | | | | core: Partially persist emulation state across game boots.Gravatar bunnei2022-10-188-58/+65
| | | | | | | | |
| * | | | | | | | core: hle: kernel: Fix InitializePreemption order.Gravatar bunnei2022-10-181-1/+1
| | | | | | | | |
| * | | | | | | | core: hle: kernel: k_process: Improve management of page table & cleanup.Gravatar bunnei2022-10-187-60/+92
| | | | | | | | |
| * | | | | | | | core: hle: kernel: k_interrupt_manager: HandleInterrupt should not depend on ↵Gravatar bunnei2022-10-181-12/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | current process.
| * | | | | | | | core: hle: kernel: Remove junk.Gravatar bunnei2022-10-181-9/+0
| | | | | | | | |
| * | | | | | | | core: hle: kernel: k_page_table: Impl. LockForUn/MapDeviceAddressSpace, cleanup.Gravatar bunnei2022-10-183-545/+624
| | | | | | | | |
| * | | | | | | | video_core: renderer_vulkan: vk_query_cache: Avoid shutdown crash in ↵Gravatar bunnei2022-10-181-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QueryPool::Reserve.
| * | | | | | | | core: hle: kernel: Integration application memory block slab manager.Gravatar bunnei2022-10-183-3/+44
| | | | | | | | |
| * | | | | | | | core: hle: kernel: k_page_table: Update, and integrate with new ↵Gravatar bunnei2022-10-182-251/+393
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | KMemoryBlockManager/SlabManager.
| * | | | | | | | core: hle: kernel: k_memory_block: Update.Gravatar bunnei2022-10-182-119/+391
| | | | | | | | |
| * | | | | | | | core: hle: kernel: k_memory_block_manager: Update.Gravatar bunnei2022-10-182-174/+380
| | | | | | | | |
| * | | | | | | | core: hle: kernel: k_thread: Implement thread termination DPC.Gravatar bunnei2022-10-185-1/+99
| | | | | | | | |
| * | | | | | | | core: hle: kernel: Add KDynamicResourceManager.Gravatar bunnei2022-10-182-0/+59
| | | | | | | | |
| * | | | | | | | core: hle: kernel: Add KDynamicSlabHeap.Gravatar bunnei2022-10-182-0/+123
| | | | | | | | |
| * | | | | | | | core: hle: kernel: Add KDynamicPageManager.Gravatar bunnei2022-10-182-0/+137
| | | | | | | | |
| * | | | | | | | core: hle: kernel: k_process: Change Status -> State.Gravatar bunnei2022-10-183-37/+27
| | | | | | | | |
| * | | | | | | | core: hle: kernel: svc_types: Add SystemThreadPriorityHighest and ProcessState.Gravatar bunnei2022-10-181-0/+13
| | | | | | | | |
| * | | | | | | | core: device_memory: Templatize GetPointer(..).Gravatar bunnei2022-10-189-19/+21
| | | | | | | | |
| * | | | | | | | core: hle: result: Add GetInnerValue and Includes methods.Gravatar bunnei2022-10-181-0/+8
| | | | | | | | |
| * | | | | | | | core: hle: kernel: svc_common: Add WaitInfinite & cleanup.Gravatar bunnei2022-10-181-2/+5
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge pull request #9084 from vonchenplus/dma_copyGravatar Fernando S2022-10-197-73/+415
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | video_core: implement 1D copies based on VMM 'kind'
| * | | | | | | video_core: implement 1D copies based on VMM 'kind'Gravatar FengChen2022-10-172-56/+73
| | | | | | | |
| * | | | | | | video_core: Implement memory manager page kindGravatar FengChen2022-10-175-17/+342
| | | | | | | |
* | | | | | | | Merge pull request #9054 from Docteh/just_lz4Gravatar bunnei2022-10-171-1/+5
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | CMake: Try add_library "lz4" if "lz4::lz4" is unavailable
| * | | | | | | | CMake: Try add library "LZ4::lz4_shared" if "lz4::lz4" is unavailableGravatar Kyle Kienapfel2022-10-131-1/+5
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Right now this looks like a distro specific problem, but we'll have to see. Over on Gentoo: with lz4 1.9.3 there is a lz4::lz4 library target, with 1.9.4 it's no longer mentioned in the cmake files provided by the package. (/usr/lib64/cmake/lz4) arch and openSUSE have lz4 1.9.4 available so I checked there, they only have .pc files for pkg-config, so asking for "lz4::lz4" works as usual MSVC does require "lz4::lz4" to be asked for
* | | | | | | | Merge pull request #9087 from Morph1984/onceGravatar bunnei2022-10-172-54/+45
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | general: Add missing pragma once
| * | | | | | | fixed_point: Replace CONSTEXPR14 with constexprGravatar Morph2022-10-171-50/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As we require the latest C++ standards to compile yuzu, checking for C++14 constexpr is not needed.
| * | | | | | | general: Add missing pragma onceGravatar Morph2022-10-172-4/+3
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #9079 from Morph1984/unknown-unkownsGravatar Morph2022-10-175-18/+18
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | general: Fix spelling
| * | | | | | | video_core: Fix spelling of "synchronize"Gravatar Morph2022-10-162-5/+5
| | | | | | | |
| * | | | | | | general: Fix spelling of "unknown"Gravatar Morph2022-10-163-13/+13
| |/ / / / / /
* | | | | | | sdl2_sink: Inline variable init into if conditionGravatar lat9nq2022-10-161-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Mai <mathew1800@gmail.com>
* | | | | | | sdl2_sink: Distinguish between capture and non-capture device namesGravatar lat9nq2022-10-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The function prototype appears to care whether we are loading capture devices or not, and SDL_GetAudioDeviceName has a parameter to use it, but for some reason it isn't. This puts `capture` where it goes.
* | | | | | | sdl2_sink: Check for null string when loading SDL audio devicesGravatar lat9nq2022-10-161-1/+4
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Attempting to place a null string into a vector of strings causes an error that closes the application. Don't.
* | | | | | fix a tiny spelling mistakeGravatar Kyle Kienapfel2022-10-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Kreato pointed this out over on discord.
* | | | | | Merge pull request #9061 from liamwhite/writable-eventGravatar liamwhite2022-10-1437-232/+151
|\ \ \ \ \ \ | | | | | | | | | | | | | | kernel: remove KWritableEvent
| * | | | | | kernel: remove KWritableEventGravatar Liam2022-10-1237-232/+151
| | | | | | |
* | | | | | | Merge pull request #9055 from liamwhite/hblGravatar liamwhite2022-10-1415-55/+572
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Preliminary support for nx-hbloader
| * | | | | | | k_server_session: preliminary support for userspace server sessionsGravatar Liam2022-10-119-49/+346
| | | | | | | |
| * | | | | | | Add implementation of svcCreateSessionGravatar Liam2022-10-112-1/+103
| | | | | | | |
| * | | | | | | general: preliminary support for hblGravatar Liam2022-10-116-6/+124
| | | | | | | |
* | | | | | | | audio_core: Revert sink name to sdl2Gravatar Narr the Reg2022-10-141-2/+2
| |_|/ / / / / |/| | | | | |
* | | | | | | Merge pull request #9067 from Morph1984/tess-cwGravatar liamwhite2022-10-133-6/+6
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | renderer_(opengl/vulkan): Fix tessellation clockwise parameter
| * | | | | | | renderer_(opengl/vulkan): Fix tessellation clockwise parameterGravatar Morph2022-10-133-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should be assigned CW only on Triangles_CW rather than not Triangles_CCW, making CCW the default winding order rather than CW.
* | | | | | | | Merge pull request #9039 from Kelebek1/auto_backendGravatar liamwhite2022-10-137-32/+95
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Auto select the SDL audio backend when Cubeb latency is too high
| * | | | | | | | Choose the SDL audio backend when Cubeb reports too high of a latencyGravatar Kelebek12022-10-097-32/+95
| | | | | | | | |