Code cleanup and simplification

This commit is contained in:
Sascha Willems 2024-01-14 11:04:43 +01:00
parent 7ad9ee1dc3
commit 51618acc1f
5 changed files with 51 additions and 110 deletions

View file

@ -6,7 +6,7 @@ struct UBO
float4x4 model;
};
cbuffer ubo : register(b1) { UBO ubo; }
cbuffer ubo : register(b0) { UBO ubo; }
struct VSOutput
{