James Rowe
3f80abb4a5
Revert "externals: Update FMT to 6.0.0"
This reverts commit 607d2f5a61 .
6 years ago
Ethan
607d2f5a61
externals: Update FMT to 6.0.0
6 years ago
bunnei
fef5a3a2dd
Merge pull request #2783 from FernandoS27/new-buffer-cache
Implement a New LLE Buffer Cache
6 years ago
bunnei
8d8341bb69
Merge pull request #2758 from ReinUsesLisp/packed-tid
shader/decode: Implement S2R Tic
6 years ago
bunnei
63d41fd901
Merge pull request #2786 from ReinUsesLisp/vote
shader_ir: Implement VOTE on Nvidia drivers
6 years ago
ReinUsesLisp
67f47b2f6a
shader_ir: Implement VOTE
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.
6 years ago
Fernando Sahmkow
e1f3d5114f
Buffer Cache: Adress Feedback.
6 years ago
Fernando Sahmkow
cf08eba948
Buffer_Cache: Implement flushing.
7 years ago
Fernando Sahmkow
51e03c738a
Buffer_Cache: Implement barriers.
7 years ago
Fernando Sahmkow
4d5e3ee41c
Buffer_Cache: Optimize and track written areas.
7 years ago
Fernando Sahmkow
2ecf0de665
BufferCache: Rework mapping caching.
7 years ago
Fernando Sahmkow
6bdc557f72
Buffer_Cache: Fixes and optimizations.
7 years ago
Fernando Sahmkow
8098f3ba58
Video_Core: Implement a new Buffer Cache
7 years ago
bunnei
46fb3bfd15
Merge pull request #2748 from FernandoS27/align-memory
VM_Manager: Align allocated host physical memory to 256bytes
6 years ago
bunnei
2cb395b62d
Merge pull request #2769 from FernandoS27/commands-flush
GPU: Flush commands on every dma pusher step.
6 years ago
bunnei
fa6d0cef75
Merge pull request #2777 from ReinUsesLisp/hsetp2-fe3h-fix
half_set_predicate: Fix HSETP2_C constant buffer offset
6 years ago
bunnei
0d754d7a75
Merge pull request #2753 from FernandoS27/float-convert
Shader_Ir: Implement F16 Variants of F2F, F2I, I2F.
6 years ago
bunnei
8fa1acd285
Merge pull request #2773 from lioncash/test-unused
yuzu-tester/yuzu: Remove unused variable
6 years ago
bunnei
79992d99d3
Merge pull request #2747 from lioncash/audio
service/audren_u: Unstub ListAudioDeviceName
6 years ago
bunnei
6f772b4b9a
Merge pull request #2778 from ReinUsesLisp/nop
shader_ir: Implement NOP
6 years ago
bunnei
eb15b1c5ac
Merge pull request #2768 from ReinUsesLisp/hsetp2-fix
decode/half_set_predicate: Fix predicates
6 years ago
James Rowe
9acb94a246
Merge pull request #2789 from jroweboy/quickfix
Fixup! #2772 missed this one file
6 years ago
James Rowe
8795e9bee8
Fixup! #2772 missed this one file
6 years ago
James Rowe
baef0f7e5e
Merge pull request #2766 from FearlessTobi/port-4849
Port citra-emu/citra#4849 : "Qt: Fixed behaviour of buttons by connecting functors to correct signals"
6 years ago
James Rowe
329c5eb0b2
Merge pull request #2772 from lioncash/ui
yuzu/CMakeLists: Remove qt5_wrap_ui macro usage
6 years ago
Lioncash
7c15a53048
yuzu/CMakeLists: Remove qt5_wrap_ui macro usage
We can simply enable CMAKE_AUTOUIC and let CMake take care of handling
the UI code generation for targets.
As part of letting CMake automatically handle the header file parsing,
we must not name includes with "ui_*" unless they're related to the
output of the Qt UIC compiler. Because of this, we need to rename
ui_settings, given it would conflict with this restriction.
6 years ago
ReinUsesLisp
b6272eb8e2
shader_ir: Implement NOP
6 years ago
ReinUsesLisp
48e8b1ab74
half_set_predicate: Fix HSETP2_C constant buffer offset
6 years ago
Silent
70c839c55d
Qt: Fixed behaviour of buttons by connecting functors to correct signals
Following screens got fixes:
- Configure/Debug
- Configure/Input
7 years ago
Flame Sage
9ec5e0a238
Merge pull request #2770 from DarkLordZach/azure-pr-fix
ci: Fix Azure PR Builds
6 years ago
Zach Hilman
bedc593c77
Correct apt permissions
6 years ago
Zach Hilman
a1735134e8
Upgrade PIP version with APT
6 years ago
Zach Hilman
60815560b5
Upgrade pip version
6 years ago
Zach Hilman
0511d10e4f
Add missing dot
6 years ago
Lioncash
c899be460b
yuzu-tester/yuzu: Correct format string
Prevents an invalid formatting exception from being thrown.
6 years ago
Lioncash
e664a1b940
yuzu-tester/yuzu: Remove unused variable
Gets rid of a compilation warning.
6 years ago
Zach Hilman
ccc6c732fe
ci: Fix Azure PR Builds
6 years ago
Fernando Sahmkow
e82d641357
GPU: Flush commands on every dma pusher step.
This commit ensures that the host gpu is constantly fed with commands to
work with, while the guest gpu keeps producing the rest of the commands.
This reduces syncing time between host and guest gpu.
7 years ago
bunnei
6b8b59ee75
Merge pull request #2592 from FernandoS27/sync1
Implement GPU Synchronization Mechanisms & Correct NVFlinger
7 years ago
ReinUsesLisp
5188570517
decode/half_set_predicate: Fix predicates
7 years ago
bunnei
5d731e30a7
Merge pull request #2739 from lioncash/cflow
video_core/control_flow: Minor changes/warning cleanup
7 years ago
bunnei
7b61ad4c05
Merge pull request #2737 from FernandoS27/track-fix
Shader_Ir: Correct tracking to track from right to left
7 years ago
bunnei
6b4babed89
Merge pull request #2689 from lioncash/tl
yuzu/main: Make error messages within OnCoreError more localization-friendly
7 years ago
bunnei
6904a38621
Merge pull request #2743 from FernandoS27/surpress-assert
Downgrade and suppress a series of GPU asserts and debug messages.
7 years ago
bunnei
8ae3b5f4de
Merge pull request #2704 from FernandoS27/conditional
maxwell3d: Implement Conditional Rendering
7 years ago
Zach Hilman
19b1d82fe4
Fix README change mistake ( #2754 )
Fix README change mistake
7 years ago
ReinUsesLisp
11138d67ad
shader/decode: Implement S2R Tic
7 years ago
bunnei
92195406c7
Merge pull request #2734 from ReinUsesLisp/compute-shaders
gl_rasterizer: Implement compute shaders
7 years ago
bunnei
03445ce112
Merge pull request #2735 from FernandoS27/pipeline-rework
Rework Dirty Flags in GPU Pipeline, Optimize CBData and Redo Clearing mechanism
7 years ago
Zach Hilman
0b7e8a60d5
Update README.md
7 years ago