33 changed files with 201 additions and 173 deletions
-
2src/core/core.cpp
-
8src/core/hle/service/nvdrv/core/container.cpp
-
10src/core/hle/service/nvdrv/core/container.h
-
33src/core/hle/service/nvdrv/core/nvmap.cpp
-
18src/core/hle/service/nvdrv/core/nvmap.h
-
6src/core/hle/service/nvdrv/core/syncpoint_manager.cpp
-
12src/core/hle/service/nvdrv/core/syncpoint_manager.h
-
37src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp
-
2src/core/hle/service/nvdrv/nvdrv.cpp
-
2src/video_core/CMakeLists.txt
-
12src/video_core/cdma_pusher.cpp
-
7src/video_core/cdma_pusher.h
-
27src/video_core/gpu.cpp
-
6src/video_core/gpu.h
-
10src/video_core/host1x/codecs/codec.cpp
-
9src/video_core/host1x/codecs/codec.h
-
13src/video_core/host1x/codecs/h264.cpp
-
10src/video_core/host1x/codecs/h264.h
-
8src/video_core/host1x/codecs/vp8.cpp
-
10src/video_core/host1x/codecs/vp8.h
-
12src/video_core/host1x/codecs/vp9.cpp
-
10src/video_core/host1x/codecs/vp9.h
-
1src/video_core/host1x/codecs/vp9_types.h
-
5src/video_core/host1x/control.cpp
-
6src/video_core/host1x/control.h
-
18src/video_core/host1x/host1x.cpp
-
27src/video_core/host1x/host1x.h
-
5src/video_core/host1x/nvdec.cpp
-
7src/video_core/host1x/nvdec.h
-
5src/video_core/host1x/sync_manager.cpp
-
8src/video_core/host1x/sync_manager.h
-
22src/video_core/host1x/vic.cpp
-
6src/video_core/host1x/vic.h
@ -0,0 +1,18 @@ |
|||
// Copyright 2022 yuzu Emulator Project
|
|||
// Licensed under GPLv3 or any later version
|
|||
// Refer to the license.txt file included.
|
|||
|
|||
#include "core/core.h"
|
|||
#include "video_core/host1x/host1x.h"
|
|||
|
|||
namespace Tegra { |
|||
|
|||
namespace Host1x { |
|||
|
|||
Host1x::Host1x(Core::System& system_) |
|||
: system{system_}, syncpoint_manager{}, memory_manager{system, 32, 12}, |
|||
allocator{std::make_unique<Common::FlatAllocator<u32, 0, 32>>(1 << 12)} {} |
|||
|
|||
} // namespace Host1x
|
|||
|
|||
} // namespace Tegra
|
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue