Files
funnygame/materialsystem/vulkan/commands.h
2025-12-14 18:00:38 +02:00

16 lines
228 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;
IImage **ppImage;
END_VULKAN_COMMAND(ClearColor)
#endif