Files
funnygame/materialsystem/vulkan/commands.h
2025-12-14 22:46:45 +02:00

16 lines
252 B
C

#ifndef VULKAN_COMMANDS_H
#define VULKAN_COMMANDS_H
#include "vulkan_state.h"
BEGIN_VULKAN_COMMAND(ClearColor)
float r;
float g;
float b;
float a;
IImage *pImage = NULL;
IImage **ppSwapchainImages = NULL;
END_VULKAN_COMMAND(ClearColor)
#endif