16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 15:09:19 +02:00

Some renaming

This commit is contained in:
2025-04-15 01:32:56 +02:00
parent 12d6a1578d
commit a39d972126
864 changed files with 29 additions and 34 deletions

View File

@@ -0,0 +1,19 @@
#ifndef DRAW_CONSTANTS_SHADOW_HLSLI
#define DRAW_CONSTANTS_SHADOW_HLSLI
struct VertexPushConstantsShadow {
float4x4 m_ModelViewProjection;
float m_AlphaThreshold;
};
#ifdef SPIRV
[[vk::push_constant]] ConstantBuffer<VertexPushConstantsShadow> g_DrawConstants;
#else
cbuffer g_Const : register(b1) { VertexPushConstantsShadow g_DrawConstants; }
#endif
#endif