summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
* vk_graphics_pipeline: Resolve narrowing warningsGravatar Lioncash2020-07-161-2/+4
* Merge pull request #4327 from lioncash/desig2Gravatar Rodrigo Locatti2020-07-162-58/+38
|\
| * address_space_info: Use type alias to simplify codeGravatar Lioncash2020-07-131-14/+13
| * address_space_info: Make use of designated initializersGravatar Lioncash2020-07-132-46/+27
* | Merge pull request #4333 from lioncash/desig3Gravatar Rodrigo Locatti2020-07-161-198/+223
|\ \
| * | vk_graphics_pipeline: Make use of designated initializers where applicableGravatar Lioncash2020-07-131-198/+223
| |/
* | Merge pull request #4332 from lioncash/vkdevGravatar Rodrigo Locatti2020-07-161-124/+152
|\ \
| * | vk_device: Make use of designated initializers where applicableGravatar Lioncash2020-07-131-124/+152
| |/
* | Merge pull request #4321 from lioncash/desigGravatar bunnei2020-07-161-334/+384
|\ \
| * | vk_blit_screen: Make use of designated initializers where applicableGravatar Lioncash2020-07-121-334/+384
| |/
* | kernel: Add missing includeGravatar Lioncash2020-07-161-0/+1
* | cpu_manager: Mark function getters as staticGravatar Lioncash2020-07-164-10/+11
* | cpu_manager: Remove unused preemption_count variableGravatar Lioncash2020-07-161-1/+0
* | cpu_manager: Add missing includesGravatar Lioncash2020-07-161-0/+3
* | Merge pull request #4261 from ameerj/gc-calibrationGravatar bunnei2020-07-163-36/+67
|\ \
| * \ Rebase to masterGravatar Ameer2020-07-14118-1479/+3408
| |\ \
| * | | Break out of scan loop if can't find adapter on first runGravatar Ameer2020-07-101-0/+3
| * | | Rebase to master, fix merge conflictsGravatar Ameer2020-07-0821-302/+722
| |\ \ \
| * | | | Address PR feedback, fix axis button thresholdingGravatar Ameer2020-07-073-58/+22
| * | | | Brace the code! Fix compile error due to class member construction orderGravatar Ameer2020-07-062-15/+31
| * | | | Recalibrate reconnected controllersGravatar Ameer2020-07-061-0/+5
| * | | | Save origin state of GC controller analog features, compare against origin fo...Gravatar Ameer2020-07-063-28/+72
* | | | | Merge pull request #4337 from lat9nq/fix-per-game-asyncGravatar bunnei2020-07-163-0/+10
|\ \ \ \ \
| * | | | | clang-formatGravatar lat9nq2020-07-141-2/+1
| * | | | | settings: Move settings sanitization to its own functionGravatar lat9nq2020-07-144-4/+11
| * | | | | main: Set async gpu properly after loading per-game settingGravatar lat9nq2020-07-141-0/+4
* | | | | | Merge pull request #4297 from FearlessTobi/skip-profile-selectGravatar bunnei2020-07-161-9/+13
|\ \ \ \ \ \
| * | | | | | main/profile_select: Don't prompt for profile selection when only one is avai...Gravatar FearlessTobi2020-07-111-9/+13
* | | | | | | Merge pull request #4346 from lioncash/threadGravatar David2020-07-167-35/+26
|\ \ \ \ \ \ \
| * | | | | | | kernel/process: Move name and system context to the bottom of the member listGravatar Lioncash2020-07-151-6/+6
| * | | | | | | kernel/handle_table: Remove usages of the global system instanceGravatar Lioncash2020-07-154-8/+15
| * | | | | | | kernel/thread: Remove global GetCurrentThread()Gravatar Lioncash2020-07-153-23/+7
* | | | | | | | Merge pull request #4249 from Morph1984/delete-update-aoc-on-overwriteGravatar David2020-07-163-12/+94
|\ \ \ \ \ \ \ \
| * | | | | | | | Check for empty section0 and CNMT prior to installGravatar Morph2020-07-161-3/+19
| * | | | | | | | clang formatGravatar Morph2020-07-151-3/+3
| * | | | | | | | Use proper install result when overwriting filesGravatar Morph2020-07-152-3/+3
| * | | | | | | | Remove global system instance and address feedbackGravatar Morph2020-07-152-14/+10
| * | | | | | | | registered_cache: Remove previous update/dlc if it exists on installGravatar Morph2020-07-152-13/+83
| |/ / / / / / /
* | | | | | | | Merge pull request #4328 from lioncash/unused-var3Gravatar bunnei2020-07-151-2/+0
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | memory_layout: Remove unused data memberGravatar Lioncash2020-07-131-2/+0
| | |_|_|_|_|/ | |/| | | | |
* | | | | | | Merge pull request #4342 from lioncash/endianGravatar Rodrigo Locatti2020-07-141-42/+4
|\ \ \ \ \ \ \
| * | | | | | | common/swap: Make use of std::endianGravatar Lioncash2020-07-141-42/+4
| |/ / / / / /
* | | | | | | Merge pull request #4242 from ReinUsesLisp/maxwell-dmaGravatar bunnei2020-07-146-359/+468
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | |
| * | | | | | video_core/textures: Add and use SwizzleSliceToVoxel, and minor style changesGravatar ReinUsesLisp2020-07-105-84/+125
| * | | | | | maxwell_dma: Rename registers to match official docs and reorderGravatar ReinUsesLisp2020-07-072-287/+355
* | | | | | | Merge pull request #4294 from MerryMage/cpu-opt-settingsGravatar bunnei2020-07-1419-29/+685
|\ \ \ \ \ \ \
| * | | | | | | configure_cpu: Split optimization settings off into Debug tabGravatar MerryMage2020-07-129-163/+302
| * | | | | | | configure_cpu: Add tooltipsGravatar MerryMage2020-07-111-1/+54
| * | | | | | | configure_cpu: Show/Hide debugging optionsGravatar MerryMage2020-07-117-46/+135
| * | | | | | | configuration: Add settings to enable/disable specific CPU optimizationsGravatar MerryMage2020-07-1116-29/+404
| | |_|/ / / / | |/| | | | |