score
Home
Classes
Namespaces
Files
Loading...
Searching...
No Matches
VendorDmaRegistrar.hpp
Go to the documentation of this file.
1
#pragma once
35
#include <cstdint>
36
#include <functional>
37
38
namespace
score::gfx::interop
39
{
40
struct
VendorDmaRegistrar
41
{
42
std::function<bool(
void
* ptr, std::uint32_t size)> registerSlot;
43
std::function<void(
void
* ptr, std::uint32_t size)> releaseSlot;
44
std::function<bool(
void
* ptr, std::uint32_t size)> verifyTransfer;
45
std::function<bool(
void
* hostDst, std::uint32_t size)> readbackTransfer;
46
};
47
}
score::gfx::interop::VendorDmaRegistrar
Definition
VendorDmaRegistrar.hpp:41