Loading...
Searching...
No Matches
VendorDmaRegistrar.hpp
Go to the documentation of this file.
1#pragma once
35#include <cstdint>
36#include <functional>
37
38namespace score::gfx::interop
39{
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}
Definition VendorDmaRegistrar.hpp:41