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