13 lines
199 B
C++
13 lines
199 B
C++
#include "../vulkan_state.h"
|
|
#include "../commands.h"
|
|
#include "tier0/platform.h"
|
|
|
|
DECLARE_VULKAN_COMMAND(Empty)
|
|
{
|
|
}
|
|
|
|
DECLARE_VULKAN_COMMAND(Dispatch)
|
|
{
|
|
vkCmdDispatch(hCommandBuffer, uX, uY, uZ);
|
|
}
|