GLM  0.9.5
gtc/packing.hpp
Go to the documentation of this file.
1 
39 #ifndef GLM_GTC_packing
40 #define GLM_GTC_packing
41 
42 // Dependency:
43 #include "type_precision.hpp"
44 
45 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
46 # pragma message("GLM: GLM_GTC_packing extension included")
47 #endif
48 
49 namespace glm
50 {
53 
65  GLM_FUNC_DECL uint8 packUnorm1x8(float const & v);
66 
77  GLM_FUNC_DECL float unpackUnorm1x8(uint8 const & p);
78 
93  GLM_FUNC_DECL uint16 packUnorm2x8(vec2 const & v);
94 
109  GLM_FUNC_DECL vec2 unpackUnorm2x8(uint16 const & p);
110 
122  GLM_FUNC_DECL uint8 packSnorm1x8(float const & s);
123 
135  GLM_FUNC_DECL float unpackSnorm1x8(uint8 const & p);
136 
151  GLM_FUNC_DECL uint16 packSnorm2x8(vec2 const & v);
152 
167  GLM_FUNC_DECL vec2 unpackSnorm2x8(uint16 const & p);
168 
180  GLM_FUNC_DECL uint16 packUnorm1x16(float const & v);
181 
193  GLM_FUNC_DECL float unpackUnorm1x16(uint16 const & p);
194 
209  GLM_FUNC_DECL uint64 packUnorm4x16(vec4 const & v);
210 
225  GLM_FUNC_DECL vec4 unpackUnorm4x16(uint64 const & p);
226 
238  GLM_FUNC_DECL uint16 packSnorm1x16(float const & v);
239 
251  GLM_FUNC_DECL float unpackSnorm1x16(uint16 const & p);
252 
267  GLM_FUNC_DECL uint64 packSnorm4x16(vec4 const & v);
268 
283  GLM_FUNC_DECL vec4 unpackSnorm4x16(uint64 const & p);
284 
294  GLM_FUNC_DECL uint16 packHalf1x16(float const & v);
295 
305  GLM_FUNC_DECL float unpackHalf1x16(uint16 const & v);
306 
318  GLM_FUNC_DECL uint64 packHalf4x16(vec4 const & v);
319 
331  GLM_FUNC_DECL vec4 unpackHalf4x16(uint64 const & p);
332 
344  GLM_FUNC_DECL uint32 packI3x10_1x2(ivec4 const & v);
345 
355  GLM_FUNC_DECL ivec4 unpackI3x10_1x2(uint32 const & p);
356 
368  GLM_FUNC_DECL uint32 packU3x10_1x2(uvec4 const & v);
369 
379  GLM_FUNC_DECL uvec4 unpackU3x10_1x2(uint32 const & p);
380 
397  GLM_FUNC_DECL uint32 packSnorm3x10_1x2(vec4 const & v);
398 
414  GLM_FUNC_DECL vec4 unpackSnorm3x10_1x2(uint32 const & p);
415 
432  GLM_FUNC_DECL uint32 packUnorm3x10_1x2(vec4 const & v);
433 
449  GLM_FUNC_DECL vec4 unpackUnorm3x10_1x2(uint32 const & p);
450 
460  GLM_FUNC_DECL uint32 packF2x11_1x10(vec3 const & v);
461 
470  GLM_FUNC_DECL vec3 unpackF2x11_1x10(uint32 const & p);
471 
473 }// namespace glm
474 
475 #include "packing.inl"
476 
477 #endif//GLM_GTC_packing
478 
highp_ivec4 ivec4
4 components vector of signed integer numbers.
Definition: type_vec.hpp:454
highp_vec3 vec3
3 components vector of floating-point numbers.
Definition: type_vec.hpp:393
detail::uint32 uint32
32 bit unsigned integer type.
Definition: type_int.hpp:96
GLM_FUNC_DECL float unpackUnorm1x16(uint16 const &p)
First, unpacks a single 16-bit unsigned integer p into a of 16-bit unsigned integers.
GLM_FUNC_DECL uint16 packUnorm2x8(vec2 const &v)
First, converts each component of the normalized floating-point value v into 8-bit integer values...
GLM_FUNC_DECL uint16 packSnorm1x16(float const &v)
First, converts the normalized floating-point value v into 16-bit integer value.
highp_vec4 vec4
4 components vector of floating-point numbers.
Definition: type_vec.hpp:398
GLM_FUNC_DECL uint8 packSnorm1x8(float const &s)
First, converts the normalized floating-point value v into 8-bit integer value.
GLM_FUNC_DECL float unpackUnorm1x8(uint8 const &p)
Convert a single 8-bit integer to a normalized floating-point value.
GLM_FUNC_DECL uint32 packUnorm3x10_1x2(vec4 const &v)
First, converts the first three components of the normalized floating-point value v into 10-bit unsig...
GLM_FUNC_DECL uint64 packSnorm4x16(vec4 const &v)
First, converts each component of the normalized floating-point value v into 16-bit integer values...
GLM_FUNC_DECL float unpackSnorm1x16(uint16 const &p)
First, unpacks a single 16-bit unsigned integer p into a single 16-bit signed integers.
GLM_FUNC_DECL uint32 packI3x10_1x2(ivec4 const &v)
Returns an unsigned integer obtained by converting the components of a four-component signed integer ...
detail::uint64 uint64
64 bit unsigned integer type.
Definition: type_int.hpp:97
GLM_FUNC_DECL vec4 unpackUnorm4x16(uint64 const &p)
First, unpacks a single 64-bit unsigned integer p into four 16-bit unsigned integers.
GLM_FUNC_DECL vec4 unpackUnorm3x10_1x2(uint32 const &p)
First, unpacks a single 32-bit unsigned integer p into four 16-bit signed integers.
GLM_FUNC_DECL uint32 packSnorm3x10_1x2(vec4 const &v)
First, converts the first three components of the normalized floating-point value v into 10-bit signe...
GLM_FUNC_DECL vec3 unpackF2x11_1x10(uint32 const &p)
First, unpacks a single 32-bit unsigned integer p into two 11-bit signless floating-point values and ...
GLM_FUNC_DECL uint32 packU3x10_1x2(uvec4 const &v)
Returns an unsigned integer obtained by converting the components of a four-component unsigned intege...
OpenGL Mathematics (glm.g-truc.net)
GLM_FUNC_DECL float unpackSnorm1x8(uint8 const &p)
First, unpacks a single 8-bit unsigned integer p into a single 8-bit signed integers.
GLM_FUNC_DECL uint16 packHalf1x16(float const &v)
Returns an unsigned integer obtained by converting the components of a floating-point scalar to the 1...
GLM_FUNC_DECL uint16 packUnorm1x16(float const &v)
First, converts the normalized floating-point value v into a 16-bit integer value.
detail::uint8 uint8
8 bit unsigned integer type.
Definition: type_int.hpp:94
GLM_FUNC_DECL uint16 packSnorm2x8(vec2 const &v)
First, converts each component of the normalized floating-point value v into 8-bit integer values...
GLM_FUNC_DECL ivec4 unpackI3x10_1x2(uint32 const &p)
Unpacks a single 32-bit unsigned integer p into three 10-bit and one 2-bit signed integers...
GLM_FUNC_DECL vec4 unpackSnorm4x16(uint64 const &p)
First, unpacks a single 64-bit unsigned integer p into four 16-bit signed integers.
GLM_FUNC_DECL vec4 unpackSnorm3x10_1x2(uint32 const &p)
First, unpacks a single 32-bit unsigned integer p into four 16-bit signed integers.
GLM_FUNC_DECL uint64 packHalf4x16(vec4 const &v)
Returns an unsigned integer obtained by converting the components of a four-component floating-point ...
GLM_FUNC_DECL uvec4 unpackU3x10_1x2(uint32 const &p)
Unpacks a single 32-bit unsigned integer p into three 10-bit and one 2-bit unsigned integers...
GLM_FUNC_DECL vec2 unpackUnorm2x8(uint16 const &p)
First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit unsigned integers.
highp_uvec4 uvec4
4 components vector of unsigned integer numbers.
Definition: type_vec.hpp:482
GLM_FUNC_DECL float unpackHalf1x16(uint16 const &v)
Returns a floating-point scalar with components obtained by unpacking a 16-bit unsigned integer into ...
GLM_FUNC_DECL uint8 packUnorm1x8(float const &v)
First, converts the normalized floating-point value v into a 8-bit integer value. ...
detail::uint16 uint16
16 bit unsigned integer type.
Definition: type_int.hpp:95
GLM_FUNC_DECL vec2 unpackSnorm2x8(uint16 const &p)
First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit signed integers.
GLM_FUNC_DECL uint64 packUnorm4x16(vec4 const &v)
First, converts each component of the normalized floating-point value v into 16-bit integer values...
highp_vec2 vec2
2 components vector of floating-point numbers.
Definition: type_vec.hpp:388
GLM_FUNC_DECL vec4 unpackHalf4x16(uint64 const &p)
Returns a four-component floating-point vector with components obtained by unpacking a 64-bit unsigne...
GLM_FUNC_DECL uint32 packF2x11_1x10(vec3 const &v)
First, converts the first two components of the normalized floating-point value v into 11-bit signles...