ReinUsesLisp
1423e5d59d
gl_buffer_cache: Remove unused ReserveMemory method
7 years ago
ReinUsesLisp
3466bf45e8
maxwell_to_gl: Use GL_CLAMP to emulate Clamp wrap mode
7 years ago
ReinUsesLisp
af55acef7b
gl_rasterizer: Move alpha testing to the OpenGL pipeline
Removes the alpha testing code from each fragment shader invocation.
7 years ago
ReinUsesLisp
8bd24371a3
gl_rasterizer: Use GL_QUADS to emulate quads rendering
7 years ago
ReinUsesLisp
b70a0ec46d
rasterizer_opengl: Remove OpenGL core profile
7 years ago
Zach Hilman
99e5ba2e98
main: Remove extraneous comment
7 years ago
ShalokShalom
19ddb3358e
Remove outdated info about compability
7 years ago
ReinUsesLisp
0d80feda2d
qt: Silence name collision warnings
7 years ago
fearlessTobi
5dc330f1ef
yuzu: Remove unused birthday setting
Fixes #2522 .
7 years ago
bunnei
fe5f59d53d
Merge pull request #2446 from ReinUsesLisp/tid
shader: Implement S2R Tid{XYZ} and CtaId{XYZ}
7 years ago
bunnei
cd85ef05c2
Merge pull request #2518 from ReinUsesLisp/sdl2-window
yuzu_cmd: Split emu_window OpenGL implementation into its own file
7 years ago
Lioncash
a4d4b67322
yuzu/software_keyboard: Remove unnecessary GetStatus() member function
Like with the profile selection dialog, we can just use the result of
QDialog's exec() function to determine whether or not a dialog was
accepted.
7 years ago
Lioncash
5cf1aab5a8
profile_select: Remove unnecessary GetStatus() member function
This behavior is already provided by the built-in exec() function. We
just need to check the return value of it.
7 years ago
Lioncash
5f2adf1a9e
profile_select: Return int instead of u32 for GetIndex()
Qt uses a signed value to represent indices. We should follow this
convention where applicable to avoid unnecessary sign-conversion
warnings, as well as making it easier to interoperate with other aspects
of Qt.
While we're at it, we can also make a sign-conversion explicit.
7 years ago
Lioncash
9ac89fde57
core/core: Remove unnecessary includes
The contents of these includes aren't used anywhere in this translation
unit.
7 years ago
Lioncash
f358207a81
yuzu_cmd/yuzu: Correct formatting specifier
Amends the formatting specifier to obey libfmt. Prevents the application
from terminating due to a formatting issue in the error case.
7 years ago
Lioncash
7dd4fbf551
core/loader: Remove LoadKernelSystemMode
This is a hold-over from Citra and doesn't apply to yuzu.
7 years ago
Lioncash
5a776e5dc9
core/telemetry_session: Remove unnecessary web service nulling out in destructor
This will automatically occur when the backend instance goes out of
scope at the end of the destructor's execution.
7 years ago
Lioncash
5fe132ec98
core/telemetry_session: Remove usages of the global system accessor
Makes the dependency explicit in the TelemetrySession's interface
instead of making it a hidden dependency.
This also revealed a hidden issue with the way the telemetry session was
being initialized. It was attempting to retrieve the app loader and log
out title-specific information. However, this isn't always guaranteed to
be possible.
During the initialization phase, everything is being constructed. It
doesn't mean an actual title has been selected. This is what the Load()
function is for. This potentially results in dead code paths involving
the app loader. Instead, we explicitly add this information when we know
the app loader instance is available.
7 years ago
Lioncash
8174fa5f9d
core/telemetry_session: Explicitly delete copy and move constructors
NonCopyable is misleading here. It also makes the class non-moveable as
well, so we can be explicit about this.
7 years ago
Lioncash
f7180e3422
core/telemetry_session: Remove unused include
7 years ago
bunnei
cf1d3d3e5f
Merge pull request #2519 from lioncash/sign
loader/nso, core/core_timing_util: Silence sign-comparison warning
7 years ago
bunnei
ca6c830594
Merge pull request #2524 from ReinUsesLisp/fixup-extension
gl_shader_gen: Always declare extensions after the version declaration
7 years ago
ReinUsesLisp
ae6e56271f
gl_device: Add commentary to AOFFI unit test source code
The intention behind this commit is to hint someone inspecting an
apitrace dump to ignore this ill-formed GLSL code.
7 years ago
ReinUsesLisp
469bcc66b1
gl_shader_gen: Always declare extensions after the version declaration
This addresses a bug on geometry shaders where code was being written
before all #extension declarations were done. Ref to #2523
7 years ago
Zach Hilman
7b531ebaae
ncm: Implement LR OpenAddOnContentLocationResolver (2)
Returns an object of type IAddOnContentLocationResolver for the provided StorageId.
7 years ago
Zach Hilman
2630a22608
ncm: Implement LR OpenRegisteredLocationResolver (1)
Returns an object of type IRegisteredLocationResolver for the StorageId.
7 years ago
Zach Hilman
feeda71211
ncm: Implement LR OpenLocationResolver (0)
Returns an object of type ILocationResolver with the provided StorageId.
7 years ago
Zach Hilman
2cc382429e
game_list_worker: Add better error handling to caching
7 years ago
Zach Hilman
246a57be6f
yuzu: Clear partial/full game list cache when data is updated
7 years ago
Zach Hilman
6aba84eee1
game_list: Implement caching for game list
Preserves list of add ons and the icon, which are the two costliest parts of game list population.
7 years ago
Zach Hilman
14a039fa95
ui_settings: Add option to cache game list
7 years ago
Zach Hilman
227430a157
loader: Move NSO module tracking to AppLoader
Also cleanup of general stuff
7 years ago
ReinUsesLisp
f4bbb7fe44
vk_device: Let formats array type be deduced
7 years ago
ReinUsesLisp
fab91ab3b9
vk_shader_decompiler: Misc fixes
Fix missing OpSelectionMerge instruction. This caused devices loses on
most hardware, Intel didn't care.
Fix [-1;1] -> [0;1] depth conversions.
Conditionally use VK_EXT_scalar_block_layout. This allows us to use
non-std140 layouts on UBOs.
Update external Vulkan headers.
7 years ago
ReinUsesLisp
664da04158
vk_device: Enable features when available and misc changes
Keeps track of native ASTC support, VK_EXT_scalar_block_layout
availability and SSBO range.
Check for independentBlend and vertexPipelineStorageAndAtomics as a
required feature. Always enable it.
Use vk::to_string format to log Vulkan enums.
Style changes.
7 years ago
ReinUsesLisp
2410482b11
emu_window: Pass OnMinimalClientAreaChangeRequest argument by copy
There's no performance improvement in passing an unsigned pair by
reference.
7 years ago
bunnei
e8f7abaf34
Merge pull request #2516 from lioncash/label
renderer_opengl/utils: Use a std::string_view with LabelGLObject()
7 years ago
bunnei
4b08b2d0aa
Merge pull request #2509 from lioncash/aoc
service/aoc_u: Minor cleanup
7 years ago
bunnei
8df82eb4ad
Merge pull request #2511 from lioncash/file-str
common/file_util: Minor cleanup
7 years ago
bunnei
f07e35f5ee
Merge pull request #2517 from lioncash/hotkey
configure_hotkeys: Minor cleanup
7 years ago
Lioncash
e55ce09875
core_timing_util: Silence sign-comparison warnings
We can just make the conversion explicit instead of implicit here to
silence -Wsign-compare warnings.
7 years ago
Lioncash
fc1d10d33a
loader/nso: Silence sign-comparison warning
This was previously performing a size_t == int comparison. Silences a
-Wsign-compare warning.
7 years ago
ReinUsesLisp
462140fdb1
yuzu_cmd: Split emu_window OpenGL implementation into its own file
7 years ago
Zach Hilman
bdfb6260d5
prepo: Save reports from PlayReport service
Logs a lot of seemingly innocuous telemetry games generate.
7 years ago
Zach Hilman
1509f4921d
fatal: Save report on fatal:u call
Matches offical behavior with creport and replaces old log/text based report system.
7 years ago
Zach Hilman
30368b0571
service: Save report on unimplemented function call
7 years ago
Zach Hilman
f5659d962c
applets/error: Save report on error applet
This matches official behavior with the erpt/eclct/eupld service chain.
7 years ago
Zach Hilman
0ab58dcc13
applets: Save report on stubbed applet
This also reworks the applet data storage to be peekable.
7 years ago
Zach Hilman
7c698b4f31
svc: Save report on call to svcBreak
7 years ago