summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-08-25Avoid `$<CXX_COMPILER_ID:Clang>` because it doesn't include AppleClang.comex
2023-08-25Warnings cleanup for GCC 13 and Clang 16comex
Note: For GCC there are still a huge number of `-Warray-bounds` warnings coming from `externals/dynarmic`. I could have added a workaround in `externals/CMakeLists.txt` similar to what this PR does for other externals, but given Dynarmic's close affiliation with Yuzu, it would be better to fix it upstream. Besides that, on my machine, this makes the build warning-free except for some warnings from glslangValidator and AutoMoc. Details: - Disable some warnings in externals. - Disable `-Wnullability-completeness`, which is a Clang warning triggered by the Vulkan SDK where if any pointers in the header are marked _Nullable, it wants all pointers to be marked _Nullable or _Nonnull. Most of them are, but some aren't. Who knows why. - `src/web_service/verify_user_jwt.cpp`: Disable another warning when including `jwt.hpp`. - `src/input_common/input_poller.cpp`: Add missing `override` specifiers. - src/common/swap.h: Remove redundant `operator&`. In general, this file declares three overloads of each operator. Using `+` as an example, the overloads are: - a member function for `swapped_t + integer` - a member function for `swapped_t + swapped_t` - a free function for `integer + swapped_t` But for `operator&`, there was an additional free function for `swapped_t + integer`, which was redundant with the member function. This caused a GCC warning saying "ISO C++ says that these are ambiguous".
2023-08-25Merge pull request #11377 from BenjaminHalko/reverse-slider-inputliamwhite
ui: Fixed inverted controls on ReverseSlider widgets
2023-08-25Merge pull request #11378 from t895/game-flagliamwhite
android: Use appCategory to specify the app is a game
2023-08-25Merge pull request #11370 from FearlessTobi/fix-filesizeliamwhite
filesystem: Return correct error for RenameFile when dest_path already exists
2023-08-25Merge pull request #11371 from FearlessTobi/fix-cli-updatesliamwhite
yuzu/main: Ensure NCAs are registered in content provider when launching from CLI
2023-08-26ssl: tolerate handshake without hostname set (#11328)liamwhite
2023-08-26registered_cache: create fake CNMT entries for program updates of ↵liamwhite
multiprogram applications (#11319)
2023-08-25kernel: offset code entry point for 39-bit address space type (#11326)liamwhite
2023-08-25android: Use appCategory to specify the app is a gameCharles Lombardo
2023-08-25Merge pull request #11357 from liamwhite/lime-vfsbunnei
android: jni: ensure NCAs from loaded filepath are registered in manual content provider
2023-08-25ui: Fixed inverted controls on ReverseSlider widgetsBenjaminHalko
fixes: #11236
2023-08-25Merge pull request #11375 from liamwhite/nvhost-as-gpuFernando S
nvhost_as_gpu: ensure mappings are aligned to big page size when deallocated
2023-08-25nvhost_as_gpu: ensure mappings are aligned to big page size when deallocatedLiam
2023-08-24yuzu/main: Ensure NCAs are registered in content provider when launching ↵FearlessTobi
from CLI Fixes updates and DLC not being loaded when launching yuzu from the command line. Similar to https://github.com/yuzu-emu/yuzu/pull/11357. Fixes https://github.com/yuzu-emu/yuzu/issues/8352,
2023-08-24filesystem: Return correct error for RenameFile when dest_path already existsFearlessTobi
Allows Grid Autosport to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/8287.
2023-08-24Merge pull request #11327 from liamwhite/skyline-2liamwhite
sockets: avoid locking around socket session calls
2023-08-24Merge pull request #11367 from FearlessTobi/fix-filesizeliamwhite
game_list_worker: Display correct size for NAX games
2023-08-24game_list_worker: Display correct size for NAX gamesFearlessTobi
This was a regression from https://github.com/yuzu-emu/yuzu/pull/1837. Fixes https://github.com/yuzu-emu/yuzu/issues/1938.
2023-08-23Merge pull request #11352 from t895/recurse-subfoldersliamwhite
android: Search game directory recursively
2023-08-23android: Set default build variant to mainlineRelWithDebInfo (#11358)Charles Lombardo
2023-08-22android: jni: ensure NCAs from loaded filepath are registered in manual ↵Liam
content provider
2023-08-22android: Search game directory recursivelyCharles Lombardo
2023-08-22Merge pull request #11302 from vonchenplus/vulkan_macosliamwhite
Add macos moltenvk bundle, Add copy moltevk dylib script
2023-08-22Merge pull request #11303 from lat9nq/screenshots-configurableliamwhite
yuzu-qt: Add configuration for screenshot resolution
2023-08-22Merge pull request #11316 from FernandoS27/stop-premature-christmas-decoratingliamwhite
Shader Recompiler: implement textureGrad 3D
2023-08-22Merge pull request #11346 from t895/ktlint-fixliamwhite
android: lint: Delete generated ktlint folder between builds
2023-08-22Add macos moltenvk bundle, Add copy moltevk dylib scriptFeng Chen
2023-08-21android: lint: Delete generated ktlint folder between buildsCharles Lombardo
There's a bug in ktlint where it will run into an error if you build the project, delete a source file, and then build again. It will be unable to find the file you deleted and can't recover until these files are deleted. This just deletes those files before every run.
2023-08-21android: Show associated value in home settings (#11272)Charles Lombardo
2023-08-21Merge pull request #11309 from liamwhite/full-xciliamwhite
file_sys/card_image: support dumps with prepended key area
2023-08-21Merge pull request #11342 from liamwhite/skyline-4liamwhite
patch_manager: apply manual HTML patches when present
2023-08-21Merge pull request #11149 from ameerj/astc-perf-prodliamwhite
host_shaders: ASTC compute shader optimizations
2023-08-21android: Use sensor landscape for landscape mode (#11337)Charles Lombardo
2023-08-21patch_manager: apply manual HTML patches when presentLiam
2023-08-21Merge pull request #11284 from liamwhite/nca-releaseFernando S
vfs: expand support for NCA reading
2023-08-19sockets: avoid locking around socket session callsLiam
2023-08-19Merge pull request #11320 from Kelebek1/mask_depthstencil_clearFernando S
Support masked depthstencil clears
2023-08-19Masked depthstencil clearsKelebek1
2023-08-18Shader Recomnpiler: implement textuzreGrad 3D emulation constant propagationFernando Sahmkow
2023-08-18Merge pull request #11278 from Kelebek1/dma_syncliamwhite
Mark accelerated DMA destination buffers and images as GPU-modified
2023-08-18Merge pull request #11288 from liamwhite/svc-tickliamwhite
kernel: remove relative task registration
2023-08-18Merge pull request #11310 from vonchenplus/vulkan_formatliamwhite
video_core: Fix vulkan format assert error
2023-08-18video_core: Fix vulkan assert errorFeng Chen
2023-08-17file_sys/card_image: support dumps with prepended key areaLiam
2023-08-17Merge pull request #10989 from comex/epipeliamwhite
sockets: Improve behavior when sending to closed connection
2023-08-17cmake: mark warning disable for gcc 11 (#11301)liamwhite
2023-08-16uisettings: Add TODO for stretched aspect being ignoredlat9nq
2023-08-16file_sys: tolerate empty NCALiam
2023-08-16configure_ui: Silence MSVC warninglat9nq