mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
27 lines
548 B
C++
27 lines
548 B
C++
#pragma once
|
|
|
|
#include <unordered_set>
|
|
|
|
#include "dxvk_lifetime.h"
|
|
#include "dxvk_recorder.h"
|
|
|
|
namespace dxvk {
|
|
|
|
/**
|
|
* \brief DXVK deferred command list
|
|
*
|
|
* Buffers Vulkan commands so that they can be recorded
|
|
* into an actual Vulkan command buffer later. This is
|
|
* used to implement D3D11 Deferred Contexts, which do
|
|
* not map particularly well to Vulkan's command buffers.
|
|
*/
|
|
class DxvkDeferredCommands : public DxvkRecorder {
|
|
|
|
public:
|
|
|
|
DxvkDeferredCommands();
|
|
~DxvkDeferredCommands();
|
|
|
|
};
|
|
|
|
} |