Get rid of the static asserts

This commit is contained in:
twinaphex 2020-03-07 22:54:57 +01:00
parent ead6c2b0dc
commit 212f32e2fd
3 changed files with 0 additions and 9 deletions

View File

@ -1117,9 +1117,6 @@ typedef struct ALIGN(16)
float time;
} d3d10_uniform_t;
static_assert(
(!(sizeof(d3d10_uniform_t) & 0xF)), "sizeof(d3d10_uniform_t) must be a multiple of 16");
typedef struct d3d10_shader_t
{
D3D10VertexShader vs;

View File

@ -2484,9 +2484,6 @@ typedef struct ALIGN(16)
float time;
} d3d11_uniform_t;
static_assert(
(!(sizeof(d3d11_uniform_t) & 0xF)), "sizeof(d3d11_uniform_t) must be a multiple of 16");
typedef struct d3d11_shader_t
{
D3D11VertexShader vs;

View File

@ -1340,9 +1340,6 @@ typedef struct ALIGN(16)
float time;
} d3d12_uniform_t;
static_assert(
(!(sizeof(d3d12_uniform_t) & 0xF)), "sizeof(d3d12_uniform_t) must be a multiple of 16");
typedef struct
{
unsigned cur_mon_id;