mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-04 16:24:29 +01:00
[dxvk] Introduce command type with extra data
The additional data is stored as a struct which can be modified after submitting the command to the CS chunk.
This commit is contained in:
parent
d12b2c6149
commit
f7dbcbe882
@ -82,6 +82,42 @@ namespace dxvk {
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* \brief Typed command with metadata
|
||||
*
|
||||
* Stores a function object and an arbitrary
|
||||
* data structure which can be modified after
|
||||
* submitting the command to a cs chunk.
|
||||
*/
|
||||
template<typename T, typename M>
|
||||
class alignas(16) DxvkCsDataCmd : public DxvkCsCmd {
|
||||
|
||||
public:
|
||||
|
||||
template<typename... Args>
|
||||
DxvkCsDataCmd(T&& cmd, Args&&... args)
|
||||
: m_command (std::move(cmd)),
|
||||
m_data (std::forward<Args>(args)...) { }
|
||||
|
||||
DxvkCsDataCmd (DxvkCsDataCmd&&) = delete;
|
||||
DxvkCsDataCmd& operator = (DxvkCsDataCmd&&) = delete;
|
||||
|
||||
void exec(DxvkContext* ctx) const {
|
||||
m_command(ctx, &m_data);
|
||||
}
|
||||
|
||||
M* data() {
|
||||
return &m_data;
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
T m_command;
|
||||
M m_data;
|
||||
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* \brief Submission flags
|
||||
*/
|
||||
@ -148,6 +184,34 @@ namespace dxvk {
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Adds a command with data to the chunk
|
||||
*
|
||||
* \param [in] command The command to add
|
||||
* \param [in] args Constructor args for the data object
|
||||
* \returns Pointer to the data object, or \c nullptr
|
||||
*/
|
||||
template<typename M, typename T, typename... Args>
|
||||
M* pushCmd(T& command, Args&&... args) {
|
||||
using FuncType = DxvkCsDataCmd<T, M>;
|
||||
|
||||
if (m_commandOffset + sizeof(FuncType) > MaxBlockSize)
|
||||
return nullptr;
|
||||
|
||||
FuncType* func = new (m_data + m_commandOffset)
|
||||
FuncType(std::move(command), std::forward<Args>(args)...);
|
||||
|
||||
if (m_tail != nullptr)
|
||||
m_tail->setNext(func);
|
||||
else
|
||||
m_head = func;
|
||||
m_tail = func;
|
||||
|
||||
m_commandCount += 1;
|
||||
m_commandOffset += sizeof(FuncType);
|
||||
return func->data();
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Initializes chunk for recording
|
||||
* \param [in] flags Chunk flags
|
||||
|
Loading…
Reference in New Issue
Block a user