You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*#pragma settings RewriteMatrixVectorMultiply*/
|
|
|
|
half4 main() {
|
|
half4x4 m44 = half4x4(123);
|
|
half4 v4 = half4(0, 1, 2, 3);
|
|
return m44 * v4;
|
|
}
|