Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-05 | gl_shader_decompiler: Keep track of written images and mark them as modified | ReinUsesLisp | |
2019-09-05 | texture_cache: Minor changes | ReinUsesLisp | |
2019-09-05 | gl_rasterizer: Apply textures and images state | ReinUsesLisp | |
2019-09-05 | gl_rasterizer: Add samplers to compute dispatches | ReinUsesLisp | |
2019-09-05 | gl_rasterizer: Minor code changes | ReinUsesLisp | |
2019-09-05 | gl_state: Split textures and samplers into two arrays | ReinUsesLisp | |
2019-09-05 | gl_rasterizer: Implement image bindings | ReinUsesLisp | |
2019-09-05 | gl_state: Add support for glBindImageTextures | ReinUsesLisp | |
2019-09-05 | texture_cache: Pass TIC to texture cache | ReinUsesLisp | |
2019-09-05 | kepler_compute: Implement texture queries | ReinUsesLisp | |
2019-09-05 | gl_rasterizer: Split SetupTextures | ReinUsesLisp | |
2019-09-05 | Merge pull request #2804 from ReinUsesLisp/remove-gs-special | Fernando Sahmkow | |
gl_shader_cache: Remove special casing for geometry shaders | |||
2019-09-05 | Merge pull request #2833 from ReinUsesLisp/fix-stencil | bunnei | |
gl_rasterizer: Fix stencil testing | |||
2019-09-05 | Merge pull request #2797 from FearlessTobi/port-4877 | David | |
Port citra-emu/citra#4877: "citra_qt: on osx chdir to bundle dir to allow detection of user folder" | |||
2019-09-05 | Merge pull request #2802 from ReinUsesLisp/hsetp2-pred | David | |
half_set_predicate: Fix HSETP2 predicate assignments | |||
2019-09-05 | Merge pull request #2418 from DarkLordZach/srv-es | David | |
es: Implement various ticket accessor commands from IEticketService | |||
2019-09-05 | Address review comments | FearlessTobi | |
2019-09-05 | Merge pull request #2808 from FearlessTobi/port-4866 | David | |
Port citra-emu/citra#4866: "configure_dialog: reverse tab map to avoid logic based on user-facing/translatable text" | |||
2019-09-05 | Merge pull request #2707 from DarkLordZach/oss-miimodel | David | |
system_archive: Add open-source reimplementation of MiiModel data | |||
2019-09-05 | yuzu/configure: move speed limiter to general | FearlessTobi | |
The speed limiter being a frame limiter is an implmentation detail and can be changed in the future. What user care about is that it limit the emulation speed in genenral (not just graphics but also audio+input) Co-Authored-By: Weiyi Wang <wwylele@gmail.com> | |||
2019-09-05 | Merge pull request #2830 from FearlessTobi/port-4911 | David | |
Port citra-emu/citra#4911: "Add cancel option to analog stick configuration" | |||
2019-09-05 | Merge pull request #2834 from Morph1984/audrenu_QueryAudioDeviceInputEvent | David | |
audren_u: Stub IAudioDevice::QueryAudioDeviceInputEvent | |||
2019-09-05 | Merge pull request #2836 from Morph1984/hid_vibration | David | |
hid: Implement PermitVibration and IsVibrationPermitted | |||
2019-09-05 | Merge pull request #2818 from MysticExile/fmt | David | |
externals: update fmt to 6.0.0 | |||
2019-09-04 | Merge pull request #2801 from ReinUsesLisp/typed-decompiler | bunnei | |
gl_shader_decompiler: Rework GLSL decompiler type system | |||
2019-09-04 | gl_shader_decompiler: Fixup slow path | ReinUsesLisp | |
2019-09-04 | AM: Stub IApplicationFunctions::GetGpuErrorDetectedSystemEvent (#2827) | mailwl | |
* AM: Implement IApplicationFunctions::GetGpuErrorDetectedSystemEvent * Remove unneeded event clear * Fix event name | |||
2019-09-04 | Merge pull request #2829 from Morph1984/audio | bunnei | |
service/audio/audren_u: Stub IAudioDevice::GetAudioDeviceOutputVolume | |||
2019-09-04 | configure_dialog: reverse tab map to avoid logic based on ↵ | fearlessTobi | |
user-facing/translatable text Co-Authored-By: Weiyi Wang <wwylele@gmail.com> | |||
2019-09-04 | Fix clang-format | Ethan | |
2019-09-04 | Fix uisettings include | fearlessTobi | |
2019-09-04 | Limit the size of directory icons, fix text when icon size is none | fearlessTobi | |
2019-09-04 | Change QList to QVector | fearlessTobi | |
2019-09-04 | Separate UserNand and Sdmc directories | fearlessTobi | |
2019-09-04 | Address more trivial review comments | fearlessTobi | |
2019-09-04 | Address trivial review comments | fearlessTobi | |
2019-09-04 | yuzu: Add support for multiple game directories | fearlessTobi | |
Ported from https://github.com/citra-emu/citra/pull/3617. | |||
2019-09-04 | ditto | Morph1984 | |
Co-Authored-By: David <25727384+ogniK5377@users.noreply.github.com> | |||
2019-09-04 | IsVibrationEnabled() as a const member func | Morph1984 | |
2019-09-04 | clang-format | Morph1984 | |
2019-09-04 | Update npad.h | Morph1984 | |
2019-09-04 | Update npad.cpp | Morph1984 | |
2019-09-04 | Update hid.h | Morph1984 | |
2019-09-04 | Update hid.cpp | Morph1984 | |
2019-09-04 | gl_rasterizer: Fix stencil testing | ReinUsesLisp | |
* Fix stencil dirty flags tracking when stencil is disabled * Attach stencil on clears (previously it only attached depth) * Attach stencil on drawing regardless of stencil testing being enabled | |||
2019-09-04 | gl_shader_cache: Remove special casing for geometry shaders | ReinUsesLisp | |
Now that ProgramVariants holds the primitive topology we no longer need to keep track of individual geometry shaders topologies. | |||
2019-09-04 | half_set_predicate: Fix predicate assignments | ReinUsesLisp | |
2019-09-04 | gl_device: Disable precise in fragment shaders on bugged drivers | ReinUsesLisp | |
2019-09-04 | gl_shader_decompiler: Fixup AMD's slow path type | ReinUsesLisp | |
2019-09-04 | gl_shader_decompiler: Rework GLSL decompiler type system | ReinUsesLisp | |
GLSL decompiler type system was broken. We converted all return values to float except for some cases where returning we couldn't and implicitly broke the rule of returning floats (e.g. for bools or bool pairs). Instead of doing this introduce class Expression that knows what type a return value has and when a consumer wants to use the string it asks for it with a required type, emitting a runtime error if types are incompatible. This has the disadvantage that there's more C++ code, but we can emit better GLSL code that's easier to read. |