I was wondering if there could be a a little difference (for performance issues) between multiplication and division in a simple compute like in:
float thing = Mouse.getDY() * 0.1f;
float otherThing = Mouse.getDY() / 10f;
when this kind of things happens a lot, of course, for example in camera position calculation in a 3D game (lwjgl).
Thanks !