From 2f29e3e4009ea20e7cebd202bd60ad16b2a03c6e Mon Sep 17 00:00:00 2001 From: Lightling Date: Sun, 23 Jan 2022 13:45:12 -0500 Subject: [PATCH] create buffer struct --- BufferStructs.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 BufferStructs.h diff --git a/BufferStructs.h b/BufferStructs.h new file mode 100644 index 0000000..a7bda48 --- /dev/null +++ b/BufferStructs.h @@ -0,0 +1,9 @@ +#pragma once + +#include + +struct VertexShaderExternalData +{ + DirectX::XMFLOAT4 colorTint; + DirectX::XMFLOAT3 offset; +};