0.9.6
gtc/packing.hpp
Go to the documentation of this file.
1 
43 #pragma once
44 
45 // Dependency:
46 #include "type_precision.hpp"
47 
48 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
49 # pragma message("GLM: GLM_GTC_packing extension included")
50 #endif
51 
52 namespace glm
53 {
56 
68  GLM_FUNC_DECL uint8 packUnorm1x8(float v);
69 
80  GLM_FUNC_DECL float unpackUnorm1x8(uint8 p);
81 
96  GLM_FUNC_DECL uint16 packUnorm2x8(vec2 const & v);
97 
112  GLM_FUNC_DECL vec2 unpackUnorm2x8(uint16 p);
113 
125  GLM_FUNC_DECL uint8 packSnorm1x8(float s);
126 
138  GLM_FUNC_DECL float unpackSnorm1x8(uint8 p);
139 
154  GLM_FUNC_DECL uint16 packSnorm2x8(vec2 const & v);
155 
170  GLM_FUNC_DECL vec2 unpackSnorm2x8(uint16 p);
171 
183  GLM_FUNC_DECL uint16 packUnorm1x16(float v);
184 
196  GLM_FUNC_DECL float unpackUnorm1x16(uint16 p);
197 
212  GLM_FUNC_DECL uint64 packUnorm4x16(vec4 const & v);
213 
228  GLM_FUNC_DECL vec4 unpackUnorm4x16(uint64 p);
229 
241  GLM_FUNC_DECL uint16 packSnorm1x16(float v);
242 
254  GLM_FUNC_DECL float unpackSnorm1x16(uint16 p);
255 
270  GLM_FUNC_DECL uint64 packSnorm4x16(vec4 const & v);
271 
286  GLM_FUNC_DECL vec4 unpackSnorm4x16(uint64 const & p);
287 
297  GLM_FUNC_DECL uint16 packHalf1x16(float v);
298 
308  GLM_FUNC_DECL float unpackHalf1x16(uint16 v);
309 
321  GLM_FUNC_DECL uint64 packHalf4x16(vec4 const & v);
322 
334  GLM_FUNC_DECL vec4 unpackHalf4x16(uint64 p);
335 
347  GLM_FUNC_DECL uint32 packI3x10_1x2(ivec4 const & v);
348 
358  GLM_FUNC_DECL ivec4 unpackI3x10_1x2(uint32 p);
359 
371  GLM_FUNC_DECL uint32 packU3x10_1x2(uvec4 const & v);
372 
382  GLM_FUNC_DECL uvec4 unpackU3x10_1x2(uint32 p);
383 
400  GLM_FUNC_DECL uint32 packSnorm3x10_1x2(vec4 const & v);
401 
417  GLM_FUNC_DECL vec4 unpackSnorm3x10_1x2(uint32 p);
418 
435  GLM_FUNC_DECL uint32 packUnorm3x10_1x2(vec4 const & v);
436 
452  GLM_FUNC_DECL vec4 unpackUnorm3x10_1x2(uint32 p);
453 
463  GLM_FUNC_DECL uint32 packF2x11_1x10(vec3 const & v);
464 
473  GLM_FUNC_DECL vec3 unpackF2x11_1x10(uint32 p);
474 
476 }// namespace glm
477 
478 #include "packing.inl"
GLM_FUNC_DECL uint8 packSnorm1x8(float s)
First, converts the normalized floating-point value v into 8-bit integer value.
GLM_FUNC_DECL vec4 unpackSnorm3x10_1x2(uint32 p)
First, unpacks a single 32-bit unsigned integer p into four 16-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 uint32 packU3x10_1x2(uvec4 const &v)
Returns an unsigned integer obtained by converting the components of a four-component unsigned intege...
GLM_FUNC_DECL uint64 packHalf4x16(vec4 const &v)
Returns an unsigned integer obtained by converting the components of a four-component floating-point ...
highp_vec4 vec4
4 components vector of floating-point numbers.
Definition: type_vec.hpp:402
GLM_FUNC_DECL uvec4 unpackU3x10_1x2(uint32 p)
Unpacks a single 32-bit unsigned integer p into three 10-bit and one 2-bit unsigned integers...
GLM_FUNC_DECL uint8 packUnorm1x8(float v)
First, converts the normalized floating-point value v into a 8-bit integer value. ...
highp_ivec4 ivec4
4 components vector of signed integer numbers.
Definition: type_vec.hpp:458
GLM_FUNC_DECL float unpackSnorm1x16(uint16 p)
First, unpacks a single 16-bit unsigned integer p into a single 16-bit signed integers.
GLM_FUNC_DECL vec4 unpackUnorm3x10_1x2(uint32 p)
First, unpacks a single 32-bit unsigned integer p into four 16-bit signed integers.
GLM_FUNC_DECL vec2 unpackSnorm2x8(uint16 p)
First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit signed integers.
GLM_FUNC_DECL uint16 packHalf1x16(float v)
Returns an unsigned integer obtained by converting the components of a floating-point scalar to the 1...
GLM_FUNC_DECL float unpackSnorm1x8(uint8 p)
First, unpacks a single 8-bit unsigned integer p into a single 8-bit signed integers.
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...
GLM_FUNC_DECL uint16 packUnorm1x16(float v)
First, converts the normalized floating-point value v into a 16-bit integer value.
OpenGL Mathematics (glm.g-truc.net)
GLM_FUNC_DECL float unpackUnorm1x16(uint16 p)
First, unpacks a single 16-bit unsigned integer p into a of 16-bit unsigned 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...
GLM_FUNC_DECL ivec4 unpackI3x10_1x2(uint32 p)
Unpacks a single 32-bit unsigned integer p into three 10-bit and one 2-bit signed integers...
GLM_FUNC_DECL uint16 packSnorm1x16(float v)
First, converts the normalized floating-point value v into 16-bit integer value.
GLM_FUNC_DECL float unpackHalf1x16(uint16 v)
Returns a floating-point scalar with components obtained by unpacking a 16-bit unsigned integer into ...
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 vec3 unpackF2x11_1x10(uint32 p)
First, unpacks a single 32-bit unsigned integer p into two 11-bit signless floating-point values and ...
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 vec4 unpackHalf4x16(uint64 p)
Returns a four-component floating-point vector with components obtained by unpacking a 64-bit unsigne...
GLM_FUNC_DECL vec2 unpackUnorm2x8(uint16 p)
First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit unsigned integers.
Definition: _noise.hpp:39
GLM_FUNC_DECL uint16 packUnorm2x8(vec2 const &v)
First, converts each component of the normalized floating-point value v into 8-bit integer values...
highp_vec3 vec3
3 components vector of floating-point numbers.
Definition: type_vec.hpp:397
highp_vec2 vec2
2 components vector of floating-point numbers.
Definition: type_vec.hpp:392
GLM_FUNC_DECL uint32 packI3x10_1x2(ivec4 const &v)
Returns an unsigned integer obtained by converting the components of a four-component signed integer ...
highp_uvec4 uvec4
4 components vector of unsigned integer numbers.
Definition: type_vec.hpp:486
GLM_FUNC_DECL float unpackUnorm1x8(uint8 p)
Convert a single 8-bit integer to a normalized floating-point value.
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 vec4 unpackUnorm4x16(uint64 p)
First, unpacks a single 64-bit unsigned integer p into four 16-bit unsigned integers.
GLM_FUNC_DECL uint16 packSnorm2x8(vec2 const &v)
First, converts each component of the normalized floating-point value v into 8-bit integer values...