Sign in
dawn
/
dawn
/
ec3114d8dfea35324bcc4e76c8eb45976c2751a2
/
.
/
test
/
tint
/
expressions
/
index
/
var
/
let
/
literal
/
matrix.wgsl.expected.msl
blob: 084e80f16c6858cbf6b41e47442f69cbfa3df205 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
float3 f
()
{
float3x3 m
=
float3x3
(
float3
(
1.0f
,
2.0f
,
3.0f
),
float3
(
4.0f
,
5.0f
,
6.0f
),
float3
(
7.0f
,
8.0f
,
9.0f
));
int
const
i
=
1
;
return
m
[
min
(
uint
(
i
),
2u
)];
}