diff options
| author | 2020-11-04 20:41:16 -0500 | |
|---|---|---|
| committer | 2020-11-05 10:07:16 -0500 | |
| commit | 6f006d051e1fad075048ea5664e1ef0605e48a46 (patch) | |
| tree | 47fbdd1225fabbd0c1abb05bb8ebd5a02632ce02 /src/video_core/gpu.h | |
| parent | Merge pull request #4889 from lioncash/setting-global (diff) | |
| download | yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar.gz yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar.xz yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.zip | |
General: Fix clang build
Allows building on clang to work again
Diffstat (limited to 'src/video_core/gpu.h')
| -rw-r--r-- | src/video_core/gpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index 5444b49f3..cf5235a79 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h | |||
| @@ -273,7 +273,7 @@ public: | |||
| 273 | BitField<0, 1, FenceOperation> op; | 273 | BitField<0, 1, FenceOperation> op; |
| 274 | BitField<8, 24, u32> syncpoint_id; | 274 | BitField<8, 24, u32> syncpoint_id; |
| 275 | 275 | ||
| 276 | static constexpr CommandHeader Build(FenceOperation op, u32 syncpoint_id) { | 276 | static CommandHeader Build(FenceOperation op, u32 syncpoint_id) { |
| 277 | FenceAction result{}; | 277 | FenceAction result{}; |
| 278 | result.op.Assign(op); | 278 | result.op.Assign(op); |
| 279 | result.syncpoint_id.Assign(syncpoint_id); | 279 | result.syncpoint_id.Assign(syncpoint_id); |