In the Unity documentation it mentions about performance issue when converting precision. My question is what exactly is considered as precision conversion?
Consider the following example:
float a = 1;
half b = 1;
fixed c = 1;
int d = 1;
a = a * c;
a = b;
a = a * d;
a = a * 2;
Are they all considered as precision conversion?