Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-04 | shader/shift: Implement SHR wrapped and clamped variants | ReinUsesLisp | |
Nvidia defaults to wrapped shifts, but this is undefined behaviour on OpenGL's spec. Explicitly mask/clamp according to what the guest shader requires. | |||
2019-09-04 | Merge pull request #2835 from chris062689/master | David | |
CI Fix (Azure/Testing) - apt update before upgrade. Use apt-get. | |||
2019-09-04 | Changed apt-get upgrade for specific package. | Flame Sage | |
2019-09-04 | apt update before upgrade. Use apt-get. | Flame Sage | |
Identified a bug in the script which uses the azure image when attempting to upgrade python3-pip. Package index was out of date because apt-get update was not ran before attempting the upgrade. | |||
2019-09-04 | Merge pull request #2708 from DarkLordZach/mii-db-source-crash | David | |
mii: Handle logging of unknown database source | |||
2019-09-03 | Merge pull request #2793 from ReinUsesLisp/bgr565 | bunnei | |
renderer_opengl: Implement RGB565 framebuffer format | |||
2019-09-03 | Merge pull request #2812 from ReinUsesLisp/f2i-selector | bunnei | |
shader_ir/conversion: Implement F2I and F2F F16 selector | |||
2019-09-03 | Merge pull request #2811 from ReinUsesLisp/fsetp-fix | bunnei | |
float_set_predicate: Add missing negation bit for the second operand | |||
2019-09-03 | Merge pull request #2826 from ReinUsesLisp/macro-binding | bunnei | |
maxwell_3d: Fix macro binding cursor | |||
2019-09-03 | Merge pull request #2831 from FearlessTobi/port-4914 | bunnei | |
Port citra-emu/citra#4914: "Fix to Windows sleep issues" | |||
2019-09-03 | Merge pull request #2832 from FearlessTobi/im-an-idiot | bunnei | |
configuration/config: Add missing screenshot path read | |||
2019-09-04 | configuration/config: Add missing screenshot path read | fearlessTobi | |
I missed this in my original PR (https://github.com/yuzu-emu/yuzu/pull/1886). | |||
2019-09-03 | Fix to Windows sleep issues | fearlessTobi | |
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com> | |||
2019-09-01 | Merge pull request #2765 from FernandoS27/dma-fix | bunnei | |
MaxwellDMA: Fixes, corrections and relaxations. | |||
2019-09-01 | maxwell_3d: Fix macro binding cursor | ReinUsesLisp | |
2019-08-30 | video_core: Silent miscellaneous warnings (#2820) | Rodrigo Locatti | |
* texture_cache/surface_params: Remove unused local variable * rasterizer_interface: Add missing documentation commentary * maxwell_dma: Remove unused rasterizer reference * video_core/gpu: Sort member declaration order to silent -Wreorder warning * fermi_2d: Remove unused MemoryManager reference * video_core: Silent unused variable warnings * buffer_cache: Silent -Wreorder warnings * kepler_memory: Remove unused MemoryManager reference * gl_texture_cache: Add missing override * buffer_cache: Add missing include * shader/decode: Remove unused variables | |||
2019-08-29 | Merge pull request #2819 from ReinUsesLisp/fixup-clang | Fernando Sahmkow | |
gl_buffer_cache: Add missing include | |||
2019-08-29 | gl_buffer_cache: Add missing include | ReinUsesLisp | |
RasterizerInterface was considered an incomplete object by clang. | |||
2019-08-29 | Merge pull request #2742 from ReinUsesLisp/fix-texture-buffers | bunnei | |
gl_texture_cache: Miscellaneous texture buffer fixes | |||
2019-08-29 | Revert "externals: Update FMT to 6.0.0" | James Rowe | |
This reverts commit ca4ca8a6dc41207de99f67de1931579ceb4d9660. | |||
2019-08-29 | externals: Update FMT to 6.0.0 | Ethan | |
2019-08-29 | Merge pull request #2783 from FernandoS27/new-buffer-cache | bunnei | |
Implement a New LLE Buffer Cache | |||
2019-08-29 | Merge pull request #2758 from ReinUsesLisp/packed-tid | bunnei | |
shader/decode: Implement S2R Tic | |||
2019-08-29 | Merge pull request #2786 from ReinUsesLisp/vote | bunnei | |
shader_ir: Implement VOTE on Nvidia drivers | |||
2019-08-28 | shader_ir/conversion: Split int and float selector and implement F2F H1 | ReinUsesLisp | |
2019-08-27 | shader_ir/conversion: Implement F2I F16 Ra.H1 | ReinUsesLisp | |
2019-08-27 | float_set_predicate: Add missing negation bit for the second operand | ReinUsesLisp | |
2019-08-21 | shader_ir: Implement VOTE | ReinUsesLisp | |
Implement VOTE using Nvidia's intrinsics. Documentation about these can be found here https://developer.nvidia.com/reading-between-threads-shader-intrinsics Instead of using portable ARB instructions I opted to use Nvidia intrinsics because these are the closest we have to how Tegra X1 hardware renders. To stub VOTE on non-Nvidia drivers (including nouveau) this commit simulates a GPU with a warp size of one, returning what is meaningful for the instruction being emulated: * anyThreadNV(value) -> value * allThreadsNV(value) -> value * allThreadsEqualNV(value) -> true ballotARB, also known as "uint64_t(activeThreadsNV())", emits VOTE.ANY Rd, PT, PT; on nouveau's compiler. This doesn't match exactly to Nvidia's code VOTE.ALL Rd, PT, PT; Which is emulated with activeThreadsNV() by this commit. In theory this shouldn't really matter since .ANY, .ALL and .EQ affect the predicates (set to PT on those cases) and not the registers. | |||
2019-08-21 | Buffer Cache: Adress Feedback. | Fernando Sahmkow | |
2019-08-21 | Buffer_Cache: Implement flushing. | Fernando Sahmkow | |
2019-08-21 | Buffer_Cache: Implement barriers. | Fernando Sahmkow | |
2019-08-21 | Buffer_Cache: Optimize and track written areas. | Fernando Sahmkow | |
2019-08-21 | BufferCache: Rework mapping caching. | Fernando Sahmkow | |
2019-08-21 | Buffer_Cache: Fixes and optimizations. | Fernando Sahmkow | |
2019-08-21 | Video_Core: Implement a new Buffer Cache | Fernando Sahmkow | |
2019-08-21 | Merge pull request #2748 from FernandoS27/align-memory | bunnei | |
VM_Manager: Align allocated host physical memory to 256bytes | |||
2019-08-21 | Merge pull request #2769 from FernandoS27/commands-flush | bunnei | |
GPU: Flush commands on every dma pusher step. | |||
2019-08-21 | Merge pull request #2777 from ReinUsesLisp/hsetp2-fe3h-fix | bunnei | |
half_set_predicate: Fix HSETP2_C constant buffer offset | |||
2019-08-21 | Merge pull request #2753 from FernandoS27/float-convert | bunnei | |
Shader_Ir: Implement F16 Variants of F2F, F2I, I2F. | |||
2019-08-21 | Merge pull request #2773 from lioncash/test-unused | bunnei | |
yuzu-tester/yuzu: Remove unused variable | |||
2019-08-21 | renderer_opengl: Implement RGB565 framebuffer format | ReinUsesLisp | |
2019-08-21 | renderer_opengl: Use block linear swizzling for CPU framebuffers | ReinUsesLisp | |
2019-08-21 | renderer_opengl: Use VideoCore pixel format | ReinUsesLisp | |
2019-08-21 | gpu: Change optional<reference_wrapper<T>> to T* for FramebufferConfig | ReinUsesLisp | |
2019-08-18 | Merge pull request #2747 from lioncash/audio | bunnei | |
service/audren_u: Unstub ListAudioDeviceName | |||
2019-08-18 | Merge pull request #2778 from ReinUsesLisp/nop | bunnei | |
shader_ir: Implement NOP | |||
2019-08-18 | Merge pull request #2768 from ReinUsesLisp/hsetp2-fix | bunnei | |
decode/half_set_predicate: Fix predicates | |||
2019-08-16 | Merge pull request #2789 from jroweboy/quickfix | James Rowe | |
Fixup! #2772 missed this one file | |||
2019-08-16 | Fixup! #2772 missed this one file | James Rowe | |
2019-08-16 | Merge pull request #2766 from FearlessTobi/port-4849 | James Rowe | |
Port citra-emu/citra#4849: "Qt: Fixed behaviour of buttons by connecting functors to correct signals" |