2018-01-22 16:54:58 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
2019-02-05 21:20:04 +00:00
|
|
|
#include <optional>
|
2018-08-07 12:24:30 +00:00
|
|
|
#include <string>
|
2018-08-07 12:19:24 +00:00
|
|
|
#include <string_view>
|
2018-08-07 12:24:30 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2018-11-26 23:34:07 +00:00
|
|
|
#include "core/hle/kernel/object.h"
|
2018-01-22 16:54:58 +00:00
|
|
|
|
2019-02-12 17:32:15 +00:00
|
|
|
namespace Core::Timing {
|
2019-02-14 17:42:58 +00:00
|
|
|
class CoreTiming;
|
2018-01-22 16:54:58 +00:00
|
|
|
struct EventType;
|
2019-02-14 17:42:58 +00:00
|
|
|
} // namespace Core::Timing
|
2018-01-22 16:54:58 +00:00
|
|
|
|
2018-11-26 23:34:07 +00:00
|
|
|
namespace Kernel {
|
|
|
|
class ReadableEvent;
|
|
|
|
class WritableEvent;
|
|
|
|
} // namespace Kernel
|
|
|
|
|
2018-08-07 13:17:09 +00:00
|
|
|
namespace Service::Nvidia {
|
|
|
|
class Module;
|
2019-02-19 22:00:03 +00:00
|
|
|
} // namespace Service::Nvidia
|
|
|
|
|
|
|
|
namespace Service::VI {
|
2019-02-21 15:43:26 +00:00
|
|
|
class Display;
|
2019-02-21 15:56:20 +00:00
|
|
|
class Layer;
|
2019-02-19 22:00:03 +00:00
|
|
|
} // namespace Service::VI
|
2018-08-07 13:17:09 +00:00
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::NVFlinger {
|
2018-01-22 16:54:58 +00:00
|
|
|
|
|
|
|
class BufferQueue;
|
|
|
|
|
|
|
|
class NVFlinger final {
|
|
|
|
public:
|
2019-09-21 09:23:31 +00:00
|
|
|
explicit NVFlinger(Core::Timing::CoreTiming& core_timing, Core::System& system);
|
2018-01-22 16:54:58 +00:00
|
|
|
~NVFlinger();
|
|
|
|
|
2018-08-07 13:17:09 +00:00
|
|
|
/// Sets the NVDrv module instance to use to send buffers to the GPU.
|
|
|
|
void SetNVDrvInstance(std::shared_ptr<Nvidia::Module> instance);
|
|
|
|
|
2019-01-30 04:30:22 +00:00
|
|
|
/// Opens the specified display and returns the ID.
|
2019-02-05 21:20:04 +00:00
|
|
|
///
|
|
|
|
/// If an invalid display name is provided, then an empty optional is returned.
|
|
|
|
std::optional<u64> OpenDisplay(std::string_view name);
|
2018-01-22 16:54:58 +00:00
|
|
|
|
2019-01-30 04:30:22 +00:00
|
|
|
/// Creates a layer on the specified display and returns the layer ID.
|
2019-02-05 21:20:04 +00:00
|
|
|
///
|
|
|
|
/// If an invalid display ID is specified, then an empty optional is returned.
|
|
|
|
std::optional<u64> CreateLayer(u64 display_id);
|
2018-01-22 16:54:58 +00:00
|
|
|
|
2019-01-30 04:30:22 +00:00
|
|
|
/// Finds the buffer queue ID of the specified layer in the specified display.
|
2019-02-05 21:20:04 +00:00
|
|
|
///
|
|
|
|
/// If an invalid display ID or layer ID is provided, then an empty optional is returned.
|
|
|
|
std::optional<u32> FindBufferQueueId(u64 display_id, u64 layer_id) const;
|
2018-01-22 16:54:58 +00:00
|
|
|
|
|
|
|
/// Gets the vsync event for the specified display.
|
2019-02-05 21:20:04 +00:00
|
|
|
///
|
|
|
|
/// If an invalid display ID is provided, then nullptr is returned.
|
2019-02-05 20:57:26 +00:00
|
|
|
Kernel::SharedPtr<Kernel::ReadableEvent> FindVsyncEvent(u64 display_id) const;
|
2018-01-22 16:54:58 +00:00
|
|
|
|
2019-01-30 04:30:22 +00:00
|
|
|
/// Obtains a buffer queue identified by the ID.
|
2019-02-21 16:31:53 +00:00
|
|
|
BufferQueue& FindBufferQueue(u32 id);
|
|
|
|
|
|
|
|
/// Obtains a buffer queue identified by the ID.
|
|
|
|
const BufferQueue& FindBufferQueue(u32 id) const;
|
2018-01-22 16:54:58 +00:00
|
|
|
|
|
|
|
/// Performs a composition request to the emulated nvidia GPU and triggers the vsync events when
|
|
|
|
/// finished.
|
|
|
|
void Compose();
|
|
|
|
|
2019-06-19 00:53:21 +00:00
|
|
|
s64 GetNextTicks() const;
|
2019-06-04 20:10:07 +00:00
|
|
|
|
2018-01-22 16:54:58 +00:00
|
|
|
private:
|
2019-01-30 04:30:22 +00:00
|
|
|
/// Finds the display identified by the specified ID.
|
2019-02-19 22:00:03 +00:00
|
|
|
VI::Display* FindDisplay(u64 display_id);
|
2018-01-22 16:54:58 +00:00
|
|
|
|
2019-01-30 16:14:05 +00:00
|
|
|
/// Finds the display identified by the specified ID.
|
2019-02-19 22:00:03 +00:00
|
|
|
const VI::Display* FindDisplay(u64 display_id) const;
|
2019-01-30 16:14:05 +00:00
|
|
|
|
2019-01-30 04:30:22 +00:00
|
|
|
/// Finds the layer identified by the specified ID in the desired display.
|
2019-02-19 22:00:03 +00:00
|
|
|
VI::Layer* FindLayer(u64 display_id, u64 layer_id);
|
2018-01-22 16:54:58 +00:00
|
|
|
|
2019-01-30 16:14:05 +00:00
|
|
|
/// Finds the layer identified by the specified ID in the desired display.
|
2019-02-19 22:00:03 +00:00
|
|
|
const VI::Layer* FindLayer(u64 display_id, u64 layer_id) const;
|
2019-01-30 16:14:05 +00:00
|
|
|
|
2018-08-07 13:17:09 +00:00
|
|
|
std::shared_ptr<Nvidia::Module> nvdrv;
|
|
|
|
|
2019-02-19 22:00:03 +00:00
|
|
|
std::vector<VI::Display> displays;
|
2019-02-21 16:31:53 +00:00
|
|
|
std::vector<BufferQueue> buffer_queues;
|
2018-01-22 16:54:58 +00:00
|
|
|
|
|
|
|
/// Id to use for the next layer that is created, this counter is shared among all displays.
|
|
|
|
u64 next_layer_id = 1;
|
|
|
|
/// Id to use for the next buffer queue that is created, this counter is shared among all
|
|
|
|
/// layers.
|
|
|
|
u32 next_buffer_queue_id = 1;
|
|
|
|
|
2019-06-04 20:10:07 +00:00
|
|
|
u32 swap_interval = 1;
|
|
|
|
|
2019-02-12 17:32:15 +00:00
|
|
|
/// Event that handles screen composition.
|
|
|
|
Core::Timing::EventType* composition_event;
|
2019-02-14 17:42:58 +00:00
|
|
|
|
|
|
|
/// Core timing instance for registering/unregistering the composition event.
|
|
|
|
Core::Timing::CoreTiming& core_timing;
|
2019-09-21 09:23:31 +00:00
|
|
|
|
|
|
|
Core::System& system;
|
2018-01-22 16:54:58 +00:00
|
|
|
};
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::NVFlinger
|