Files
funnygame/materialsystem/vulkan/commands/base.cpp
2026-06-13 01:51:28 +03:00

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);
}