Files
Kyty/source/emulator/include/Emulator/Graphics/Label.h
T
2021-12-01 19:29:27 +10:00

64 lines
1.9 KiB
C++

#ifndef EMULATOR_INCLUDE_EMULATOR_GRAPHICS_LABEL_H_
#define EMULATOR_INCLUDE_EMULATOR_GRAPHICS_LABEL_H_
#include "Kyty/Core/Common.h"
#include "Emulator/Common.h"
#include "Emulator/Graphics/GpuMemory.h"
#ifdef KYTY_EMU_ENABLED
namespace Kyty::Libs::Graphics {
struct Label;
struct GraphicContext;
class CommandBuffer;
struct VulkanMemory;
void LabelInit();
class LabelGpuObject: public GpuObject
{
public:
using callback_t = bool (*)(const uint64_t* args);
static constexpr int PARAM_VALUE = 0;
static constexpr int PARAM_CALLBACK_1 = 1;
static constexpr int PARAM_CALLBACK_2 = 2;
static constexpr int PARAM_ARG_1 = 3;
static constexpr int PARAM_ARG_2 = 4;
static constexpr int PARAM_ARG_3 = 5;
static constexpr int PARAM_ARG_4 = 6;
explicit LabelGpuObject(uint64_t value, callback_t callback_1, callback_t callback_2, const uint64_t* args = nullptr)
{
params[PARAM_VALUE] = value;
params[PARAM_CALLBACK_1] = reinterpret_cast<uint64_t>(callback_1);
params[PARAM_CALLBACK_2] = reinterpret_cast<uint64_t>(callback_2);
if (args != nullptr)
{
params[PARAM_ARG_1] = args[0];
params[PARAM_ARG_2] = args[1];
params[PARAM_ARG_3] = args[2];
params[PARAM_ARG_4] = args[3];
}
check_hash = false;
type = Graphics::GpuMemoryObjectType::Label;
}
void* Create(GraphicContext* ctx, const uint64_t* vaddr, const uint64_t* size, int vaddr_num, VulkanMemory* mem) const override;
bool Equal(const uint64_t* other) const override;
[[nodiscard]] write_back_func_t GetWriteBackFunc() const override { return nullptr; };
[[nodiscard]] delete_func_t GetDeleteFunc() const override;
[[nodiscard]] update_func_t GetUpdateFunc() const override;
};
void LabelSet(CommandBuffer* buffer, Label* label);
} // namespace Kyty::Libs::Graphics
#endif // KYTY_EMU_ENABLED
#endif /* EMULATOR_INCLUDE_EMULATOR_GRAPHICS_LABEL_H_ */