tests: Add more tests for majority modifier syntax.

This commit is contained in:
Zebediah Figura
2022-03-29 16:50:33 -05:00
committed by Alexandre Julliard
parent 1c29b45c1f
commit 1ee7a4e82a
Notes: Alexandre Julliard 2023-02-20 22:45:26 +01:00
Approved-by: Giovanni Mascellani (@giomasce)
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/98
3 changed files with 109 additions and 18 deletions

View File

@@ -86,15 +86,6 @@ uniform float4 main() : sv_target
return 0;
}
[pixel shader fail]
typedef row_major float4x4 matrix_t;
typedef column_major matrix_t matrix2_t;
float4 main() : sv_target
{
return 0;
}
[pixel shader fail]
float4 main()
{
@@ -228,15 +219,6 @@ float4 main() : sv_target
return float4(0, 0, 0, 0);
}
[pixel shader fail]
typedef row_major float4x4 mat_t;
column_major mat_t m;
float4 main() : sv_target
{
return float4(0, 0, 0, 0);
}
[pixel shader fail]
typedef struct apple
{