Hi Michael
Yes, you are correct – double precision sin/cos functions are not present in GLSL.
Maybe ‘precise’ qualifier will help. It tells compiler not to optimize math expressions (for example, do not replace ‘x /y’ with ‘x * rcp(y)’).
Thanks
Robert