Skip to content
Snippets Groups Projects
Commit 1b7340a6 authored by Conor McCarthy's avatar Conor McCarthy Committed by Henri Verbeet
Browse files

tests/hlsl: Add a numeric types 16-bit test.

parent 49a683f2
No related branches found
No related tags found
1 merge request!1368tests/hlsl: Native 16-bit tests part 2.
Pipeline #37629 skipped
......@@ -100,3 +100,26 @@ float4 main() : sv_target
13.0, 14.0, 15.0);
return m[1];
}
[require]
shader model >= 6.2
native-16-bit
[pixel shader]
float4 main() : sv_target
{
half4 a = {0, 1, 2, 3};
half2 b = {4, 5};
int16_t3 c = {6.4, 7, 8};
int16_t d = 9.4;
uint16_t4x2 e = {14.4, 15, 16, 17, 18, 19, 20, 21};
vector<half, 3> g = {22, 23, 24};
matrix<uint16_t, 3, 2> h = {25.4, 26, 27, 28, 29, 30};
return mul(e, b) + a + c.xyzx + d + g.xxyz + h[2].xyxy;
}
[test]
draw quad
probe (0, 0) rgba (197.0, 218.0, 238.0, 257.0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment