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.
12 lines
304 B
12 lines
304 B
7 months ago
|
|
||
|
float PixelShaderFunction(double inDV1a, double inDV1b, double inDV1c,
|
||
|
double2 inDV2, double3 inDV3, double4 inDV4,
|
||
|
uint inU1a, uint inU1b)
|
||
|
{
|
||
|
double r00 = fma(inDV1a, inDV1b, inDV1c);
|
||
|
double r01 = asdouble(inU1a, inU1b);
|
||
|
|
||
|
return 0.0;
|
||
|
}
|
||
|
|