mirror of
https://github.com/g-truc/glm.git
synced 2024-11-23 09:14:34 +00:00
Fixed ticket #128, bitfield based on vec types
This commit is contained in:
parent
5498879b8a
commit
cec8665d16
@ -285,8 +285,8 @@ namespace glm
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
return detail::tvec2<T>(
|
return detail::tvec2<T>(
|
||||||
bitfieldExtract(Value[0]),
|
bitfieldExtract(Value[0], Offset, Bits),
|
||||||
bitfieldExtract(Value[1]));
|
bitfieldExtract(Value[1], Offset, Bits));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
@ -298,9 +298,9 @@ namespace glm
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
return detail::tvec3<T>(
|
return detail::tvec3<T>(
|
||||||
bitfieldExtract(Value[0]),
|
bitfieldExtract(Value[0], Offset, Bits),
|
||||||
bitfieldExtract(Value[1]),
|
bitfieldExtract(Value[1], Offset, Bits),
|
||||||
bitfieldExtract(Value[2]));
|
bitfieldExtract(Value[2], Offset, Bits));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
@ -312,10 +312,10 @@ namespace glm
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
return detail::tvec4<T>(
|
return detail::tvec4<T>(
|
||||||
bitfieldExtract(Value[0]),
|
bitfieldExtract(Value[0], Offset, Bits),
|
||||||
bitfieldExtract(Value[1]),
|
bitfieldExtract(Value[1], Offset, Bits),
|
||||||
bitfieldExtract(Value[2]),
|
bitfieldExtract(Value[2], Offset, Bits),
|
||||||
bitfieldExtract(Value[3]));
|
bitfieldExtract(Value[3], Offset, Bits));
|
||||||
}
|
}
|
||||||
|
|
||||||
// bitfieldInsert
|
// bitfieldInsert
|
||||||
|
Loading…
Reference in New Issue
Block a user