2015-05-18 21:21:33 -07:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-09-07 16:11:09 -06:00
|
|
|
#include <atomic>
|
|
|
|
#include <functional>
|
2015-06-27 17:56:17 +01:00
|
|
|
#include "common/common_types.h"
|
2016-04-16 18:57:57 -04:00
|
|
|
|
2023-12-28 12:46:57 +02:00
|
|
|
namespace Pica {
|
2015-06-27 17:56:17 +01:00
|
|
|
struct OutputVertex;
|
2023-12-28 12:46:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Pica {
|
|
|
|
struct DisplayTransferConfig;
|
|
|
|
struct MemoryFillConfig;
|
|
|
|
} // namespace Pica
|
2015-05-18 21:21:33 -07:00
|
|
|
|
2015-12-06 19:06:12 -08:00
|
|
|
namespace VideoCore {
|
|
|
|
|
2019-09-07 16:11:09 -06:00
|
|
|
enum class LoadCallbackStage {
|
|
|
|
Prepare,
|
2023-05-07 01:34:14 +02:00
|
|
|
Preload,
|
2019-09-07 16:11:09 -06:00
|
|
|
Decompile,
|
|
|
|
Build,
|
|
|
|
Complete,
|
|
|
|
};
|
|
|
|
using DiskResourceLoadCallback = std::function<void(LoadCallbackStage, std::size_t, std::size_t)>;
|
|
|
|
|
2015-12-06 19:06:12 -08:00
|
|
|
class RasterizerInterface {
|
2015-05-18 21:21:33 -07:00
|
|
|
public:
|
2023-09-13 01:28:50 +03:00
|
|
|
virtual ~RasterizerInterface() = default;
|
2015-05-18 21:21:33 -07:00
|
|
|
|
|
|
|
/// Queues the primitive formed by the given vertices for rendering
|
2023-12-28 12:46:57 +02:00
|
|
|
virtual void AddTriangle(const Pica::OutputVertex& v0, const Pica::OutputVertex& v1,
|
|
|
|
const Pica::OutputVertex& v2) = 0;
|
2015-05-18 21:21:33 -07:00
|
|
|
|
|
|
|
/// Draw the current batch of triangles
|
|
|
|
virtual void DrawTriangles() = 0;
|
|
|
|
|
|
|
|
/// Notify rasterizer that the specified PICA register has been changed
|
|
|
|
virtual void NotifyPicaRegisterChanged(u32 id) = 0;
|
|
|
|
|
2016-04-16 18:57:57 -04:00
|
|
|
/// Notify rasterizer that all caches should be flushed to 3DS memory
|
|
|
|
virtual void FlushAll() = 0;
|
|
|
|
|
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory
|
2015-12-06 17:56:45 -08:00
|
|
|
virtual void FlushRegion(PAddr addr, u32 size) = 0;
|
2015-05-18 21:21:33 -07:00
|
|
|
|
2017-11-23 10:43:12 -07:00
|
|
|
/// Notify rasterizer that any caches of the specified region should be invalidated
|
|
|
|
virtual void InvalidateRegion(PAddr addr, u32 size) = 0;
|
|
|
|
|
2016-09-18 09:38:01 +09:00
|
|
|
/// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory
|
|
|
|
/// and invalidated
|
2016-04-16 18:57:57 -04:00
|
|
|
virtual void FlushAndInvalidateRegion(PAddr addr, u32 size) = 0;
|
|
|
|
|
2020-01-16 23:17:55 -07:00
|
|
|
/// Removes as much state as possible from the rasterizer in preparation for a save/load state
|
|
|
|
virtual void ClearAll(bool flush) = 0;
|
|
|
|
|
2016-09-27 18:09:53 +08:00
|
|
|
/// Attempt to use a faster method to perform a display transfer with is_texture_copy = 0
|
2023-12-28 12:46:57 +02:00
|
|
|
virtual bool AccelerateDisplayTransfer(const Pica::DisplayTransferConfig&) {
|
2016-09-18 09:38:01 +09:00
|
|
|
return false;
|
|
|
|
}
|
2016-04-16 18:57:57 -04:00
|
|
|
|
2016-09-27 18:09:53 +08:00
|
|
|
/// Attempt to use a faster method to perform a display transfer with is_texture_copy = 1
|
2023-12-28 12:46:57 +02:00
|
|
|
virtual bool AccelerateTextureCopy(const Pica::DisplayTransferConfig&) {
|
2016-09-27 18:09:53 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-16 18:57:57 -04:00
|
|
|
/// Attempt to use a faster method to fill a region
|
2023-12-28 12:46:57 +02:00
|
|
|
virtual bool AccelerateFill(const Pica::MemoryFillConfig&) {
|
2016-09-18 09:38:01 +09:00
|
|
|
return false;
|
|
|
|
}
|
2016-04-16 18:57:57 -04:00
|
|
|
|
2018-05-11 16:41:26 +03:00
|
|
|
/// Attempt to draw using hardware shaders
|
2023-05-02 01:08:58 +05:30
|
|
|
virtual bool AccelerateDrawBatch([[maybe_unused]] bool is_indexed) {
|
2018-05-11 16:41:26 +03:00
|
|
|
return false;
|
|
|
|
}
|
2019-09-07 16:11:09 -06:00
|
|
|
|
2023-05-02 01:08:58 +05:30
|
|
|
virtual void LoadDiskResources([[maybe_unused]] const std::atomic_bool& stop_loading,
|
|
|
|
[[maybe_unused]] const DiskResourceLoadCallback& callback) {}
|
2020-04-11 10:28:52 +01:00
|
|
|
|
|
|
|
virtual void SyncEntireState() {}
|
2015-05-18 21:21:33 -07:00
|
|
|
};
|
2018-03-09 10:54:43 -07:00
|
|
|
} // namespace VideoCore
|