mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
mesa: fix missing w assignment in asin(vec4)
This commit is contained in:
parent
26988c170c
commit
a9997657b9
1 changed files with 1 additions and 0 deletions
|
|
@ -343,6 +343,7 @@ vec4 asin(const vec4 v)
|
|||
__retVal.x = asin(v.x);
|
||||
__retVal.y = asin(v.y);
|
||||
__retVal.z = asin(v.z);
|
||||
__retVal.w = asin(v.w);
|
||||
}
|
||||
|
||||
float acos(const float x)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue