commit 328f839da8a2e806a3a7f3fd2263f8940090d0f0 Author: Caleb Date: Wed Feb 25 21:52:48 2026 -0500 initial commit for coom in opengl diff --git a/.clangd b/.clangd new file mode 100644 index 0000000..e17c7ce --- /dev/null +++ b/.clangd @@ -0,0 +1,2 @@ +CompileFlags: + Add: [-Iinclude, -Wall, -std=c++11] diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4951f80 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +./build/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..25d60ac --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ + +CC = clang++ +CFLAGS = -Wall -Wextra -Iinclude +LIBS = -lglfw -lX11 -lXi -lXcursor -lGL -lasound -ldl -lm + +default: + mkdir -p build + $(CC) $(CFLAGS) main.cpp glad.c stb_image.cpp -o build/main $(LIBS) + +run: + cd build && prime-run ./main +full: + make && make run +clean: + rm -f build/main diff --git a/awesomeface.png b/awesomeface.png new file mode 100644 index 0000000..9840caf Binary files /dev/null and b/awesomeface.png differ diff --git a/build/main b/build/main new file mode 100755 index 0000000..f4b36cc Binary files /dev/null and b/build/main differ diff --git a/camera.hpp b/camera.hpp new file mode 100644 index 0000000..ccec623 --- /dev/null +++ b/camera.hpp @@ -0,0 +1,143 @@ +#ifndef CAMERA_H +#define CAMERA_H + +#include +#include +#include +#include +#include + +// Defines several possible options for camera movement. Used as abstraction to +// stay away from window-system specific input methods +enum Camera_Movement { FORWARD, BACKWARD, LEFT, RIGHT, UP, DOWN }; + +// Default camera values +const float YAW = -90.0f; +const float PITCH = 0.0f; +const float SPEED = 5.0f; +const float SENSITIVITY = 0.1f; +const float ZOOM = 90.0f; + +// An abstract camera class that processes input and calculates the +// corresponding Euler Angles, Vectors and Matrices for use in OpenGL +class Camera { +public: + // camera Attributes + glm::vec3 Position; + glm::vec3 Front; + glm::vec3 Up; + glm::vec3 Right; + glm::vec3 WorldUp; + // euler Angles + float Yaw; + float Pitch; + // camera options + float MovementSpeed; + float MouseSensitivity; + float Zoom; + + float verticalVelocity = 0.0f; + float gravity = -20.0f; // How fast you fall back down + float jumpForce = 8.0f; // How high you jump + bool isGrounded = true; // Are we on the floor? + + // constructor with vectors + Camera(glm::vec3 position = glm::vec3(0.0f, 0.0f, 0.0f), + glm::vec3 up = glm::vec3(0.0f, 1.0f, 0.0f), float yaw = YAW, + float pitch = PITCH) + : Front(glm::vec3(0.0f, 0.0f, -1.0f)), MovementSpeed(SPEED), + MouseSensitivity(SENSITIVITY), Zoom(ZOOM) { + Position = position; + WorldUp = up; + Yaw = yaw; + Pitch = pitch; + updateCameraVectors(); + } + // constructor with scalar values + Camera(float posX, float posY, float posZ, float upX, float upY, float upZ, + float yaw, float pitch) + : Front(glm::vec3(0.0f, 0.0f, -1.0f)), MovementSpeed(SPEED), + MouseSensitivity(SENSITIVITY), Zoom(ZOOM) { + Position = glm::vec3(posX, posY, posZ); + WorldUp = glm::vec3(upX, upY, upZ); + Yaw = yaw; + Pitch = pitch; + updateCameraVectors(); + } + + // returns the view matrix calculated using Euler Angles and the LookAt Matrix + glm::mat4 GetViewMatrix() { + return glm::lookAt(Position, Position + Front, Up); + } + + // processes input received from any keyboard-like input system. Accepts input + // parameter in the form of camera defined ENUM (to abstract it from windowing + // systems) + void ProcessKeyboard(Camera_Movement direction, float deltaTime) { + float velocity = MovementSpeed * deltaTime; + + glm::vec3 bodyFront = glm::normalize(glm::vec3(Front.x, 0.0f, Front.z)); + glm::vec3 bodyRight = glm::normalize(glm::vec3(Right.x, 0.0f, Right.z)); + + if (direction == FORWARD) + Position += bodyFront * velocity; + if (direction == BACKWARD) + Position -= bodyFront * velocity; + if (direction == LEFT) + Position -= bodyRight * velocity; + if (direction == RIGHT) + Position += bodyRight * velocity; + if (direction == UP) + Position += Up * velocity * 10.0f; + } + + // processes input received from a mouse input system. Expects the offset + // value in both the x and y direction. + void ProcessMouseMovement(float xoffset, float yoffset, + GLboolean constrainPitch = true) { + xoffset *= MouseSensitivity; + yoffset *= MouseSensitivity; + + Yaw += xoffset; + Pitch += yoffset; + + // make sure that when pitch is out of bounds, screen doesn't get flipped + if (constrainPitch) { + if (Pitch > 89.0f) + Pitch = 89.0f; + if (Pitch < -89.0f) + Pitch = -89.0f; + } + + // update Front, Right and Up Vectors using the updated Euler angles + updateCameraVectors(); + } + + // processes input received from a mouse scroll-wheel event. Only requires + // input on the vertical wheel-axis + void ProcessMouseScroll(float yoffset) { + Zoom -= (float)yoffset; + if (Zoom < 1.0f) + Zoom = 1.0f; + if (Zoom > 90.0f) + Zoom = 90.0f; + } + +private: + // calculates the front vector from the Camera's (updated) Euler Angles + void updateCameraVectors() { + // calculate the new Front vector + glm::vec3 front; + front.x = cos(glm::radians(Yaw)) * cos(glm::radians(Pitch)); + front.y = sin(glm::radians(Pitch)); + front.z = sin(glm::radians(Yaw)) * cos(glm::radians(Pitch)); + Front = glm::normalize(front); + // also re-calculate the Right and Up vector + Right = glm::normalize(glm::cross( + Front, WorldUp)); // normalize the vectors, because their length gets + // closer to 0 the more you look up or down which + // results in slower movement. + Up = glm::normalize(glm::cross(Right, Front)); + } +}; +#endif diff --git a/compile_flags.txt b/compile_flags.txt new file mode 100644 index 0000000..30679be --- /dev/null +++ b/compile_flags.txt @@ -0,0 +1 @@ +-Iinclude diff --git a/container.jpg b/container.jpg new file mode 100644 index 0000000..d07bee4 Binary files /dev/null and b/container.jpg differ diff --git a/fragmentshader.glsl b/fragmentshader.glsl new file mode 100644 index 0000000..c813933 --- /dev/null +++ b/fragmentshader.glsl @@ -0,0 +1,14 @@ +#version 330 core +out vec4 Colour; + +in vec3 ourColor; +in vec2 TexCoord; + +uniform sampler2D texture1; +uniform sampler2D texture2; + +void main() +{ + // Colour = texture(texture1, TexCoord) * vec4(ourColor, 1.0f); + Colour = mix(texture(texture1, TexCoord), texture(texture2, TexCoord), .5); +} diff --git a/glad.c b/glad.c new file mode 100644 index 0000000..c9da4dd --- /dev/null +++ b/glad.c @@ -0,0 +1,2123 @@ +/* + + OpenGL loader generated by glad 0.1.36 on Wed Feb 18 17:52:33 2026. + + Language/Generator: C/C++ + Specification: gl + APIs: gl=3.3 + Profile: compatibility + Extensions: + + Loader: True + Local files: False + Omit khrplatform: False + Reproducible: False + + Commandline: + --profile="compatibility" --api="gl=3.3" --generator="c" --spec="gl" + --extensions="" Online: + https://glad.dav1d.de/#profile=compatibility&language=c&specification=gl&loader=on&api=gl%3D3.3 +*/ + +#include "include/glad/glad.h" +#include +#include +#include + +static void *get_proc(const char *namez); + +#if defined(_WIN32) || defined(__CYGWIN__) +#ifndef _WINDOWS_ +#undef APIENTRY +#endif +#include +static HMODULE libGL; + +typedef void *(APIENTRYP PFNWGLGETPROCADDRESSPROC_PRIVATE)(const char *); +static PFNWGLGETPROCADDRESSPROC_PRIVATE gladGetProcAddressPtr; + +#ifdef _MSC_VER +#ifdef __has_include +#if __has_include() +#define HAVE_WINAPIFAMILY 1 +#endif +#elif _MSC_VER >= 1700 && !_USING_V110_SDK71_ +#define HAVE_WINAPIFAMILY 1 +#endif +#endif + +#ifdef HAVE_WINAPIFAMILY +#include +#if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) && \ + WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) +#define IS_UWP 1 +#endif +#endif + +static int open_gl(void) { +#ifndef IS_UWP + libGL = LoadLibraryW(L"opengl32.dll"); + if (libGL != NULL) { + void (*tmp)(void); + tmp = (void (*)(void))GetProcAddress(libGL, "wglGetProcAddress"); + gladGetProcAddressPtr = (PFNWGLGETPROCADDRESSPROC_PRIVATE)tmp; + return gladGetProcAddressPtr != NULL; + } +#endif + + return 0; +} + +static void close_gl(void) { + if (libGL != NULL) { + FreeLibrary((HMODULE)libGL); + libGL = NULL; + } +} +#else +#include +static void *libGL; + +#if !defined(__APPLE__) && !defined(__HAIKU__) +typedef void *(APIENTRYP PFNGLXGETPROCADDRESSPROC_PRIVATE)(const char *); +static PFNGLXGETPROCADDRESSPROC_PRIVATE gladGetProcAddressPtr; +#endif + +static int open_gl(void) { +#ifdef __APPLE__ + static const char *NAMES[] = { + "../Frameworks/OpenGL.framework/OpenGL", + "/Library/Frameworks/OpenGL.framework/OpenGL", + "/System/Library/Frameworks/OpenGL.framework/OpenGL", + "/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL"}; +#else + static const char *NAMES[] = {"libGL.so.1", "libGL.so"}; +#endif + + unsigned int index = 0; + for (index = 0; index < (sizeof(NAMES) / sizeof(NAMES[0])); index++) { + libGL = dlopen(NAMES[index], RTLD_NOW | RTLD_GLOBAL); + + if (libGL != NULL) { +#if defined(__APPLE__) || defined(__HAIKU__) + return 1; +#else + gladGetProcAddressPtr = (PFNGLXGETPROCADDRESSPROC_PRIVATE)dlsym( + libGL, "glXGetProcAddressARB"); + return gladGetProcAddressPtr != NULL; +#endif + } + } + + return 0; +} + +static void close_gl(void) { + if (libGL != NULL) { + dlclose(libGL); + libGL = NULL; + } +} +#endif + +static void *get_proc(const char *namez) { + void *result = NULL; + if (libGL == NULL) + return NULL; + +#if !defined(__APPLE__) && !defined(__HAIKU__) + if (gladGetProcAddressPtr != NULL) { + result = gladGetProcAddressPtr(namez); + } +#endif + if (result == NULL) { +#if defined(_WIN32) || defined(__CYGWIN__) + result = (void *)GetProcAddress((HMODULE)libGL, namez); +#else + result = dlsym(libGL, namez); +#endif + } + + return result; +} + +int gladLoadGL(void) { + int status = 0; + + if (open_gl()) { + status = gladLoadGLLoader(&get_proc); + close_gl(); + } + + return status; +} + +struct gladGLversionStruct GLVersion = {0, 0}; + +#if defined(GL_ES_VERSION_3_0) || defined(GL_VERSION_3_0) +#define _GLAD_IS_SOME_NEW_VERSION 1 +#endif + +static int max_loaded_major; +static int max_loaded_minor; + +static const char *exts = NULL; +static int num_exts_i = 0; +static char **exts_i = NULL; + +static int get_exts(void) { +#ifdef _GLAD_IS_SOME_NEW_VERSION + if (max_loaded_major < 3) { +#endif + exts = (const char *)glGetString(GL_EXTENSIONS); +#ifdef _GLAD_IS_SOME_NEW_VERSION + } else { + int index; + + num_exts_i = 0; + glGetIntegerv(GL_NUM_EXTENSIONS, &num_exts_i); + if (num_exts_i > 0) { + exts_i = (char **)malloc((size_t)num_exts_i * (sizeof *exts_i)); + } + + if (exts_i == NULL) { + return 0; + } + + for (index = 0; index < num_exts_i; index++) { + const char *gl_str_tmp = + (const char *)glGetStringi(GL_EXTENSIONS, index); + size_t len = strlen(gl_str_tmp); + + char *local_str = (char *)malloc((len + 1) * sizeof(char)); + if (local_str != NULL) { + memcpy(local_str, gl_str_tmp, (len + 1) * sizeof(char)); + } + exts_i[index] = local_str; + } + } +#endif + return 1; +} + +static void free_exts(void) { + if (exts_i != NULL) { + int index; + for (index = 0; index < num_exts_i; index++) { + free((char *)exts_i[index]); + } + free((void *)exts_i); + exts_i = NULL; + } +} + +static int has_ext(const char *ext) { +#ifdef _GLAD_IS_SOME_NEW_VERSION + if (max_loaded_major < 3) { +#endif + const char *extensions; + const char *loc; + const char *terminator; + extensions = exts; + if (extensions == NULL || ext == NULL) { + return 0; + } + + while (1) { + loc = strstr(extensions, ext); + if (loc == NULL) { + return 0; + } + + terminator = loc + strlen(ext); + if ((loc == extensions || *(loc - 1) == ' ') && + (*terminator == ' ' || *terminator == '\0')) { + return 1; + } + extensions = terminator; + } +#ifdef _GLAD_IS_SOME_NEW_VERSION + } else { + int index; + if (exts_i == NULL) + return 0; + for (index = 0; index < num_exts_i; index++) { + const char *e = exts_i[index]; + + if (exts_i[index] != NULL && strcmp(e, ext) == 0) { + return 1; + } + } + } +#endif + + return 0; +} +int GLAD_GL_VERSION_1_0 = 0; +int GLAD_GL_VERSION_1_1 = 0; +int GLAD_GL_VERSION_1_2 = 0; +int GLAD_GL_VERSION_1_3 = 0; +int GLAD_GL_VERSION_1_4 = 0; +int GLAD_GL_VERSION_1_5 = 0; +int GLAD_GL_VERSION_2_0 = 0; +int GLAD_GL_VERSION_2_1 = 0; +int GLAD_GL_VERSION_3_0 = 0; +int GLAD_GL_VERSION_3_1 = 0; +int GLAD_GL_VERSION_3_2 = 0; +int GLAD_GL_VERSION_3_3 = 0; +PFNGLACCUMPROC glad_glAccum = NULL; +PFNGLACTIVETEXTUREPROC glad_glActiveTexture = NULL; +PFNGLALPHAFUNCPROC glad_glAlphaFunc = NULL; +PFNGLARETEXTURESRESIDENTPROC glad_glAreTexturesResident = NULL; +PFNGLARRAYELEMENTPROC glad_glArrayElement = NULL; +PFNGLATTACHSHADERPROC glad_glAttachShader = NULL; +PFNGLBEGINPROC glad_glBegin = NULL; +PFNGLBEGINCONDITIONALRENDERPROC glad_glBeginConditionalRender = NULL; +PFNGLBEGINQUERYPROC glad_glBeginQuery = NULL; +PFNGLBEGINTRANSFORMFEEDBACKPROC glad_glBeginTransformFeedback = NULL; +PFNGLBINDATTRIBLOCATIONPROC glad_glBindAttribLocation = NULL; +PFNGLBINDBUFFERPROC glad_glBindBuffer = NULL; +PFNGLBINDBUFFERBASEPROC glad_glBindBufferBase = NULL; +PFNGLBINDBUFFERRANGEPROC glad_glBindBufferRange = NULL; +PFNGLBINDFRAGDATALOCATIONPROC glad_glBindFragDataLocation = NULL; +PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_glBindFragDataLocationIndexed = NULL; +PFNGLBINDFRAMEBUFFERPROC glad_glBindFramebuffer = NULL; +PFNGLBINDRENDERBUFFERPROC glad_glBindRenderbuffer = NULL; +PFNGLBINDSAMPLERPROC glad_glBindSampler = NULL; +PFNGLBINDTEXTUREPROC glad_glBindTexture = NULL; +PFNGLBINDVERTEXARRAYPROC glad_glBindVertexArray = NULL; +PFNGLBITMAPPROC glad_glBitmap = NULL; +PFNGLBLENDCOLORPROC glad_glBlendColor = NULL; +PFNGLBLENDEQUATIONPROC glad_glBlendEquation = NULL; +PFNGLBLENDEQUATIONSEPARATEPROC glad_glBlendEquationSeparate = NULL; +PFNGLBLENDFUNCPROC glad_glBlendFunc = NULL; +PFNGLBLENDFUNCSEPARATEPROC glad_glBlendFuncSeparate = NULL; +PFNGLBLITFRAMEBUFFERPROC glad_glBlitFramebuffer = NULL; +PFNGLBUFFERDATAPROC glad_glBufferData = NULL; +PFNGLBUFFERSUBDATAPROC glad_glBufferSubData = NULL; +PFNGLCALLLISTPROC glad_glCallList = NULL; +PFNGLCALLLISTSPROC glad_glCallLists = NULL; +PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_glCheckFramebufferStatus = NULL; +PFNGLCLAMPCOLORPROC glad_glClampColor = NULL; +PFNGLCLEARPROC glad_glClear = NULL; +PFNGLCLEARACCUMPROC glad_glClearAccum = NULL; +PFNGLCLEARBUFFERFIPROC glad_glClearBufferfi = NULL; +PFNGLCLEARBUFFERFVPROC glad_glClearBufferfv = NULL; +PFNGLCLEARBUFFERIVPROC glad_glClearBufferiv = NULL; +PFNGLCLEARBUFFERUIVPROC glad_glClearBufferuiv = NULL; +PFNGLCLEARCOLORPROC glad_glClearColor = NULL; +PFNGLCLEARDEPTHPROC glad_glClearDepth = NULL; +PFNGLCLEARINDEXPROC glad_glClearIndex = NULL; +PFNGLCLEARSTENCILPROC glad_glClearStencil = NULL; +PFNGLCLIENTACTIVETEXTUREPROC glad_glClientActiveTexture = NULL; +PFNGLCLIENTWAITSYNCPROC glad_glClientWaitSync = NULL; +PFNGLCLIPPLANEPROC glad_glClipPlane = NULL; +PFNGLCOLOR3BPROC glad_glColor3b = NULL; +PFNGLCOLOR3BVPROC glad_glColor3bv = NULL; +PFNGLCOLOR3DPROC glad_glColor3d = NULL; +PFNGLCOLOR3DVPROC glad_glColor3dv = NULL; +PFNGLCOLOR3FPROC glad_glColor3f = NULL; +PFNGLCOLOR3FVPROC glad_glColor3fv = NULL; +PFNGLCOLOR3IPROC glad_glColor3i = NULL; +PFNGLCOLOR3IVPROC glad_glColor3iv = NULL; +PFNGLCOLOR3SPROC glad_glColor3s = NULL; +PFNGLCOLOR3SVPROC glad_glColor3sv = NULL; +PFNGLCOLOR3UBPROC glad_glColor3ub = NULL; +PFNGLCOLOR3UBVPROC glad_glColor3ubv = NULL; +PFNGLCOLOR3UIPROC glad_glColor3ui = NULL; +PFNGLCOLOR3UIVPROC glad_glColor3uiv = NULL; +PFNGLCOLOR3USPROC glad_glColor3us = NULL; +PFNGLCOLOR3USVPROC glad_glColor3usv = NULL; +PFNGLCOLOR4BPROC glad_glColor4b = NULL; +PFNGLCOLOR4BVPROC glad_glColor4bv = NULL; +PFNGLCOLOR4DPROC glad_glColor4d = NULL; +PFNGLCOLOR4DVPROC glad_glColor4dv = NULL; +PFNGLCOLOR4FPROC glad_glColor4f = NULL; +PFNGLCOLOR4FVPROC glad_glColor4fv = NULL; +PFNGLCOLOR4IPROC glad_glColor4i = NULL; +PFNGLCOLOR4IVPROC glad_glColor4iv = NULL; +PFNGLCOLOR4SPROC glad_glColor4s = NULL; +PFNGLCOLOR4SVPROC glad_glColor4sv = NULL; +PFNGLCOLOR4UBPROC glad_glColor4ub = NULL; +PFNGLCOLOR4UBVPROC glad_glColor4ubv = NULL; +PFNGLCOLOR4UIPROC glad_glColor4ui = NULL; +PFNGLCOLOR4UIVPROC glad_glColor4uiv = NULL; +PFNGLCOLOR4USPROC glad_glColor4us = NULL; +PFNGLCOLOR4USVPROC glad_glColor4usv = NULL; +PFNGLCOLORMASKPROC glad_glColorMask = NULL; +PFNGLCOLORMASKIPROC glad_glColorMaski = NULL; +PFNGLCOLORMATERIALPROC glad_glColorMaterial = NULL; +PFNGLCOLORP3UIPROC glad_glColorP3ui = NULL; +PFNGLCOLORP3UIVPROC glad_glColorP3uiv = NULL; +PFNGLCOLORP4UIPROC glad_glColorP4ui = NULL; +PFNGLCOLORP4UIVPROC glad_glColorP4uiv = NULL; +PFNGLCOLORPOINTERPROC glad_glColorPointer = NULL; +PFNGLCOMPILESHADERPROC glad_glCompileShader = NULL; +PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_glCompressedTexImage1D = NULL; +PFNGLCOMPRESSEDTEXIMAGE2DPROC glad_glCompressedTexImage2D = NULL; +PFNGLCOMPRESSEDTEXIMAGE3DPROC glad_glCompressedTexImage3D = NULL; +PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_glCompressedTexSubImage1D = NULL; +PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC glad_glCompressedTexSubImage2D = NULL; +PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC glad_glCompressedTexSubImage3D = NULL; +PFNGLCOPYBUFFERSUBDATAPROC glad_glCopyBufferSubData = NULL; +PFNGLCOPYPIXELSPROC glad_glCopyPixels = NULL; +PFNGLCOPYTEXIMAGE1DPROC glad_glCopyTexImage1D = NULL; +PFNGLCOPYTEXIMAGE2DPROC glad_glCopyTexImage2D = NULL; +PFNGLCOPYTEXSUBIMAGE1DPROC glad_glCopyTexSubImage1D = NULL; +PFNGLCOPYTEXSUBIMAGE2DPROC glad_glCopyTexSubImage2D = NULL; +PFNGLCOPYTEXSUBIMAGE3DPROC glad_glCopyTexSubImage3D = NULL; +PFNGLCREATEPROGRAMPROC glad_glCreateProgram = NULL; +PFNGLCREATESHADERPROC glad_glCreateShader = NULL; +PFNGLCULLFACEPROC glad_glCullFace = NULL; +PFNGLDELETEBUFFERSPROC glad_glDeleteBuffers = NULL; +PFNGLDELETEFRAMEBUFFERSPROC glad_glDeleteFramebuffers = NULL; +PFNGLDELETELISTSPROC glad_glDeleteLists = NULL; +PFNGLDELETEPROGRAMPROC glad_glDeleteProgram = NULL; +PFNGLDELETEQUERIESPROC glad_glDeleteQueries = NULL; +PFNGLDELETERENDERBUFFERSPROC glad_glDeleteRenderbuffers = NULL; +PFNGLDELETESAMPLERSPROC glad_glDeleteSamplers = NULL; +PFNGLDELETESHADERPROC glad_glDeleteShader = NULL; +PFNGLDELETESYNCPROC glad_glDeleteSync = NULL; +PFNGLDELETETEXTURESPROC glad_glDeleteTextures = NULL; +PFNGLDELETEVERTEXARRAYSPROC glad_glDeleteVertexArrays = NULL; +PFNGLDEPTHFUNCPROC glad_glDepthFunc = NULL; +PFNGLDEPTHMASKPROC glad_glDepthMask = NULL; +PFNGLDEPTHRANGEPROC glad_glDepthRange = NULL; +PFNGLDETACHSHADERPROC glad_glDetachShader = NULL; +PFNGLDISABLEPROC glad_glDisable = NULL; +PFNGLDISABLECLIENTSTATEPROC glad_glDisableClientState = NULL; +PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_glDisableVertexAttribArray = NULL; +PFNGLDISABLEIPROC glad_glDisablei = NULL; +PFNGLDRAWARRAYSPROC glad_glDrawArrays = NULL; +PFNGLDRAWARRAYSINSTANCEDPROC glad_glDrawArraysInstanced = NULL; +PFNGLDRAWBUFFERPROC glad_glDrawBuffer = NULL; +PFNGLDRAWBUFFERSPROC glad_glDrawBuffers = NULL; +PFNGLDRAWELEMENTSPROC glad_glDrawElements = NULL; +PFNGLDRAWELEMENTSBASEVERTEXPROC glad_glDrawElementsBaseVertex = NULL; +PFNGLDRAWELEMENTSINSTANCEDPROC glad_glDrawElementsInstanced = NULL; +PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC + glad_glDrawElementsInstancedBaseVertex = NULL; +PFNGLDRAWPIXELSPROC glad_glDrawPixels = NULL; +PFNGLDRAWRANGEELEMENTSPROC glad_glDrawRangeElements = NULL; +PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_glDrawRangeElementsBaseVertex = NULL; +PFNGLEDGEFLAGPROC glad_glEdgeFlag = NULL; +PFNGLEDGEFLAGPOINTERPROC glad_glEdgeFlagPointer = NULL; +PFNGLEDGEFLAGVPROC glad_glEdgeFlagv = NULL; +PFNGLENABLEPROC glad_glEnable = NULL; +PFNGLENABLECLIENTSTATEPROC glad_glEnableClientState = NULL; +PFNGLENABLEVERTEXATTRIBARRAYPROC glad_glEnableVertexAttribArray = NULL; +PFNGLENABLEIPROC glad_glEnablei = NULL; +PFNGLENDPROC glad_glEnd = NULL; +PFNGLENDCONDITIONALRENDERPROC glad_glEndConditionalRender = NULL; +PFNGLENDLISTPROC glad_glEndList = NULL; +PFNGLENDQUERYPROC glad_glEndQuery = NULL; +PFNGLENDTRANSFORMFEEDBACKPROC glad_glEndTransformFeedback = NULL; +PFNGLEVALCOORD1DPROC glad_glEvalCoord1d = NULL; +PFNGLEVALCOORD1DVPROC glad_glEvalCoord1dv = NULL; +PFNGLEVALCOORD1FPROC glad_glEvalCoord1f = NULL; +PFNGLEVALCOORD1FVPROC glad_glEvalCoord1fv = NULL; +PFNGLEVALCOORD2DPROC glad_glEvalCoord2d = NULL; +PFNGLEVALCOORD2DVPROC glad_glEvalCoord2dv = NULL; +PFNGLEVALCOORD2FPROC glad_glEvalCoord2f = NULL; +PFNGLEVALCOORD2FVPROC glad_glEvalCoord2fv = NULL; +PFNGLEVALMESH1PROC glad_glEvalMesh1 = NULL; +PFNGLEVALMESH2PROC glad_glEvalMesh2 = NULL; +PFNGLEVALPOINT1PROC glad_glEvalPoint1 = NULL; +PFNGLEVALPOINT2PROC glad_glEvalPoint2 = NULL; +PFNGLFEEDBACKBUFFERPROC glad_glFeedbackBuffer = NULL; +PFNGLFENCESYNCPROC glad_glFenceSync = NULL; +PFNGLFINISHPROC glad_glFinish = NULL; +PFNGLFLUSHPROC glad_glFlush = NULL; +PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_glFlushMappedBufferRange = NULL; +PFNGLFOGCOORDPOINTERPROC glad_glFogCoordPointer = NULL; +PFNGLFOGCOORDDPROC glad_glFogCoordd = NULL; +PFNGLFOGCOORDDVPROC glad_glFogCoorddv = NULL; +PFNGLFOGCOORDFPROC glad_glFogCoordf = NULL; +PFNGLFOGCOORDFVPROC glad_glFogCoordfv = NULL; +PFNGLFOGFPROC glad_glFogf = NULL; +PFNGLFOGFVPROC glad_glFogfv = NULL; +PFNGLFOGIPROC glad_glFogi = NULL; +PFNGLFOGIVPROC glad_glFogiv = NULL; +PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_glFramebufferRenderbuffer = NULL; +PFNGLFRAMEBUFFERTEXTUREPROC glad_glFramebufferTexture = NULL; +PFNGLFRAMEBUFFERTEXTURE1DPROC glad_glFramebufferTexture1D = NULL; +PFNGLFRAMEBUFFERTEXTURE2DPROC glad_glFramebufferTexture2D = NULL; +PFNGLFRAMEBUFFERTEXTURE3DPROC glad_glFramebufferTexture3D = NULL; +PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_glFramebufferTextureLayer = NULL; +PFNGLFRONTFACEPROC glad_glFrontFace = NULL; +PFNGLFRUSTUMPROC glad_glFrustum = NULL; +PFNGLGENBUFFERSPROC glad_glGenBuffers = NULL; +PFNGLGENFRAMEBUFFERSPROC glad_glGenFramebuffers = NULL; +PFNGLGENLISTSPROC glad_glGenLists = NULL; +PFNGLGENQUERIESPROC glad_glGenQueries = NULL; +PFNGLGENRENDERBUFFERSPROC glad_glGenRenderbuffers = NULL; +PFNGLGENSAMPLERSPROC glad_glGenSamplers = NULL; +PFNGLGENTEXTURESPROC glad_glGenTextures = NULL; +PFNGLGENVERTEXARRAYSPROC glad_glGenVertexArrays = NULL; +PFNGLGENERATEMIPMAPPROC glad_glGenerateMipmap = NULL; +PFNGLGETACTIVEATTRIBPROC glad_glGetActiveAttrib = NULL; +PFNGLGETACTIVEUNIFORMPROC glad_glGetActiveUniform = NULL; +PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_glGetActiveUniformBlockName = NULL; +PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_glGetActiveUniformBlockiv = NULL; +PFNGLGETACTIVEUNIFORMNAMEPROC glad_glGetActiveUniformName = NULL; +PFNGLGETACTIVEUNIFORMSIVPROC glad_glGetActiveUniformsiv = NULL; +PFNGLGETATTACHEDSHADERSPROC glad_glGetAttachedShaders = NULL; +PFNGLGETATTRIBLOCATIONPROC glad_glGetAttribLocation = NULL; +PFNGLGETBOOLEANI_VPROC glad_glGetBooleani_v = NULL; +PFNGLGETBOOLEANVPROC glad_glGetBooleanv = NULL; +PFNGLGETBUFFERPARAMETERI64VPROC glad_glGetBufferParameteri64v = NULL; +PFNGLGETBUFFERPARAMETERIVPROC glad_glGetBufferParameteriv = NULL; +PFNGLGETBUFFERPOINTERVPROC glad_glGetBufferPointerv = NULL; +PFNGLGETBUFFERSUBDATAPROC glad_glGetBufferSubData = NULL; +PFNGLGETCLIPPLANEPROC glad_glGetClipPlane = NULL; +PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_glGetCompressedTexImage = NULL; +PFNGLGETDOUBLEVPROC glad_glGetDoublev = NULL; +PFNGLGETERRORPROC glad_glGetError = NULL; +PFNGLGETFLOATVPROC glad_glGetFloatv = NULL; +PFNGLGETFRAGDATAINDEXPROC glad_glGetFragDataIndex = NULL; +PFNGLGETFRAGDATALOCATIONPROC glad_glGetFragDataLocation = NULL; +PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC + glad_glGetFramebufferAttachmentParameteriv = NULL; +PFNGLGETINTEGER64I_VPROC glad_glGetInteger64i_v = NULL; +PFNGLGETINTEGER64VPROC glad_glGetInteger64v = NULL; +PFNGLGETINTEGERI_VPROC glad_glGetIntegeri_v = NULL; +PFNGLGETINTEGERVPROC glad_glGetIntegerv = NULL; +PFNGLGETLIGHTFVPROC glad_glGetLightfv = NULL; +PFNGLGETLIGHTIVPROC glad_glGetLightiv = NULL; +PFNGLGETMAPDVPROC glad_glGetMapdv = NULL; +PFNGLGETMAPFVPROC glad_glGetMapfv = NULL; +PFNGLGETMAPIVPROC glad_glGetMapiv = NULL; +PFNGLGETMATERIALFVPROC glad_glGetMaterialfv = NULL; +PFNGLGETMATERIALIVPROC glad_glGetMaterialiv = NULL; +PFNGLGETMULTISAMPLEFVPROC glad_glGetMultisamplefv = NULL; +PFNGLGETPIXELMAPFVPROC glad_glGetPixelMapfv = NULL; +PFNGLGETPIXELMAPUIVPROC glad_glGetPixelMapuiv = NULL; +PFNGLGETPIXELMAPUSVPROC glad_glGetPixelMapusv = NULL; +PFNGLGETPOINTERVPROC glad_glGetPointerv = NULL; +PFNGLGETPOLYGONSTIPPLEPROC glad_glGetPolygonStipple = NULL; +PFNGLGETPROGRAMINFOLOGPROC glad_glGetProgramInfoLog = NULL; +PFNGLGETPROGRAMIVPROC glad_glGetProgramiv = NULL; +PFNGLGETQUERYOBJECTI64VPROC glad_glGetQueryObjecti64v = NULL; +PFNGLGETQUERYOBJECTIVPROC glad_glGetQueryObjectiv = NULL; +PFNGLGETQUERYOBJECTUI64VPROC glad_glGetQueryObjectui64v = NULL; +PFNGLGETQUERYOBJECTUIVPROC glad_glGetQueryObjectuiv = NULL; +PFNGLGETQUERYIVPROC glad_glGetQueryiv = NULL; +PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_glGetRenderbufferParameteriv = NULL; +PFNGLGETSAMPLERPARAMETERIIVPROC glad_glGetSamplerParameterIiv = NULL; +PFNGLGETSAMPLERPARAMETERIUIVPROC glad_glGetSamplerParameterIuiv = NULL; +PFNGLGETSAMPLERPARAMETERFVPROC glad_glGetSamplerParameterfv = NULL; +PFNGLGETSAMPLERPARAMETERIVPROC glad_glGetSamplerParameteriv = NULL; +PFNGLGETSHADERINFOLOGPROC glad_glGetShaderInfoLog = NULL; +PFNGLGETSHADERSOURCEPROC glad_glGetShaderSource = NULL; +PFNGLGETSHADERIVPROC glad_glGetShaderiv = NULL; +PFNGLGETSTRINGPROC glad_glGetString = NULL; +PFNGLGETSTRINGIPROC glad_glGetStringi = NULL; +PFNGLGETSYNCIVPROC glad_glGetSynciv = NULL; +PFNGLGETTEXENVFVPROC glad_glGetTexEnvfv = NULL; +PFNGLGETTEXENVIVPROC glad_glGetTexEnviv = NULL; +PFNGLGETTEXGENDVPROC glad_glGetTexGendv = NULL; +PFNGLGETTEXGENFVPROC glad_glGetTexGenfv = NULL; +PFNGLGETTEXGENIVPROC glad_glGetTexGeniv = NULL; +PFNGLGETTEXIMAGEPROC glad_glGetTexImage = NULL; +PFNGLGETTEXLEVELPARAMETERFVPROC glad_glGetTexLevelParameterfv = NULL; +PFNGLGETTEXLEVELPARAMETERIVPROC glad_glGetTexLevelParameteriv = NULL; +PFNGLGETTEXPARAMETERIIVPROC glad_glGetTexParameterIiv = NULL; +PFNGLGETTEXPARAMETERIUIVPROC glad_glGetTexParameterIuiv = NULL; +PFNGLGETTEXPARAMETERFVPROC glad_glGetTexParameterfv = NULL; +PFNGLGETTEXPARAMETERIVPROC glad_glGetTexParameteriv = NULL; +PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_glGetTransformFeedbackVarying = NULL; +PFNGLGETUNIFORMBLOCKINDEXPROC glad_glGetUniformBlockIndex = NULL; +PFNGLGETUNIFORMINDICESPROC glad_glGetUniformIndices = NULL; +PFNGLGETUNIFORMLOCATIONPROC glad_glGetUniformLocation = NULL; +PFNGLGETUNIFORMFVPROC glad_glGetUniformfv = NULL; +PFNGLGETUNIFORMIVPROC glad_glGetUniformiv = NULL; +PFNGLGETUNIFORMUIVPROC glad_glGetUniformuiv = NULL; +PFNGLGETVERTEXATTRIBIIVPROC glad_glGetVertexAttribIiv = NULL; +PFNGLGETVERTEXATTRIBIUIVPROC glad_glGetVertexAttribIuiv = NULL; +PFNGLGETVERTEXATTRIBPOINTERVPROC glad_glGetVertexAttribPointerv = NULL; +PFNGLGETVERTEXATTRIBDVPROC glad_glGetVertexAttribdv = NULL; +PFNGLGETVERTEXATTRIBFVPROC glad_glGetVertexAttribfv = NULL; +PFNGLGETVERTEXATTRIBIVPROC glad_glGetVertexAttribiv = NULL; +PFNGLHINTPROC glad_glHint = NULL; +PFNGLINDEXMASKPROC glad_glIndexMask = NULL; +PFNGLINDEXPOINTERPROC glad_glIndexPointer = NULL; +PFNGLINDEXDPROC glad_glIndexd = NULL; +PFNGLINDEXDVPROC glad_glIndexdv = NULL; +PFNGLINDEXFPROC glad_glIndexf = NULL; +PFNGLINDEXFVPROC glad_glIndexfv = NULL; +PFNGLINDEXIPROC glad_glIndexi = NULL; +PFNGLINDEXIVPROC glad_glIndexiv = NULL; +PFNGLINDEXSPROC glad_glIndexs = NULL; +PFNGLINDEXSVPROC glad_glIndexsv = NULL; +PFNGLINDEXUBPROC glad_glIndexub = NULL; +PFNGLINDEXUBVPROC glad_glIndexubv = NULL; +PFNGLINITNAMESPROC glad_glInitNames = NULL; +PFNGLINTERLEAVEDARRAYSPROC glad_glInterleavedArrays = NULL; +PFNGLISBUFFERPROC glad_glIsBuffer = NULL; +PFNGLISENABLEDPROC glad_glIsEnabled = NULL; +PFNGLISENABLEDIPROC glad_glIsEnabledi = NULL; +PFNGLISFRAMEBUFFERPROC glad_glIsFramebuffer = NULL; +PFNGLISLISTPROC glad_glIsList = NULL; +PFNGLISPROGRAMPROC glad_glIsProgram = NULL; +PFNGLISQUERYPROC glad_glIsQuery = NULL; +PFNGLISRENDERBUFFERPROC glad_glIsRenderbuffer = NULL; +PFNGLISSAMPLERPROC glad_glIsSampler = NULL; +PFNGLISSHADERPROC glad_glIsShader = NULL; +PFNGLISSYNCPROC glad_glIsSync = NULL; +PFNGLISTEXTUREPROC glad_glIsTexture = NULL; +PFNGLISVERTEXARRAYPROC glad_glIsVertexArray = NULL; +PFNGLLIGHTMODELFPROC glad_glLightModelf = NULL; +PFNGLLIGHTMODELFVPROC glad_glLightModelfv = NULL; +PFNGLLIGHTMODELIPROC glad_glLightModeli = NULL; +PFNGLLIGHTMODELIVPROC glad_glLightModeliv = NULL; +PFNGLLIGHTFPROC glad_glLightf = NULL; +PFNGLLIGHTFVPROC glad_glLightfv = NULL; +PFNGLLIGHTIPROC glad_glLighti = NULL; +PFNGLLIGHTIVPROC glad_glLightiv = NULL; +PFNGLLINESTIPPLEPROC glad_glLineStipple = NULL; +PFNGLLINEWIDTHPROC glad_glLineWidth = NULL; +PFNGLLINKPROGRAMPROC glad_glLinkProgram = NULL; +PFNGLLISTBASEPROC glad_glListBase = NULL; +PFNGLLOADIDENTITYPROC glad_glLoadIdentity = NULL; +PFNGLLOADMATRIXDPROC glad_glLoadMatrixd = NULL; +PFNGLLOADMATRIXFPROC glad_glLoadMatrixf = NULL; +PFNGLLOADNAMEPROC glad_glLoadName = NULL; +PFNGLLOADTRANSPOSEMATRIXDPROC glad_glLoadTransposeMatrixd = NULL; +PFNGLLOADTRANSPOSEMATRIXFPROC glad_glLoadTransposeMatrixf = NULL; +PFNGLLOGICOPPROC glad_glLogicOp = NULL; +PFNGLMAP1DPROC glad_glMap1d = NULL; +PFNGLMAP1FPROC glad_glMap1f = NULL; +PFNGLMAP2DPROC glad_glMap2d = NULL; +PFNGLMAP2FPROC glad_glMap2f = NULL; +PFNGLMAPBUFFERPROC glad_glMapBuffer = NULL; +PFNGLMAPBUFFERRANGEPROC glad_glMapBufferRange = NULL; +PFNGLMAPGRID1DPROC glad_glMapGrid1d = NULL; +PFNGLMAPGRID1FPROC glad_glMapGrid1f = NULL; +PFNGLMAPGRID2DPROC glad_glMapGrid2d = NULL; +PFNGLMAPGRID2FPROC glad_glMapGrid2f = NULL; +PFNGLMATERIALFPROC glad_glMaterialf = NULL; +PFNGLMATERIALFVPROC glad_glMaterialfv = NULL; +PFNGLMATERIALIPROC glad_glMateriali = NULL; +PFNGLMATERIALIVPROC glad_glMaterialiv = NULL; +PFNGLMATRIXMODEPROC glad_glMatrixMode = NULL; +PFNGLMULTMATRIXDPROC glad_glMultMatrixd = NULL; +PFNGLMULTMATRIXFPROC glad_glMultMatrixf = NULL; +PFNGLMULTTRANSPOSEMATRIXDPROC glad_glMultTransposeMatrixd = NULL; +PFNGLMULTTRANSPOSEMATRIXFPROC glad_glMultTransposeMatrixf = NULL; +PFNGLMULTIDRAWARRAYSPROC glad_glMultiDrawArrays = NULL; +PFNGLMULTIDRAWELEMENTSPROC glad_glMultiDrawElements = NULL; +PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC glad_glMultiDrawElementsBaseVertex = NULL; +PFNGLMULTITEXCOORD1DPROC glad_glMultiTexCoord1d = NULL; +PFNGLMULTITEXCOORD1DVPROC glad_glMultiTexCoord1dv = NULL; +PFNGLMULTITEXCOORD1FPROC glad_glMultiTexCoord1f = NULL; +PFNGLMULTITEXCOORD1FVPROC glad_glMultiTexCoord1fv = NULL; +PFNGLMULTITEXCOORD1IPROC glad_glMultiTexCoord1i = NULL; +PFNGLMULTITEXCOORD1IVPROC glad_glMultiTexCoord1iv = NULL; +PFNGLMULTITEXCOORD1SPROC glad_glMultiTexCoord1s = NULL; +PFNGLMULTITEXCOORD1SVPROC glad_glMultiTexCoord1sv = NULL; +PFNGLMULTITEXCOORD2DPROC glad_glMultiTexCoord2d = NULL; +PFNGLMULTITEXCOORD2DVPROC glad_glMultiTexCoord2dv = NULL; +PFNGLMULTITEXCOORD2FPROC glad_glMultiTexCoord2f = NULL; +PFNGLMULTITEXCOORD2FVPROC glad_glMultiTexCoord2fv = NULL; +PFNGLMULTITEXCOORD2IPROC glad_glMultiTexCoord2i = NULL; +PFNGLMULTITEXCOORD2IVPROC glad_glMultiTexCoord2iv = NULL; +PFNGLMULTITEXCOORD2SPROC glad_glMultiTexCoord2s = NULL; +PFNGLMULTITEXCOORD2SVPROC glad_glMultiTexCoord2sv = NULL; +PFNGLMULTITEXCOORD3DPROC glad_glMultiTexCoord3d = NULL; +PFNGLMULTITEXCOORD3DVPROC glad_glMultiTexCoord3dv = NULL; +PFNGLMULTITEXCOORD3FPROC glad_glMultiTexCoord3f = NULL; +PFNGLMULTITEXCOORD3FVPROC glad_glMultiTexCoord3fv = NULL; +PFNGLMULTITEXCOORD3IPROC glad_glMultiTexCoord3i = NULL; +PFNGLMULTITEXCOORD3IVPROC glad_glMultiTexCoord3iv = NULL; +PFNGLMULTITEXCOORD3SPROC glad_glMultiTexCoord3s = NULL; +PFNGLMULTITEXCOORD3SVPROC glad_glMultiTexCoord3sv = NULL; +PFNGLMULTITEXCOORD4DPROC glad_glMultiTexCoord4d = NULL; +PFNGLMULTITEXCOORD4DVPROC glad_glMultiTexCoord4dv = NULL; +PFNGLMULTITEXCOORD4FPROC glad_glMultiTexCoord4f = NULL; +PFNGLMULTITEXCOORD4FVPROC glad_glMultiTexCoord4fv = NULL; +PFNGLMULTITEXCOORD4IPROC glad_glMultiTexCoord4i = NULL; +PFNGLMULTITEXCOORD4IVPROC glad_glMultiTexCoord4iv = NULL; +PFNGLMULTITEXCOORD4SPROC glad_glMultiTexCoord4s = NULL; +PFNGLMULTITEXCOORD4SVPROC glad_glMultiTexCoord4sv = NULL; +PFNGLMULTITEXCOORDP1UIPROC glad_glMultiTexCoordP1ui = NULL; +PFNGLMULTITEXCOORDP1UIVPROC glad_glMultiTexCoordP1uiv = NULL; +PFNGLMULTITEXCOORDP2UIPROC glad_glMultiTexCoordP2ui = NULL; +PFNGLMULTITEXCOORDP2UIVPROC glad_glMultiTexCoordP2uiv = NULL; +PFNGLMULTITEXCOORDP3UIPROC glad_glMultiTexCoordP3ui = NULL; +PFNGLMULTITEXCOORDP3UIVPROC glad_glMultiTexCoordP3uiv = NULL; +PFNGLMULTITEXCOORDP4UIPROC glad_glMultiTexCoordP4ui = NULL; +PFNGLMULTITEXCOORDP4UIVPROC glad_glMultiTexCoordP4uiv = NULL; +PFNGLNEWLISTPROC glad_glNewList = NULL; +PFNGLNORMAL3BPROC glad_glNormal3b = NULL; +PFNGLNORMAL3BVPROC glad_glNormal3bv = NULL; +PFNGLNORMAL3DPROC glad_glNormal3d = NULL; +PFNGLNORMAL3DVPROC glad_glNormal3dv = NULL; +PFNGLNORMAL3FPROC glad_glNormal3f = NULL; +PFNGLNORMAL3FVPROC glad_glNormal3fv = NULL; +PFNGLNORMAL3IPROC glad_glNormal3i = NULL; +PFNGLNORMAL3IVPROC glad_glNormal3iv = NULL; +PFNGLNORMAL3SPROC glad_glNormal3s = NULL; +PFNGLNORMAL3SVPROC glad_glNormal3sv = NULL; +PFNGLNORMALP3UIPROC glad_glNormalP3ui = NULL; +PFNGLNORMALP3UIVPROC glad_glNormalP3uiv = NULL; +PFNGLNORMALPOINTERPROC glad_glNormalPointer = NULL; +PFNGLORTHOPROC glad_glOrtho = NULL; +PFNGLPASSTHROUGHPROC glad_glPassThrough = NULL; +PFNGLPIXELMAPFVPROC glad_glPixelMapfv = NULL; +PFNGLPIXELMAPUIVPROC glad_glPixelMapuiv = NULL; +PFNGLPIXELMAPUSVPROC glad_glPixelMapusv = NULL; +PFNGLPIXELSTOREFPROC glad_glPixelStoref = NULL; +PFNGLPIXELSTOREIPROC glad_glPixelStorei = NULL; +PFNGLPIXELTRANSFERFPROC glad_glPixelTransferf = NULL; +PFNGLPIXELTRANSFERIPROC glad_glPixelTransferi = NULL; +PFNGLPIXELZOOMPROC glad_glPixelZoom = NULL; +PFNGLPOINTPARAMETERFPROC glad_glPointParameterf = NULL; +PFNGLPOINTPARAMETERFVPROC glad_glPointParameterfv = NULL; +PFNGLPOINTPARAMETERIPROC glad_glPointParameteri = NULL; +PFNGLPOINTPARAMETERIVPROC glad_glPointParameteriv = NULL; +PFNGLPOINTSIZEPROC glad_glPointSize = NULL; +PFNGLPOLYGONMODEPROC glad_glPolygonMode = NULL; +PFNGLPOLYGONOFFSETPROC glad_glPolygonOffset = NULL; +PFNGLPOLYGONSTIPPLEPROC glad_glPolygonStipple = NULL; +PFNGLPOPATTRIBPROC glad_glPopAttrib = NULL; +PFNGLPOPCLIENTATTRIBPROC glad_glPopClientAttrib = NULL; +PFNGLPOPMATRIXPROC glad_glPopMatrix = NULL; +PFNGLPOPNAMEPROC glad_glPopName = NULL; +PFNGLPRIMITIVERESTARTINDEXPROC glad_glPrimitiveRestartIndex = NULL; +PFNGLPRIORITIZETEXTURESPROC glad_glPrioritizeTextures = NULL; +PFNGLPROVOKINGVERTEXPROC glad_glProvokingVertex = NULL; +PFNGLPUSHATTRIBPROC glad_glPushAttrib = NULL; +PFNGLPUSHCLIENTATTRIBPROC glad_glPushClientAttrib = NULL; +PFNGLPUSHMATRIXPROC glad_glPushMatrix = NULL; +PFNGLPUSHNAMEPROC glad_glPushName = NULL; +PFNGLQUERYCOUNTERPROC glad_glQueryCounter = NULL; +PFNGLRASTERPOS2DPROC glad_glRasterPos2d = NULL; +PFNGLRASTERPOS2DVPROC glad_glRasterPos2dv = NULL; +PFNGLRASTERPOS2FPROC glad_glRasterPos2f = NULL; +PFNGLRASTERPOS2FVPROC glad_glRasterPos2fv = NULL; +PFNGLRASTERPOS2IPROC glad_glRasterPos2i = NULL; +PFNGLRASTERPOS2IVPROC glad_glRasterPos2iv = NULL; +PFNGLRASTERPOS2SPROC glad_glRasterPos2s = NULL; +PFNGLRASTERPOS2SVPROC glad_glRasterPos2sv = NULL; +PFNGLRASTERPOS3DPROC glad_glRasterPos3d = NULL; +PFNGLRASTERPOS3DVPROC glad_glRasterPos3dv = NULL; +PFNGLRASTERPOS3FPROC glad_glRasterPos3f = NULL; +PFNGLRASTERPOS3FVPROC glad_glRasterPos3fv = NULL; +PFNGLRASTERPOS3IPROC glad_glRasterPos3i = NULL; +PFNGLRASTERPOS3IVPROC glad_glRasterPos3iv = NULL; +PFNGLRASTERPOS3SPROC glad_glRasterPos3s = NULL; +PFNGLRASTERPOS3SVPROC glad_glRasterPos3sv = NULL; +PFNGLRASTERPOS4DPROC glad_glRasterPos4d = NULL; +PFNGLRASTERPOS4DVPROC glad_glRasterPos4dv = NULL; +PFNGLRASTERPOS4FPROC glad_glRasterPos4f = NULL; +PFNGLRASTERPOS4FVPROC glad_glRasterPos4fv = NULL; +PFNGLRASTERPOS4IPROC glad_glRasterPos4i = NULL; +PFNGLRASTERPOS4IVPROC glad_glRasterPos4iv = NULL; +PFNGLRASTERPOS4SPROC glad_glRasterPos4s = NULL; +PFNGLRASTERPOS4SVPROC glad_glRasterPos4sv = NULL; +PFNGLREADBUFFERPROC glad_glReadBuffer = NULL; +PFNGLREADPIXELSPROC glad_glReadPixels = NULL; +PFNGLRECTDPROC glad_glRectd = NULL; +PFNGLRECTDVPROC glad_glRectdv = NULL; +PFNGLRECTFPROC glad_glRectf = NULL; +PFNGLRECTFVPROC glad_glRectfv = NULL; +PFNGLRECTIPROC glad_glRecti = NULL; +PFNGLRECTIVPROC glad_glRectiv = NULL; +PFNGLRECTSPROC glad_glRects = NULL; +PFNGLRECTSVPROC glad_glRectsv = NULL; +PFNGLRENDERMODEPROC glad_glRenderMode = NULL; +PFNGLRENDERBUFFERSTORAGEPROC glad_glRenderbufferStorage = NULL; +PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glRenderbufferStorageMultisample = + NULL; +PFNGLROTATEDPROC glad_glRotated = NULL; +PFNGLROTATEFPROC glad_glRotatef = NULL; +PFNGLSAMPLECOVERAGEPROC glad_glSampleCoverage = NULL; +PFNGLSAMPLEMASKIPROC glad_glSampleMaski = NULL; +PFNGLSAMPLERPARAMETERIIVPROC glad_glSamplerParameterIiv = NULL; +PFNGLSAMPLERPARAMETERIUIVPROC glad_glSamplerParameterIuiv = NULL; +PFNGLSAMPLERPARAMETERFPROC glad_glSamplerParameterf = NULL; +PFNGLSAMPLERPARAMETERFVPROC glad_glSamplerParameterfv = NULL; +PFNGLSAMPLERPARAMETERIPROC glad_glSamplerParameteri = NULL; +PFNGLSAMPLERPARAMETERIVPROC glad_glSamplerParameteriv = NULL; +PFNGLSCALEDPROC glad_glScaled = NULL; +PFNGLSCALEFPROC glad_glScalef = NULL; +PFNGLSCISSORPROC glad_glScissor = NULL; +PFNGLSECONDARYCOLOR3BPROC glad_glSecondaryColor3b = NULL; +PFNGLSECONDARYCOLOR3BVPROC glad_glSecondaryColor3bv = NULL; +PFNGLSECONDARYCOLOR3DPROC glad_glSecondaryColor3d = NULL; +PFNGLSECONDARYCOLOR3DVPROC glad_glSecondaryColor3dv = NULL; +PFNGLSECONDARYCOLOR3FPROC glad_glSecondaryColor3f = NULL; +PFNGLSECONDARYCOLOR3FVPROC glad_glSecondaryColor3fv = NULL; +PFNGLSECONDARYCOLOR3IPROC glad_glSecondaryColor3i = NULL; +PFNGLSECONDARYCOLOR3IVPROC glad_glSecondaryColor3iv = NULL; +PFNGLSECONDARYCOLOR3SPROC glad_glSecondaryColor3s = NULL; +PFNGLSECONDARYCOLOR3SVPROC glad_glSecondaryColor3sv = NULL; +PFNGLSECONDARYCOLOR3UBPROC glad_glSecondaryColor3ub = NULL; +PFNGLSECONDARYCOLOR3UBVPROC glad_glSecondaryColor3ubv = NULL; +PFNGLSECONDARYCOLOR3UIPROC glad_glSecondaryColor3ui = NULL; +PFNGLSECONDARYCOLOR3UIVPROC glad_glSecondaryColor3uiv = NULL; +PFNGLSECONDARYCOLOR3USPROC glad_glSecondaryColor3us = NULL; +PFNGLSECONDARYCOLOR3USVPROC glad_glSecondaryColor3usv = NULL; +PFNGLSECONDARYCOLORP3UIPROC glad_glSecondaryColorP3ui = NULL; +PFNGLSECONDARYCOLORP3UIVPROC glad_glSecondaryColorP3uiv = NULL; +PFNGLSECONDARYCOLORPOINTERPROC glad_glSecondaryColorPointer = NULL; +PFNGLSELECTBUFFERPROC glad_glSelectBuffer = NULL; +PFNGLSHADEMODELPROC glad_glShadeModel = NULL; +PFNGLSHADERSOURCEPROC glad_glShaderSource = NULL; +PFNGLSTENCILFUNCPROC glad_glStencilFunc = NULL; +PFNGLSTENCILFUNCSEPARATEPROC glad_glStencilFuncSeparate = NULL; +PFNGLSTENCILMASKPROC glad_glStencilMask = NULL; +PFNGLSTENCILMASKSEPARATEPROC glad_glStencilMaskSeparate = NULL; +PFNGLSTENCILOPPROC glad_glStencilOp = NULL; +PFNGLSTENCILOPSEPARATEPROC glad_glStencilOpSeparate = NULL; +PFNGLTEXBUFFERPROC glad_glTexBuffer = NULL; +PFNGLTEXCOORD1DPROC glad_glTexCoord1d = NULL; +PFNGLTEXCOORD1DVPROC glad_glTexCoord1dv = NULL; +PFNGLTEXCOORD1FPROC glad_glTexCoord1f = NULL; +PFNGLTEXCOORD1FVPROC glad_glTexCoord1fv = NULL; +PFNGLTEXCOORD1IPROC glad_glTexCoord1i = NULL; +PFNGLTEXCOORD1IVPROC glad_glTexCoord1iv = NULL; +PFNGLTEXCOORD1SPROC glad_glTexCoord1s = NULL; +PFNGLTEXCOORD1SVPROC glad_glTexCoord1sv = NULL; +PFNGLTEXCOORD2DPROC glad_glTexCoord2d = NULL; +PFNGLTEXCOORD2DVPROC glad_glTexCoord2dv = NULL; +PFNGLTEXCOORD2FPROC glad_glTexCoord2f = NULL; +PFNGLTEXCOORD2FVPROC glad_glTexCoord2fv = NULL; +PFNGLTEXCOORD2IPROC glad_glTexCoord2i = NULL; +PFNGLTEXCOORD2IVPROC glad_glTexCoord2iv = NULL; +PFNGLTEXCOORD2SPROC glad_glTexCoord2s = NULL; +PFNGLTEXCOORD2SVPROC glad_glTexCoord2sv = NULL; +PFNGLTEXCOORD3DPROC glad_glTexCoord3d = NULL; +PFNGLTEXCOORD3DVPROC glad_glTexCoord3dv = NULL; +PFNGLTEXCOORD3FPROC glad_glTexCoord3f = NULL; +PFNGLTEXCOORD3FVPROC glad_glTexCoord3fv = NULL; +PFNGLTEXCOORD3IPROC glad_glTexCoord3i = NULL; +PFNGLTEXCOORD3IVPROC glad_glTexCoord3iv = NULL; +PFNGLTEXCOORD3SPROC glad_glTexCoord3s = NULL; +PFNGLTEXCOORD3SVPROC glad_glTexCoord3sv = NULL; +PFNGLTEXCOORD4DPROC glad_glTexCoord4d = NULL; +PFNGLTEXCOORD4DVPROC glad_glTexCoord4dv = NULL; +PFNGLTEXCOORD4FPROC glad_glTexCoord4f = NULL; +PFNGLTEXCOORD4FVPROC glad_glTexCoord4fv = NULL; +PFNGLTEXCOORD4IPROC glad_glTexCoord4i = NULL; +PFNGLTEXCOORD4IVPROC glad_glTexCoord4iv = NULL; +PFNGLTEXCOORD4SPROC glad_glTexCoord4s = NULL; +PFNGLTEXCOORD4SVPROC glad_glTexCoord4sv = NULL; +PFNGLTEXCOORDP1UIPROC glad_glTexCoordP1ui = NULL; +PFNGLTEXCOORDP1UIVPROC glad_glTexCoordP1uiv = NULL; +PFNGLTEXCOORDP2UIPROC glad_glTexCoordP2ui = NULL; +PFNGLTEXCOORDP2UIVPROC glad_glTexCoordP2uiv = NULL; +PFNGLTEXCOORDP3UIPROC glad_glTexCoordP3ui = NULL; +PFNGLTEXCOORDP3UIVPROC glad_glTexCoordP3uiv = NULL; +PFNGLTEXCOORDP4UIPROC glad_glTexCoordP4ui = NULL; +PFNGLTEXCOORDP4UIVPROC glad_glTexCoordP4uiv = NULL; +PFNGLTEXCOORDPOINTERPROC glad_glTexCoordPointer = NULL; +PFNGLTEXENVFPROC glad_glTexEnvf = NULL; +PFNGLTEXENVFVPROC glad_glTexEnvfv = NULL; +PFNGLTEXENVIPROC glad_glTexEnvi = NULL; +PFNGLTEXENVIVPROC glad_glTexEnviv = NULL; +PFNGLTEXGENDPROC glad_glTexGend = NULL; +PFNGLTEXGENDVPROC glad_glTexGendv = NULL; +PFNGLTEXGENFPROC glad_glTexGenf = NULL; +PFNGLTEXGENFVPROC glad_glTexGenfv = NULL; +PFNGLTEXGENIPROC glad_glTexGeni = NULL; +PFNGLTEXGENIVPROC glad_glTexGeniv = NULL; +PFNGLTEXIMAGE1DPROC glad_glTexImage1D = NULL; +PFNGLTEXIMAGE2DPROC glad_glTexImage2D = NULL; +PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_glTexImage2DMultisample = NULL; +PFNGLTEXIMAGE3DPROC glad_glTexImage3D = NULL; +PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_glTexImage3DMultisample = NULL; +PFNGLTEXPARAMETERIIVPROC glad_glTexParameterIiv = NULL; +PFNGLTEXPARAMETERIUIVPROC glad_glTexParameterIuiv = NULL; +PFNGLTEXPARAMETERFPROC glad_glTexParameterf = NULL; +PFNGLTEXPARAMETERFVPROC glad_glTexParameterfv = NULL; +PFNGLTEXPARAMETERIPROC glad_glTexParameteri = NULL; +PFNGLTEXPARAMETERIVPROC glad_glTexParameteriv = NULL; +PFNGLTEXSUBIMAGE1DPROC glad_glTexSubImage1D = NULL; +PFNGLTEXSUBIMAGE2DPROC glad_glTexSubImage2D = NULL; +PFNGLTEXSUBIMAGE3DPROC glad_glTexSubImage3D = NULL; +PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_glTransformFeedbackVaryings = NULL; +PFNGLTRANSLATEDPROC glad_glTranslated = NULL; +PFNGLTRANSLATEFPROC glad_glTranslatef = NULL; +PFNGLUNIFORM1FPROC glad_glUniform1f = NULL; +PFNGLUNIFORM1FVPROC glad_glUniform1fv = NULL; +PFNGLUNIFORM1IPROC glad_glUniform1i = NULL; +PFNGLUNIFORM1IVPROC glad_glUniform1iv = NULL; +PFNGLUNIFORM1UIPROC glad_glUniform1ui = NULL; +PFNGLUNIFORM1UIVPROC glad_glUniform1uiv = NULL; +PFNGLUNIFORM2FPROC glad_glUniform2f = NULL; +PFNGLUNIFORM2FVPROC glad_glUniform2fv = NULL; +PFNGLUNIFORM2IPROC glad_glUniform2i = NULL; +PFNGLUNIFORM2IVPROC glad_glUniform2iv = NULL; +PFNGLUNIFORM2UIPROC glad_glUniform2ui = NULL; +PFNGLUNIFORM2UIVPROC glad_glUniform2uiv = NULL; +PFNGLUNIFORM3FPROC glad_glUniform3f = NULL; +PFNGLUNIFORM3FVPROC glad_glUniform3fv = NULL; +PFNGLUNIFORM3IPROC glad_glUniform3i = NULL; +PFNGLUNIFORM3IVPROC glad_glUniform3iv = NULL; +PFNGLUNIFORM3UIPROC glad_glUniform3ui = NULL; +PFNGLUNIFORM3UIVPROC glad_glUniform3uiv = NULL; +PFNGLUNIFORM4FPROC glad_glUniform4f = NULL; +PFNGLUNIFORM4FVPROC glad_glUniform4fv = NULL; +PFNGLUNIFORM4IPROC glad_glUniform4i = NULL; +PFNGLUNIFORM4IVPROC glad_glUniform4iv = NULL; +PFNGLUNIFORM4UIPROC glad_glUniform4ui = NULL; +PFNGLUNIFORM4UIVPROC glad_glUniform4uiv = NULL; +PFNGLUNIFORMBLOCKBINDINGPROC glad_glUniformBlockBinding = NULL; +PFNGLUNIFORMMATRIX2FVPROC glad_glUniformMatrix2fv = NULL; +PFNGLUNIFORMMATRIX2X3FVPROC glad_glUniformMatrix2x3fv = NULL; +PFNGLUNIFORMMATRIX2X4FVPROC glad_glUniformMatrix2x4fv = NULL; +PFNGLUNIFORMMATRIX3FVPROC glad_glUniformMatrix3fv = NULL; +PFNGLUNIFORMMATRIX3X2FVPROC glad_glUniformMatrix3x2fv = NULL; +PFNGLUNIFORMMATRIX3X4FVPROC glad_glUniformMatrix3x4fv = NULL; +PFNGLUNIFORMMATRIX4FVPROC glad_glUniformMatrix4fv = NULL; +PFNGLUNIFORMMATRIX4X2FVPROC glad_glUniformMatrix4x2fv = NULL; +PFNGLUNIFORMMATRIX4X3FVPROC glad_glUniformMatrix4x3fv = NULL; +PFNGLUNMAPBUFFERPROC glad_glUnmapBuffer = NULL; +PFNGLUSEPROGRAMPROC glad_glUseProgram = NULL; +PFNGLVALIDATEPROGRAMPROC glad_glValidateProgram = NULL; +PFNGLVERTEX2DPROC glad_glVertex2d = NULL; +PFNGLVERTEX2DVPROC glad_glVertex2dv = NULL; +PFNGLVERTEX2FPROC glad_glVertex2f = NULL; +PFNGLVERTEX2FVPROC glad_glVertex2fv = NULL; +PFNGLVERTEX2IPROC glad_glVertex2i = NULL; +PFNGLVERTEX2IVPROC glad_glVertex2iv = NULL; +PFNGLVERTEX2SPROC glad_glVertex2s = NULL; +PFNGLVERTEX2SVPROC glad_glVertex2sv = NULL; +PFNGLVERTEX3DPROC glad_glVertex3d = NULL; +PFNGLVERTEX3DVPROC glad_glVertex3dv = NULL; +PFNGLVERTEX3FPROC glad_glVertex3f = NULL; +PFNGLVERTEX3FVPROC glad_glVertex3fv = NULL; +PFNGLVERTEX3IPROC glad_glVertex3i = NULL; +PFNGLVERTEX3IVPROC glad_glVertex3iv = NULL; +PFNGLVERTEX3SPROC glad_glVertex3s = NULL; +PFNGLVERTEX3SVPROC glad_glVertex3sv = NULL; +PFNGLVERTEX4DPROC glad_glVertex4d = NULL; +PFNGLVERTEX4DVPROC glad_glVertex4dv = NULL; +PFNGLVERTEX4FPROC glad_glVertex4f = NULL; +PFNGLVERTEX4FVPROC glad_glVertex4fv = NULL; +PFNGLVERTEX4IPROC glad_glVertex4i = NULL; +PFNGLVERTEX4IVPROC glad_glVertex4iv = NULL; +PFNGLVERTEX4SPROC glad_glVertex4s = NULL; +PFNGLVERTEX4SVPROC glad_glVertex4sv = NULL; +PFNGLVERTEXATTRIB1DPROC glad_glVertexAttrib1d = NULL; +PFNGLVERTEXATTRIB1DVPROC glad_glVertexAttrib1dv = NULL; +PFNGLVERTEXATTRIB1FPROC glad_glVertexAttrib1f = NULL; +PFNGLVERTEXATTRIB1FVPROC glad_glVertexAttrib1fv = NULL; +PFNGLVERTEXATTRIB1SPROC glad_glVertexAttrib1s = NULL; +PFNGLVERTEXATTRIB1SVPROC glad_glVertexAttrib1sv = NULL; +PFNGLVERTEXATTRIB2DPROC glad_glVertexAttrib2d = NULL; +PFNGLVERTEXATTRIB2DVPROC glad_glVertexAttrib2dv = NULL; +PFNGLVERTEXATTRIB2FPROC glad_glVertexAttrib2f = NULL; +PFNGLVERTEXATTRIB2FVPROC glad_glVertexAttrib2fv = NULL; +PFNGLVERTEXATTRIB2SPROC glad_glVertexAttrib2s = NULL; +PFNGLVERTEXATTRIB2SVPROC glad_glVertexAttrib2sv = NULL; +PFNGLVERTEXATTRIB3DPROC glad_glVertexAttrib3d = NULL; +PFNGLVERTEXATTRIB3DVPROC glad_glVertexAttrib3dv = NULL; +PFNGLVERTEXATTRIB3FPROC glad_glVertexAttrib3f = NULL; +PFNGLVERTEXATTRIB3FVPROC glad_glVertexAttrib3fv = NULL; +PFNGLVERTEXATTRIB3SPROC glad_glVertexAttrib3s = NULL; +PFNGLVERTEXATTRIB3SVPROC glad_glVertexAttrib3sv = NULL; +PFNGLVERTEXATTRIB4NBVPROC glad_glVertexAttrib4Nbv = NULL; +PFNGLVERTEXATTRIB4NIVPROC glad_glVertexAttrib4Niv = NULL; +PFNGLVERTEXATTRIB4NSVPROC glad_glVertexAttrib4Nsv = NULL; +PFNGLVERTEXATTRIB4NUBPROC glad_glVertexAttrib4Nub = NULL; +PFNGLVERTEXATTRIB4NUBVPROC glad_glVertexAttrib4Nubv = NULL; +PFNGLVERTEXATTRIB4NUIVPROC glad_glVertexAttrib4Nuiv = NULL; +PFNGLVERTEXATTRIB4NUSVPROC glad_glVertexAttrib4Nusv = NULL; +PFNGLVERTEXATTRIB4BVPROC glad_glVertexAttrib4bv = NULL; +PFNGLVERTEXATTRIB4DPROC glad_glVertexAttrib4d = NULL; +PFNGLVERTEXATTRIB4DVPROC glad_glVertexAttrib4dv = NULL; +PFNGLVERTEXATTRIB4FPROC glad_glVertexAttrib4f = NULL; +PFNGLVERTEXATTRIB4FVPROC glad_glVertexAttrib4fv = NULL; +PFNGLVERTEXATTRIB4IVPROC glad_glVertexAttrib4iv = NULL; +PFNGLVERTEXATTRIB4SPROC glad_glVertexAttrib4s = NULL; +PFNGLVERTEXATTRIB4SVPROC glad_glVertexAttrib4sv = NULL; +PFNGLVERTEXATTRIB4UBVPROC glad_glVertexAttrib4ubv = NULL; +PFNGLVERTEXATTRIB4UIVPROC glad_glVertexAttrib4uiv = NULL; +PFNGLVERTEXATTRIB4USVPROC glad_glVertexAttrib4usv = NULL; +PFNGLVERTEXATTRIBDIVISORPROC glad_glVertexAttribDivisor = NULL; +PFNGLVERTEXATTRIBI1IPROC glad_glVertexAttribI1i = NULL; +PFNGLVERTEXATTRIBI1IVPROC glad_glVertexAttribI1iv = NULL; +PFNGLVERTEXATTRIBI1UIPROC glad_glVertexAttribI1ui = NULL; +PFNGLVERTEXATTRIBI1UIVPROC glad_glVertexAttribI1uiv = NULL; +PFNGLVERTEXATTRIBI2IPROC glad_glVertexAttribI2i = NULL; +PFNGLVERTEXATTRIBI2IVPROC glad_glVertexAttribI2iv = NULL; +PFNGLVERTEXATTRIBI2UIPROC glad_glVertexAttribI2ui = NULL; +PFNGLVERTEXATTRIBI2UIVPROC glad_glVertexAttribI2uiv = NULL; +PFNGLVERTEXATTRIBI3IPROC glad_glVertexAttribI3i = NULL; +PFNGLVERTEXATTRIBI3IVPROC glad_glVertexAttribI3iv = NULL; +PFNGLVERTEXATTRIBI3UIPROC glad_glVertexAttribI3ui = NULL; +PFNGLVERTEXATTRIBI3UIVPROC glad_glVertexAttribI3uiv = NULL; +PFNGLVERTEXATTRIBI4BVPROC glad_glVertexAttribI4bv = NULL; +PFNGLVERTEXATTRIBI4IPROC glad_glVertexAttribI4i = NULL; +PFNGLVERTEXATTRIBI4IVPROC glad_glVertexAttribI4iv = NULL; +PFNGLVERTEXATTRIBI4SVPROC glad_glVertexAttribI4sv = NULL; +PFNGLVERTEXATTRIBI4UBVPROC glad_glVertexAttribI4ubv = NULL; +PFNGLVERTEXATTRIBI4UIPROC glad_glVertexAttribI4ui = NULL; +PFNGLVERTEXATTRIBI4UIVPROC glad_glVertexAttribI4uiv = NULL; +PFNGLVERTEXATTRIBI4USVPROC glad_glVertexAttribI4usv = NULL; +PFNGLVERTEXATTRIBIPOINTERPROC glad_glVertexAttribIPointer = NULL; +PFNGLVERTEXATTRIBP1UIPROC glad_glVertexAttribP1ui = NULL; +PFNGLVERTEXATTRIBP1UIVPROC glad_glVertexAttribP1uiv = NULL; +PFNGLVERTEXATTRIBP2UIPROC glad_glVertexAttribP2ui = NULL; +PFNGLVERTEXATTRIBP2UIVPROC glad_glVertexAttribP2uiv = NULL; +PFNGLVERTEXATTRIBP3UIPROC glad_glVertexAttribP3ui = NULL; +PFNGLVERTEXATTRIBP3UIVPROC glad_glVertexAttribP3uiv = NULL; +PFNGLVERTEXATTRIBP4UIPROC glad_glVertexAttribP4ui = NULL; +PFNGLVERTEXATTRIBP4UIVPROC glad_glVertexAttribP4uiv = NULL; +PFNGLVERTEXATTRIBPOINTERPROC glad_glVertexAttribPointer = NULL; +PFNGLVERTEXP2UIPROC glad_glVertexP2ui = NULL; +PFNGLVERTEXP2UIVPROC glad_glVertexP2uiv = NULL; +PFNGLVERTEXP3UIPROC glad_glVertexP3ui = NULL; +PFNGLVERTEXP3UIVPROC glad_glVertexP3uiv = NULL; +PFNGLVERTEXP4UIPROC glad_glVertexP4ui = NULL; +PFNGLVERTEXP4UIVPROC glad_glVertexP4uiv = NULL; +PFNGLVERTEXPOINTERPROC glad_glVertexPointer = NULL; +PFNGLVIEWPORTPROC glad_glViewport = NULL; +PFNGLWAITSYNCPROC glad_glWaitSync = NULL; +PFNGLWINDOWPOS2DPROC glad_glWindowPos2d = NULL; +PFNGLWINDOWPOS2DVPROC glad_glWindowPos2dv = NULL; +PFNGLWINDOWPOS2FPROC glad_glWindowPos2f = NULL; +PFNGLWINDOWPOS2FVPROC glad_glWindowPos2fv = NULL; +PFNGLWINDOWPOS2IPROC glad_glWindowPos2i = NULL; +PFNGLWINDOWPOS2IVPROC glad_glWindowPos2iv = NULL; +PFNGLWINDOWPOS2SPROC glad_glWindowPos2s = NULL; +PFNGLWINDOWPOS2SVPROC glad_glWindowPos2sv = NULL; +PFNGLWINDOWPOS3DPROC glad_glWindowPos3d = NULL; +PFNGLWINDOWPOS3DVPROC glad_glWindowPos3dv = NULL; +PFNGLWINDOWPOS3FPROC glad_glWindowPos3f = NULL; +PFNGLWINDOWPOS3FVPROC glad_glWindowPos3fv = NULL; +PFNGLWINDOWPOS3IPROC glad_glWindowPos3i = NULL; +PFNGLWINDOWPOS3IVPROC glad_glWindowPos3iv = NULL; +PFNGLWINDOWPOS3SPROC glad_glWindowPos3s = NULL; +PFNGLWINDOWPOS3SVPROC glad_glWindowPos3sv = NULL; +static void load_GL_VERSION_1_0(GLADloadproc load) { + if (!GLAD_GL_VERSION_1_0) + return; + glad_glCullFace = (PFNGLCULLFACEPROC)load("glCullFace"); + glad_glFrontFace = (PFNGLFRONTFACEPROC)load("glFrontFace"); + glad_glHint = (PFNGLHINTPROC)load("glHint"); + glad_glLineWidth = (PFNGLLINEWIDTHPROC)load("glLineWidth"); + glad_glPointSize = (PFNGLPOINTSIZEPROC)load("glPointSize"); + glad_glPolygonMode = (PFNGLPOLYGONMODEPROC)load("glPolygonMode"); + glad_glScissor = (PFNGLSCISSORPROC)load("glScissor"); + glad_glTexParameterf = (PFNGLTEXPARAMETERFPROC)load("glTexParameterf"); + glad_glTexParameterfv = (PFNGLTEXPARAMETERFVPROC)load("glTexParameterfv"); + glad_glTexParameteri = (PFNGLTEXPARAMETERIPROC)load("glTexParameteri"); + glad_glTexParameteriv = (PFNGLTEXPARAMETERIVPROC)load("glTexParameteriv"); + glad_glTexImage1D = (PFNGLTEXIMAGE1DPROC)load("glTexImage1D"); + glad_glTexImage2D = (PFNGLTEXIMAGE2DPROC)load("glTexImage2D"); + glad_glDrawBuffer = (PFNGLDRAWBUFFERPROC)load("glDrawBuffer"); + glad_glClear = (PFNGLCLEARPROC)load("glClear"); + glad_glClearColor = (PFNGLCLEARCOLORPROC)load("glClearColor"); + glad_glClearStencil = (PFNGLCLEARSTENCILPROC)load("glClearStencil"); + glad_glClearDepth = (PFNGLCLEARDEPTHPROC)load("glClearDepth"); + glad_glStencilMask = (PFNGLSTENCILMASKPROC)load("glStencilMask"); + glad_glColorMask = (PFNGLCOLORMASKPROC)load("glColorMask"); + glad_glDepthMask = (PFNGLDEPTHMASKPROC)load("glDepthMask"); + glad_glDisable = (PFNGLDISABLEPROC)load("glDisable"); + glad_glEnable = (PFNGLENABLEPROC)load("glEnable"); + glad_glFinish = (PFNGLFINISHPROC)load("glFinish"); + glad_glFlush = (PFNGLFLUSHPROC)load("glFlush"); + glad_glBlendFunc = (PFNGLBLENDFUNCPROC)load("glBlendFunc"); + glad_glLogicOp = (PFNGLLOGICOPPROC)load("glLogicOp"); + glad_glStencilFunc = (PFNGLSTENCILFUNCPROC)load("glStencilFunc"); + glad_glStencilOp = (PFNGLSTENCILOPPROC)load("glStencilOp"); + glad_glDepthFunc = (PFNGLDEPTHFUNCPROC)load("glDepthFunc"); + glad_glPixelStoref = (PFNGLPIXELSTOREFPROC)load("glPixelStoref"); + glad_glPixelStorei = (PFNGLPIXELSTOREIPROC)load("glPixelStorei"); + glad_glReadBuffer = (PFNGLREADBUFFERPROC)load("glReadBuffer"); + glad_glReadPixels = (PFNGLREADPIXELSPROC)load("glReadPixels"); + glad_glGetBooleanv = (PFNGLGETBOOLEANVPROC)load("glGetBooleanv"); + glad_glGetDoublev = (PFNGLGETDOUBLEVPROC)load("glGetDoublev"); + glad_glGetError = (PFNGLGETERRORPROC)load("glGetError"); + glad_glGetFloatv = (PFNGLGETFLOATVPROC)load("glGetFloatv"); + glad_glGetIntegerv = (PFNGLGETINTEGERVPROC)load("glGetIntegerv"); + glad_glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); + glad_glGetTexImage = (PFNGLGETTEXIMAGEPROC)load("glGetTexImage"); + glad_glGetTexParameterfv = + (PFNGLGETTEXPARAMETERFVPROC)load("glGetTexParameterfv"); + glad_glGetTexParameteriv = + (PFNGLGETTEXPARAMETERIVPROC)load("glGetTexParameteriv"); + glad_glGetTexLevelParameterfv = + (PFNGLGETTEXLEVELPARAMETERFVPROC)load("glGetTexLevelParameterfv"); + glad_glGetTexLevelParameteriv = + (PFNGLGETTEXLEVELPARAMETERIVPROC)load("glGetTexLevelParameteriv"); + glad_glIsEnabled = (PFNGLISENABLEDPROC)load("glIsEnabled"); + glad_glDepthRange = (PFNGLDEPTHRANGEPROC)load("glDepthRange"); + glad_glViewport = (PFNGLVIEWPORTPROC)load("glViewport"); + glad_glNewList = (PFNGLNEWLISTPROC)load("glNewList"); + glad_glEndList = (PFNGLENDLISTPROC)load("glEndList"); + glad_glCallList = (PFNGLCALLLISTPROC)load("glCallList"); + glad_glCallLists = (PFNGLCALLLISTSPROC)load("glCallLists"); + glad_glDeleteLists = (PFNGLDELETELISTSPROC)load("glDeleteLists"); + glad_glGenLists = (PFNGLGENLISTSPROC)load("glGenLists"); + glad_glListBase = (PFNGLLISTBASEPROC)load("glListBase"); + glad_glBegin = (PFNGLBEGINPROC)load("glBegin"); + glad_glBitmap = (PFNGLBITMAPPROC)load("glBitmap"); + glad_glColor3b = (PFNGLCOLOR3BPROC)load("glColor3b"); + glad_glColor3bv = (PFNGLCOLOR3BVPROC)load("glColor3bv"); + glad_glColor3d = (PFNGLCOLOR3DPROC)load("glColor3d"); + glad_glColor3dv = (PFNGLCOLOR3DVPROC)load("glColor3dv"); + glad_glColor3f = (PFNGLCOLOR3FPROC)load("glColor3f"); + glad_glColor3fv = (PFNGLCOLOR3FVPROC)load("glColor3fv"); + glad_glColor3i = (PFNGLCOLOR3IPROC)load("glColor3i"); + glad_glColor3iv = (PFNGLCOLOR3IVPROC)load("glColor3iv"); + glad_glColor3s = (PFNGLCOLOR3SPROC)load("glColor3s"); + glad_glColor3sv = (PFNGLCOLOR3SVPROC)load("glColor3sv"); + glad_glColor3ub = (PFNGLCOLOR3UBPROC)load("glColor3ub"); + glad_glColor3ubv = (PFNGLCOLOR3UBVPROC)load("glColor3ubv"); + glad_glColor3ui = (PFNGLCOLOR3UIPROC)load("glColor3ui"); + glad_glColor3uiv = (PFNGLCOLOR3UIVPROC)load("glColor3uiv"); + glad_glColor3us = (PFNGLCOLOR3USPROC)load("glColor3us"); + glad_glColor3usv = (PFNGLCOLOR3USVPROC)load("glColor3usv"); + glad_glColor4b = (PFNGLCOLOR4BPROC)load("glColor4b"); + glad_glColor4bv = (PFNGLCOLOR4BVPROC)load("glColor4bv"); + glad_glColor4d = (PFNGLCOLOR4DPROC)load("glColor4d"); + glad_glColor4dv = (PFNGLCOLOR4DVPROC)load("glColor4dv"); + glad_glColor4f = (PFNGLCOLOR4FPROC)load("glColor4f"); + glad_glColor4fv = (PFNGLCOLOR4FVPROC)load("glColor4fv"); + glad_glColor4i = (PFNGLCOLOR4IPROC)load("glColor4i"); + glad_glColor4iv = (PFNGLCOLOR4IVPROC)load("glColor4iv"); + glad_glColor4s = (PFNGLCOLOR4SPROC)load("glColor4s"); + glad_glColor4sv = (PFNGLCOLOR4SVPROC)load("glColor4sv"); + glad_glColor4ub = (PFNGLCOLOR4UBPROC)load("glColor4ub"); + glad_glColor4ubv = (PFNGLCOLOR4UBVPROC)load("glColor4ubv"); + glad_glColor4ui = (PFNGLCOLOR4UIPROC)load("glColor4ui"); + glad_glColor4uiv = (PFNGLCOLOR4UIVPROC)load("glColor4uiv"); + glad_glColor4us = (PFNGLCOLOR4USPROC)load("glColor4us"); + glad_glColor4usv = (PFNGLCOLOR4USVPROC)load("glColor4usv"); + glad_glEdgeFlag = (PFNGLEDGEFLAGPROC)load("glEdgeFlag"); + glad_glEdgeFlagv = (PFNGLEDGEFLAGVPROC)load("glEdgeFlagv"); + glad_glEnd = (PFNGLENDPROC)load("glEnd"); + glad_glIndexd = (PFNGLINDEXDPROC)load("glIndexd"); + glad_glIndexdv = (PFNGLINDEXDVPROC)load("glIndexdv"); + glad_glIndexf = (PFNGLINDEXFPROC)load("glIndexf"); + glad_glIndexfv = (PFNGLINDEXFVPROC)load("glIndexfv"); + glad_glIndexi = (PFNGLINDEXIPROC)load("glIndexi"); + glad_glIndexiv = (PFNGLINDEXIVPROC)load("glIndexiv"); + glad_glIndexs = (PFNGLINDEXSPROC)load("glIndexs"); + glad_glIndexsv = (PFNGLINDEXSVPROC)load("glIndexsv"); + glad_glNormal3b = (PFNGLNORMAL3BPROC)load("glNormal3b"); + glad_glNormal3bv = (PFNGLNORMAL3BVPROC)load("glNormal3bv"); + glad_glNormal3d = (PFNGLNORMAL3DPROC)load("glNormal3d"); + glad_glNormal3dv = (PFNGLNORMAL3DVPROC)load("glNormal3dv"); + glad_glNormal3f = (PFNGLNORMAL3FPROC)load("glNormal3f"); + glad_glNormal3fv = (PFNGLNORMAL3FVPROC)load("glNormal3fv"); + glad_glNormal3i = (PFNGLNORMAL3IPROC)load("glNormal3i"); + glad_glNormal3iv = (PFNGLNORMAL3IVPROC)load("glNormal3iv"); + glad_glNormal3s = (PFNGLNORMAL3SPROC)load("glNormal3s"); + glad_glNormal3sv = (PFNGLNORMAL3SVPROC)load("glNormal3sv"); + glad_glRasterPos2d = (PFNGLRASTERPOS2DPROC)load("glRasterPos2d"); + glad_glRasterPos2dv = (PFNGLRASTERPOS2DVPROC)load("glRasterPos2dv"); + glad_glRasterPos2f = (PFNGLRASTERPOS2FPROC)load("glRasterPos2f"); + glad_glRasterPos2fv = (PFNGLRASTERPOS2FVPROC)load("glRasterPos2fv"); + glad_glRasterPos2i = (PFNGLRASTERPOS2IPROC)load("glRasterPos2i"); + glad_glRasterPos2iv = (PFNGLRASTERPOS2IVPROC)load("glRasterPos2iv"); + glad_glRasterPos2s = (PFNGLRASTERPOS2SPROC)load("glRasterPos2s"); + glad_glRasterPos2sv = (PFNGLRASTERPOS2SVPROC)load("glRasterPos2sv"); + glad_glRasterPos3d = (PFNGLRASTERPOS3DPROC)load("glRasterPos3d"); + glad_glRasterPos3dv = (PFNGLRASTERPOS3DVPROC)load("glRasterPos3dv"); + glad_glRasterPos3f = (PFNGLRASTERPOS3FPROC)load("glRasterPos3f"); + glad_glRasterPos3fv = (PFNGLRASTERPOS3FVPROC)load("glRasterPos3fv"); + glad_glRasterPos3i = (PFNGLRASTERPOS3IPROC)load("glRasterPos3i"); + glad_glRasterPos3iv = (PFNGLRASTERPOS3IVPROC)load("glRasterPos3iv"); + glad_glRasterPos3s = (PFNGLRASTERPOS3SPROC)load("glRasterPos3s"); + glad_glRasterPos3sv = (PFNGLRASTERPOS3SVPROC)load("glRasterPos3sv"); + glad_glRasterPos4d = (PFNGLRASTERPOS4DPROC)load("glRasterPos4d"); + glad_glRasterPos4dv = (PFNGLRASTERPOS4DVPROC)load("glRasterPos4dv"); + glad_glRasterPos4f = (PFNGLRASTERPOS4FPROC)load("glRasterPos4f"); + glad_glRasterPos4fv = (PFNGLRASTERPOS4FVPROC)load("glRasterPos4fv"); + glad_glRasterPos4i = (PFNGLRASTERPOS4IPROC)load("glRasterPos4i"); + glad_glRasterPos4iv = (PFNGLRASTERPOS4IVPROC)load("glRasterPos4iv"); + glad_glRasterPos4s = (PFNGLRASTERPOS4SPROC)load("glRasterPos4s"); + glad_glRasterPos4sv = (PFNGLRASTERPOS4SVPROC)load("glRasterPos4sv"); + glad_glRectd = (PFNGLRECTDPROC)load("glRectd"); + glad_glRectdv = (PFNGLRECTDVPROC)load("glRectdv"); + glad_glRectf = (PFNGLRECTFPROC)load("glRectf"); + glad_glRectfv = (PFNGLRECTFVPROC)load("glRectfv"); + glad_glRecti = (PFNGLRECTIPROC)load("glRecti"); + glad_glRectiv = (PFNGLRECTIVPROC)load("glRectiv"); + glad_glRects = (PFNGLRECTSPROC)load("glRects"); + glad_glRectsv = (PFNGLRECTSVPROC)load("glRectsv"); + glad_glTexCoord1d = (PFNGLTEXCOORD1DPROC)load("glTexCoord1d"); + glad_glTexCoord1dv = (PFNGLTEXCOORD1DVPROC)load("glTexCoord1dv"); + glad_glTexCoord1f = (PFNGLTEXCOORD1FPROC)load("glTexCoord1f"); + glad_glTexCoord1fv = (PFNGLTEXCOORD1FVPROC)load("glTexCoord1fv"); + glad_glTexCoord1i = (PFNGLTEXCOORD1IPROC)load("glTexCoord1i"); + glad_glTexCoord1iv = (PFNGLTEXCOORD1IVPROC)load("glTexCoord1iv"); + glad_glTexCoord1s = (PFNGLTEXCOORD1SPROC)load("glTexCoord1s"); + glad_glTexCoord1sv = (PFNGLTEXCOORD1SVPROC)load("glTexCoord1sv"); + glad_glTexCoord2d = (PFNGLTEXCOORD2DPROC)load("glTexCoord2d"); + glad_glTexCoord2dv = (PFNGLTEXCOORD2DVPROC)load("glTexCoord2dv"); + glad_glTexCoord2f = (PFNGLTEXCOORD2FPROC)load("glTexCoord2f"); + glad_glTexCoord2fv = (PFNGLTEXCOORD2FVPROC)load("glTexCoord2fv"); + glad_glTexCoord2i = (PFNGLTEXCOORD2IPROC)load("glTexCoord2i"); + glad_glTexCoord2iv = (PFNGLTEXCOORD2IVPROC)load("glTexCoord2iv"); + glad_glTexCoord2s = (PFNGLTEXCOORD2SPROC)load("glTexCoord2s"); + glad_glTexCoord2sv = (PFNGLTEXCOORD2SVPROC)load("glTexCoord2sv"); + glad_glTexCoord3d = (PFNGLTEXCOORD3DPROC)load("glTexCoord3d"); + glad_glTexCoord3dv = (PFNGLTEXCOORD3DVPROC)load("glTexCoord3dv"); + glad_glTexCoord3f = (PFNGLTEXCOORD3FPROC)load("glTexCoord3f"); + glad_glTexCoord3fv = (PFNGLTEXCOORD3FVPROC)load("glTexCoord3fv"); + glad_glTexCoord3i = (PFNGLTEXCOORD3IPROC)load("glTexCoord3i"); + glad_glTexCoord3iv = (PFNGLTEXCOORD3IVPROC)load("glTexCoord3iv"); + glad_glTexCoord3s = (PFNGLTEXCOORD3SPROC)load("glTexCoord3s"); + glad_glTexCoord3sv = (PFNGLTEXCOORD3SVPROC)load("glTexCoord3sv"); + glad_glTexCoord4d = (PFNGLTEXCOORD4DPROC)load("glTexCoord4d"); + glad_glTexCoord4dv = (PFNGLTEXCOORD4DVPROC)load("glTexCoord4dv"); + glad_glTexCoord4f = (PFNGLTEXCOORD4FPROC)load("glTexCoord4f"); + glad_glTexCoord4fv = (PFNGLTEXCOORD4FVPROC)load("glTexCoord4fv"); + glad_glTexCoord4i = (PFNGLTEXCOORD4IPROC)load("glTexCoord4i"); + glad_glTexCoord4iv = (PFNGLTEXCOORD4IVPROC)load("glTexCoord4iv"); + glad_glTexCoord4s = (PFNGLTEXCOORD4SPROC)load("glTexCoord4s"); + glad_glTexCoord4sv = (PFNGLTEXCOORD4SVPROC)load("glTexCoord4sv"); + glad_glVertex2d = (PFNGLVERTEX2DPROC)load("glVertex2d"); + glad_glVertex2dv = (PFNGLVERTEX2DVPROC)load("glVertex2dv"); + glad_glVertex2f = (PFNGLVERTEX2FPROC)load("glVertex2f"); + glad_glVertex2fv = (PFNGLVERTEX2FVPROC)load("glVertex2fv"); + glad_glVertex2i = (PFNGLVERTEX2IPROC)load("glVertex2i"); + glad_glVertex2iv = (PFNGLVERTEX2IVPROC)load("glVertex2iv"); + glad_glVertex2s = (PFNGLVERTEX2SPROC)load("glVertex2s"); + glad_glVertex2sv = (PFNGLVERTEX2SVPROC)load("glVertex2sv"); + glad_glVertex3d = (PFNGLVERTEX3DPROC)load("glVertex3d"); + glad_glVertex3dv = (PFNGLVERTEX3DVPROC)load("glVertex3dv"); + glad_glVertex3f = (PFNGLVERTEX3FPROC)load("glVertex3f"); + glad_glVertex3fv = (PFNGLVERTEX3FVPROC)load("glVertex3fv"); + glad_glVertex3i = (PFNGLVERTEX3IPROC)load("glVertex3i"); + glad_glVertex3iv = (PFNGLVERTEX3IVPROC)load("glVertex3iv"); + glad_glVertex3s = (PFNGLVERTEX3SPROC)load("glVertex3s"); + glad_glVertex3sv = (PFNGLVERTEX3SVPROC)load("glVertex3sv"); + glad_glVertex4d = (PFNGLVERTEX4DPROC)load("glVertex4d"); + glad_glVertex4dv = (PFNGLVERTEX4DVPROC)load("glVertex4dv"); + glad_glVertex4f = (PFNGLVERTEX4FPROC)load("glVertex4f"); + glad_glVertex4fv = (PFNGLVERTEX4FVPROC)load("glVertex4fv"); + glad_glVertex4i = (PFNGLVERTEX4IPROC)load("glVertex4i"); + glad_glVertex4iv = (PFNGLVERTEX4IVPROC)load("glVertex4iv"); + glad_glVertex4s = (PFNGLVERTEX4SPROC)load("glVertex4s"); + glad_glVertex4sv = (PFNGLVERTEX4SVPROC)load("glVertex4sv"); + glad_glClipPlane = (PFNGLCLIPPLANEPROC)load("glClipPlane"); + glad_glColorMaterial = (PFNGLCOLORMATERIALPROC)load("glColorMaterial"); + glad_glFogf = (PFNGLFOGFPROC)load("glFogf"); + glad_glFogfv = (PFNGLFOGFVPROC)load("glFogfv"); + glad_glFogi = (PFNGLFOGIPROC)load("glFogi"); + glad_glFogiv = (PFNGLFOGIVPROC)load("glFogiv"); + glad_glLightf = (PFNGLLIGHTFPROC)load("glLightf"); + glad_glLightfv = (PFNGLLIGHTFVPROC)load("glLightfv"); + glad_glLighti = (PFNGLLIGHTIPROC)load("glLighti"); + glad_glLightiv = (PFNGLLIGHTIVPROC)load("glLightiv"); + glad_glLightModelf = (PFNGLLIGHTMODELFPROC)load("glLightModelf"); + glad_glLightModelfv = (PFNGLLIGHTMODELFVPROC)load("glLightModelfv"); + glad_glLightModeli = (PFNGLLIGHTMODELIPROC)load("glLightModeli"); + glad_glLightModeliv = (PFNGLLIGHTMODELIVPROC)load("glLightModeliv"); + glad_glLineStipple = (PFNGLLINESTIPPLEPROC)load("glLineStipple"); + glad_glMaterialf = (PFNGLMATERIALFPROC)load("glMaterialf"); + glad_glMaterialfv = (PFNGLMATERIALFVPROC)load("glMaterialfv"); + glad_glMateriali = (PFNGLMATERIALIPROC)load("glMateriali"); + glad_glMaterialiv = (PFNGLMATERIALIVPROC)load("glMaterialiv"); + glad_glPolygonStipple = (PFNGLPOLYGONSTIPPLEPROC)load("glPolygonStipple"); + glad_glShadeModel = (PFNGLSHADEMODELPROC)load("glShadeModel"); + glad_glTexEnvf = (PFNGLTEXENVFPROC)load("glTexEnvf"); + glad_glTexEnvfv = (PFNGLTEXENVFVPROC)load("glTexEnvfv"); + glad_glTexEnvi = (PFNGLTEXENVIPROC)load("glTexEnvi"); + glad_glTexEnviv = (PFNGLTEXENVIVPROC)load("glTexEnviv"); + glad_glTexGend = (PFNGLTEXGENDPROC)load("glTexGend"); + glad_glTexGendv = (PFNGLTEXGENDVPROC)load("glTexGendv"); + glad_glTexGenf = (PFNGLTEXGENFPROC)load("glTexGenf"); + glad_glTexGenfv = (PFNGLTEXGENFVPROC)load("glTexGenfv"); + glad_glTexGeni = (PFNGLTEXGENIPROC)load("glTexGeni"); + glad_glTexGeniv = (PFNGLTEXGENIVPROC)load("glTexGeniv"); + glad_glFeedbackBuffer = (PFNGLFEEDBACKBUFFERPROC)load("glFeedbackBuffer"); + glad_glSelectBuffer = (PFNGLSELECTBUFFERPROC)load("glSelectBuffer"); + glad_glRenderMode = (PFNGLRENDERMODEPROC)load("glRenderMode"); + glad_glInitNames = (PFNGLINITNAMESPROC)load("glInitNames"); + glad_glLoadName = (PFNGLLOADNAMEPROC)load("glLoadName"); + glad_glPassThrough = (PFNGLPASSTHROUGHPROC)load("glPassThrough"); + glad_glPopName = (PFNGLPOPNAMEPROC)load("glPopName"); + glad_glPushName = (PFNGLPUSHNAMEPROC)load("glPushName"); + glad_glClearAccum = (PFNGLCLEARACCUMPROC)load("glClearAccum"); + glad_glClearIndex = (PFNGLCLEARINDEXPROC)load("glClearIndex"); + glad_glIndexMask = (PFNGLINDEXMASKPROC)load("glIndexMask"); + glad_glAccum = (PFNGLACCUMPROC)load("glAccum"); + glad_glPopAttrib = (PFNGLPOPATTRIBPROC)load("glPopAttrib"); + glad_glPushAttrib = (PFNGLPUSHATTRIBPROC)load("glPushAttrib"); + glad_glMap1d = (PFNGLMAP1DPROC)load("glMap1d"); + glad_glMap1f = (PFNGLMAP1FPROC)load("glMap1f"); + glad_glMap2d = (PFNGLMAP2DPROC)load("glMap2d"); + glad_glMap2f = (PFNGLMAP2FPROC)load("glMap2f"); + glad_glMapGrid1d = (PFNGLMAPGRID1DPROC)load("glMapGrid1d"); + glad_glMapGrid1f = (PFNGLMAPGRID1FPROC)load("glMapGrid1f"); + glad_glMapGrid2d = (PFNGLMAPGRID2DPROC)load("glMapGrid2d"); + glad_glMapGrid2f = (PFNGLMAPGRID2FPROC)load("glMapGrid2f"); + glad_glEvalCoord1d = (PFNGLEVALCOORD1DPROC)load("glEvalCoord1d"); + glad_glEvalCoord1dv = (PFNGLEVALCOORD1DVPROC)load("glEvalCoord1dv"); + glad_glEvalCoord1f = (PFNGLEVALCOORD1FPROC)load("glEvalCoord1f"); + glad_glEvalCoord1fv = (PFNGLEVALCOORD1FVPROC)load("glEvalCoord1fv"); + glad_glEvalCoord2d = (PFNGLEVALCOORD2DPROC)load("glEvalCoord2d"); + glad_glEvalCoord2dv = (PFNGLEVALCOORD2DVPROC)load("glEvalCoord2dv"); + glad_glEvalCoord2f = (PFNGLEVALCOORD2FPROC)load("glEvalCoord2f"); + glad_glEvalCoord2fv = (PFNGLEVALCOORD2FVPROC)load("glEvalCoord2fv"); + glad_glEvalMesh1 = (PFNGLEVALMESH1PROC)load("glEvalMesh1"); + glad_glEvalPoint1 = (PFNGLEVALPOINT1PROC)load("glEvalPoint1"); + glad_glEvalMesh2 = (PFNGLEVALMESH2PROC)load("glEvalMesh2"); + glad_glEvalPoint2 = (PFNGLEVALPOINT2PROC)load("glEvalPoint2"); + glad_glAlphaFunc = (PFNGLALPHAFUNCPROC)load("glAlphaFunc"); + glad_glPixelZoom = (PFNGLPIXELZOOMPROC)load("glPixelZoom"); + glad_glPixelTransferf = (PFNGLPIXELTRANSFERFPROC)load("glPixelTransferf"); + glad_glPixelTransferi = (PFNGLPIXELTRANSFERIPROC)load("glPixelTransferi"); + glad_glPixelMapfv = (PFNGLPIXELMAPFVPROC)load("glPixelMapfv"); + glad_glPixelMapuiv = (PFNGLPIXELMAPUIVPROC)load("glPixelMapuiv"); + glad_glPixelMapusv = (PFNGLPIXELMAPUSVPROC)load("glPixelMapusv"); + glad_glCopyPixels = (PFNGLCOPYPIXELSPROC)load("glCopyPixels"); + glad_glDrawPixels = (PFNGLDRAWPIXELSPROC)load("glDrawPixels"); + glad_glGetClipPlane = (PFNGLGETCLIPPLANEPROC)load("glGetClipPlane"); + glad_glGetLightfv = (PFNGLGETLIGHTFVPROC)load("glGetLightfv"); + glad_glGetLightiv = (PFNGLGETLIGHTIVPROC)load("glGetLightiv"); + glad_glGetMapdv = (PFNGLGETMAPDVPROC)load("glGetMapdv"); + glad_glGetMapfv = (PFNGLGETMAPFVPROC)load("glGetMapfv"); + glad_glGetMapiv = (PFNGLGETMAPIVPROC)load("glGetMapiv"); + glad_glGetMaterialfv = (PFNGLGETMATERIALFVPROC)load("glGetMaterialfv"); + glad_glGetMaterialiv = (PFNGLGETMATERIALIVPROC)load("glGetMaterialiv"); + glad_glGetPixelMapfv = (PFNGLGETPIXELMAPFVPROC)load("glGetPixelMapfv"); + glad_glGetPixelMapuiv = (PFNGLGETPIXELMAPUIVPROC)load("glGetPixelMapuiv"); + glad_glGetPixelMapusv = (PFNGLGETPIXELMAPUSVPROC)load("glGetPixelMapusv"); + glad_glGetPolygonStipple = + (PFNGLGETPOLYGONSTIPPLEPROC)load("glGetPolygonStipple"); + glad_glGetTexEnvfv = (PFNGLGETTEXENVFVPROC)load("glGetTexEnvfv"); + glad_glGetTexEnviv = (PFNGLGETTEXENVIVPROC)load("glGetTexEnviv"); + glad_glGetTexGendv = (PFNGLGETTEXGENDVPROC)load("glGetTexGendv"); + glad_glGetTexGenfv = (PFNGLGETTEXGENFVPROC)load("glGetTexGenfv"); + glad_glGetTexGeniv = (PFNGLGETTEXGENIVPROC)load("glGetTexGeniv"); + glad_glIsList = (PFNGLISLISTPROC)load("glIsList"); + glad_glFrustum = (PFNGLFRUSTUMPROC)load("glFrustum"); + glad_glLoadIdentity = (PFNGLLOADIDENTITYPROC)load("glLoadIdentity"); + glad_glLoadMatrixf = (PFNGLLOADMATRIXFPROC)load("glLoadMatrixf"); + glad_glLoadMatrixd = (PFNGLLOADMATRIXDPROC)load("glLoadMatrixd"); + glad_glMatrixMode = (PFNGLMATRIXMODEPROC)load("glMatrixMode"); + glad_glMultMatrixf = (PFNGLMULTMATRIXFPROC)load("glMultMatrixf"); + glad_glMultMatrixd = (PFNGLMULTMATRIXDPROC)load("glMultMatrixd"); + glad_glOrtho = (PFNGLORTHOPROC)load("glOrtho"); + glad_glPopMatrix = (PFNGLPOPMATRIXPROC)load("glPopMatrix"); + glad_glPushMatrix = (PFNGLPUSHMATRIXPROC)load("glPushMatrix"); + glad_glRotated = (PFNGLROTATEDPROC)load("glRotated"); + glad_glRotatef = (PFNGLROTATEFPROC)load("glRotatef"); + glad_glScaled = (PFNGLSCALEDPROC)load("glScaled"); + glad_glScalef = (PFNGLSCALEFPROC)load("glScalef"); + glad_glTranslated = (PFNGLTRANSLATEDPROC)load("glTranslated"); + glad_glTranslatef = (PFNGLTRANSLATEFPROC)load("glTranslatef"); +} +static void load_GL_VERSION_1_1(GLADloadproc load) { + if (!GLAD_GL_VERSION_1_1) + return; + glad_glDrawArrays = (PFNGLDRAWARRAYSPROC)load("glDrawArrays"); + glad_glDrawElements = (PFNGLDRAWELEMENTSPROC)load("glDrawElements"); + glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); + glad_glPolygonOffset = (PFNGLPOLYGONOFFSETPROC)load("glPolygonOffset"); + glad_glCopyTexImage1D = (PFNGLCOPYTEXIMAGE1DPROC)load("glCopyTexImage1D"); + glad_glCopyTexImage2D = (PFNGLCOPYTEXIMAGE2DPROC)load("glCopyTexImage2D"); + glad_glCopyTexSubImage1D = + (PFNGLCOPYTEXSUBIMAGE1DPROC)load("glCopyTexSubImage1D"); + glad_glCopyTexSubImage2D = + (PFNGLCOPYTEXSUBIMAGE2DPROC)load("glCopyTexSubImage2D"); + glad_glTexSubImage1D = (PFNGLTEXSUBIMAGE1DPROC)load("glTexSubImage1D"); + glad_glTexSubImage2D = (PFNGLTEXSUBIMAGE2DPROC)load("glTexSubImage2D"); + glad_glBindTexture = (PFNGLBINDTEXTUREPROC)load("glBindTexture"); + glad_glDeleteTextures = (PFNGLDELETETEXTURESPROC)load("glDeleteTextures"); + glad_glGenTextures = (PFNGLGENTEXTURESPROC)load("glGenTextures"); + glad_glIsTexture = (PFNGLISTEXTUREPROC)load("glIsTexture"); + glad_glArrayElement = (PFNGLARRAYELEMENTPROC)load("glArrayElement"); + glad_glColorPointer = (PFNGLCOLORPOINTERPROC)load("glColorPointer"); + glad_glDisableClientState = + (PFNGLDISABLECLIENTSTATEPROC)load("glDisableClientState"); + glad_glEdgeFlagPointer = + (PFNGLEDGEFLAGPOINTERPROC)load("glEdgeFlagPointer"); + glad_glEnableClientState = + (PFNGLENABLECLIENTSTATEPROC)load("glEnableClientState"); + glad_glIndexPointer = (PFNGLINDEXPOINTERPROC)load("glIndexPointer"); + glad_glInterleavedArrays = + (PFNGLINTERLEAVEDARRAYSPROC)load("glInterleavedArrays"); + glad_glNormalPointer = (PFNGLNORMALPOINTERPROC)load("glNormalPointer"); + glad_glTexCoordPointer = + (PFNGLTEXCOORDPOINTERPROC)load("glTexCoordPointer"); + glad_glVertexPointer = (PFNGLVERTEXPOINTERPROC)load("glVertexPointer"); + glad_glAreTexturesResident = + (PFNGLARETEXTURESRESIDENTPROC)load("glAreTexturesResident"); + glad_glPrioritizeTextures = + (PFNGLPRIORITIZETEXTURESPROC)load("glPrioritizeTextures"); + glad_glIndexub = (PFNGLINDEXUBPROC)load("glIndexub"); + glad_glIndexubv = (PFNGLINDEXUBVPROC)load("glIndexubv"); + glad_glPopClientAttrib = + (PFNGLPOPCLIENTATTRIBPROC)load("glPopClientAttrib"); + glad_glPushClientAttrib = + (PFNGLPUSHCLIENTATTRIBPROC)load("glPushClientAttrib"); +} +static void load_GL_VERSION_1_2(GLADloadproc load) { + if (!GLAD_GL_VERSION_1_2) + return; + glad_glDrawRangeElements = + (PFNGLDRAWRANGEELEMENTSPROC)load("glDrawRangeElements"); + glad_glTexImage3D = (PFNGLTEXIMAGE3DPROC)load("glTexImage3D"); + glad_glTexSubImage3D = (PFNGLTEXSUBIMAGE3DPROC)load("glTexSubImage3D"); + glad_glCopyTexSubImage3D = + (PFNGLCOPYTEXSUBIMAGE3DPROC)load("glCopyTexSubImage3D"); +} +static void load_GL_VERSION_1_3(GLADloadproc load) { + if (!GLAD_GL_VERSION_1_3) + return; + glad_glActiveTexture = (PFNGLACTIVETEXTUREPROC)load("glActiveTexture"); + glad_glSampleCoverage = (PFNGLSAMPLECOVERAGEPROC)load("glSampleCoverage"); + glad_glCompressedTexImage3D = + (PFNGLCOMPRESSEDTEXIMAGE3DPROC)load("glCompressedTexImage3D"); + glad_glCompressedTexImage2D = + (PFNGLCOMPRESSEDTEXIMAGE2DPROC)load("glCompressedTexImage2D"); + glad_glCompressedTexImage1D = + (PFNGLCOMPRESSEDTEXIMAGE1DPROC)load("glCompressedTexImage1D"); + glad_glCompressedTexSubImage3D = + (PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)load("glCompressedTexSubImage3D"); + glad_glCompressedTexSubImage2D = + (PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)load("glCompressedTexSubImage2D"); + glad_glCompressedTexSubImage1D = + (PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)load("glCompressedTexSubImage1D"); + glad_glGetCompressedTexImage = + (PFNGLGETCOMPRESSEDTEXIMAGEPROC)load("glGetCompressedTexImage"); + glad_glClientActiveTexture = + (PFNGLCLIENTACTIVETEXTUREPROC)load("glClientActiveTexture"); + glad_glMultiTexCoord1d = + (PFNGLMULTITEXCOORD1DPROC)load("glMultiTexCoord1d"); + glad_glMultiTexCoord1dv = + (PFNGLMULTITEXCOORD1DVPROC)load("glMultiTexCoord1dv"); + glad_glMultiTexCoord1f = + (PFNGLMULTITEXCOORD1FPROC)load("glMultiTexCoord1f"); + glad_glMultiTexCoord1fv = + (PFNGLMULTITEXCOORD1FVPROC)load("glMultiTexCoord1fv"); + glad_glMultiTexCoord1i = + (PFNGLMULTITEXCOORD1IPROC)load("glMultiTexCoord1i"); + glad_glMultiTexCoord1iv = + (PFNGLMULTITEXCOORD1IVPROC)load("glMultiTexCoord1iv"); + glad_glMultiTexCoord1s = + (PFNGLMULTITEXCOORD1SPROC)load("glMultiTexCoord1s"); + glad_glMultiTexCoord1sv = + (PFNGLMULTITEXCOORD1SVPROC)load("glMultiTexCoord1sv"); + glad_glMultiTexCoord2d = + (PFNGLMULTITEXCOORD2DPROC)load("glMultiTexCoord2d"); + glad_glMultiTexCoord2dv = + (PFNGLMULTITEXCOORD2DVPROC)load("glMultiTexCoord2dv"); + glad_glMultiTexCoord2f = + (PFNGLMULTITEXCOORD2FPROC)load("glMultiTexCoord2f"); + glad_glMultiTexCoord2fv = + (PFNGLMULTITEXCOORD2FVPROC)load("glMultiTexCoord2fv"); + glad_glMultiTexCoord2i = + (PFNGLMULTITEXCOORD2IPROC)load("glMultiTexCoord2i"); + glad_glMultiTexCoord2iv = + (PFNGLMULTITEXCOORD2IVPROC)load("glMultiTexCoord2iv"); + glad_glMultiTexCoord2s = + (PFNGLMULTITEXCOORD2SPROC)load("glMultiTexCoord2s"); + glad_glMultiTexCoord2sv = + (PFNGLMULTITEXCOORD2SVPROC)load("glMultiTexCoord2sv"); + glad_glMultiTexCoord3d = + (PFNGLMULTITEXCOORD3DPROC)load("glMultiTexCoord3d"); + glad_glMultiTexCoord3dv = + (PFNGLMULTITEXCOORD3DVPROC)load("glMultiTexCoord3dv"); + glad_glMultiTexCoord3f = + (PFNGLMULTITEXCOORD3FPROC)load("glMultiTexCoord3f"); + glad_glMultiTexCoord3fv = + (PFNGLMULTITEXCOORD3FVPROC)load("glMultiTexCoord3fv"); + glad_glMultiTexCoord3i = + (PFNGLMULTITEXCOORD3IPROC)load("glMultiTexCoord3i"); + glad_glMultiTexCoord3iv = + (PFNGLMULTITEXCOORD3IVPROC)load("glMultiTexCoord3iv"); + glad_glMultiTexCoord3s = + (PFNGLMULTITEXCOORD3SPROC)load("glMultiTexCoord3s"); + glad_glMultiTexCoord3sv = + (PFNGLMULTITEXCOORD3SVPROC)load("glMultiTexCoord3sv"); + glad_glMultiTexCoord4d = + (PFNGLMULTITEXCOORD4DPROC)load("glMultiTexCoord4d"); + glad_glMultiTexCoord4dv = + (PFNGLMULTITEXCOORD4DVPROC)load("glMultiTexCoord4dv"); + glad_glMultiTexCoord4f = + (PFNGLMULTITEXCOORD4FPROC)load("glMultiTexCoord4f"); + glad_glMultiTexCoord4fv = + (PFNGLMULTITEXCOORD4FVPROC)load("glMultiTexCoord4fv"); + glad_glMultiTexCoord4i = + (PFNGLMULTITEXCOORD4IPROC)load("glMultiTexCoord4i"); + glad_glMultiTexCoord4iv = + (PFNGLMULTITEXCOORD4IVPROC)load("glMultiTexCoord4iv"); + glad_glMultiTexCoord4s = + (PFNGLMULTITEXCOORD4SPROC)load("glMultiTexCoord4s"); + glad_glMultiTexCoord4sv = + (PFNGLMULTITEXCOORD4SVPROC)load("glMultiTexCoord4sv"); + glad_glLoadTransposeMatrixf = + (PFNGLLOADTRANSPOSEMATRIXFPROC)load("glLoadTransposeMatrixf"); + glad_glLoadTransposeMatrixd = + (PFNGLLOADTRANSPOSEMATRIXDPROC)load("glLoadTransposeMatrixd"); + glad_glMultTransposeMatrixf = + (PFNGLMULTTRANSPOSEMATRIXFPROC)load("glMultTransposeMatrixf"); + glad_glMultTransposeMatrixd = + (PFNGLMULTTRANSPOSEMATRIXDPROC)load("glMultTransposeMatrixd"); +} +static void load_GL_VERSION_1_4(GLADloadproc load) { + if (!GLAD_GL_VERSION_1_4) + return; + glad_glBlendFuncSeparate = + (PFNGLBLENDFUNCSEPARATEPROC)load("glBlendFuncSeparate"); + glad_glMultiDrawArrays = + (PFNGLMULTIDRAWARRAYSPROC)load("glMultiDrawArrays"); + glad_glMultiDrawElements = + (PFNGLMULTIDRAWELEMENTSPROC)load("glMultiDrawElements"); + glad_glPointParameterf = + (PFNGLPOINTPARAMETERFPROC)load("glPointParameterf"); + glad_glPointParameterfv = + (PFNGLPOINTPARAMETERFVPROC)load("glPointParameterfv"); + glad_glPointParameteri = + (PFNGLPOINTPARAMETERIPROC)load("glPointParameteri"); + glad_glPointParameteriv = + (PFNGLPOINTPARAMETERIVPROC)load("glPointParameteriv"); + glad_glFogCoordf = (PFNGLFOGCOORDFPROC)load("glFogCoordf"); + glad_glFogCoordfv = (PFNGLFOGCOORDFVPROC)load("glFogCoordfv"); + glad_glFogCoordd = (PFNGLFOGCOORDDPROC)load("glFogCoordd"); + glad_glFogCoorddv = (PFNGLFOGCOORDDVPROC)load("glFogCoorddv"); + glad_glFogCoordPointer = + (PFNGLFOGCOORDPOINTERPROC)load("glFogCoordPointer"); + glad_glSecondaryColor3b = + (PFNGLSECONDARYCOLOR3BPROC)load("glSecondaryColor3b"); + glad_glSecondaryColor3bv = + (PFNGLSECONDARYCOLOR3BVPROC)load("glSecondaryColor3bv"); + glad_glSecondaryColor3d = + (PFNGLSECONDARYCOLOR3DPROC)load("glSecondaryColor3d"); + glad_glSecondaryColor3dv = + (PFNGLSECONDARYCOLOR3DVPROC)load("glSecondaryColor3dv"); + glad_glSecondaryColor3f = + (PFNGLSECONDARYCOLOR3FPROC)load("glSecondaryColor3f"); + glad_glSecondaryColor3fv = + (PFNGLSECONDARYCOLOR3FVPROC)load("glSecondaryColor3fv"); + glad_glSecondaryColor3i = + (PFNGLSECONDARYCOLOR3IPROC)load("glSecondaryColor3i"); + glad_glSecondaryColor3iv = + (PFNGLSECONDARYCOLOR3IVPROC)load("glSecondaryColor3iv"); + glad_glSecondaryColor3s = + (PFNGLSECONDARYCOLOR3SPROC)load("glSecondaryColor3s"); + glad_glSecondaryColor3sv = + (PFNGLSECONDARYCOLOR3SVPROC)load("glSecondaryColor3sv"); + glad_glSecondaryColor3ub = + (PFNGLSECONDARYCOLOR3UBPROC)load("glSecondaryColor3ub"); + glad_glSecondaryColor3ubv = + (PFNGLSECONDARYCOLOR3UBVPROC)load("glSecondaryColor3ubv"); + glad_glSecondaryColor3ui = + (PFNGLSECONDARYCOLOR3UIPROC)load("glSecondaryColor3ui"); + glad_glSecondaryColor3uiv = + (PFNGLSECONDARYCOLOR3UIVPROC)load("glSecondaryColor3uiv"); + glad_glSecondaryColor3us = + (PFNGLSECONDARYCOLOR3USPROC)load("glSecondaryColor3us"); + glad_glSecondaryColor3usv = + (PFNGLSECONDARYCOLOR3USVPROC)load("glSecondaryColor3usv"); + glad_glSecondaryColorPointer = + (PFNGLSECONDARYCOLORPOINTERPROC)load("glSecondaryColorPointer"); + glad_glWindowPos2d = (PFNGLWINDOWPOS2DPROC)load("glWindowPos2d"); + glad_glWindowPos2dv = (PFNGLWINDOWPOS2DVPROC)load("glWindowPos2dv"); + glad_glWindowPos2f = (PFNGLWINDOWPOS2FPROC)load("glWindowPos2f"); + glad_glWindowPos2fv = (PFNGLWINDOWPOS2FVPROC)load("glWindowPos2fv"); + glad_glWindowPos2i = (PFNGLWINDOWPOS2IPROC)load("glWindowPos2i"); + glad_glWindowPos2iv = (PFNGLWINDOWPOS2IVPROC)load("glWindowPos2iv"); + glad_glWindowPos2s = (PFNGLWINDOWPOS2SPROC)load("glWindowPos2s"); + glad_glWindowPos2sv = (PFNGLWINDOWPOS2SVPROC)load("glWindowPos2sv"); + glad_glWindowPos3d = (PFNGLWINDOWPOS3DPROC)load("glWindowPos3d"); + glad_glWindowPos3dv = (PFNGLWINDOWPOS3DVPROC)load("glWindowPos3dv"); + glad_glWindowPos3f = (PFNGLWINDOWPOS3FPROC)load("glWindowPos3f"); + glad_glWindowPos3fv = (PFNGLWINDOWPOS3FVPROC)load("glWindowPos3fv"); + glad_glWindowPos3i = (PFNGLWINDOWPOS3IPROC)load("glWindowPos3i"); + glad_glWindowPos3iv = (PFNGLWINDOWPOS3IVPROC)load("glWindowPos3iv"); + glad_glWindowPos3s = (PFNGLWINDOWPOS3SPROC)load("glWindowPos3s"); + glad_glWindowPos3sv = (PFNGLWINDOWPOS3SVPROC)load("glWindowPos3sv"); + glad_glBlendColor = (PFNGLBLENDCOLORPROC)load("glBlendColor"); + glad_glBlendEquation = (PFNGLBLENDEQUATIONPROC)load("glBlendEquation"); +} +static void load_GL_VERSION_1_5(GLADloadproc load) { + if (!GLAD_GL_VERSION_1_5) + return; + glad_glGenQueries = (PFNGLGENQUERIESPROC)load("glGenQueries"); + glad_glDeleteQueries = (PFNGLDELETEQUERIESPROC)load("glDeleteQueries"); + glad_glIsQuery = (PFNGLISQUERYPROC)load("glIsQuery"); + glad_glBeginQuery = (PFNGLBEGINQUERYPROC)load("glBeginQuery"); + glad_glEndQuery = (PFNGLENDQUERYPROC)load("glEndQuery"); + glad_glGetQueryiv = (PFNGLGETQUERYIVPROC)load("glGetQueryiv"); + glad_glGetQueryObjectiv = + (PFNGLGETQUERYOBJECTIVPROC)load("glGetQueryObjectiv"); + glad_glGetQueryObjectuiv = + (PFNGLGETQUERYOBJECTUIVPROC)load("glGetQueryObjectuiv"); + glad_glBindBuffer = (PFNGLBINDBUFFERPROC)load("glBindBuffer"); + glad_glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)load("glDeleteBuffers"); + glad_glGenBuffers = (PFNGLGENBUFFERSPROC)load("glGenBuffers"); + glad_glIsBuffer = (PFNGLISBUFFERPROC)load("glIsBuffer"); + glad_glBufferData = (PFNGLBUFFERDATAPROC)load("glBufferData"); + glad_glBufferSubData = (PFNGLBUFFERSUBDATAPROC)load("glBufferSubData"); + glad_glGetBufferSubData = + (PFNGLGETBUFFERSUBDATAPROC)load("glGetBufferSubData"); + glad_glMapBuffer = (PFNGLMAPBUFFERPROC)load("glMapBuffer"); + glad_glUnmapBuffer = (PFNGLUNMAPBUFFERPROC)load("glUnmapBuffer"); + glad_glGetBufferParameteriv = + (PFNGLGETBUFFERPARAMETERIVPROC)load("glGetBufferParameteriv"); + glad_glGetBufferPointerv = + (PFNGLGETBUFFERPOINTERVPROC)load("glGetBufferPointerv"); +} +static void load_GL_VERSION_2_0(GLADloadproc load) { + if (!GLAD_GL_VERSION_2_0) + return; + glad_glBlendEquationSeparate = + (PFNGLBLENDEQUATIONSEPARATEPROC)load("glBlendEquationSeparate"); + glad_glDrawBuffers = (PFNGLDRAWBUFFERSPROC)load("glDrawBuffers"); + glad_glStencilOpSeparate = + (PFNGLSTENCILOPSEPARATEPROC)load("glStencilOpSeparate"); + glad_glStencilFuncSeparate = + (PFNGLSTENCILFUNCSEPARATEPROC)load("glStencilFuncSeparate"); + glad_glStencilMaskSeparate = + (PFNGLSTENCILMASKSEPARATEPROC)load("glStencilMaskSeparate"); + glad_glAttachShader = (PFNGLATTACHSHADERPROC)load("glAttachShader"); + glad_glBindAttribLocation = + (PFNGLBINDATTRIBLOCATIONPROC)load("glBindAttribLocation"); + glad_glCompileShader = (PFNGLCOMPILESHADERPROC)load("glCompileShader"); + glad_glCreateProgram = (PFNGLCREATEPROGRAMPROC)load("glCreateProgram"); + glad_glCreateShader = (PFNGLCREATESHADERPROC)load("glCreateShader"); + glad_glDeleteProgram = (PFNGLDELETEPROGRAMPROC)load("glDeleteProgram"); + glad_glDeleteShader = (PFNGLDELETESHADERPROC)load("glDeleteShader"); + glad_glDetachShader = (PFNGLDETACHSHADERPROC)load("glDetachShader"); + glad_glDisableVertexAttribArray = + (PFNGLDISABLEVERTEXATTRIBARRAYPROC)load("glDisableVertexAttribArray"); + glad_glEnableVertexAttribArray = + (PFNGLENABLEVERTEXATTRIBARRAYPROC)load("glEnableVertexAttribArray"); + glad_glGetActiveAttrib = + (PFNGLGETACTIVEATTRIBPROC)load("glGetActiveAttrib"); + glad_glGetActiveUniform = + (PFNGLGETACTIVEUNIFORMPROC)load("glGetActiveUniform"); + glad_glGetAttachedShaders = + (PFNGLGETATTACHEDSHADERSPROC)load("glGetAttachedShaders"); + glad_glGetAttribLocation = + (PFNGLGETATTRIBLOCATIONPROC)load("glGetAttribLocation"); + glad_glGetProgramiv = (PFNGLGETPROGRAMIVPROC)load("glGetProgramiv"); + glad_glGetProgramInfoLog = + (PFNGLGETPROGRAMINFOLOGPROC)load("glGetProgramInfoLog"); + glad_glGetShaderiv = (PFNGLGETSHADERIVPROC)load("glGetShaderiv"); + glad_glGetShaderInfoLog = + (PFNGLGETSHADERINFOLOGPROC)load("glGetShaderInfoLog"); + glad_glGetShaderSource = + (PFNGLGETSHADERSOURCEPROC)load("glGetShaderSource"); + glad_glGetUniformLocation = + (PFNGLGETUNIFORMLOCATIONPROC)load("glGetUniformLocation"); + glad_glGetUniformfv = (PFNGLGETUNIFORMFVPROC)load("glGetUniformfv"); + glad_glGetUniformiv = (PFNGLGETUNIFORMIVPROC)load("glGetUniformiv"); + glad_glGetVertexAttribdv = + (PFNGLGETVERTEXATTRIBDVPROC)load("glGetVertexAttribdv"); + glad_glGetVertexAttribfv = + (PFNGLGETVERTEXATTRIBFVPROC)load("glGetVertexAttribfv"); + glad_glGetVertexAttribiv = + (PFNGLGETVERTEXATTRIBIVPROC)load("glGetVertexAttribiv"); + glad_glGetVertexAttribPointerv = + (PFNGLGETVERTEXATTRIBPOINTERVPROC)load("glGetVertexAttribPointerv"); + glad_glIsProgram = (PFNGLISPROGRAMPROC)load("glIsProgram"); + glad_glIsShader = (PFNGLISSHADERPROC)load("glIsShader"); + glad_glLinkProgram = (PFNGLLINKPROGRAMPROC)load("glLinkProgram"); + glad_glShaderSource = (PFNGLSHADERSOURCEPROC)load("glShaderSource"); + glad_glUseProgram = (PFNGLUSEPROGRAMPROC)load("glUseProgram"); + glad_glUniform1f = (PFNGLUNIFORM1FPROC)load("glUniform1f"); + glad_glUniform2f = (PFNGLUNIFORM2FPROC)load("glUniform2f"); + glad_glUniform3f = (PFNGLUNIFORM3FPROC)load("glUniform3f"); + glad_glUniform4f = (PFNGLUNIFORM4FPROC)load("glUniform4f"); + glad_glUniform1i = (PFNGLUNIFORM1IPROC)load("glUniform1i"); + glad_glUniform2i = (PFNGLUNIFORM2IPROC)load("glUniform2i"); + glad_glUniform3i = (PFNGLUNIFORM3IPROC)load("glUniform3i"); + glad_glUniform4i = (PFNGLUNIFORM4IPROC)load("glUniform4i"); + glad_glUniform1fv = (PFNGLUNIFORM1FVPROC)load("glUniform1fv"); + glad_glUniform2fv = (PFNGLUNIFORM2FVPROC)load("glUniform2fv"); + glad_glUniform3fv = (PFNGLUNIFORM3FVPROC)load("glUniform3fv"); + glad_glUniform4fv = (PFNGLUNIFORM4FVPROC)load("glUniform4fv"); + glad_glUniform1iv = (PFNGLUNIFORM1IVPROC)load("glUniform1iv"); + glad_glUniform2iv = (PFNGLUNIFORM2IVPROC)load("glUniform2iv"); + glad_glUniform3iv = (PFNGLUNIFORM3IVPROC)load("glUniform3iv"); + glad_glUniform4iv = (PFNGLUNIFORM4IVPROC)load("glUniform4iv"); + glad_glUniformMatrix2fv = + (PFNGLUNIFORMMATRIX2FVPROC)load("glUniformMatrix2fv"); + glad_glUniformMatrix3fv = + (PFNGLUNIFORMMATRIX3FVPROC)load("glUniformMatrix3fv"); + glad_glUniformMatrix4fv = + (PFNGLUNIFORMMATRIX4FVPROC)load("glUniformMatrix4fv"); + glad_glValidateProgram = + (PFNGLVALIDATEPROGRAMPROC)load("glValidateProgram"); + glad_glVertexAttrib1d = (PFNGLVERTEXATTRIB1DPROC)load("glVertexAttrib1d"); + glad_glVertexAttrib1dv = + (PFNGLVERTEXATTRIB1DVPROC)load("glVertexAttrib1dv"); + glad_glVertexAttrib1f = (PFNGLVERTEXATTRIB1FPROC)load("glVertexAttrib1f"); + glad_glVertexAttrib1fv = + (PFNGLVERTEXATTRIB1FVPROC)load("glVertexAttrib1fv"); + glad_glVertexAttrib1s = (PFNGLVERTEXATTRIB1SPROC)load("glVertexAttrib1s"); + glad_glVertexAttrib1sv = + (PFNGLVERTEXATTRIB1SVPROC)load("glVertexAttrib1sv"); + glad_glVertexAttrib2d = (PFNGLVERTEXATTRIB2DPROC)load("glVertexAttrib2d"); + glad_glVertexAttrib2dv = + (PFNGLVERTEXATTRIB2DVPROC)load("glVertexAttrib2dv"); + glad_glVertexAttrib2f = (PFNGLVERTEXATTRIB2FPROC)load("glVertexAttrib2f"); + glad_glVertexAttrib2fv = + (PFNGLVERTEXATTRIB2FVPROC)load("glVertexAttrib2fv"); + glad_glVertexAttrib2s = (PFNGLVERTEXATTRIB2SPROC)load("glVertexAttrib2s"); + glad_glVertexAttrib2sv = + (PFNGLVERTEXATTRIB2SVPROC)load("glVertexAttrib2sv"); + glad_glVertexAttrib3d = (PFNGLVERTEXATTRIB3DPROC)load("glVertexAttrib3d"); + glad_glVertexAttrib3dv = + (PFNGLVERTEXATTRIB3DVPROC)load("glVertexAttrib3dv"); + glad_glVertexAttrib3f = (PFNGLVERTEXATTRIB3FPROC)load("glVertexAttrib3f"); + glad_glVertexAttrib3fv = + (PFNGLVERTEXATTRIB3FVPROC)load("glVertexAttrib3fv"); + glad_glVertexAttrib3s = (PFNGLVERTEXATTRIB3SPROC)load("glVertexAttrib3s"); + glad_glVertexAttrib3sv = + (PFNGLVERTEXATTRIB3SVPROC)load("glVertexAttrib3sv"); + glad_glVertexAttrib4Nbv = + (PFNGLVERTEXATTRIB4NBVPROC)load("glVertexAttrib4Nbv"); + glad_glVertexAttrib4Niv = + (PFNGLVERTEXATTRIB4NIVPROC)load("glVertexAttrib4Niv"); + glad_glVertexAttrib4Nsv = + (PFNGLVERTEXATTRIB4NSVPROC)load("glVertexAttrib4Nsv"); + glad_glVertexAttrib4Nub = + (PFNGLVERTEXATTRIB4NUBPROC)load("glVertexAttrib4Nub"); + glad_glVertexAttrib4Nubv = + (PFNGLVERTEXATTRIB4NUBVPROC)load("glVertexAttrib4Nubv"); + glad_glVertexAttrib4Nuiv = + (PFNGLVERTEXATTRIB4NUIVPROC)load("glVertexAttrib4Nuiv"); + glad_glVertexAttrib4Nusv = + (PFNGLVERTEXATTRIB4NUSVPROC)load("glVertexAttrib4Nusv"); + glad_glVertexAttrib4bv = + (PFNGLVERTEXATTRIB4BVPROC)load("glVertexAttrib4bv"); + glad_glVertexAttrib4d = (PFNGLVERTEXATTRIB4DPROC)load("glVertexAttrib4d"); + glad_glVertexAttrib4dv = + (PFNGLVERTEXATTRIB4DVPROC)load("glVertexAttrib4dv"); + glad_glVertexAttrib4f = (PFNGLVERTEXATTRIB4FPROC)load("glVertexAttrib4f"); + glad_glVertexAttrib4fv = + (PFNGLVERTEXATTRIB4FVPROC)load("glVertexAttrib4fv"); + glad_glVertexAttrib4iv = + (PFNGLVERTEXATTRIB4IVPROC)load("glVertexAttrib4iv"); + glad_glVertexAttrib4s = (PFNGLVERTEXATTRIB4SPROC)load("glVertexAttrib4s"); + glad_glVertexAttrib4sv = + (PFNGLVERTEXATTRIB4SVPROC)load("glVertexAttrib4sv"); + glad_glVertexAttrib4ubv = + (PFNGLVERTEXATTRIB4UBVPROC)load("glVertexAttrib4ubv"); + glad_glVertexAttrib4uiv = + (PFNGLVERTEXATTRIB4UIVPROC)load("glVertexAttrib4uiv"); + glad_glVertexAttrib4usv = + (PFNGLVERTEXATTRIB4USVPROC)load("glVertexAttrib4usv"); + glad_glVertexAttribPointer = + (PFNGLVERTEXATTRIBPOINTERPROC)load("glVertexAttribPointer"); +} +static void load_GL_VERSION_2_1(GLADloadproc load) { + if (!GLAD_GL_VERSION_2_1) + return; + glad_glUniformMatrix2x3fv = + (PFNGLUNIFORMMATRIX2X3FVPROC)load("glUniformMatrix2x3fv"); + glad_glUniformMatrix3x2fv = + (PFNGLUNIFORMMATRIX3X2FVPROC)load("glUniformMatrix3x2fv"); + glad_glUniformMatrix2x4fv = + (PFNGLUNIFORMMATRIX2X4FVPROC)load("glUniformMatrix2x4fv"); + glad_glUniformMatrix4x2fv = + (PFNGLUNIFORMMATRIX4X2FVPROC)load("glUniformMatrix4x2fv"); + glad_glUniformMatrix3x4fv = + (PFNGLUNIFORMMATRIX3X4FVPROC)load("glUniformMatrix3x4fv"); + glad_glUniformMatrix4x3fv = + (PFNGLUNIFORMMATRIX4X3FVPROC)load("glUniformMatrix4x3fv"); +} +static void load_GL_VERSION_3_0(GLADloadproc load) { + if (!GLAD_GL_VERSION_3_0) + return; + glad_glColorMaski = (PFNGLCOLORMASKIPROC)load("glColorMaski"); + glad_glGetBooleani_v = (PFNGLGETBOOLEANI_VPROC)load("glGetBooleani_v"); + glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); + glad_glEnablei = (PFNGLENABLEIPROC)load("glEnablei"); + glad_glDisablei = (PFNGLDISABLEIPROC)load("glDisablei"); + glad_glIsEnabledi = (PFNGLISENABLEDIPROC)load("glIsEnabledi"); + glad_glBeginTransformFeedback = + (PFNGLBEGINTRANSFORMFEEDBACKPROC)load("glBeginTransformFeedback"); + glad_glEndTransformFeedback = + (PFNGLENDTRANSFORMFEEDBACKPROC)load("glEndTransformFeedback"); + glad_glBindBufferRange = + (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); + glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); + glad_glTransformFeedbackVaryings = + (PFNGLTRANSFORMFEEDBACKVARYINGSPROC)load("glTransformFeedbackVaryings"); + glad_glGetTransformFeedbackVarying = + (PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)load( + "glGetTransformFeedbackVarying"); + glad_glClampColor = (PFNGLCLAMPCOLORPROC)load("glClampColor"); + glad_glBeginConditionalRender = + (PFNGLBEGINCONDITIONALRENDERPROC)load("glBeginConditionalRender"); + glad_glEndConditionalRender = + (PFNGLENDCONDITIONALRENDERPROC)load("glEndConditionalRender"); + glad_glVertexAttribIPointer = + (PFNGLVERTEXATTRIBIPOINTERPROC)load("glVertexAttribIPointer"); + glad_glGetVertexAttribIiv = + (PFNGLGETVERTEXATTRIBIIVPROC)load("glGetVertexAttribIiv"); + glad_glGetVertexAttribIuiv = + (PFNGLGETVERTEXATTRIBIUIVPROC)load("glGetVertexAttribIuiv"); + glad_glVertexAttribI1i = + (PFNGLVERTEXATTRIBI1IPROC)load("glVertexAttribI1i"); + glad_glVertexAttribI2i = + (PFNGLVERTEXATTRIBI2IPROC)load("glVertexAttribI2i"); + glad_glVertexAttribI3i = + (PFNGLVERTEXATTRIBI3IPROC)load("glVertexAttribI3i"); + glad_glVertexAttribI4i = + (PFNGLVERTEXATTRIBI4IPROC)load("glVertexAttribI4i"); + glad_glVertexAttribI1ui = + (PFNGLVERTEXATTRIBI1UIPROC)load("glVertexAttribI1ui"); + glad_glVertexAttribI2ui = + (PFNGLVERTEXATTRIBI2UIPROC)load("glVertexAttribI2ui"); + glad_glVertexAttribI3ui = + (PFNGLVERTEXATTRIBI3UIPROC)load("glVertexAttribI3ui"); + glad_glVertexAttribI4ui = + (PFNGLVERTEXATTRIBI4UIPROC)load("glVertexAttribI4ui"); + glad_glVertexAttribI1iv = + (PFNGLVERTEXATTRIBI1IVPROC)load("glVertexAttribI1iv"); + glad_glVertexAttribI2iv = + (PFNGLVERTEXATTRIBI2IVPROC)load("glVertexAttribI2iv"); + glad_glVertexAttribI3iv = + (PFNGLVERTEXATTRIBI3IVPROC)load("glVertexAttribI3iv"); + glad_glVertexAttribI4iv = + (PFNGLVERTEXATTRIBI4IVPROC)load("glVertexAttribI4iv"); + glad_glVertexAttribI1uiv = + (PFNGLVERTEXATTRIBI1UIVPROC)load("glVertexAttribI1uiv"); + glad_glVertexAttribI2uiv = + (PFNGLVERTEXATTRIBI2UIVPROC)load("glVertexAttribI2uiv"); + glad_glVertexAttribI3uiv = + (PFNGLVERTEXATTRIBI3UIVPROC)load("glVertexAttribI3uiv"); + glad_glVertexAttribI4uiv = + (PFNGLVERTEXATTRIBI4UIVPROC)load("glVertexAttribI4uiv"); + glad_glVertexAttribI4bv = + (PFNGLVERTEXATTRIBI4BVPROC)load("glVertexAttribI4bv"); + glad_glVertexAttribI4sv = + (PFNGLVERTEXATTRIBI4SVPROC)load("glVertexAttribI4sv"); + glad_glVertexAttribI4ubv = + (PFNGLVERTEXATTRIBI4UBVPROC)load("glVertexAttribI4ubv"); + glad_glVertexAttribI4usv = + (PFNGLVERTEXATTRIBI4USVPROC)load("glVertexAttribI4usv"); + glad_glGetUniformuiv = (PFNGLGETUNIFORMUIVPROC)load("glGetUniformuiv"); + glad_glBindFragDataLocation = + (PFNGLBINDFRAGDATALOCATIONPROC)load("glBindFragDataLocation"); + glad_glGetFragDataLocation = + (PFNGLGETFRAGDATALOCATIONPROC)load("glGetFragDataLocation"); + glad_glUniform1ui = (PFNGLUNIFORM1UIPROC)load("glUniform1ui"); + glad_glUniform2ui = (PFNGLUNIFORM2UIPROC)load("glUniform2ui"); + glad_glUniform3ui = (PFNGLUNIFORM3UIPROC)load("glUniform3ui"); + glad_glUniform4ui = (PFNGLUNIFORM4UIPROC)load("glUniform4ui"); + glad_glUniform1uiv = (PFNGLUNIFORM1UIVPROC)load("glUniform1uiv"); + glad_glUniform2uiv = (PFNGLUNIFORM2UIVPROC)load("glUniform2uiv"); + glad_glUniform3uiv = (PFNGLUNIFORM3UIVPROC)load("glUniform3uiv"); + glad_glUniform4uiv = (PFNGLUNIFORM4UIVPROC)load("glUniform4uiv"); + glad_glTexParameterIiv = + (PFNGLTEXPARAMETERIIVPROC)load("glTexParameterIiv"); + glad_glTexParameterIuiv = + (PFNGLTEXPARAMETERIUIVPROC)load("glTexParameterIuiv"); + glad_glGetTexParameterIiv = + (PFNGLGETTEXPARAMETERIIVPROC)load("glGetTexParameterIiv"); + glad_glGetTexParameterIuiv = + (PFNGLGETTEXPARAMETERIUIVPROC)load("glGetTexParameterIuiv"); + glad_glClearBufferiv = (PFNGLCLEARBUFFERIVPROC)load("glClearBufferiv"); + glad_glClearBufferuiv = (PFNGLCLEARBUFFERUIVPROC)load("glClearBufferuiv"); + glad_glClearBufferfv = (PFNGLCLEARBUFFERFVPROC)load("glClearBufferfv"); + glad_glClearBufferfi = (PFNGLCLEARBUFFERFIPROC)load("glClearBufferfi"); + glad_glGetStringi = (PFNGLGETSTRINGIPROC)load("glGetStringi"); + glad_glIsRenderbuffer = (PFNGLISRENDERBUFFERPROC)load("glIsRenderbuffer"); + glad_glBindRenderbuffer = + (PFNGLBINDRENDERBUFFERPROC)load("glBindRenderbuffer"); + glad_glDeleteRenderbuffers = + (PFNGLDELETERENDERBUFFERSPROC)load("glDeleteRenderbuffers"); + glad_glGenRenderbuffers = + (PFNGLGENRENDERBUFFERSPROC)load("glGenRenderbuffers"); + glad_glRenderbufferStorage = + (PFNGLRENDERBUFFERSTORAGEPROC)load("glRenderbufferStorage"); + glad_glGetRenderbufferParameteriv = + (PFNGLGETRENDERBUFFERPARAMETERIVPROC)load( + "glGetRenderbufferParameteriv"); + glad_glIsFramebuffer = (PFNGLISFRAMEBUFFERPROC)load("glIsFramebuffer"); + glad_glBindFramebuffer = + (PFNGLBINDFRAMEBUFFERPROC)load("glBindFramebuffer"); + glad_glDeleteFramebuffers = + (PFNGLDELETEFRAMEBUFFERSPROC)load("glDeleteFramebuffers"); + glad_glGenFramebuffers = + (PFNGLGENFRAMEBUFFERSPROC)load("glGenFramebuffers"); + glad_glCheckFramebufferStatus = + (PFNGLCHECKFRAMEBUFFERSTATUSPROC)load("glCheckFramebufferStatus"); + glad_glFramebufferTexture1D = + (PFNGLFRAMEBUFFERTEXTURE1DPROC)load("glFramebufferTexture1D"); + glad_glFramebufferTexture2D = + (PFNGLFRAMEBUFFERTEXTURE2DPROC)load("glFramebufferTexture2D"); + glad_glFramebufferTexture3D = + (PFNGLFRAMEBUFFERTEXTURE3DPROC)load("glFramebufferTexture3D"); + glad_glFramebufferRenderbuffer = + (PFNGLFRAMEBUFFERRENDERBUFFERPROC)load("glFramebufferRenderbuffer"); + glad_glGetFramebufferAttachmentParameteriv = + (PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load( + "glGetFramebufferAttachmentParameteriv"); + glad_glGenerateMipmap = (PFNGLGENERATEMIPMAPPROC)load("glGenerateMipmap"); + glad_glBlitFramebuffer = + (PFNGLBLITFRAMEBUFFERPROC)load("glBlitFramebuffer"); + glad_glRenderbufferStorageMultisample = + (PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)load( + "glRenderbufferStorageMultisample"); + glad_glFramebufferTextureLayer = + (PFNGLFRAMEBUFFERTEXTURELAYERPROC)load("glFramebufferTextureLayer"); + glad_glMapBufferRange = (PFNGLMAPBUFFERRANGEPROC)load("glMapBufferRange"); + glad_glFlushMappedBufferRange = + (PFNGLFLUSHMAPPEDBUFFERRANGEPROC)load("glFlushMappedBufferRange"); + glad_glBindVertexArray = + (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); + glad_glDeleteVertexArrays = + (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); + glad_glGenVertexArrays = + (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); + glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); +} +static void load_GL_VERSION_3_1(GLADloadproc load) { + if (!GLAD_GL_VERSION_3_1) + return; + glad_glDrawArraysInstanced = + (PFNGLDRAWARRAYSINSTANCEDPROC)load("glDrawArraysInstanced"); + glad_glDrawElementsInstanced = + (PFNGLDRAWELEMENTSINSTANCEDPROC)load("glDrawElementsInstanced"); + glad_glTexBuffer = (PFNGLTEXBUFFERPROC)load("glTexBuffer"); + glad_glPrimitiveRestartIndex = + (PFNGLPRIMITIVERESTARTINDEXPROC)load("glPrimitiveRestartIndex"); + glad_glCopyBufferSubData = + (PFNGLCOPYBUFFERSUBDATAPROC)load("glCopyBufferSubData"); + glad_glGetUniformIndices = + (PFNGLGETUNIFORMINDICESPROC)load("glGetUniformIndices"); + glad_glGetActiveUniformsiv = + (PFNGLGETACTIVEUNIFORMSIVPROC)load("glGetActiveUniformsiv"); + glad_glGetActiveUniformName = + (PFNGLGETACTIVEUNIFORMNAMEPROC)load("glGetActiveUniformName"); + glad_glGetUniformBlockIndex = + (PFNGLGETUNIFORMBLOCKINDEXPROC)load("glGetUniformBlockIndex"); + glad_glGetActiveUniformBlockiv = + (PFNGLGETACTIVEUNIFORMBLOCKIVPROC)load("glGetActiveUniformBlockiv"); + glad_glGetActiveUniformBlockName = + (PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)load("glGetActiveUniformBlockName"); + glad_glUniformBlockBinding = + (PFNGLUNIFORMBLOCKBINDINGPROC)load("glUniformBlockBinding"); + glad_glBindBufferRange = + (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); + glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); + glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); +} +static void load_GL_VERSION_3_2(GLADloadproc load) { + if (!GLAD_GL_VERSION_3_2) + return; + glad_glDrawElementsBaseVertex = + (PFNGLDRAWELEMENTSBASEVERTEXPROC)load("glDrawElementsBaseVertex"); + glad_glDrawRangeElementsBaseVertex = + (PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)load( + "glDrawRangeElementsBaseVertex"); + glad_glDrawElementsInstancedBaseVertex = + (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)load( + "glDrawElementsInstancedBaseVertex"); + glad_glMultiDrawElementsBaseVertex = + (PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)load( + "glMultiDrawElementsBaseVertex"); + glad_glProvokingVertex = + (PFNGLPROVOKINGVERTEXPROC)load("glProvokingVertex"); + glad_glFenceSync = (PFNGLFENCESYNCPROC)load("glFenceSync"); + glad_glIsSync = (PFNGLISSYNCPROC)load("glIsSync"); + glad_glDeleteSync = (PFNGLDELETESYNCPROC)load("glDeleteSync"); + glad_glClientWaitSync = (PFNGLCLIENTWAITSYNCPROC)load("glClientWaitSync"); + glad_glWaitSync = (PFNGLWAITSYNCPROC)load("glWaitSync"); + glad_glGetInteger64v = (PFNGLGETINTEGER64VPROC)load("glGetInteger64v"); + glad_glGetSynciv = (PFNGLGETSYNCIVPROC)load("glGetSynciv"); + glad_glGetInteger64i_v = + (PFNGLGETINTEGER64I_VPROC)load("glGetInteger64i_v"); + glad_glGetBufferParameteri64v = + (PFNGLGETBUFFERPARAMETERI64VPROC)load("glGetBufferParameteri64v"); + glad_glFramebufferTexture = + (PFNGLFRAMEBUFFERTEXTUREPROC)load("glFramebufferTexture"); + glad_glTexImage2DMultisample = + (PFNGLTEXIMAGE2DMULTISAMPLEPROC)load("glTexImage2DMultisample"); + glad_glTexImage3DMultisample = + (PFNGLTEXIMAGE3DMULTISAMPLEPROC)load("glTexImage3DMultisample"); + glad_glGetMultisamplefv = + (PFNGLGETMULTISAMPLEFVPROC)load("glGetMultisamplefv"); + glad_glSampleMaski = (PFNGLSAMPLEMASKIPROC)load("glSampleMaski"); +} +static void load_GL_VERSION_3_3(GLADloadproc load) { + if (!GLAD_GL_VERSION_3_3) + return; + glad_glBindFragDataLocationIndexed = + (PFNGLBINDFRAGDATALOCATIONINDEXEDPROC)load( + "glBindFragDataLocationIndexed"); + glad_glGetFragDataIndex = + (PFNGLGETFRAGDATAINDEXPROC)load("glGetFragDataIndex"); + glad_glGenSamplers = (PFNGLGENSAMPLERSPROC)load("glGenSamplers"); + glad_glDeleteSamplers = (PFNGLDELETESAMPLERSPROC)load("glDeleteSamplers"); + glad_glIsSampler = (PFNGLISSAMPLERPROC)load("glIsSampler"); + glad_glBindSampler = (PFNGLBINDSAMPLERPROC)load("glBindSampler"); + glad_glSamplerParameteri = + (PFNGLSAMPLERPARAMETERIPROC)load("glSamplerParameteri"); + glad_glSamplerParameteriv = + (PFNGLSAMPLERPARAMETERIVPROC)load("glSamplerParameteriv"); + glad_glSamplerParameterf = + (PFNGLSAMPLERPARAMETERFPROC)load("glSamplerParameterf"); + glad_glSamplerParameterfv = + (PFNGLSAMPLERPARAMETERFVPROC)load("glSamplerParameterfv"); + glad_glSamplerParameterIiv = + (PFNGLSAMPLERPARAMETERIIVPROC)load("glSamplerParameterIiv"); + glad_glSamplerParameterIuiv = + (PFNGLSAMPLERPARAMETERIUIVPROC)load("glSamplerParameterIuiv"); + glad_glGetSamplerParameteriv = + (PFNGLGETSAMPLERPARAMETERIVPROC)load("glGetSamplerParameteriv"); + glad_glGetSamplerParameterIiv = + (PFNGLGETSAMPLERPARAMETERIIVPROC)load("glGetSamplerParameterIiv"); + glad_glGetSamplerParameterfv = + (PFNGLGETSAMPLERPARAMETERFVPROC)load("glGetSamplerParameterfv"); + glad_glGetSamplerParameterIuiv = + (PFNGLGETSAMPLERPARAMETERIUIVPROC)load("glGetSamplerParameterIuiv"); + glad_glQueryCounter = (PFNGLQUERYCOUNTERPROC)load("glQueryCounter"); + glad_glGetQueryObjecti64v = + (PFNGLGETQUERYOBJECTI64VPROC)load("glGetQueryObjecti64v"); + glad_glGetQueryObjectui64v = + (PFNGLGETQUERYOBJECTUI64VPROC)load("glGetQueryObjectui64v"); + glad_glVertexAttribDivisor = + (PFNGLVERTEXATTRIBDIVISORPROC)load("glVertexAttribDivisor"); + glad_glVertexAttribP1ui = + (PFNGLVERTEXATTRIBP1UIPROC)load("glVertexAttribP1ui"); + glad_glVertexAttribP1uiv = + (PFNGLVERTEXATTRIBP1UIVPROC)load("glVertexAttribP1uiv"); + glad_glVertexAttribP2ui = + (PFNGLVERTEXATTRIBP2UIPROC)load("glVertexAttribP2ui"); + glad_glVertexAttribP2uiv = + (PFNGLVERTEXATTRIBP2UIVPROC)load("glVertexAttribP2uiv"); + glad_glVertexAttribP3ui = + (PFNGLVERTEXATTRIBP3UIPROC)load("glVertexAttribP3ui"); + glad_glVertexAttribP3uiv = + (PFNGLVERTEXATTRIBP3UIVPROC)load("glVertexAttribP3uiv"); + glad_glVertexAttribP4ui = + (PFNGLVERTEXATTRIBP4UIPROC)load("glVertexAttribP4ui"); + glad_glVertexAttribP4uiv = + (PFNGLVERTEXATTRIBP4UIVPROC)load("glVertexAttribP4uiv"); + glad_glVertexP2ui = (PFNGLVERTEXP2UIPROC)load("glVertexP2ui"); + glad_glVertexP2uiv = (PFNGLVERTEXP2UIVPROC)load("glVertexP2uiv"); + glad_glVertexP3ui = (PFNGLVERTEXP3UIPROC)load("glVertexP3ui"); + glad_glVertexP3uiv = (PFNGLVERTEXP3UIVPROC)load("glVertexP3uiv"); + glad_glVertexP4ui = (PFNGLVERTEXP4UIPROC)load("glVertexP4ui"); + glad_glVertexP4uiv = (PFNGLVERTEXP4UIVPROC)load("glVertexP4uiv"); + glad_glTexCoordP1ui = (PFNGLTEXCOORDP1UIPROC)load("glTexCoordP1ui"); + glad_glTexCoordP1uiv = (PFNGLTEXCOORDP1UIVPROC)load("glTexCoordP1uiv"); + glad_glTexCoordP2ui = (PFNGLTEXCOORDP2UIPROC)load("glTexCoordP2ui"); + glad_glTexCoordP2uiv = (PFNGLTEXCOORDP2UIVPROC)load("glTexCoordP2uiv"); + glad_glTexCoordP3ui = (PFNGLTEXCOORDP3UIPROC)load("glTexCoordP3ui"); + glad_glTexCoordP3uiv = (PFNGLTEXCOORDP3UIVPROC)load("glTexCoordP3uiv"); + glad_glTexCoordP4ui = (PFNGLTEXCOORDP4UIPROC)load("glTexCoordP4ui"); + glad_glTexCoordP4uiv = (PFNGLTEXCOORDP4UIVPROC)load("glTexCoordP4uiv"); + glad_glMultiTexCoordP1ui = + (PFNGLMULTITEXCOORDP1UIPROC)load("glMultiTexCoordP1ui"); + glad_glMultiTexCoordP1uiv = + (PFNGLMULTITEXCOORDP1UIVPROC)load("glMultiTexCoordP1uiv"); + glad_glMultiTexCoordP2ui = + (PFNGLMULTITEXCOORDP2UIPROC)load("glMultiTexCoordP2ui"); + glad_glMultiTexCoordP2uiv = + (PFNGLMULTITEXCOORDP2UIVPROC)load("glMultiTexCoordP2uiv"); + glad_glMultiTexCoordP3ui = + (PFNGLMULTITEXCOORDP3UIPROC)load("glMultiTexCoordP3ui"); + glad_glMultiTexCoordP3uiv = + (PFNGLMULTITEXCOORDP3UIVPROC)load("glMultiTexCoordP3uiv"); + glad_glMultiTexCoordP4ui = + (PFNGLMULTITEXCOORDP4UIPROC)load("glMultiTexCoordP4ui"); + glad_glMultiTexCoordP4uiv = + (PFNGLMULTITEXCOORDP4UIVPROC)load("glMultiTexCoordP4uiv"); + glad_glNormalP3ui = (PFNGLNORMALP3UIPROC)load("glNormalP3ui"); + glad_glNormalP3uiv = (PFNGLNORMALP3UIVPROC)load("glNormalP3uiv"); + glad_glColorP3ui = (PFNGLCOLORP3UIPROC)load("glColorP3ui"); + glad_glColorP3uiv = (PFNGLCOLORP3UIVPROC)load("glColorP3uiv"); + glad_glColorP4ui = (PFNGLCOLORP4UIPROC)load("glColorP4ui"); + glad_glColorP4uiv = (PFNGLCOLORP4UIVPROC)load("glColorP4uiv"); + glad_glSecondaryColorP3ui = + (PFNGLSECONDARYCOLORP3UIPROC)load("glSecondaryColorP3ui"); + glad_glSecondaryColorP3uiv = + (PFNGLSECONDARYCOLORP3UIVPROC)load("glSecondaryColorP3uiv"); +} +static int find_extensionsGL(void) { + if (!get_exts()) + return 0; + (void)&has_ext; + free_exts(); + return 1; +} + +static void find_coreGL(void) { + + /* Thank you @elmindreda + * https://github.com/elmindreda/greg/blob/master/templates/greg.c.in#L176 + * https://github.com/glfw/glfw/blob/master/src/context.c#L36 + */ + int i, major, minor; + + const char *version; + const char *prefixes[] = {"OpenGL ES-CM ", "OpenGL ES-CL ", "OpenGL ES ", + NULL}; + + version = (const char *)glGetString(GL_VERSION); + if (!version) + return; + + for (i = 0; prefixes[i]; i++) { + const size_t length = strlen(prefixes[i]); + if (strncmp(version, prefixes[i], length) == 0) { + version += length; + break; + } + } + +/* PR #18 */ +#ifdef _MSC_VER + sscanf_s(version, "%d.%d", &major, &minor); +#else + sscanf(version, "%d.%d", &major, &minor); +#endif + + GLVersion.major = major; + GLVersion.minor = minor; + max_loaded_major = major; + max_loaded_minor = minor; + GLAD_GL_VERSION_1_0 = (major == 1 && minor >= 0) || major > 1; + GLAD_GL_VERSION_1_1 = (major == 1 && minor >= 1) || major > 1; + GLAD_GL_VERSION_1_2 = (major == 1 && minor >= 2) || major > 1; + GLAD_GL_VERSION_1_3 = (major == 1 && minor >= 3) || major > 1; + GLAD_GL_VERSION_1_4 = (major == 1 && minor >= 4) || major > 1; + GLAD_GL_VERSION_1_5 = (major == 1 && minor >= 5) || major > 1; + GLAD_GL_VERSION_2_0 = (major == 2 && minor >= 0) || major > 2; + GLAD_GL_VERSION_2_1 = (major == 2 && minor >= 1) || major > 2; + GLAD_GL_VERSION_3_0 = (major == 3 && minor >= 0) || major > 3; + GLAD_GL_VERSION_3_1 = (major == 3 && minor >= 1) || major > 3; + GLAD_GL_VERSION_3_2 = (major == 3 && minor >= 2) || major > 3; + GLAD_GL_VERSION_3_3 = (major == 3 && minor >= 3) || major > 3; + if (GLVersion.major > 3 || (GLVersion.major >= 3 && GLVersion.minor >= 3)) { + max_loaded_major = 3; + max_loaded_minor = 3; + } +} + +int gladLoadGLLoader(GLADloadproc load) { + GLVersion.major = 0; + GLVersion.minor = 0; + glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); + if (glGetString == NULL) + return 0; + if (glGetString(GL_VERSION) == NULL) + return 0; + find_coreGL(); + load_GL_VERSION_1_0(load); + load_GL_VERSION_1_1(load); + load_GL_VERSION_1_2(load); + load_GL_VERSION_1_3(load); + load_GL_VERSION_1_4(load); + load_GL_VERSION_1_5(load); + load_GL_VERSION_2_0(load); + load_GL_VERSION_2_1(load); + load_GL_VERSION_3_0(load); + load_GL_VERSION_3_1(load); + load_GL_VERSION_3_2(load); + load_GL_VERSION_3_3(load); + + if (!find_extensionsGL()) + return 0; + return GLVersion.major != 0 || GLVersion.minor != 0; +} diff --git a/image.png b/image.png new file mode 100644 index 0000000..c785f41 Binary files /dev/null and b/image.png differ diff --git a/include/KHR/khrplatform.h b/include/KHR/khrplatform.h new file mode 100644 index 0000000..0164644 --- /dev/null +++ b/include/KHR/khrplatform.h @@ -0,0 +1,311 @@ +#ifndef __khrplatform_h_ +#define __khrplatform_h_ + +/* +** Copyright (c) 2008-2018 The Khronos Group Inc. +** +** Permission is hereby granted, free of charge, to any person obtaining a +** copy of this software and/or associated documentation files (the +** "Materials"), to deal in the Materials without restriction, including +** without limitation the rights to use, copy, modify, merge, publish, +** distribute, sublicense, and/or sell copies of the Materials, and to +** permit persons to whom the Materials are furnished to do so, subject to +** the following conditions: +** +** The above copyright notice and this permission notice shall be included +** in all copies or substantial portions of the Materials. +** +** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +*/ + +/* Khronos platform-specific types and definitions. + * + * The master copy of khrplatform.h is maintained in the Khronos EGL + * Registry repository at https://github.com/KhronosGroup/EGL-Registry + * The last semantic modification to khrplatform.h was at commit ID: + * 67a3e0864c2d75ea5287b9f3d2eb74a745936692 + * + * Adopters may modify this file to suit their platform. Adopters are + * encouraged to submit platform specific modifications to the Khronos + * group so that they can be included in future versions of this file. + * Please submit changes by filing pull requests or issues on + * the EGL Registry repository linked above. + * + * + * See the Implementer's Guidelines for information about where this file + * should be located on your system and for more details of its use: + * http://www.khronos.org/registry/implementers_guide.pdf + * + * This file should be included as + * #include + * by Khronos client API header files that use its types and defines. + * + * The types in khrplatform.h should only be used to define API-specific types. + * + * Types defined in khrplatform.h: + * khronos_int8_t signed 8 bit + * khronos_uint8_t unsigned 8 bit + * khronos_int16_t signed 16 bit + * khronos_uint16_t unsigned 16 bit + * khronos_int32_t signed 32 bit + * khronos_uint32_t unsigned 32 bit + * khronos_int64_t signed 64 bit + * khronos_uint64_t unsigned 64 bit + * khronos_intptr_t signed same number of bits as a pointer + * khronos_uintptr_t unsigned same number of bits as a pointer + * khronos_ssize_t signed size + * khronos_usize_t unsigned size + * khronos_float_t signed 32 bit floating point + * khronos_time_ns_t unsigned 64 bit time in nanoseconds + * khronos_utime_nanoseconds_t unsigned time interval or absolute time in + * nanoseconds + * khronos_stime_nanoseconds_t signed time interval in nanoseconds + * khronos_boolean_enum_t enumerated boolean type. This should + * only be used as a base type when a client API's boolean type is + * an enum. Client APIs which use an integer or other type for + * booleans cannot use this as the base type for their boolean. + * + * Tokens defined in khrplatform.h: + * + * KHRONOS_FALSE, KHRONOS_TRUE Enumerated boolean false/true values. + * + * KHRONOS_SUPPORT_INT64 is 1 if 64 bit integers are supported; otherwise 0. + * KHRONOS_SUPPORT_FLOAT is 1 if floats are supported; otherwise 0. + * + * Calling convention macros defined in this file: + * KHRONOS_APICALL + * KHRONOS_APIENTRY + * KHRONOS_APIATTRIBUTES + * + * These may be used in function prototypes as: + * + * KHRONOS_APICALL void KHRONOS_APIENTRY funcname( + * int arg1, + * int arg2) KHRONOS_APIATTRIBUTES; + */ + +#if defined(__SCITECH_SNAP__) && !defined(KHRONOS_STATIC) +# define KHRONOS_STATIC 1 +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APICALL + *------------------------------------------------------------------------- + * This precedes the return type of the function in the function prototype. + */ +#if defined(KHRONOS_STATIC) + /* If the preprocessor constant KHRONOS_STATIC is defined, make the + * header compatible with static linking. */ +# define KHRONOS_APICALL +#elif defined(_WIN32) +# define KHRONOS_APICALL __declspec(dllimport) +#elif defined (__SYMBIAN32__) +# define KHRONOS_APICALL IMPORT_C +#elif defined(__ANDROID__) +# define KHRONOS_APICALL __attribute__((visibility("default"))) +#else +# define KHRONOS_APICALL +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIENTRY + *------------------------------------------------------------------------- + * This follows the return type of the function and precedes the function + * name in the function prototype. + */ +#if defined(_WIN32) && !defined(_WIN32_WCE) && !defined(__SCITECH_SNAP__) + /* Win32 but not WinCE */ +# define KHRONOS_APIENTRY __stdcall +#else +# define KHRONOS_APIENTRY +#endif + +/*------------------------------------------------------------------------- + * Definition of KHRONOS_APIATTRIBUTES + *------------------------------------------------------------------------- + * This follows the closing parenthesis of the function prototype arguments. + */ +#if defined (__ARMCC_2__) +#define KHRONOS_APIATTRIBUTES __softfp +#else +#define KHRONOS_APIATTRIBUTES +#endif + +/*------------------------------------------------------------------------- + * basic type definitions + *-----------------------------------------------------------------------*/ +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__GNUC__) || defined(__SCO__) || defined(__USLC__) + + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 +/* + * To support platform where unsigned long cannot be used interchangeably with + * inptr_t (e.g. CHERI-extended ISAs), we can use the stdint.h intptr_t. + * Ideally, we could just use (u)intptr_t everywhere, but this could result in + * ABI breakage if khronos_uintptr_t is changed from unsigned long to + * unsigned long long or similar (this results in different C++ name mangling). + * To avoid changes for existing platforms, we restrict usage of intptr_t to + * platforms where the size of a pointer is larger than the size of long. + */ +#if defined(__SIZEOF_LONG__) && defined(__SIZEOF_POINTER__) +#if __SIZEOF_POINTER__ > __SIZEOF_LONG__ +#define KHRONOS_USE_INTPTR_T +#endif +#endif + +#elif defined(__VMS ) || defined(__sgi) + +/* + * Using + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(_WIN32) && !defined(__SCITECH_SNAP__) + +/* + * Win32 + */ +typedef __int32 khronos_int32_t; +typedef unsigned __int32 khronos_uint32_t; +typedef __int64 khronos_int64_t; +typedef unsigned __int64 khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif defined(__sun__) || defined(__digital__) + +/* + * Sun or Digital + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#if defined(__arch64__) || defined(_LP64) +typedef long int khronos_int64_t; +typedef unsigned long int khronos_uint64_t; +#else +typedef long long int khronos_int64_t; +typedef unsigned long long int khronos_uint64_t; +#endif /* __arch64__ */ +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#elif 0 + +/* + * Hypothetical platform with no float or int64 support + */ +typedef int khronos_int32_t; +typedef unsigned int khronos_uint32_t; +#define KHRONOS_SUPPORT_INT64 0 +#define KHRONOS_SUPPORT_FLOAT 0 + +#else + +/* + * Generic fallback + */ +#include +typedef int32_t khronos_int32_t; +typedef uint32_t khronos_uint32_t; +typedef int64_t khronos_int64_t; +typedef uint64_t khronos_uint64_t; +#define KHRONOS_SUPPORT_INT64 1 +#define KHRONOS_SUPPORT_FLOAT 1 + +#endif + + +/* + * Types that are (so far) the same on all platforms + */ +typedef signed char khronos_int8_t; +typedef unsigned char khronos_uint8_t; +typedef signed short int khronos_int16_t; +typedef unsigned short int khronos_uint16_t; + +/* + * Types that differ between LLP64 and LP64 architectures - in LLP64, + * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears + * to be the only LLP64 architecture in current use. + */ +#ifdef KHRONOS_USE_INTPTR_T +typedef intptr_t khronos_intptr_t; +typedef uintptr_t khronos_uintptr_t; +#elif defined(_WIN64) +typedef signed long long int khronos_intptr_t; +typedef unsigned long long int khronos_uintptr_t; +#else +typedef signed long int khronos_intptr_t; +typedef unsigned long int khronos_uintptr_t; +#endif + +#if defined(_WIN64) +typedef signed long long int khronos_ssize_t; +typedef unsigned long long int khronos_usize_t; +#else +typedef signed long int khronos_ssize_t; +typedef unsigned long int khronos_usize_t; +#endif + +#if KHRONOS_SUPPORT_FLOAT +/* + * Float type + */ +typedef float khronos_float_t; +#endif + +#if KHRONOS_SUPPORT_INT64 +/* Time types + * + * These types can be used to represent a time interval in nanoseconds or + * an absolute Unadjusted System Time. Unadjusted System Time is the number + * of nanoseconds since some arbitrary system event (e.g. since the last + * time the system booted). The Unadjusted System Time is an unsigned + * 64 bit value that wraps back to 0 every 584 years. Time intervals + * may be either signed or unsigned. + */ +typedef khronos_uint64_t khronos_utime_nanoseconds_t; +typedef khronos_int64_t khronos_stime_nanoseconds_t; +#endif + +/* + * Dummy value used to pad enum types to 32 bits. + */ +#ifndef KHRONOS_MAX_ENUM +#define KHRONOS_MAX_ENUM 0x7FFFFFFF +#endif + +/* + * Enumerated boolean type + * + * Values other than zero should be considered to be true. Therefore + * comparisons should not be made against KHRONOS_TRUE. + */ +typedef enum { + KHRONOS_FALSE = 0, + KHRONOS_TRUE = 1, + KHRONOS_BOOLEAN_ENUM_FORCE_SIZE = KHRONOS_MAX_ENUM +} khronos_boolean_enum_t; + +#endif /* __khrplatform_h_ */ diff --git a/include/glad/glad.h b/include/glad/glad.h new file mode 100644 index 0000000..ac320d1 --- /dev/null +++ b/include/glad/glad.h @@ -0,0 +1,3611 @@ +/* + + OpenGL loader generated by glad 0.1.36 on Wed Feb 18 17:52:33 2026. + + Language/Generator: C/C++ + Specification: gl + APIs: gl=3.3 + Profile: compatibility + Extensions: + + Loader: True + Local files: False + Omit khrplatform: False + Reproducible: False + + Commandline: + --profile="compatibility" --api="gl=3.3" --generator="c" --spec="gl" --extensions="" + Online: + https://glad.dav1d.de/#profile=compatibility&language=c&specification=gl&loader=on&api=gl%3D3.3 +*/ + + +#ifndef __glad_h_ +#define __glad_h_ + +#ifdef __gl_h_ +#error OpenGL header already included, remove this include, glad already provides it +#endif +#define __gl_h_ + +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) +#define APIENTRY __stdcall +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif + +#ifndef GLAPIENTRY +#define GLAPIENTRY APIENTRY +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +struct gladGLversionStruct { + int major; + int minor; +}; + +typedef void* (* GLADloadproc)(const char *name); + +#ifndef GLAPI +# if defined(GLAD_GLAPI_EXPORT) +# if defined(_WIN32) || defined(__CYGWIN__) +# if defined(GLAD_GLAPI_EXPORT_BUILD) +# if defined(__GNUC__) +# define GLAPI __attribute__ ((dllexport)) extern +# else +# define GLAPI __declspec(dllexport) extern +# endif +# else +# if defined(__GNUC__) +# define GLAPI __attribute__ ((dllimport)) extern +# else +# define GLAPI __declspec(dllimport) extern +# endif +# endif +# elif defined(__GNUC__) && defined(GLAD_GLAPI_EXPORT_BUILD) +# define GLAPI __attribute__ ((visibility ("default"))) extern +# else +# define GLAPI extern +# endif +# else +# define GLAPI extern +# endif +#endif + +GLAPI struct gladGLversionStruct GLVersion; + +GLAPI int gladLoadGL(void); + +GLAPI int gladLoadGLLoader(GLADloadproc); + +#include +typedef unsigned int GLenum; +typedef unsigned char GLboolean; +typedef unsigned int GLbitfield; +typedef void GLvoid; +typedef khronos_int8_t GLbyte; +typedef khronos_uint8_t GLubyte; +typedef khronos_int16_t GLshort; +typedef khronos_uint16_t GLushort; +typedef int GLint; +typedef unsigned int GLuint; +typedef khronos_int32_t GLclampx; +typedef int GLsizei; +typedef khronos_float_t GLfloat; +typedef khronos_float_t GLclampf; +typedef double GLdouble; +typedef double GLclampd; +typedef void *GLeglClientBufferEXT; +typedef void *GLeglImageOES; +typedef char GLchar; +typedef char GLcharARB; +#ifdef __APPLE__ +typedef void *GLhandleARB; +#else +typedef unsigned int GLhandleARB; +#endif +typedef khronos_uint16_t GLhalf; +typedef khronos_uint16_t GLhalfARB; +typedef khronos_int32_t GLfixed; +typedef khronos_intptr_t GLintptr; +typedef khronos_intptr_t GLintptrARB; +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_ssize_t GLsizeiptrARB; +typedef khronos_int64_t GLint64; +typedef khronos_int64_t GLint64EXT; +typedef khronos_uint64_t GLuint64; +typedef khronos_uint64_t GLuint64EXT; +typedef struct __GLsync *GLsync; +struct _cl_context; +struct _cl_event; +typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +typedef void (APIENTRY *GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar *message,void *userParam); +typedef unsigned short GLhalfNV; +typedef GLintptr GLvdpauSurfaceNV; +typedef void (APIENTRY *GLVULKANPROCNV)(void); +#define GL_DEPTH_BUFFER_BIT 0x00000100 +#define GL_STENCIL_BUFFER_BIT 0x00000400 +#define GL_COLOR_BUFFER_BIT 0x00004000 +#define GL_FALSE 0 +#define GL_TRUE 1 +#define GL_POINTS 0x0000 +#define GL_LINES 0x0001 +#define GL_LINE_LOOP 0x0002 +#define GL_LINE_STRIP 0x0003 +#define GL_TRIANGLES 0x0004 +#define GL_TRIANGLE_STRIP 0x0005 +#define GL_TRIANGLE_FAN 0x0006 +#define GL_QUADS 0x0007 +#define GL_NEVER 0x0200 +#define GL_LESS 0x0201 +#define GL_EQUAL 0x0202 +#define GL_LEQUAL 0x0203 +#define GL_GREATER 0x0204 +#define GL_NOTEQUAL 0x0205 +#define GL_GEQUAL 0x0206 +#define GL_ALWAYS 0x0207 +#define GL_ZERO 0 +#define GL_ONE 1 +#define GL_SRC_COLOR 0x0300 +#define GL_ONE_MINUS_SRC_COLOR 0x0301 +#define GL_SRC_ALPHA 0x0302 +#define GL_ONE_MINUS_SRC_ALPHA 0x0303 +#define GL_DST_ALPHA 0x0304 +#define GL_ONE_MINUS_DST_ALPHA 0x0305 +#define GL_DST_COLOR 0x0306 +#define GL_ONE_MINUS_DST_COLOR 0x0307 +#define GL_SRC_ALPHA_SATURATE 0x0308 +#define GL_NONE 0 +#define GL_FRONT_LEFT 0x0400 +#define GL_FRONT_RIGHT 0x0401 +#define GL_BACK_LEFT 0x0402 +#define GL_BACK_RIGHT 0x0403 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_LEFT 0x0406 +#define GL_RIGHT 0x0407 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_NO_ERROR 0 +#define GL_INVALID_ENUM 0x0500 +#define GL_INVALID_VALUE 0x0501 +#define GL_INVALID_OPERATION 0x0502 +#define GL_OUT_OF_MEMORY 0x0505 +#define GL_CW 0x0900 +#define GL_CCW 0x0901 +#define GL_POINT_SIZE 0x0B11 +#define GL_POINT_SIZE_RANGE 0x0B12 +#define GL_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_LINE_SMOOTH 0x0B20 +#define GL_LINE_WIDTH 0x0B21 +#define GL_LINE_WIDTH_RANGE 0x0B22 +#define GL_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_POLYGON_MODE 0x0B40 +#define GL_POLYGON_SMOOTH 0x0B41 +#define GL_CULL_FACE 0x0B44 +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_TEST 0x0B71 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_STENCIL_TEST 0x0B90 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#define GL_STENCIL_VALUE_MASK 0x0B93 +#define GL_STENCIL_FAIL 0x0B94 +#define GL_STENCIL_PASS_DEPTH_FAIL 0x0B95 +#define GL_STENCIL_PASS_DEPTH_PASS 0x0B96 +#define GL_STENCIL_REF 0x0B97 +#define GL_STENCIL_WRITEMASK 0x0B98 +#define GL_VIEWPORT 0x0BA2 +#define GL_DITHER 0x0BD0 +#define GL_BLEND_DST 0x0BE0 +#define GL_BLEND_SRC 0x0BE1 +#define GL_BLEND 0x0BE2 +#define GL_LOGIC_OP_MODE 0x0BF0 +#define GL_DRAW_BUFFER 0x0C01 +#define GL_READ_BUFFER 0x0C02 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_DOUBLEBUFFER 0x0C32 +#define GL_STEREO 0x0C33 +#define GL_LINE_SMOOTH_HINT 0x0C52 +#define GL_POLYGON_SMOOTH_HINT 0x0C53 +#define GL_UNPACK_SWAP_BYTES 0x0CF0 +#define GL_UNPACK_LSB_FIRST 0x0CF1 +#define GL_UNPACK_ROW_LENGTH 0x0CF2 +#define GL_UNPACK_SKIP_ROWS 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS 0x0CF4 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_SWAP_BYTES 0x0D00 +#define GL_PACK_LSB_FIRST 0x0D01 +#define GL_PACK_ROW_LENGTH 0x0D02 +#define GL_PACK_SKIP_ROWS 0x0D03 +#define GL_PACK_SKIP_PIXELS 0x0D04 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_SUBPIXEL_BITS 0x0D50 +#define GL_TEXTURE_1D 0x0DE0 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_TEXTURE_WIDTH 0x1000 +#define GL_TEXTURE_HEIGHT 0x1001 +#define GL_TEXTURE_BORDER_COLOR 0x1004 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 +#define GL_BYTE 0x1400 +#define GL_UNSIGNED_BYTE 0x1401 +#define GL_SHORT 0x1402 +#define GL_UNSIGNED_SHORT 0x1403 +#define GL_INT 0x1404 +#define GL_UNSIGNED_INT 0x1405 +#define GL_FLOAT 0x1406 +#define GL_STACK_OVERFLOW 0x0503 +#define GL_STACK_UNDERFLOW 0x0504 +#define GL_CLEAR 0x1500 +#define GL_AND 0x1501 +#define GL_AND_REVERSE 0x1502 +#define GL_COPY 0x1503 +#define GL_AND_INVERTED 0x1504 +#define GL_NOOP 0x1505 +#define GL_XOR 0x1506 +#define GL_OR 0x1507 +#define GL_NOR 0x1508 +#define GL_EQUIV 0x1509 +#define GL_INVERT 0x150A +#define GL_OR_REVERSE 0x150B +#define GL_COPY_INVERTED 0x150C +#define GL_OR_INVERTED 0x150D +#define GL_NAND 0x150E +#define GL_SET 0x150F +#define GL_TEXTURE 0x1702 +#define GL_COLOR 0x1800 +#define GL_DEPTH 0x1801 +#define GL_STENCIL 0x1802 +#define GL_STENCIL_INDEX 0x1901 +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_RED 0x1903 +#define GL_GREEN 0x1904 +#define GL_BLUE 0x1905 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_POINT 0x1B00 +#define GL_LINE 0x1B01 +#define GL_FILL 0x1B02 +#define GL_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +#define GL_VENDOR 0x1F00 +#define GL_RENDERER 0x1F01 +#define GL_VERSION 0x1F02 +#define GL_EXTENSIONS 0x1F03 +#define GL_NEAREST 0x2600 +#define GL_LINEAR 0x2601 +#define GL_NEAREST_MIPMAP_NEAREST 0x2700 +#define GL_LINEAR_MIPMAP_NEAREST 0x2701 +#define GL_NEAREST_MIPMAP_LINEAR 0x2702 +#define GL_LINEAR_MIPMAP_LINEAR 0x2703 +#define GL_TEXTURE_MAG_FILTER 0x2800 +#define GL_TEXTURE_MIN_FILTER 0x2801 +#define GL_TEXTURE_WRAP_S 0x2802 +#define GL_TEXTURE_WRAP_T 0x2803 +#define GL_REPEAT 0x2901 +#define GL_CURRENT_BIT 0x00000001 +#define GL_POINT_BIT 0x00000002 +#define GL_LINE_BIT 0x00000004 +#define GL_POLYGON_BIT 0x00000008 +#define GL_POLYGON_STIPPLE_BIT 0x00000010 +#define GL_PIXEL_MODE_BIT 0x00000020 +#define GL_LIGHTING_BIT 0x00000040 +#define GL_FOG_BIT 0x00000080 +#define GL_ACCUM_BUFFER_BIT 0x00000200 +#define GL_VIEWPORT_BIT 0x00000800 +#define GL_TRANSFORM_BIT 0x00001000 +#define GL_ENABLE_BIT 0x00002000 +#define GL_HINT_BIT 0x00008000 +#define GL_EVAL_BIT 0x00010000 +#define GL_LIST_BIT 0x00020000 +#define GL_TEXTURE_BIT 0x00040000 +#define GL_SCISSOR_BIT 0x00080000 +#define GL_ALL_ATTRIB_BITS 0xFFFFFFFF +#define GL_QUAD_STRIP 0x0008 +#define GL_POLYGON 0x0009 +#define GL_ACCUM 0x0100 +#define GL_LOAD 0x0101 +#define GL_RETURN 0x0102 +#define GL_MULT 0x0103 +#define GL_ADD 0x0104 +#define GL_AUX0 0x0409 +#define GL_AUX1 0x040A +#define GL_AUX2 0x040B +#define GL_AUX3 0x040C +#define GL_2D 0x0600 +#define GL_3D 0x0601 +#define GL_3D_COLOR 0x0602 +#define GL_3D_COLOR_TEXTURE 0x0603 +#define GL_4D_COLOR_TEXTURE 0x0604 +#define GL_PASS_THROUGH_TOKEN 0x0700 +#define GL_POINT_TOKEN 0x0701 +#define GL_LINE_TOKEN 0x0702 +#define GL_POLYGON_TOKEN 0x0703 +#define GL_BITMAP_TOKEN 0x0704 +#define GL_DRAW_PIXEL_TOKEN 0x0705 +#define GL_COPY_PIXEL_TOKEN 0x0706 +#define GL_LINE_RESET_TOKEN 0x0707 +#define GL_EXP 0x0800 +#define GL_EXP2 0x0801 +#define GL_COEFF 0x0A00 +#define GL_ORDER 0x0A01 +#define GL_DOMAIN 0x0A02 +#define GL_PIXEL_MAP_I_TO_I 0x0C70 +#define GL_PIXEL_MAP_S_TO_S 0x0C71 +#define GL_PIXEL_MAP_I_TO_R 0x0C72 +#define GL_PIXEL_MAP_I_TO_G 0x0C73 +#define GL_PIXEL_MAP_I_TO_B 0x0C74 +#define GL_PIXEL_MAP_I_TO_A 0x0C75 +#define GL_PIXEL_MAP_R_TO_R 0x0C76 +#define GL_PIXEL_MAP_G_TO_G 0x0C77 +#define GL_PIXEL_MAP_B_TO_B 0x0C78 +#define GL_PIXEL_MAP_A_TO_A 0x0C79 +#define GL_CURRENT_COLOR 0x0B00 +#define GL_CURRENT_INDEX 0x0B01 +#define GL_CURRENT_NORMAL 0x0B02 +#define GL_CURRENT_TEXTURE_COORDS 0x0B03 +#define GL_CURRENT_RASTER_COLOR 0x0B04 +#define GL_CURRENT_RASTER_INDEX 0x0B05 +#define GL_CURRENT_RASTER_TEXTURE_COORDS 0x0B06 +#define GL_CURRENT_RASTER_POSITION 0x0B07 +#define GL_CURRENT_RASTER_POSITION_VALID 0x0B08 +#define GL_CURRENT_RASTER_DISTANCE 0x0B09 +#define GL_POINT_SMOOTH 0x0B10 +#define GL_LINE_STIPPLE 0x0B24 +#define GL_LINE_STIPPLE_PATTERN 0x0B25 +#define GL_LINE_STIPPLE_REPEAT 0x0B26 +#define GL_LIST_MODE 0x0B30 +#define GL_MAX_LIST_NESTING 0x0B31 +#define GL_LIST_BASE 0x0B32 +#define GL_LIST_INDEX 0x0B33 +#define GL_POLYGON_STIPPLE 0x0B42 +#define GL_EDGE_FLAG 0x0B43 +#define GL_LIGHTING 0x0B50 +#define GL_LIGHT_MODEL_LOCAL_VIEWER 0x0B51 +#define GL_LIGHT_MODEL_TWO_SIDE 0x0B52 +#define GL_LIGHT_MODEL_AMBIENT 0x0B53 +#define GL_SHADE_MODEL 0x0B54 +#define GL_COLOR_MATERIAL_FACE 0x0B55 +#define GL_COLOR_MATERIAL_PARAMETER 0x0B56 +#define GL_COLOR_MATERIAL 0x0B57 +#define GL_FOG 0x0B60 +#define GL_FOG_INDEX 0x0B61 +#define GL_FOG_DENSITY 0x0B62 +#define GL_FOG_START 0x0B63 +#define GL_FOG_END 0x0B64 +#define GL_FOG_MODE 0x0B65 +#define GL_FOG_COLOR 0x0B66 +#define GL_ACCUM_CLEAR_VALUE 0x0B80 +#define GL_MATRIX_MODE 0x0BA0 +#define GL_NORMALIZE 0x0BA1 +#define GL_MODELVIEW_STACK_DEPTH 0x0BA3 +#define GL_PROJECTION_STACK_DEPTH 0x0BA4 +#define GL_TEXTURE_STACK_DEPTH 0x0BA5 +#define GL_MODELVIEW_MATRIX 0x0BA6 +#define GL_PROJECTION_MATRIX 0x0BA7 +#define GL_TEXTURE_MATRIX 0x0BA8 +#define GL_ATTRIB_STACK_DEPTH 0x0BB0 +#define GL_ALPHA_TEST 0x0BC0 +#define GL_ALPHA_TEST_FUNC 0x0BC1 +#define GL_ALPHA_TEST_REF 0x0BC2 +#define GL_LOGIC_OP 0x0BF1 +#define GL_AUX_BUFFERS 0x0C00 +#define GL_INDEX_CLEAR_VALUE 0x0C20 +#define GL_INDEX_WRITEMASK 0x0C21 +#define GL_INDEX_MODE 0x0C30 +#define GL_RGBA_MODE 0x0C31 +#define GL_RENDER_MODE 0x0C40 +#define GL_PERSPECTIVE_CORRECTION_HINT 0x0C50 +#define GL_POINT_SMOOTH_HINT 0x0C51 +#define GL_FOG_HINT 0x0C54 +#define GL_TEXTURE_GEN_S 0x0C60 +#define GL_TEXTURE_GEN_T 0x0C61 +#define GL_TEXTURE_GEN_R 0x0C62 +#define GL_TEXTURE_GEN_Q 0x0C63 +#define GL_PIXEL_MAP_I_TO_I_SIZE 0x0CB0 +#define GL_PIXEL_MAP_S_TO_S_SIZE 0x0CB1 +#define GL_PIXEL_MAP_I_TO_R_SIZE 0x0CB2 +#define GL_PIXEL_MAP_I_TO_G_SIZE 0x0CB3 +#define GL_PIXEL_MAP_I_TO_B_SIZE 0x0CB4 +#define GL_PIXEL_MAP_I_TO_A_SIZE 0x0CB5 +#define GL_PIXEL_MAP_R_TO_R_SIZE 0x0CB6 +#define GL_PIXEL_MAP_G_TO_G_SIZE 0x0CB7 +#define GL_PIXEL_MAP_B_TO_B_SIZE 0x0CB8 +#define GL_PIXEL_MAP_A_TO_A_SIZE 0x0CB9 +#define GL_MAP_COLOR 0x0D10 +#define GL_MAP_STENCIL 0x0D11 +#define GL_INDEX_SHIFT 0x0D12 +#define GL_INDEX_OFFSET 0x0D13 +#define GL_RED_SCALE 0x0D14 +#define GL_RED_BIAS 0x0D15 +#define GL_ZOOM_X 0x0D16 +#define GL_ZOOM_Y 0x0D17 +#define GL_GREEN_SCALE 0x0D18 +#define GL_GREEN_BIAS 0x0D19 +#define GL_BLUE_SCALE 0x0D1A +#define GL_BLUE_BIAS 0x0D1B +#define GL_ALPHA_SCALE 0x0D1C +#define GL_ALPHA_BIAS 0x0D1D +#define GL_DEPTH_SCALE 0x0D1E +#define GL_DEPTH_BIAS 0x0D1F +#define GL_MAX_EVAL_ORDER 0x0D30 +#define GL_MAX_LIGHTS 0x0D31 +#define GL_MAX_CLIP_PLANES 0x0D32 +#define GL_MAX_PIXEL_MAP_TABLE 0x0D34 +#define GL_MAX_ATTRIB_STACK_DEPTH 0x0D35 +#define GL_MAX_MODELVIEW_STACK_DEPTH 0x0D36 +#define GL_MAX_NAME_STACK_DEPTH 0x0D37 +#define GL_MAX_PROJECTION_STACK_DEPTH 0x0D38 +#define GL_MAX_TEXTURE_STACK_DEPTH 0x0D39 +#define GL_INDEX_BITS 0x0D51 +#define GL_RED_BITS 0x0D52 +#define GL_GREEN_BITS 0x0D53 +#define GL_BLUE_BITS 0x0D54 +#define GL_ALPHA_BITS 0x0D55 +#define GL_DEPTH_BITS 0x0D56 +#define GL_STENCIL_BITS 0x0D57 +#define GL_ACCUM_RED_BITS 0x0D58 +#define GL_ACCUM_GREEN_BITS 0x0D59 +#define GL_ACCUM_BLUE_BITS 0x0D5A +#define GL_ACCUM_ALPHA_BITS 0x0D5B +#define GL_NAME_STACK_DEPTH 0x0D70 +#define GL_AUTO_NORMAL 0x0D80 +#define GL_MAP1_COLOR_4 0x0D90 +#define GL_MAP1_INDEX 0x0D91 +#define GL_MAP1_NORMAL 0x0D92 +#define GL_MAP1_TEXTURE_COORD_1 0x0D93 +#define GL_MAP1_TEXTURE_COORD_2 0x0D94 +#define GL_MAP1_TEXTURE_COORD_3 0x0D95 +#define GL_MAP1_TEXTURE_COORD_4 0x0D96 +#define GL_MAP1_VERTEX_3 0x0D97 +#define GL_MAP1_VERTEX_4 0x0D98 +#define GL_MAP2_COLOR_4 0x0DB0 +#define GL_MAP2_INDEX 0x0DB1 +#define GL_MAP2_NORMAL 0x0DB2 +#define GL_MAP2_TEXTURE_COORD_1 0x0DB3 +#define GL_MAP2_TEXTURE_COORD_2 0x0DB4 +#define GL_MAP2_TEXTURE_COORD_3 0x0DB5 +#define GL_MAP2_TEXTURE_COORD_4 0x0DB6 +#define GL_MAP2_VERTEX_3 0x0DB7 +#define GL_MAP2_VERTEX_4 0x0DB8 +#define GL_MAP1_GRID_DOMAIN 0x0DD0 +#define GL_MAP1_GRID_SEGMENTS 0x0DD1 +#define GL_MAP2_GRID_DOMAIN 0x0DD2 +#define GL_MAP2_GRID_SEGMENTS 0x0DD3 +#define GL_TEXTURE_COMPONENTS 0x1003 +#define GL_TEXTURE_BORDER 0x1005 +#define GL_AMBIENT 0x1200 +#define GL_DIFFUSE 0x1201 +#define GL_SPECULAR 0x1202 +#define GL_POSITION 0x1203 +#define GL_SPOT_DIRECTION 0x1204 +#define GL_SPOT_EXPONENT 0x1205 +#define GL_SPOT_CUTOFF 0x1206 +#define GL_CONSTANT_ATTENUATION 0x1207 +#define GL_LINEAR_ATTENUATION 0x1208 +#define GL_QUADRATIC_ATTENUATION 0x1209 +#define GL_COMPILE 0x1300 +#define GL_COMPILE_AND_EXECUTE 0x1301 +#define GL_2_BYTES 0x1407 +#define GL_3_BYTES 0x1408 +#define GL_4_BYTES 0x1409 +#define GL_EMISSION 0x1600 +#define GL_SHININESS 0x1601 +#define GL_AMBIENT_AND_DIFFUSE 0x1602 +#define GL_COLOR_INDEXES 0x1603 +#define GL_MODELVIEW 0x1700 +#define GL_PROJECTION 0x1701 +#define GL_COLOR_INDEX 0x1900 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_BITMAP 0x1A00 +#define GL_RENDER 0x1C00 +#define GL_FEEDBACK 0x1C01 +#define GL_SELECT 0x1C02 +#define GL_FLAT 0x1D00 +#define GL_SMOOTH 0x1D01 +#define GL_S 0x2000 +#define GL_T 0x2001 +#define GL_R 0x2002 +#define GL_Q 0x2003 +#define GL_MODULATE 0x2100 +#define GL_DECAL 0x2101 +#define GL_TEXTURE_ENV_MODE 0x2200 +#define GL_TEXTURE_ENV_COLOR 0x2201 +#define GL_TEXTURE_ENV 0x2300 +#define GL_EYE_LINEAR 0x2400 +#define GL_OBJECT_LINEAR 0x2401 +#define GL_SPHERE_MAP 0x2402 +#define GL_TEXTURE_GEN_MODE 0x2500 +#define GL_OBJECT_PLANE 0x2501 +#define GL_EYE_PLANE 0x2502 +#define GL_CLAMP 0x2900 +#define GL_CLIP_PLANE0 0x3000 +#define GL_CLIP_PLANE1 0x3001 +#define GL_CLIP_PLANE2 0x3002 +#define GL_CLIP_PLANE3 0x3003 +#define GL_CLIP_PLANE4 0x3004 +#define GL_CLIP_PLANE5 0x3005 +#define GL_LIGHT0 0x4000 +#define GL_LIGHT1 0x4001 +#define GL_LIGHT2 0x4002 +#define GL_LIGHT3 0x4003 +#define GL_LIGHT4 0x4004 +#define GL_LIGHT5 0x4005 +#define GL_LIGHT6 0x4006 +#define GL_LIGHT7 0x4007 +#define GL_COLOR_LOGIC_OP 0x0BF2 +#define GL_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_POINT 0x2A01 +#define GL_POLYGON_OFFSET_LINE 0x2A02 +#define GL_POLYGON_OFFSET_FILL 0x8037 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_TEXTURE_BINDING_1D 0x8068 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_TEXTURE_INTERNAL_FORMAT 0x1003 +#define GL_TEXTURE_RED_SIZE 0x805C +#define GL_TEXTURE_GREEN_SIZE 0x805D +#define GL_TEXTURE_BLUE_SIZE 0x805E +#define GL_TEXTURE_ALPHA_SIZE 0x805F +#define GL_DOUBLE 0x140A +#define GL_PROXY_TEXTURE_1D 0x8063 +#define GL_PROXY_TEXTURE_2D 0x8064 +#define GL_R3_G3_B2 0x2A10 +#define GL_RGB4 0x804F +#define GL_RGB5 0x8050 +#define GL_RGB8 0x8051 +#define GL_RGB10 0x8052 +#define GL_RGB12 0x8053 +#define GL_RGB16 0x8054 +#define GL_RGBA2 0x8055 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGBA8 0x8058 +#define GL_RGB10_A2 0x8059 +#define GL_RGBA12 0x805A +#define GL_RGBA16 0x805B +#define GL_CLIENT_PIXEL_STORE_BIT 0x00000001 +#define GL_CLIENT_VERTEX_ARRAY_BIT 0x00000002 +#define GL_CLIENT_ALL_ATTRIB_BITS 0xFFFFFFFF +#define GL_VERTEX_ARRAY_POINTER 0x808E +#define GL_NORMAL_ARRAY_POINTER 0x808F +#define GL_COLOR_ARRAY_POINTER 0x8090 +#define GL_INDEX_ARRAY_POINTER 0x8091 +#define GL_TEXTURE_COORD_ARRAY_POINTER 0x8092 +#define GL_EDGE_FLAG_ARRAY_POINTER 0x8093 +#define GL_FEEDBACK_BUFFER_POINTER 0x0DF0 +#define GL_SELECTION_BUFFER_POINTER 0x0DF3 +#define GL_CLIENT_ATTRIB_STACK_DEPTH 0x0BB1 +#define GL_INDEX_LOGIC_OP 0x0BF1 +#define GL_MAX_CLIENT_ATTRIB_STACK_DEPTH 0x0D3B +#define GL_FEEDBACK_BUFFER_SIZE 0x0DF1 +#define GL_FEEDBACK_BUFFER_TYPE 0x0DF2 +#define GL_SELECTION_BUFFER_SIZE 0x0DF4 +#define GL_VERTEX_ARRAY 0x8074 +#define GL_NORMAL_ARRAY 0x8075 +#define GL_COLOR_ARRAY 0x8076 +#define GL_INDEX_ARRAY 0x8077 +#define GL_TEXTURE_COORD_ARRAY 0x8078 +#define GL_EDGE_FLAG_ARRAY 0x8079 +#define GL_VERTEX_ARRAY_SIZE 0x807A +#define GL_VERTEX_ARRAY_TYPE 0x807B +#define GL_VERTEX_ARRAY_STRIDE 0x807C +#define GL_NORMAL_ARRAY_TYPE 0x807E +#define GL_NORMAL_ARRAY_STRIDE 0x807F +#define GL_COLOR_ARRAY_SIZE 0x8081 +#define GL_COLOR_ARRAY_TYPE 0x8082 +#define GL_COLOR_ARRAY_STRIDE 0x8083 +#define GL_INDEX_ARRAY_TYPE 0x8085 +#define GL_INDEX_ARRAY_STRIDE 0x8086 +#define GL_TEXTURE_COORD_ARRAY_SIZE 0x8088 +#define GL_TEXTURE_COORD_ARRAY_TYPE 0x8089 +#define GL_TEXTURE_COORD_ARRAY_STRIDE 0x808A +#define GL_EDGE_FLAG_ARRAY_STRIDE 0x808C +#define GL_TEXTURE_LUMINANCE_SIZE 0x8060 +#define GL_TEXTURE_INTENSITY_SIZE 0x8061 +#define GL_TEXTURE_PRIORITY 0x8066 +#define GL_TEXTURE_RESIDENT 0x8067 +#define GL_ALPHA4 0x803B +#define GL_ALPHA8 0x803C +#define GL_ALPHA12 0x803D +#define GL_ALPHA16 0x803E +#define GL_LUMINANCE4 0x803F +#define GL_LUMINANCE8 0x8040 +#define GL_LUMINANCE12 0x8041 +#define GL_LUMINANCE16 0x8042 +#define GL_LUMINANCE4_ALPHA4 0x8043 +#define GL_LUMINANCE6_ALPHA2 0x8044 +#define GL_LUMINANCE8_ALPHA8 0x8045 +#define GL_LUMINANCE12_ALPHA4 0x8046 +#define GL_LUMINANCE12_ALPHA12 0x8047 +#define GL_LUMINANCE16_ALPHA16 0x8048 +#define GL_INTENSITY 0x8049 +#define GL_INTENSITY4 0x804A +#define GL_INTENSITY8 0x804B +#define GL_INTENSITY12 0x804C +#define GL_INTENSITY16 0x804D +#define GL_V2F 0x2A20 +#define GL_V3F 0x2A21 +#define GL_C4UB_V2F 0x2A22 +#define GL_C4UB_V3F 0x2A23 +#define GL_C3F_V3F 0x2A24 +#define GL_N3F_V3F 0x2A25 +#define GL_C4F_N3F_V3F 0x2A26 +#define GL_T2F_V3F 0x2A27 +#define GL_T4F_V4F 0x2A28 +#define GL_T2F_C4UB_V3F 0x2A29 +#define GL_T2F_C3F_V3F 0x2A2A +#define GL_T2F_N3F_V3F 0x2A2B +#define GL_T2F_C4F_N3F_V3F 0x2A2C +#define GL_T4F_C4F_N3F_V4F 0x2A2D +#define GL_UNSIGNED_BYTE_3_3_2 0x8032 +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_INT_8_8_8_8 0x8035 +#define GL_UNSIGNED_INT_10_10_10_2 0x8036 +#define GL_TEXTURE_BINDING_3D 0x806A +#define GL_PACK_SKIP_IMAGES 0x806B +#define GL_PACK_IMAGE_HEIGHT 0x806C +#define GL_UNPACK_SKIP_IMAGES 0x806D +#define GL_UNPACK_IMAGE_HEIGHT 0x806E +#define GL_TEXTURE_3D 0x806F +#define GL_PROXY_TEXTURE_3D 0x8070 +#define GL_TEXTURE_DEPTH 0x8071 +#define GL_TEXTURE_WRAP_R 0x8072 +#define GL_MAX_3D_TEXTURE_SIZE 0x8073 +#define GL_UNSIGNED_BYTE_2_3_3_REV 0x8362 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_UNSIGNED_SHORT_5_6_5_REV 0x8364 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV 0x8366 +#define GL_UNSIGNED_INT_8_8_8_8_REV 0x8367 +#define GL_UNSIGNED_INT_2_10_10_10_REV 0x8368 +#define GL_BGR 0x80E0 +#define GL_BGRA 0x80E1 +#define GL_MAX_ELEMENTS_VERTICES 0x80E8 +#define GL_MAX_ELEMENTS_INDICES 0x80E9 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_TEXTURE_MIN_LOD 0x813A +#define GL_TEXTURE_MAX_LOD 0x813B +#define GL_TEXTURE_BASE_LEVEL 0x813C +#define GL_TEXTURE_MAX_LEVEL 0x813D +#define GL_SMOOTH_POINT_SIZE_RANGE 0x0B12 +#define GL_SMOOTH_POINT_SIZE_GRANULARITY 0x0B13 +#define GL_SMOOTH_LINE_WIDTH_RANGE 0x0B22 +#define GL_SMOOTH_LINE_WIDTH_GRANULARITY 0x0B23 +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_RESCALE_NORMAL 0x803A +#define GL_LIGHT_MODEL_COLOR_CONTROL 0x81F8 +#define GL_SINGLE_COLOR 0x81F9 +#define GL_SEPARATE_SPECULAR_COLOR 0x81FA +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_TEXTURE0 0x84C0 +#define GL_TEXTURE1 0x84C1 +#define GL_TEXTURE2 0x84C2 +#define GL_TEXTURE3 0x84C3 +#define GL_TEXTURE4 0x84C4 +#define GL_TEXTURE5 0x84C5 +#define GL_TEXTURE6 0x84C6 +#define GL_TEXTURE7 0x84C7 +#define GL_TEXTURE8 0x84C8 +#define GL_TEXTURE9 0x84C9 +#define GL_TEXTURE10 0x84CA +#define GL_TEXTURE11 0x84CB +#define GL_TEXTURE12 0x84CC +#define GL_TEXTURE13 0x84CD +#define GL_TEXTURE14 0x84CE +#define GL_TEXTURE15 0x84CF +#define GL_TEXTURE16 0x84D0 +#define GL_TEXTURE17 0x84D1 +#define GL_TEXTURE18 0x84D2 +#define GL_TEXTURE19 0x84D3 +#define GL_TEXTURE20 0x84D4 +#define GL_TEXTURE21 0x84D5 +#define GL_TEXTURE22 0x84D6 +#define GL_TEXTURE23 0x84D7 +#define GL_TEXTURE24 0x84D8 +#define GL_TEXTURE25 0x84D9 +#define GL_TEXTURE26 0x84DA +#define GL_TEXTURE27 0x84DB +#define GL_TEXTURE28 0x84DC +#define GL_TEXTURE29 0x84DD +#define GL_TEXTURE30 0x84DE +#define GL_TEXTURE31 0x84DF +#define GL_ACTIVE_TEXTURE 0x84E0 +#define GL_MULTISAMPLE 0x809D +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_ALPHA_TO_ONE 0x809F +#define GL_SAMPLE_COVERAGE 0x80A0 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_TEXTURE_CUBE_MAP 0x8513 +#define GL_TEXTURE_BINDING_CUBE_MAP 0x8514 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_X 0x8515 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X 0x8516 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y 0x8517 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y 0x8518 +#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z 0x8519 +#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z 0x851A +#define GL_PROXY_TEXTURE_CUBE_MAP 0x851B +#define GL_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#define GL_COMPRESSED_RGB 0x84ED +#define GL_COMPRESSED_RGBA 0x84EE +#define GL_TEXTURE_COMPRESSION_HINT 0x84EF +#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE 0x86A0 +#define GL_TEXTURE_COMPRESSED 0x86A1 +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_CLAMP_TO_BORDER 0x812D +#define GL_CLIENT_ACTIVE_TEXTURE 0x84E1 +#define GL_MAX_TEXTURE_UNITS 0x84E2 +#define GL_TRANSPOSE_MODELVIEW_MATRIX 0x84E3 +#define GL_TRANSPOSE_PROJECTION_MATRIX 0x84E4 +#define GL_TRANSPOSE_TEXTURE_MATRIX 0x84E5 +#define GL_TRANSPOSE_COLOR_MATRIX 0x84E6 +#define GL_MULTISAMPLE_BIT 0x20000000 +#define GL_NORMAL_MAP 0x8511 +#define GL_REFLECTION_MAP 0x8512 +#define GL_COMPRESSED_ALPHA 0x84E9 +#define GL_COMPRESSED_LUMINANCE 0x84EA +#define GL_COMPRESSED_LUMINANCE_ALPHA 0x84EB +#define GL_COMPRESSED_INTENSITY 0x84EC +#define GL_COMBINE 0x8570 +#define GL_COMBINE_RGB 0x8571 +#define GL_COMBINE_ALPHA 0x8572 +#define GL_SOURCE0_RGB 0x8580 +#define GL_SOURCE1_RGB 0x8581 +#define GL_SOURCE2_RGB 0x8582 +#define GL_SOURCE0_ALPHA 0x8588 +#define GL_SOURCE1_ALPHA 0x8589 +#define GL_SOURCE2_ALPHA 0x858A +#define GL_OPERAND0_RGB 0x8590 +#define GL_OPERAND1_RGB 0x8591 +#define GL_OPERAND2_RGB 0x8592 +#define GL_OPERAND0_ALPHA 0x8598 +#define GL_OPERAND1_ALPHA 0x8599 +#define GL_OPERAND2_ALPHA 0x859A +#define GL_RGB_SCALE 0x8573 +#define GL_ADD_SIGNED 0x8574 +#define GL_INTERPOLATE 0x8575 +#define GL_SUBTRACT 0x84E7 +#define GL_CONSTANT 0x8576 +#define GL_PRIMARY_COLOR 0x8577 +#define GL_PREVIOUS 0x8578 +#define GL_DOT3_RGB 0x86AE +#define GL_DOT3_RGBA 0x86AF +#define GL_BLEND_DST_RGB 0x80C8 +#define GL_BLEND_SRC_RGB 0x80C9 +#define GL_BLEND_DST_ALPHA 0x80CA +#define GL_BLEND_SRC_ALPHA 0x80CB +#define GL_POINT_FADE_THRESHOLD_SIZE 0x8128 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_DEPTH_COMPONENT24 0x81A6 +#define GL_DEPTH_COMPONENT32 0x81A7 +#define GL_MIRRORED_REPEAT 0x8370 +#define GL_MAX_TEXTURE_LOD_BIAS 0x84FD +#define GL_TEXTURE_LOD_BIAS 0x8501 +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#define GL_TEXTURE_DEPTH_SIZE 0x884A +#define GL_TEXTURE_COMPARE_MODE 0x884C +#define GL_TEXTURE_COMPARE_FUNC 0x884D +#define GL_POINT_SIZE_MIN 0x8126 +#define GL_POINT_SIZE_MAX 0x8127 +#define GL_POINT_DISTANCE_ATTENUATION 0x8129 +#define GL_GENERATE_MIPMAP 0x8191 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#define GL_FOG_COORDINATE_SOURCE 0x8450 +#define GL_FOG_COORDINATE 0x8451 +#define GL_FRAGMENT_DEPTH 0x8452 +#define GL_CURRENT_FOG_COORDINATE 0x8453 +#define GL_FOG_COORDINATE_ARRAY_TYPE 0x8454 +#define GL_FOG_COORDINATE_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORDINATE_ARRAY_POINTER 0x8456 +#define GL_FOG_COORDINATE_ARRAY 0x8457 +#define GL_COLOR_SUM 0x8458 +#define GL_CURRENT_SECONDARY_COLOR 0x8459 +#define GL_SECONDARY_COLOR_ARRAY_SIZE 0x845A +#define GL_SECONDARY_COLOR_ARRAY_TYPE 0x845B +#define GL_SECONDARY_COLOR_ARRAY_STRIDE 0x845C +#define GL_SECONDARY_COLOR_ARRAY_POINTER 0x845D +#define GL_SECONDARY_COLOR_ARRAY 0x845E +#define GL_TEXTURE_FILTER_CONTROL 0x8500 +#define GL_DEPTH_TEXTURE_MODE 0x884B +#define GL_COMPARE_R_TO_TEXTURE 0x884E +#define GL_BLEND_COLOR 0x8005 +#define GL_BLEND_EQUATION 0x8009 +#define GL_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_FUNC_ADD 0x8006 +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#define GL_FUNC_SUBTRACT 0x800A +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_QUERY_COUNTER_BITS 0x8864 +#define GL_CURRENT_QUERY 0x8865 +#define GL_QUERY_RESULT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE 0x8867 +#define GL_ARRAY_BUFFER 0x8892 +#define GL_ELEMENT_ARRAY_BUFFER 0x8893 +#define GL_ARRAY_BUFFER_BINDING 0x8894 +#define GL_ELEMENT_ARRAY_BUFFER_BINDING 0x8895 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_READ_ONLY 0x88B8 +#define GL_WRITE_ONLY 0x88B9 +#define GL_READ_WRITE 0x88BA +#define GL_BUFFER_ACCESS 0x88BB +#define GL_BUFFER_MAPPED 0x88BC +#define GL_BUFFER_MAP_POINTER 0x88BD +#define GL_STREAM_DRAW 0x88E0 +#define GL_STREAM_READ 0x88E1 +#define GL_STREAM_COPY 0x88E2 +#define GL_STATIC_DRAW 0x88E4 +#define GL_STATIC_READ 0x88E5 +#define GL_STATIC_COPY 0x88E6 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_DYNAMIC_READ 0x88E9 +#define GL_DYNAMIC_COPY 0x88EA +#define GL_SAMPLES_PASSED 0x8914 +#define GL_SRC1_ALPHA 0x8589 +#define GL_VERTEX_ARRAY_BUFFER_BINDING 0x8896 +#define GL_NORMAL_ARRAY_BUFFER_BINDING 0x8897 +#define GL_COLOR_ARRAY_BUFFER_BINDING 0x8898 +#define GL_INDEX_ARRAY_BUFFER_BINDING 0x8899 +#define GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING 0x889A +#define GL_EDGE_FLAG_ARRAY_BUFFER_BINDING 0x889B +#define GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING 0x889C +#define GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING 0x889D +#define GL_WEIGHT_ARRAY_BUFFER_BINDING 0x889E +#define GL_FOG_COORD_SRC 0x8450 +#define GL_FOG_COORD 0x8451 +#define GL_CURRENT_FOG_COORD 0x8453 +#define GL_FOG_COORD_ARRAY_TYPE 0x8454 +#define GL_FOG_COORD_ARRAY_STRIDE 0x8455 +#define GL_FOG_COORD_ARRAY_POINTER 0x8456 +#define GL_FOG_COORD_ARRAY 0x8457 +#define GL_FOG_COORD_ARRAY_BUFFER_BINDING 0x889D +#define GL_SRC0_RGB 0x8580 +#define GL_SRC1_RGB 0x8581 +#define GL_SRC2_RGB 0x8582 +#define GL_SRC0_ALPHA 0x8588 +#define GL_SRC2_ALPHA 0x858A +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_VERTEX_ATTRIB_ARRAY_ENABLED 0x8622 +#define GL_VERTEX_ATTRIB_ARRAY_SIZE 0x8623 +#define GL_VERTEX_ATTRIB_ARRAY_STRIDE 0x8624 +#define GL_VERTEX_ATTRIB_ARRAY_TYPE 0x8625 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_VERTEX_PROGRAM_POINT_SIZE 0x8642 +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_STENCIL_BACK_FUNC 0x8800 +#define GL_STENCIL_BACK_FAIL 0x8801 +#define GL_STENCIL_BACK_PASS_DEPTH_FAIL 0x8802 +#define GL_STENCIL_BACK_PASS_DEPTH_PASS 0x8803 +#define GL_MAX_DRAW_BUFFERS 0x8824 +#define GL_DRAW_BUFFER0 0x8825 +#define GL_DRAW_BUFFER1 0x8826 +#define GL_DRAW_BUFFER2 0x8827 +#define GL_DRAW_BUFFER3 0x8828 +#define GL_DRAW_BUFFER4 0x8829 +#define GL_DRAW_BUFFER5 0x882A +#define GL_DRAW_BUFFER6 0x882B +#define GL_DRAW_BUFFER7 0x882C +#define GL_DRAW_BUFFER8 0x882D +#define GL_DRAW_BUFFER9 0x882E +#define GL_DRAW_BUFFER10 0x882F +#define GL_DRAW_BUFFER11 0x8830 +#define GL_DRAW_BUFFER12 0x8831 +#define GL_DRAW_BUFFER13 0x8832 +#define GL_DRAW_BUFFER14 0x8833 +#define GL_DRAW_BUFFER15 0x8834 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS 0x8B49 +#define GL_MAX_VERTEX_UNIFORM_COMPONENTS 0x8B4A +#define GL_MAX_VARYING_FLOATS 0x8B4B +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_SHADER_TYPE 0x8B4F +#define GL_FLOAT_VEC2 0x8B50 +#define GL_FLOAT_VEC3 0x8B51 +#define GL_FLOAT_VEC4 0x8B52 +#define GL_INT_VEC2 0x8B53 +#define GL_INT_VEC3 0x8B54 +#define GL_INT_VEC4 0x8B55 +#define GL_BOOL 0x8B56 +#define GL_BOOL_VEC2 0x8B57 +#define GL_BOOL_VEC3 0x8B58 +#define GL_BOOL_VEC4 0x8B59 +#define GL_FLOAT_MAT2 0x8B5A +#define GL_FLOAT_MAT3 0x8B5B +#define GL_FLOAT_MAT4 0x8B5C +#define GL_SAMPLER_1D 0x8B5D +#define GL_SAMPLER_2D 0x8B5E +#define GL_SAMPLER_3D 0x8B5F +#define GL_SAMPLER_CUBE 0x8B60 +#define GL_SAMPLER_1D_SHADOW 0x8B61 +#define GL_SAMPLER_2D_SHADOW 0x8B62 +#define GL_DELETE_STATUS 0x8B80 +#define GL_COMPILE_STATUS 0x8B81 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT 0x8B8B +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#define GL_POINT_SPRITE_COORD_ORIGIN 0x8CA0 +#define GL_LOWER_LEFT 0x8CA1 +#define GL_UPPER_LEFT 0x8CA2 +#define GL_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VERTEX_PROGRAM_TWO_SIDE 0x8643 +#define GL_POINT_SPRITE 0x8861 +#define GL_COORD_REPLACE 0x8862 +#define GL_MAX_TEXTURE_COORDS 0x8871 +#define GL_PIXEL_PACK_BUFFER 0x88EB +#define GL_PIXEL_UNPACK_BUFFER 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING 0x88EF +#define GL_FLOAT_MAT2x3 0x8B65 +#define GL_FLOAT_MAT2x4 0x8B66 +#define GL_FLOAT_MAT3x2 0x8B67 +#define GL_FLOAT_MAT3x4 0x8B68 +#define GL_FLOAT_MAT4x2 0x8B69 +#define GL_FLOAT_MAT4x3 0x8B6A +#define GL_SRGB 0x8C40 +#define GL_SRGB8 0x8C41 +#define GL_SRGB_ALPHA 0x8C42 +#define GL_SRGB8_ALPHA8 0x8C43 +#define GL_COMPRESSED_SRGB 0x8C48 +#define GL_COMPRESSED_SRGB_ALPHA 0x8C49 +#define GL_CURRENT_RASTER_SECONDARY_COLOR 0x845F +#define GL_SLUMINANCE_ALPHA 0x8C44 +#define GL_SLUMINANCE8_ALPHA8 0x8C45 +#define GL_SLUMINANCE 0x8C46 +#define GL_SLUMINANCE8 0x8C47 +#define GL_COMPRESSED_SLUMINANCE 0x8C4A +#define GL_COMPRESSED_SLUMINANCE_ALPHA 0x8C4B +#define GL_COMPARE_REF_TO_TEXTURE 0x884E +#define GL_CLIP_DISTANCE0 0x3000 +#define GL_CLIP_DISTANCE1 0x3001 +#define GL_CLIP_DISTANCE2 0x3002 +#define GL_CLIP_DISTANCE3 0x3003 +#define GL_CLIP_DISTANCE4 0x3004 +#define GL_CLIP_DISTANCE5 0x3005 +#define GL_CLIP_DISTANCE6 0x3006 +#define GL_CLIP_DISTANCE7 0x3007 +#define GL_MAX_CLIP_DISTANCES 0x0D32 +#define GL_MAJOR_VERSION 0x821B +#define GL_MINOR_VERSION 0x821C +#define GL_NUM_EXTENSIONS 0x821D +#define GL_CONTEXT_FLAGS 0x821E +#define GL_COMPRESSED_RED 0x8225 +#define GL_COMPRESSED_RG 0x8226 +#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT 0x00000001 +#define GL_RGBA32F 0x8814 +#define GL_RGB32F 0x8815 +#define GL_RGBA16F 0x881A +#define GL_RGB16F 0x881B +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER 0x88FD +#define GL_MAX_ARRAY_TEXTURE_LAYERS 0x88FF +#define GL_MIN_PROGRAM_TEXEL_OFFSET 0x8904 +#define GL_MAX_PROGRAM_TEXEL_OFFSET 0x8905 +#define GL_CLAMP_READ_COLOR 0x891C +#define GL_FIXED_ONLY 0x891D +#define GL_MAX_VARYING_COMPONENTS 0x8B4B +#define GL_TEXTURE_1D_ARRAY 0x8C18 +#define GL_PROXY_TEXTURE_1D_ARRAY 0x8C19 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_PROXY_TEXTURE_2D_ARRAY 0x8C1B +#define GL_TEXTURE_BINDING_1D_ARRAY 0x8C1C +#define GL_TEXTURE_BINDING_2D_ARRAY 0x8C1D +#define GL_R11F_G11F_B10F 0x8C3A +#define GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B +#define GL_RGB9_E5 0x8C3D +#define GL_UNSIGNED_INT_5_9_9_9_REV 0x8C3E +#define GL_TEXTURE_SHARED_SIZE 0x8C3F +#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH 0x8C76 +#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE 0x8C7F +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS 0x8C80 +#define GL_TRANSFORM_FEEDBACK_VARYINGS 0x8C83 +#define GL_TRANSFORM_FEEDBACK_BUFFER_START 0x8C84 +#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE 0x8C85 +#define GL_PRIMITIVES_GENERATED 0x8C87 +#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN 0x8C88 +#define GL_RASTERIZER_DISCARD 0x8C89 +#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS 0x8C8A +#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS 0x8C8B +#define GL_INTERLEAVED_ATTRIBS 0x8C8C +#define GL_SEPARATE_ATTRIBS 0x8C8D +#define GL_TRANSFORM_FEEDBACK_BUFFER 0x8C8E +#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING 0x8C8F +#define GL_RGBA32UI 0x8D70 +#define GL_RGB32UI 0x8D71 +#define GL_RGBA16UI 0x8D76 +#define GL_RGB16UI 0x8D77 +#define GL_RGBA8UI 0x8D7C +#define GL_RGB8UI 0x8D7D +#define GL_RGBA32I 0x8D82 +#define GL_RGB32I 0x8D83 +#define GL_RGBA16I 0x8D88 +#define GL_RGB16I 0x8D89 +#define GL_RGBA8I 0x8D8E +#define GL_RGB8I 0x8D8F +#define GL_RED_INTEGER 0x8D94 +#define GL_GREEN_INTEGER 0x8D95 +#define GL_BLUE_INTEGER 0x8D96 +#define GL_RGB_INTEGER 0x8D98 +#define GL_RGBA_INTEGER 0x8D99 +#define GL_BGR_INTEGER 0x8D9A +#define GL_BGRA_INTEGER 0x8D9B +#define GL_SAMPLER_1D_ARRAY 0x8DC0 +#define GL_SAMPLER_2D_ARRAY 0x8DC1 +#define GL_SAMPLER_1D_ARRAY_SHADOW 0x8DC3 +#define GL_SAMPLER_2D_ARRAY_SHADOW 0x8DC4 +#define GL_SAMPLER_CUBE_SHADOW 0x8DC5 +#define GL_UNSIGNED_INT_VEC2 0x8DC6 +#define GL_UNSIGNED_INT_VEC3 0x8DC7 +#define GL_UNSIGNED_INT_VEC4 0x8DC8 +#define GL_INT_SAMPLER_1D 0x8DC9 +#define GL_INT_SAMPLER_2D 0x8DCA +#define GL_INT_SAMPLER_3D 0x8DCB +#define GL_INT_SAMPLER_CUBE 0x8DCC +#define GL_INT_SAMPLER_1D_ARRAY 0x8DCE +#define GL_INT_SAMPLER_2D_ARRAY 0x8DCF +#define GL_UNSIGNED_INT_SAMPLER_1D 0x8DD1 +#define GL_UNSIGNED_INT_SAMPLER_2D 0x8DD2 +#define GL_UNSIGNED_INT_SAMPLER_3D 0x8DD3 +#define GL_UNSIGNED_INT_SAMPLER_CUBE 0x8DD4 +#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY 0x8DD6 +#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY 0x8DD7 +#define GL_QUERY_WAIT 0x8E13 +#define GL_QUERY_NO_WAIT 0x8E14 +#define GL_QUERY_BY_REGION_WAIT 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT 0x8E16 +#define GL_BUFFER_ACCESS_FLAGS 0x911F +#define GL_BUFFER_MAP_LENGTH 0x9120 +#define GL_BUFFER_MAP_OFFSET 0x9121 +#define GL_DEPTH_COMPONENT32F 0x8CAC +#define GL_DEPTH32F_STENCIL8 0x8CAD +#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING 0x8210 +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE 0x8211 +#define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE 0x8212 +#define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE 0x8213 +#define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE 0x8214 +#define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE 0x8215 +#define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE 0x8216 +#define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE 0x8217 +#define GL_FRAMEBUFFER_DEFAULT 0x8218 +#define GL_FRAMEBUFFER_UNDEFINED 0x8219 +#define GL_DEPTH_STENCIL_ATTACHMENT 0x821A +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_DEPTH_STENCIL 0x84F9 +#define GL_UNSIGNED_INT_24_8 0x84FA +#define GL_DEPTH24_STENCIL8 0x88F0 +#define GL_TEXTURE_STENCIL_SIZE 0x88F1 +#define GL_TEXTURE_RED_TYPE 0x8C10 +#define GL_TEXTURE_GREEN_TYPE 0x8C11 +#define GL_TEXTURE_BLUE_TYPE 0x8C12 +#define GL_TEXTURE_ALPHA_TYPE 0x8C13 +#define GL_TEXTURE_DEPTH_TYPE 0x8C16 +#define GL_UNSIGNED_NORMALIZED 0x8C17 +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_DRAW_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_READ_FRAMEBUFFER 0x8CA8 +#define GL_DRAW_FRAMEBUFFER 0x8CA9 +#define GL_READ_FRAMEBUFFER_BINDING 0x8CAA +#define GL_RENDERBUFFER_SAMPLES 0x8CAB +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE 0x8CD0 +#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME 0x8CD1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL 0x8CD2 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE 0x8CD3 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER 0x8CD4 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER 0x8CDB +#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER 0x8CDC +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_MAX_COLOR_ATTACHMENTS 0x8CDF +#define GL_COLOR_ATTACHMENT0 0x8CE0 +#define GL_COLOR_ATTACHMENT1 0x8CE1 +#define GL_COLOR_ATTACHMENT2 0x8CE2 +#define GL_COLOR_ATTACHMENT3 0x8CE3 +#define GL_COLOR_ATTACHMENT4 0x8CE4 +#define GL_COLOR_ATTACHMENT5 0x8CE5 +#define GL_COLOR_ATTACHMENT6 0x8CE6 +#define GL_COLOR_ATTACHMENT7 0x8CE7 +#define GL_COLOR_ATTACHMENT8 0x8CE8 +#define GL_COLOR_ATTACHMENT9 0x8CE9 +#define GL_COLOR_ATTACHMENT10 0x8CEA +#define GL_COLOR_ATTACHMENT11 0x8CEB +#define GL_COLOR_ATTACHMENT12 0x8CEC +#define GL_COLOR_ATTACHMENT13 0x8CED +#define GL_COLOR_ATTACHMENT14 0x8CEE +#define GL_COLOR_ATTACHMENT15 0x8CEF +#define GL_COLOR_ATTACHMENT16 0x8CF0 +#define GL_COLOR_ATTACHMENT17 0x8CF1 +#define GL_COLOR_ATTACHMENT18 0x8CF2 +#define GL_COLOR_ATTACHMENT19 0x8CF3 +#define GL_COLOR_ATTACHMENT20 0x8CF4 +#define GL_COLOR_ATTACHMENT21 0x8CF5 +#define GL_COLOR_ATTACHMENT22 0x8CF6 +#define GL_COLOR_ATTACHMENT23 0x8CF7 +#define GL_COLOR_ATTACHMENT24 0x8CF8 +#define GL_COLOR_ATTACHMENT25 0x8CF9 +#define GL_COLOR_ATTACHMENT26 0x8CFA +#define GL_COLOR_ATTACHMENT27 0x8CFB +#define GL_COLOR_ATTACHMENT28 0x8CFC +#define GL_COLOR_ATTACHMENT29 0x8CFD +#define GL_COLOR_ATTACHMENT30 0x8CFE +#define GL_COLOR_ATTACHMENT31 0x8CFF +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#define GL_STENCIL_INDEX1 0x8D46 +#define GL_STENCIL_INDEX4 0x8D47 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_STENCIL_INDEX16 0x8D49 +#define GL_RENDERBUFFER_RED_SIZE 0x8D50 +#define GL_RENDERBUFFER_GREEN_SIZE 0x8D51 +#define GL_RENDERBUFFER_BLUE_SIZE 0x8D52 +#define GL_RENDERBUFFER_ALPHA_SIZE 0x8D53 +#define GL_RENDERBUFFER_DEPTH_SIZE 0x8D54 +#define GL_RENDERBUFFER_STENCIL_SIZE 0x8D55 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE 0x8D56 +#define GL_MAX_SAMPLES 0x8D57 +#define GL_INDEX 0x8222 +#define GL_TEXTURE_LUMINANCE_TYPE 0x8C14 +#define GL_TEXTURE_INTENSITY_TYPE 0x8C15 +#define GL_FRAMEBUFFER_SRGB 0x8DB9 +#define GL_HALF_FLOAT 0x140B +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT 0x0020 +#define GL_COMPRESSED_RED_RGTC1 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC +#define GL_COMPRESSED_RG_RGTC2 0x8DBD +#define GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE +#define GL_RG 0x8227 +#define GL_RG_INTEGER 0x8228 +#define GL_R8 0x8229 +#define GL_R16 0x822A +#define GL_RG8 0x822B +#define GL_RG16 0x822C +#define GL_R16F 0x822D +#define GL_R32F 0x822E +#define GL_RG16F 0x822F +#define GL_RG32F 0x8230 +#define GL_R8I 0x8231 +#define GL_R8UI 0x8232 +#define GL_R16I 0x8233 +#define GL_R16UI 0x8234 +#define GL_R32I 0x8235 +#define GL_R32UI 0x8236 +#define GL_RG8I 0x8237 +#define GL_RG8UI 0x8238 +#define GL_RG16I 0x8239 +#define GL_RG16UI 0x823A +#define GL_RG32I 0x823B +#define GL_RG32UI 0x823C +#define GL_VERTEX_ARRAY_BINDING 0x85B5 +#define GL_CLAMP_VERTEX_COLOR 0x891A +#define GL_CLAMP_FRAGMENT_COLOR 0x891B +#define GL_ALPHA_INTEGER 0x8D97 +#define GL_SAMPLER_2D_RECT 0x8B63 +#define GL_SAMPLER_2D_RECT_SHADOW 0x8B64 +#define GL_SAMPLER_BUFFER 0x8DC2 +#define GL_INT_SAMPLER_2D_RECT 0x8DCD +#define GL_INT_SAMPLER_BUFFER 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_2D_RECT 0x8DD5 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER 0x8DD8 +#define GL_TEXTURE_BUFFER 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING 0x8C2D +#define GL_TEXTURE_RECTANGLE 0x84F5 +#define GL_TEXTURE_BINDING_RECTANGLE 0x84F6 +#define GL_PROXY_TEXTURE_RECTANGLE 0x84F7 +#define GL_MAX_RECTANGLE_TEXTURE_SIZE 0x84F8 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGB8_SNORM 0x8F96 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM 0x8F98 +#define GL_RG16_SNORM 0x8F99 +#define GL_RGB16_SNORM 0x8F9A +#define GL_RGBA16_SNORM 0x8F9B +#define GL_SIGNED_NORMALIZED 0x8F9C +#define GL_PRIMITIVE_RESTART 0x8F9D +#define GL_PRIMITIVE_RESTART_INDEX 0x8F9E +#define GL_COPY_READ_BUFFER 0x8F36 +#define GL_COPY_WRITE_BUFFER 0x8F37 +#define GL_UNIFORM_BUFFER 0x8A11 +#define GL_UNIFORM_BUFFER_BINDING 0x8A28 +#define GL_UNIFORM_BUFFER_START 0x8A29 +#define GL_UNIFORM_BUFFER_SIZE 0x8A2A +#define GL_MAX_VERTEX_UNIFORM_BLOCKS 0x8A2B +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C +#define GL_MAX_FRAGMENT_UNIFORM_BLOCKS 0x8A2D +#define GL_MAX_COMBINED_UNIFORM_BLOCKS 0x8A2E +#define GL_MAX_UNIFORM_BUFFER_BINDINGS 0x8A2F +#define GL_MAX_UNIFORM_BLOCK_SIZE 0x8A30 +#define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS 0x8A31 +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 +#define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS 0x8A33 +#define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT 0x8A34 +#define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH 0x8A35 +#define GL_ACTIVE_UNIFORM_BLOCKS 0x8A36 +#define GL_UNIFORM_TYPE 0x8A37 +#define GL_UNIFORM_SIZE 0x8A38 +#define GL_UNIFORM_NAME_LENGTH 0x8A39 +#define GL_UNIFORM_BLOCK_INDEX 0x8A3A +#define GL_UNIFORM_OFFSET 0x8A3B +#define GL_UNIFORM_ARRAY_STRIDE 0x8A3C +#define GL_UNIFORM_MATRIX_STRIDE 0x8A3D +#define GL_UNIFORM_IS_ROW_MAJOR 0x8A3E +#define GL_UNIFORM_BLOCK_BINDING 0x8A3F +#define GL_UNIFORM_BLOCK_DATA_SIZE 0x8A40 +#define GL_UNIFORM_BLOCK_NAME_LENGTH 0x8A41 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS 0x8A42 +#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES 0x8A43 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER 0x8A44 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 +#define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER 0x8A46 +#define GL_INVALID_INDEX 0xFFFFFFFF +#define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 +#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 +#define GL_LINES_ADJACENCY 0x000A +#define GL_LINE_STRIP_ADJACENCY 0x000B +#define GL_TRIANGLES_ADJACENCY 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY 0x000D +#define GL_PROGRAM_POINT_SIZE 0x8642 +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS 0x8C29 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED 0x8DA7 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS 0x8DA8 +#define GL_GEOMETRY_SHADER 0x8DD9 +#define GL_GEOMETRY_VERTICES_OUT 0x8916 +#define GL_GEOMETRY_INPUT_TYPE 0x8917 +#define GL_GEOMETRY_OUTPUT_TYPE 0x8918 +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS 0x8DDF +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS 0x8DE1 +#define GL_MAX_VERTEX_OUTPUT_COMPONENTS 0x9122 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS 0x9124 +#define GL_MAX_FRAGMENT_INPUT_COMPONENTS 0x9125 +#define GL_CONTEXT_PROFILE_MASK 0x9126 +#define GL_DEPTH_CLAMP 0x864F +#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C +#define GL_FIRST_VERTEX_CONVENTION 0x8E4D +#define GL_LAST_VERTEX_CONVENTION 0x8E4E +#define GL_PROVOKING_VERTEX 0x8E4F +#define GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F +#define GL_MAX_SERVER_WAIT_TIMEOUT 0x9111 +#define GL_OBJECT_TYPE 0x9112 +#define GL_SYNC_CONDITION 0x9113 +#define GL_SYNC_STATUS 0x9114 +#define GL_SYNC_FLAGS 0x9115 +#define GL_SYNC_FENCE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE 0x9117 +#define GL_UNSIGNALED 0x9118 +#define GL_SIGNALED 0x9119 +#define GL_ALREADY_SIGNALED 0x911A +#define GL_TIMEOUT_EXPIRED 0x911B +#define GL_CONDITION_SATISFIED 0x911C +#define GL_WAIT_FAILED 0x911D +#define GL_TIMEOUT_IGNORED 0xFFFFFFFFFFFFFFFF +#define GL_SYNC_FLUSH_COMMANDS_BIT 0x00000001 +#define GL_SAMPLE_POSITION 0x8E50 +#define GL_SAMPLE_MASK 0x8E51 +#define GL_SAMPLE_MASK_VALUE 0x8E52 +#define GL_MAX_SAMPLE_MASK_WORDS 0x8E59 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE 0x9101 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9103 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE 0x9104 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY 0x9105 +#define GL_TEXTURE_SAMPLES 0x9106 +#define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS 0x9107 +#define GL_SAMPLER_2D_MULTISAMPLE 0x9108 +#define GL_INT_SAMPLER_2D_MULTISAMPLE 0x9109 +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE 0x910A +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY 0x910D +#define GL_MAX_COLOR_TEXTURE_SAMPLES 0x910E +#define GL_MAX_DEPTH_TEXTURE_SAMPLES 0x910F +#define GL_MAX_INTEGER_SAMPLES 0x9110 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE +#define GL_SRC1_COLOR 0x88F9 +#define GL_ONE_MINUS_SRC1_COLOR 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA 0x88FB +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC +#define GL_ANY_SAMPLES_PASSED 0x8C2F +#define GL_SAMPLER_BINDING 0x8919 +#define GL_RGB10_A2UI 0x906F +#define GL_TEXTURE_SWIZZLE_R 0x8E42 +#define GL_TEXTURE_SWIZZLE_G 0x8E43 +#define GL_TEXTURE_SWIZZLE_B 0x8E44 +#define GL_TEXTURE_SWIZZLE_A 0x8E45 +#define GL_TEXTURE_SWIZZLE_RGBA 0x8E46 +#define GL_TIME_ELAPSED 0x88BF +#define GL_TIMESTAMP 0x8E28 +#define GL_INT_2_10_10_10_REV 0x8D9F +#ifndef GL_VERSION_1_0 +#define GL_VERSION_1_0 1 +GLAPI int GLAD_GL_VERSION_1_0; +typedef void (APIENTRYP PFNGLCULLFACEPROC)(GLenum mode); +GLAPI PFNGLCULLFACEPROC glad_glCullFace; +#define glCullFace glad_glCullFace +typedef void (APIENTRYP PFNGLFRONTFACEPROC)(GLenum mode); +GLAPI PFNGLFRONTFACEPROC glad_glFrontFace; +#define glFrontFace glad_glFrontFace +typedef void (APIENTRYP PFNGLHINTPROC)(GLenum target, GLenum mode); +GLAPI PFNGLHINTPROC glad_glHint; +#define glHint glad_glHint +typedef void (APIENTRYP PFNGLLINEWIDTHPROC)(GLfloat width); +GLAPI PFNGLLINEWIDTHPROC glad_glLineWidth; +#define glLineWidth glad_glLineWidth +typedef void (APIENTRYP PFNGLPOINTSIZEPROC)(GLfloat size); +GLAPI PFNGLPOINTSIZEPROC glad_glPointSize; +#define glPointSize glad_glPointSize +typedef void (APIENTRYP PFNGLPOLYGONMODEPROC)(GLenum face, GLenum mode); +GLAPI PFNGLPOLYGONMODEPROC glad_glPolygonMode; +#define glPolygonMode glad_glPolygonMode +typedef void (APIENTRYP PFNGLSCISSORPROC)(GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLSCISSORPROC glad_glScissor; +#define glScissor glad_glScissor +typedef void (APIENTRYP PFNGLTEXPARAMETERFPROC)(GLenum target, GLenum pname, GLfloat param); +GLAPI PFNGLTEXPARAMETERFPROC glad_glTexParameterf; +#define glTexParameterf glad_glTexParameterf +typedef void (APIENTRYP PFNGLTEXPARAMETERFVPROC)(GLenum target, GLenum pname, const GLfloat *params); +GLAPI PFNGLTEXPARAMETERFVPROC glad_glTexParameterfv; +#define glTexParameterfv glad_glTexParameterfv +typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC)(GLenum target, GLenum pname, GLint param); +GLAPI PFNGLTEXPARAMETERIPROC glad_glTexParameteri; +#define glTexParameteri glad_glTexParameteri +typedef void (APIENTRYP PFNGLTEXPARAMETERIVPROC)(GLenum target, GLenum pname, const GLint *params); +GLAPI PFNGLTEXPARAMETERIVPROC glad_glTexParameteriv; +#define glTexParameteriv glad_glTexParameteriv +typedef void (APIENTRYP PFNGLTEXIMAGE1DPROC)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXIMAGE1DPROC glad_glTexImage1D; +#define glTexImage1D glad_glTexImage1D +typedef void (APIENTRYP PFNGLTEXIMAGE2DPROC)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXIMAGE2DPROC glad_glTexImage2D; +#define glTexImage2D glad_glTexImage2D +typedef void (APIENTRYP PFNGLDRAWBUFFERPROC)(GLenum buf); +GLAPI PFNGLDRAWBUFFERPROC glad_glDrawBuffer; +#define glDrawBuffer glad_glDrawBuffer +typedef void (APIENTRYP PFNGLCLEARPROC)(GLbitfield mask); +GLAPI PFNGLCLEARPROC glad_glClear; +#define glClear glad_glClear +typedef void (APIENTRYP PFNGLCLEARCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI PFNGLCLEARCOLORPROC glad_glClearColor; +#define glClearColor glad_glClearColor +typedef void (APIENTRYP PFNGLCLEARSTENCILPROC)(GLint s); +GLAPI PFNGLCLEARSTENCILPROC glad_glClearStencil; +#define glClearStencil glad_glClearStencil +typedef void (APIENTRYP PFNGLCLEARDEPTHPROC)(GLdouble depth); +GLAPI PFNGLCLEARDEPTHPROC glad_glClearDepth; +#define glClearDepth glad_glClearDepth +typedef void (APIENTRYP PFNGLSTENCILMASKPROC)(GLuint mask); +GLAPI PFNGLSTENCILMASKPROC glad_glStencilMask; +#define glStencilMask glad_glStencilMask +typedef void (APIENTRYP PFNGLCOLORMASKPROC)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GLAPI PFNGLCOLORMASKPROC glad_glColorMask; +#define glColorMask glad_glColorMask +typedef void (APIENTRYP PFNGLDEPTHMASKPROC)(GLboolean flag); +GLAPI PFNGLDEPTHMASKPROC glad_glDepthMask; +#define glDepthMask glad_glDepthMask +typedef void (APIENTRYP PFNGLDISABLEPROC)(GLenum cap); +GLAPI PFNGLDISABLEPROC glad_glDisable; +#define glDisable glad_glDisable +typedef void (APIENTRYP PFNGLENABLEPROC)(GLenum cap); +GLAPI PFNGLENABLEPROC glad_glEnable; +#define glEnable glad_glEnable +typedef void (APIENTRYP PFNGLFINISHPROC)(void); +GLAPI PFNGLFINISHPROC glad_glFinish; +#define glFinish glad_glFinish +typedef void (APIENTRYP PFNGLFLUSHPROC)(void); +GLAPI PFNGLFLUSHPROC glad_glFlush; +#define glFlush glad_glFlush +typedef void (APIENTRYP PFNGLBLENDFUNCPROC)(GLenum sfactor, GLenum dfactor); +GLAPI PFNGLBLENDFUNCPROC glad_glBlendFunc; +#define glBlendFunc glad_glBlendFunc +typedef void (APIENTRYP PFNGLLOGICOPPROC)(GLenum opcode); +GLAPI PFNGLLOGICOPPROC glad_glLogicOp; +#define glLogicOp glad_glLogicOp +typedef void (APIENTRYP PFNGLSTENCILFUNCPROC)(GLenum func, GLint ref, GLuint mask); +GLAPI PFNGLSTENCILFUNCPROC glad_glStencilFunc; +#define glStencilFunc glad_glStencilFunc +typedef void (APIENTRYP PFNGLSTENCILOPPROC)(GLenum fail, GLenum zfail, GLenum zpass); +GLAPI PFNGLSTENCILOPPROC glad_glStencilOp; +#define glStencilOp glad_glStencilOp +typedef void (APIENTRYP PFNGLDEPTHFUNCPROC)(GLenum func); +GLAPI PFNGLDEPTHFUNCPROC glad_glDepthFunc; +#define glDepthFunc glad_glDepthFunc +typedef void (APIENTRYP PFNGLPIXELSTOREFPROC)(GLenum pname, GLfloat param); +GLAPI PFNGLPIXELSTOREFPROC glad_glPixelStoref; +#define glPixelStoref glad_glPixelStoref +typedef void (APIENTRYP PFNGLPIXELSTOREIPROC)(GLenum pname, GLint param); +GLAPI PFNGLPIXELSTOREIPROC glad_glPixelStorei; +#define glPixelStorei glad_glPixelStorei +typedef void (APIENTRYP PFNGLREADBUFFERPROC)(GLenum src); +GLAPI PFNGLREADBUFFERPROC glad_glReadBuffer; +#define glReadBuffer glad_glReadBuffer +typedef void (APIENTRYP PFNGLREADPIXELSPROC)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +GLAPI PFNGLREADPIXELSPROC glad_glReadPixels; +#define glReadPixels glad_glReadPixels +typedef void (APIENTRYP PFNGLGETBOOLEANVPROC)(GLenum pname, GLboolean *data); +GLAPI PFNGLGETBOOLEANVPROC glad_glGetBooleanv; +#define glGetBooleanv glad_glGetBooleanv +typedef void (APIENTRYP PFNGLGETDOUBLEVPROC)(GLenum pname, GLdouble *data); +GLAPI PFNGLGETDOUBLEVPROC glad_glGetDoublev; +#define glGetDoublev glad_glGetDoublev +typedef GLenum (APIENTRYP PFNGLGETERRORPROC)(void); +GLAPI PFNGLGETERRORPROC glad_glGetError; +#define glGetError glad_glGetError +typedef void (APIENTRYP PFNGLGETFLOATVPROC)(GLenum pname, GLfloat *data); +GLAPI PFNGLGETFLOATVPROC glad_glGetFloatv; +#define glGetFloatv glad_glGetFloatv +typedef void (APIENTRYP PFNGLGETINTEGERVPROC)(GLenum pname, GLint *data); +GLAPI PFNGLGETINTEGERVPROC glad_glGetIntegerv; +#define glGetIntegerv glad_glGetIntegerv +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC)(GLenum name); +GLAPI PFNGLGETSTRINGPROC glad_glGetString; +#define glGetString glad_glGetString +typedef void (APIENTRYP PFNGLGETTEXIMAGEPROC)(GLenum target, GLint level, GLenum format, GLenum type, void *pixels); +GLAPI PFNGLGETTEXIMAGEPROC glad_glGetTexImage; +#define glGetTexImage glad_glGetTexImage +typedef void (APIENTRYP PFNGLGETTEXPARAMETERFVPROC)(GLenum target, GLenum pname, GLfloat *params); +GLAPI PFNGLGETTEXPARAMETERFVPROC glad_glGetTexParameterfv; +#define glGetTexParameterfv glad_glGetTexParameterfv +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXPARAMETERIVPROC glad_glGetTexParameteriv; +#define glGetTexParameteriv glad_glGetTexParameteriv +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERFVPROC)(GLenum target, GLint level, GLenum pname, GLfloat *params); +GLAPI PFNGLGETTEXLEVELPARAMETERFVPROC glad_glGetTexLevelParameterfv; +#define glGetTexLevelParameterfv glad_glGetTexLevelParameterfv +typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERIVPROC)(GLenum target, GLint level, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXLEVELPARAMETERIVPROC glad_glGetTexLevelParameteriv; +#define glGetTexLevelParameteriv glad_glGetTexLevelParameteriv +typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC)(GLenum cap); +GLAPI PFNGLISENABLEDPROC glad_glIsEnabled; +#define glIsEnabled glad_glIsEnabled +typedef void (APIENTRYP PFNGLDEPTHRANGEPROC)(GLdouble n, GLdouble f); +GLAPI PFNGLDEPTHRANGEPROC glad_glDepthRange; +#define glDepthRange glad_glDepthRange +typedef void (APIENTRYP PFNGLVIEWPORTPROC)(GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLVIEWPORTPROC glad_glViewport; +#define glViewport glad_glViewport +typedef void (APIENTRYP PFNGLNEWLISTPROC)(GLuint list, GLenum mode); +GLAPI PFNGLNEWLISTPROC glad_glNewList; +#define glNewList glad_glNewList +typedef void (APIENTRYP PFNGLENDLISTPROC)(void); +GLAPI PFNGLENDLISTPROC glad_glEndList; +#define glEndList glad_glEndList +typedef void (APIENTRYP PFNGLCALLLISTPROC)(GLuint list); +GLAPI PFNGLCALLLISTPROC glad_glCallList; +#define glCallList glad_glCallList +typedef void (APIENTRYP PFNGLCALLLISTSPROC)(GLsizei n, GLenum type, const void *lists); +GLAPI PFNGLCALLLISTSPROC glad_glCallLists; +#define glCallLists glad_glCallLists +typedef void (APIENTRYP PFNGLDELETELISTSPROC)(GLuint list, GLsizei range); +GLAPI PFNGLDELETELISTSPROC glad_glDeleteLists; +#define glDeleteLists glad_glDeleteLists +typedef GLuint (APIENTRYP PFNGLGENLISTSPROC)(GLsizei range); +GLAPI PFNGLGENLISTSPROC glad_glGenLists; +#define glGenLists glad_glGenLists +typedef void (APIENTRYP PFNGLLISTBASEPROC)(GLuint base); +GLAPI PFNGLLISTBASEPROC glad_glListBase; +#define glListBase glad_glListBase +typedef void (APIENTRYP PFNGLBEGINPROC)(GLenum mode); +GLAPI PFNGLBEGINPROC glad_glBegin; +#define glBegin glad_glBegin +typedef void (APIENTRYP PFNGLBITMAPPROC)(GLsizei width, GLsizei height, GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, const GLubyte *bitmap); +GLAPI PFNGLBITMAPPROC glad_glBitmap; +#define glBitmap glad_glBitmap +typedef void (APIENTRYP PFNGLCOLOR3BPROC)(GLbyte red, GLbyte green, GLbyte blue); +GLAPI PFNGLCOLOR3BPROC glad_glColor3b; +#define glColor3b glad_glColor3b +typedef void (APIENTRYP PFNGLCOLOR3BVPROC)(const GLbyte *v); +GLAPI PFNGLCOLOR3BVPROC glad_glColor3bv; +#define glColor3bv glad_glColor3bv +typedef void (APIENTRYP PFNGLCOLOR3DPROC)(GLdouble red, GLdouble green, GLdouble blue); +GLAPI PFNGLCOLOR3DPROC glad_glColor3d; +#define glColor3d glad_glColor3d +typedef void (APIENTRYP PFNGLCOLOR3DVPROC)(const GLdouble *v); +GLAPI PFNGLCOLOR3DVPROC glad_glColor3dv; +#define glColor3dv glad_glColor3dv +typedef void (APIENTRYP PFNGLCOLOR3FPROC)(GLfloat red, GLfloat green, GLfloat blue); +GLAPI PFNGLCOLOR3FPROC glad_glColor3f; +#define glColor3f glad_glColor3f +typedef void (APIENTRYP PFNGLCOLOR3FVPROC)(const GLfloat *v); +GLAPI PFNGLCOLOR3FVPROC glad_glColor3fv; +#define glColor3fv glad_glColor3fv +typedef void (APIENTRYP PFNGLCOLOR3IPROC)(GLint red, GLint green, GLint blue); +GLAPI PFNGLCOLOR3IPROC glad_glColor3i; +#define glColor3i glad_glColor3i +typedef void (APIENTRYP PFNGLCOLOR3IVPROC)(const GLint *v); +GLAPI PFNGLCOLOR3IVPROC glad_glColor3iv; +#define glColor3iv glad_glColor3iv +typedef void (APIENTRYP PFNGLCOLOR3SPROC)(GLshort red, GLshort green, GLshort blue); +GLAPI PFNGLCOLOR3SPROC glad_glColor3s; +#define glColor3s glad_glColor3s +typedef void (APIENTRYP PFNGLCOLOR3SVPROC)(const GLshort *v); +GLAPI PFNGLCOLOR3SVPROC glad_glColor3sv; +#define glColor3sv glad_glColor3sv +typedef void (APIENTRYP PFNGLCOLOR3UBPROC)(GLubyte red, GLubyte green, GLubyte blue); +GLAPI PFNGLCOLOR3UBPROC glad_glColor3ub; +#define glColor3ub glad_glColor3ub +typedef void (APIENTRYP PFNGLCOLOR3UBVPROC)(const GLubyte *v); +GLAPI PFNGLCOLOR3UBVPROC glad_glColor3ubv; +#define glColor3ubv glad_glColor3ubv +typedef void (APIENTRYP PFNGLCOLOR3UIPROC)(GLuint red, GLuint green, GLuint blue); +GLAPI PFNGLCOLOR3UIPROC glad_glColor3ui; +#define glColor3ui glad_glColor3ui +typedef void (APIENTRYP PFNGLCOLOR3UIVPROC)(const GLuint *v); +GLAPI PFNGLCOLOR3UIVPROC glad_glColor3uiv; +#define glColor3uiv glad_glColor3uiv +typedef void (APIENTRYP PFNGLCOLOR3USPROC)(GLushort red, GLushort green, GLushort blue); +GLAPI PFNGLCOLOR3USPROC glad_glColor3us; +#define glColor3us glad_glColor3us +typedef void (APIENTRYP PFNGLCOLOR3USVPROC)(const GLushort *v); +GLAPI PFNGLCOLOR3USVPROC glad_glColor3usv; +#define glColor3usv glad_glColor3usv +typedef void (APIENTRYP PFNGLCOLOR4BPROC)(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha); +GLAPI PFNGLCOLOR4BPROC glad_glColor4b; +#define glColor4b glad_glColor4b +typedef void (APIENTRYP PFNGLCOLOR4BVPROC)(const GLbyte *v); +GLAPI PFNGLCOLOR4BVPROC glad_glColor4bv; +#define glColor4bv glad_glColor4bv +typedef void (APIENTRYP PFNGLCOLOR4DPROC)(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha); +GLAPI PFNGLCOLOR4DPROC glad_glColor4d; +#define glColor4d glad_glColor4d +typedef void (APIENTRYP PFNGLCOLOR4DVPROC)(const GLdouble *v); +GLAPI PFNGLCOLOR4DVPROC glad_glColor4dv; +#define glColor4dv glad_glColor4dv +typedef void (APIENTRYP PFNGLCOLOR4FPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI PFNGLCOLOR4FPROC glad_glColor4f; +#define glColor4f glad_glColor4f +typedef void (APIENTRYP PFNGLCOLOR4FVPROC)(const GLfloat *v); +GLAPI PFNGLCOLOR4FVPROC glad_glColor4fv; +#define glColor4fv glad_glColor4fv +typedef void (APIENTRYP PFNGLCOLOR4IPROC)(GLint red, GLint green, GLint blue, GLint alpha); +GLAPI PFNGLCOLOR4IPROC glad_glColor4i; +#define glColor4i glad_glColor4i +typedef void (APIENTRYP PFNGLCOLOR4IVPROC)(const GLint *v); +GLAPI PFNGLCOLOR4IVPROC glad_glColor4iv; +#define glColor4iv glad_glColor4iv +typedef void (APIENTRYP PFNGLCOLOR4SPROC)(GLshort red, GLshort green, GLshort blue, GLshort alpha); +GLAPI PFNGLCOLOR4SPROC glad_glColor4s; +#define glColor4s glad_glColor4s +typedef void (APIENTRYP PFNGLCOLOR4SVPROC)(const GLshort *v); +GLAPI PFNGLCOLOR4SVPROC glad_glColor4sv; +#define glColor4sv glad_glColor4sv +typedef void (APIENTRYP PFNGLCOLOR4UBPROC)(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); +GLAPI PFNGLCOLOR4UBPROC glad_glColor4ub; +#define glColor4ub glad_glColor4ub +typedef void (APIENTRYP PFNGLCOLOR4UBVPROC)(const GLubyte *v); +GLAPI PFNGLCOLOR4UBVPROC glad_glColor4ubv; +#define glColor4ubv glad_glColor4ubv +typedef void (APIENTRYP PFNGLCOLOR4UIPROC)(GLuint red, GLuint green, GLuint blue, GLuint alpha); +GLAPI PFNGLCOLOR4UIPROC glad_glColor4ui; +#define glColor4ui glad_glColor4ui +typedef void (APIENTRYP PFNGLCOLOR4UIVPROC)(const GLuint *v); +GLAPI PFNGLCOLOR4UIVPROC glad_glColor4uiv; +#define glColor4uiv glad_glColor4uiv +typedef void (APIENTRYP PFNGLCOLOR4USPROC)(GLushort red, GLushort green, GLushort blue, GLushort alpha); +GLAPI PFNGLCOLOR4USPROC glad_glColor4us; +#define glColor4us glad_glColor4us +typedef void (APIENTRYP PFNGLCOLOR4USVPROC)(const GLushort *v); +GLAPI PFNGLCOLOR4USVPROC glad_glColor4usv; +#define glColor4usv glad_glColor4usv +typedef void (APIENTRYP PFNGLEDGEFLAGPROC)(GLboolean flag); +GLAPI PFNGLEDGEFLAGPROC glad_glEdgeFlag; +#define glEdgeFlag glad_glEdgeFlag +typedef void (APIENTRYP PFNGLEDGEFLAGVPROC)(const GLboolean *flag); +GLAPI PFNGLEDGEFLAGVPROC glad_glEdgeFlagv; +#define glEdgeFlagv glad_glEdgeFlagv +typedef void (APIENTRYP PFNGLENDPROC)(void); +GLAPI PFNGLENDPROC glad_glEnd; +#define glEnd glad_glEnd +typedef void (APIENTRYP PFNGLINDEXDPROC)(GLdouble c); +GLAPI PFNGLINDEXDPROC glad_glIndexd; +#define glIndexd glad_glIndexd +typedef void (APIENTRYP PFNGLINDEXDVPROC)(const GLdouble *c); +GLAPI PFNGLINDEXDVPROC glad_glIndexdv; +#define glIndexdv glad_glIndexdv +typedef void (APIENTRYP PFNGLINDEXFPROC)(GLfloat c); +GLAPI PFNGLINDEXFPROC glad_glIndexf; +#define glIndexf glad_glIndexf +typedef void (APIENTRYP PFNGLINDEXFVPROC)(const GLfloat *c); +GLAPI PFNGLINDEXFVPROC glad_glIndexfv; +#define glIndexfv glad_glIndexfv +typedef void (APIENTRYP PFNGLINDEXIPROC)(GLint c); +GLAPI PFNGLINDEXIPROC glad_glIndexi; +#define glIndexi glad_glIndexi +typedef void (APIENTRYP PFNGLINDEXIVPROC)(const GLint *c); +GLAPI PFNGLINDEXIVPROC glad_glIndexiv; +#define glIndexiv glad_glIndexiv +typedef void (APIENTRYP PFNGLINDEXSPROC)(GLshort c); +GLAPI PFNGLINDEXSPROC glad_glIndexs; +#define glIndexs glad_glIndexs +typedef void (APIENTRYP PFNGLINDEXSVPROC)(const GLshort *c); +GLAPI PFNGLINDEXSVPROC glad_glIndexsv; +#define glIndexsv glad_glIndexsv +typedef void (APIENTRYP PFNGLNORMAL3BPROC)(GLbyte nx, GLbyte ny, GLbyte nz); +GLAPI PFNGLNORMAL3BPROC glad_glNormal3b; +#define glNormal3b glad_glNormal3b +typedef void (APIENTRYP PFNGLNORMAL3BVPROC)(const GLbyte *v); +GLAPI PFNGLNORMAL3BVPROC glad_glNormal3bv; +#define glNormal3bv glad_glNormal3bv +typedef void (APIENTRYP PFNGLNORMAL3DPROC)(GLdouble nx, GLdouble ny, GLdouble nz); +GLAPI PFNGLNORMAL3DPROC glad_glNormal3d; +#define glNormal3d glad_glNormal3d +typedef void (APIENTRYP PFNGLNORMAL3DVPROC)(const GLdouble *v); +GLAPI PFNGLNORMAL3DVPROC glad_glNormal3dv; +#define glNormal3dv glad_glNormal3dv +typedef void (APIENTRYP PFNGLNORMAL3FPROC)(GLfloat nx, GLfloat ny, GLfloat nz); +GLAPI PFNGLNORMAL3FPROC glad_glNormal3f; +#define glNormal3f glad_glNormal3f +typedef void (APIENTRYP PFNGLNORMAL3FVPROC)(const GLfloat *v); +GLAPI PFNGLNORMAL3FVPROC glad_glNormal3fv; +#define glNormal3fv glad_glNormal3fv +typedef void (APIENTRYP PFNGLNORMAL3IPROC)(GLint nx, GLint ny, GLint nz); +GLAPI PFNGLNORMAL3IPROC glad_glNormal3i; +#define glNormal3i glad_glNormal3i +typedef void (APIENTRYP PFNGLNORMAL3IVPROC)(const GLint *v); +GLAPI PFNGLNORMAL3IVPROC glad_glNormal3iv; +#define glNormal3iv glad_glNormal3iv +typedef void (APIENTRYP PFNGLNORMAL3SPROC)(GLshort nx, GLshort ny, GLshort nz); +GLAPI PFNGLNORMAL3SPROC glad_glNormal3s; +#define glNormal3s glad_glNormal3s +typedef void (APIENTRYP PFNGLNORMAL3SVPROC)(const GLshort *v); +GLAPI PFNGLNORMAL3SVPROC glad_glNormal3sv; +#define glNormal3sv glad_glNormal3sv +typedef void (APIENTRYP PFNGLRASTERPOS2DPROC)(GLdouble x, GLdouble y); +GLAPI PFNGLRASTERPOS2DPROC glad_glRasterPos2d; +#define glRasterPos2d glad_glRasterPos2d +typedef void (APIENTRYP PFNGLRASTERPOS2DVPROC)(const GLdouble *v); +GLAPI PFNGLRASTERPOS2DVPROC glad_glRasterPos2dv; +#define glRasterPos2dv glad_glRasterPos2dv +typedef void (APIENTRYP PFNGLRASTERPOS2FPROC)(GLfloat x, GLfloat y); +GLAPI PFNGLRASTERPOS2FPROC glad_glRasterPos2f; +#define glRasterPos2f glad_glRasterPos2f +typedef void (APIENTRYP PFNGLRASTERPOS2FVPROC)(const GLfloat *v); +GLAPI PFNGLRASTERPOS2FVPROC glad_glRasterPos2fv; +#define glRasterPos2fv glad_glRasterPos2fv +typedef void (APIENTRYP PFNGLRASTERPOS2IPROC)(GLint x, GLint y); +GLAPI PFNGLRASTERPOS2IPROC glad_glRasterPos2i; +#define glRasterPos2i glad_glRasterPos2i +typedef void (APIENTRYP PFNGLRASTERPOS2IVPROC)(const GLint *v); +GLAPI PFNGLRASTERPOS2IVPROC glad_glRasterPos2iv; +#define glRasterPos2iv glad_glRasterPos2iv +typedef void (APIENTRYP PFNGLRASTERPOS2SPROC)(GLshort x, GLshort y); +GLAPI PFNGLRASTERPOS2SPROC glad_glRasterPos2s; +#define glRasterPos2s glad_glRasterPos2s +typedef void (APIENTRYP PFNGLRASTERPOS2SVPROC)(const GLshort *v); +GLAPI PFNGLRASTERPOS2SVPROC glad_glRasterPos2sv; +#define glRasterPos2sv glad_glRasterPos2sv +typedef void (APIENTRYP PFNGLRASTERPOS3DPROC)(GLdouble x, GLdouble y, GLdouble z); +GLAPI PFNGLRASTERPOS3DPROC glad_glRasterPos3d; +#define glRasterPos3d glad_glRasterPos3d +typedef void (APIENTRYP PFNGLRASTERPOS3DVPROC)(const GLdouble *v); +GLAPI PFNGLRASTERPOS3DVPROC glad_glRasterPos3dv; +#define glRasterPos3dv glad_glRasterPos3dv +typedef void (APIENTRYP PFNGLRASTERPOS3FPROC)(GLfloat x, GLfloat y, GLfloat z); +GLAPI PFNGLRASTERPOS3FPROC glad_glRasterPos3f; +#define glRasterPos3f glad_glRasterPos3f +typedef void (APIENTRYP PFNGLRASTERPOS3FVPROC)(const GLfloat *v); +GLAPI PFNGLRASTERPOS3FVPROC glad_glRasterPos3fv; +#define glRasterPos3fv glad_glRasterPos3fv +typedef void (APIENTRYP PFNGLRASTERPOS3IPROC)(GLint x, GLint y, GLint z); +GLAPI PFNGLRASTERPOS3IPROC glad_glRasterPos3i; +#define glRasterPos3i glad_glRasterPos3i +typedef void (APIENTRYP PFNGLRASTERPOS3IVPROC)(const GLint *v); +GLAPI PFNGLRASTERPOS3IVPROC glad_glRasterPos3iv; +#define glRasterPos3iv glad_glRasterPos3iv +typedef void (APIENTRYP PFNGLRASTERPOS3SPROC)(GLshort x, GLshort y, GLshort z); +GLAPI PFNGLRASTERPOS3SPROC glad_glRasterPos3s; +#define glRasterPos3s glad_glRasterPos3s +typedef void (APIENTRYP PFNGLRASTERPOS3SVPROC)(const GLshort *v); +GLAPI PFNGLRASTERPOS3SVPROC glad_glRasterPos3sv; +#define glRasterPos3sv glad_glRasterPos3sv +typedef void (APIENTRYP PFNGLRASTERPOS4DPROC)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI PFNGLRASTERPOS4DPROC glad_glRasterPos4d; +#define glRasterPos4d glad_glRasterPos4d +typedef void (APIENTRYP PFNGLRASTERPOS4DVPROC)(const GLdouble *v); +GLAPI PFNGLRASTERPOS4DVPROC glad_glRasterPos4dv; +#define glRasterPos4dv glad_glRasterPos4dv +typedef void (APIENTRYP PFNGLRASTERPOS4FPROC)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI PFNGLRASTERPOS4FPROC glad_glRasterPos4f; +#define glRasterPos4f glad_glRasterPos4f +typedef void (APIENTRYP PFNGLRASTERPOS4FVPROC)(const GLfloat *v); +GLAPI PFNGLRASTERPOS4FVPROC glad_glRasterPos4fv; +#define glRasterPos4fv glad_glRasterPos4fv +typedef void (APIENTRYP PFNGLRASTERPOS4IPROC)(GLint x, GLint y, GLint z, GLint w); +GLAPI PFNGLRASTERPOS4IPROC glad_glRasterPos4i; +#define glRasterPos4i glad_glRasterPos4i +typedef void (APIENTRYP PFNGLRASTERPOS4IVPROC)(const GLint *v); +GLAPI PFNGLRASTERPOS4IVPROC glad_glRasterPos4iv; +#define glRasterPos4iv glad_glRasterPos4iv +typedef void (APIENTRYP PFNGLRASTERPOS4SPROC)(GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI PFNGLRASTERPOS4SPROC glad_glRasterPos4s; +#define glRasterPos4s glad_glRasterPos4s +typedef void (APIENTRYP PFNGLRASTERPOS4SVPROC)(const GLshort *v); +GLAPI PFNGLRASTERPOS4SVPROC glad_glRasterPos4sv; +#define glRasterPos4sv glad_glRasterPos4sv +typedef void (APIENTRYP PFNGLRECTDPROC)(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2); +GLAPI PFNGLRECTDPROC glad_glRectd; +#define glRectd glad_glRectd +typedef void (APIENTRYP PFNGLRECTDVPROC)(const GLdouble *v1, const GLdouble *v2); +GLAPI PFNGLRECTDVPROC glad_glRectdv; +#define glRectdv glad_glRectdv +typedef void (APIENTRYP PFNGLRECTFPROC)(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2); +GLAPI PFNGLRECTFPROC glad_glRectf; +#define glRectf glad_glRectf +typedef void (APIENTRYP PFNGLRECTFVPROC)(const GLfloat *v1, const GLfloat *v2); +GLAPI PFNGLRECTFVPROC glad_glRectfv; +#define glRectfv glad_glRectfv +typedef void (APIENTRYP PFNGLRECTIPROC)(GLint x1, GLint y1, GLint x2, GLint y2); +GLAPI PFNGLRECTIPROC glad_glRecti; +#define glRecti glad_glRecti +typedef void (APIENTRYP PFNGLRECTIVPROC)(const GLint *v1, const GLint *v2); +GLAPI PFNGLRECTIVPROC glad_glRectiv; +#define glRectiv glad_glRectiv +typedef void (APIENTRYP PFNGLRECTSPROC)(GLshort x1, GLshort y1, GLshort x2, GLshort y2); +GLAPI PFNGLRECTSPROC glad_glRects; +#define glRects glad_glRects +typedef void (APIENTRYP PFNGLRECTSVPROC)(const GLshort *v1, const GLshort *v2); +GLAPI PFNGLRECTSVPROC glad_glRectsv; +#define glRectsv glad_glRectsv +typedef void (APIENTRYP PFNGLTEXCOORD1DPROC)(GLdouble s); +GLAPI PFNGLTEXCOORD1DPROC glad_glTexCoord1d; +#define glTexCoord1d glad_glTexCoord1d +typedef void (APIENTRYP PFNGLTEXCOORD1DVPROC)(const GLdouble *v); +GLAPI PFNGLTEXCOORD1DVPROC glad_glTexCoord1dv; +#define glTexCoord1dv glad_glTexCoord1dv +typedef void (APIENTRYP PFNGLTEXCOORD1FPROC)(GLfloat s); +GLAPI PFNGLTEXCOORD1FPROC glad_glTexCoord1f; +#define glTexCoord1f glad_glTexCoord1f +typedef void (APIENTRYP PFNGLTEXCOORD1FVPROC)(const GLfloat *v); +GLAPI PFNGLTEXCOORD1FVPROC glad_glTexCoord1fv; +#define glTexCoord1fv glad_glTexCoord1fv +typedef void (APIENTRYP PFNGLTEXCOORD1IPROC)(GLint s); +GLAPI PFNGLTEXCOORD1IPROC glad_glTexCoord1i; +#define glTexCoord1i glad_glTexCoord1i +typedef void (APIENTRYP PFNGLTEXCOORD1IVPROC)(const GLint *v); +GLAPI PFNGLTEXCOORD1IVPROC glad_glTexCoord1iv; +#define glTexCoord1iv glad_glTexCoord1iv +typedef void (APIENTRYP PFNGLTEXCOORD1SPROC)(GLshort s); +GLAPI PFNGLTEXCOORD1SPROC glad_glTexCoord1s; +#define glTexCoord1s glad_glTexCoord1s +typedef void (APIENTRYP PFNGLTEXCOORD1SVPROC)(const GLshort *v); +GLAPI PFNGLTEXCOORD1SVPROC glad_glTexCoord1sv; +#define glTexCoord1sv glad_glTexCoord1sv +typedef void (APIENTRYP PFNGLTEXCOORD2DPROC)(GLdouble s, GLdouble t); +GLAPI PFNGLTEXCOORD2DPROC glad_glTexCoord2d; +#define glTexCoord2d glad_glTexCoord2d +typedef void (APIENTRYP PFNGLTEXCOORD2DVPROC)(const GLdouble *v); +GLAPI PFNGLTEXCOORD2DVPROC glad_glTexCoord2dv; +#define glTexCoord2dv glad_glTexCoord2dv +typedef void (APIENTRYP PFNGLTEXCOORD2FPROC)(GLfloat s, GLfloat t); +GLAPI PFNGLTEXCOORD2FPROC glad_glTexCoord2f; +#define glTexCoord2f glad_glTexCoord2f +typedef void (APIENTRYP PFNGLTEXCOORD2FVPROC)(const GLfloat *v); +GLAPI PFNGLTEXCOORD2FVPROC glad_glTexCoord2fv; +#define glTexCoord2fv glad_glTexCoord2fv +typedef void (APIENTRYP PFNGLTEXCOORD2IPROC)(GLint s, GLint t); +GLAPI PFNGLTEXCOORD2IPROC glad_glTexCoord2i; +#define glTexCoord2i glad_glTexCoord2i +typedef void (APIENTRYP PFNGLTEXCOORD2IVPROC)(const GLint *v); +GLAPI PFNGLTEXCOORD2IVPROC glad_glTexCoord2iv; +#define glTexCoord2iv glad_glTexCoord2iv +typedef void (APIENTRYP PFNGLTEXCOORD2SPROC)(GLshort s, GLshort t); +GLAPI PFNGLTEXCOORD2SPROC glad_glTexCoord2s; +#define glTexCoord2s glad_glTexCoord2s +typedef void (APIENTRYP PFNGLTEXCOORD2SVPROC)(const GLshort *v); +GLAPI PFNGLTEXCOORD2SVPROC glad_glTexCoord2sv; +#define glTexCoord2sv glad_glTexCoord2sv +typedef void (APIENTRYP PFNGLTEXCOORD3DPROC)(GLdouble s, GLdouble t, GLdouble r); +GLAPI PFNGLTEXCOORD3DPROC glad_glTexCoord3d; +#define glTexCoord3d glad_glTexCoord3d +typedef void (APIENTRYP PFNGLTEXCOORD3DVPROC)(const GLdouble *v); +GLAPI PFNGLTEXCOORD3DVPROC glad_glTexCoord3dv; +#define glTexCoord3dv glad_glTexCoord3dv +typedef void (APIENTRYP PFNGLTEXCOORD3FPROC)(GLfloat s, GLfloat t, GLfloat r); +GLAPI PFNGLTEXCOORD3FPROC glad_glTexCoord3f; +#define glTexCoord3f glad_glTexCoord3f +typedef void (APIENTRYP PFNGLTEXCOORD3FVPROC)(const GLfloat *v); +GLAPI PFNGLTEXCOORD3FVPROC glad_glTexCoord3fv; +#define glTexCoord3fv glad_glTexCoord3fv +typedef void (APIENTRYP PFNGLTEXCOORD3IPROC)(GLint s, GLint t, GLint r); +GLAPI PFNGLTEXCOORD3IPROC glad_glTexCoord3i; +#define glTexCoord3i glad_glTexCoord3i +typedef void (APIENTRYP PFNGLTEXCOORD3IVPROC)(const GLint *v); +GLAPI PFNGLTEXCOORD3IVPROC glad_glTexCoord3iv; +#define glTexCoord3iv glad_glTexCoord3iv +typedef void (APIENTRYP PFNGLTEXCOORD3SPROC)(GLshort s, GLshort t, GLshort r); +GLAPI PFNGLTEXCOORD3SPROC glad_glTexCoord3s; +#define glTexCoord3s glad_glTexCoord3s +typedef void (APIENTRYP PFNGLTEXCOORD3SVPROC)(const GLshort *v); +GLAPI PFNGLTEXCOORD3SVPROC glad_glTexCoord3sv; +#define glTexCoord3sv glad_glTexCoord3sv +typedef void (APIENTRYP PFNGLTEXCOORD4DPROC)(GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI PFNGLTEXCOORD4DPROC glad_glTexCoord4d; +#define glTexCoord4d glad_glTexCoord4d +typedef void (APIENTRYP PFNGLTEXCOORD4DVPROC)(const GLdouble *v); +GLAPI PFNGLTEXCOORD4DVPROC glad_glTexCoord4dv; +#define glTexCoord4dv glad_glTexCoord4dv +typedef void (APIENTRYP PFNGLTEXCOORD4FPROC)(GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI PFNGLTEXCOORD4FPROC glad_glTexCoord4f; +#define glTexCoord4f glad_glTexCoord4f +typedef void (APIENTRYP PFNGLTEXCOORD4FVPROC)(const GLfloat *v); +GLAPI PFNGLTEXCOORD4FVPROC glad_glTexCoord4fv; +#define glTexCoord4fv glad_glTexCoord4fv +typedef void (APIENTRYP PFNGLTEXCOORD4IPROC)(GLint s, GLint t, GLint r, GLint q); +GLAPI PFNGLTEXCOORD4IPROC glad_glTexCoord4i; +#define glTexCoord4i glad_glTexCoord4i +typedef void (APIENTRYP PFNGLTEXCOORD4IVPROC)(const GLint *v); +GLAPI PFNGLTEXCOORD4IVPROC glad_glTexCoord4iv; +#define glTexCoord4iv glad_glTexCoord4iv +typedef void (APIENTRYP PFNGLTEXCOORD4SPROC)(GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI PFNGLTEXCOORD4SPROC glad_glTexCoord4s; +#define glTexCoord4s glad_glTexCoord4s +typedef void (APIENTRYP PFNGLTEXCOORD4SVPROC)(const GLshort *v); +GLAPI PFNGLTEXCOORD4SVPROC glad_glTexCoord4sv; +#define glTexCoord4sv glad_glTexCoord4sv +typedef void (APIENTRYP PFNGLVERTEX2DPROC)(GLdouble x, GLdouble y); +GLAPI PFNGLVERTEX2DPROC glad_glVertex2d; +#define glVertex2d glad_glVertex2d +typedef void (APIENTRYP PFNGLVERTEX2DVPROC)(const GLdouble *v); +GLAPI PFNGLVERTEX2DVPROC glad_glVertex2dv; +#define glVertex2dv glad_glVertex2dv +typedef void (APIENTRYP PFNGLVERTEX2FPROC)(GLfloat x, GLfloat y); +GLAPI PFNGLVERTEX2FPROC glad_glVertex2f; +#define glVertex2f glad_glVertex2f +typedef void (APIENTRYP PFNGLVERTEX2FVPROC)(const GLfloat *v); +GLAPI PFNGLVERTEX2FVPROC glad_glVertex2fv; +#define glVertex2fv glad_glVertex2fv +typedef void (APIENTRYP PFNGLVERTEX2IPROC)(GLint x, GLint y); +GLAPI PFNGLVERTEX2IPROC glad_glVertex2i; +#define glVertex2i glad_glVertex2i +typedef void (APIENTRYP PFNGLVERTEX2IVPROC)(const GLint *v); +GLAPI PFNGLVERTEX2IVPROC glad_glVertex2iv; +#define glVertex2iv glad_glVertex2iv +typedef void (APIENTRYP PFNGLVERTEX2SPROC)(GLshort x, GLshort y); +GLAPI PFNGLVERTEX2SPROC glad_glVertex2s; +#define glVertex2s glad_glVertex2s +typedef void (APIENTRYP PFNGLVERTEX2SVPROC)(const GLshort *v); +GLAPI PFNGLVERTEX2SVPROC glad_glVertex2sv; +#define glVertex2sv glad_glVertex2sv +typedef void (APIENTRYP PFNGLVERTEX3DPROC)(GLdouble x, GLdouble y, GLdouble z); +GLAPI PFNGLVERTEX3DPROC glad_glVertex3d; +#define glVertex3d glad_glVertex3d +typedef void (APIENTRYP PFNGLVERTEX3DVPROC)(const GLdouble *v); +GLAPI PFNGLVERTEX3DVPROC glad_glVertex3dv; +#define glVertex3dv glad_glVertex3dv +typedef void (APIENTRYP PFNGLVERTEX3FPROC)(GLfloat x, GLfloat y, GLfloat z); +GLAPI PFNGLVERTEX3FPROC glad_glVertex3f; +#define glVertex3f glad_glVertex3f +typedef void (APIENTRYP PFNGLVERTEX3FVPROC)(const GLfloat *v); +GLAPI PFNGLVERTEX3FVPROC glad_glVertex3fv; +#define glVertex3fv glad_glVertex3fv +typedef void (APIENTRYP PFNGLVERTEX3IPROC)(GLint x, GLint y, GLint z); +GLAPI PFNGLVERTEX3IPROC glad_glVertex3i; +#define glVertex3i glad_glVertex3i +typedef void (APIENTRYP PFNGLVERTEX3IVPROC)(const GLint *v); +GLAPI PFNGLVERTEX3IVPROC glad_glVertex3iv; +#define glVertex3iv glad_glVertex3iv +typedef void (APIENTRYP PFNGLVERTEX3SPROC)(GLshort x, GLshort y, GLshort z); +GLAPI PFNGLVERTEX3SPROC glad_glVertex3s; +#define glVertex3s glad_glVertex3s +typedef void (APIENTRYP PFNGLVERTEX3SVPROC)(const GLshort *v); +GLAPI PFNGLVERTEX3SVPROC glad_glVertex3sv; +#define glVertex3sv glad_glVertex3sv +typedef void (APIENTRYP PFNGLVERTEX4DPROC)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI PFNGLVERTEX4DPROC glad_glVertex4d; +#define glVertex4d glad_glVertex4d +typedef void (APIENTRYP PFNGLVERTEX4DVPROC)(const GLdouble *v); +GLAPI PFNGLVERTEX4DVPROC glad_glVertex4dv; +#define glVertex4dv glad_glVertex4dv +typedef void (APIENTRYP PFNGLVERTEX4FPROC)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI PFNGLVERTEX4FPROC glad_glVertex4f; +#define glVertex4f glad_glVertex4f +typedef void (APIENTRYP PFNGLVERTEX4FVPROC)(const GLfloat *v); +GLAPI PFNGLVERTEX4FVPROC glad_glVertex4fv; +#define glVertex4fv glad_glVertex4fv +typedef void (APIENTRYP PFNGLVERTEX4IPROC)(GLint x, GLint y, GLint z, GLint w); +GLAPI PFNGLVERTEX4IPROC glad_glVertex4i; +#define glVertex4i glad_glVertex4i +typedef void (APIENTRYP PFNGLVERTEX4IVPROC)(const GLint *v); +GLAPI PFNGLVERTEX4IVPROC glad_glVertex4iv; +#define glVertex4iv glad_glVertex4iv +typedef void (APIENTRYP PFNGLVERTEX4SPROC)(GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI PFNGLVERTEX4SPROC glad_glVertex4s; +#define glVertex4s glad_glVertex4s +typedef void (APIENTRYP PFNGLVERTEX4SVPROC)(const GLshort *v); +GLAPI PFNGLVERTEX4SVPROC glad_glVertex4sv; +#define glVertex4sv glad_glVertex4sv +typedef void (APIENTRYP PFNGLCLIPPLANEPROC)(GLenum plane, const GLdouble *equation); +GLAPI PFNGLCLIPPLANEPROC glad_glClipPlane; +#define glClipPlane glad_glClipPlane +typedef void (APIENTRYP PFNGLCOLORMATERIALPROC)(GLenum face, GLenum mode); +GLAPI PFNGLCOLORMATERIALPROC glad_glColorMaterial; +#define glColorMaterial glad_glColorMaterial +typedef void (APIENTRYP PFNGLFOGFPROC)(GLenum pname, GLfloat param); +GLAPI PFNGLFOGFPROC glad_glFogf; +#define glFogf glad_glFogf +typedef void (APIENTRYP PFNGLFOGFVPROC)(GLenum pname, const GLfloat *params); +GLAPI PFNGLFOGFVPROC glad_glFogfv; +#define glFogfv glad_glFogfv +typedef void (APIENTRYP PFNGLFOGIPROC)(GLenum pname, GLint param); +GLAPI PFNGLFOGIPROC glad_glFogi; +#define glFogi glad_glFogi +typedef void (APIENTRYP PFNGLFOGIVPROC)(GLenum pname, const GLint *params); +GLAPI PFNGLFOGIVPROC glad_glFogiv; +#define glFogiv glad_glFogiv +typedef void (APIENTRYP PFNGLLIGHTFPROC)(GLenum light, GLenum pname, GLfloat param); +GLAPI PFNGLLIGHTFPROC glad_glLightf; +#define glLightf glad_glLightf +typedef void (APIENTRYP PFNGLLIGHTFVPROC)(GLenum light, GLenum pname, const GLfloat *params); +GLAPI PFNGLLIGHTFVPROC glad_glLightfv; +#define glLightfv glad_glLightfv +typedef void (APIENTRYP PFNGLLIGHTIPROC)(GLenum light, GLenum pname, GLint param); +GLAPI PFNGLLIGHTIPROC glad_glLighti; +#define glLighti glad_glLighti +typedef void (APIENTRYP PFNGLLIGHTIVPROC)(GLenum light, GLenum pname, const GLint *params); +GLAPI PFNGLLIGHTIVPROC glad_glLightiv; +#define glLightiv glad_glLightiv +typedef void (APIENTRYP PFNGLLIGHTMODELFPROC)(GLenum pname, GLfloat param); +GLAPI PFNGLLIGHTMODELFPROC glad_glLightModelf; +#define glLightModelf glad_glLightModelf +typedef void (APIENTRYP PFNGLLIGHTMODELFVPROC)(GLenum pname, const GLfloat *params); +GLAPI PFNGLLIGHTMODELFVPROC glad_glLightModelfv; +#define glLightModelfv glad_glLightModelfv +typedef void (APIENTRYP PFNGLLIGHTMODELIPROC)(GLenum pname, GLint param); +GLAPI PFNGLLIGHTMODELIPROC glad_glLightModeli; +#define glLightModeli glad_glLightModeli +typedef void (APIENTRYP PFNGLLIGHTMODELIVPROC)(GLenum pname, const GLint *params); +GLAPI PFNGLLIGHTMODELIVPROC glad_glLightModeliv; +#define glLightModeliv glad_glLightModeliv +typedef void (APIENTRYP PFNGLLINESTIPPLEPROC)(GLint factor, GLushort pattern); +GLAPI PFNGLLINESTIPPLEPROC glad_glLineStipple; +#define glLineStipple glad_glLineStipple +typedef void (APIENTRYP PFNGLMATERIALFPROC)(GLenum face, GLenum pname, GLfloat param); +GLAPI PFNGLMATERIALFPROC glad_glMaterialf; +#define glMaterialf glad_glMaterialf +typedef void (APIENTRYP PFNGLMATERIALFVPROC)(GLenum face, GLenum pname, const GLfloat *params); +GLAPI PFNGLMATERIALFVPROC glad_glMaterialfv; +#define glMaterialfv glad_glMaterialfv +typedef void (APIENTRYP PFNGLMATERIALIPROC)(GLenum face, GLenum pname, GLint param); +GLAPI PFNGLMATERIALIPROC glad_glMateriali; +#define glMateriali glad_glMateriali +typedef void (APIENTRYP PFNGLMATERIALIVPROC)(GLenum face, GLenum pname, const GLint *params); +GLAPI PFNGLMATERIALIVPROC glad_glMaterialiv; +#define glMaterialiv glad_glMaterialiv +typedef void (APIENTRYP PFNGLPOLYGONSTIPPLEPROC)(const GLubyte *mask); +GLAPI PFNGLPOLYGONSTIPPLEPROC glad_glPolygonStipple; +#define glPolygonStipple glad_glPolygonStipple +typedef void (APIENTRYP PFNGLSHADEMODELPROC)(GLenum mode); +GLAPI PFNGLSHADEMODELPROC glad_glShadeModel; +#define glShadeModel glad_glShadeModel +typedef void (APIENTRYP PFNGLTEXENVFPROC)(GLenum target, GLenum pname, GLfloat param); +GLAPI PFNGLTEXENVFPROC glad_glTexEnvf; +#define glTexEnvf glad_glTexEnvf +typedef void (APIENTRYP PFNGLTEXENVFVPROC)(GLenum target, GLenum pname, const GLfloat *params); +GLAPI PFNGLTEXENVFVPROC glad_glTexEnvfv; +#define glTexEnvfv glad_glTexEnvfv +typedef void (APIENTRYP PFNGLTEXENVIPROC)(GLenum target, GLenum pname, GLint param); +GLAPI PFNGLTEXENVIPROC glad_glTexEnvi; +#define glTexEnvi glad_glTexEnvi +typedef void (APIENTRYP PFNGLTEXENVIVPROC)(GLenum target, GLenum pname, const GLint *params); +GLAPI PFNGLTEXENVIVPROC glad_glTexEnviv; +#define glTexEnviv glad_glTexEnviv +typedef void (APIENTRYP PFNGLTEXGENDPROC)(GLenum coord, GLenum pname, GLdouble param); +GLAPI PFNGLTEXGENDPROC glad_glTexGend; +#define glTexGend glad_glTexGend +typedef void (APIENTRYP PFNGLTEXGENDVPROC)(GLenum coord, GLenum pname, const GLdouble *params); +GLAPI PFNGLTEXGENDVPROC glad_glTexGendv; +#define glTexGendv glad_glTexGendv +typedef void (APIENTRYP PFNGLTEXGENFPROC)(GLenum coord, GLenum pname, GLfloat param); +GLAPI PFNGLTEXGENFPROC glad_glTexGenf; +#define glTexGenf glad_glTexGenf +typedef void (APIENTRYP PFNGLTEXGENFVPROC)(GLenum coord, GLenum pname, const GLfloat *params); +GLAPI PFNGLTEXGENFVPROC glad_glTexGenfv; +#define glTexGenfv glad_glTexGenfv +typedef void (APIENTRYP PFNGLTEXGENIPROC)(GLenum coord, GLenum pname, GLint param); +GLAPI PFNGLTEXGENIPROC glad_glTexGeni; +#define glTexGeni glad_glTexGeni +typedef void (APIENTRYP PFNGLTEXGENIVPROC)(GLenum coord, GLenum pname, const GLint *params); +GLAPI PFNGLTEXGENIVPROC glad_glTexGeniv; +#define glTexGeniv glad_glTexGeniv +typedef void (APIENTRYP PFNGLFEEDBACKBUFFERPROC)(GLsizei size, GLenum type, GLfloat *buffer); +GLAPI PFNGLFEEDBACKBUFFERPROC glad_glFeedbackBuffer; +#define glFeedbackBuffer glad_glFeedbackBuffer +typedef void (APIENTRYP PFNGLSELECTBUFFERPROC)(GLsizei size, GLuint *buffer); +GLAPI PFNGLSELECTBUFFERPROC glad_glSelectBuffer; +#define glSelectBuffer glad_glSelectBuffer +typedef GLint (APIENTRYP PFNGLRENDERMODEPROC)(GLenum mode); +GLAPI PFNGLRENDERMODEPROC glad_glRenderMode; +#define glRenderMode glad_glRenderMode +typedef void (APIENTRYP PFNGLINITNAMESPROC)(void); +GLAPI PFNGLINITNAMESPROC glad_glInitNames; +#define glInitNames glad_glInitNames +typedef void (APIENTRYP PFNGLLOADNAMEPROC)(GLuint name); +GLAPI PFNGLLOADNAMEPROC glad_glLoadName; +#define glLoadName glad_glLoadName +typedef void (APIENTRYP PFNGLPASSTHROUGHPROC)(GLfloat token); +GLAPI PFNGLPASSTHROUGHPROC glad_glPassThrough; +#define glPassThrough glad_glPassThrough +typedef void (APIENTRYP PFNGLPOPNAMEPROC)(void); +GLAPI PFNGLPOPNAMEPROC glad_glPopName; +#define glPopName glad_glPopName +typedef void (APIENTRYP PFNGLPUSHNAMEPROC)(GLuint name); +GLAPI PFNGLPUSHNAMEPROC glad_glPushName; +#define glPushName glad_glPushName +typedef void (APIENTRYP PFNGLCLEARACCUMPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI PFNGLCLEARACCUMPROC glad_glClearAccum; +#define glClearAccum glad_glClearAccum +typedef void (APIENTRYP PFNGLCLEARINDEXPROC)(GLfloat c); +GLAPI PFNGLCLEARINDEXPROC glad_glClearIndex; +#define glClearIndex glad_glClearIndex +typedef void (APIENTRYP PFNGLINDEXMASKPROC)(GLuint mask); +GLAPI PFNGLINDEXMASKPROC glad_glIndexMask; +#define glIndexMask glad_glIndexMask +typedef void (APIENTRYP PFNGLACCUMPROC)(GLenum op, GLfloat value); +GLAPI PFNGLACCUMPROC glad_glAccum; +#define glAccum glad_glAccum +typedef void (APIENTRYP PFNGLPOPATTRIBPROC)(void); +GLAPI PFNGLPOPATTRIBPROC glad_glPopAttrib; +#define glPopAttrib glad_glPopAttrib +typedef void (APIENTRYP PFNGLPUSHATTRIBPROC)(GLbitfield mask); +GLAPI PFNGLPUSHATTRIBPROC glad_glPushAttrib; +#define glPushAttrib glad_glPushAttrib +typedef void (APIENTRYP PFNGLMAP1DPROC)(GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points); +GLAPI PFNGLMAP1DPROC glad_glMap1d; +#define glMap1d glad_glMap1d +typedef void (APIENTRYP PFNGLMAP1FPROC)(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points); +GLAPI PFNGLMAP1FPROC glad_glMap1f; +#define glMap1f glad_glMap1f +typedef void (APIENTRYP PFNGLMAP2DPROC)(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points); +GLAPI PFNGLMAP2DPROC glad_glMap2d; +#define glMap2d glad_glMap2d +typedef void (APIENTRYP PFNGLMAP2FPROC)(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points); +GLAPI PFNGLMAP2FPROC glad_glMap2f; +#define glMap2f glad_glMap2f +typedef void (APIENTRYP PFNGLMAPGRID1DPROC)(GLint un, GLdouble u1, GLdouble u2); +GLAPI PFNGLMAPGRID1DPROC glad_glMapGrid1d; +#define glMapGrid1d glad_glMapGrid1d +typedef void (APIENTRYP PFNGLMAPGRID1FPROC)(GLint un, GLfloat u1, GLfloat u2); +GLAPI PFNGLMAPGRID1FPROC glad_glMapGrid1f; +#define glMapGrid1f glad_glMapGrid1f +typedef void (APIENTRYP PFNGLMAPGRID2DPROC)(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, GLdouble v2); +GLAPI PFNGLMAPGRID2DPROC glad_glMapGrid2d; +#define glMapGrid2d glad_glMapGrid2d +typedef void (APIENTRYP PFNGLMAPGRID2FPROC)(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, GLfloat v2); +GLAPI PFNGLMAPGRID2FPROC glad_glMapGrid2f; +#define glMapGrid2f glad_glMapGrid2f +typedef void (APIENTRYP PFNGLEVALCOORD1DPROC)(GLdouble u); +GLAPI PFNGLEVALCOORD1DPROC glad_glEvalCoord1d; +#define glEvalCoord1d glad_glEvalCoord1d +typedef void (APIENTRYP PFNGLEVALCOORD1DVPROC)(const GLdouble *u); +GLAPI PFNGLEVALCOORD1DVPROC glad_glEvalCoord1dv; +#define glEvalCoord1dv glad_glEvalCoord1dv +typedef void (APIENTRYP PFNGLEVALCOORD1FPROC)(GLfloat u); +GLAPI PFNGLEVALCOORD1FPROC glad_glEvalCoord1f; +#define glEvalCoord1f glad_glEvalCoord1f +typedef void (APIENTRYP PFNGLEVALCOORD1FVPROC)(const GLfloat *u); +GLAPI PFNGLEVALCOORD1FVPROC glad_glEvalCoord1fv; +#define glEvalCoord1fv glad_glEvalCoord1fv +typedef void (APIENTRYP PFNGLEVALCOORD2DPROC)(GLdouble u, GLdouble v); +GLAPI PFNGLEVALCOORD2DPROC glad_glEvalCoord2d; +#define glEvalCoord2d glad_glEvalCoord2d +typedef void (APIENTRYP PFNGLEVALCOORD2DVPROC)(const GLdouble *u); +GLAPI PFNGLEVALCOORD2DVPROC glad_glEvalCoord2dv; +#define glEvalCoord2dv glad_glEvalCoord2dv +typedef void (APIENTRYP PFNGLEVALCOORD2FPROC)(GLfloat u, GLfloat v); +GLAPI PFNGLEVALCOORD2FPROC glad_glEvalCoord2f; +#define glEvalCoord2f glad_glEvalCoord2f +typedef void (APIENTRYP PFNGLEVALCOORD2FVPROC)(const GLfloat *u); +GLAPI PFNGLEVALCOORD2FVPROC glad_glEvalCoord2fv; +#define glEvalCoord2fv glad_glEvalCoord2fv +typedef void (APIENTRYP PFNGLEVALMESH1PROC)(GLenum mode, GLint i1, GLint i2); +GLAPI PFNGLEVALMESH1PROC glad_glEvalMesh1; +#define glEvalMesh1 glad_glEvalMesh1 +typedef void (APIENTRYP PFNGLEVALPOINT1PROC)(GLint i); +GLAPI PFNGLEVALPOINT1PROC glad_glEvalPoint1; +#define glEvalPoint1 glad_glEvalPoint1 +typedef void (APIENTRYP PFNGLEVALMESH2PROC)(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2); +GLAPI PFNGLEVALMESH2PROC glad_glEvalMesh2; +#define glEvalMesh2 glad_glEvalMesh2 +typedef void (APIENTRYP PFNGLEVALPOINT2PROC)(GLint i, GLint j); +GLAPI PFNGLEVALPOINT2PROC glad_glEvalPoint2; +#define glEvalPoint2 glad_glEvalPoint2 +typedef void (APIENTRYP PFNGLALPHAFUNCPROC)(GLenum func, GLfloat ref); +GLAPI PFNGLALPHAFUNCPROC glad_glAlphaFunc; +#define glAlphaFunc glad_glAlphaFunc +typedef void (APIENTRYP PFNGLPIXELZOOMPROC)(GLfloat xfactor, GLfloat yfactor); +GLAPI PFNGLPIXELZOOMPROC glad_glPixelZoom; +#define glPixelZoom glad_glPixelZoom +typedef void (APIENTRYP PFNGLPIXELTRANSFERFPROC)(GLenum pname, GLfloat param); +GLAPI PFNGLPIXELTRANSFERFPROC glad_glPixelTransferf; +#define glPixelTransferf glad_glPixelTransferf +typedef void (APIENTRYP PFNGLPIXELTRANSFERIPROC)(GLenum pname, GLint param); +GLAPI PFNGLPIXELTRANSFERIPROC glad_glPixelTransferi; +#define glPixelTransferi glad_glPixelTransferi +typedef void (APIENTRYP PFNGLPIXELMAPFVPROC)(GLenum map, GLsizei mapsize, const GLfloat *values); +GLAPI PFNGLPIXELMAPFVPROC glad_glPixelMapfv; +#define glPixelMapfv glad_glPixelMapfv +typedef void (APIENTRYP PFNGLPIXELMAPUIVPROC)(GLenum map, GLsizei mapsize, const GLuint *values); +GLAPI PFNGLPIXELMAPUIVPROC glad_glPixelMapuiv; +#define glPixelMapuiv glad_glPixelMapuiv +typedef void (APIENTRYP PFNGLPIXELMAPUSVPROC)(GLenum map, GLsizei mapsize, const GLushort *values); +GLAPI PFNGLPIXELMAPUSVPROC glad_glPixelMapusv; +#define glPixelMapusv glad_glPixelMapusv +typedef void (APIENTRYP PFNGLCOPYPIXELSPROC)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type); +GLAPI PFNGLCOPYPIXELSPROC glad_glCopyPixels; +#define glCopyPixels glad_glCopyPixels +typedef void (APIENTRYP PFNGLDRAWPIXELSPROC)(GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLDRAWPIXELSPROC glad_glDrawPixels; +#define glDrawPixels glad_glDrawPixels +typedef void (APIENTRYP PFNGLGETCLIPPLANEPROC)(GLenum plane, GLdouble *equation); +GLAPI PFNGLGETCLIPPLANEPROC glad_glGetClipPlane; +#define glGetClipPlane glad_glGetClipPlane +typedef void (APIENTRYP PFNGLGETLIGHTFVPROC)(GLenum light, GLenum pname, GLfloat *params); +GLAPI PFNGLGETLIGHTFVPROC glad_glGetLightfv; +#define glGetLightfv glad_glGetLightfv +typedef void (APIENTRYP PFNGLGETLIGHTIVPROC)(GLenum light, GLenum pname, GLint *params); +GLAPI PFNGLGETLIGHTIVPROC glad_glGetLightiv; +#define glGetLightiv glad_glGetLightiv +typedef void (APIENTRYP PFNGLGETMAPDVPROC)(GLenum target, GLenum query, GLdouble *v); +GLAPI PFNGLGETMAPDVPROC glad_glGetMapdv; +#define glGetMapdv glad_glGetMapdv +typedef void (APIENTRYP PFNGLGETMAPFVPROC)(GLenum target, GLenum query, GLfloat *v); +GLAPI PFNGLGETMAPFVPROC glad_glGetMapfv; +#define glGetMapfv glad_glGetMapfv +typedef void (APIENTRYP PFNGLGETMAPIVPROC)(GLenum target, GLenum query, GLint *v); +GLAPI PFNGLGETMAPIVPROC glad_glGetMapiv; +#define glGetMapiv glad_glGetMapiv +typedef void (APIENTRYP PFNGLGETMATERIALFVPROC)(GLenum face, GLenum pname, GLfloat *params); +GLAPI PFNGLGETMATERIALFVPROC glad_glGetMaterialfv; +#define glGetMaterialfv glad_glGetMaterialfv +typedef void (APIENTRYP PFNGLGETMATERIALIVPROC)(GLenum face, GLenum pname, GLint *params); +GLAPI PFNGLGETMATERIALIVPROC glad_glGetMaterialiv; +#define glGetMaterialiv glad_glGetMaterialiv +typedef void (APIENTRYP PFNGLGETPIXELMAPFVPROC)(GLenum map, GLfloat *values); +GLAPI PFNGLGETPIXELMAPFVPROC glad_glGetPixelMapfv; +#define glGetPixelMapfv glad_glGetPixelMapfv +typedef void (APIENTRYP PFNGLGETPIXELMAPUIVPROC)(GLenum map, GLuint *values); +GLAPI PFNGLGETPIXELMAPUIVPROC glad_glGetPixelMapuiv; +#define glGetPixelMapuiv glad_glGetPixelMapuiv +typedef void (APIENTRYP PFNGLGETPIXELMAPUSVPROC)(GLenum map, GLushort *values); +GLAPI PFNGLGETPIXELMAPUSVPROC glad_glGetPixelMapusv; +#define glGetPixelMapusv glad_glGetPixelMapusv +typedef void (APIENTRYP PFNGLGETPOLYGONSTIPPLEPROC)(GLubyte *mask); +GLAPI PFNGLGETPOLYGONSTIPPLEPROC glad_glGetPolygonStipple; +#define glGetPolygonStipple glad_glGetPolygonStipple +typedef void (APIENTRYP PFNGLGETTEXENVFVPROC)(GLenum target, GLenum pname, GLfloat *params); +GLAPI PFNGLGETTEXENVFVPROC glad_glGetTexEnvfv; +#define glGetTexEnvfv glad_glGetTexEnvfv +typedef void (APIENTRYP PFNGLGETTEXENVIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXENVIVPROC glad_glGetTexEnviv; +#define glGetTexEnviv glad_glGetTexEnviv +typedef void (APIENTRYP PFNGLGETTEXGENDVPROC)(GLenum coord, GLenum pname, GLdouble *params); +GLAPI PFNGLGETTEXGENDVPROC glad_glGetTexGendv; +#define glGetTexGendv glad_glGetTexGendv +typedef void (APIENTRYP PFNGLGETTEXGENFVPROC)(GLenum coord, GLenum pname, GLfloat *params); +GLAPI PFNGLGETTEXGENFVPROC glad_glGetTexGenfv; +#define glGetTexGenfv glad_glGetTexGenfv +typedef void (APIENTRYP PFNGLGETTEXGENIVPROC)(GLenum coord, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXGENIVPROC glad_glGetTexGeniv; +#define glGetTexGeniv glad_glGetTexGeniv +typedef GLboolean (APIENTRYP PFNGLISLISTPROC)(GLuint list); +GLAPI PFNGLISLISTPROC glad_glIsList; +#define glIsList glad_glIsList +typedef void (APIENTRYP PFNGLFRUSTUMPROC)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI PFNGLFRUSTUMPROC glad_glFrustum; +#define glFrustum glad_glFrustum +typedef void (APIENTRYP PFNGLLOADIDENTITYPROC)(void); +GLAPI PFNGLLOADIDENTITYPROC glad_glLoadIdentity; +#define glLoadIdentity glad_glLoadIdentity +typedef void (APIENTRYP PFNGLLOADMATRIXFPROC)(const GLfloat *m); +GLAPI PFNGLLOADMATRIXFPROC glad_glLoadMatrixf; +#define glLoadMatrixf glad_glLoadMatrixf +typedef void (APIENTRYP PFNGLLOADMATRIXDPROC)(const GLdouble *m); +GLAPI PFNGLLOADMATRIXDPROC glad_glLoadMatrixd; +#define glLoadMatrixd glad_glLoadMatrixd +typedef void (APIENTRYP PFNGLMATRIXMODEPROC)(GLenum mode); +GLAPI PFNGLMATRIXMODEPROC glad_glMatrixMode; +#define glMatrixMode glad_glMatrixMode +typedef void (APIENTRYP PFNGLMULTMATRIXFPROC)(const GLfloat *m); +GLAPI PFNGLMULTMATRIXFPROC glad_glMultMatrixf; +#define glMultMatrixf glad_glMultMatrixf +typedef void (APIENTRYP PFNGLMULTMATRIXDPROC)(const GLdouble *m); +GLAPI PFNGLMULTMATRIXDPROC glad_glMultMatrixd; +#define glMultMatrixd glad_glMultMatrixd +typedef void (APIENTRYP PFNGLORTHOPROC)(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GLAPI PFNGLORTHOPROC glad_glOrtho; +#define glOrtho glad_glOrtho +typedef void (APIENTRYP PFNGLPOPMATRIXPROC)(void); +GLAPI PFNGLPOPMATRIXPROC glad_glPopMatrix; +#define glPopMatrix glad_glPopMatrix +typedef void (APIENTRYP PFNGLPUSHMATRIXPROC)(void); +GLAPI PFNGLPUSHMATRIXPROC glad_glPushMatrix; +#define glPushMatrix glad_glPushMatrix +typedef void (APIENTRYP PFNGLROTATEDPROC)(GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GLAPI PFNGLROTATEDPROC glad_glRotated; +#define glRotated glad_glRotated +typedef void (APIENTRYP PFNGLROTATEFPROC)(GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GLAPI PFNGLROTATEFPROC glad_glRotatef; +#define glRotatef glad_glRotatef +typedef void (APIENTRYP PFNGLSCALEDPROC)(GLdouble x, GLdouble y, GLdouble z); +GLAPI PFNGLSCALEDPROC glad_glScaled; +#define glScaled glad_glScaled +typedef void (APIENTRYP PFNGLSCALEFPROC)(GLfloat x, GLfloat y, GLfloat z); +GLAPI PFNGLSCALEFPROC glad_glScalef; +#define glScalef glad_glScalef +typedef void (APIENTRYP PFNGLTRANSLATEDPROC)(GLdouble x, GLdouble y, GLdouble z); +GLAPI PFNGLTRANSLATEDPROC glad_glTranslated; +#define glTranslated glad_glTranslated +typedef void (APIENTRYP PFNGLTRANSLATEFPROC)(GLfloat x, GLfloat y, GLfloat z); +GLAPI PFNGLTRANSLATEFPROC glad_glTranslatef; +#define glTranslatef glad_glTranslatef +#endif +#ifndef GL_VERSION_1_1 +#define GL_VERSION_1_1 1 +GLAPI int GLAD_GL_VERSION_1_1; +typedef void (APIENTRYP PFNGLDRAWARRAYSPROC)(GLenum mode, GLint first, GLsizei count); +GLAPI PFNGLDRAWARRAYSPROC glad_glDrawArrays; +#define glDrawArrays glad_glDrawArrays +typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices); +GLAPI PFNGLDRAWELEMENTSPROC glad_glDrawElements; +#define glDrawElements glad_glDrawElements +typedef void (APIENTRYP PFNGLGETPOINTERVPROC)(GLenum pname, void **params); +GLAPI PFNGLGETPOINTERVPROC glad_glGetPointerv; +#define glGetPointerv glad_glGetPointerv +typedef void (APIENTRYP PFNGLPOLYGONOFFSETPROC)(GLfloat factor, GLfloat units); +GLAPI PFNGLPOLYGONOFFSETPROC glad_glPolygonOffset; +#define glPolygonOffset glad_glPolygonOffset +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DPROC)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border); +GLAPI PFNGLCOPYTEXIMAGE1DPROC glad_glCopyTexImage1D; +#define glCopyTexImage1D glad_glCopyTexImage1D +typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DPROC)(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GLAPI PFNGLCOPYTEXIMAGE2DPROC glad_glCopyTexImage2D; +#define glCopyTexImage2D glad_glCopyTexImage2D +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI PFNGLCOPYTEXSUBIMAGE1DPROC glad_glCopyTexSubImage1D; +#define glCopyTexSubImage1D glad_glCopyTexSubImage1D +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLCOPYTEXSUBIMAGE2DPROC glad_glCopyTexSubImage2D; +#define glCopyTexSubImage2D glad_glCopyTexSubImage2D +typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXSUBIMAGE1DPROC glad_glTexSubImage1D; +#define glTexSubImage1D glad_glTexSubImage1D +typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXSUBIMAGE2DPROC glad_glTexSubImage2D; +#define glTexSubImage2D glad_glTexSubImage2D +typedef void (APIENTRYP PFNGLBINDTEXTUREPROC)(GLenum target, GLuint texture); +GLAPI PFNGLBINDTEXTUREPROC glad_glBindTexture; +#define glBindTexture glad_glBindTexture +typedef void (APIENTRYP PFNGLDELETETEXTURESPROC)(GLsizei n, const GLuint *textures); +GLAPI PFNGLDELETETEXTURESPROC glad_glDeleteTextures; +#define glDeleteTextures glad_glDeleteTextures +typedef void (APIENTRYP PFNGLGENTEXTURESPROC)(GLsizei n, GLuint *textures); +GLAPI PFNGLGENTEXTURESPROC glad_glGenTextures; +#define glGenTextures glad_glGenTextures +typedef GLboolean (APIENTRYP PFNGLISTEXTUREPROC)(GLuint texture); +GLAPI PFNGLISTEXTUREPROC glad_glIsTexture; +#define glIsTexture glad_glIsTexture +typedef void (APIENTRYP PFNGLARRAYELEMENTPROC)(GLint i); +GLAPI PFNGLARRAYELEMENTPROC glad_glArrayElement; +#define glArrayElement glad_glArrayElement +typedef void (APIENTRYP PFNGLCOLORPOINTERPROC)(GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLCOLORPOINTERPROC glad_glColorPointer; +#define glColorPointer glad_glColorPointer +typedef void (APIENTRYP PFNGLDISABLECLIENTSTATEPROC)(GLenum array); +GLAPI PFNGLDISABLECLIENTSTATEPROC glad_glDisableClientState; +#define glDisableClientState glad_glDisableClientState +typedef void (APIENTRYP PFNGLEDGEFLAGPOINTERPROC)(GLsizei stride, const void *pointer); +GLAPI PFNGLEDGEFLAGPOINTERPROC glad_glEdgeFlagPointer; +#define glEdgeFlagPointer glad_glEdgeFlagPointer +typedef void (APIENTRYP PFNGLENABLECLIENTSTATEPROC)(GLenum array); +GLAPI PFNGLENABLECLIENTSTATEPROC glad_glEnableClientState; +#define glEnableClientState glad_glEnableClientState +typedef void (APIENTRYP PFNGLINDEXPOINTERPROC)(GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLINDEXPOINTERPROC glad_glIndexPointer; +#define glIndexPointer glad_glIndexPointer +typedef void (APIENTRYP PFNGLINTERLEAVEDARRAYSPROC)(GLenum format, GLsizei stride, const void *pointer); +GLAPI PFNGLINTERLEAVEDARRAYSPROC glad_glInterleavedArrays; +#define glInterleavedArrays glad_glInterleavedArrays +typedef void (APIENTRYP PFNGLNORMALPOINTERPROC)(GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLNORMALPOINTERPROC glad_glNormalPointer; +#define glNormalPointer glad_glNormalPointer +typedef void (APIENTRYP PFNGLTEXCOORDPOINTERPROC)(GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLTEXCOORDPOINTERPROC glad_glTexCoordPointer; +#define glTexCoordPointer glad_glTexCoordPointer +typedef void (APIENTRYP PFNGLVERTEXPOINTERPROC)(GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLVERTEXPOINTERPROC glad_glVertexPointer; +#define glVertexPointer glad_glVertexPointer +typedef GLboolean (APIENTRYP PFNGLARETEXTURESRESIDENTPROC)(GLsizei n, const GLuint *textures, GLboolean *residences); +GLAPI PFNGLARETEXTURESRESIDENTPROC glad_glAreTexturesResident; +#define glAreTexturesResident glad_glAreTexturesResident +typedef void (APIENTRYP PFNGLPRIORITIZETEXTURESPROC)(GLsizei n, const GLuint *textures, const GLfloat *priorities); +GLAPI PFNGLPRIORITIZETEXTURESPROC glad_glPrioritizeTextures; +#define glPrioritizeTextures glad_glPrioritizeTextures +typedef void (APIENTRYP PFNGLINDEXUBPROC)(GLubyte c); +GLAPI PFNGLINDEXUBPROC glad_glIndexub; +#define glIndexub glad_glIndexub +typedef void (APIENTRYP PFNGLINDEXUBVPROC)(const GLubyte *c); +GLAPI PFNGLINDEXUBVPROC glad_glIndexubv; +#define glIndexubv glad_glIndexubv +typedef void (APIENTRYP PFNGLPOPCLIENTATTRIBPROC)(void); +GLAPI PFNGLPOPCLIENTATTRIBPROC glad_glPopClientAttrib; +#define glPopClientAttrib glad_glPopClientAttrib +typedef void (APIENTRYP PFNGLPUSHCLIENTATTRIBPROC)(GLbitfield mask); +GLAPI PFNGLPUSHCLIENTATTRIBPROC glad_glPushClientAttrib; +#define glPushClientAttrib glad_glPushClientAttrib +#endif +#ifndef GL_VERSION_1_2 +#define GL_VERSION_1_2 1 +GLAPI int GLAD_GL_VERSION_1_2; +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices); +GLAPI PFNGLDRAWRANGEELEMENTSPROC glad_glDrawRangeElements; +#define glDrawRangeElements glad_glDrawRangeElements +typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC)(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXIMAGE3DPROC glad_glTexImage3D; +#define glTexImage3D glad_glTexImage3D +typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI PFNGLTEXSUBIMAGE3DPROC glad_glTexSubImage3D; +#define glTexSubImage3D glad_glTexSubImage3D +typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI PFNGLCOPYTEXSUBIMAGE3DPROC glad_glCopyTexSubImage3D; +#define glCopyTexSubImage3D glad_glCopyTexSubImage3D +#endif +#ifndef GL_VERSION_1_3 +#define GL_VERSION_1_3 1 +GLAPI int GLAD_GL_VERSION_1_3; +typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC)(GLenum texture); +GLAPI PFNGLACTIVETEXTUREPROC glad_glActiveTexture; +#define glActiveTexture glad_glActiveTexture +typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC)(GLfloat value, GLboolean invert); +GLAPI PFNGLSAMPLECOVERAGEPROC glad_glSampleCoverage; +#define glSampleCoverage glad_glSampleCoverage +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXIMAGE3DPROC glad_glCompressedTexImage3D; +#define glCompressedTexImage3D glad_glCompressedTexImage3D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXIMAGE2DPROC glad_glCompressedTexImage2D; +#define glCompressedTexImage2D glad_glCompressedTexImage2D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXIMAGE1DPROC glad_glCompressedTexImage1D; +#define glCompressedTexImage1D glad_glCompressedTexImage1D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC glad_glCompressedTexSubImage3D; +#define glCompressedTexSubImage3D glad_glCompressedTexSubImage3D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC glad_glCompressedTexSubImage2D; +#define glCompressedTexSubImage2D glad_glCompressedTexSubImage2D +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC glad_glCompressedTexSubImage1D; +#define glCompressedTexSubImage1D glad_glCompressedTexSubImage1D +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC)(GLenum target, GLint level, void *img); +GLAPI PFNGLGETCOMPRESSEDTEXIMAGEPROC glad_glGetCompressedTexImage; +#define glGetCompressedTexImage glad_glGetCompressedTexImage +typedef void (APIENTRYP PFNGLCLIENTACTIVETEXTUREPROC)(GLenum texture); +GLAPI PFNGLCLIENTACTIVETEXTUREPROC glad_glClientActiveTexture; +#define glClientActiveTexture glad_glClientActiveTexture +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DPROC)(GLenum target, GLdouble s); +GLAPI PFNGLMULTITEXCOORD1DPROC glad_glMultiTexCoord1d; +#define glMultiTexCoord1d glad_glMultiTexCoord1d +typedef void (APIENTRYP PFNGLMULTITEXCOORD1DVPROC)(GLenum target, const GLdouble *v); +GLAPI PFNGLMULTITEXCOORD1DVPROC glad_glMultiTexCoord1dv; +#define glMultiTexCoord1dv glad_glMultiTexCoord1dv +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FPROC)(GLenum target, GLfloat s); +GLAPI PFNGLMULTITEXCOORD1FPROC glad_glMultiTexCoord1f; +#define glMultiTexCoord1f glad_glMultiTexCoord1f +typedef void (APIENTRYP PFNGLMULTITEXCOORD1FVPROC)(GLenum target, const GLfloat *v); +GLAPI PFNGLMULTITEXCOORD1FVPROC glad_glMultiTexCoord1fv; +#define glMultiTexCoord1fv glad_glMultiTexCoord1fv +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IPROC)(GLenum target, GLint s); +GLAPI PFNGLMULTITEXCOORD1IPROC glad_glMultiTexCoord1i; +#define glMultiTexCoord1i glad_glMultiTexCoord1i +typedef void (APIENTRYP PFNGLMULTITEXCOORD1IVPROC)(GLenum target, const GLint *v); +GLAPI PFNGLMULTITEXCOORD1IVPROC glad_glMultiTexCoord1iv; +#define glMultiTexCoord1iv glad_glMultiTexCoord1iv +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SPROC)(GLenum target, GLshort s); +GLAPI PFNGLMULTITEXCOORD1SPROC glad_glMultiTexCoord1s; +#define glMultiTexCoord1s glad_glMultiTexCoord1s +typedef void (APIENTRYP PFNGLMULTITEXCOORD1SVPROC)(GLenum target, const GLshort *v); +GLAPI PFNGLMULTITEXCOORD1SVPROC glad_glMultiTexCoord1sv; +#define glMultiTexCoord1sv glad_glMultiTexCoord1sv +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DPROC)(GLenum target, GLdouble s, GLdouble t); +GLAPI PFNGLMULTITEXCOORD2DPROC glad_glMultiTexCoord2d; +#define glMultiTexCoord2d glad_glMultiTexCoord2d +typedef void (APIENTRYP PFNGLMULTITEXCOORD2DVPROC)(GLenum target, const GLdouble *v); +GLAPI PFNGLMULTITEXCOORD2DVPROC glad_glMultiTexCoord2dv; +#define glMultiTexCoord2dv glad_glMultiTexCoord2dv +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FPROC)(GLenum target, GLfloat s, GLfloat t); +GLAPI PFNGLMULTITEXCOORD2FPROC glad_glMultiTexCoord2f; +#define glMultiTexCoord2f glad_glMultiTexCoord2f +typedef void (APIENTRYP PFNGLMULTITEXCOORD2FVPROC)(GLenum target, const GLfloat *v); +GLAPI PFNGLMULTITEXCOORD2FVPROC glad_glMultiTexCoord2fv; +#define glMultiTexCoord2fv glad_glMultiTexCoord2fv +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IPROC)(GLenum target, GLint s, GLint t); +GLAPI PFNGLMULTITEXCOORD2IPROC glad_glMultiTexCoord2i; +#define glMultiTexCoord2i glad_glMultiTexCoord2i +typedef void (APIENTRYP PFNGLMULTITEXCOORD2IVPROC)(GLenum target, const GLint *v); +GLAPI PFNGLMULTITEXCOORD2IVPROC glad_glMultiTexCoord2iv; +#define glMultiTexCoord2iv glad_glMultiTexCoord2iv +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SPROC)(GLenum target, GLshort s, GLshort t); +GLAPI PFNGLMULTITEXCOORD2SPROC glad_glMultiTexCoord2s; +#define glMultiTexCoord2s glad_glMultiTexCoord2s +typedef void (APIENTRYP PFNGLMULTITEXCOORD2SVPROC)(GLenum target, const GLshort *v); +GLAPI PFNGLMULTITEXCOORD2SVPROC glad_glMultiTexCoord2sv; +#define glMultiTexCoord2sv glad_glMultiTexCoord2sv +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DPROC)(GLenum target, GLdouble s, GLdouble t, GLdouble r); +GLAPI PFNGLMULTITEXCOORD3DPROC glad_glMultiTexCoord3d; +#define glMultiTexCoord3d glad_glMultiTexCoord3d +typedef void (APIENTRYP PFNGLMULTITEXCOORD3DVPROC)(GLenum target, const GLdouble *v); +GLAPI PFNGLMULTITEXCOORD3DVPROC glad_glMultiTexCoord3dv; +#define glMultiTexCoord3dv glad_glMultiTexCoord3dv +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FPROC)(GLenum target, GLfloat s, GLfloat t, GLfloat r); +GLAPI PFNGLMULTITEXCOORD3FPROC glad_glMultiTexCoord3f; +#define glMultiTexCoord3f glad_glMultiTexCoord3f +typedef void (APIENTRYP PFNGLMULTITEXCOORD3FVPROC)(GLenum target, const GLfloat *v); +GLAPI PFNGLMULTITEXCOORD3FVPROC glad_glMultiTexCoord3fv; +#define glMultiTexCoord3fv glad_glMultiTexCoord3fv +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IPROC)(GLenum target, GLint s, GLint t, GLint r); +GLAPI PFNGLMULTITEXCOORD3IPROC glad_glMultiTexCoord3i; +#define glMultiTexCoord3i glad_glMultiTexCoord3i +typedef void (APIENTRYP PFNGLMULTITEXCOORD3IVPROC)(GLenum target, const GLint *v); +GLAPI PFNGLMULTITEXCOORD3IVPROC glad_glMultiTexCoord3iv; +#define glMultiTexCoord3iv glad_glMultiTexCoord3iv +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SPROC)(GLenum target, GLshort s, GLshort t, GLshort r); +GLAPI PFNGLMULTITEXCOORD3SPROC glad_glMultiTexCoord3s; +#define glMultiTexCoord3s glad_glMultiTexCoord3s +typedef void (APIENTRYP PFNGLMULTITEXCOORD3SVPROC)(GLenum target, const GLshort *v); +GLAPI PFNGLMULTITEXCOORD3SVPROC glad_glMultiTexCoord3sv; +#define glMultiTexCoord3sv glad_glMultiTexCoord3sv +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DPROC)(GLenum target, GLdouble s, GLdouble t, GLdouble r, GLdouble q); +GLAPI PFNGLMULTITEXCOORD4DPROC glad_glMultiTexCoord4d; +#define glMultiTexCoord4d glad_glMultiTexCoord4d +typedef void (APIENTRYP PFNGLMULTITEXCOORD4DVPROC)(GLenum target, const GLdouble *v); +GLAPI PFNGLMULTITEXCOORD4DVPROC glad_glMultiTexCoord4dv; +#define glMultiTexCoord4dv glad_glMultiTexCoord4dv +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FPROC)(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q); +GLAPI PFNGLMULTITEXCOORD4FPROC glad_glMultiTexCoord4f; +#define glMultiTexCoord4f glad_glMultiTexCoord4f +typedef void (APIENTRYP PFNGLMULTITEXCOORD4FVPROC)(GLenum target, const GLfloat *v); +GLAPI PFNGLMULTITEXCOORD4FVPROC glad_glMultiTexCoord4fv; +#define glMultiTexCoord4fv glad_glMultiTexCoord4fv +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IPROC)(GLenum target, GLint s, GLint t, GLint r, GLint q); +GLAPI PFNGLMULTITEXCOORD4IPROC glad_glMultiTexCoord4i; +#define glMultiTexCoord4i glad_glMultiTexCoord4i +typedef void (APIENTRYP PFNGLMULTITEXCOORD4IVPROC)(GLenum target, const GLint *v); +GLAPI PFNGLMULTITEXCOORD4IVPROC glad_glMultiTexCoord4iv; +#define glMultiTexCoord4iv glad_glMultiTexCoord4iv +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SPROC)(GLenum target, GLshort s, GLshort t, GLshort r, GLshort q); +GLAPI PFNGLMULTITEXCOORD4SPROC glad_glMultiTexCoord4s; +#define glMultiTexCoord4s glad_glMultiTexCoord4s +typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVPROC)(GLenum target, const GLshort *v); +GLAPI PFNGLMULTITEXCOORD4SVPROC glad_glMultiTexCoord4sv; +#define glMultiTexCoord4sv glad_glMultiTexCoord4sv +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXFPROC)(const GLfloat *m); +GLAPI PFNGLLOADTRANSPOSEMATRIXFPROC glad_glLoadTransposeMatrixf; +#define glLoadTransposeMatrixf glad_glLoadTransposeMatrixf +typedef void (APIENTRYP PFNGLLOADTRANSPOSEMATRIXDPROC)(const GLdouble *m); +GLAPI PFNGLLOADTRANSPOSEMATRIXDPROC glad_glLoadTransposeMatrixd; +#define glLoadTransposeMatrixd glad_glLoadTransposeMatrixd +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXFPROC)(const GLfloat *m); +GLAPI PFNGLMULTTRANSPOSEMATRIXFPROC glad_glMultTransposeMatrixf; +#define glMultTransposeMatrixf glad_glMultTransposeMatrixf +typedef void (APIENTRYP PFNGLMULTTRANSPOSEMATRIXDPROC)(const GLdouble *m); +GLAPI PFNGLMULTTRANSPOSEMATRIXDPROC glad_glMultTransposeMatrixd; +#define glMultTransposeMatrixd glad_glMultTransposeMatrixd +#endif +#ifndef GL_VERSION_1_4 +#define GL_VERSION_1_4 1 +GLAPI int GLAD_GL_VERSION_1_4; +typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GLAPI PFNGLBLENDFUNCSEPARATEPROC glad_glBlendFuncSeparate; +#define glBlendFuncSeparate glad_glBlendFuncSeparate +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC)(GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); +GLAPI PFNGLMULTIDRAWARRAYSPROC glad_glMultiDrawArrays; +#define glMultiDrawArrays glad_glMultiDrawArrays +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC)(GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); +GLAPI PFNGLMULTIDRAWELEMENTSPROC glad_glMultiDrawElements; +#define glMultiDrawElements glad_glMultiDrawElements +typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC)(GLenum pname, GLfloat param); +GLAPI PFNGLPOINTPARAMETERFPROC glad_glPointParameterf; +#define glPointParameterf glad_glPointParameterf +typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC)(GLenum pname, const GLfloat *params); +GLAPI PFNGLPOINTPARAMETERFVPROC glad_glPointParameterfv; +#define glPointParameterfv glad_glPointParameterfv +typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC)(GLenum pname, GLint param); +GLAPI PFNGLPOINTPARAMETERIPROC glad_glPointParameteri; +#define glPointParameteri glad_glPointParameteri +typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC)(GLenum pname, const GLint *params); +GLAPI PFNGLPOINTPARAMETERIVPROC glad_glPointParameteriv; +#define glPointParameteriv glad_glPointParameteriv +typedef void (APIENTRYP PFNGLFOGCOORDFPROC)(GLfloat coord); +GLAPI PFNGLFOGCOORDFPROC glad_glFogCoordf; +#define glFogCoordf glad_glFogCoordf +typedef void (APIENTRYP PFNGLFOGCOORDFVPROC)(const GLfloat *coord); +GLAPI PFNGLFOGCOORDFVPROC glad_glFogCoordfv; +#define glFogCoordfv glad_glFogCoordfv +typedef void (APIENTRYP PFNGLFOGCOORDDPROC)(GLdouble coord); +GLAPI PFNGLFOGCOORDDPROC glad_glFogCoordd; +#define glFogCoordd glad_glFogCoordd +typedef void (APIENTRYP PFNGLFOGCOORDDVPROC)(const GLdouble *coord); +GLAPI PFNGLFOGCOORDDVPROC glad_glFogCoorddv; +#define glFogCoorddv glad_glFogCoorddv +typedef void (APIENTRYP PFNGLFOGCOORDPOINTERPROC)(GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLFOGCOORDPOINTERPROC glad_glFogCoordPointer; +#define glFogCoordPointer glad_glFogCoordPointer +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BPROC)(GLbyte red, GLbyte green, GLbyte blue); +GLAPI PFNGLSECONDARYCOLOR3BPROC glad_glSecondaryColor3b; +#define glSecondaryColor3b glad_glSecondaryColor3b +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3BVPROC)(const GLbyte *v); +GLAPI PFNGLSECONDARYCOLOR3BVPROC glad_glSecondaryColor3bv; +#define glSecondaryColor3bv glad_glSecondaryColor3bv +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DPROC)(GLdouble red, GLdouble green, GLdouble blue); +GLAPI PFNGLSECONDARYCOLOR3DPROC glad_glSecondaryColor3d; +#define glSecondaryColor3d glad_glSecondaryColor3d +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3DVPROC)(const GLdouble *v); +GLAPI PFNGLSECONDARYCOLOR3DVPROC glad_glSecondaryColor3dv; +#define glSecondaryColor3dv glad_glSecondaryColor3dv +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FPROC)(GLfloat red, GLfloat green, GLfloat blue); +GLAPI PFNGLSECONDARYCOLOR3FPROC glad_glSecondaryColor3f; +#define glSecondaryColor3f glad_glSecondaryColor3f +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3FVPROC)(const GLfloat *v); +GLAPI PFNGLSECONDARYCOLOR3FVPROC glad_glSecondaryColor3fv; +#define glSecondaryColor3fv glad_glSecondaryColor3fv +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IPROC)(GLint red, GLint green, GLint blue); +GLAPI PFNGLSECONDARYCOLOR3IPROC glad_glSecondaryColor3i; +#define glSecondaryColor3i glad_glSecondaryColor3i +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3IVPROC)(const GLint *v); +GLAPI PFNGLSECONDARYCOLOR3IVPROC glad_glSecondaryColor3iv; +#define glSecondaryColor3iv glad_glSecondaryColor3iv +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SPROC)(GLshort red, GLshort green, GLshort blue); +GLAPI PFNGLSECONDARYCOLOR3SPROC glad_glSecondaryColor3s; +#define glSecondaryColor3s glad_glSecondaryColor3s +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3SVPROC)(const GLshort *v); +GLAPI PFNGLSECONDARYCOLOR3SVPROC glad_glSecondaryColor3sv; +#define glSecondaryColor3sv glad_glSecondaryColor3sv +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBPROC)(GLubyte red, GLubyte green, GLubyte blue); +GLAPI PFNGLSECONDARYCOLOR3UBPROC glad_glSecondaryColor3ub; +#define glSecondaryColor3ub glad_glSecondaryColor3ub +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UBVPROC)(const GLubyte *v); +GLAPI PFNGLSECONDARYCOLOR3UBVPROC glad_glSecondaryColor3ubv; +#define glSecondaryColor3ubv glad_glSecondaryColor3ubv +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIPROC)(GLuint red, GLuint green, GLuint blue); +GLAPI PFNGLSECONDARYCOLOR3UIPROC glad_glSecondaryColor3ui; +#define glSecondaryColor3ui glad_glSecondaryColor3ui +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3UIVPROC)(const GLuint *v); +GLAPI PFNGLSECONDARYCOLOR3UIVPROC glad_glSecondaryColor3uiv; +#define glSecondaryColor3uiv glad_glSecondaryColor3uiv +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USPROC)(GLushort red, GLushort green, GLushort blue); +GLAPI PFNGLSECONDARYCOLOR3USPROC glad_glSecondaryColor3us; +#define glSecondaryColor3us glad_glSecondaryColor3us +typedef void (APIENTRYP PFNGLSECONDARYCOLOR3USVPROC)(const GLushort *v); +GLAPI PFNGLSECONDARYCOLOR3USVPROC glad_glSecondaryColor3usv; +#define glSecondaryColor3usv glad_glSecondaryColor3usv +typedef void (APIENTRYP PFNGLSECONDARYCOLORPOINTERPROC)(GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLSECONDARYCOLORPOINTERPROC glad_glSecondaryColorPointer; +#define glSecondaryColorPointer glad_glSecondaryColorPointer +typedef void (APIENTRYP PFNGLWINDOWPOS2DPROC)(GLdouble x, GLdouble y); +GLAPI PFNGLWINDOWPOS2DPROC glad_glWindowPos2d; +#define glWindowPos2d glad_glWindowPos2d +typedef void (APIENTRYP PFNGLWINDOWPOS2DVPROC)(const GLdouble *v); +GLAPI PFNGLWINDOWPOS2DVPROC glad_glWindowPos2dv; +#define glWindowPos2dv glad_glWindowPos2dv +typedef void (APIENTRYP PFNGLWINDOWPOS2FPROC)(GLfloat x, GLfloat y); +GLAPI PFNGLWINDOWPOS2FPROC glad_glWindowPos2f; +#define glWindowPos2f glad_glWindowPos2f +typedef void (APIENTRYP PFNGLWINDOWPOS2FVPROC)(const GLfloat *v); +GLAPI PFNGLWINDOWPOS2FVPROC glad_glWindowPos2fv; +#define glWindowPos2fv glad_glWindowPos2fv +typedef void (APIENTRYP PFNGLWINDOWPOS2IPROC)(GLint x, GLint y); +GLAPI PFNGLWINDOWPOS2IPROC glad_glWindowPos2i; +#define glWindowPos2i glad_glWindowPos2i +typedef void (APIENTRYP PFNGLWINDOWPOS2IVPROC)(const GLint *v); +GLAPI PFNGLWINDOWPOS2IVPROC glad_glWindowPos2iv; +#define glWindowPos2iv glad_glWindowPos2iv +typedef void (APIENTRYP PFNGLWINDOWPOS2SPROC)(GLshort x, GLshort y); +GLAPI PFNGLWINDOWPOS2SPROC glad_glWindowPos2s; +#define glWindowPos2s glad_glWindowPos2s +typedef void (APIENTRYP PFNGLWINDOWPOS2SVPROC)(const GLshort *v); +GLAPI PFNGLWINDOWPOS2SVPROC glad_glWindowPos2sv; +#define glWindowPos2sv glad_glWindowPos2sv +typedef void (APIENTRYP PFNGLWINDOWPOS3DPROC)(GLdouble x, GLdouble y, GLdouble z); +GLAPI PFNGLWINDOWPOS3DPROC glad_glWindowPos3d; +#define glWindowPos3d glad_glWindowPos3d +typedef void (APIENTRYP PFNGLWINDOWPOS3DVPROC)(const GLdouble *v); +GLAPI PFNGLWINDOWPOS3DVPROC glad_glWindowPos3dv; +#define glWindowPos3dv glad_glWindowPos3dv +typedef void (APIENTRYP PFNGLWINDOWPOS3FPROC)(GLfloat x, GLfloat y, GLfloat z); +GLAPI PFNGLWINDOWPOS3FPROC glad_glWindowPos3f; +#define glWindowPos3f glad_glWindowPos3f +typedef void (APIENTRYP PFNGLWINDOWPOS3FVPROC)(const GLfloat *v); +GLAPI PFNGLWINDOWPOS3FVPROC glad_glWindowPos3fv; +#define glWindowPos3fv glad_glWindowPos3fv +typedef void (APIENTRYP PFNGLWINDOWPOS3IPROC)(GLint x, GLint y, GLint z); +GLAPI PFNGLWINDOWPOS3IPROC glad_glWindowPos3i; +#define glWindowPos3i glad_glWindowPos3i +typedef void (APIENTRYP PFNGLWINDOWPOS3IVPROC)(const GLint *v); +GLAPI PFNGLWINDOWPOS3IVPROC glad_glWindowPos3iv; +#define glWindowPos3iv glad_glWindowPos3iv +typedef void (APIENTRYP PFNGLWINDOWPOS3SPROC)(GLshort x, GLshort y, GLshort z); +GLAPI PFNGLWINDOWPOS3SPROC glad_glWindowPos3s; +#define glWindowPos3s glad_glWindowPos3s +typedef void (APIENTRYP PFNGLWINDOWPOS3SVPROC)(const GLshort *v); +GLAPI PFNGLWINDOWPOS3SVPROC glad_glWindowPos3sv; +#define glWindowPos3sv glad_glWindowPos3sv +typedef void (APIENTRYP PFNGLBLENDCOLORPROC)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GLAPI PFNGLBLENDCOLORPROC glad_glBlendColor; +#define glBlendColor glad_glBlendColor +typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC)(GLenum mode); +GLAPI PFNGLBLENDEQUATIONPROC glad_glBlendEquation; +#define glBlendEquation glad_glBlendEquation +#endif +#ifndef GL_VERSION_1_5 +#define GL_VERSION_1_5 1 +GLAPI int GLAD_GL_VERSION_1_5; +typedef void (APIENTRYP PFNGLGENQUERIESPROC)(GLsizei n, GLuint *ids); +GLAPI PFNGLGENQUERIESPROC glad_glGenQueries; +#define glGenQueries glad_glGenQueries +typedef void (APIENTRYP PFNGLDELETEQUERIESPROC)(GLsizei n, const GLuint *ids); +GLAPI PFNGLDELETEQUERIESPROC glad_glDeleteQueries; +#define glDeleteQueries glad_glDeleteQueries +typedef GLboolean (APIENTRYP PFNGLISQUERYPROC)(GLuint id); +GLAPI PFNGLISQUERYPROC glad_glIsQuery; +#define glIsQuery glad_glIsQuery +typedef void (APIENTRYP PFNGLBEGINQUERYPROC)(GLenum target, GLuint id); +GLAPI PFNGLBEGINQUERYPROC glad_glBeginQuery; +#define glBeginQuery glad_glBeginQuery +typedef void (APIENTRYP PFNGLENDQUERYPROC)(GLenum target); +GLAPI PFNGLENDQUERYPROC glad_glEndQuery; +#define glEndQuery glad_glEndQuery +typedef void (APIENTRYP PFNGLGETQUERYIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETQUERYIVPROC glad_glGetQueryiv; +#define glGetQueryiv glad_glGetQueryiv +typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC)(GLuint id, GLenum pname, GLint *params); +GLAPI PFNGLGETQUERYOBJECTIVPROC glad_glGetQueryObjectiv; +#define glGetQueryObjectiv glad_glGetQueryObjectiv +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC)(GLuint id, GLenum pname, GLuint *params); +GLAPI PFNGLGETQUERYOBJECTUIVPROC glad_glGetQueryObjectuiv; +#define glGetQueryObjectuiv glad_glGetQueryObjectuiv +typedef void (APIENTRYP PFNGLBINDBUFFERPROC)(GLenum target, GLuint buffer); +GLAPI PFNGLBINDBUFFERPROC glad_glBindBuffer; +#define glBindBuffer glad_glBindBuffer +typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC)(GLsizei n, const GLuint *buffers); +GLAPI PFNGLDELETEBUFFERSPROC glad_glDeleteBuffers; +#define glDeleteBuffers glad_glDeleteBuffers +typedef void (APIENTRYP PFNGLGENBUFFERSPROC)(GLsizei n, GLuint *buffers); +GLAPI PFNGLGENBUFFERSPROC glad_glGenBuffers; +#define glGenBuffers glad_glGenBuffers +typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC)(GLuint buffer); +GLAPI PFNGLISBUFFERPROC glad_glIsBuffer; +#define glIsBuffer glad_glIsBuffer +typedef void (APIENTRYP PFNGLBUFFERDATAPROC)(GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GLAPI PFNGLBUFFERDATAPROC glad_glBufferData; +#define glBufferData glad_glBufferData +typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC)(GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI PFNGLBUFFERSUBDATAPROC glad_glBufferSubData; +#define glBufferSubData glad_glBufferSubData +typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC)(GLenum target, GLintptr offset, GLsizeiptr size, void *data); +GLAPI PFNGLGETBUFFERSUBDATAPROC glad_glGetBufferSubData; +#define glGetBufferSubData glad_glGetBufferSubData +typedef void * (APIENTRYP PFNGLMAPBUFFERPROC)(GLenum target, GLenum access); +GLAPI PFNGLMAPBUFFERPROC glad_glMapBuffer; +#define glMapBuffer glad_glMapBuffer +typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC)(GLenum target); +GLAPI PFNGLUNMAPBUFFERPROC glad_glUnmapBuffer; +#define glUnmapBuffer glad_glUnmapBuffer +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETBUFFERPARAMETERIVPROC glad_glGetBufferParameteriv; +#define glGetBufferParameteriv glad_glGetBufferParameteriv +typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC)(GLenum target, GLenum pname, void **params); +GLAPI PFNGLGETBUFFERPOINTERVPROC glad_glGetBufferPointerv; +#define glGetBufferPointerv glad_glGetBufferPointerv +#endif +#ifndef GL_VERSION_2_0 +#define GL_VERSION_2_0 1 +GLAPI int GLAD_GL_VERSION_2_0; +typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC)(GLenum modeRGB, GLenum modeAlpha); +GLAPI PFNGLBLENDEQUATIONSEPARATEPROC glad_glBlendEquationSeparate; +#define glBlendEquationSeparate glad_glBlendEquationSeparate +typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC)(GLsizei n, const GLenum *bufs); +GLAPI PFNGLDRAWBUFFERSPROC glad_glDrawBuffers; +#define glDrawBuffers glad_glDrawBuffers +typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC)(GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GLAPI PFNGLSTENCILOPSEPARATEPROC glad_glStencilOpSeparate; +#define glStencilOpSeparate glad_glStencilOpSeparate +typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC)(GLenum face, GLenum func, GLint ref, GLuint mask); +GLAPI PFNGLSTENCILFUNCSEPARATEPROC glad_glStencilFuncSeparate; +#define glStencilFuncSeparate glad_glStencilFuncSeparate +typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC)(GLenum face, GLuint mask); +GLAPI PFNGLSTENCILMASKSEPARATEPROC glad_glStencilMaskSeparate; +#define glStencilMaskSeparate glad_glStencilMaskSeparate +typedef void (APIENTRYP PFNGLATTACHSHADERPROC)(GLuint program, GLuint shader); +GLAPI PFNGLATTACHSHADERPROC glad_glAttachShader; +#define glAttachShader glad_glAttachShader +typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC)(GLuint program, GLuint index, const GLchar *name); +GLAPI PFNGLBINDATTRIBLOCATIONPROC glad_glBindAttribLocation; +#define glBindAttribLocation glad_glBindAttribLocation +typedef void (APIENTRYP PFNGLCOMPILESHADERPROC)(GLuint shader); +GLAPI PFNGLCOMPILESHADERPROC glad_glCompileShader; +#define glCompileShader glad_glCompileShader +typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC)(void); +GLAPI PFNGLCREATEPROGRAMPROC glad_glCreateProgram; +#define glCreateProgram glad_glCreateProgram +typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC)(GLenum type); +GLAPI PFNGLCREATESHADERPROC glad_glCreateShader; +#define glCreateShader glad_glCreateShader +typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC)(GLuint program); +GLAPI PFNGLDELETEPROGRAMPROC glad_glDeleteProgram; +#define glDeleteProgram glad_glDeleteProgram +typedef void (APIENTRYP PFNGLDELETESHADERPROC)(GLuint shader); +GLAPI PFNGLDELETESHADERPROC glad_glDeleteShader; +#define glDeleteShader glad_glDeleteShader +typedef void (APIENTRYP PFNGLDETACHSHADERPROC)(GLuint program, GLuint shader); +GLAPI PFNGLDETACHSHADERPROC glad_glDetachShader; +#define glDetachShader glad_glDetachShader +typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC)(GLuint index); +GLAPI PFNGLDISABLEVERTEXATTRIBARRAYPROC glad_glDisableVertexAttribArray; +#define glDisableVertexAttribArray glad_glDisableVertexAttribArray +typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC)(GLuint index); +GLAPI PFNGLENABLEVERTEXATTRIBARRAYPROC glad_glEnableVertexAttribArray; +#define glEnableVertexAttribArray glad_glEnableVertexAttribArray +typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI PFNGLGETACTIVEATTRIBPROC glad_glGetActiveAttrib; +#define glGetActiveAttrib glad_glGetActiveAttrib +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GLAPI PFNGLGETACTIVEUNIFORMPROC glad_glGetActiveUniform; +#define glGetActiveUniform glad_glGetActiveUniform +typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC)(GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GLAPI PFNGLGETATTACHEDSHADERSPROC glad_glGetAttachedShaders; +#define glGetAttachedShaders glad_glGetAttachedShaders +typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETATTRIBLOCATIONPROC glad_glGetAttribLocation; +#define glGetAttribLocation glad_glGetAttribLocation +typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC)(GLuint program, GLenum pname, GLint *params); +GLAPI PFNGLGETPROGRAMIVPROC glad_glGetProgramiv; +#define glGetProgramiv glad_glGetProgramiv +typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC)(GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI PFNGLGETPROGRAMINFOLOGPROC glad_glGetProgramInfoLog; +#define glGetProgramInfoLog glad_glGetProgramInfoLog +typedef void (APIENTRYP PFNGLGETSHADERIVPROC)(GLuint shader, GLenum pname, GLint *params); +GLAPI PFNGLGETSHADERIVPROC glad_glGetShaderiv; +#define glGetShaderiv glad_glGetShaderiv +typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC)(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GLAPI PFNGLGETSHADERINFOLOGPROC glad_glGetShaderInfoLog; +#define glGetShaderInfoLog glad_glGetShaderInfoLog +typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC)(GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GLAPI PFNGLGETSHADERSOURCEPROC glad_glGetShaderSource; +#define glGetShaderSource glad_glGetShaderSource +typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETUNIFORMLOCATIONPROC glad_glGetUniformLocation; +#define glGetUniformLocation glad_glGetUniformLocation +typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC)(GLuint program, GLint location, GLfloat *params); +GLAPI PFNGLGETUNIFORMFVPROC glad_glGetUniformfv; +#define glGetUniformfv glad_glGetUniformfv +typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC)(GLuint program, GLint location, GLint *params); +GLAPI PFNGLGETUNIFORMIVPROC glad_glGetUniformiv; +#define glGetUniformiv glad_glGetUniformiv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC)(GLuint index, GLenum pname, GLdouble *params); +GLAPI PFNGLGETVERTEXATTRIBDVPROC glad_glGetVertexAttribdv; +#define glGetVertexAttribdv glad_glGetVertexAttribdv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC)(GLuint index, GLenum pname, GLfloat *params); +GLAPI PFNGLGETVERTEXATTRIBFVPROC glad_glGetVertexAttribfv; +#define glGetVertexAttribfv glad_glGetVertexAttribfv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC)(GLuint index, GLenum pname, GLint *params); +GLAPI PFNGLGETVERTEXATTRIBIVPROC glad_glGetVertexAttribiv; +#define glGetVertexAttribiv glad_glGetVertexAttribiv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC)(GLuint index, GLenum pname, void **pointer); +GLAPI PFNGLGETVERTEXATTRIBPOINTERVPROC glad_glGetVertexAttribPointerv; +#define glGetVertexAttribPointerv glad_glGetVertexAttribPointerv +typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC)(GLuint program); +GLAPI PFNGLISPROGRAMPROC glad_glIsProgram; +#define glIsProgram glad_glIsProgram +typedef GLboolean (APIENTRYP PFNGLISSHADERPROC)(GLuint shader); +GLAPI PFNGLISSHADERPROC glad_glIsShader; +#define glIsShader glad_glIsShader +typedef void (APIENTRYP PFNGLLINKPROGRAMPROC)(GLuint program); +GLAPI PFNGLLINKPROGRAMPROC glad_glLinkProgram; +#define glLinkProgram glad_glLinkProgram +typedef void (APIENTRYP PFNGLSHADERSOURCEPROC)(GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GLAPI PFNGLSHADERSOURCEPROC glad_glShaderSource; +#define glShaderSource glad_glShaderSource +typedef void (APIENTRYP PFNGLUSEPROGRAMPROC)(GLuint program); +GLAPI PFNGLUSEPROGRAMPROC glad_glUseProgram; +#define glUseProgram glad_glUseProgram +typedef void (APIENTRYP PFNGLUNIFORM1FPROC)(GLint location, GLfloat v0); +GLAPI PFNGLUNIFORM1FPROC glad_glUniform1f; +#define glUniform1f glad_glUniform1f +typedef void (APIENTRYP PFNGLUNIFORM2FPROC)(GLint location, GLfloat v0, GLfloat v1); +GLAPI PFNGLUNIFORM2FPROC glad_glUniform2f; +#define glUniform2f glad_glUniform2f +typedef void (APIENTRYP PFNGLUNIFORM3FPROC)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GLAPI PFNGLUNIFORM3FPROC glad_glUniform3f; +#define glUniform3f glad_glUniform3f +typedef void (APIENTRYP PFNGLUNIFORM4FPROC)(GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GLAPI PFNGLUNIFORM4FPROC glad_glUniform4f; +#define glUniform4f glad_glUniform4f +typedef void (APIENTRYP PFNGLUNIFORM1IPROC)(GLint location, GLint v0); +GLAPI PFNGLUNIFORM1IPROC glad_glUniform1i; +#define glUniform1i glad_glUniform1i +typedef void (APIENTRYP PFNGLUNIFORM2IPROC)(GLint location, GLint v0, GLint v1); +GLAPI PFNGLUNIFORM2IPROC glad_glUniform2i; +#define glUniform2i glad_glUniform2i +typedef void (APIENTRYP PFNGLUNIFORM3IPROC)(GLint location, GLint v0, GLint v1, GLint v2); +GLAPI PFNGLUNIFORM3IPROC glad_glUniform3i; +#define glUniform3i glad_glUniform3i +typedef void (APIENTRYP PFNGLUNIFORM4IPROC)(GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GLAPI PFNGLUNIFORM4IPROC glad_glUniform4i; +#define glUniform4i glad_glUniform4i +typedef void (APIENTRYP PFNGLUNIFORM1FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM1FVPROC glad_glUniform1fv; +#define glUniform1fv glad_glUniform1fv +typedef void (APIENTRYP PFNGLUNIFORM2FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM2FVPROC glad_glUniform2fv; +#define glUniform2fv glad_glUniform2fv +typedef void (APIENTRYP PFNGLUNIFORM3FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM3FVPROC glad_glUniform3fv; +#define glUniform3fv glad_glUniform3fv +typedef void (APIENTRYP PFNGLUNIFORM4FVPROC)(GLint location, GLsizei count, const GLfloat *value); +GLAPI PFNGLUNIFORM4FVPROC glad_glUniform4fv; +#define glUniform4fv glad_glUniform4fv +typedef void (APIENTRYP PFNGLUNIFORM1IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM1IVPROC glad_glUniform1iv; +#define glUniform1iv glad_glUniform1iv +typedef void (APIENTRYP PFNGLUNIFORM2IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM2IVPROC glad_glUniform2iv; +#define glUniform2iv glad_glUniform2iv +typedef void (APIENTRYP PFNGLUNIFORM3IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM3IVPROC glad_glUniform3iv; +#define glUniform3iv glad_glUniform3iv +typedef void (APIENTRYP PFNGLUNIFORM4IVPROC)(GLint location, GLsizei count, const GLint *value); +GLAPI PFNGLUNIFORM4IVPROC glad_glUniform4iv; +#define glUniform4iv glad_glUniform4iv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX2FVPROC glad_glUniformMatrix2fv; +#define glUniformMatrix2fv glad_glUniformMatrix2fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX3FVPROC glad_glUniformMatrix3fv; +#define glUniformMatrix3fv glad_glUniformMatrix3fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX4FVPROC glad_glUniformMatrix4fv; +#define glUniformMatrix4fv glad_glUniformMatrix4fv +typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC)(GLuint program); +GLAPI PFNGLVALIDATEPROGRAMPROC glad_glValidateProgram; +#define glValidateProgram glad_glValidateProgram +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC)(GLuint index, GLdouble x); +GLAPI PFNGLVERTEXATTRIB1DPROC glad_glVertexAttrib1d; +#define glVertexAttrib1d glad_glVertexAttrib1d +typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB1DVPROC glad_glVertexAttrib1dv; +#define glVertexAttrib1dv glad_glVertexAttrib1dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC)(GLuint index, GLfloat x); +GLAPI PFNGLVERTEXATTRIB1FPROC glad_glVertexAttrib1f; +#define glVertexAttrib1f glad_glVertexAttrib1f +typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB1FVPROC glad_glVertexAttrib1fv; +#define glVertexAttrib1fv glad_glVertexAttrib1fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC)(GLuint index, GLshort x); +GLAPI PFNGLVERTEXATTRIB1SPROC glad_glVertexAttrib1s; +#define glVertexAttrib1s glad_glVertexAttrib1s +typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB1SVPROC glad_glVertexAttrib1sv; +#define glVertexAttrib1sv glad_glVertexAttrib1sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC)(GLuint index, GLdouble x, GLdouble y); +GLAPI PFNGLVERTEXATTRIB2DPROC glad_glVertexAttrib2d; +#define glVertexAttrib2d glad_glVertexAttrib2d +typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB2DVPROC glad_glVertexAttrib2dv; +#define glVertexAttrib2dv glad_glVertexAttrib2dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC)(GLuint index, GLfloat x, GLfloat y); +GLAPI PFNGLVERTEXATTRIB2FPROC glad_glVertexAttrib2f; +#define glVertexAttrib2f glad_glVertexAttrib2f +typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB2FVPROC glad_glVertexAttrib2fv; +#define glVertexAttrib2fv glad_glVertexAttrib2fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC)(GLuint index, GLshort x, GLshort y); +GLAPI PFNGLVERTEXATTRIB2SPROC glad_glVertexAttrib2s; +#define glVertexAttrib2s glad_glVertexAttrib2s +typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB2SVPROC glad_glVertexAttrib2sv; +#define glVertexAttrib2sv glad_glVertexAttrib2sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z); +GLAPI PFNGLVERTEXATTRIB3DPROC glad_glVertexAttrib3d; +#define glVertexAttrib3d glad_glVertexAttrib3d +typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB3DVPROC glad_glVertexAttrib3dv; +#define glVertexAttrib3dv glad_glVertexAttrib3dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC)(GLuint index, GLfloat x, GLfloat y, GLfloat z); +GLAPI PFNGLVERTEXATTRIB3FPROC glad_glVertexAttrib3f; +#define glVertexAttrib3f glad_glVertexAttrib3f +typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB3FVPROC glad_glVertexAttrib3fv; +#define glVertexAttrib3fv glad_glVertexAttrib3fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC)(GLuint index, GLshort x, GLshort y, GLshort z); +GLAPI PFNGLVERTEXATTRIB3SPROC glad_glVertexAttrib3s; +#define glVertexAttrib3s glad_glVertexAttrib3s +typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB3SVPROC glad_glVertexAttrib3sv; +#define glVertexAttrib3sv glad_glVertexAttrib3sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC)(GLuint index, const GLbyte *v); +GLAPI PFNGLVERTEXATTRIB4NBVPROC glad_glVertexAttrib4Nbv; +#define glVertexAttrib4Nbv glad_glVertexAttrib4Nbv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIB4NIVPROC glad_glVertexAttrib4Niv; +#define glVertexAttrib4Niv glad_glVertexAttrib4Niv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB4NSVPROC glad_glVertexAttrib4Nsv; +#define glVertexAttrib4Nsv glad_glVertexAttrib4Nsv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); +GLAPI PFNGLVERTEXATTRIB4NUBPROC glad_glVertexAttrib4Nub; +#define glVertexAttrib4Nub glad_glVertexAttrib4Nub +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC)(GLuint index, const GLubyte *v); +GLAPI PFNGLVERTEXATTRIB4NUBVPROC glad_glVertexAttrib4Nubv; +#define glVertexAttrib4Nubv glad_glVertexAttrib4Nubv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIB4NUIVPROC glad_glVertexAttrib4Nuiv; +#define glVertexAttrib4Nuiv glad_glVertexAttrib4Nuiv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC)(GLuint index, const GLushort *v); +GLAPI PFNGLVERTEXATTRIB4NUSVPROC glad_glVertexAttrib4Nusv; +#define glVertexAttrib4Nusv glad_glVertexAttrib4Nusv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC)(GLuint index, const GLbyte *v); +GLAPI PFNGLVERTEXATTRIB4BVPROC glad_glVertexAttrib4bv; +#define glVertexAttrib4bv glad_glVertexAttrib4bv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +GLAPI PFNGLVERTEXATTRIB4DPROC glad_glVertexAttrib4d; +#define glVertexAttrib4d glad_glVertexAttrib4d +typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC)(GLuint index, const GLdouble *v); +GLAPI PFNGLVERTEXATTRIB4DVPROC glad_glVertexAttrib4dv; +#define glVertexAttrib4dv glad_glVertexAttrib4dv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GLAPI PFNGLVERTEXATTRIB4FPROC glad_glVertexAttrib4f; +#define glVertexAttrib4f glad_glVertexAttrib4f +typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC)(GLuint index, const GLfloat *v); +GLAPI PFNGLVERTEXATTRIB4FVPROC glad_glVertexAttrib4fv; +#define glVertexAttrib4fv glad_glVertexAttrib4fv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIB4IVPROC glad_glVertexAttrib4iv; +#define glVertexAttrib4iv glad_glVertexAttrib4iv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); +GLAPI PFNGLVERTEXATTRIB4SPROC glad_glVertexAttrib4s; +#define glVertexAttrib4s glad_glVertexAttrib4s +typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIB4SVPROC glad_glVertexAttrib4sv; +#define glVertexAttrib4sv glad_glVertexAttrib4sv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC)(GLuint index, const GLubyte *v); +GLAPI PFNGLVERTEXATTRIB4UBVPROC glad_glVertexAttrib4ubv; +#define glVertexAttrib4ubv glad_glVertexAttrib4ubv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIB4UIVPROC glad_glVertexAttrib4uiv; +#define glVertexAttrib4uiv glad_glVertexAttrib4uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC)(GLuint index, const GLushort *v); +GLAPI PFNGLVERTEXATTRIB4USVPROC glad_glVertexAttrib4usv; +#define glVertexAttrib4usv glad_glVertexAttrib4usv +typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC)(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GLAPI PFNGLVERTEXATTRIBPOINTERPROC glad_glVertexAttribPointer; +#define glVertexAttribPointer glad_glVertexAttribPointer +#endif +#ifndef GL_VERSION_2_1 +#define GL_VERSION_2_1 1 +GLAPI int GLAD_GL_VERSION_2_1; +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX2X3FVPROC glad_glUniformMatrix2x3fv; +#define glUniformMatrix2x3fv glad_glUniformMatrix2x3fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX3X2FVPROC glad_glUniformMatrix3x2fv; +#define glUniformMatrix3x2fv glad_glUniformMatrix3x2fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX2X4FVPROC glad_glUniformMatrix2x4fv; +#define glUniformMatrix2x4fv glad_glUniformMatrix2x4fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX4X2FVPROC glad_glUniformMatrix4x2fv; +#define glUniformMatrix4x2fv glad_glUniformMatrix4x2fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX3X4FVPROC glad_glUniformMatrix3x4fv; +#define glUniformMatrix3x4fv glad_glUniformMatrix3x4fv +typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC)(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GLAPI PFNGLUNIFORMMATRIX4X3FVPROC glad_glUniformMatrix4x3fv; +#define glUniformMatrix4x3fv glad_glUniformMatrix4x3fv +#endif +#ifndef GL_VERSION_3_0 +#define GL_VERSION_3_0 1 +GLAPI int GLAD_GL_VERSION_3_0; +typedef void (APIENTRYP PFNGLCOLORMASKIPROC)(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GLAPI PFNGLCOLORMASKIPROC glad_glColorMaski; +#define glColorMaski glad_glColorMaski +typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC)(GLenum target, GLuint index, GLboolean *data); +GLAPI PFNGLGETBOOLEANI_VPROC glad_glGetBooleani_v; +#define glGetBooleani_v glad_glGetBooleani_v +typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC)(GLenum target, GLuint index, GLint *data); +GLAPI PFNGLGETINTEGERI_VPROC glad_glGetIntegeri_v; +#define glGetIntegeri_v glad_glGetIntegeri_v +typedef void (APIENTRYP PFNGLENABLEIPROC)(GLenum target, GLuint index); +GLAPI PFNGLENABLEIPROC glad_glEnablei; +#define glEnablei glad_glEnablei +typedef void (APIENTRYP PFNGLDISABLEIPROC)(GLenum target, GLuint index); +GLAPI PFNGLDISABLEIPROC glad_glDisablei; +#define glDisablei glad_glDisablei +typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC)(GLenum target, GLuint index); +GLAPI PFNGLISENABLEDIPROC glad_glIsEnabledi; +#define glIsEnabledi glad_glIsEnabledi +typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC)(GLenum primitiveMode); +GLAPI PFNGLBEGINTRANSFORMFEEDBACKPROC glad_glBeginTransformFeedback; +#define glBeginTransformFeedback glad_glBeginTransformFeedback +typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC)(void); +GLAPI PFNGLENDTRANSFORMFEEDBACKPROC glad_glEndTransformFeedback; +#define glEndTransformFeedback glad_glEndTransformFeedback +typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI PFNGLBINDBUFFERRANGEPROC glad_glBindBufferRange; +#define glBindBufferRange glad_glBindBufferRange +typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC)(GLenum target, GLuint index, GLuint buffer); +GLAPI PFNGLBINDBUFFERBASEPROC glad_glBindBufferBase; +#define glBindBufferBase glad_glBindBufferBase +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC)(GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode); +GLAPI PFNGLTRANSFORMFEEDBACKVARYINGSPROC glad_glTransformFeedbackVaryings; +#define glTransformFeedbackVaryings glad_glTransformFeedbackVaryings +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name); +GLAPI PFNGLGETTRANSFORMFEEDBACKVARYINGPROC glad_glGetTransformFeedbackVarying; +#define glGetTransformFeedbackVarying glad_glGetTransformFeedbackVarying +typedef void (APIENTRYP PFNGLCLAMPCOLORPROC)(GLenum target, GLenum clamp); +GLAPI PFNGLCLAMPCOLORPROC glad_glClampColor; +#define glClampColor glad_glClampColor +typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC)(GLuint id, GLenum mode); +GLAPI PFNGLBEGINCONDITIONALRENDERPROC glad_glBeginConditionalRender; +#define glBeginConditionalRender glad_glBeginConditionalRender +typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC)(void); +GLAPI PFNGLENDCONDITIONALRENDERPROC glad_glEndConditionalRender; +#define glEndConditionalRender glad_glEndConditionalRender +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC)(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI PFNGLVERTEXATTRIBIPOINTERPROC glad_glVertexAttribIPointer; +#define glVertexAttribIPointer glad_glVertexAttribIPointer +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC)(GLuint index, GLenum pname, GLint *params); +GLAPI PFNGLGETVERTEXATTRIBIIVPROC glad_glGetVertexAttribIiv; +#define glGetVertexAttribIiv glad_glGetVertexAttribIiv +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC)(GLuint index, GLenum pname, GLuint *params); +GLAPI PFNGLGETVERTEXATTRIBIUIVPROC glad_glGetVertexAttribIuiv; +#define glGetVertexAttribIuiv glad_glGetVertexAttribIuiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC)(GLuint index, GLint x); +GLAPI PFNGLVERTEXATTRIBI1IPROC glad_glVertexAttribI1i; +#define glVertexAttribI1i glad_glVertexAttribI1i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC)(GLuint index, GLint x, GLint y); +GLAPI PFNGLVERTEXATTRIBI2IPROC glad_glVertexAttribI2i; +#define glVertexAttribI2i glad_glVertexAttribI2i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC)(GLuint index, GLint x, GLint y, GLint z); +GLAPI PFNGLVERTEXATTRIBI3IPROC glad_glVertexAttribI3i; +#define glVertexAttribI3i glad_glVertexAttribI3i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC)(GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI PFNGLVERTEXATTRIBI4IPROC glad_glVertexAttribI4i; +#define glVertexAttribI4i glad_glVertexAttribI4i +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC)(GLuint index, GLuint x); +GLAPI PFNGLVERTEXATTRIBI1UIPROC glad_glVertexAttribI1ui; +#define glVertexAttribI1ui glad_glVertexAttribI1ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC)(GLuint index, GLuint x, GLuint y); +GLAPI PFNGLVERTEXATTRIBI2UIPROC glad_glVertexAttribI2ui; +#define glVertexAttribI2ui glad_glVertexAttribI2ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC)(GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI PFNGLVERTEXATTRIBI3UIPROC glad_glVertexAttribI3ui; +#define glVertexAttribI3ui glad_glVertexAttribI3ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI PFNGLVERTEXATTRIBI4UIPROC glad_glVertexAttribI4ui; +#define glVertexAttribI4ui glad_glVertexAttribI4ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI1IVPROC glad_glVertexAttribI1iv; +#define glVertexAttribI1iv glad_glVertexAttribI1iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI2IVPROC glad_glVertexAttribI2iv; +#define glVertexAttribI2iv glad_glVertexAttribI2iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI3IVPROC glad_glVertexAttribI3iv; +#define glVertexAttribI3iv glad_glVertexAttribI3iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC)(GLuint index, const GLint *v); +GLAPI PFNGLVERTEXATTRIBI4IVPROC glad_glVertexAttribI4iv; +#define glVertexAttribI4iv glad_glVertexAttribI4iv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI1UIVPROC glad_glVertexAttribI1uiv; +#define glVertexAttribI1uiv glad_glVertexAttribI1uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI2UIVPROC glad_glVertexAttribI2uiv; +#define glVertexAttribI2uiv glad_glVertexAttribI2uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI3UIVPROC glad_glVertexAttribI3uiv; +#define glVertexAttribI3uiv glad_glVertexAttribI3uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC)(GLuint index, const GLuint *v); +GLAPI PFNGLVERTEXATTRIBI4UIVPROC glad_glVertexAttribI4uiv; +#define glVertexAttribI4uiv glad_glVertexAttribI4uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC)(GLuint index, const GLbyte *v); +GLAPI PFNGLVERTEXATTRIBI4BVPROC glad_glVertexAttribI4bv; +#define glVertexAttribI4bv glad_glVertexAttribI4bv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC)(GLuint index, const GLshort *v); +GLAPI PFNGLVERTEXATTRIBI4SVPROC glad_glVertexAttribI4sv; +#define glVertexAttribI4sv glad_glVertexAttribI4sv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC)(GLuint index, const GLubyte *v); +GLAPI PFNGLVERTEXATTRIBI4UBVPROC glad_glVertexAttribI4ubv; +#define glVertexAttribI4ubv glad_glVertexAttribI4ubv +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC)(GLuint index, const GLushort *v); +GLAPI PFNGLVERTEXATTRIBI4USVPROC glad_glVertexAttribI4usv; +#define glVertexAttribI4usv glad_glVertexAttribI4usv +typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC)(GLuint program, GLint location, GLuint *params); +GLAPI PFNGLGETUNIFORMUIVPROC glad_glGetUniformuiv; +#define glGetUniformuiv glad_glGetUniformuiv +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC)(GLuint program, GLuint color, const GLchar *name); +GLAPI PFNGLBINDFRAGDATALOCATIONPROC glad_glBindFragDataLocation; +#define glBindFragDataLocation glad_glBindFragDataLocation +typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETFRAGDATALOCATIONPROC glad_glGetFragDataLocation; +#define glGetFragDataLocation glad_glGetFragDataLocation +typedef void (APIENTRYP PFNGLUNIFORM1UIPROC)(GLint location, GLuint v0); +GLAPI PFNGLUNIFORM1UIPROC glad_glUniform1ui; +#define glUniform1ui glad_glUniform1ui +typedef void (APIENTRYP PFNGLUNIFORM2UIPROC)(GLint location, GLuint v0, GLuint v1); +GLAPI PFNGLUNIFORM2UIPROC glad_glUniform2ui; +#define glUniform2ui glad_glUniform2ui +typedef void (APIENTRYP PFNGLUNIFORM3UIPROC)(GLint location, GLuint v0, GLuint v1, GLuint v2); +GLAPI PFNGLUNIFORM3UIPROC glad_glUniform3ui; +#define glUniform3ui glad_glUniform3ui +typedef void (APIENTRYP PFNGLUNIFORM4UIPROC)(GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GLAPI PFNGLUNIFORM4UIPROC glad_glUniform4ui; +#define glUniform4ui glad_glUniform4ui +typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM1UIVPROC glad_glUniform1uiv; +#define glUniform1uiv glad_glUniform1uiv +typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM2UIVPROC glad_glUniform2uiv; +#define glUniform2uiv glad_glUniform2uiv +typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM3UIVPROC glad_glUniform3uiv; +#define glUniform3uiv glad_glUniform3uiv +typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC)(GLint location, GLsizei count, const GLuint *value); +GLAPI PFNGLUNIFORM4UIVPROC glad_glUniform4uiv; +#define glUniform4uiv glad_glUniform4uiv +typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC)(GLenum target, GLenum pname, const GLint *params); +GLAPI PFNGLTEXPARAMETERIIVPROC glad_glTexParameterIiv; +#define glTexParameterIiv glad_glTexParameterIiv +typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC)(GLenum target, GLenum pname, const GLuint *params); +GLAPI PFNGLTEXPARAMETERIUIVPROC glad_glTexParameterIuiv; +#define glTexParameterIuiv glad_glTexParameterIuiv +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETTEXPARAMETERIIVPROC glad_glGetTexParameterIiv; +#define glGetTexParameterIiv glad_glGetTexParameterIiv +typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC)(GLenum target, GLenum pname, GLuint *params); +GLAPI PFNGLGETTEXPARAMETERIUIVPROC glad_glGetTexParameterIuiv; +#define glGetTexParameterIuiv glad_glGetTexParameterIuiv +typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC)(GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI PFNGLCLEARBUFFERIVPROC glad_glClearBufferiv; +#define glClearBufferiv glad_glClearBufferiv +typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC)(GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI PFNGLCLEARBUFFERUIVPROC glad_glClearBufferuiv; +#define glClearBufferuiv glad_glClearBufferuiv +typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC)(GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI PFNGLCLEARBUFFERFVPROC glad_glClearBufferfv; +#define glClearBufferfv glad_glClearBufferfv +typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC)(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI PFNGLCLEARBUFFERFIPROC glad_glClearBufferfi; +#define glClearBufferfi glad_glClearBufferfi +typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGIPROC)(GLenum name, GLuint index); +GLAPI PFNGLGETSTRINGIPROC glad_glGetStringi; +#define glGetStringi glad_glGetStringi +typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC)(GLuint renderbuffer); +GLAPI PFNGLISRENDERBUFFERPROC glad_glIsRenderbuffer; +#define glIsRenderbuffer glad_glIsRenderbuffer +typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC)(GLenum target, GLuint renderbuffer); +GLAPI PFNGLBINDRENDERBUFFERPROC glad_glBindRenderbuffer; +#define glBindRenderbuffer glad_glBindRenderbuffer +typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC)(GLsizei n, const GLuint *renderbuffers); +GLAPI PFNGLDELETERENDERBUFFERSPROC glad_glDeleteRenderbuffers; +#define glDeleteRenderbuffers glad_glDeleteRenderbuffers +typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC)(GLsizei n, GLuint *renderbuffers); +GLAPI PFNGLGENRENDERBUFFERSPROC glad_glGenRenderbuffers; +#define glGenRenderbuffers glad_glGenRenderbuffers +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI PFNGLRENDERBUFFERSTORAGEPROC glad_glRenderbufferStorage; +#define glRenderbufferStorage glad_glRenderbufferStorage +typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC)(GLenum target, GLenum pname, GLint *params); +GLAPI PFNGLGETRENDERBUFFERPARAMETERIVPROC glad_glGetRenderbufferParameteriv; +#define glGetRenderbufferParameteriv glad_glGetRenderbufferParameteriv +typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC)(GLuint framebuffer); +GLAPI PFNGLISFRAMEBUFFERPROC glad_glIsFramebuffer; +#define glIsFramebuffer glad_glIsFramebuffer +typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC)(GLenum target, GLuint framebuffer); +GLAPI PFNGLBINDFRAMEBUFFERPROC glad_glBindFramebuffer; +#define glBindFramebuffer glad_glBindFramebuffer +typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC)(GLsizei n, const GLuint *framebuffers); +GLAPI PFNGLDELETEFRAMEBUFFERSPROC glad_glDeleteFramebuffers; +#define glDeleteFramebuffers glad_glDeleteFramebuffers +typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC)(GLsizei n, GLuint *framebuffers); +GLAPI PFNGLGENFRAMEBUFFERSPROC glad_glGenFramebuffers; +#define glGenFramebuffers glad_glGenFramebuffers +typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC)(GLenum target); +GLAPI PFNGLCHECKFRAMEBUFFERSTATUSPROC glad_glCheckFramebufferStatus; +#define glCheckFramebufferStatus glad_glCheckFramebufferStatus +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI PFNGLFRAMEBUFFERTEXTURE1DPROC glad_glFramebufferTexture1D; +#define glFramebufferTexture1D glad_glFramebufferTexture1D +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GLAPI PFNGLFRAMEBUFFERTEXTURE2DPROC glad_glFramebufferTexture2D; +#define glFramebufferTexture2D glad_glFramebufferTexture2D +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +GLAPI PFNGLFRAMEBUFFERTEXTURE3DPROC glad_glFramebufferTexture3D; +#define glFramebufferTexture3D glad_glFramebufferTexture3D +typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI PFNGLFRAMEBUFFERRENDERBUFFERPROC glad_glFramebufferRenderbuffer; +#define glFramebufferRenderbuffer glad_glFramebufferRenderbuffer +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)(GLenum target, GLenum attachment, GLenum pname, GLint *params); +GLAPI PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC glad_glGetFramebufferAttachmentParameteriv; +#define glGetFramebufferAttachmentParameteriv glad_glGetFramebufferAttachmentParameteriv +typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC)(GLenum target); +GLAPI PFNGLGENERATEMIPMAPPROC glad_glGenerateMipmap; +#define glGenerateMipmap glad_glGenerateMipmap +typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI PFNGLBLITFRAMEBUFFERPROC glad_glBlitFramebuffer; +#define glBlitFramebuffer glad_glBlitFramebuffer +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC glad_glRenderbufferStorageMultisample; +#define glRenderbufferStorageMultisample glad_glRenderbufferStorageMultisample +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI PFNGLFRAMEBUFFERTEXTURELAYERPROC glad_glFramebufferTextureLayer; +#define glFramebufferTextureLayer glad_glFramebufferTextureLayer +typedef void * (APIENTRYP PFNGLMAPBUFFERRANGEPROC)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI PFNGLMAPBUFFERRANGEPROC glad_glMapBufferRange; +#define glMapBufferRange glad_glMapBufferRange +typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC)(GLenum target, GLintptr offset, GLsizeiptr length); +GLAPI PFNGLFLUSHMAPPEDBUFFERRANGEPROC glad_glFlushMappedBufferRange; +#define glFlushMappedBufferRange glad_glFlushMappedBufferRange +typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC)(GLuint array); +GLAPI PFNGLBINDVERTEXARRAYPROC glad_glBindVertexArray; +#define glBindVertexArray glad_glBindVertexArray +typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC)(GLsizei n, const GLuint *arrays); +GLAPI PFNGLDELETEVERTEXARRAYSPROC glad_glDeleteVertexArrays; +#define glDeleteVertexArrays glad_glDeleteVertexArrays +typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC)(GLsizei n, GLuint *arrays); +GLAPI PFNGLGENVERTEXARRAYSPROC glad_glGenVertexArrays; +#define glGenVertexArrays glad_glGenVertexArrays +typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC)(GLuint array); +GLAPI PFNGLISVERTEXARRAYPROC glad_glIsVertexArray; +#define glIsVertexArray glad_glIsVertexArray +#endif +#ifndef GL_VERSION_3_1 +#define GL_VERSION_3_1 1 +GLAPI int GLAD_GL_VERSION_3_1; +typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC)(GLenum mode, GLint first, GLsizei count, GLsizei instancecount); +GLAPI PFNGLDRAWARRAYSINSTANCEDPROC glad_glDrawArraysInstanced; +#define glDrawArraysInstanced glad_glDrawArraysInstanced +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount); +GLAPI PFNGLDRAWELEMENTSINSTANCEDPROC glad_glDrawElementsInstanced; +#define glDrawElementsInstanced glad_glDrawElementsInstanced +typedef void (APIENTRYP PFNGLTEXBUFFERPROC)(GLenum target, GLenum internalformat, GLuint buffer); +GLAPI PFNGLTEXBUFFERPROC glad_glTexBuffer; +#define glTexBuffer glad_glTexBuffer +typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC)(GLuint index); +GLAPI PFNGLPRIMITIVERESTARTINDEXPROC glad_glPrimitiveRestartIndex; +#define glPrimitiveRestartIndex glad_glPrimitiveRestartIndex +typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI PFNGLCOPYBUFFERSUBDATAPROC glad_glCopyBufferSubData; +#define glCopyBufferSubData glad_glCopyBufferSubData +typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC)(GLuint program, GLsizei uniformCount, const GLchar *const*uniformNames, GLuint *uniformIndices); +GLAPI PFNGLGETUNIFORMINDICESPROC glad_glGetUniformIndices; +#define glGetUniformIndices glad_glGetUniformIndices +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC)(GLuint program, GLsizei uniformCount, const GLuint *uniformIndices, GLenum pname, GLint *params); +GLAPI PFNGLGETACTIVEUNIFORMSIVPROC glad_glGetActiveUniformsiv; +#define glGetActiveUniformsiv glad_glGetActiveUniformsiv +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC)(GLuint program, GLuint uniformIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformName); +GLAPI PFNGLGETACTIVEUNIFORMNAMEPROC glad_glGetActiveUniformName; +#define glGetActiveUniformName glad_glGetActiveUniformName +typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC)(GLuint program, const GLchar *uniformBlockName); +GLAPI PFNGLGETUNIFORMBLOCKINDEXPROC glad_glGetUniformBlockIndex; +#define glGetUniformBlockIndex glad_glGetUniformBlockIndex +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC)(GLuint program, GLuint uniformBlockIndex, GLenum pname, GLint *params); +GLAPI PFNGLGETACTIVEUNIFORMBLOCKIVPROC glad_glGetActiveUniformBlockiv; +#define glGetActiveUniformBlockiv glad_glGetActiveUniformBlockiv +typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)(GLuint program, GLuint uniformBlockIndex, GLsizei bufSize, GLsizei *length, GLchar *uniformBlockName); +GLAPI PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC glad_glGetActiveUniformBlockName; +#define glGetActiveUniformBlockName glad_glGetActiveUniformBlockName +typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC)(GLuint program, GLuint uniformBlockIndex, GLuint uniformBlockBinding); +GLAPI PFNGLUNIFORMBLOCKBINDINGPROC glad_glUniformBlockBinding; +#define glUniformBlockBinding glad_glUniformBlockBinding +#endif +#ifndef GL_VERSION_3_2 +#define GL_VERSION_3_2 1 +GLAPI int GLAD_GL_VERSION_3_2; +typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI PFNGLDRAWELEMENTSBASEVERTEXPROC glad_glDrawElementsBaseVertex; +#define glDrawElementsBaseVertex glad_glDrawElementsBaseVertex +typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GLAPI PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC glad_glDrawRangeElementsBaseVertex; +#define glDrawRangeElementsBaseVertex glad_glDrawRangeElementsBaseVertex +typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)(GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GLAPI PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC glad_glDrawElementsInstancedBaseVertex; +#define glDrawElementsInstancedBaseVertex glad_glDrawElementsInstancedBaseVertex +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)(GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +GLAPI PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC glad_glMultiDrawElementsBaseVertex; +#define glMultiDrawElementsBaseVertex glad_glMultiDrawElementsBaseVertex +typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC)(GLenum mode); +GLAPI PFNGLPROVOKINGVERTEXPROC glad_glProvokingVertex; +#define glProvokingVertex glad_glProvokingVertex +typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC)(GLenum condition, GLbitfield flags); +GLAPI PFNGLFENCESYNCPROC glad_glFenceSync; +#define glFenceSync glad_glFenceSync +typedef GLboolean (APIENTRYP PFNGLISSYNCPROC)(GLsync sync); +GLAPI PFNGLISSYNCPROC glad_glIsSync; +#define glIsSync glad_glIsSync +typedef void (APIENTRYP PFNGLDELETESYNCPROC)(GLsync sync); +GLAPI PFNGLDELETESYNCPROC glad_glDeleteSync; +#define glDeleteSync glad_glDeleteSync +typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC)(GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI PFNGLCLIENTWAITSYNCPROC glad_glClientWaitSync; +#define glClientWaitSync glad_glClientWaitSync +typedef void (APIENTRYP PFNGLWAITSYNCPROC)(GLsync sync, GLbitfield flags, GLuint64 timeout); +GLAPI PFNGLWAITSYNCPROC glad_glWaitSync; +#define glWaitSync glad_glWaitSync +typedef void (APIENTRYP PFNGLGETINTEGER64VPROC)(GLenum pname, GLint64 *data); +GLAPI PFNGLGETINTEGER64VPROC glad_glGetInteger64v; +#define glGetInteger64v glad_glGetInteger64v +typedef void (APIENTRYP PFNGLGETSYNCIVPROC)(GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +GLAPI PFNGLGETSYNCIVPROC glad_glGetSynciv; +#define glGetSynciv glad_glGetSynciv +typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC)(GLenum target, GLuint index, GLint64 *data); +GLAPI PFNGLGETINTEGER64I_VPROC glad_glGetInteger64i_v; +#define glGetInteger64i_v glad_glGetInteger64i_v +typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC)(GLenum target, GLenum pname, GLint64 *params); +GLAPI PFNGLGETBUFFERPARAMETERI64VPROC glad_glGetBufferParameteri64v; +#define glGetBufferParameteri64v glad_glGetBufferParameteri64v +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC)(GLenum target, GLenum attachment, GLuint texture, GLint level); +GLAPI PFNGLFRAMEBUFFERTEXTUREPROC glad_glFramebufferTexture; +#define glFramebufferTexture glad_glFramebufferTexture +typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI PFNGLTEXIMAGE2DMULTISAMPLEPROC glad_glTexImage2DMultisample; +#define glTexImage2DMultisample glad_glTexImage2DMultisample +typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI PFNGLTEXIMAGE3DMULTISAMPLEPROC glad_glTexImage3DMultisample; +#define glTexImage3DMultisample glad_glTexImage3DMultisample +typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC)(GLenum pname, GLuint index, GLfloat *val); +GLAPI PFNGLGETMULTISAMPLEFVPROC glad_glGetMultisamplefv; +#define glGetMultisamplefv glad_glGetMultisamplefv +typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC)(GLuint maskNumber, GLbitfield mask); +GLAPI PFNGLSAMPLEMASKIPROC glad_glSampleMaski; +#define glSampleMaski glad_glSampleMaski +#endif +#ifndef GL_VERSION_3_3 +#define GL_VERSION_3_3 1 +GLAPI int GLAD_GL_VERSION_3_3; +typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC)(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GLAPI PFNGLBINDFRAGDATALOCATIONINDEXEDPROC glad_glBindFragDataLocationIndexed; +#define glBindFragDataLocationIndexed glad_glBindFragDataLocationIndexed +typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC)(GLuint program, const GLchar *name); +GLAPI PFNGLGETFRAGDATAINDEXPROC glad_glGetFragDataIndex; +#define glGetFragDataIndex glad_glGetFragDataIndex +typedef void (APIENTRYP PFNGLGENSAMPLERSPROC)(GLsizei count, GLuint *samplers); +GLAPI PFNGLGENSAMPLERSPROC glad_glGenSamplers; +#define glGenSamplers glad_glGenSamplers +typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC)(GLsizei count, const GLuint *samplers); +GLAPI PFNGLDELETESAMPLERSPROC glad_glDeleteSamplers; +#define glDeleteSamplers glad_glDeleteSamplers +typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC)(GLuint sampler); +GLAPI PFNGLISSAMPLERPROC glad_glIsSampler; +#define glIsSampler glad_glIsSampler +typedef void (APIENTRYP PFNGLBINDSAMPLERPROC)(GLuint unit, GLuint sampler); +GLAPI PFNGLBINDSAMPLERPROC glad_glBindSampler; +#define glBindSampler glad_glBindSampler +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC)(GLuint sampler, GLenum pname, GLint param); +GLAPI PFNGLSAMPLERPARAMETERIPROC glad_glSamplerParameteri; +#define glSamplerParameteri glad_glSamplerParameteri +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC)(GLuint sampler, GLenum pname, const GLint *param); +GLAPI PFNGLSAMPLERPARAMETERIVPROC glad_glSamplerParameteriv; +#define glSamplerParameteriv glad_glSamplerParameteriv +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC)(GLuint sampler, GLenum pname, GLfloat param); +GLAPI PFNGLSAMPLERPARAMETERFPROC glad_glSamplerParameterf; +#define glSamplerParameterf glad_glSamplerParameterf +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC)(GLuint sampler, GLenum pname, const GLfloat *param); +GLAPI PFNGLSAMPLERPARAMETERFVPROC glad_glSamplerParameterfv; +#define glSamplerParameterfv glad_glSamplerParameterfv +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC)(GLuint sampler, GLenum pname, const GLint *param); +GLAPI PFNGLSAMPLERPARAMETERIIVPROC glad_glSamplerParameterIiv; +#define glSamplerParameterIiv glad_glSamplerParameterIiv +typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC)(GLuint sampler, GLenum pname, const GLuint *param); +GLAPI PFNGLSAMPLERPARAMETERIUIVPROC glad_glSamplerParameterIuiv; +#define glSamplerParameterIuiv glad_glSamplerParameterIuiv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC)(GLuint sampler, GLenum pname, GLint *params); +GLAPI PFNGLGETSAMPLERPARAMETERIVPROC glad_glGetSamplerParameteriv; +#define glGetSamplerParameteriv glad_glGetSamplerParameteriv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC)(GLuint sampler, GLenum pname, GLint *params); +GLAPI PFNGLGETSAMPLERPARAMETERIIVPROC glad_glGetSamplerParameterIiv; +#define glGetSamplerParameterIiv glad_glGetSamplerParameterIiv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC)(GLuint sampler, GLenum pname, GLfloat *params); +GLAPI PFNGLGETSAMPLERPARAMETERFVPROC glad_glGetSamplerParameterfv; +#define glGetSamplerParameterfv glad_glGetSamplerParameterfv +typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC)(GLuint sampler, GLenum pname, GLuint *params); +GLAPI PFNGLGETSAMPLERPARAMETERIUIVPROC glad_glGetSamplerParameterIuiv; +#define glGetSamplerParameterIuiv glad_glGetSamplerParameterIuiv +typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC)(GLuint id, GLenum target); +GLAPI PFNGLQUERYCOUNTERPROC glad_glQueryCounter; +#define glQueryCounter glad_glQueryCounter +typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC)(GLuint id, GLenum pname, GLint64 *params); +GLAPI PFNGLGETQUERYOBJECTI64VPROC glad_glGetQueryObjecti64v; +#define glGetQueryObjecti64v glad_glGetQueryObjecti64v +typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC)(GLuint id, GLenum pname, GLuint64 *params); +GLAPI PFNGLGETQUERYOBJECTUI64VPROC glad_glGetQueryObjectui64v; +#define glGetQueryObjectui64v glad_glGetQueryObjectui64v +typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC)(GLuint index, GLuint divisor); +GLAPI PFNGLVERTEXATTRIBDIVISORPROC glad_glVertexAttribDivisor; +#define glVertexAttribDivisor glad_glVertexAttribDivisor +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP1UIPROC glad_glVertexAttribP1ui; +#define glVertexAttribP1ui glad_glVertexAttribP1ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP1UIVPROC glad_glVertexAttribP1uiv; +#define glVertexAttribP1uiv glad_glVertexAttribP1uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP2UIPROC glad_glVertexAttribP2ui; +#define glVertexAttribP2ui glad_glVertexAttribP2ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP2UIVPROC glad_glVertexAttribP2uiv; +#define glVertexAttribP2uiv glad_glVertexAttribP2uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP3UIPROC glad_glVertexAttribP3ui; +#define glVertexAttribP3ui glad_glVertexAttribP3ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP3UIVPROC glad_glVertexAttribP3uiv; +#define glVertexAttribP3uiv glad_glVertexAttribP3uiv +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC)(GLuint index, GLenum type, GLboolean normalized, GLuint value); +GLAPI PFNGLVERTEXATTRIBP4UIPROC glad_glVertexAttribP4ui; +#define glVertexAttribP4ui glad_glVertexAttribP4ui +typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value); +GLAPI PFNGLVERTEXATTRIBP4UIVPROC glad_glVertexAttribP4uiv; +#define glVertexAttribP4uiv glad_glVertexAttribP4uiv +typedef void (APIENTRYP PFNGLVERTEXP2UIPROC)(GLenum type, GLuint value); +GLAPI PFNGLVERTEXP2UIPROC glad_glVertexP2ui; +#define glVertexP2ui glad_glVertexP2ui +typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC)(GLenum type, const GLuint *value); +GLAPI PFNGLVERTEXP2UIVPROC glad_glVertexP2uiv; +#define glVertexP2uiv glad_glVertexP2uiv +typedef void (APIENTRYP PFNGLVERTEXP3UIPROC)(GLenum type, GLuint value); +GLAPI PFNGLVERTEXP3UIPROC glad_glVertexP3ui; +#define glVertexP3ui glad_glVertexP3ui +typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC)(GLenum type, const GLuint *value); +GLAPI PFNGLVERTEXP3UIVPROC glad_glVertexP3uiv; +#define glVertexP3uiv glad_glVertexP3uiv +typedef void (APIENTRYP PFNGLVERTEXP4UIPROC)(GLenum type, GLuint value); +GLAPI PFNGLVERTEXP4UIPROC glad_glVertexP4ui; +#define glVertexP4ui glad_glVertexP4ui +typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC)(GLenum type, const GLuint *value); +GLAPI PFNGLVERTEXP4UIVPROC glad_glVertexP4uiv; +#define glVertexP4uiv glad_glVertexP4uiv +typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP1UIPROC glad_glTexCoordP1ui; +#define glTexCoordP1ui glad_glTexCoordP1ui +typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP1UIVPROC glad_glTexCoordP1uiv; +#define glTexCoordP1uiv glad_glTexCoordP1uiv +typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP2UIPROC glad_glTexCoordP2ui; +#define glTexCoordP2ui glad_glTexCoordP2ui +typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP2UIVPROC glad_glTexCoordP2uiv; +#define glTexCoordP2uiv glad_glTexCoordP2uiv +typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP3UIPROC glad_glTexCoordP3ui; +#define glTexCoordP3ui glad_glTexCoordP3ui +typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP3UIVPROC glad_glTexCoordP3uiv; +#define glTexCoordP3uiv glad_glTexCoordP3uiv +typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLTEXCOORDP4UIPROC glad_glTexCoordP4ui; +#define glTexCoordP4ui glad_glTexCoordP4ui +typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLTEXCOORDP4UIVPROC glad_glTexCoordP4uiv; +#define glTexCoordP4uiv glad_glTexCoordP4uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP1UIPROC glad_glMultiTexCoordP1ui; +#define glMultiTexCoordP1ui glad_glMultiTexCoordP1ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP1UIVPROC glad_glMultiTexCoordP1uiv; +#define glMultiTexCoordP1uiv glad_glMultiTexCoordP1uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP2UIPROC glad_glMultiTexCoordP2ui; +#define glMultiTexCoordP2ui glad_glMultiTexCoordP2ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP2UIVPROC glad_glMultiTexCoordP2uiv; +#define glMultiTexCoordP2uiv glad_glMultiTexCoordP2uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP3UIPROC glad_glMultiTexCoordP3ui; +#define glMultiTexCoordP3ui glad_glMultiTexCoordP3ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP3UIVPROC glad_glMultiTexCoordP3uiv; +#define glMultiTexCoordP3uiv glad_glMultiTexCoordP3uiv +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC)(GLenum texture, GLenum type, GLuint coords); +GLAPI PFNGLMULTITEXCOORDP4UIPROC glad_glMultiTexCoordP4ui; +#define glMultiTexCoordP4ui glad_glMultiTexCoordP4ui +typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC)(GLenum texture, GLenum type, const GLuint *coords); +GLAPI PFNGLMULTITEXCOORDP4UIVPROC glad_glMultiTexCoordP4uiv; +#define glMultiTexCoordP4uiv glad_glMultiTexCoordP4uiv +typedef void (APIENTRYP PFNGLNORMALP3UIPROC)(GLenum type, GLuint coords); +GLAPI PFNGLNORMALP3UIPROC glad_glNormalP3ui; +#define glNormalP3ui glad_glNormalP3ui +typedef void (APIENTRYP PFNGLNORMALP3UIVPROC)(GLenum type, const GLuint *coords); +GLAPI PFNGLNORMALP3UIVPROC glad_glNormalP3uiv; +#define glNormalP3uiv glad_glNormalP3uiv +typedef void (APIENTRYP PFNGLCOLORP3UIPROC)(GLenum type, GLuint color); +GLAPI PFNGLCOLORP3UIPROC glad_glColorP3ui; +#define glColorP3ui glad_glColorP3ui +typedef void (APIENTRYP PFNGLCOLORP3UIVPROC)(GLenum type, const GLuint *color); +GLAPI PFNGLCOLORP3UIVPROC glad_glColorP3uiv; +#define glColorP3uiv glad_glColorP3uiv +typedef void (APIENTRYP PFNGLCOLORP4UIPROC)(GLenum type, GLuint color); +GLAPI PFNGLCOLORP4UIPROC glad_glColorP4ui; +#define glColorP4ui glad_glColorP4ui +typedef void (APIENTRYP PFNGLCOLORP4UIVPROC)(GLenum type, const GLuint *color); +GLAPI PFNGLCOLORP4UIVPROC glad_glColorP4uiv; +#define glColorP4uiv glad_glColorP4uiv +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC)(GLenum type, GLuint color); +GLAPI PFNGLSECONDARYCOLORP3UIPROC glad_glSecondaryColorP3ui; +#define glSecondaryColorP3ui glad_glSecondaryColorP3ui +typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC)(GLenum type, const GLuint *color); +GLAPI PFNGLSECONDARYCOLORP3UIVPROC glad_glSecondaryColorP3uiv; +#define glSecondaryColorP3uiv glad_glSecondaryColorP3uiv +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/include/glm/.gitignore b/include/glm/.gitignore new file mode 100644 index 0000000..c2be5e8 --- /dev/null +++ b/include/glm/.gitignore @@ -0,0 +1,62 @@ +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# CMake +CMakeCache.txt +CMakeFiles +cmake_install.cmake +install_manifest.txt +*.cmake +!glmConfig.cmake +!glmConfig-version.cmake +# ^ May need to add future .cmake files as exceptions + +# Test logs +Testing/* + +# Test input +test/gtc/*.dds + +# Project Files +Makefile +*.cbp +*.user +.idea/ + +# Misc. +*.log + +# local build(s) +build* + +/.vs +/.vscode +/CMakeSettings.json +.DS_Store +*.swp diff --git a/include/glm/CMakeLists.txt b/include/glm/CMakeLists.txt new file mode 100644 index 0000000..f026fb5 --- /dev/null +++ b/include/glm/CMakeLists.txt @@ -0,0 +1,304 @@ +# 3.6 is the actual minimun. 3.14 as the upper policy limit avoids CMake deprecation warnings. +cmake_minimum_required(VERSION 3.6...3.14 FATAL_ERROR) +cmake_policy(VERSION 3.6...3.14) + +file(READ "glm/detail/setup.hpp" GLM_SETUP_FILE) +string(REGEX MATCH "#define[ ]+GLM_VERSION_MAJOR[ ]+([0-9]+)" _ ${GLM_SETUP_FILE}) +set(GLM_VERSION_MAJOR "${CMAKE_MATCH_1}") +string(REGEX MATCH "#define[ ]+GLM_VERSION_MINOR[ ]+([0-9]+)" _ ${GLM_SETUP_FILE}) +set(GLM_VERSION_MINOR "${CMAKE_MATCH_1}") +string(REGEX MATCH "#define[ ]+GLM_VERSION_PATCH[ ]+([0-9]+)" _ ${GLM_SETUP_FILE}) +set(GLM_VERSION_PATCH "${CMAKE_MATCH_1}") +string(REGEX MATCH "#define[ ]+GLM_VERSION_REVISION[ ]+([0-9]+)" _ ${GLM_SETUP_FILE}) +set(GLM_VERSION_REVISION "${CMAKE_MATCH_1}") + +set(GLM_VERSION ${GLM_VERSION_MAJOR}.${GLM_VERSION_MINOR}.${GLM_VERSION_PATCH}) +project(glm VERSION ${GLM_VERSION} LANGUAGES CXX) +message(STATUS "GLM: Version " ${GLM_VERSION}) + +set(GLM_IS_MASTER_PROJECT OFF) +if (${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}) + set(GLM_IS_MASTER_PROJECT ON) +endif() + +option(GLM_BUILD_LIBRARY "Build dynamic/static library" ON) +option(GLM_BUILD_TESTS "Build the test programs" OFF) +option(GLM_BUILD_INSTALL "Generate the install target" ${GLM_IS_MASTER_PROJECT}) + +include(GNUInstallDirs) + +option(GLM_ENABLE_CXX_98 "Enable C++ 98" OFF) +option(GLM_ENABLE_CXX_11 "Enable C++ 11" OFF) +option(GLM_ENABLE_CXX_14 "Enable C++ 14" OFF) +option(GLM_ENABLE_CXX_17 "Enable C++ 17" OFF) +option(GLM_ENABLE_CXX_20 "Enable C++ 20" OFF) + +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +if(GLM_ENABLE_CXX_20) + set(CMAKE_CXX_STANDARD 20) + add_definitions(-DGLM_FORCE_CXX20) + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + message(STATUS "GLM: Disable -Wc++98-compat warnings") + add_compile_options(-Wno-c++98-compat) + add_compile_options(-Wno-c++98-compat-pedantic) + add_compile_options(-Wno-switch-default) + endif() + if(NOT GLM_QUIET) + message(STATUS "GLM: Build with C++20 features") + endif() + +elseif(GLM_ENABLE_CXX_17) + set(CMAKE_CXX_STANDARD 17) + add_definitions(-DGLM_FORCE_CXX17) + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + message(STATUS "GLM: Disable -Wc++98-compat warnings") + add_compile_options(-Wno-c++98-compat) + add_compile_options(-Wno-c++98-compat-pedantic) + add_compile_options(-Wno-switch-default) + endif() + if(NOT GLM_QUIET) + message(STATUS "GLM: Build with C++17 features") + endif() + +elseif(GLM_ENABLE_CXX_14) + set(CMAKE_CXX_STANDARD 14) + add_definitions(-DGLM_FORCE_CXX14) + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + message(STATUS "GLM: Disable -Wc++98-compat warnings") + add_compile_options(-Wno-c++98-compat) + add_compile_options(-Wno-c++98-compat-pedantic) + add_compile_options(-Wno-switch-default) + endif() + if(NOT GLM_QUIET) + message(STATUS "GLM: Build with C++14 features") + endif() + +elseif(GLM_ENABLE_CXX_11) + set(CMAKE_CXX_STANDARD 11) + add_definitions(-DGLM_FORCE_CXX11) + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + message(STATUS "GLM: Disable -Wc++98-compat warnings") + add_compile_options(-Wno-c++98-compat) + add_compile_options(-Wno-c++98-compat-pedantic) + add_compile_options(-Wno-switch-default) + endif() + if(NOT GLM_QUIET) + message(STATUS "GLM: Build with C++11 features") + endif() + +elseif(GLM_ENABLE_CXX_98) + set(CMAKE_CXX_STANDARD 98) + add_definitions(-DGLM_FORCE_CXX98) + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + add_compile_options(-Wno-switch-default) + endif() + if(NOT GLM_QUIET) + message(STATUS "GLM: Build with C++98 features") + endif() + +else() + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + message(STATUS "GLM: Disable -Wc++98-compat warnings") + add_compile_options(-Wno-c++98-compat) + add_compile_options(-Wno-c++98-compat-pedantic) + add_compile_options(-Wno-switch-default) + endif() + if(NOT GLM_QUIET) + message(STATUS "GLM: Build with C++ features auto detection") + endif() + +endif() + +option(GLM_ENABLE_LANG_EXTENSIONS "Enable language extensions" OFF) +option(GLM_DISABLE_AUTO_DETECTION "Disable platform, compiler, arch and C++ language detection" OFF) + +if(GLM_DISABLE_AUTO_DETECTION) + add_definitions(-DGLM_FORCE_PLATFORM_UNKNOWN -DGLM_FORCE_COMPILER_UNKNOWN -DGLM_FORCE_ARCH_UNKNOWN -DGLM_FORCE_CXX_UNKNOWN) +endif() + +if(GLM_ENABLE_LANG_EXTENSIONS) + set(CMAKE_CXX_EXTENSIONS ON) + if((CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR (CMAKE_CXX_COMPILER_ID MATCHES "GNU")) + add_compile_options(-fms-extensions) + endif() + message(STATUS "GLM: Build with C++ language extensions") +else() + set(CMAKE_CXX_EXTENSIONS OFF) + if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + add_compile_options(/Za) + if(MSVC15) + add_compile_options(/permissive-) + endif() + endif() +endif() + +option(GLM_ENABLE_FAST_MATH "Enable fast math optimizations" OFF) +if(GLM_ENABLE_FAST_MATH) + if(NOT GLM_QUIET) + message(STATUS "GLM: Build with fast math optimizations") + endif() + + if((CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR (CMAKE_CXX_COMPILER_ID MATCHES "GNU")) + add_compile_options(-ffast-math) + + elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + add_compile_options(/fp:fast) + endif() +else() + if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + add_compile_options(/fp:precise) + endif() +endif() + +option(GLM_ENABLE_SIMD_SSE2 "Enable SSE2 optimizations" OFF) +option(GLM_ENABLE_SIMD_SSE3 "Enable SSE3 optimizations" OFF) +option(GLM_ENABLE_SIMD_SSSE3 "Enable SSSE3 optimizations" OFF) +option(GLM_ENABLE_SIMD_SSE4_1 "Enable SSE 4.1 optimizations" OFF) +option(GLM_ENABLE_SIMD_SSE4_2 "Enable SSE 4.2 optimizations" OFF) +option(GLM_ENABLE_SIMD_AVX "Enable AVX optimizations" OFF) +option(GLM_ENABLE_SIMD_AVX2 "Enable AVX2 optimizations" OFF) +option(GLM_ENABLE_SIMD_NEON "Enable ARM NEON optimizations" OFF) +option(GLM_FORCE_PURE "Force 'pure' instructions" OFF) + +if(GLM_FORCE_PURE) + add_definitions(-DGLM_FORCE_PURE) + + if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") + add_compile_options(-mfpmath=387) + endif() + message(STATUS "GLM: No SIMD instruction set") + +elseif(GLM_ENABLE_SIMD_AVX2) + add_definitions(-DGLM_FORCE_INTRINSICS) + + if((CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) + add_compile_options(-mavx2) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel") + add_compile_options(/QxAVX2) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + add_compile_options(/arch:AVX2) + endif() + message(STATUS "GLM: AVX2 instruction set") + +elseif(GLM_ENABLE_SIMD_AVX) + add_definitions(-DGLM_FORCE_INTRINSICS) + + if((CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) + add_compile_options(-mavx) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel") + add_compile_options(/QxAVX) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + add_compile_options(/arch:AVX) + endif() + message(STATUS "GLM: AVX instruction set") + +elseif(GLM_ENABLE_SIMD_SSE4_2) + add_definitions(-DGLM_FORCE_INTRINSICS) + + if((CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) + add_compile_options(-msse4.2) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel") + add_compile_options(/QxSSE4.2) + elseif((CMAKE_CXX_COMPILER_ID MATCHES "MSVC") AND NOT CMAKE_CL_64) + add_compile_options(/arch:SSE4.2) + endif() + message(STATUS "GLM: SSE4.2 instruction set") + +elseif(GLM_ENABLE_SIMD_SSE4_1) + add_definitions(-DGLM_FORCE_INTRINSICS) + + if((CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) + add_compile_options(-msse4.1) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel") + add_compile_options(/QxSSE4.1) + elseif((CMAKE_CXX_COMPILER_ID MATCHES "MSVC") AND NOT CMAKE_CL_64) + add_compile_options(/arch:SSE2) # VC doesn't support SSE4.1 + endif() + message(STATUS "GLM: SSE4.1 instruction set") + +elseif(GLM_ENABLE_SIMD_SSSE3) + add_definitions(-DGLM_FORCE_INTRINSICS) + + if((CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) + add_compile_options(-mssse3) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel") + add_compile_options(/QxSSSE3) + elseif((CMAKE_CXX_COMPILER_ID MATCHES "MSVC") AND NOT CMAKE_CL_64) + add_compile_options(/arch:SSE2) # VC doesn't support SSSE3 + endif() + message(STATUS "GLM: SSSE3 instruction set") + +elseif(GLM_ENABLE_SIMD_SSE3) + add_definitions(-DGLM_FORCE_INTRINSICS) + + if((CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) + add_compile_options(-msse3) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel") + add_compile_options(/QxSSE3) + elseif((CMAKE_CXX_COMPILER_ID MATCHES "MSVC") AND NOT CMAKE_CL_64) + add_compile_options(/arch:SSE2) # VC doesn't support SSE3 + endif() + message(STATUS "GLM: SSE3 instruction set") + +elseif(GLM_ENABLE_SIMD_SSE2) + add_definitions(-DGLM_FORCE_INTRINSICS) + + if((CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR (CMAKE_CXX_COMPILER_ID MATCHES "Clang")) + add_compile_options(-msse2) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Intel") + add_compile_options(/QxSSE2) + elseif((CMAKE_CXX_COMPILER_ID MATCHES "MSVC") AND NOT CMAKE_CL_64) + add_compile_options(/arch:SSE2) + endif() + message(STATUS "GLM: SSE2 instruction set") +elseif(GLM_ENABLE_SIMD_NEON) + add_definitions(-DGLM_FORCE_INTRINSICS) + + message(STATUS "GLM: ARM NEON instruction set") +endif() + +add_subdirectory(glm) + +if (GLM_BUILD_TESTS) + include(CTest) + add_subdirectory(test) +endif() + +if (GLM_BUILD_INSTALL) + include(CPack) + + install(TARGETS glm-header-only glm EXPORT glm) + install( + DIRECTORY glm + DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" + PATTERN "CMakeLists.txt" EXCLUDE + ) + install( + EXPORT glm + NAMESPACE glm:: + DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/glm" + FILE glmConfig.cmake + ) + include(CMakePackageConfigHelpers) + write_basic_package_version_file( + "${CMAKE_CURRENT_BINARY_DIR}/glmConfigVersion.cmake" + COMPATIBILITY AnyNewerVersion + ) + install( + FILES "${CMAKE_CURRENT_BINARY_DIR}/glmConfigVersion.cmake" + DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/glm" + ) + + configure_file( + "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in" + "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" + IMMEDIATE @ONLY + ) + + add_custom_target( + uninstall + "${CMAKE_COMMAND}" -P + "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" + ) +endif() diff --git a/include/glm/cmake/cmake_uninstall.cmake.in b/include/glm/cmake/cmake_uninstall.cmake.in new file mode 100644 index 0000000..f3005c1 --- /dev/null +++ b/include/glm/cmake/cmake_uninstall.cmake.in @@ -0,0 +1,21 @@ +if(NOT EXISTS "@CMAKE_BINARY_DIR@/install_manifest.txt") + message(FATAL_ERROR "Cannot find install manifest: @CMAKE_BINARY_DIR@/install_manifest.txt") +endif() + +file(READ "@CMAKE_BINARY_DIR@/install_manifest.txt" files) +string(REGEX REPLACE "\n" ";" files "${files}") +foreach(file ${files}) + message(STATUS "Uninstalling $ENV{DESTDIR}${file}") + if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}") + exec_program( + "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" + OUTPUT_VARIABLE rm_out + RETURN_VALUE rm_retval + ) + if(NOT "${rm_retval}" STREQUAL 0) + message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}") + endif() + else(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}") + message(STATUS "File $ENV{DESTDIR}${file} does not exist.") + endif() +endforeach() diff --git a/include/glm/copying.txt b/include/glm/copying.txt new file mode 100644 index 0000000..5c43d39 --- /dev/null +++ b/include/glm/copying.txt @@ -0,0 +1,54 @@ +================================================================================ +OpenGL Mathematics (GLM) +-------------------------------------------------------------------------------- +GLM is licensed under The Happy Bunny License or MIT License + +================================================================================ +The Happy Bunny License (Modified MIT License) +-------------------------------------------------------------------------------- +Copyright (c) 2005 - G-Truc Creation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +Restrictions: + By making use of the Software for military purposes, you choose to make a + Bunny unhappy. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +================================================================================ +The MIT License +-------------------------------------------------------------------------------- +Copyright (c) 2005 - G-Truc Creation + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/include/glm/doc/api/a00002.html b/include/glm/doc/api/a00002.html new file mode 100644 index 0000000..12bcdb9 --- /dev/null +++ b/include/glm/doc/api/a00002.html @@ -0,0 +1,249 @@ + + + + + + + +1.0.2 API documentation: common.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
common.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType abs (genType x)
 Returns x if x >= 0; otherwise, it returns -x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > abs (vec< L, T, Q > const &x)
 Returns x if x >= 0; otherwise, it returns -x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > ceil (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer that is greater than or equal to x. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType clamp (genType x, genType minVal, genType maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > clamp (vec< L, T, Q > const &x, T minVal, T maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > clamp (vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. More...
 
GLM_FUNC_DECL int floatBitsToInt (float v)
 Returns a signed integer value representing the encoding of a floating-point value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > floatBitsToInt (vec< L, float, Q > const &v)
 Returns a signed integer value representing the encoding of a floating-point value. More...
 
GLM_FUNC_DECL uint floatBitsToUint (float v)
 Returns a unsigned integer value representing the encoding of a floating-point value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, uint, Q > floatBitsToUint (vec< L, float, Q > const &v)
 Returns a unsigned integer value representing the encoding of a floating-point value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > floor (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer that is less then or equal to x. More...
 
template<typename genType >
GLM_FUNC_DECL genType fma (genType const &a, genType const &b, genType const &c)
 Computes and returns a * b + c. More...
 
template<typename genType >
GLM_FUNC_DECL genType fract (genType x)
 Return x - floor(x). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fract (vec< L, T, Q > const &x)
 Return x - floor(x). More...
 
template<typename genType >
GLM_FUNC_DECL genType frexp (genType x, int &exp)
 Splits x into a floating-point significand in the range [0.5, 1.0) and an integral exponent of two, such that: x = significand * exp(2, exponent) More...
 
GLM_FUNC_DECL float intBitsToFloat (int v)
 Returns a floating-point value corresponding to a signed integer encoding of a floating-point value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, float, Q > intBitsToFloat (vec< L, int, Q > const &v)
 Returns a floating-point value corresponding to a signed integer encoding of a floating-point value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isinf (vec< L, T, Q > const &x)
 Returns true if x holds a positive infinity or negative infinity representation in the underlying implementation's set of floating point representations. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isnan (vec< L, T, Q > const &x)
 Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of floating point representations. More...
 
template<typename genType >
GLM_FUNC_DECL genType ldexp (genType const &x, int const &exp)
 Builds a floating-point number from x and the corresponding integral exponent of two in exp, returning: significand * exp(2, exponent) More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType max (genType x, genType y)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max (vec< L, T, Q > const &x, T y)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns y if x < y; otherwise, it returns x. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType min (genType x, genType y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min (vec< L, T, Q > const &x, T y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<typename genTypeT , typename genTypeU >
GLM_FUNC_DECL GLM_CONSTEXPR genTypeT mix (genTypeT x, genTypeT y, genTypeU a)
 If genTypeU is a floating scalar or vector: Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > mod (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Modulus. More...
 
template<typename genType >
GLM_FUNC_DECL genType modf (genType x, genType &i)
 Returns the fractional part of x and sets i to the integer part (as a whole number floating point value). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > round (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > roundEven (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > sign (vec< L, T, Q > const &x)
 Returns 1.0 if x > 0, 0.0 if x == 0, or -1.0 if x < 0. More...
 
template<typename genType >
GLM_FUNC_DECL genType smoothstep (genType edge0, genType edge1, genType x)
 Returns 0.0 if x <= edge0 and 1.0 if x >= edge1 and performs smooth Hermite interpolation between 0 and 1 when edge0 < x < edge1. More...
 
template<typename genType >
GLM_FUNC_DECL genType step (genType edge, genType x)
 Returns 0.0 if x < edge, otherwise it returns 1.0 for each component of a genType. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > step (T edge, vec< L, T, Q > const &x)
 Returns 0.0 if x < edge, otherwise it returns 1.0. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > step (vec< L, T, Q > const &edge, vec< L, T, Q > const &x)
 Returns 0.0 if x < edge, otherwise it returns 1.0. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > trunc (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x whose absolute value is not larger than the absolute value of x. More...
 
GLM_FUNC_DECL float uintBitsToFloat (uint v)
 Returns a floating-point value corresponding to a unsigned integer encoding of a floating-point value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, float, Q > uintBitsToFloat (vec< L, uint, Q > const &v)
 Returns a floating-point value corresponding to a unsigned integer encoding of a floating-point value. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00002_source.html b/include/glm/doc/api/a00002_source.html new file mode 100644 index 0000000..aa4c14a --- /dev/null +++ b/include/glm/doc/api/a00002_source.html @@ -0,0 +1,257 @@ + + + + + + + +1.0.2 API documentation: common.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
common.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 #include "detail/qualifier.hpp"
+
18 #include "detail/_fixes.hpp"
+
19 
+
20 namespace glm
+
21 {
+
24 
+
31  template<typename genType>
+
32  GLM_FUNC_DECL GLM_CONSTEXPR genType abs(genType x);
+
33 
+
42  template<length_t L, typename T, qualifier Q>
+
43  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> abs(vec<L, T, Q> const& x);
+
44 
+
53  template<length_t L, typename T, qualifier Q>
+
54  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> sign(vec<L, T, Q> const& x);
+
55 
+
64  template<length_t L, typename T, qualifier Q>
+
65  GLM_FUNC_DECL vec<L, T, Q> floor(vec<L, T, Q> const& x);
+
66 
+
76  template<length_t L, typename T, qualifier Q>
+
77  GLM_FUNC_DECL vec<L, T, Q> trunc(vec<L, T, Q> const& x);
+
78 
+
91  template<length_t L, typename T, qualifier Q>
+
92  GLM_FUNC_DECL vec<L, T, Q> round(vec<L, T, Q> const& x);
+
93 
+
105  template<length_t L, typename T, qualifier Q>
+
106  GLM_FUNC_DECL vec<L, T, Q> roundEven(vec<L, T, Q> const& x);
+
107 
+
117  template<length_t L, typename T, qualifier Q>
+
118  GLM_FUNC_DECL vec<L, T, Q> ceil(vec<L, T, Q> const& x);
+
119 
+
126  template<typename genType>
+
127  GLM_FUNC_DECL genType fract(genType x);
+
128 
+
137  template<length_t L, typename T, qualifier Q>
+
138  GLM_FUNC_DECL vec<L, T, Q> fract(vec<L, T, Q> const& x);
+
139 
+
140  template<typename genType>
+
141  GLM_FUNC_DECL genType mod(genType x, genType y);
+
142 
+
143  template<length_t L, typename T, qualifier Q>
+
144  GLM_FUNC_DECL vec<L, T, Q> mod(vec<L, T, Q> const& x, T y);
+
145 
+
155  template<length_t L, typename T, qualifier Q>
+
156  GLM_FUNC_DECL vec<L, T, Q> mod(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
157 
+
167  template<typename genType>
+
168  GLM_FUNC_DECL genType modf(genType x, genType& i);
+
169 
+
176  template<typename genType>
+
177  GLM_FUNC_DECL GLM_CONSTEXPR genType min(genType x, genType y);
+
178 
+
187  template<length_t L, typename T, qualifier Q>
+
188  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> min(vec<L, T, Q> const& x, T y);
+
189 
+
198  template<length_t L, typename T, qualifier Q>
+
199  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> min(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
200 
+
207  template<typename genType>
+
208  GLM_FUNC_DECL GLM_CONSTEXPR genType max(genType x, genType y);
+
209 
+
218  template<length_t L, typename T, qualifier Q>
+
219  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> max(vec<L, T, Q> const& x, T y);
+
220 
+
229  template<length_t L, typename T, qualifier Q>
+
230  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> max(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
231 
+
239  template<typename genType>
+
240  GLM_FUNC_DECL GLM_CONSTEXPR genType clamp(genType x, genType minVal, genType maxVal);
+
241 
+
251  template<length_t L, typename T, qualifier Q>
+
252  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> clamp(vec<L, T, Q> const& x, T minVal, T maxVal);
+
253 
+
263  template<length_t L, typename T, qualifier Q>
+
264  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> clamp(vec<L, T, Q> const& x, vec<L, T, Q> const& minVal, vec<L, T, Q> const& maxVal);
+
265 
+
308  template<typename genTypeT, typename genTypeU>
+
309  GLM_FUNC_DECL GLM_CONSTEXPR genTypeT mix(genTypeT x, genTypeT y, genTypeU a);
+
310 
+
311  template<length_t L, typename T, typename U, qualifier Q>
+
312  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> mix(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, U, Q> const& a);
+
313 
+
314  template<length_t L, typename T, typename U, qualifier Q>
+
315  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> mix(vec<L, T, Q> const& x, vec<L, T, Q> const& y, U a);
+
316 
+
321  template<typename genType>
+
322  GLM_FUNC_DECL genType step(genType edge, genType x);
+
323 
+
332  template<length_t L, typename T, qualifier Q>
+
333  GLM_FUNC_DECL vec<L, T, Q> step(T edge, vec<L, T, Q> const& x);
+
334 
+
343  template<length_t L, typename T, qualifier Q>
+
344  GLM_FUNC_DECL vec<L, T, Q> step(vec<L, T, Q> const& edge, vec<L, T, Q> const& x);
+
345 
+
360  template<typename genType>
+
361  GLM_FUNC_DECL genType smoothstep(genType edge0, genType edge1, genType x);
+
362 
+
363  template<length_t L, typename T, qualifier Q>
+
364  GLM_FUNC_DECL vec<L, T, Q> smoothstep(T edge0, T edge1, vec<L, T, Q> const& x);
+
365 
+
366  template<length_t L, typename T, qualifier Q>
+
367  GLM_FUNC_DECL vec<L, T, Q> smoothstep(vec<L, T, Q> const& edge0, vec<L, T, Q> const& edge1, vec<L, T, Q> const& x);
+
368 
+
383  template<length_t L, typename T, qualifier Q>
+
384  GLM_FUNC_DECL vec<L, bool, Q> isnan(vec<L, T, Q> const& x);
+
385 
+
398  template<length_t L, typename T, qualifier Q>
+
399  GLM_FUNC_DECL vec<L, bool, Q> isinf(vec<L, T, Q> const& x);
+
400 
+
407  GLM_FUNC_DECL int floatBitsToInt(float v);
+
408 
+
418  template<length_t L, qualifier Q>
+
419  GLM_FUNC_DECL vec<L, int, Q> floatBitsToInt(vec<L, float, Q> const& v);
+
420 
+
427  GLM_FUNC_DECL uint floatBitsToUint(float v);
+
428 
+
438  template<length_t L, qualifier Q>
+
439  GLM_FUNC_DECL vec<L, uint, Q> floatBitsToUint(vec<L, float, Q> const& v);
+
440 
+
449  GLM_FUNC_DECL float intBitsToFloat(int v);
+
450 
+
462  template<length_t L, qualifier Q>
+
463  GLM_FUNC_DECL vec<L, float, Q> intBitsToFloat(vec<L, int, Q> const& v);
+
464 
+
473  GLM_FUNC_DECL float uintBitsToFloat(uint v);
+
474 
+
486  template<length_t L, qualifier Q>
+
487  GLM_FUNC_DECL vec<L, float, Q> uintBitsToFloat(vec<L, uint, Q> const& v);
+
488 
+
495  template<typename genType>
+
496  GLM_FUNC_DECL genType fma(genType const& a, genType const& b, genType const& c);
+
497 
+
512  template<typename genType>
+
513  GLM_FUNC_DECL genType frexp(genType x, int& exp);
+
514 
+
515  template<length_t L, typename T, qualifier Q>
+
516  GLM_FUNC_DECL vec<L, T, Q> frexp(vec<L, T, Q> const& v, vec<L, int, Q>& exp);
+
517 
+
529  template<typename genType>
+
530  GLM_FUNC_DECL genType ldexp(genType const& x, int const& exp);
+
531 
+
532  template<length_t L, typename T, qualifier Q>
+
533  GLM_FUNC_DECL vec<L, T, Q> ldexp(vec<L, T, Q> const& v, vec<L, int, Q> const& exp);
+
534 
+
536 }//namespace glm
+
537 
+
538 #include "detail/func_common.inl"
+
539 
+
+
GLM_FUNC_DECL genType smoothstep(genType edge0, genType edge1, genType x)
Returns 0.0 if x <= edge0 and 1.0 if x >= edge1 and performs smooth Hermite interpolation between 0 a...
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > abs(vec< L, T, Q > const &x)
Returns x if x >= 0; otherwise, it returns -x.
+
GLM_FUNC_DECL genType ldexp(genType const &x, int const &exp)
Builds a floating-point number from x and the corresponding integral exponent of two in exp,...
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > clamp(vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)
Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal an...
+
GLM_FUNC_DECL vec< L, T, Q > step(vec< L, T, Q > const &edge, vec< L, T, Q > const &x)
Returns 0.0 if x < edge, otherwise it returns 1.0.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns y if y < x; otherwise, it returns x.
+
GLM_FUNC_DECL genType frexp(genType x, int &exp)
Splits x into a floating-point significand in the range [0.5, 1.0) and an integral exponent of two,...
+
GLM_FUNC_DECL vec< L, T, Q > ceil(vec< L, T, Q > const &x)
Returns a value equal to the nearest integer that is greater than or equal to x.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > sign(vec< L, T, Q > const &x)
Returns 1.0 if x > 0, 0.0 if x == 0, or -1.0 if x < 0.
+
GLM_FUNC_DECL vec< L, T, Q > round(vec< L, T, Q > const &x)
Returns a value equal to the nearest integer to x.
+
GLM_FUNC_DECL vec< L, uint, Q > floatBitsToUint(vec< L, float, Q > const &v)
Returns a unsigned integer value representing the encoding of a floating-point value.
+
GLM_FUNC_DECL vec< L, T, Q > roundEven(vec< L, T, Q > const &x)
Returns a value equal to the nearest integer to x.
+
GLM_FUNC_DECL vec< L, bool, Q > isinf(vec< L, T, Q > const &x)
Returns true if x holds a positive infinity or negative infinity representation in the underlying imp...
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns y if x < y; otherwise, it returns x.
+
GLM_FUNC_DECL vec< L, T, Q > exp(vec< L, T, Q > const &v)
Returns the natural exponentiation of v, i.e., e^v.
+
GLM_FUNC_DECL genType modf(genType x, genType &i)
Returns the fractional part of x and sets i to the integer part (as a whole number floating point val...
+
GLM_FUNC_DECL GLM_CONSTEXPR genTypeT mix(genTypeT x, genTypeT y, genTypeU a)
If genTypeU is a floating scalar or vector: Returns x * (1.0 - a) + y * a, i.e., the linear blend of ...
+
GLM_FUNC_DECL vec< L, T, Q > floor(vec< L, T, Q > const &x)
Returns a value equal to the nearest integer that is less then or equal to x.
+
GLM_FUNC_DECL vec< L, bool, Q > isnan(vec< L, T, Q > const &x)
Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of...
+
GLM_FUNC_DECL vec< L, T, Q > fract(vec< L, T, Q > const &x)
Return x - floor(x).
+
GLM_FUNC_DECL vec< L, int, Q > floatBitsToInt(vec< L, float, Q > const &v)
Returns a signed integer value representing the encoding of a floating-point value.
+
GLM_FUNC_DECL genType fma(genType const &a, genType const &b, genType const &c)
Computes and returns a * b + c.
+
GLM_FUNC_DECL vec< L, float, Q > uintBitsToFloat(vec< L, uint, Q > const &v)
Returns a floating-point value corresponding to a unsigned integer encoding of a floating-point value...
+
GLM_FUNC_DECL vec< L, float, Q > intBitsToFloat(vec< L, int, Q > const &v)
Returns a floating-point value corresponding to a signed integer encoding of a floating-point value.
+
GLM_FUNC_DECL vec< L, T, Q > mod(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Modulus.
+
GLM_FUNC_DECL vec< L, T, Q > trunc(vec< L, T, Q > const &x)
Returns a value equal to the nearest integer to x whose absolute value is not larger than the absolut...
+ + + + diff --git a/include/glm/doc/api/a00005_source.html b/include/glm/doc/api/a00005_source.html new file mode 100644 index 0000000..8a81564 --- /dev/null +++ b/include/glm/doc/api/a00005_source.html @@ -0,0 +1,475 @@ + + + + + + + +1.0.2 API documentation: _features.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
_features.hpp
+
+
+
1 #pragma once
+
2 
+
3 // #define GLM_CXX98_EXCEPTIONS
+
4 // #define GLM_CXX98_RTTI
+
5 
+
6 // #define GLM_CXX11_RVALUE_REFERENCES
+
7 // Rvalue references - GCC 4.3
+
8 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2118.html
+
9 
+
10 // GLM_CXX11_TRAILING_RETURN
+
11 // Rvalue references for *this - GCC not supported
+
12 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2439.htm
+
13 
+
14 // GLM_CXX11_NONSTATIC_MEMBER_INIT
+
15 // Initialization of class objects by rvalues - GCC any
+
16 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1610.html
+
17 
+
18 // GLM_CXX11_NONSTATIC_MEMBER_INIT
+
19 // Non-static data member initializers - GCC 4.7
+
20 // http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2756.htm
+
21 
+
22 // #define GLM_CXX11_VARIADIC_TEMPLATE
+
23 // Variadic templates - GCC 4.3
+
24 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2242.pdf
+
25 
+
26 //
+
27 // Extending variadic template template parameters - GCC 4.4
+
28 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2555.pdf
+
29 
+
30 // #define GLM_CXX11_GENERALIZED_INITIALIZERS
+
31 // Initializer lists - GCC 4.4
+
32 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2672.htm
+
33 
+
34 // #define GLM_CXX11_STATIC_ASSERT
+
35 // Static assertions - GCC 4.3
+
36 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1720.html
+
37 
+
38 // #define GLM_CXX11_AUTO_TYPE
+
39 // auto-typed variables - GCC 4.4
+
40 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1984.pdf
+
41 
+
42 // #define GLM_CXX11_AUTO_TYPE
+
43 // Multi-declarator auto - GCC 4.4
+
44 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1737.pdf
+
45 
+
46 // #define GLM_CXX11_AUTO_TYPE
+
47 // Removal of auto as a storage-class specifier - GCC 4.4
+
48 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2546.htm
+
49 
+
50 // #define GLM_CXX11_AUTO_TYPE
+
51 // New function declarator syntax - GCC 4.4
+
52 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2541.htm
+
53 
+
54 // #define GLM_CXX11_LAMBDAS
+
55 // New wording for C++0x lambdas - GCC 4.5
+
56 // http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2927.pdf
+
57 
+
58 // #define GLM_CXX11_DECLTYPE
+
59 // Declared type of an expression - GCC 4.3
+
60 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2343.pdf
+
61 
+
62 //
+
63 // Right angle brackets - GCC 4.3
+
64 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1757.html
+
65 
+
66 //
+
67 // Default template arguments for function templates DR226 GCC 4.3
+
68 // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#226
+
69 
+
70 //
+
71 // Solving the SFINAE problem for expressions DR339 GCC 4.4
+
72 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html
+
73 
+
74 // #define GLM_CXX11_ALIAS_TEMPLATE
+
75 // Template aliases N2258 GCC 4.7
+
76 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2258.pdf
+
77 
+
78 //
+
79 // Extern templates N1987 Yes
+
80 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1987.htm
+
81 
+
82 // #define GLM_CXX11_NULLPTR
+
83 // Null pointer constant N2431 GCC 4.6
+
84 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2431.pdf
+
85 
+
86 // #define GLM_CXX11_STRONG_ENUMS
+
87 // Strongly-typed enums N2347 GCC 4.4
+
88 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2347.pdf
+
89 
+
90 //
+
91 // Forward declarations for enums N2764 GCC 4.6
+
92 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2764.pdf
+
93 
+
94 //
+
95 // Generalized attributes N2761 GCC 4.8
+
96 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2761.pdf
+
97 
+
98 //
+
99 // Generalized constant expressions N2235 GCC 4.6
+
100 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2235.pdf
+
101 
+
102 //
+
103 // Alignment support N2341 GCC 4.8
+
104 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2341.pdf
+
105 
+
106 // #define GLM_CXX11_DELEGATING_CONSTRUCTORS
+
107 // Delegating constructors N1986 GCC 4.7
+
108 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1986.pdf
+
109 
+
110 //
+
111 // Inheriting constructors N2540 GCC 4.8
+
112 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2540.htm
+
113 
+
114 // #define GLM_CXX11_EXPLICIT_CONVERSIONS
+
115 // Explicit conversion operators N2437 GCC 4.5
+
116 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2437.pdf
+
117 
+
118 //
+
119 // New character types N2249 GCC 4.4
+
120 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2249.html
+
121 
+
122 //
+
123 // Unicode string literals N2442 GCC 4.5
+
124 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2442.htm
+
125 
+
126 //
+
127 // Raw string literals N2442 GCC 4.5
+
128 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2442.htm
+
129 
+
130 //
+
131 // Universal character name literals N2170 GCC 4.5
+
132 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2170.html
+
133 
+
134 // #define GLM_CXX11_USER_LITERALS
+
135 // User-defined literals N2765 GCC 4.7
+
136 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2765.pdf
+
137 
+
138 //
+
139 // Standard Layout Types N2342 GCC 4.5
+
140 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2342.htm
+
141 
+
142 // #define GLM_CXX11_DEFAULTED_FUNCTIONS
+
143 // #define GLM_CXX11_DELETED_FUNCTIONS
+
144 // Defaulted and deleted functions N2346 GCC 4.4
+
145 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2346.htm
+
146 
+
147 //
+
148 // Extended friend declarations N1791 GCC 4.7
+
149 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1791.pdf
+
150 
+
151 //
+
152 // Extending sizeof N2253 GCC 4.4
+
153 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2253.html
+
154 
+
155 // #define GLM_CXX11_INLINE_NAMESPACES
+
156 // Inline namespaces N2535 GCC 4.4
+
157 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2535.htm
+
158 
+
159 // #define GLM_CXX11_UNRESTRICTED_UNIONS
+
160 // Unrestricted unions N2544 GCC 4.6
+
161 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2544.pdf
+
162 
+
163 // #define GLM_CXX11_LOCAL_TYPE_TEMPLATE_ARGS
+
164 // Local and unnamed types as template arguments N2657 GCC 4.5
+
165 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm
+
166 
+
167 // #define GLM_CXX11_RANGE_FOR
+
168 // Range-based for N2930 GCC 4.6
+
169 // http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2930.html
+
170 
+
171 // #define GLM_CXX11_OVERRIDE_CONTROL
+
172 // Explicit virtual overrides N2928 N3206 N3272 GCC 4.7
+
173 // http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2928.htm
+
174 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3206.htm
+
175 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3272.htm
+
176 
+
177 //
+
178 // Minimal support for garbage collection and reachability-based leak detection N2670 No
+
179 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2670.htm
+
180 
+
181 // #define GLM_CXX11_NOEXCEPT
+
182 // Allowing move constructors to throw [noexcept] N3050 GCC 4.6 (core language only)
+
183 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3050.html
+
184 
+
185 //
+
186 // Defining move special member functions N3053 GCC 4.6
+
187 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3053.html
+
188 
+
189 //
+
190 // Sequence points N2239 Yes
+
191 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2239.html
+
192 
+
193 //
+
194 // Atomic operations N2427 GCC 4.4
+
195 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2239.html
+
196 
+
197 //
+
198 // Strong Compare and Exchange N2748 GCC 4.5
+
199 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2427.html
+
200 
+
201 //
+
202 // Bidirectional Fences N2752 GCC 4.8
+
203 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2752.htm
+
204 
+
205 //
+
206 // Memory model N2429 GCC 4.8
+
207 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2429.htm
+
208 
+
209 //
+
210 // Data-dependency ordering: atomics and memory model N2664 GCC 4.4
+
211 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2664.htm
+
212 
+
213 //
+
214 // Propagating exceptions N2179 GCC 4.4
+
215 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2179.html
+
216 
+
217 //
+
218 // Abandoning a process and at_quick_exit N2440 GCC 4.8
+
219 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2440.htm
+
220 
+
221 //
+
222 // Allow atomics use in signal handlers N2547 Yes
+
223 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2547.htm
+
224 
+
225 //
+
226 // Thread-local storage N2659 GCC 4.8
+
227 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2659.htm
+
228 
+
229 //
+
230 // Dynamic initialization and destruction with concurrency N2660 GCC 4.3
+
231 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2660.htm
+
232 
+
233 //
+
234 // __func__ predefined identifier N2340 GCC 4.3
+
235 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2340.htm
+
236 
+
237 //
+
238 // C99 preprocessor N1653 GCC 4.3
+
239 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1653.htm
+
240 
+
241 //
+
242 // long long N1811 GCC 4.3
+
243 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1811.pdf
+
244 
+
245 //
+
246 // Extended integral types N1988 Yes
+
247 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1988.pdf
+
248 
+
249 #if(GLM_COMPILER & GLM_COMPILER_GCC)
+
250 
+
251 # define GLM_CXX11_STATIC_ASSERT
+
252 
+
253 #elif(GLM_COMPILER & GLM_COMPILER_CLANG)
+
254 # if(__has_feature(cxx_exceptions))
+
255 # define GLM_CXX98_EXCEPTIONS
+
256 # endif
+
257 
+
258 # if(__has_feature(cxx_rtti))
+
259 # define GLM_CXX98_RTTI
+
260 # endif
+
261 
+
262 # if(__has_feature(cxx_access_control_sfinae))
+
263 # define GLM_CXX11_ACCESS_CONTROL_SFINAE
+
264 # endif
+
265 
+
266 # if(__has_feature(cxx_alias_templates))
+
267 # define GLM_CXX11_ALIAS_TEMPLATE
+
268 # endif
+
269 
+
270 # if(__has_feature(cxx_alignas))
+
271 # define GLM_CXX11_ALIGNAS
+
272 # endif
+
273 
+
274 # if(__has_feature(cxx_attributes))
+
275 # define GLM_CXX11_ATTRIBUTES
+
276 # endif
+
277 
+
278 # if(__has_feature(cxx_constexpr))
+
279 # define GLM_CXX11_CONSTEXPR
+
280 # endif
+
281 
+
282 # if(__has_feature(cxx_decltype))
+
283 # define GLM_CXX11_DECLTYPE
+
284 # endif
+
285 
+
286 # if(__has_feature(cxx_default_function_template_args))
+
287 # define GLM_CXX11_DEFAULT_FUNCTION_TEMPLATE_ARGS
+
288 # endif
+
289 
+
290 # if(__has_feature(cxx_defaulted_functions))
+
291 # define GLM_CXX11_DEFAULTED_FUNCTIONS
+
292 # endif
+
293 
+
294 # if(__has_feature(cxx_delegating_constructors))
+
295 # define GLM_CXX11_DELEGATING_CONSTRUCTORS
+
296 # endif
+
297 
+
298 # if(__has_feature(cxx_deleted_functions))
+
299 # define GLM_CXX11_DELETED_FUNCTIONS
+
300 # endif
+
301 
+
302 # if(__has_feature(cxx_explicit_conversions))
+
303 # define GLM_CXX11_EXPLICIT_CONVERSIONS
+
304 # endif
+
305 
+
306 # if(__has_feature(cxx_generalized_initializers))
+
307 # define GLM_CXX11_GENERALIZED_INITIALIZERS
+
308 # endif
+
309 
+
310 # if(__has_feature(cxx_implicit_moves))
+
311 # define GLM_CXX11_IMPLICIT_MOVES
+
312 # endif
+
313 
+
314 # if(__has_feature(cxx_inheriting_constructors))
+
315 # define GLM_CXX11_INHERITING_CONSTRUCTORS
+
316 # endif
+
317 
+
318 # if(__has_feature(cxx_inline_namespaces))
+
319 # define GLM_CXX11_INLINE_NAMESPACES
+
320 # endif
+
321 
+
322 # if(__has_feature(cxx_lambdas))
+
323 # define GLM_CXX11_LAMBDAS
+
324 # endif
+
325 
+
326 # if(__has_feature(cxx_local_type_template_args))
+
327 # define GLM_CXX11_LOCAL_TYPE_TEMPLATE_ARGS
+
328 # endif
+
329 
+
330 # if(__has_feature(cxx_noexcept))
+
331 # define GLM_CXX11_NOEXCEPT
+
332 # endif
+
333 
+
334 # if(__has_feature(cxx_nonstatic_member_init))
+
335 # define GLM_CXX11_NONSTATIC_MEMBER_INIT
+
336 # endif
+
337 
+
338 # if(__has_feature(cxx_nullptr))
+
339 # define GLM_CXX11_NULLPTR
+
340 # endif
+
341 
+
342 # if(__has_feature(cxx_override_control))
+
343 # define GLM_CXX11_OVERRIDE_CONTROL
+
344 # endif
+
345 
+
346 # if(__has_feature(cxx_reference_qualified_functions))
+
347 # define GLM_CXX11_REFERENCE_QUALIFIED_FUNCTIONS
+
348 # endif
+
349 
+
350 # if(__has_feature(cxx_range_for))
+
351 # define GLM_CXX11_RANGE_FOR
+
352 # endif
+
353 
+
354 # if(__has_feature(cxx_raw_string_literals))
+
355 # define GLM_CXX11_RAW_STRING_LITERALS
+
356 # endif
+
357 
+
358 # if(__has_feature(cxx_rvalue_references))
+
359 # define GLM_CXX11_RVALUE_REFERENCES
+
360 # endif
+
361 
+
362 # if(__has_feature(cxx_static_assert))
+
363 # define GLM_CXX11_STATIC_ASSERT
+
364 # endif
+
365 
+
366 # if(__has_feature(cxx_auto_type))
+
367 # define GLM_CXX11_AUTO_TYPE
+
368 # endif
+
369 
+
370 # if(__has_feature(cxx_strong_enums))
+
371 # define GLM_CXX11_STRONG_ENUMS
+
372 # endif
+
373 
+
374 # if(__has_feature(cxx_trailing_return))
+
375 # define GLM_CXX11_TRAILING_RETURN
+
376 # endif
+
377 
+
378 # if(__has_feature(cxx_unicode_literals))
+
379 # define GLM_CXX11_UNICODE_LITERALS
+
380 # endif
+
381 
+
382 # if(__has_feature(cxx_unrestricted_unions))
+
383 # define GLM_CXX11_UNRESTRICTED_UNIONS
+
384 # endif
+
385 
+
386 # if(__has_feature(cxx_user_literals))
+
387 # define GLM_CXX11_USER_LITERALS
+
388 # endif
+
389 
+
390 # if(__has_feature(cxx_variadic_templates))
+
391 # define GLM_CXX11_VARIADIC_TEMPLATES
+
392 # endif
+
393 
+
394 #endif//(GLM_COMPILER & GLM_COMPILER_CLANG)
+
+ + + + diff --git a/include/glm/doc/api/a00008_source.html b/include/glm/doc/api/a00008_source.html new file mode 100644 index 0000000..bae93d2 --- /dev/null +++ b/include/glm/doc/api/a00008_source.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: _fixes.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
_fixes.hpp
+
+
+
1 #include <cmath>
+
2 
+
4 #ifdef max
+
5 #undef max
+
6 #endif
+
7 
+
9 #ifdef min
+
10 #undef min
+
11 #endif
+
12 
+
14 #ifdef isnan
+
15 #undef isnan
+
16 #endif
+
17 
+
19 #ifdef isinf
+
20 #undef isinf
+
21 #endif
+
22 
+
24 #ifdef log2
+
25 #undef log2
+
26 #endif
+
27 
+
+ + + + diff --git a/include/glm/doc/api/a00011_source.html b/include/glm/doc/api/a00011_source.html new file mode 100644 index 0000000..6ba5406 --- /dev/null +++ b/include/glm/doc/api/a00011_source.html @@ -0,0 +1,163 @@ + + + + + + + +1.0.2 API documentation: _noise.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
_noise.hpp
+
+
+
1 #pragma once
+
2 
+
3 #include "../common.hpp"
+
4 
+
5 namespace glm{
+
6 namespace detail
+
7 {
+
8  template<typename T>
+
9  GLM_FUNC_QUALIFIER T mod289(T const& x)
+
10  {
+
11  return x - floor(x * (static_cast<T>(1.0) / static_cast<T>(289.0))) * static_cast<T>(289.0);
+
12  }
+
13 
+
14  template<typename T>
+
15  GLM_FUNC_QUALIFIER T permute(T const& x)
+
16  {
+
17  return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
+
18  }
+
19 
+
20  template<typename T, qualifier Q>
+
21  GLM_FUNC_QUALIFIER vec<2, T, Q> permute(vec<2, T, Q> const& x)
+
22  {
+
23  return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
+
24  }
+
25 
+
26  template<typename T, qualifier Q>
+
27  GLM_FUNC_QUALIFIER vec<3, T, Q> permute(vec<3, T, Q> const& x)
+
28  {
+
29  return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
+
30  }
+
31 
+
32  template<typename T, qualifier Q>
+
33  GLM_FUNC_QUALIFIER vec<4, T, Q> permute(vec<4, T, Q> const& x)
+
34  {
+
35  return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
+
36  }
+
37 
+
38  template<typename T>
+
39  GLM_FUNC_QUALIFIER T taylorInvSqrt(T const& r)
+
40  {
+
41  return static_cast<T>(1.79284291400159) - static_cast<T>(0.85373472095314) * r;
+
42  }
+
43 
+
44  template<typename T, qualifier Q>
+
45  GLM_FUNC_QUALIFIER vec<2, T, Q> taylorInvSqrt(vec<2, T, Q> const& r)
+
46  {
+
47  return static_cast<T>(1.79284291400159) - static_cast<T>(0.85373472095314) * r;
+
48  }
+
49 
+
50  template<typename T, qualifier Q>
+
51  GLM_FUNC_QUALIFIER vec<3, T, Q> taylorInvSqrt(vec<3, T, Q> const& r)
+
52  {
+
53  return static_cast<T>(1.79284291400159) - static_cast<T>(0.85373472095314) * r;
+
54  }
+
55 
+
56  template<typename T, qualifier Q>
+
57  GLM_FUNC_QUALIFIER vec<4, T, Q> taylorInvSqrt(vec<4, T, Q> const& r)
+
58  {
+
59  return static_cast<T>(1.79284291400159) - static_cast<T>(0.85373472095314) * r;
+
60  }
+
61 
+
62  template<typename T, qualifier Q>
+
63  GLM_FUNC_QUALIFIER vec<2, T, Q> fade(vec<2, T, Q> const& t)
+
64  {
+
65  return (t * t * t) * (t * (t * static_cast<T>(6) - static_cast<T>(15)) + static_cast<T>(10));
+
66  }
+
67 
+
68  template<typename T, qualifier Q>
+
69  GLM_FUNC_QUALIFIER vec<3, T, Q> fade(vec<3, T, Q> const& t)
+
70  {
+
71  return (t * t * t) * (t * (t * static_cast<T>(6) - static_cast<T>(15)) + static_cast<T>(10));
+
72  }
+
73 
+
74  template<typename T, qualifier Q>
+
75  GLM_FUNC_QUALIFIER vec<4, T, Q> fade(vec<4, T, Q> const& t)
+
76  {
+
77  return (t * t * t) * (t * (t * static_cast<T>(6) - static_cast<T>(15)) + static_cast<T>(10));
+
78  }
+
79 }//namespace detail
+
80 }//namespace glm
+
81 
+
+
GLM_FUNC_DECL vec< L, T, Q > floor(vec< L, T, Q > const &x)
Returns a value equal to the nearest integer that is less then or equal to x.
+ + + + diff --git a/include/glm/doc/api/a00014_source.html b/include/glm/doc/api/a00014_source.html new file mode 100644 index 0000000..7a7a8b2 --- /dev/null +++ b/include/glm/doc/api/a00014_source.html @@ -0,0 +1,891 @@ + + + + + + + +1.0.2 API documentation: _swizzle.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
_swizzle.hpp
+
+
+
1 #pragma once
+
2 
+
3 namespace glm{
+
4 namespace detail
+
5 {
+
6  // Internal class for implementing swizzle operators
+
7  template<typename T, int N>
+
8  struct _swizzle_base0
+
9  {
+
10  protected:
+
11  GLM_FUNC_QUALIFIER T& elem(int i){ return (reinterpret_cast<T*>(_buffer))[i]; }
+
12  GLM_FUNC_QUALIFIER T const& elem(int i) const{ return (reinterpret_cast<const T*>(_buffer))[i]; }
+
13 
+
14  // Use an opaque buffer to *ensure* the compiler doesn't call a constructor.
+
15  // The size 1 buffer is assumed to aligned to the actual members so that the
+
16  // elem()
+
17  char _buffer[1];
+
18  };
+
19 
+
20  template<int N, typename T, qualifier Q, int E0, int E1, int E2, int E3, bool UseSimd>
+
21  struct _swizzle_base1 : public _swizzle_base0<T, N>
+
22  {
+
23  };
+
24 
+
25  template<int N, typename T, qualifier Q, int E0, int E1, int E2, int E3>
+
26  struct _swizzle_base1<N, T, Q, E0, E1, E2, E3, false> : public _swizzle_base0<T, N>
+
27  {
+
28  };
+
29 
+
30  template<typename T, qualifier Q, int E0, int E1>
+
31  struct _swizzle_base1<2, T, Q, E0,E1,-1,-2, false> : public _swizzle_base0<T, 2>
+
32  {
+
33  GLM_FUNC_QUALIFIER vec<2, T, Q> operator ()() const { return vec<2, T, Q>(this->elem(E0), this->elem(E1)); }
+
34  };
+
35 
+
36  template<typename T, qualifier Q, int E0, int E1, int E2>
+
37  struct _swizzle_base1<3, T, Q, E0,E1,E2,3, false> : public _swizzle_base0<T, 3>
+
38  {
+
39  GLM_FUNC_QUALIFIER vec<3, T, Q> operator ()() const { return vec<3, T, Q>(this->elem(E0), this->elem(E1), this->elem(E2)); }
+
40  };
+
41 
+
42  template<typename T, qualifier Q, int E0, int E1, int E2, int E3>
+
43  struct _swizzle_base1<4, T, Q, E0,E1,E2,E3, false> : public _swizzle_base0<T, 4>
+
44  {
+
45  GLM_FUNC_QUALIFIER vec<4, T, Q> operator ()() const { return vec<4, T, Q>(this->elem(E0), this->elem(E1), this->elem(E2), this->elem(E3)); }
+
46  };
+
47 
+
48  // Internal class for implementing swizzle operators
+
49  /*
+
50  Template parameters:
+
51 
+
52  T = type of scalar values (e.g. float, double)
+
53  N = number of components in the vector (e.g. 3)
+
54  E0...3 = what index the n-th element of this swizzle refers to in the unswizzled vec
+
55 
+
56  DUPLICATE_ELEMENTS = 1 if there is a repeated element, 0 otherwise (used to specialize swizzles
+
57  containing duplicate elements so that they cannot be used as r-values).
+
58  */
+
59  template<int N, typename T, qualifier Q, int E0, int E1, int E2, int E3, int DUPLICATE_ELEMENTS>
+
60  struct _swizzle_base2 : public _swizzle_base1<N, T, Q, E0,E1,E2,E3, detail::is_aligned<Q>::value>
+
61  {
+
62  struct op_equal
+
63  {
+
64  GLM_FUNC_QUALIFIER void operator() (T& e, T& t) const{ e = t; }
+
65  };
+
66 
+
67  struct op_minus
+
68  {
+
69  GLM_FUNC_QUALIFIER void operator() (T& e, T& t) const{ e -= t; }
+
70  };
+
71 
+
72  struct op_plus
+
73  {
+
74  GLM_FUNC_QUALIFIER void operator() (T& e, T& t) const{ e += t; }
+
75  };
+
76 
+
77  struct op_mul
+
78  {
+
79  GLM_FUNC_QUALIFIER void operator() (T& e, T& t) const{ e *= t; }
+
80  };
+
81 
+
82  struct op_div
+
83  {
+
84  GLM_FUNC_QUALIFIER void operator() (T& e, T& t) const{ e /= t; }
+
85  };
+
86 
+
87  public:
+
88  GLM_FUNC_QUALIFIER _swizzle_base2& operator= (const T& t)
+
89  {
+
90  for (int i = 0; i < N; ++i)
+
91  (*this)[i] = t;
+
92  return *this;
+
93  }
+
94 
+
95  GLM_FUNC_QUALIFIER _swizzle_base2& operator= (vec<N, T, Q> const& that)
+
96  {
+
97  _apply_op(that, op_equal());
+
98  return *this;
+
99  }
+
100 
+
101  GLM_FUNC_QUALIFIER void operator -= (vec<N, T, Q> const& that)
+
102  {
+
103  _apply_op(that, op_minus());
+
104  }
+
105 
+
106  GLM_FUNC_QUALIFIER void operator += (vec<N, T, Q> const& that)
+
107  {
+
108  _apply_op(that, op_plus());
+
109  }
+
110 
+
111  GLM_FUNC_QUALIFIER void operator *= (vec<N, T, Q> const& that)
+
112  {
+
113  _apply_op(that, op_mul());
+
114  }
+
115 
+
116  GLM_FUNC_QUALIFIER void operator /= (vec<N, T, Q> const& that)
+
117  {
+
118  _apply_op(that, op_div());
+
119  }
+
120 
+
121  GLM_FUNC_QUALIFIER T& operator[](int i)
+
122  {
+
123  const int offset_dst[4] = { E0, E1, E2, E3 };
+
124  return this->elem(offset_dst[i]);
+
125  }
+
126  GLM_FUNC_QUALIFIER T operator[](int i) const
+
127  {
+
128  const int offset_dst[4] = { E0, E1, E2, E3 };
+
129  return this->elem(offset_dst[i]);
+
130  }
+
131 
+
132  protected:
+
133  template<typename U>
+
134  GLM_FUNC_QUALIFIER void _apply_op(vec<N, T, Q> const& that, const U& op)
+
135  {
+
136  // Make a copy of the data in this == &that.
+
137  // The copier should optimize out the copy in cases where the function is
+
138  // properly inlined and the copy is not necessary.
+
139  T t[N];
+
140  for (int i = 0; i < N; ++i)
+
141  t[i] = that[i];
+
142  for (int i = 0; i < N; ++i)
+
143  op( (*this)[i], t[i] );
+
144  }
+
145  };
+
146 
+
147  // Specialization for swizzles containing duplicate elements. These cannot be modified.
+
148  template<int N, typename T, qualifier Q, int E0, int E1, int E2, int E3>
+
149  struct _swizzle_base2<N, T, Q, E0,E1,E2,E3, 1> : public _swizzle_base1<N, T, Q, E0,E1,E2,E3, detail::is_aligned<Q>::value>
+
150  {
+
151  struct Stub {};
+
152 
+
153  GLM_FUNC_QUALIFIER _swizzle_base2& operator= (Stub const&) { return *this; }
+
154 
+
155  GLM_FUNC_QUALIFIER T operator[] (int i) const
+
156  {
+
157  const int offset_dst[4] = { E0, E1, E2, E3 };
+
158  return this->elem(offset_dst[i]);
+
159  }
+
160  };
+
161 
+
162  template<int N, typename T, qualifier Q, int E0, int E1, int E2, int E3>
+
163  struct _swizzle : public _swizzle_base2<N, T, Q, E0, E1, E2, E3, (E0 == E1 || E0 == E2 || E0 == E3 || E1 == E2 || E1 == E3 || E2 == E3)>
+
164  {
+
165  typedef _swizzle_base2<N, T, Q, E0, E1, E2, E3, (E0 == E1 || E0 == E2 || E0 == E3 || E1 == E2 || E1 == E3 || E2 == E3)> base_type;
+
166 
+
167  using base_type::operator=;
+
168 
+
169  GLM_FUNC_QUALIFIER operator vec<N, T, Q> () const { return (*this)(); }
+
170  };
+
171 
+
172 //
+
173 // To prevent the C++ syntax from getting entirely overwhelming, define some alias macros
+
174 //
+
175 #define GLM_SWIZZLE_TEMPLATE1 template<int N, typename T, qualifier Q, int E0, int E1, int E2, int E3>
+
176 #define GLM_SWIZZLE_TEMPLATE2 template<int N, typename T, qualifier Q, int E0, int E1, int E2, int E3, int F0, int F1, int F2, int F3>
+
177 #define GLM_SWIZZLE_TYPE1 _swizzle<N, T, Q, E0, E1, E2, E3>
+
178 #define GLM_SWIZZLE_TYPE2 _swizzle<N, T, Q, F0, F1, F2, F3>
+
179 
+
180 //
+
181 // Wrapper for a binary operator (e.g. u.yy + v.zy)
+
182 //
+
183 #define GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(OPERAND) \
+
184  GLM_SWIZZLE_TEMPLATE2 \
+
185  GLM_FUNC_QUALIFIER vec<N, T, Q> operator OPERAND ( const GLM_SWIZZLE_TYPE1& a, const GLM_SWIZZLE_TYPE2& b) \
+
186  { \
+
187  return a() OPERAND b(); \
+
188  } \
+
189  GLM_SWIZZLE_TEMPLATE1 \
+
190  GLM_FUNC_QUALIFIER vec<N, T, Q> operator OPERAND ( const GLM_SWIZZLE_TYPE1& a, const vec<N, T, Q>& b) \
+
191  { \
+
192  return a() OPERAND b; \
+
193  } \
+
194  GLM_SWIZZLE_TEMPLATE1 \
+
195  GLM_FUNC_QUALIFIER vec<N, T, Q> operator OPERAND ( const vec<N, T, Q>& a, const GLM_SWIZZLE_TYPE1& b) \
+
196  { \
+
197  return a OPERAND b(); \
+
198  }
+
199 
+
200 //
+
201 // Wrapper for a operand between a swizzle and a binary (e.g. 1.0f - u.xyz)
+
202 //
+
203 #define GLM_SWIZZLE_SCALAR_BINARY_OPERATOR_IMPLEMENTATION(OPERAND) \
+
204  GLM_SWIZZLE_TEMPLATE1 \
+
205  GLM_FUNC_QUALIFIER vec<N, T, Q> operator OPERAND ( const GLM_SWIZZLE_TYPE1& a, const T& b) \
+
206  { \
+
207  return a() OPERAND b; \
+
208  } \
+
209  GLM_SWIZZLE_TEMPLATE1 \
+
210  GLM_FUNC_QUALIFIER vec<N, T, Q> operator OPERAND ( const T& a, const GLM_SWIZZLE_TYPE1& b) \
+
211  { \
+
212  return a OPERAND b(); \
+
213  }
+
214 
+
215 //
+
216 // Macro for wrapping a function taking one argument (e.g. abs())
+
217 //
+
218 #define GLM_SWIZZLE_FUNCTION_1_ARGS(RETURN_TYPE,FUNCTION) \
+
219  GLM_SWIZZLE_TEMPLATE1 \
+
220  GLM_FUNC_QUALIFIER typename GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const GLM_SWIZZLE_TYPE1& a) \
+
221  { \
+
222  return FUNCTION(a()); \
+
223  }
+
224 
+
225 //
+
226 // Macro for wrapping a function taking two vector arguments (e.g. dot()).
+
227 //
+
228 #define GLM_SWIZZLE_FUNCTION_2_ARGS(RETURN_TYPE,FUNCTION) \
+
229  GLM_SWIZZLE_TEMPLATE2 \
+
230  GLM_FUNC_QUALIFIER typename GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const GLM_SWIZZLE_TYPE1& a, const GLM_SWIZZLE_TYPE2& b) \
+
231  { \
+
232  return FUNCTION(a(), b()); \
+
233  } \
+
234  GLM_SWIZZLE_TEMPLATE1 \
+
235  GLM_FUNC_QUALIFIER typename GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const GLM_SWIZZLE_TYPE1& a, const GLM_SWIZZLE_TYPE1& b) \
+
236  { \
+
237  return FUNCTION(a(), b()); \
+
238  } \
+
239  GLM_SWIZZLE_TEMPLATE1 \
+
240  GLM_FUNC_QUALIFIER typename GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const GLM_SWIZZLE_TYPE1& a, const typename V& b) \
+
241  { \
+
242  return FUNCTION(a(), b); \
+
243  } \
+
244  GLM_SWIZZLE_TEMPLATE1 \
+
245  GLM_FUNC_QUALIFIER typename GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const V& a, const GLM_SWIZZLE_TYPE1& b) \
+
246  { \
+
247  return FUNCTION(a, b()); \
+
248  }
+
249 
+
250 //
+
251 // Macro for wrapping a function take 2 vec arguments followed by a scalar (e.g. mix()).
+
252 //
+
253 #define GLM_SWIZZLE_FUNCTION_2_ARGS_SCALAR(RETURN_TYPE,FUNCTION) \
+
254  GLM_SWIZZLE_TEMPLATE2 \
+
255  GLM_FUNC_QUALIFIER typename GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const GLM_SWIZZLE_TYPE1& a, const GLM_SWIZZLE_TYPE2& b, const T& c) \
+
256  { \
+
257  return FUNCTION(a(), b(), c); \
+
258  } \
+
259  GLM_SWIZZLE_TEMPLATE1 \
+
260  GLM_FUNC_QUALIFIER typename GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const GLM_SWIZZLE_TYPE1& a, const GLM_SWIZZLE_TYPE1& b, const T& c) \
+
261  { \
+
262  return FUNCTION(a(), b(), c); \
+
263  } \
+
264  GLM_SWIZZLE_TEMPLATE1 \
+
265  GLM_FUNC_QUALIFIER typename GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const GLM_SWIZZLE_TYPE1& a, const typename S0::vec_type& b, const T& c)\
+
266  { \
+
267  return FUNCTION(a(), b, c); \
+
268  } \
+
269  GLM_SWIZZLE_TEMPLATE1 \
+
270  GLM_FUNC_QUALIFIER typename GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const typename V& a, const GLM_SWIZZLE_TYPE1& b, const T& c) \
+
271  { \
+
272  return FUNCTION(a, b(), c); \
+
273  }
+
274 
+
275 }//namespace detail
+
276 }//namespace glm
+
277 
+
278 namespace glm
+
279 {
+
280  namespace detail
+
281  {
+
282  GLM_SWIZZLE_SCALAR_BINARY_OPERATOR_IMPLEMENTATION(-)
+
283  GLM_SWIZZLE_SCALAR_BINARY_OPERATOR_IMPLEMENTATION(*)
+
284  GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(+)
+
285  GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(-)
+
286  GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(*)
+
287  GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(/)
+
288  }
+
289 
+
290  //
+
291  // Swizzles are distinct types from the unswizzled type. The below macros will
+
292  // provide template specializations for the swizzle types for the given functions
+
293  // so that the compiler does not have any ambiguity to choosing how to handle
+
294  // the function.
+
295  //
+
296  // The alternative is to use the operator()() when calling the function in order
+
297  // to explicitly convert the swizzled type to the unswizzled type.
+
298  //
+
299 
+
300  //GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, abs);
+
301  //GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, acos);
+
302  //GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, acosh);
+
303  //GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, all);
+
304  //GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, any);
+
305 
+
306  //GLM_SWIZZLE_FUNCTION_2_ARGS(value_type, dot);
+
307  //GLM_SWIZZLE_FUNCTION_2_ARGS(vec_type, cross);
+
308  //GLM_SWIZZLE_FUNCTION_2_ARGS(vec_type, step);
+
309  //GLM_SWIZZLE_FUNCTION_2_ARGS_SCALAR(vec_type, mix);
+
310 }
+
311 
+
312 #define GLM_SWIZZLE2_2_MEMBERS(T, Q, E0,E1) \
+
313  struct { detail::_swizzle<2, T, Q, 0,0,-1,-2> E0 ## E0; }; \
+
314  struct { detail::_swizzle<2, T, Q, 0,1,-1,-2> E0 ## E1; }; \
+
315  struct { detail::_swizzle<2, T, Q, 1,0,-1,-2> E1 ## E0; }; \
+
316  struct { detail::_swizzle<2, T, Q, 1,1,-1,-2> E1 ## E1; };
+
317 
+
318 #define GLM_SWIZZLE2_3_MEMBERS(T, Q, E0,E1) \
+
319  struct { detail::_swizzle<3,T, Q, 0,0,0,-1> E0 ## E0 ## E0; }; \
+
320  struct { detail::_swizzle<3,T, Q, 0,0,1,-1> E0 ## E0 ## E1; }; \
+
321  struct { detail::_swizzle<3,T, Q, 0,1,0,-1> E0 ## E1 ## E0; }; \
+
322  struct { detail::_swizzle<3,T, Q, 0,1,1,-1> E0 ## E1 ## E1; }; \
+
323  struct { detail::_swizzle<3,T, Q, 1,0,0,-1> E1 ## E0 ## E0; }; \
+
324  struct { detail::_swizzle<3,T, Q, 1,0,1,-1> E1 ## E0 ## E1; }; \
+
325  struct { detail::_swizzle<3,T, Q, 1,1,0,-1> E1 ## E1 ## E0; }; \
+
326  struct { detail::_swizzle<3,T, Q, 1,1,1,-1> E1 ## E1 ## E1; };
+
327 
+
328 #define GLM_SWIZZLE2_4_MEMBERS(T, Q, E0,E1) \
+
329  struct { detail::_swizzle<4,T, Q, 0,0,0,0> E0 ## E0 ## E0 ## E0; }; \
+
330  struct { detail::_swizzle<4,T, Q, 0,0,0,1> E0 ## E0 ## E0 ## E1; }; \
+
331  struct { detail::_swizzle<4,T, Q, 0,0,1,0> E0 ## E0 ## E1 ## E0; }; \
+
332  struct { detail::_swizzle<4,T, Q, 0,0,1,1> E0 ## E0 ## E1 ## E1; }; \
+
333  struct { detail::_swizzle<4,T, Q, 0,1,0,0> E0 ## E1 ## E0 ## E0; }; \
+
334  struct { detail::_swizzle<4,T, Q, 0,1,0,1> E0 ## E1 ## E0 ## E1; }; \
+
335  struct { detail::_swizzle<4,T, Q, 0,1,1,0> E0 ## E1 ## E1 ## E0; }; \
+
336  struct { detail::_swizzle<4,T, Q, 0,1,1,1> E0 ## E1 ## E1 ## E1; }; \
+
337  struct { detail::_swizzle<4,T, Q, 1,0,0,0> E1 ## E0 ## E0 ## E0; }; \
+
338  struct { detail::_swizzle<4,T, Q, 1,0,0,1> E1 ## E0 ## E0 ## E1; }; \
+
339  struct { detail::_swizzle<4,T, Q, 1,0,1,0> E1 ## E0 ## E1 ## E0; }; \
+
340  struct { detail::_swizzle<4,T, Q, 1,0,1,1> E1 ## E0 ## E1 ## E1; }; \
+
341  struct { detail::_swizzle<4,T, Q, 1,1,0,0> E1 ## E1 ## E0 ## E0; }; \
+
342  struct { detail::_swizzle<4,T, Q, 1,1,0,1> E1 ## E1 ## E0 ## E1; }; \
+
343  struct { detail::_swizzle<4,T, Q, 1,1,1,0> E1 ## E1 ## E1 ## E0; }; \
+
344  struct { detail::_swizzle<4,T, Q, 1,1,1,1> E1 ## E1 ## E1 ## E1; };
+
345 
+
346 #define GLM_SWIZZLE3_2_MEMBERS(T, Q, E0,E1,E2) \
+
347  struct { detail::_swizzle<2,T, Q, 0,0,-1,-2> E0 ## E0; }; \
+
348  struct { detail::_swizzle<2,T, Q, 0,1,-1,-2> E0 ## E1; }; \
+
349  struct { detail::_swizzle<2,T, Q, 0,2,-1,-2> E0 ## E2; }; \
+
350  struct { detail::_swizzle<2,T, Q, 1,0,-1,-2> E1 ## E0; }; \
+
351  struct { detail::_swizzle<2,T, Q, 1,1,-1,-2> E1 ## E1; }; \
+
352  struct { detail::_swizzle<2,T, Q, 1,2,-1,-2> E1 ## E2; }; \
+
353  struct { detail::_swizzle<2,T, Q, 2,0,-1,-2> E2 ## E0; }; \
+
354  struct { detail::_swizzle<2,T, Q, 2,1,-1,-2> E2 ## E1; }; \
+
355  struct { detail::_swizzle<2,T, Q, 2,2,-1,-2> E2 ## E2; };
+
356 
+
357 #define GLM_SWIZZLE3_3_MEMBERS(T, Q ,E0,E1,E2) \
+
358  struct { detail::_swizzle<3, T, Q, 0,0,0,3> E0 ## E0 ## E0; }; \
+
359  struct { detail::_swizzle<3, T, Q, 0,0,1,3> E0 ## E0 ## E1; }; \
+
360  struct { detail::_swizzle<3, T, Q, 0,0,2,3> E0 ## E0 ## E2; }; \
+
361  struct { detail::_swizzle<3, T, Q, 0,1,0,3> E0 ## E1 ## E0; }; \
+
362  struct { detail::_swizzle<3, T, Q, 0,1,1,3> E0 ## E1 ## E1; }; \
+
363  struct { detail::_swizzle<3, T, Q, 0,1,2,3> E0 ## E1 ## E2; }; \
+
364  struct { detail::_swizzle<3, T, Q, 0,2,0,3> E0 ## E2 ## E0; }; \
+
365  struct { detail::_swizzle<3, T, Q, 0,2,1,3> E0 ## E2 ## E1; }; \
+
366  struct { detail::_swizzle<3, T, Q, 0,2,2,3> E0 ## E2 ## E2; }; \
+
367  struct { detail::_swizzle<3, T, Q, 1,0,0,3> E1 ## E0 ## E0; }; \
+
368  struct { detail::_swizzle<3, T, Q, 1,0,1,3> E1 ## E0 ## E1; }; \
+
369  struct { detail::_swizzle<3, T, Q, 1,0,2,3> E1 ## E0 ## E2; }; \
+
370  struct { detail::_swizzle<3, T, Q, 1,1,0,3> E1 ## E1 ## E0; }; \
+
371  struct { detail::_swizzle<3, T, Q, 1,1,1,3> E1 ## E1 ## E1; }; \
+
372  struct { detail::_swizzle<3, T, Q, 1,1,2,3> E1 ## E1 ## E2; }; \
+
373  struct { detail::_swizzle<3, T, Q, 1,2,0,3> E1 ## E2 ## E0; }; \
+
374  struct { detail::_swizzle<3, T, Q, 1,2,1,3> E1 ## E2 ## E1; }; \
+
375  struct { detail::_swizzle<3, T, Q, 1,2,2,3> E1 ## E2 ## E2; }; \
+
376  struct { detail::_swizzle<3, T, Q, 2,0,0,3> E2 ## E0 ## E0; }; \
+
377  struct { detail::_swizzle<3, T, Q, 2,0,1,3> E2 ## E0 ## E1; }; \
+
378  struct { detail::_swizzle<3, T, Q, 2,0,2,3> E2 ## E0 ## E2; }; \
+
379  struct { detail::_swizzle<3, T, Q, 2,1,0,3> E2 ## E1 ## E0; }; \
+
380  struct { detail::_swizzle<3, T, Q, 2,1,1,3> E2 ## E1 ## E1; }; \
+
381  struct { detail::_swizzle<3, T, Q, 2,1,2,3> E2 ## E1 ## E2; }; \
+
382  struct { detail::_swizzle<3, T, Q, 2,2,0,3> E2 ## E2 ## E0; }; \
+
383  struct { detail::_swizzle<3, T, Q, 2,2,1,3> E2 ## E2 ## E1; }; \
+
384  struct { detail::_swizzle<3, T, Q, 2,2,2,3> E2 ## E2 ## E2; };
+
385 
+
386 #define GLM_SWIZZLE3_4_MEMBERS(T, Q, E0,E1,E2) \
+
387  struct { detail::_swizzle<4,T, Q, 0,0,0,0> E0 ## E0 ## E0 ## E0; }; \
+
388  struct { detail::_swizzle<4,T, Q, 0,0,0,1> E0 ## E0 ## E0 ## E1; }; \
+
389  struct { detail::_swizzle<4,T, Q, 0,0,0,2> E0 ## E0 ## E0 ## E2; }; \
+
390  struct { detail::_swizzle<4,T, Q, 0,0,1,0> E0 ## E0 ## E1 ## E0; }; \
+
391  struct { detail::_swizzle<4,T, Q, 0,0,1,1> E0 ## E0 ## E1 ## E1; }; \
+
392  struct { detail::_swizzle<4,T, Q, 0,0,1,2> E0 ## E0 ## E1 ## E2; }; \
+
393  struct { detail::_swizzle<4,T, Q, 0,0,2,0> E0 ## E0 ## E2 ## E0; }; \
+
394  struct { detail::_swizzle<4,T, Q, 0,0,2,1> E0 ## E0 ## E2 ## E1; }; \
+
395  struct { detail::_swizzle<4,T, Q, 0,0,2,2> E0 ## E0 ## E2 ## E2; }; \
+
396  struct { detail::_swizzle<4,T, Q, 0,1,0,0> E0 ## E1 ## E0 ## E0; }; \
+
397  struct { detail::_swizzle<4,T, Q, 0,1,0,1> E0 ## E1 ## E0 ## E1; }; \
+
398  struct { detail::_swizzle<4,T, Q, 0,1,0,2> E0 ## E1 ## E0 ## E2; }; \
+
399  struct { detail::_swizzle<4,T, Q, 0,1,1,0> E0 ## E1 ## E1 ## E0; }; \
+
400  struct { detail::_swizzle<4,T, Q, 0,1,1,1> E0 ## E1 ## E1 ## E1; }; \
+
401  struct { detail::_swizzle<4,T, Q, 0,1,1,2> E0 ## E1 ## E1 ## E2; }; \
+
402  struct { detail::_swizzle<4,T, Q, 0,1,2,0> E0 ## E1 ## E2 ## E0; }; \
+
403  struct { detail::_swizzle<4,T, Q, 0,1,2,1> E0 ## E1 ## E2 ## E1; }; \
+
404  struct { detail::_swizzle<4,T, Q, 0,1,2,2> E0 ## E1 ## E2 ## E2; }; \
+
405  struct { detail::_swizzle<4,T, Q, 0,2,0,0> E0 ## E2 ## E0 ## E0; }; \
+
406  struct { detail::_swizzle<4,T, Q, 0,2,0,1> E0 ## E2 ## E0 ## E1; }; \
+
407  struct { detail::_swizzle<4,T, Q, 0,2,0,2> E0 ## E2 ## E0 ## E2; }; \
+
408  struct { detail::_swizzle<4,T, Q, 0,2,1,0> E0 ## E2 ## E1 ## E0; }; \
+
409  struct { detail::_swizzle<4,T, Q, 0,2,1,1> E0 ## E2 ## E1 ## E1; }; \
+
410  struct { detail::_swizzle<4,T, Q, 0,2,1,2> E0 ## E2 ## E1 ## E2; }; \
+
411  struct { detail::_swizzle<4,T, Q, 0,2,2,0> E0 ## E2 ## E2 ## E0; }; \
+
412  struct { detail::_swizzle<4,T, Q, 0,2,2,1> E0 ## E2 ## E2 ## E1; }; \
+
413  struct { detail::_swizzle<4,T, Q, 0,2,2,2> E0 ## E2 ## E2 ## E2; }; \
+
414  struct { detail::_swizzle<4,T, Q, 1,0,0,0> E1 ## E0 ## E0 ## E0; }; \
+
415  struct { detail::_swizzle<4,T, Q, 1,0,0,1> E1 ## E0 ## E0 ## E1; }; \
+
416  struct { detail::_swizzle<4,T, Q, 1,0,0,2> E1 ## E0 ## E0 ## E2; }; \
+
417  struct { detail::_swizzle<4,T, Q, 1,0,1,0> E1 ## E0 ## E1 ## E0; }; \
+
418  struct { detail::_swizzle<4,T, Q, 1,0,1,1> E1 ## E0 ## E1 ## E1; }; \
+
419  struct { detail::_swizzle<4,T, Q, 1,0,1,2> E1 ## E0 ## E1 ## E2; }; \
+
420  struct { detail::_swizzle<4,T, Q, 1,0,2,0> E1 ## E0 ## E2 ## E0; }; \
+
421  struct { detail::_swizzle<4,T, Q, 1,0,2,1> E1 ## E0 ## E2 ## E1; }; \
+
422  struct { detail::_swizzle<4,T, Q, 1,0,2,2> E1 ## E0 ## E2 ## E2; }; \
+
423  struct { detail::_swizzle<4,T, Q, 1,1,0,0> E1 ## E1 ## E0 ## E0; }; \
+
424  struct { detail::_swizzle<4,T, Q, 1,1,0,1> E1 ## E1 ## E0 ## E1; }; \
+
425  struct { detail::_swizzle<4,T, Q, 1,1,0,2> E1 ## E1 ## E0 ## E2; }; \
+
426  struct { detail::_swizzle<4,T, Q, 1,1,1,0> E1 ## E1 ## E1 ## E0; }; \
+
427  struct { detail::_swizzle<4,T, Q, 1,1,1,1> E1 ## E1 ## E1 ## E1; }; \
+
428  struct { detail::_swizzle<4,T, Q, 1,1,1,2> E1 ## E1 ## E1 ## E2; }; \
+
429  struct { detail::_swizzle<4,T, Q, 1,1,2,0> E1 ## E1 ## E2 ## E0; }; \
+
430  struct { detail::_swizzle<4,T, Q, 1,1,2,1> E1 ## E1 ## E2 ## E1; }; \
+
431  struct { detail::_swizzle<4,T, Q, 1,1,2,2> E1 ## E1 ## E2 ## E2; }; \
+
432  struct { detail::_swizzle<4,T, Q, 1,2,0,0> E1 ## E2 ## E0 ## E0; }; \
+
433  struct { detail::_swizzle<4,T, Q, 1,2,0,1> E1 ## E2 ## E0 ## E1; }; \
+
434  struct { detail::_swizzle<4,T, Q, 1,2,0,2> E1 ## E2 ## E0 ## E2; }; \
+
435  struct { detail::_swizzle<4,T, Q, 1,2,1,0> E1 ## E2 ## E1 ## E0; }; \
+
436  struct { detail::_swizzle<4,T, Q, 1,2,1,1> E1 ## E2 ## E1 ## E1; }; \
+
437  struct { detail::_swizzle<4,T, Q, 1,2,1,2> E1 ## E2 ## E1 ## E2; }; \
+
438  struct { detail::_swizzle<4,T, Q, 1,2,2,0> E1 ## E2 ## E2 ## E0; }; \
+
439  struct { detail::_swizzle<4,T, Q, 1,2,2,1> E1 ## E2 ## E2 ## E1; }; \
+
440  struct { detail::_swizzle<4,T, Q, 1,2,2,2> E1 ## E2 ## E2 ## E2; }; \
+
441  struct { detail::_swizzle<4,T, Q, 2,0,0,0> E2 ## E0 ## E0 ## E0; }; \
+
442  struct { detail::_swizzle<4,T, Q, 2,0,0,1> E2 ## E0 ## E0 ## E1; }; \
+
443  struct { detail::_swizzle<4,T, Q, 2,0,0,2> E2 ## E0 ## E0 ## E2; }; \
+
444  struct { detail::_swizzle<4,T, Q, 2,0,1,0> E2 ## E0 ## E1 ## E0; }; \
+
445  struct { detail::_swizzle<4,T, Q, 2,0,1,1> E2 ## E0 ## E1 ## E1; }; \
+
446  struct { detail::_swizzle<4,T, Q, 2,0,1,2> E2 ## E0 ## E1 ## E2; }; \
+
447  struct { detail::_swizzle<4,T, Q, 2,0,2,0> E2 ## E0 ## E2 ## E0; }; \
+
448  struct { detail::_swizzle<4,T, Q, 2,0,2,1> E2 ## E0 ## E2 ## E1; }; \
+
449  struct { detail::_swizzle<4,T, Q, 2,0,2,2> E2 ## E0 ## E2 ## E2; }; \
+
450  struct { detail::_swizzle<4,T, Q, 2,1,0,0> E2 ## E1 ## E0 ## E0; }; \
+
451  struct { detail::_swizzle<4,T, Q, 2,1,0,1> E2 ## E1 ## E0 ## E1; }; \
+
452  struct { detail::_swizzle<4,T, Q, 2,1,0,2> E2 ## E1 ## E0 ## E2; }; \
+
453  struct { detail::_swizzle<4,T, Q, 2,1,1,0> E2 ## E1 ## E1 ## E0; }; \
+
454  struct { detail::_swizzle<4,T, Q, 2,1,1,1> E2 ## E1 ## E1 ## E1; }; \
+
455  struct { detail::_swizzle<4,T, Q, 2,1,1,2> E2 ## E1 ## E1 ## E2; }; \
+
456  struct { detail::_swizzle<4,T, Q, 2,1,2,0> E2 ## E1 ## E2 ## E0; }; \
+
457  struct { detail::_swizzle<4,T, Q, 2,1,2,1> E2 ## E1 ## E2 ## E1; }; \
+
458  struct { detail::_swizzle<4,T, Q, 2,1,2,2> E2 ## E1 ## E2 ## E2; }; \
+
459  struct { detail::_swizzle<4,T, Q, 2,2,0,0> E2 ## E2 ## E0 ## E0; }; \
+
460  struct { detail::_swizzle<4,T, Q, 2,2,0,1> E2 ## E2 ## E0 ## E1; }; \
+
461  struct { detail::_swizzle<4,T, Q, 2,2,0,2> E2 ## E2 ## E0 ## E2; }; \
+
462  struct { detail::_swizzle<4,T, Q, 2,2,1,0> E2 ## E2 ## E1 ## E0; }; \
+
463  struct { detail::_swizzle<4,T, Q, 2,2,1,1> E2 ## E2 ## E1 ## E1; }; \
+
464  struct { detail::_swizzle<4,T, Q, 2,2,1,2> E2 ## E2 ## E1 ## E2; }; \
+
465  struct { detail::_swizzle<4,T, Q, 2,2,2,0> E2 ## E2 ## E2 ## E0; }; \
+
466  struct { detail::_swizzle<4,T, Q, 2,2,2,1> E2 ## E2 ## E2 ## E1; }; \
+
467  struct { detail::_swizzle<4,T, Q, 2,2,2,2> E2 ## E2 ## E2 ## E2; };
+
468 
+
469 #define GLM_SWIZZLE4_2_MEMBERS(T, Q, E0,E1,E2,E3) \
+
470  struct { detail::_swizzle<2,T, Q, 0,0,-1,-2> E0 ## E0; }; \
+
471  struct { detail::_swizzle<2,T, Q, 0,1,-1,-2> E0 ## E1; }; \
+
472  struct { detail::_swizzle<2,T, Q, 0,2,-1,-2> E0 ## E2; }; \
+
473  struct { detail::_swizzle<2,T, Q, 0,3,-1,-2> E0 ## E3; }; \
+
474  struct { detail::_swizzle<2,T, Q, 1,0,-1,-2> E1 ## E0; }; \
+
475  struct { detail::_swizzle<2,T, Q, 1,1,-1,-2> E1 ## E1; }; \
+
476  struct { detail::_swizzle<2,T, Q, 1,2,-1,-2> E1 ## E2; }; \
+
477  struct { detail::_swizzle<2,T, Q, 1,3,-1,-2> E1 ## E3; }; \
+
478  struct { detail::_swizzle<2,T, Q, 2,0,-1,-2> E2 ## E0; }; \
+
479  struct { detail::_swizzle<2,T, Q, 2,1,-1,-2> E2 ## E1; }; \
+
480  struct { detail::_swizzle<2,T, Q, 2,2,-1,-2> E2 ## E2; }; \
+
481  struct { detail::_swizzle<2,T, Q, 2,3,-1,-2> E2 ## E3; }; \
+
482  struct { detail::_swizzle<2,T, Q, 3,0,-1,-2> E3 ## E0; }; \
+
483  struct { detail::_swizzle<2,T, Q, 3,1,-1,-2> E3 ## E1; }; \
+
484  struct { detail::_swizzle<2,T, Q, 3,2,-1,-2> E3 ## E2; }; \
+
485  struct { detail::_swizzle<2,T, Q, 3,3,-1,-2> E3 ## E3; };
+
486 
+
487 #define GLM_SWIZZLE4_3_MEMBERS(T, Q, E0,E1,E2,E3) \
+
488  struct { detail::_swizzle<3, T, Q, 0,0,0,3> E0 ## E0 ## E0; }; \
+
489  struct { detail::_swizzle<3, T, Q, 0,0,1,3> E0 ## E0 ## E1; }; \
+
490  struct { detail::_swizzle<3, T, Q, 0,0,2,3> E0 ## E0 ## E2; }; \
+
491  struct { detail::_swizzle<3, T, Q, 0,0,3,3> E0 ## E0 ## E3; }; \
+
492  struct { detail::_swizzle<3, T, Q, 0,1,0,3> E0 ## E1 ## E0; }; \
+
493  struct { detail::_swizzle<3, T, Q, 0,1,1,3> E0 ## E1 ## E1; }; \
+
494  struct { detail::_swizzle<3, T, Q, 0,1,2,3> E0 ## E1 ## E2; }; \
+
495  struct { detail::_swizzle<3, T, Q, 0,1,3,3> E0 ## E1 ## E3; }; \
+
496  struct { detail::_swizzle<3, T, Q, 0,2,0,3> E0 ## E2 ## E0; }; \
+
497  struct { detail::_swizzle<3, T, Q, 0,2,1,3> E0 ## E2 ## E1; }; \
+
498  struct { detail::_swizzle<3, T, Q, 0,2,2,3> E0 ## E2 ## E2; }; \
+
499  struct { detail::_swizzle<3, T, Q, 0,2,3,3> E0 ## E2 ## E3; }; \
+
500  struct { detail::_swizzle<3, T, Q, 0,3,0,3> E0 ## E3 ## E0; }; \
+
501  struct { detail::_swizzle<3, T, Q, 0,3,1,3> E0 ## E3 ## E1; }; \
+
502  struct { detail::_swizzle<3, T, Q, 0,3,2,3> E0 ## E3 ## E2; }; \
+
503  struct { detail::_swizzle<3, T, Q, 0,3,3,3> E0 ## E3 ## E3; }; \
+
504  struct { detail::_swizzle<3, T, Q, 1,0,0,3> E1 ## E0 ## E0; }; \
+
505  struct { detail::_swizzle<3, T, Q, 1,0,1,3> E1 ## E0 ## E1; }; \
+
506  struct { detail::_swizzle<3, T, Q, 1,0,2,3> E1 ## E0 ## E2; }; \
+
507  struct { detail::_swizzle<3, T, Q, 1,0,3,3> E1 ## E0 ## E3; }; \
+
508  struct { detail::_swizzle<3, T, Q, 1,1,0,3> E1 ## E1 ## E0; }; \
+
509  struct { detail::_swizzle<3, T, Q, 1,1,1,3> E1 ## E1 ## E1; }; \
+
510  struct { detail::_swizzle<3, T, Q, 1,1,2,3> E1 ## E1 ## E2; }; \
+
511  struct { detail::_swizzle<3, T, Q, 1,1,3,3> E1 ## E1 ## E3; }; \
+
512  struct { detail::_swizzle<3, T, Q, 1,2,0,3> E1 ## E2 ## E0; }; \
+
513  struct { detail::_swizzle<3, T, Q, 1,2,1,3> E1 ## E2 ## E1; }; \
+
514  struct { detail::_swizzle<3, T, Q, 1,2,2,3> E1 ## E2 ## E2; }; \
+
515  struct { detail::_swizzle<3, T, Q, 1,2,3,3> E1 ## E2 ## E3; }; \
+
516  struct { detail::_swizzle<3, T, Q, 1,3,0,3> E1 ## E3 ## E0; }; \
+
517  struct { detail::_swizzle<3, T, Q, 1,3,1,3> E1 ## E3 ## E1; }; \
+
518  struct { detail::_swizzle<3, T, Q, 1,3,2,3> E1 ## E3 ## E2; }; \
+
519  struct { detail::_swizzle<3, T, Q, 1,3,3,3> E1 ## E3 ## E3; }; \
+
520  struct { detail::_swizzle<3, T, Q, 2,0,0,3> E2 ## E0 ## E0; }; \
+
521  struct { detail::_swizzle<3, T, Q, 2,0,1,3> E2 ## E0 ## E1; }; \
+
522  struct { detail::_swizzle<3, T, Q, 2,0,2,3> E2 ## E0 ## E2; }; \
+
523  struct { detail::_swizzle<3, T, Q, 2,0,3,3> E2 ## E0 ## E3; }; \
+
524  struct { detail::_swizzle<3, T, Q, 2,1,0,3> E2 ## E1 ## E0; }; \
+
525  struct { detail::_swizzle<3, T, Q, 2,1,1,3> E2 ## E1 ## E1; }; \
+
526  struct { detail::_swizzle<3, T, Q, 2,1,2,3> E2 ## E1 ## E2; }; \
+
527  struct { detail::_swizzle<3, T, Q, 2,1,3,3> E2 ## E1 ## E3; }; \
+
528  struct { detail::_swizzle<3, T, Q, 2,2,0,3> E2 ## E2 ## E0; }; \
+
529  struct { detail::_swizzle<3, T, Q, 2,2,1,3> E2 ## E2 ## E1; }; \
+
530  struct { detail::_swizzle<3, T, Q, 2,2,2,3> E2 ## E2 ## E2; }; \
+
531  struct { detail::_swizzle<3, T, Q, 2,2,3,3> E2 ## E2 ## E3; }; \
+
532  struct { detail::_swizzle<3, T, Q, 2,3,0,3> E2 ## E3 ## E0; }; \
+
533  struct { detail::_swizzle<3, T, Q, 2,3,1,3> E2 ## E3 ## E1; }; \
+
534  struct { detail::_swizzle<3, T, Q, 2,3,2,3> E2 ## E3 ## E2; }; \
+
535  struct { detail::_swizzle<3, T, Q, 2,3,3,3> E2 ## E3 ## E3; }; \
+
536  struct { detail::_swizzle<3, T, Q, 3,0,0,3> E3 ## E0 ## E0; }; \
+
537  struct { detail::_swizzle<3, T, Q, 3,0,1,3> E3 ## E0 ## E1; }; \
+
538  struct { detail::_swizzle<3, T, Q, 3,0,2,3> E3 ## E0 ## E2; }; \
+
539  struct { detail::_swizzle<3, T, Q, 3,0,3,3> E3 ## E0 ## E3; }; \
+
540  struct { detail::_swizzle<3, T, Q, 3,1,0,3> E3 ## E1 ## E0; }; \
+
541  struct { detail::_swizzle<3, T, Q, 3,1,1,3> E3 ## E1 ## E1; }; \
+
542  struct { detail::_swizzle<3, T, Q, 3,1,2,3> E3 ## E1 ## E2; }; \
+
543  struct { detail::_swizzle<3, T, Q, 3,1,3,3> E3 ## E1 ## E3; }; \
+
544  struct { detail::_swizzle<3, T, Q, 3,2,0,3> E3 ## E2 ## E0; }; \
+
545  struct { detail::_swizzle<3, T, Q, 3,2,1,3> E3 ## E2 ## E1; }; \
+
546  struct { detail::_swizzle<3, T, Q, 3,2,2,3> E3 ## E2 ## E2; }; \
+
547  struct { detail::_swizzle<3, T, Q, 3,2,3,3> E3 ## E2 ## E3; }; \
+
548  struct { detail::_swizzle<3, T, Q, 3,3,0,3> E3 ## E3 ## E0; }; \
+
549  struct { detail::_swizzle<3, T, Q, 3,3,1,3> E3 ## E3 ## E1; }; \
+
550  struct { detail::_swizzle<3, T, Q, 3,3,2,3> E3 ## E3 ## E2; }; \
+
551  struct { detail::_swizzle<3, T, Q, 3,3,3,3> E3 ## E3 ## E3; };
+
552 
+
553 #define GLM_SWIZZLE4_4_MEMBERS(T, Q, E0,E1,E2,E3) \
+
554  struct { detail::_swizzle<4, T, Q, 0,0,0,0> E0 ## E0 ## E0 ## E0; }; \
+
555  struct { detail::_swizzle<4, T, Q, 0,0,0,1> E0 ## E0 ## E0 ## E1; }; \
+
556  struct { detail::_swizzle<4, T, Q, 0,0,0,2> E0 ## E0 ## E0 ## E2; }; \
+
557  struct { detail::_swizzle<4, T, Q, 0,0,0,3> E0 ## E0 ## E0 ## E3; }; \
+
558  struct { detail::_swizzle<4, T, Q, 0,0,1,0> E0 ## E0 ## E1 ## E0; }; \
+
559  struct { detail::_swizzle<4, T, Q, 0,0,1,1> E0 ## E0 ## E1 ## E1; }; \
+
560  struct { detail::_swizzle<4, T, Q, 0,0,1,2> E0 ## E0 ## E1 ## E2; }; \
+
561  struct { detail::_swizzle<4, T, Q, 0,0,1,3> E0 ## E0 ## E1 ## E3; }; \
+
562  struct { detail::_swizzle<4, T, Q, 0,0,2,0> E0 ## E0 ## E2 ## E0; }; \
+
563  struct { detail::_swizzle<4, T, Q, 0,0,2,1> E0 ## E0 ## E2 ## E1; }; \
+
564  struct { detail::_swizzle<4, T, Q, 0,0,2,2> E0 ## E0 ## E2 ## E2; }; \
+
565  struct { detail::_swizzle<4, T, Q, 0,0,2,3> E0 ## E0 ## E2 ## E3; }; \
+
566  struct { detail::_swizzle<4, T, Q, 0,0,3,0> E0 ## E0 ## E3 ## E0; }; \
+
567  struct { detail::_swizzle<4, T, Q, 0,0,3,1> E0 ## E0 ## E3 ## E1; }; \
+
568  struct { detail::_swizzle<4, T, Q, 0,0,3,2> E0 ## E0 ## E3 ## E2; }; \
+
569  struct { detail::_swizzle<4, T, Q, 0,0,3,3> E0 ## E0 ## E3 ## E3; }; \
+
570  struct { detail::_swizzle<4, T, Q, 0,1,0,0> E0 ## E1 ## E0 ## E0; }; \
+
571  struct { detail::_swizzle<4, T, Q, 0,1,0,1> E0 ## E1 ## E0 ## E1; }; \
+
572  struct { detail::_swizzle<4, T, Q, 0,1,0,2> E0 ## E1 ## E0 ## E2; }; \
+
573  struct { detail::_swizzle<4, T, Q, 0,1,0,3> E0 ## E1 ## E0 ## E3; }; \
+
574  struct { detail::_swizzle<4, T, Q, 0,1,1,0> E0 ## E1 ## E1 ## E0; }; \
+
575  struct { detail::_swizzle<4, T, Q, 0,1,1,1> E0 ## E1 ## E1 ## E1; }; \
+
576  struct { detail::_swizzle<4, T, Q, 0,1,1,2> E0 ## E1 ## E1 ## E2; }; \
+
577  struct { detail::_swizzle<4, T, Q, 0,1,1,3> E0 ## E1 ## E1 ## E3; }; \
+
578  struct { detail::_swizzle<4, T, Q, 0,1,2,0> E0 ## E1 ## E2 ## E0; }; \
+
579  struct { detail::_swizzle<4, T, Q, 0,1,2,1> E0 ## E1 ## E2 ## E1; }; \
+
580  struct { detail::_swizzle<4, T, Q, 0,1,2,2> E0 ## E1 ## E2 ## E2; }; \
+
581  struct { detail::_swizzle<4, T, Q, 0,1,2,3> E0 ## E1 ## E2 ## E3; }; \
+
582  struct { detail::_swizzle<4, T, Q, 0,1,3,0> E0 ## E1 ## E3 ## E0; }; \
+
583  struct { detail::_swizzle<4, T, Q, 0,1,3,1> E0 ## E1 ## E3 ## E1; }; \
+
584  struct { detail::_swizzle<4, T, Q, 0,1,3,2> E0 ## E1 ## E3 ## E2; }; \
+
585  struct { detail::_swizzle<4, T, Q, 0,1,3,3> E0 ## E1 ## E3 ## E3; }; \
+
586  struct { detail::_swizzle<4, T, Q, 0,2,0,0> E0 ## E2 ## E0 ## E0; }; \
+
587  struct { detail::_swizzle<4, T, Q, 0,2,0,1> E0 ## E2 ## E0 ## E1; }; \
+
588  struct { detail::_swizzle<4, T, Q, 0,2,0,2> E0 ## E2 ## E0 ## E2; }; \
+
589  struct { detail::_swizzle<4, T, Q, 0,2,0,3> E0 ## E2 ## E0 ## E3; }; \
+
590  struct { detail::_swizzle<4, T, Q, 0,2,1,0> E0 ## E2 ## E1 ## E0; }; \
+
591  struct { detail::_swizzle<4, T, Q, 0,2,1,1> E0 ## E2 ## E1 ## E1; }; \
+
592  struct { detail::_swizzle<4, T, Q, 0,2,1,2> E0 ## E2 ## E1 ## E2; }; \
+
593  struct { detail::_swizzle<4, T, Q, 0,2,1,3> E0 ## E2 ## E1 ## E3; }; \
+
594  struct { detail::_swizzle<4, T, Q, 0,2,2,0> E0 ## E2 ## E2 ## E0; }; \
+
595  struct { detail::_swizzle<4, T, Q, 0,2,2,1> E0 ## E2 ## E2 ## E1; }; \
+
596  struct { detail::_swizzle<4, T, Q, 0,2,2,2> E0 ## E2 ## E2 ## E2; }; \
+
597  struct { detail::_swizzle<4, T, Q, 0,2,2,3> E0 ## E2 ## E2 ## E3; }; \
+
598  struct { detail::_swizzle<4, T, Q, 0,2,3,0> E0 ## E2 ## E3 ## E0; }; \
+
599  struct { detail::_swizzle<4, T, Q, 0,2,3,1> E0 ## E2 ## E3 ## E1; }; \
+
600  struct { detail::_swizzle<4, T, Q, 0,2,3,2> E0 ## E2 ## E3 ## E2; }; \
+
601  struct { detail::_swizzle<4, T, Q, 0,2,3,3> E0 ## E2 ## E3 ## E3; }; \
+
602  struct { detail::_swizzle<4, T, Q, 0,3,0,0> E0 ## E3 ## E0 ## E0; }; \
+
603  struct { detail::_swizzle<4, T, Q, 0,3,0,1> E0 ## E3 ## E0 ## E1; }; \
+
604  struct { detail::_swizzle<4, T, Q, 0,3,0,2> E0 ## E3 ## E0 ## E2; }; \
+
605  struct { detail::_swizzle<4, T, Q, 0,3,0,3> E0 ## E3 ## E0 ## E3; }; \
+
606  struct { detail::_swizzle<4, T, Q, 0,3,1,0> E0 ## E3 ## E1 ## E0; }; \
+
607  struct { detail::_swizzle<4, T, Q, 0,3,1,1> E0 ## E3 ## E1 ## E1; }; \
+
608  struct { detail::_swizzle<4, T, Q, 0,3,1,2> E0 ## E3 ## E1 ## E2; }; \
+
609  struct { detail::_swizzle<4, T, Q, 0,3,1,3> E0 ## E3 ## E1 ## E3; }; \
+
610  struct { detail::_swizzle<4, T, Q, 0,3,2,0> E0 ## E3 ## E2 ## E0; }; \
+
611  struct { detail::_swizzle<4, T, Q, 0,3,2,1> E0 ## E3 ## E2 ## E1; }; \
+
612  struct { detail::_swizzle<4, T, Q, 0,3,2,2> E0 ## E3 ## E2 ## E2; }; \
+
613  struct { detail::_swizzle<4, T, Q, 0,3,2,3> E0 ## E3 ## E2 ## E3; }; \
+
614  struct { detail::_swizzle<4, T, Q, 0,3,3,0> E0 ## E3 ## E3 ## E0; }; \
+
615  struct { detail::_swizzle<4, T, Q, 0,3,3,1> E0 ## E3 ## E3 ## E1; }; \
+
616  struct { detail::_swizzle<4, T, Q, 0,3,3,2> E0 ## E3 ## E3 ## E2; }; \
+
617  struct { detail::_swizzle<4, T, Q, 0,3,3,3> E0 ## E3 ## E3 ## E3; }; \
+
618  struct { detail::_swizzle<4, T, Q, 1,0,0,0> E1 ## E0 ## E0 ## E0; }; \
+
619  struct { detail::_swizzle<4, T, Q, 1,0,0,1> E1 ## E0 ## E0 ## E1; }; \
+
620  struct { detail::_swizzle<4, T, Q, 1,0,0,2> E1 ## E0 ## E0 ## E2; }; \
+
621  struct { detail::_swizzle<4, T, Q, 1,0,0,3> E1 ## E0 ## E0 ## E3; }; \
+
622  struct { detail::_swizzle<4, T, Q, 1,0,1,0> E1 ## E0 ## E1 ## E0; }; \
+
623  struct { detail::_swizzle<4, T, Q, 1,0,1,1> E1 ## E0 ## E1 ## E1; }; \
+
624  struct { detail::_swizzle<4, T, Q, 1,0,1,2> E1 ## E0 ## E1 ## E2; }; \
+
625  struct { detail::_swizzle<4, T, Q, 1,0,1,3> E1 ## E0 ## E1 ## E3; }; \
+
626  struct { detail::_swizzle<4, T, Q, 1,0,2,0> E1 ## E0 ## E2 ## E0; }; \
+
627  struct { detail::_swizzle<4, T, Q, 1,0,2,1> E1 ## E0 ## E2 ## E1; }; \
+
628  struct { detail::_swizzle<4, T, Q, 1,0,2,2> E1 ## E0 ## E2 ## E2; }; \
+
629  struct { detail::_swizzle<4, T, Q, 1,0,2,3> E1 ## E0 ## E2 ## E3; }; \
+
630  struct { detail::_swizzle<4, T, Q, 1,0,3,0> E1 ## E0 ## E3 ## E0; }; \
+
631  struct { detail::_swizzle<4, T, Q, 1,0,3,1> E1 ## E0 ## E3 ## E1; }; \
+
632  struct { detail::_swizzle<4, T, Q, 1,0,3,2> E1 ## E0 ## E3 ## E2; }; \
+
633  struct { detail::_swizzle<4, T, Q, 1,0,3,3> E1 ## E0 ## E3 ## E3; }; \
+
634  struct { detail::_swizzle<4, T, Q, 1,1,0,0> E1 ## E1 ## E0 ## E0; }; \
+
635  struct { detail::_swizzle<4, T, Q, 1,1,0,1> E1 ## E1 ## E0 ## E1; }; \
+
636  struct { detail::_swizzle<4, T, Q, 1,1,0,2> E1 ## E1 ## E0 ## E2; }; \
+
637  struct { detail::_swizzle<4, T, Q, 1,1,0,3> E1 ## E1 ## E0 ## E3; }; \
+
638  struct { detail::_swizzle<4, T, Q, 1,1,1,0> E1 ## E1 ## E1 ## E0; }; \
+
639  struct { detail::_swizzle<4, T, Q, 1,1,1,1> E1 ## E1 ## E1 ## E1; }; \
+
640  struct { detail::_swizzle<4, T, Q, 1,1,1,2> E1 ## E1 ## E1 ## E2; }; \
+
641  struct { detail::_swizzle<4, T, Q, 1,1,1,3> E1 ## E1 ## E1 ## E3; }; \
+
642  struct { detail::_swizzle<4, T, Q, 1,1,2,0> E1 ## E1 ## E2 ## E0; }; \
+
643  struct { detail::_swizzle<4, T, Q, 1,1,2,1> E1 ## E1 ## E2 ## E1; }; \
+
644  struct { detail::_swizzle<4, T, Q, 1,1,2,2> E1 ## E1 ## E2 ## E2; }; \
+
645  struct { detail::_swizzle<4, T, Q, 1,1,2,3> E1 ## E1 ## E2 ## E3; }; \
+
646  struct { detail::_swizzle<4, T, Q, 1,1,3,0> E1 ## E1 ## E3 ## E0; }; \
+
647  struct { detail::_swizzle<4, T, Q, 1,1,3,1> E1 ## E1 ## E3 ## E1; }; \
+
648  struct { detail::_swizzle<4, T, Q, 1,1,3,2> E1 ## E1 ## E3 ## E2; }; \
+
649  struct { detail::_swizzle<4, T, Q, 1,1,3,3> E1 ## E1 ## E3 ## E3; }; \
+
650  struct { detail::_swizzle<4, T, Q, 1,2,0,0> E1 ## E2 ## E0 ## E0; }; \
+
651  struct { detail::_swizzle<4, T, Q, 1,2,0,1> E1 ## E2 ## E0 ## E1; }; \
+
652  struct { detail::_swizzle<4, T, Q, 1,2,0,2> E1 ## E2 ## E0 ## E2; }; \
+
653  struct { detail::_swizzle<4, T, Q, 1,2,0,3> E1 ## E2 ## E0 ## E3; }; \
+
654  struct { detail::_swizzle<4, T, Q, 1,2,1,0> E1 ## E2 ## E1 ## E0; }; \
+
655  struct { detail::_swizzle<4, T, Q, 1,2,1,1> E1 ## E2 ## E1 ## E1; }; \
+
656  struct { detail::_swizzle<4, T, Q, 1,2,1,2> E1 ## E2 ## E1 ## E2; }; \
+
657  struct { detail::_swizzle<4, T, Q, 1,2,1,3> E1 ## E2 ## E1 ## E3; }; \
+
658  struct { detail::_swizzle<4, T, Q, 1,2,2,0> E1 ## E2 ## E2 ## E0; }; \
+
659  struct { detail::_swizzle<4, T, Q, 1,2,2,1> E1 ## E2 ## E2 ## E1; }; \
+
660  struct { detail::_swizzle<4, T, Q, 1,2,2,2> E1 ## E2 ## E2 ## E2; }; \
+
661  struct { detail::_swizzle<4, T, Q, 1,2,2,3> E1 ## E2 ## E2 ## E3; }; \
+
662  struct { detail::_swizzle<4, T, Q, 1,2,3,0> E1 ## E2 ## E3 ## E0; }; \
+
663  struct { detail::_swizzle<4, T, Q, 1,2,3,1> E1 ## E2 ## E3 ## E1; }; \
+
664  struct { detail::_swizzle<4, T, Q, 1,2,3,2> E1 ## E2 ## E3 ## E2; }; \
+
665  struct { detail::_swizzle<4, T, Q, 1,2,3,3> E1 ## E2 ## E3 ## E3; }; \
+
666  struct { detail::_swizzle<4, T, Q, 1,3,0,0> E1 ## E3 ## E0 ## E0; }; \
+
667  struct { detail::_swizzle<4, T, Q, 1,3,0,1> E1 ## E3 ## E0 ## E1; }; \
+
668  struct { detail::_swizzle<4, T, Q, 1,3,0,2> E1 ## E3 ## E0 ## E2; }; \
+
669  struct { detail::_swizzle<4, T, Q, 1,3,0,3> E1 ## E3 ## E0 ## E3; }; \
+
670  struct { detail::_swizzle<4, T, Q, 1,3,1,0> E1 ## E3 ## E1 ## E0; }; \
+
671  struct { detail::_swizzle<4, T, Q, 1,3,1,1> E1 ## E3 ## E1 ## E1; }; \
+
672  struct { detail::_swizzle<4, T, Q, 1,3,1,2> E1 ## E3 ## E1 ## E2; }; \
+
673  struct { detail::_swizzle<4, T, Q, 1,3,1,3> E1 ## E3 ## E1 ## E3; }; \
+
674  struct { detail::_swizzle<4, T, Q, 1,3,2,0> E1 ## E3 ## E2 ## E0; }; \
+
675  struct { detail::_swizzle<4, T, Q, 1,3,2,1> E1 ## E3 ## E2 ## E1; }; \
+
676  struct { detail::_swizzle<4, T, Q, 1,3,2,2> E1 ## E3 ## E2 ## E2; }; \
+
677  struct { detail::_swizzle<4, T, Q, 1,3,2,3> E1 ## E3 ## E2 ## E3; }; \
+
678  struct { detail::_swizzle<4, T, Q, 1,3,3,0> E1 ## E3 ## E3 ## E0; }; \
+
679  struct { detail::_swizzle<4, T, Q, 1,3,3,1> E1 ## E3 ## E3 ## E1; }; \
+
680  struct { detail::_swizzle<4, T, Q, 1,3,3,2> E1 ## E3 ## E3 ## E2; }; \
+
681  struct { detail::_swizzle<4, T, Q, 1,3,3,3> E1 ## E3 ## E3 ## E3; }; \
+
682  struct { detail::_swizzle<4, T, Q, 2,0,0,0> E2 ## E0 ## E0 ## E0; }; \
+
683  struct { detail::_swizzle<4, T, Q, 2,0,0,1> E2 ## E0 ## E0 ## E1; }; \
+
684  struct { detail::_swizzle<4, T, Q, 2,0,0,2> E2 ## E0 ## E0 ## E2; }; \
+
685  struct { detail::_swizzle<4, T, Q, 2,0,0,3> E2 ## E0 ## E0 ## E3; }; \
+
686  struct { detail::_swizzle<4, T, Q, 2,0,1,0> E2 ## E0 ## E1 ## E0; }; \
+
687  struct { detail::_swizzle<4, T, Q, 2,0,1,1> E2 ## E0 ## E1 ## E1; }; \
+
688  struct { detail::_swizzle<4, T, Q, 2,0,1,2> E2 ## E0 ## E1 ## E2; }; \
+
689  struct { detail::_swizzle<4, T, Q, 2,0,1,3> E2 ## E0 ## E1 ## E3; }; \
+
690  struct { detail::_swizzle<4, T, Q, 2,0,2,0> E2 ## E0 ## E2 ## E0; }; \
+
691  struct { detail::_swizzle<4, T, Q, 2,0,2,1> E2 ## E0 ## E2 ## E1; }; \
+
692  struct { detail::_swizzle<4, T, Q, 2,0,2,2> E2 ## E0 ## E2 ## E2; }; \
+
693  struct { detail::_swizzle<4, T, Q, 2,0,2,3> E2 ## E0 ## E2 ## E3; }; \
+
694  struct { detail::_swizzle<4, T, Q, 2,0,3,0> E2 ## E0 ## E3 ## E0; }; \
+
695  struct { detail::_swizzle<4, T, Q, 2,0,3,1> E2 ## E0 ## E3 ## E1; }; \
+
696  struct { detail::_swizzle<4, T, Q, 2,0,3,2> E2 ## E0 ## E3 ## E2; }; \
+
697  struct { detail::_swizzle<4, T, Q, 2,0,3,3> E2 ## E0 ## E3 ## E3; }; \
+
698  struct { detail::_swizzle<4, T, Q, 2,1,0,0> E2 ## E1 ## E0 ## E0; }; \
+
699  struct { detail::_swizzle<4, T, Q, 2,1,0,1> E2 ## E1 ## E0 ## E1; }; \
+
700  struct { detail::_swizzle<4, T, Q, 2,1,0,2> E2 ## E1 ## E0 ## E2; }; \
+
701  struct { detail::_swizzle<4, T, Q, 2,1,0,3> E2 ## E1 ## E0 ## E3; }; \
+
702  struct { detail::_swizzle<4, T, Q, 2,1,1,0> E2 ## E1 ## E1 ## E0; }; \
+
703  struct { detail::_swizzle<4, T, Q, 2,1,1,1> E2 ## E1 ## E1 ## E1; }; \
+
704  struct { detail::_swizzle<4, T, Q, 2,1,1,2> E2 ## E1 ## E1 ## E2; }; \
+
705  struct { detail::_swizzle<4, T, Q, 2,1,1,3> E2 ## E1 ## E1 ## E3; }; \
+
706  struct { detail::_swizzle<4, T, Q, 2,1,2,0> E2 ## E1 ## E2 ## E0; }; \
+
707  struct { detail::_swizzle<4, T, Q, 2,1,2,1> E2 ## E1 ## E2 ## E1; }; \
+
708  struct { detail::_swizzle<4, T, Q, 2,1,2,2> E2 ## E1 ## E2 ## E2; }; \
+
709  struct { detail::_swizzle<4, T, Q, 2,1,2,3> E2 ## E1 ## E2 ## E3; }; \
+
710  struct { detail::_swizzle<4, T, Q, 2,1,3,0> E2 ## E1 ## E3 ## E0; }; \
+
711  struct { detail::_swizzle<4, T, Q, 2,1,3,1> E2 ## E1 ## E3 ## E1; }; \
+
712  struct { detail::_swizzle<4, T, Q, 2,1,3,2> E2 ## E1 ## E3 ## E2; }; \
+
713  struct { detail::_swizzle<4, T, Q, 2,1,3,3> E2 ## E1 ## E3 ## E3; }; \
+
714  struct { detail::_swizzle<4, T, Q, 2,2,0,0> E2 ## E2 ## E0 ## E0; }; \
+
715  struct { detail::_swizzle<4, T, Q, 2,2,0,1> E2 ## E2 ## E0 ## E1; }; \
+
716  struct { detail::_swizzle<4, T, Q, 2,2,0,2> E2 ## E2 ## E0 ## E2; }; \
+
717  struct { detail::_swizzle<4, T, Q, 2,2,0,3> E2 ## E2 ## E0 ## E3; }; \
+
718  struct { detail::_swizzle<4, T, Q, 2,2,1,0> E2 ## E2 ## E1 ## E0; }; \
+
719  struct { detail::_swizzle<4, T, Q, 2,2,1,1> E2 ## E2 ## E1 ## E1; }; \
+
720  struct { detail::_swizzle<4, T, Q, 2,2,1,2> E2 ## E2 ## E1 ## E2; }; \
+
721  struct { detail::_swizzle<4, T, Q, 2,2,1,3> E2 ## E2 ## E1 ## E3; }; \
+
722  struct { detail::_swizzle<4, T, Q, 2,2,2,0> E2 ## E2 ## E2 ## E0; }; \
+
723  struct { detail::_swizzle<4, T, Q, 2,2,2,1> E2 ## E2 ## E2 ## E1; }; \
+
724  struct { detail::_swizzle<4, T, Q, 2,2,2,2> E2 ## E2 ## E2 ## E2; }; \
+
725  struct { detail::_swizzle<4, T, Q, 2,2,2,3> E2 ## E2 ## E2 ## E3; }; \
+
726  struct { detail::_swizzle<4, T, Q, 2,2,3,0> E2 ## E2 ## E3 ## E0; }; \
+
727  struct { detail::_swizzle<4, T, Q, 2,2,3,1> E2 ## E2 ## E3 ## E1; }; \
+
728  struct { detail::_swizzle<4, T, Q, 2,2,3,2> E2 ## E2 ## E3 ## E2; }; \
+
729  struct { detail::_swizzle<4, T, Q, 2,2,3,3> E2 ## E2 ## E3 ## E3; }; \
+
730  struct { detail::_swizzle<4, T, Q, 2,3,0,0> E2 ## E3 ## E0 ## E0; }; \
+
731  struct { detail::_swizzle<4, T, Q, 2,3,0,1> E2 ## E3 ## E0 ## E1; }; \
+
732  struct { detail::_swizzle<4, T, Q, 2,3,0,2> E2 ## E3 ## E0 ## E2; }; \
+
733  struct { detail::_swizzle<4, T, Q, 2,3,0,3> E2 ## E3 ## E0 ## E3; }; \
+
734  struct { detail::_swizzle<4, T, Q, 2,3,1,0> E2 ## E3 ## E1 ## E0; }; \
+
735  struct { detail::_swizzle<4, T, Q, 2,3,1,1> E2 ## E3 ## E1 ## E1; }; \
+
736  struct { detail::_swizzle<4, T, Q, 2,3,1,2> E2 ## E3 ## E1 ## E2; }; \
+
737  struct { detail::_swizzle<4, T, Q, 2,3,1,3> E2 ## E3 ## E1 ## E3; }; \
+
738  struct { detail::_swizzle<4, T, Q, 2,3,2,0> E2 ## E3 ## E2 ## E0; }; \
+
739  struct { detail::_swizzle<4, T, Q, 2,3,2,1> E2 ## E3 ## E2 ## E1; }; \
+
740  struct { detail::_swizzle<4, T, Q, 2,3,2,2> E2 ## E3 ## E2 ## E2; }; \
+
741  struct { detail::_swizzle<4, T, Q, 2,3,2,3> E2 ## E3 ## E2 ## E3; }; \
+
742  struct { detail::_swizzle<4, T, Q, 2,3,3,0> E2 ## E3 ## E3 ## E0; }; \
+
743  struct { detail::_swizzle<4, T, Q, 2,3,3,1> E2 ## E3 ## E3 ## E1; }; \
+
744  struct { detail::_swizzle<4, T, Q, 2,3,3,2> E2 ## E3 ## E3 ## E2; }; \
+
745  struct { detail::_swizzle<4, T, Q, 2,3,3,3> E2 ## E3 ## E3 ## E3; }; \
+
746  struct { detail::_swizzle<4, T, Q, 3,0,0,0> E3 ## E0 ## E0 ## E0; }; \
+
747  struct { detail::_swizzle<4, T, Q, 3,0,0,1> E3 ## E0 ## E0 ## E1; }; \
+
748  struct { detail::_swizzle<4, T, Q, 3,0,0,2> E3 ## E0 ## E0 ## E2; }; \
+
749  struct { detail::_swizzle<4, T, Q, 3,0,0,3> E3 ## E0 ## E0 ## E3; }; \
+
750  struct { detail::_swizzle<4, T, Q, 3,0,1,0> E3 ## E0 ## E1 ## E0; }; \
+
751  struct { detail::_swizzle<4, T, Q, 3,0,1,1> E3 ## E0 ## E1 ## E1; }; \
+
752  struct { detail::_swizzle<4, T, Q, 3,0,1,2> E3 ## E0 ## E1 ## E2; }; \
+
753  struct { detail::_swizzle<4, T, Q, 3,0,1,3> E3 ## E0 ## E1 ## E3; }; \
+
754  struct { detail::_swizzle<4, T, Q, 3,0,2,0> E3 ## E0 ## E2 ## E0; }; \
+
755  struct { detail::_swizzle<4, T, Q, 3,0,2,1> E3 ## E0 ## E2 ## E1; }; \
+
756  struct { detail::_swizzle<4, T, Q, 3,0,2,2> E3 ## E0 ## E2 ## E2; }; \
+
757  struct { detail::_swizzle<4, T, Q, 3,0,2,3> E3 ## E0 ## E2 ## E3; }; \
+
758  struct { detail::_swizzle<4, T, Q, 3,0,3,0> E3 ## E0 ## E3 ## E0; }; \
+
759  struct { detail::_swizzle<4, T, Q, 3,0,3,1> E3 ## E0 ## E3 ## E1; }; \
+
760  struct { detail::_swizzle<4, T, Q, 3,0,3,2> E3 ## E0 ## E3 ## E2; }; \
+
761  struct { detail::_swizzle<4, T, Q, 3,0,3,3> E3 ## E0 ## E3 ## E3; }; \
+
762  struct { detail::_swizzle<4, T, Q, 3,1,0,0> E3 ## E1 ## E0 ## E0; }; \
+
763  struct { detail::_swizzle<4, T, Q, 3,1,0,1> E3 ## E1 ## E0 ## E1; }; \
+
764  struct { detail::_swizzle<4, T, Q, 3,1,0,2> E3 ## E1 ## E0 ## E2; }; \
+
765  struct { detail::_swizzle<4, T, Q, 3,1,0,3> E3 ## E1 ## E0 ## E3; }; \
+
766  struct { detail::_swizzle<4, T, Q, 3,1,1,0> E3 ## E1 ## E1 ## E0; }; \
+
767  struct { detail::_swizzle<4, T, Q, 3,1,1,1> E3 ## E1 ## E1 ## E1; }; \
+
768  struct { detail::_swizzle<4, T, Q, 3,1,1,2> E3 ## E1 ## E1 ## E2; }; \
+
769  struct { detail::_swizzle<4, T, Q, 3,1,1,3> E3 ## E1 ## E1 ## E3; }; \
+
770  struct { detail::_swizzle<4, T, Q, 3,1,2,0> E3 ## E1 ## E2 ## E0; }; \
+
771  struct { detail::_swizzle<4, T, Q, 3,1,2,1> E3 ## E1 ## E2 ## E1; }; \
+
772  struct { detail::_swizzle<4, T, Q, 3,1,2,2> E3 ## E1 ## E2 ## E2; }; \
+
773  struct { detail::_swizzle<4, T, Q, 3,1,2,3> E3 ## E1 ## E2 ## E3; }; \
+
774  struct { detail::_swizzle<4, T, Q, 3,1,3,0> E3 ## E1 ## E3 ## E0; }; \
+
775  struct { detail::_swizzle<4, T, Q, 3,1,3,1> E3 ## E1 ## E3 ## E1; }; \
+
776  struct { detail::_swizzle<4, T, Q, 3,1,3,2> E3 ## E1 ## E3 ## E2; }; \
+
777  struct { detail::_swizzle<4, T, Q, 3,1,3,3> E3 ## E1 ## E3 ## E3; }; \
+
778  struct { detail::_swizzle<4, T, Q, 3,2,0,0> E3 ## E2 ## E0 ## E0; }; \
+
779  struct { detail::_swizzle<4, T, Q, 3,2,0,1> E3 ## E2 ## E0 ## E1; }; \
+
780  struct { detail::_swizzle<4, T, Q, 3,2,0,2> E3 ## E2 ## E0 ## E2; }; \
+
781  struct { detail::_swizzle<4, T, Q, 3,2,0,3> E3 ## E2 ## E0 ## E3; }; \
+
782  struct { detail::_swizzle<4, T, Q, 3,2,1,0> E3 ## E2 ## E1 ## E0; }; \
+
783  struct { detail::_swizzle<4, T, Q, 3,2,1,1> E3 ## E2 ## E1 ## E1; }; \
+
784  struct { detail::_swizzle<4, T, Q, 3,2,1,2> E3 ## E2 ## E1 ## E2; }; \
+
785  struct { detail::_swizzle<4, T, Q, 3,2,1,3> E3 ## E2 ## E1 ## E3; }; \
+
786  struct { detail::_swizzle<4, T, Q, 3,2,2,0> E3 ## E2 ## E2 ## E0; }; \
+
787  struct { detail::_swizzle<4, T, Q, 3,2,2,1> E3 ## E2 ## E2 ## E1; }; \
+
788  struct { detail::_swizzle<4, T, Q, 3,2,2,2> E3 ## E2 ## E2 ## E2; }; \
+
789  struct { detail::_swizzle<4, T, Q, 3,2,2,3> E3 ## E2 ## E2 ## E3; }; \
+
790  struct { detail::_swizzle<4, T, Q, 3,2,3,0> E3 ## E2 ## E3 ## E0; }; \
+
791  struct { detail::_swizzle<4, T, Q, 3,2,3,1> E3 ## E2 ## E3 ## E1; }; \
+
792  struct { detail::_swizzle<4, T, Q, 3,2,3,2> E3 ## E2 ## E3 ## E2; }; \
+
793  struct { detail::_swizzle<4, T, Q, 3,2,3,3> E3 ## E2 ## E3 ## E3; }; \
+
794  struct { detail::_swizzle<4, T, Q, 3,3,0,0> E3 ## E3 ## E0 ## E0; }; \
+
795  struct { detail::_swizzle<4, T, Q, 3,3,0,1> E3 ## E3 ## E0 ## E1; }; \
+
796  struct { detail::_swizzle<4, T, Q, 3,3,0,2> E3 ## E3 ## E0 ## E2; }; \
+
797  struct { detail::_swizzle<4, T, Q, 3,3,0,3> E3 ## E3 ## E0 ## E3; }; \
+
798  struct { detail::_swizzle<4, T, Q, 3,3,1,0> E3 ## E3 ## E1 ## E0; }; \
+
799  struct { detail::_swizzle<4, T, Q, 3,3,1,1> E3 ## E3 ## E1 ## E1; }; \
+
800  struct { detail::_swizzle<4, T, Q, 3,3,1,2> E3 ## E3 ## E1 ## E2; }; \
+
801  struct { detail::_swizzle<4, T, Q, 3,3,1,3> E3 ## E3 ## E1 ## E3; }; \
+
802  struct { detail::_swizzle<4, T, Q, 3,3,2,0> E3 ## E3 ## E2 ## E0; }; \
+
803  struct { detail::_swizzle<4, T, Q, 3,3,2,1> E3 ## E3 ## E2 ## E1; }; \
+
804  struct { detail::_swizzle<4, T, Q, 3,3,2,2> E3 ## E3 ## E2 ## E2; }; \
+
805  struct { detail::_swizzle<4, T, Q, 3,3,2,3> E3 ## E3 ## E2 ## E3; }; \
+
806  struct { detail::_swizzle<4, T, Q, 3,3,3,0> E3 ## E3 ## E3 ## E0; }; \
+
807  struct { detail::_swizzle<4, T, Q, 3,3,3,1> E3 ## E3 ## E3 ## E1; }; \
+
808  struct { detail::_swizzle<4, T, Q, 3,3,3,2> E3 ## E3 ## E3 ## E2; }; \
+
809  struct { detail::_swizzle<4, T, Q, 3,3,3,3> E3 ## E3 ## E3 ## E3; };
+
+
GLM_FUNC_DECL GLM_CONSTEXPR genType e()
Return e constant.
+ + + + diff --git a/include/glm/doc/api/a00017_source.html b/include/glm/doc/api/a00017_source.html new file mode 100644 index 0000000..c24f7bf --- /dev/null +++ b/include/glm/doc/api/a00017_source.html @@ -0,0 +1,763 @@ + + + + + + + +1.0.2 API documentation: _swizzle_func.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
_swizzle_func.hpp
+
+
+
1 #pragma once
+
2 
+
3 #define GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, CONST, A, B) \
+
4  GLM_FUNC_QUALIFIER vec<2, T, Q> A ## B() CONST \
+
5  { \
+
6  return vec<2, T, Q>(this->A, this->B); \
+
7  }
+
8 
+
9 #define GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, CONST, A, B, C) \
+
10  GLM_FUNC_QUALIFIER vec<3, T, Q> A ## B ## C() CONST \
+
11  { \
+
12  return vec<3, T, Q>(this->A, this->B, this->C); \
+
13  }
+
14 
+
15 #define GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, CONST, A, B, C, D) \
+
16  GLM_FUNC_QUALIFIER vec<4, T, Q> A ## B ## C ## D() CONST \
+
17  { \
+
18  return vec<4, T, Q>(this->A, this->B, this->C, this->D); \
+
19  }
+
20 
+
21 #define GLM_SWIZZLE_GEN_VEC2_ENTRY_DEF(T, P, L, CONST, A, B) \
+
22  template<typename T> \
+
23  GLM_FUNC_QUALIFIER vec<L, T, Q> vec<L, T, Q>::A ## B() CONST \
+
24  { \
+
25  return vec<2, T, Q>(this->A, this->B); \
+
26  }
+
27 
+
28 #define GLM_SWIZZLE_GEN_VEC3_ENTRY_DEF(T, P, L, CONST, A, B, C) \
+
29  template<typename T> \
+
30  GLM_FUNC_QUALIFIER vec<3, T, Q> vec<L, T, Q>::A ## B ## C() CONST \
+
31  { \
+
32  return vec<3, T, Q>(this->A, this->B, this->C); \
+
33  }
+
34 
+
35 #define GLM_SWIZZLE_GEN_VEC4_ENTRY_DEF(T, P, L, CONST, A, B, C, D) \
+
36  template<typename T> \
+
37  GLM_FUNC_QUALIFIER vec<4, T, Q> vec<L, T, Q>::A ## B ## C ## D() CONST \
+
38  { \
+
39  return vec<4, T, Q>(this->A, this->B, this->C, this->D); \
+
40  }
+
41 
+
42 #define GLM_MUTABLE
+
43 
+
44 #define GLM_SWIZZLE_GEN_REF2_FROM_VEC2_SWIZZLE(T, P, A, B) \
+
45  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, 2, GLM_MUTABLE, A, B) \
+
46  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, 2, GLM_MUTABLE, B, A)
+
47 
+
48 #define GLM_SWIZZLE_GEN_REF_FROM_VEC2(T, P) \
+
49  GLM_SWIZZLE_GEN_REF2_FROM_VEC2_SWIZZLE(T, P, x, y) \
+
50  GLM_SWIZZLE_GEN_REF2_FROM_VEC2_SWIZZLE(T, P, r, g) \
+
51  GLM_SWIZZLE_GEN_REF2_FROM_VEC2_SWIZZLE(T, P, s, t)
+
52 
+
53 #define GLM_SWIZZLE_GEN_REF2_FROM_VEC3_SWIZZLE(T, P, A, B, C) \
+
54  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, A, B) \
+
55  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, A, C) \
+
56  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, B, A) \
+
57  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, B, C) \
+
58  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, C, A) \
+
59  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, C, B)
+
60 
+
61 #define GLM_SWIZZLE_GEN_REF3_FROM_VEC3_SWIZZLE(T, P, A, B, C) \
+
62  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, GLM_MUTABLE, A, B, C) \
+
63  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, GLM_MUTABLE, A, C, B) \
+
64  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, GLM_MUTABLE, B, A, C) \
+
65  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, GLM_MUTABLE, B, C, A) \
+
66  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, GLM_MUTABLE, C, A, B) \
+
67  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, GLM_MUTABLE, C, B, A)
+
68 
+
69 #define GLM_SWIZZLE_GEN_REF_FROM_VEC3_COMP(T, P, A, B, C) \
+
70  GLM_SWIZZLE_GEN_REF3_FROM_VEC3_SWIZZLE(T, P, A, B, C) \
+
71  GLM_SWIZZLE_GEN_REF2_FROM_VEC3_SWIZZLE(T, P, A, B, C)
+
72 
+
73 #define GLM_SWIZZLE_GEN_REF_FROM_VEC3(T, P) \
+
74  GLM_SWIZZLE_GEN_REF_FROM_VEC3_COMP(T, P, x, y, z) \
+
75  GLM_SWIZZLE_GEN_REF_FROM_VEC3_COMP(T, P, r, g, b) \
+
76  GLM_SWIZZLE_GEN_REF_FROM_VEC3_COMP(T, P, s, t, p)
+
77 
+
78 #define GLM_SWIZZLE_GEN_REF2_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
79  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, A, B) \
+
80  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, A, C) \
+
81  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, A, D) \
+
82  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, B, A) \
+
83  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, B, C) \
+
84  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, B, D) \
+
85  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, C, A) \
+
86  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, C, B) \
+
87  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, C, D) \
+
88  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, D, A) \
+
89  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, D, B) \
+
90  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, GLM_MUTABLE, D, C)
+
91 
+
92 #define GLM_SWIZZLE_GEN_REF3_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
93  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , A, B, C) \
+
94  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , A, B, D) \
+
95  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , A, C, B) \
+
96  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , A, C, D) \
+
97  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , A, D, B) \
+
98  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , A, D, C) \
+
99  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , B, A, C) \
+
100  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , B, A, D) \
+
101  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , B, C, A) \
+
102  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , B, C, D) \
+
103  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , B, D, A) \
+
104  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , B, D, C) \
+
105  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , C, A, B) \
+
106  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , C, A, D) \
+
107  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , C, B, A) \
+
108  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , C, B, D) \
+
109  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , C, D, A) \
+
110  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , C, D, B) \
+
111  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , D, A, B) \
+
112  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , D, A, C) \
+
113  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , D, B, A) \
+
114  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , D, B, C) \
+
115  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , D, C, A) \
+
116  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, , D, C, B)
+
117 
+
118 #define GLM_SWIZZLE_GEN_REF4_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
119  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , A, C, B, D) \
+
120  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , A, C, D, B) \
+
121  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , A, D, B, C) \
+
122  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , A, D, C, B) \
+
123  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , A, B, D, C) \
+
124  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , A, B, C, D) \
+
125  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , B, C, A, D) \
+
126  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , B, C, D, A) \
+
127  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , B, D, A, C) \
+
128  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , B, D, C, A) \
+
129  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , B, A, D, C) \
+
130  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , B, A, C, D) \
+
131  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , C, B, A, D) \
+
132  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , C, B, D, A) \
+
133  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , C, D, A, B) \
+
134  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , C, D, B, A) \
+
135  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , C, A, D, B) \
+
136  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , C, A, B, D) \
+
137  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , D, C, B, A) \
+
138  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , D, C, A, B) \
+
139  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , D, A, B, C) \
+
140  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , D, A, C, B) \
+
141  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , D, B, A, C) \
+
142  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, , D, B, C, A)
+
143 
+
144 #define GLM_SWIZZLE_GEN_REF_FROM_VEC4_COMP(T, P, A, B, C, D) \
+
145  GLM_SWIZZLE_GEN_REF2_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
146  GLM_SWIZZLE_GEN_REF3_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
147  GLM_SWIZZLE_GEN_REF4_FROM_VEC4_SWIZZLE(T, P, A, B, C, D)
+
148 
+
149 #define GLM_SWIZZLE_GEN_REF_FROM_VEC4(T, P) \
+
150  GLM_SWIZZLE_GEN_REF_FROM_VEC4_COMP(T, P, x, y, z, w) \
+
151  GLM_SWIZZLE_GEN_REF_FROM_VEC4_COMP(T, P, r, g, b, a) \
+
152  GLM_SWIZZLE_GEN_REF_FROM_VEC4_COMP(T, P, s, t, p, q)
+
153 
+
154 #define GLM_SWIZZLE_GEN_VEC2_FROM_VEC2_SWIZZLE(T, P, A, B) \
+
155  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, A, A) \
+
156  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, A, B) \
+
157  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, B, A) \
+
158  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, B, B)
+
159 
+
160 #define GLM_SWIZZLE_GEN_VEC3_FROM_VEC2_SWIZZLE(T, P, A, B) \
+
161  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, A, A) \
+
162  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, A, B) \
+
163  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, B, A) \
+
164  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, B, B) \
+
165  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, A, A) \
+
166  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, A, B) \
+
167  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, B, A) \
+
168  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, B, B)
+
169 
+
170 #define GLM_SWIZZLE_GEN_VEC4_FROM_VEC2_SWIZZLE(T, P, A, B) \
+
171  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, A, A) \
+
172  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, A, B) \
+
173  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, B, A) \
+
174  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, B, B) \
+
175  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, A, A) \
+
176  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, A, B) \
+
177  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, B, A) \
+
178  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, B, B) \
+
179  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, A, A) \
+
180  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, A, B) \
+
181  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, B, A) \
+
182  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, B, B) \
+
183  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, A, A) \
+
184  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, A, B) \
+
185  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, B, A) \
+
186  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, B, B)
+
187 
+
188 #define GLM_SWIZZLE_GEN_VEC_FROM_VEC2_COMP(T, P, A, B) \
+
189  GLM_SWIZZLE_GEN_VEC2_FROM_VEC2_SWIZZLE(T, P, A, B) \
+
190  GLM_SWIZZLE_GEN_VEC3_FROM_VEC2_SWIZZLE(T, P, A, B) \
+
191  GLM_SWIZZLE_GEN_VEC4_FROM_VEC2_SWIZZLE(T, P, A, B)
+
192 
+
193 #define GLM_SWIZZLE_GEN_VEC_FROM_VEC2(T, P) \
+
194  GLM_SWIZZLE_GEN_VEC_FROM_VEC2_COMP(T, P, x, y) \
+
195  GLM_SWIZZLE_GEN_VEC_FROM_VEC2_COMP(T, P, r, g) \
+
196  GLM_SWIZZLE_GEN_VEC_FROM_VEC2_COMP(T, P, s, t)
+
197 
+
198 #define GLM_SWIZZLE_GEN_VEC2_FROM_VEC3_SWIZZLE(T, P, A, B, C) \
+
199  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, A, A) \
+
200  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, A, B) \
+
201  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, A, C) \
+
202  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, B, A) \
+
203  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, B, B) \
+
204  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, B, C) \
+
205  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, C, A) \
+
206  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, C, B) \
+
207  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, C, C)
+
208 
+
209 #define GLM_SWIZZLE_GEN_VEC3_FROM_VEC3_SWIZZLE(T, P, A, B, C) \
+
210  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, A, A) \
+
211  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, A, B) \
+
212  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, A, C) \
+
213  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, B, A) \
+
214  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, B, B) \
+
215  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, B, C) \
+
216  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, C, A) \
+
217  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, C, B) \
+
218  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, C, C) \
+
219  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, A, A) \
+
220  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, A, B) \
+
221  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, A, C) \
+
222  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, B, A) \
+
223  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, B, B) \
+
224  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, B, C) \
+
225  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, C, A) \
+
226  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, C, B) \
+
227  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, C, C) \
+
228  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, A, A) \
+
229  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, A, B) \
+
230  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, A, C) \
+
231  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, B, A) \
+
232  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, B, B) \
+
233  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, B, C) \
+
234  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, C, A) \
+
235  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, C, B) \
+
236  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, C, C)
+
237 
+
238 #define GLM_SWIZZLE_GEN_VEC4_FROM_VEC3_SWIZZLE(T, P, A, B, C) \
+
239  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, A, A) \
+
240  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, A, B) \
+
241  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, A, C) \
+
242  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, B, A) \
+
243  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, B, B) \
+
244  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, B, C) \
+
245  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, C, A) \
+
246  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, C, B) \
+
247  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, C, C) \
+
248  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, A, A) \
+
249  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, A, B) \
+
250  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, A, C) \
+
251  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, B, A) \
+
252  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, B, B) \
+
253  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, B, C) \
+
254  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, C, A) \
+
255  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, C, B) \
+
256  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, C, C) \
+
257  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, A, A) \
+
258  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, A, B) \
+
259  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, A, C) \
+
260  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, B, A) \
+
261  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, B, B) \
+
262  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, B, C) \
+
263  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, C, A) \
+
264  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, C, B) \
+
265  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, C, C) \
+
266  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, A, A) \
+
267  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, A, B) \
+
268  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, A, C) \
+
269  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, B, A) \
+
270  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, B, B) \
+
271  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, B, C) \
+
272  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, C, A) \
+
273  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, C, B) \
+
274  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, C, C) \
+
275  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, A, A) \
+
276  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, A, B) \
+
277  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, A, C) \
+
278  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, B, A) \
+
279  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, B, B) \
+
280  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, B, C) \
+
281  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, C, A) \
+
282  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, C, B) \
+
283  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, C, C) \
+
284  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, A, A) \
+
285  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, A, B) \
+
286  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, A, C) \
+
287  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, B, A) \
+
288  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, B, B) \
+
289  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, B, C) \
+
290  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, C, A) \
+
291  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, C, B) \
+
292  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, C, C) \
+
293  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, A, A) \
+
294  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, A, B) \
+
295  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, A, C) \
+
296  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, B, A) \
+
297  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, B, B) \
+
298  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, B, C) \
+
299  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, C, A) \
+
300  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, C, B) \
+
301  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, C, C) \
+
302  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, A, A) \
+
303  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, A, B) \
+
304  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, A, C) \
+
305  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, B, A) \
+
306  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, B, B) \
+
307  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, B, C) \
+
308  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, C, A) \
+
309  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, C, B) \
+
310  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, C, C) \
+
311  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, A, A) \
+
312  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, A, B) \
+
313  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, A, C) \
+
314  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, B, A) \
+
315  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, B, B) \
+
316  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, B, C) \
+
317  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, C, A) \
+
318  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, C, B) \
+
319  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, C, C)
+
320 
+
321 #define GLM_SWIZZLE_GEN_VEC_FROM_VEC3_COMP(T, P, A, B, C) \
+
322  GLM_SWIZZLE_GEN_VEC2_FROM_VEC3_SWIZZLE(T, P, A, B, C) \
+
323  GLM_SWIZZLE_GEN_VEC3_FROM_VEC3_SWIZZLE(T, P, A, B, C) \
+
324  GLM_SWIZZLE_GEN_VEC4_FROM_VEC3_SWIZZLE(T, P, A, B, C)
+
325 
+
326 #define GLM_SWIZZLE_GEN_VEC_FROM_VEC3(T, P) \
+
327  GLM_SWIZZLE_GEN_VEC_FROM_VEC3_COMP(T, P, x, y, z) \
+
328  GLM_SWIZZLE_GEN_VEC_FROM_VEC3_COMP(T, P, r, g, b) \
+
329  GLM_SWIZZLE_GEN_VEC_FROM_VEC3_COMP(T, P, s, t, p)
+
330 
+
331 #define GLM_SWIZZLE_GEN_VEC2_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
332  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, A, A) \
+
333  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, A, B) \
+
334  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, A, C) \
+
335  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, A, D) \
+
336  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, B, A) \
+
337  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, B, B) \
+
338  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, B, C) \
+
339  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, B, D) \
+
340  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, C, A) \
+
341  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, C, B) \
+
342  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, C, C) \
+
343  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, C, D) \
+
344  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, D, A) \
+
345  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, D, B) \
+
346  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, D, C) \
+
347  GLM_SWIZZLE_GEN_VEC2_ENTRY(T, P, const, D, D)
+
348 
+
349 #define GLM_SWIZZLE_GEN_VEC3_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
350  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, A, A) \
+
351  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, A, B) \
+
352  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, A, C) \
+
353  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, A, D) \
+
354  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, B, A) \
+
355  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, B, B) \
+
356  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, B, C) \
+
357  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, B, D) \
+
358  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, C, A) \
+
359  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, C, B) \
+
360  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, C, C) \
+
361  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, C, D) \
+
362  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, D, A) \
+
363  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, D, B) \
+
364  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, D, C) \
+
365  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, A, D, D) \
+
366  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, A, A) \
+
367  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, A, B) \
+
368  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, A, C) \
+
369  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, A, D) \
+
370  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, B, A) \
+
371  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, B, B) \
+
372  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, B, C) \
+
373  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, B, D) \
+
374  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, C, A) \
+
375  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, C, B) \
+
376  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, C, C) \
+
377  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, C, D) \
+
378  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, D, A) \
+
379  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, D, B) \
+
380  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, D, C) \
+
381  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, B, D, D) \
+
382  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, A, A) \
+
383  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, A, B) \
+
384  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, A, C) \
+
385  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, A, D) \
+
386  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, B, A) \
+
387  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, B, B) \
+
388  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, B, C) \
+
389  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, B, D) \
+
390  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, C, A) \
+
391  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, C, B) \
+
392  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, C, C) \
+
393  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, C, D) \
+
394  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, D, A) \
+
395  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, D, B) \
+
396  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, D, C) \
+
397  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, C, D, D) \
+
398  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, A, A) \
+
399  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, A, B) \
+
400  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, A, C) \
+
401  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, A, D) \
+
402  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, B, A) \
+
403  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, B, B) \
+
404  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, B, C) \
+
405  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, B, D) \
+
406  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, C, A) \
+
407  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, C, B) \
+
408  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, C, C) \
+
409  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, C, D) \
+
410  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, D, A) \
+
411  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, D, B) \
+
412  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, D, C) \
+
413  GLM_SWIZZLE_GEN_VEC3_ENTRY(T, P, const, D, D, D)
+
414 
+
415 #define GLM_SWIZZLE_GEN_VEC4_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
416  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, A, A) \
+
417  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, A, B) \
+
418  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, A, C) \
+
419  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, A, D) \
+
420  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, B, A) \
+
421  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, B, B) \
+
422  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, B, C) \
+
423  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, B, D) \
+
424  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, C, A) \
+
425  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, C, B) \
+
426  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, C, C) \
+
427  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, C, D) \
+
428  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, D, A) \
+
429  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, D, B) \
+
430  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, D, C) \
+
431  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, A, D, D) \
+
432  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, A, A) \
+
433  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, A, B) \
+
434  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, A, C) \
+
435  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, A, D) \
+
436  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, B, A) \
+
437  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, B, B) \
+
438  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, B, C) \
+
439  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, B, D) \
+
440  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, C, A) \
+
441  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, C, B) \
+
442  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, C, C) \
+
443  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, C, D) \
+
444  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, D, A) \
+
445  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, D, B) \
+
446  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, D, C) \
+
447  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, B, D, D) \
+
448  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, A, A) \
+
449  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, A, B) \
+
450  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, A, C) \
+
451  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, A, D) \
+
452  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, B, A) \
+
453  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, B, B) \
+
454  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, B, C) \
+
455  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, B, D) \
+
456  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, C, A) \
+
457  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, C, B) \
+
458  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, C, C) \
+
459  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, C, D) \
+
460  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, D, A) \
+
461  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, D, B) \
+
462  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, D, C) \
+
463  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, C, D, D) \
+
464  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, A, A) \
+
465  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, A, B) \
+
466  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, A, C) \
+
467  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, A, D) \
+
468  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, B, A) \
+
469  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, B, B) \
+
470  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, B, C) \
+
471  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, B, D) \
+
472  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, C, A) \
+
473  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, C, B) \
+
474  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, C, C) \
+
475  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, C, D) \
+
476  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, D, A) \
+
477  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, D, B) \
+
478  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, D, C) \
+
479  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, A, D, D, D) \
+
480  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, A, A) \
+
481  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, A, B) \
+
482  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, A, C) \
+
483  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, A, D) \
+
484  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, B, A) \
+
485  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, B, B) \
+
486  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, B, C) \
+
487  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, B, D) \
+
488  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, C, A) \
+
489  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, C, B) \
+
490  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, C, C) \
+
491  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, C, D) \
+
492  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, D, A) \
+
493  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, D, B) \
+
494  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, D, C) \
+
495  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, A, D, D) \
+
496  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, A, A) \
+
497  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, A, B) \
+
498  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, A, C) \
+
499  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, A, D) \
+
500  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, B, A) \
+
501  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, B, B) \
+
502  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, B, C) \
+
503  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, B, D) \
+
504  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, C, A) \
+
505  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, C, B) \
+
506  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, C, C) \
+
507  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, C, D) \
+
508  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, D, A) \
+
509  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, D, B) \
+
510  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, D, C) \
+
511  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, B, D, D) \
+
512  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, A, A) \
+
513  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, A, B) \
+
514  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, A, C) \
+
515  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, A, D) \
+
516  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, B, A) \
+
517  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, B, B) \
+
518  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, B, C) \
+
519  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, B, D) \
+
520  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, C, A) \
+
521  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, C, B) \
+
522  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, C, C) \
+
523  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, C, D) \
+
524  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, D, A) \
+
525  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, D, B) \
+
526  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, D, C) \
+
527  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, C, D, D) \
+
528  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, A, A) \
+
529  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, A, B) \
+
530  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, A, C) \
+
531  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, A, D) \
+
532  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, B, A) \
+
533  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, B, B) \
+
534  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, B, C) \
+
535  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, B, D) \
+
536  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, C, A) \
+
537  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, C, B) \
+
538  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, C, C) \
+
539  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, C, D) \
+
540  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, D, A) \
+
541  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, D, B) \
+
542  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, D, C) \
+
543  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, B, D, D, D) \
+
544  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, A, A) \
+
545  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, A, B) \
+
546  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, A, C) \
+
547  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, A, D) \
+
548  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, B, A) \
+
549  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, B, B) \
+
550  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, B, C) \
+
551  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, B, D) \
+
552  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, C, A) \
+
553  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, C, B) \
+
554  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, C, C) \
+
555  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, C, D) \
+
556  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, D, A) \
+
557  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, D, B) \
+
558  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, D, C) \
+
559  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, A, D, D) \
+
560  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, A, A) \
+
561  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, A, B) \
+
562  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, A, C) \
+
563  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, A, D) \
+
564  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, B, A) \
+
565  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, B, B) \
+
566  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, B, C) \
+
567  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, B, D) \
+
568  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, C, A) \
+
569  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, C, B) \
+
570  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, C, C) \
+
571  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, C, D) \
+
572  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, D, A) \
+
573  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, D, B) \
+
574  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, D, C) \
+
575  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, B, D, D) \
+
576  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, A, A) \
+
577  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, A, B) \
+
578  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, A, C) \
+
579  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, A, D) \
+
580  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, B, A) \
+
581  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, B, B) \
+
582  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, B, C) \
+
583  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, B, D) \
+
584  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, C, A) \
+
585  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, C, B) \
+
586  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, C, C) \
+
587  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, C, D) \
+
588  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, D, A) \
+
589  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, D, B) \
+
590  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, D, C) \
+
591  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, C, D, D) \
+
592  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, A, A) \
+
593  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, A, B) \
+
594  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, A, C) \
+
595  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, A, D) \
+
596  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, B, A) \
+
597  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, B, B) \
+
598  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, B, C) \
+
599  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, B, D) \
+
600  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, C, A) \
+
601  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, C, B) \
+
602  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, C, C) \
+
603  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, C, D) \
+
604  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, D, A) \
+
605  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, D, B) \
+
606  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, D, C) \
+
607  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, C, D, D, D) \
+
608  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, A, A) \
+
609  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, A, B) \
+
610  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, A, C) \
+
611  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, A, D) \
+
612  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, B, A) \
+
613  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, B, B) \
+
614  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, B, C) \
+
615  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, B, D) \
+
616  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, C, A) \
+
617  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, C, B) \
+
618  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, C, C) \
+
619  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, C, D) \
+
620  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, D, A) \
+
621  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, D, B) \
+
622  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, D, C) \
+
623  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, A, D, D) \
+
624  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, A, A) \
+
625  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, A, B) \
+
626  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, A, C) \
+
627  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, A, D) \
+
628  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, B, A) \
+
629  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, B, B) \
+
630  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, B, C) \
+
631  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, B, D) \
+
632  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, C, A) \
+
633  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, C, B) \
+
634  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, C, C) \
+
635  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, C, D) \
+
636  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, D, A) \
+
637  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, D, B) \
+
638  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, D, C) \
+
639  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, B, D, D) \
+
640  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, A, A) \
+
641  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, A, B) \
+
642  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, A, C) \
+
643  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, A, D) \
+
644  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, B, A) \
+
645  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, B, B) \
+
646  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, B, C) \
+
647  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, B, D) \
+
648  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, C, A) \
+
649  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, C, B) \
+
650  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, C, C) \
+
651  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, C, D) \
+
652  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, D, A) \
+
653  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, D, B) \
+
654  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, D, C) \
+
655  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, C, D, D) \
+
656  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, A, A) \
+
657  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, A, B) \
+
658  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, A, C) \
+
659  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, A, D) \
+
660  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, B, A) \
+
661  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, B, B) \
+
662  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, B, C) \
+
663  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, B, D) \
+
664  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, C, A) \
+
665  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, C, B) \
+
666  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, C, C) \
+
667  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, C, D) \
+
668  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, D, A) \
+
669  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, D, B) \
+
670  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, D, C) \
+
671  GLM_SWIZZLE_GEN_VEC4_ENTRY(T, P, const, D, D, D, D)
+
672 
+
673 #define GLM_SWIZZLE_GEN_VEC_FROM_VEC4_COMP(T, P, A, B, C, D) \
+
674  GLM_SWIZZLE_GEN_VEC2_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
675  GLM_SWIZZLE_GEN_VEC3_FROM_VEC4_SWIZZLE(T, P, A, B, C, D) \
+
676  GLM_SWIZZLE_GEN_VEC4_FROM_VEC4_SWIZZLE(T, P, A, B, C, D)
+
677 
+
678 #define GLM_SWIZZLE_GEN_VEC_FROM_VEC4(T, P) \
+
679  GLM_SWIZZLE_GEN_VEC_FROM_VEC4_COMP(T, P, x, y, z, w) \
+
680  GLM_SWIZZLE_GEN_VEC_FROM_VEC4_COMP(T, P, r, g, b, a) \
+
681  GLM_SWIZZLE_GEN_VEC_FROM_VEC4_COMP(T, P, s, t, p, q)
+
682 
+
+ + + + diff --git a/include/glm/doc/api/a00020_source.html b/include/glm/doc/api/a00020_source.html new file mode 100644 index 0000000..1f5e728 --- /dev/null +++ b/include/glm/doc/api/a00020_source.html @@ -0,0 +1,311 @@ + + + + + + + +1.0.2 API documentation: _vectorize.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
_vectorize.hpp
+
+
+
1 #pragma once
+
2 
+
3 namespace glm{
+
4 namespace detail
+
5 {
+
6  template<template<length_t L, typename T, qualifier Q> class vec, length_t L, typename R, typename T, qualifier Q>
+
7  struct functor1{};
+
8 
+
9  template<template<length_t L, typename T, qualifier Q> class vec, typename R, typename T, qualifier Q>
+
10  struct functor1<vec, 1, R, T, Q>
+
11  {
+
12  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<1, R, Q> call(R (*Func) (T x), vec<1, T, Q> const& v)
+
13  {
+
14  return vec<1, R, Q>(Func(v.x));
+
15  }
+
16  };
+
17 
+
18  template<template<length_t L, typename T, qualifier Q> class vec, typename R, typename T, qualifier Q>
+
19  struct functor1<vec, 2, R, T, Q>
+
20  {
+
21  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<2, R, Q> call(R (*Func) (T x), vec<2, T, Q> const& v)
+
22  {
+
23  return vec<2, R, Q>(Func(v.x), Func(v.y));
+
24  }
+
25  };
+
26 
+
27  template<template<length_t L, typename T, qualifier Q> class vec, typename R, typename T, qualifier Q>
+
28  struct functor1<vec, 3, R, T, Q>
+
29  {
+
30  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<3, R, Q> call(R (*Func) (T x), vec<3, T, Q> const& v)
+
31  {
+
32  return vec<3, R, Q>(Func(v.x), Func(v.y), Func(v.z));
+
33  }
+
34  };
+
35 
+
36  template<template<length_t L, typename T, qualifier Q> class vec, typename R, typename T, qualifier Q>
+
37  struct functor1<vec, 4, R, T, Q>
+
38  {
+
39  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<4, R, Q> call(R (*Func) (T x), vec<4, T, Q> const& v)
+
40  {
+
41  return vec<4, R, Q>(Func(v.x), Func(v.y), Func(v.z), Func(v.w));
+
42  }
+
43  };
+
44 
+
45  template<template<length_t L, typename T, qualifier Q> class vec, length_t L, typename T, qualifier Q>
+
46  struct functor2{};
+
47 
+
48  template<template<length_t L, typename T, qualifier Q> class vec, typename T, qualifier Q>
+
49  struct functor2<vec, 1, T, Q>
+
50  {
+
51  GLM_FUNC_QUALIFIER static vec<1, T, Q> call(T (*Func) (T x, T y), vec<1, T, Q> const& a, vec<1, T, Q> const& b)
+
52  {
+
53  return vec<1, T, Q>(Func(a.x, b.x));
+
54  }
+
55 
+
56  template<typename Fct>
+
57  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<1, T, Q> call(Fct Func, vec<1, T, Q> const& a, vec<1, T, Q> const& b)
+
58  {
+
59  return vec<1, T, Q>(Func(a.x, b.x));
+
60  }
+
61  };
+
62 
+
63  template<template<length_t L, typename T, qualifier Q> class vec, typename T, qualifier Q>
+
64  struct functor2<vec, 2, T, Q>
+
65  {
+
66  GLM_FUNC_QUALIFIER static vec<2, T, Q> call(T (*Func) (T x, T y), vec<2, T, Q> const& a, vec<2, T, Q> const& b)
+
67  {
+
68  return vec<2, T, Q>(Func(a.x, b.x), Func(a.y, b.y));
+
69  }
+
70 
+
71  template<typename Fct>
+
72  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<2, T, Q> call(Fct Func, vec<2, T, Q> const& a, vec<2, T, Q> const& b)
+
73  {
+
74  return vec<2, T, Q>(Func(a.x, b.x), Func(a.y, b.y));
+
75  }
+
76  };
+
77 
+
78  template<template<length_t L, typename T, qualifier Q> class vec, typename T, qualifier Q>
+
79  struct functor2<vec, 3, T, Q>
+
80  {
+
81  GLM_FUNC_QUALIFIER static vec<3, T, Q> call(T (*Func) (T x, T y), vec<3, T, Q> const& a, vec<3, T, Q> const& b)
+
82  {
+
83  return vec<3, T, Q>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z));
+
84  }
+
85 
+
86  template<class Fct>
+
87  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<3, T, Q> call(Fct Func, vec<3, T, Q> const& a, vec<3, T, Q> const& b)
+
88  {
+
89  return vec<3, T, Q>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z));
+
90  }
+
91  };
+
92 
+
93  template<template<length_t L, typename T, qualifier Q> class vec, typename T, qualifier Q>
+
94  struct functor2<vec, 4, T, Q>
+
95  {
+
96  GLM_FUNC_QUALIFIER static vec<4, T, Q> call(T (*Func) (T x, T y), vec<4, T, Q> const& a, vec<4, T, Q> const& b)
+
97  {
+
98  return vec<4, T, Q>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z), Func(a.w, b.w));
+
99  }
+
100 
+
101  template<class Fct>
+
102  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<4, T, Q> call(Fct Func, vec<4, T, Q> const& a, vec<4, T, Q> const& b)
+
103  {
+
104  return vec<4, T, Q>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z), Func(a.w, b.w));
+
105  }
+
106  };
+
107 
+
108  template<template<length_t L, typename T, qualifier Q> class vec, length_t L, typename T, qualifier Q>
+
109  struct functor2_vec_sca{};
+
110 
+
111  template<template<length_t L, typename T, qualifier Q> class vec, typename T, qualifier Q>
+
112  struct functor2_vec_sca<vec, 1, T, Q>
+
113  {
+
114  GLM_FUNC_QUALIFIER static vec<1, T, Q> call(T (*Func) (T x, T y), vec<1, T, Q> const& a, T b)
+
115  {
+
116  return vec<1, T, Q>(Func(a.x, b));
+
117  }
+
118  template<class Fct>
+
119  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<1, T, Q> call(Fct Func, vec<1, T, Q> const& a, T b)
+
120  {
+
121  return vec<1, T, Q>(Func(a.x, b));
+
122  }
+
123  };
+
124 
+
125  template<template<length_t L, typename T, qualifier Q> class vec, typename T, qualifier Q>
+
126  struct functor2_vec_sca<vec, 2, T, Q>
+
127  {
+
128  GLM_FUNC_QUALIFIER static vec<2, T, Q> call(T (*Func) (T x, T y), vec<2, T, Q> const& a, T b)
+
129  {
+
130  return vec<2, T, Q>(Func(a.x, b), Func(a.y, b));
+
131  }
+
132 
+
133  template<class Fct>
+
134  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<2, T, Q> call(Fct Func, vec<2, T, Q> const& a, T b)
+
135  {
+
136  return vec<2, T, Q>(Func(a.x, b), Func(a.y, b));
+
137  }
+
138  };
+
139 
+
140  template<template<length_t L, typename T, qualifier Q> class vec, typename T, qualifier Q>
+
141  struct functor2_vec_sca<vec, 3, T, Q>
+
142  {
+
143  GLM_FUNC_QUALIFIER static vec<3, T, Q> call(T (*Func) (T x, T y), vec<3, T, Q> const& a, T b)
+
144  {
+
145  return vec<3, T, Q>(Func(a.x, b), Func(a.y, b), Func(a.z, b));
+
146  }
+
147 
+
148  template<class Fct>
+
149  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<3, T, Q> call(Fct Func, vec<3, T, Q> const& a, T b)
+
150  {
+
151  return vec<3, T, Q>(Func(a.x, b), Func(a.y, b), Func(a.z, b));
+
152  }
+
153  };
+
154 
+
155  template<template<length_t L, typename T, qualifier Q> class vec, typename T, qualifier Q>
+
156  struct functor2_vec_sca<vec, 4, T, Q>
+
157  {
+
158  GLM_FUNC_QUALIFIER static vec<4, T, Q> call(T (*Func) (T x, T y), vec<4, T, Q> const& a, T b)
+
159  {
+
160  return vec<4, T, Q>(Func(a.x, b), Func(a.y, b), Func(a.z, b), Func(a.w, b));
+
161  }
+
162  template<class Fct>
+
163  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<4, T, Q> call(Fct Func, vec<4, T, Q> const& a, T b)
+
164  {
+
165  return vec<4, T, Q>(Func(a.x, b), Func(a.y, b), Func(a.z, b), Func(a.w, b));
+
166  }
+
167  };
+
168 
+
169  template<length_t L, typename T, qualifier Q>
+
170  struct functor2_vec_int {};
+
171 
+
172  template<typename T, qualifier Q>
+
173  struct functor2_vec_int<1, T, Q>
+
174  {
+
175  GLM_FUNC_QUALIFIER static vec<1, int, Q> call(int (*Func) (T x, int y), vec<1, T, Q> const& a, vec<1, int, Q> const& b)
+
176  {
+
177  return vec<1, int, Q>(Func(a.x, b.x));
+
178  }
+
179 
+
180  template<class Fct>
+
181  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<1, int, Q> call(Fct Func, vec<1, T, Q> const& a, vec<1, int, Q> const& b)
+
182  {
+
183  return vec<1, int, Q>(Func(a.x, b.x));
+
184  }
+
185  };
+
186 
+
187  template<typename T, qualifier Q>
+
188  struct functor2_vec_int<2, T, Q>
+
189  {
+
190  GLM_FUNC_QUALIFIER static vec<2, int, Q> call(int (*Func) (T x, int y), vec<2, T, Q> const& a, vec<2, int, Q> const& b)
+
191  {
+
192  return vec<2, int, Q>(Func(a.x, b.x), Func(a.y, b.y));
+
193  }
+
194  template<class Fct>
+
195  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<2, int, Q> call(Fct Func, vec<2, T, Q> const& a, vec<2, int, Q> const& b)
+
196  {
+
197  return vec<2, int, Q>(Func(a.x, b.x), Func(a.y, b.y));
+
198  }
+
199  };
+
200 
+
201  template<typename T, qualifier Q>
+
202  struct functor2_vec_int<3, T, Q>
+
203  {
+
204  GLM_FUNC_QUALIFIER static vec<3, int, Q> call(int (*Func) (T x, int y), vec<3, T, Q> const& a, vec<3, int, Q> const& b)
+
205  {
+
206  return vec<3, int, Q>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z));
+
207  }
+
208  template<class Fct>
+
209  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<3, int, Q> call(Fct Func, vec<3, T, Q> const& a, vec<3, int, Q> const& b)
+
210  {
+
211  return vec<3, int, Q>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z));
+
212  }
+
213  };
+
214 
+
215  template<typename T, qualifier Q>
+
216  struct functor2_vec_int<4, T, Q>
+
217  {
+
218  GLM_FUNC_QUALIFIER static vec<4, int, Q> call(int (*Func) (T x, int y), vec<4, T, Q> const& a, vec<4, int, Q> const& b)
+
219  {
+
220  return vec<4, int, Q>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z), Func(a.w, b.w));
+
221  }
+
222 
+
223  template<class Fct>
+
224  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<4, int, Q> call(Fct Func, vec<4, T, Q> const& a, vec<4, int, Q> const& b)
+
225  {
+
226  return vec<4, int, Q>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z), Func(a.w, b.w));
+
227  }
+
228  };
+
229 }//namespace detail
+
230 }//namespace glm
+
+ + + + diff --git a/include/glm/doc/api/a00023_source.html b/include/glm/doc/api/a00023_source.html new file mode 100644 index 0000000..c6743e1 --- /dev/null +++ b/include/glm/doc/api/a00023_source.html @@ -0,0 +1,131 @@ + + + + + + + +1.0.2 API documentation: compute_common.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
compute_common.hpp
+
+
+
1 #pragma once
+
2 
+
3 #include "setup.hpp"
+
4 #include <limits>
+
5 
+
6 namespace glm{
+
7 namespace detail
+
8 {
+
9  template<typename genFIType, bool /*signed*/>
+
10  struct compute_abs
+
11  {};
+
12 
+
13  template<typename genFIType>
+
14  struct compute_abs<genFIType, true>
+
15  {
+
16  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static genFIType call(genFIType x)
+
17  {
+
18  GLM_STATIC_ASSERT(
+
19  std::numeric_limits<genFIType>::is_iec559 || GLM_CONFIG_UNRESTRICTED_FLOAT || std::numeric_limits<genFIType>::is_signed,
+
20  "'abs' only accept floating-point and integer scalar or vector inputs");
+
21 
+
22  return x >= genFIType(0) ? x : -x;
+
23  // TODO, perf comp with: *(((int *) &x) + 1) &= 0x7fffffff;
+
24  }
+
25  };
+
26 
+
27 #if (GLM_COMPILER & GLM_COMPILER_CUDA) || (GLM_COMPILER & GLM_COMPILER_HIP)
+
28  template<>
+
29  struct compute_abs<float, true>
+
30  {
+
31  GLM_FUNC_QUALIFIER static float call(float x)
+
32  {
+
33  return fabsf(x);
+
34  }
+
35  };
+
36 #endif
+
37 
+
38  template<typename genFIType>
+
39  struct compute_abs<genFIType, false>
+
40  {
+
41  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static genFIType call(genFIType x)
+
42  {
+
43  GLM_STATIC_ASSERT(
+
44  (!std::numeric_limits<genFIType>::is_signed && std::numeric_limits<genFIType>::is_integer),
+
45  "'abs' only accept floating-point and integer scalar or vector inputs");
+
46  return x;
+
47  }
+
48  };
+
49 }//namespace detail
+
50 }//namespace glm
+
+ + + + diff --git a/include/glm/doc/api/a00026_source.html b/include/glm/doc/api/a00026_source.html new file mode 100644 index 0000000..7344e34 --- /dev/null +++ b/include/glm/doc/api/a00026_source.html @@ -0,0 +1,271 @@ + + + + + + + +1.0.2 API documentation: compute_vector_decl.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
compute_vector_decl.hpp
+
+
+
1 
+
2 #pragma once
+
3 #include <functional>
+
4 #include "_vectorize.hpp"
+
5 
+
6 namespace glm {
+
7  namespace detail
+
8  {
+
9  template<length_t L, typename T, qualifier Q, bool UseSimd>
+
10  struct compute_vec_add {};
+
11 
+
12  template<length_t L, typename T, qualifier Q, bool UseSimd>
+
13  struct compute_vec_sub {};
+
14 
+
15  template<length_t L, typename T, qualifier Q, bool UseSimd>
+
16  struct compute_vec_mul {};
+
17 
+
18  template<length_t L, typename T, qualifier Q, bool UseSimd>
+
19  struct compute_vec_div {};
+
20 
+
21  template<length_t L, typename T, qualifier Q, bool UseSimd>
+
22  struct compute_vec_mod {};
+
23 
+
24  template<length_t L, typename T, qualifier Q, bool UseSimd>
+
25  struct compute_splat {};
+
26 
+
27  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size, bool UseSimd>
+
28  struct compute_vec_and {};
+
29 
+
30  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size, bool UseSimd>
+
31  struct compute_vec_or {};
+
32 
+
33  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size, bool UseSimd>
+
34  struct compute_vec_xor {};
+
35 
+
36  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size, bool UseSimd>
+
37  struct compute_vec_shift_left {};
+
38 
+
39  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size, bool UseSimd>
+
40  struct compute_vec_shift_right {};
+
41 
+
42  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size, bool UseSimd>
+
43  struct compute_vec_equal {};
+
44 
+
45  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size, bool UseSimd>
+
46  struct compute_vec_nequal {};
+
47 
+
48  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size, bool UseSimd>
+
49  struct compute_vec_bitwise_not {};
+
50 
+
51  template<length_t L, typename T, qualifier Q>
+
52  struct compute_vec_add<L, T, Q, false>
+
53  {
+
54  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
55  {
+
56  return detail::functor2<vec, L, T, Q>::call(std::plus<T>(), a, b);
+
57  }
+
58  };
+
59 
+
60  template<length_t L, typename T, qualifier Q>
+
61  struct compute_vec_sub<L, T, Q, false>
+
62  {
+
63  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
64  {
+
65  return detail::functor2<vec, L, T, Q>::call(std::minus<T>(), a, b);
+
66  }
+
67  };
+
68 
+
69  template<length_t L, typename T, qualifier Q>
+
70  struct compute_vec_mul<L, T, Q, false>
+
71  {
+
72  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
73  {
+
74  return detail::functor2<vec, L, T, Q>::call(std::multiplies<T>(), a, b);
+
75  }
+
76  };
+
77 
+
78  template<length_t L, typename T, qualifier Q>
+
79  struct compute_vec_div<L, T, Q, false>
+
80  {
+
81  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
82  {
+
83  return detail::functor2<vec, L, T, Q>::call(std::divides<T>(), a, b);
+
84  }
+
85  };
+
86 
+
87  template<length_t L, typename T, qualifier Q>
+
88  struct compute_vec_mod<L, T, Q, false>
+
89  {
+
90  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
91  {
+
92  return detail::functor2<vec, L, T, Q>::call(std::modulus<T>(), a, b);
+
93  }
+
94  };
+
95 
+
96  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size>
+
97  struct compute_vec_and<L, T, Q, IsInt, Size, false>
+
98  {
+
99  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
100  {
+
101  vec<L, T, Q> v(a);
+
102  for (length_t i = 0; i < L; ++i)
+
103  v[i] &= static_cast<T>(b[i]);
+
104  return v;
+
105  }
+
106  };
+
107 
+
108  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size>
+
109  struct compute_vec_or<L, T, Q, IsInt, Size, false>
+
110  {
+
111  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
112  {
+
113  vec<L, T, Q> v(a);
+
114  for (length_t i = 0; i < L; ++i)
+
115  v[i] |= static_cast<T>(b[i]);
+
116  return v;
+
117  }
+
118  };
+
119 
+
120  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size>
+
121  struct compute_vec_xor<L, T, Q, IsInt, Size, false>
+
122  {
+
123  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
124  {
+
125  vec<L, T, Q> v(a);
+
126  for (length_t i = 0; i < L; ++i)
+
127  v[i] ^= static_cast<T>(b[i]);
+
128  return v;
+
129  }
+
130  };
+
131 
+
132  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size>
+
133  struct compute_vec_shift_left<L, T, Q, IsInt, Size, false>
+
134  {
+
135  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
136  {
+
137  vec<L, T, Q> v(a);
+
138  for (length_t i = 0; i < L; ++i)
+
139  v[i] <<= static_cast<T>(b[i]);
+
140  return v;
+
141  }
+
142  };
+
143 
+
144  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size>
+
145  struct compute_vec_shift_right<L, T, Q, IsInt, Size, false>
+
146  {
+
147  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a, vec<L, T, Q> const& b)
+
148  {
+
149  vec<L, T, Q> v(a);
+
150  for (length_t i = 0; i < L; ++i)
+
151  v[i] >>= static_cast<T>(b[i]);
+
152  return v;
+
153  }
+
154  };
+
155 
+
156  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size>
+
157  struct compute_vec_equal<L, T, Q, IsInt, Size, false>
+
158  {
+
159  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static bool call(vec<L, T, Q> const& v1, vec<L, T, Q> const& v2)
+
160  {
+
161  bool b = true;
+
162  for (length_t i = 0; b && i < L; ++i)
+
163  b = detail::compute_equal<T, std::numeric_limits<T>::is_iec559>::call(v1[i], v2[i]);
+
164  return b;
+
165  }
+
166  };
+
167 
+
168  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size>
+
169  struct compute_vec_nequal<L, T, Q, IsInt, Size, false>
+
170  {
+
171  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static bool call(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2)
+
172  {
+
173  return !compute_vec_equal<L, T, Q, detail::is_int<T>::value, sizeof(T) * 8, detail::is_aligned<Q>::value>::call(v1, v2);
+
174  }
+
175  };
+
176 
+
177  template<length_t L, typename T, qualifier Q, int IsInt, std::size_t Size>
+
178  struct compute_vec_bitwise_not<L, T, Q, IsInt, Size, false>
+
179  {
+
180  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, T, Q> call(vec<L, T, Q> const& a)
+
181  {
+
182  vec<L, T, Q> v(a);
+
183  for (length_t i = 0; i < L; ++i)
+
184  v[i] = ~v[i];
+
185  return v;
+
186  }
+
187  };
+
188 
+
189  }
+
190 }
+
+ + + + diff --git a/include/glm/doc/api/a00029_source.html b/include/glm/doc/api/a00029_source.html new file mode 100644 index 0000000..f3623d9 --- /dev/null +++ b/include/glm/doc/api/a00029_source.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: compute_vector_relational.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
compute_vector_relational.hpp
+
+
+
1 #pragma once
+
2 
+
3 //#include "compute_common.hpp"
+
4 #include "setup.hpp"
+
5 #include <limits>
+
6 
+
7 namespace glm{
+
8 namespace detail
+
9 {
+
10  template <typename T, bool isFloat>
+
11  struct compute_equal
+
12  {
+
13  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static bool call(T a, T b)
+
14  {
+
15  return a == b;
+
16  }
+
17  };
+
18 /*
+
19  template <typename T>
+
20  struct compute_equal<T, true>
+
21  {
+
22  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static bool call(T a, T b)
+
23  {
+
24  return detail::compute_abs<T, std::numeric_limits<T>::is_signed>::call(b - a) <= static_cast<T>(0);
+
25  //return std::memcmp(&a, &b, sizeof(T)) == 0;
+
26  }
+
27  };
+
28 */
+
29 }//namespace detail
+
30 }//namespace glm
+
+ + + + diff --git a/include/glm/doc/api/a00032_source.html b/include/glm/doc/api/a00032_source.html new file mode 100644 index 0000000..65b6588 --- /dev/null +++ b/include/glm/doc/api/a00032_source.html @@ -0,0 +1,378 @@ + + + + + + + +1.0.2 API documentation: qualifier.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
qualifier.hpp
+
+
+
1 #pragma once
+
2 
+
3 #include "setup.hpp"
+
4 
+
5 namespace glm
+
6 {
+
8  enum qualifier
+
9  {
+
10  packed_highp,
+
11  packed_mediump,
+
12  packed_lowp,
+
13 
+
14 # if GLM_CONFIG_ALIGNED_GENTYPES == GLM_ENABLE
+
15  aligned_highp,
+
16  aligned_mediump,
+
17  aligned_lowp, // ///< Typed data is aligned in memory allowing SIMD optimizations and operations are executed with high precision in term of ULPs to maximize performance
+
18  aligned = aligned_highp,
+
19 # endif
+
20 
+
21  highp = packed_highp,
+
22  mediump = packed_mediump,
+
23  lowp = packed_lowp,
+
24  packed = packed_highp,
+
25 
+
26 # if GLM_CONFIG_ALIGNED_GENTYPES == GLM_ENABLE && defined(GLM_FORCE_DEFAULT_ALIGNED_GENTYPES)
+
27  defaultp = aligned_highp
+
28 # else
+
29  defaultp = highp
+
30 # endif
+
31  };
+
32 
+
33  typedef qualifier precision;
+
34 
+
35  template<length_t L, typename T, qualifier Q = defaultp> struct vec;
+
36  template<length_t C, length_t R, typename T, qualifier Q = defaultp> struct mat;
+
37  template<typename T, qualifier Q = defaultp> struct qua;
+
38 
+
39 # if GLM_HAS_TEMPLATE_ALIASES
+
40  template <typename T, qualifier Q = defaultp> using tvec1 = vec<1, T, Q>;
+
41  template <typename T, qualifier Q = defaultp> using tvec2 = vec<2, T, Q>;
+
42  template <typename T, qualifier Q = defaultp> using tvec3 = vec<3, T, Q>;
+
43  template <typename T, qualifier Q = defaultp> using tvec4 = vec<4, T, Q>;
+
44  template <typename T, qualifier Q = defaultp> using tmat2x2 = mat<2, 2, T, Q>;
+
45  template <typename T, qualifier Q = defaultp> using tmat2x3 = mat<2, 3, T, Q>;
+
46  template <typename T, qualifier Q = defaultp> using tmat2x4 = mat<2, 4, T, Q>;
+
47  template <typename T, qualifier Q = defaultp> using tmat3x2 = mat<3, 2, T, Q>;
+
48  template <typename T, qualifier Q = defaultp> using tmat3x3 = mat<3, 3, T, Q>;
+
49  template <typename T, qualifier Q = defaultp> using tmat3x4 = mat<3, 4, T, Q>;
+
50  template <typename T, qualifier Q = defaultp> using tmat4x2 = mat<4, 2, T, Q>;
+
51  template <typename T, qualifier Q = defaultp> using tmat4x3 = mat<4, 3, T, Q>;
+
52  template <typename T, qualifier Q = defaultp> using tmat4x4 = mat<4, 4, T, Q>;
+
53  template <typename T, qualifier Q = defaultp> using tquat = qua<T, Q>;
+
54 # endif
+
55 
+
56 namespace detail
+
57 {
+
58  template<glm::qualifier P>
+
59  struct is_aligned
+
60  {
+
61  static const bool value = false;
+
62  };
+
63 
+
64 # if GLM_CONFIG_ALIGNED_GENTYPES == GLM_ENABLE
+
65  template<>
+
66  struct is_aligned<glm::aligned_lowp>
+
67  {
+
68  static const bool value = true;
+
69  };
+
70 
+
71  template<>
+
72  struct is_aligned<glm::aligned_mediump>
+
73  {
+
74  static const bool value = true;
+
75  };
+
76 
+
77  template<>
+
78  struct is_aligned<glm::aligned_highp>
+
79  {
+
80  static const bool value = true;
+
81  };
+
82 # endif
+
83 
+
84  template<length_t L, typename T, bool is_aligned>
+
85  struct storage
+
86  {
+
87  typedef struct type {
+
88  T data[L];
+
89  } type;
+
90  };
+
91 
+
92 # if GLM_HAS_ALIGNOF
+
93  template<length_t L, typename T>
+
94  struct storage<L, T, true>
+
95  {
+
96  typedef struct alignas(L * sizeof(T)) type {
+
97  T data[L];
+
98  } type;
+
99  };
+
100 
+
101  template<typename T>
+
102  struct storage<3, T, true>
+
103  {
+
104  typedef struct alignas(4 * sizeof(T)) type {
+
105  T data[4];
+
106  } type;
+
107  };
+
108 # endif
+
109 
+
110 # if GLM_ARCH & GLM_ARCH_SSE2_BIT
+
111  template<>
+
112  struct storage<4, float, true>
+
113  {
+
114  typedef glm_f32vec4 type;
+
115  };
+
116 
+
117  template<>
+
118  struct storage<4, int, true>
+
119  {
+
120  typedef glm_i32vec4 type;
+
121  };
+
122 
+
123  template<>
+
124  struct storage<4, unsigned int, true>
+
125  {
+
126  typedef glm_u32vec4 type;
+
127  };
+
128 
+
129  template<>
+
130  struct storage<3, float, true>
+
131  {
+
132  typedef glm_f32vec4 type;
+
133  };
+
134 
+
135  template<>
+
136  struct storage<3, int, true>
+
137  {
+
138  typedef glm_i32vec4 type;
+
139  };
+
140 
+
141  template<>
+
142  struct storage<3, unsigned int, true>
+
143  {
+
144  typedef glm_u32vec4 type;
+
145  };
+
146 
+
147  template<>
+
148  struct storage<2, double, true>
+
149  {
+
150  typedef glm_f64vec2 type;
+
151  };
+
152 
+
153  template<>
+
154  struct storage<2, detail::int64, true>
+
155  {
+
156  typedef glm_i64vec2 type;
+
157  };
+
158 
+
159  template<>
+
160  struct storage<2, detail::uint64, true>
+
161  {
+
162  typedef glm_u64vec2 type;
+
163  };
+
164 
+
165 
+
166  template<>
+
167  struct storage<3, detail::uint64, true>
+
168  {
+
169  typedef glm_u64vec2 type;
+
170  };
+
171 
+
172  template<>
+
173  struct storage<4, double, true>
+
174  {
+
175 # if (GLM_ARCH & GLM_ARCH_AVX_BIT)
+
176  typedef glm_f64vec4 type;
+
177 # else
+
178  struct type
+
179  {
+
180  glm_f64vec2 data[2];
+
181  GLM_CONSTEXPR glm_f64vec2 getv(int i) const {
+
182  return data[i];
+
183  }
+
184  GLM_CONSTEXPR void setv(int i, const glm_f64vec2& v) {
+
185  data[i] = v;
+
186  }
+
187  };
+
188 # endif
+
189  };
+
190 
+
191 
+
192  template<>
+
193  struct storage<3, double, true> : public storage<4, double, true>
+
194  {};
+
195 
+
196 # endif
+
197 
+
198 # if (GLM_ARCH & GLM_ARCH_AVX2_BIT)
+
199  template<>
+
200  struct storage<4, detail::int64, true>
+
201  {
+
202  typedef glm_i64vec4 type;
+
203  };
+
204 
+
205  template<>
+
206  struct storage<4, detail::uint64, true>
+
207  {
+
208  typedef glm_u64vec4 type;
+
209  };
+
210 # endif
+
211 
+
212 # if GLM_ARCH & GLM_ARCH_NEON_BIT
+
213  template<>
+
214  struct storage<4, float, true>
+
215  {
+
216  typedef glm_f32vec4 type;
+
217  };
+
218 
+
219  template<>
+
220  struct storage<3, float, true> : public storage<4, float, true>
+
221  {};
+
222 
+
223  template<>
+
224  struct storage<4, int, true>
+
225  {
+
226  typedef glm_i32vec4 type;
+
227  };
+
228 
+
229  template<>
+
230  struct storage<3, int, true> : public storage<4, int, true>
+
231  {};
+
232 
+
233  template<>
+
234  struct storage<4, unsigned int, true>
+
235  {
+
236  typedef glm_u32vec4 type;
+
237  };
+
238 
+
239  template<>
+
240  struct storage<3, unsigned int, true> : public storage<4, unsigned int, true>
+
241  {};
+
242 
+
243 # if GLM_HAS_ALIGNOF
+
244  template<>
+
245  struct storage<3, double, true>
+
246  {
+
247  typedef struct alignas(4 * sizeof(double)) type {
+
248  double data[4];
+
249  } type;
+
250  };
+
251 # endif//GLM_HAS_ALIGNOF
+
252 
+
253 # endif
+
254 
+
255  enum genTypeEnum
+
256  {
+
257  GENTYPE_VEC,
+
258  GENTYPE_MAT,
+
259  GENTYPE_QUAT
+
260  };
+
261 
+
262  template <typename genType>
+
263  struct genTypeTrait
+
264  {};
+
265 
+
266  template <length_t C, length_t R, typename T>
+
267  struct genTypeTrait<mat<C, R, T> >
+
268  {
+
269  static const genTypeEnum GENTYPE = GENTYPE_MAT;
+
270  };
+
271 
+
272  template<typename genType, genTypeEnum type>
+
273  struct init_gentype
+
274  {
+
275  };
+
276 
+
277  template<typename genType>
+
278  struct init_gentype<genType, GENTYPE_QUAT>
+
279  {
+
280  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static genType identity()
+
281  {
+
282  return genType(1, 0, 0, 0);
+
283  }
+
284  };
+
285 
+
286  template<typename genType>
+
287  struct init_gentype<genType, GENTYPE_MAT>
+
288  {
+
289  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static genType identity()
+
290  {
+
291  return genType(1);
+
292  }
+
293  };
+
294 }//namespace detail
+
295 }//namespace glm
+
+
detail::uint64 uint64
64 bit unsigned integer type.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType identity()
Builds an identity matrix.
+
detail::int64 int64
64 bit signed integer type.
+ + + + diff --git a/include/glm/doc/api/a00035_source.html b/include/glm/doc/api/a00035_source.html new file mode 100644 index 0000000..b1837a5 --- /dev/null +++ b/include/glm/doc/api/a00035_source.html @@ -0,0 +1,1242 @@ + + + + + + + +1.0.2 API documentation: setup.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
setup.hpp
+
+
+
1 #ifndef GLM_SETUP_INCLUDED
+
2 
+
3 #include <cassert>
+
4 #include <cstddef>
+
5 
+
6 #define GLM_VERSION_MAJOR 1
+
7 #define GLM_VERSION_MINOR 0
+
8 #define GLM_VERSION_PATCH 2
+
9 #define GLM_VERSION_REVISION 0 // Deprecated
+
10 #define GLM_VERSION 1000 // Deprecated
+
11 
+
12 #define GLM_MAKE_API_VERSION(variant, major, minor, patch) \
+
13  ((((uint32_t)(variant)) << 29U) | (((uint32_t)(major)) << 22U) | (((uint32_t)(minor)) << 12U) | ((uint32_t)(patch)))
+
14 
+
15 #define GLM_VERSION_COMPLETE GLM_MAKE_API_VERSION(0, GLM_VERSION_MAJOR, GLM_VERSION_MINOR, GLM_VERSION_PATCH)
+
16 
+
17 #define GLM_SETUP_INCLUDED GLM_VERSION
+
18 
+
19 #define GLM_GET_VERSION_VARIANT(version) ((uint32_t)(version) >> 29U)
+
20 #define GLM_GET_VERSION_MAJOR(version) (((uint32_t)(version) >> 22U) & 0x7FU)
+
21 #define GLM_GET_VERSION_MINOR(version) (((uint32_t)(version) >> 12U) & 0x3FFU)
+
22 #define GLM_GET_VERSION_PATCH(version) ((uint32_t)(version) & 0xFFFU)
+
23 
+
25 // Active states
+
26 
+
27 #define GLM_DISABLE 0
+
28 #define GLM_ENABLE 1
+
29 
+
31 // Messages
+
32 
+
33 #if defined(GLM_FORCE_MESSAGES)
+
34 # define GLM_MESSAGES GLM_ENABLE
+
35 #else
+
36 # define GLM_MESSAGES GLM_DISABLE
+
37 #endif
+
38 
+
40 // Detect the platform
+
41 
+
42 #include "../simd/platform.h"
+
43 
+
45 // Build model
+
46 
+
47 #if defined(_M_ARM64) || defined(__LP64__) || defined(_M_X64) || defined(__ppc64__) || defined(__x86_64__)
+
48 # define GLM_MODEL GLM_MODEL_64
+
49 #elif defined(__i386__) || defined(__ppc__) || defined(__ILP32__) || defined(_M_ARM)
+
50 # define GLM_MODEL GLM_MODEL_32
+
51 #else
+
52 # define GLM_MODEL GLM_MODEL_32
+
53 #endif//
+
54 
+
55 #if !defined(GLM_MODEL) && GLM_COMPILER != 0
+
56 # error "GLM_MODEL undefined, your compiler may not be supported by GLM. Add #define GLM_MODEL 0 to ignore this message."
+
57 #endif//GLM_MODEL
+
58 
+
60 // C++ Version
+
61 
+
62 // User defines: GLM_FORCE_CXX98, GLM_FORCE_CXX03, GLM_FORCE_CXX11, GLM_FORCE_CXX14, GLM_FORCE_CXX17, GLM_FORCE_CXX2A
+
63 
+
64 #define GLM_LANG_CXX98_FLAG (1 << 1)
+
65 #define GLM_LANG_CXX03_FLAG (1 << 2)
+
66 #define GLM_LANG_CXX0X_FLAG (1 << 3)
+
67 #define GLM_LANG_CXX11_FLAG (1 << 4)
+
68 #define GLM_LANG_CXX14_FLAG (1 << 5)
+
69 #define GLM_LANG_CXX17_FLAG (1 << 6)
+
70 #define GLM_LANG_CXX20_FLAG (1 << 7)
+
71 #define GLM_LANG_CXXMS_FLAG (1 << 8)
+
72 #define GLM_LANG_CXXGNU_FLAG (1 << 9)
+
73 
+
74 #define GLM_LANG_CXX98 GLM_LANG_CXX98_FLAG
+
75 #define GLM_LANG_CXX03 (GLM_LANG_CXX98 | GLM_LANG_CXX03_FLAG)
+
76 #define GLM_LANG_CXX0X (GLM_LANG_CXX03 | GLM_LANG_CXX0X_FLAG)
+
77 #define GLM_LANG_CXX11 (GLM_LANG_CXX0X | GLM_LANG_CXX11_FLAG)
+
78 #define GLM_LANG_CXX14 (GLM_LANG_CXX11 | GLM_LANG_CXX14_FLAG)
+
79 #define GLM_LANG_CXX17 (GLM_LANG_CXX14 | GLM_LANG_CXX17_FLAG)
+
80 #define GLM_LANG_CXX20 (GLM_LANG_CXX17 | GLM_LANG_CXX20_FLAG)
+
81 #define GLM_LANG_CXXMS GLM_LANG_CXXMS_FLAG
+
82 #define GLM_LANG_CXXGNU GLM_LANG_CXXGNU_FLAG
+
83 
+
84 #if (defined(_MSC_EXTENSIONS))
+
85 # define GLM_LANG_EXT GLM_LANG_CXXMS_FLAG
+
86 #elif ((GLM_COMPILER & (GLM_COMPILER_CLANG | GLM_COMPILER_GCC)) && (GLM_ARCH & GLM_ARCH_SIMD_BIT))
+
87 # define GLM_LANG_EXT GLM_LANG_CXXMS_FLAG
+
88 #else
+
89 # define GLM_LANG_EXT 0
+
90 #endif
+
91 
+
92 #if (defined(GLM_FORCE_CXX_UNKNOWN))
+
93 # define GLM_LANG 0
+
94 #elif defined(GLM_FORCE_CXX20)
+
95 # define GLM_LANG (GLM_LANG_CXX20 | GLM_LANG_EXT)
+
96 # define GLM_LANG_STL11_FORCED
+
97 #elif defined(GLM_FORCE_CXX17)
+
98 # define GLM_LANG (GLM_LANG_CXX17 | GLM_LANG_EXT)
+
99 # define GLM_LANG_STL11_FORCED
+
100 #elif defined(GLM_FORCE_CXX14)
+
101 # define GLM_LANG (GLM_LANG_CXX14 | GLM_LANG_EXT)
+
102 # define GLM_LANG_STL11_FORCED
+
103 #elif defined(GLM_FORCE_CXX11)
+
104 # define GLM_LANG (GLM_LANG_CXX11 | GLM_LANG_EXT)
+
105 # define GLM_LANG_STL11_FORCED
+
106 #elif defined(GLM_FORCE_CXX03)
+
107 # define GLM_LANG (GLM_LANG_CXX03 | GLM_LANG_EXT)
+
108 #elif defined(GLM_FORCE_CXX98)
+
109 # define GLM_LANG (GLM_LANG_CXX98 | GLM_LANG_EXT)
+
110 #else
+
111 # if GLM_COMPILER & GLM_COMPILER_VC && defined(_MSVC_LANG)
+
112 # if GLM_COMPILER >= GLM_COMPILER_VC15_7
+
113 # define GLM_LANG_PLATFORM _MSVC_LANG
+
114 # elif GLM_COMPILER >= GLM_COMPILER_VC15
+
115 # if _MSVC_LANG > 201402L
+
116 # define GLM_LANG_PLATFORM 201402L
+
117 # else
+
118 # define GLM_LANG_PLATFORM _MSVC_LANG
+
119 # endif
+
120 # else
+
121 # define GLM_LANG_PLATFORM 0
+
122 # endif
+
123 # else
+
124 # define GLM_LANG_PLATFORM 0
+
125 # endif
+
126 
+
127 # if __cplusplus > 201703L || GLM_LANG_PLATFORM > 201703L
+
128 # define GLM_LANG (GLM_LANG_CXX20 | GLM_LANG_EXT)
+
129 # elif __cplusplus == 201703L || GLM_LANG_PLATFORM == 201703L
+
130 # define GLM_LANG (GLM_LANG_CXX17 | GLM_LANG_EXT)
+
131 # elif __cplusplus == 201402L || __cplusplus == 201406L || __cplusplus == 201500L || GLM_LANG_PLATFORM == 201402L
+
132 # define GLM_LANG (GLM_LANG_CXX14 | GLM_LANG_EXT)
+
133 # elif __cplusplus == 201103L || GLM_LANG_PLATFORM == 201103L
+
134 # define GLM_LANG (GLM_LANG_CXX11 | GLM_LANG_EXT)
+
135 # elif defined(__INTEL_CXX11_MODE__) || defined(_MSC_VER) || defined(__GXX_EXPERIMENTAL_CXX0X__)
+
136 # define GLM_LANG (GLM_LANG_CXX0X | GLM_LANG_EXT)
+
137 # elif __cplusplus == 199711L
+
138 # define GLM_LANG (GLM_LANG_CXX98 | GLM_LANG_EXT)
+
139 # else
+
140 # define GLM_LANG (0 | GLM_LANG_EXT)
+
141 # endif
+
142 #endif
+
143 
+
145 // Has of C++ features
+
146 
+
147 // http://clang.llvm.org/cxx_status.html
+
148 // http://gcc.gnu.org/projects/cxx0x.html
+
149 // http://msdn.microsoft.com/en-us/library/vstudio/hh567368(v=vs.120).aspx
+
150 
+
151 #if (GLM_COMPILER & GLM_COMPILER_CUDA_RTC) == GLM_COMPILER_CUDA_RTC
+
152 # define GLM_HAS_CXX11_STL 0
+
153 #elif (GLM_COMPILER & GLM_COMPILER_HIP)
+
154 # define GLM_HAS_CXX11_STL 0
+
155 #elif GLM_COMPILER & GLM_COMPILER_CLANG
+
156 # if (defined(_LIBCPP_VERSION) || (GLM_LANG & GLM_LANG_CXX11_FLAG) || defined(GLM_LANG_STL11_FORCED))
+
157 # define GLM_HAS_CXX11_STL 1
+
158 # else
+
159 # define GLM_HAS_CXX11_STL 0
+
160 # endif
+
161 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
162 # define GLM_HAS_CXX11_STL 1
+
163 #else
+
164 # define GLM_HAS_CXX11_STL ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
165  ((GLM_COMPILER & GLM_COMPILER_GCC) && (GLM_COMPILER >= GLM_COMPILER_GCC48)) || \
+
166  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC12)) || \
+
167  ((GLM_PLATFORM != GLM_PLATFORM_WINDOWS) && (GLM_COMPILER & GLM_COMPILER_INTEL) && (GLM_COMPILER >= GLM_COMPILER_INTEL15))))
+
168 #endif
+
169 
+
170 // N1720
+
171 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
172 # define GLM_HAS_STATIC_ASSERT __has_feature(cxx_static_assert)
+
173 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
174 # define GLM_HAS_STATIC_ASSERT 1
+
175 #else
+
176 # define GLM_HAS_STATIC_ASSERT ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
177  ((GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
178  ((GLM_COMPILER & GLM_COMPILER_VC)) || \
+
179  ((GLM_COMPILER & GLM_COMPILER_HIP))))
+
180 #endif
+
181 
+
182 // N1988
+
183 #if GLM_LANG & GLM_LANG_CXX11_FLAG
+
184 # define GLM_HAS_EXTENDED_INTEGER_TYPE 1
+
185 #else
+
186 # define GLM_HAS_EXTENDED_INTEGER_TYPE (\
+
187  ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (GLM_COMPILER & GLM_COMPILER_VC)) || \
+
188  ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
189  ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (GLM_COMPILER & GLM_COMPILER_CLANG)) || \
+
190  ((GLM_COMPILER & GLM_COMPILER_HIP)))
+
191 #endif
+
192 
+
193 // N2672 Initializer lists http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2672.htm
+
194 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
195 # define GLM_HAS_INITIALIZER_LISTS __has_feature(cxx_generalized_initializers)
+
196 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
197 # define GLM_HAS_INITIALIZER_LISTS 1
+
198 #else
+
199 # define GLM_HAS_INITIALIZER_LISTS ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
200  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC15)) || \
+
201  ((GLM_COMPILER & GLM_COMPILER_INTEL) && (GLM_COMPILER >= GLM_COMPILER_INTEL14)) || \
+
202  ((GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
203  ((GLM_COMPILER & GLM_COMPILER_HIP))))
+
204 #endif
+
205 
+
206 // N2544 Unrestricted unions http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2544.pdf
+
207 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
208 # define GLM_HAS_UNRESTRICTED_UNIONS __has_feature(cxx_unrestricted_unions)
+
209 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
210 # define GLM_HAS_UNRESTRICTED_UNIONS 1
+
211 #else
+
212 # define GLM_HAS_UNRESTRICTED_UNIONS (GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
213  (GLM_COMPILER & GLM_COMPILER_VC) || \
+
214  ((GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
215  ((GLM_COMPILER & GLM_COMPILER_HIP)))
+
216 #endif
+
217 
+
218 // N2346
+
219 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
220 # define GLM_HAS_DEFAULTED_FUNCTIONS __has_feature(cxx_defaulted_functions)
+
221 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
222 # define GLM_HAS_DEFAULTED_FUNCTIONS 1
+
223 #else
+
224 # define GLM_HAS_DEFAULTED_FUNCTIONS ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
225  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC12)) || \
+
226  ((GLM_COMPILER & GLM_COMPILER_INTEL)) || \
+
227  (GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
228  ((GLM_COMPILER & GLM_COMPILER_HIP)))
+
229 #endif
+
230 
+
231 // N2118
+
232 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
233 # define GLM_HAS_RVALUE_REFERENCES __has_feature(cxx_rvalue_references)
+
234 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
235 # define GLM_HAS_RVALUE_REFERENCES 1
+
236 #else
+
237 # define GLM_HAS_RVALUE_REFERENCES ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
238  ((GLM_COMPILER & GLM_COMPILER_VC)) || \
+
239  ((GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
240  ((GLM_COMPILER & GLM_COMPILER_HIP))))
+
241 #endif
+
242 
+
243 // N2437 http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2437.pdf
+
244 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
245 # define GLM_HAS_EXPLICIT_CONVERSION_OPERATORS __has_feature(cxx_explicit_conversions)
+
246 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
247 # define GLM_HAS_EXPLICIT_CONVERSION_OPERATORS 1
+
248 #else
+
249 # define GLM_HAS_EXPLICIT_CONVERSION_OPERATORS ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
250  ((GLM_COMPILER & GLM_COMPILER_INTEL) && (GLM_COMPILER >= GLM_COMPILER_INTEL14)) || \
+
251  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC12)) || \
+
252  ((GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
253  ((GLM_COMPILER & GLM_COMPILER_HIP))))
+
254 #endif
+
255 
+
256 // N2258 http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2258.pdf
+
257 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
258 # define GLM_HAS_TEMPLATE_ALIASES __has_feature(cxx_alias_templates)
+
259 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
260 # define GLM_HAS_TEMPLATE_ALIASES 1
+
261 #else
+
262 # define GLM_HAS_TEMPLATE_ALIASES ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
263  ((GLM_COMPILER & GLM_COMPILER_INTEL)) || \
+
264  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC12)) || \
+
265  ((GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
266  ((GLM_COMPILER & GLM_COMPILER_HIP))))
+
267 #endif
+
268 
+
269 // N2930 http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2930.html
+
270 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
271 # define GLM_HAS_RANGE_FOR __has_feature(cxx_range_for)
+
272 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
273 # define GLM_HAS_RANGE_FOR 1
+
274 #else
+
275 # define GLM_HAS_RANGE_FOR ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
276  ((GLM_COMPILER & GLM_COMPILER_INTEL)) || \
+
277  ((GLM_COMPILER & GLM_COMPILER_VC)) || \
+
278  ((GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
279  ((GLM_COMPILER & GLM_COMPILER_HIP))))
+
280 #endif
+
281 
+
282 // N2341 http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2341.pdf
+
283 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
284 # define GLM_HAS_ALIGNOF __has_feature(cxx_alignas)
+
285 #elif GLM_LANG & GLM_LANG_CXX11_FLAG
+
286 # define GLM_HAS_ALIGNOF 1
+
287 #else
+
288 # define GLM_HAS_ALIGNOF ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
289  ((GLM_COMPILER & GLM_COMPILER_INTEL) && (GLM_COMPILER >= GLM_COMPILER_INTEL15)) || \
+
290  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC14)) || \
+
291  ((GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
292  ((GLM_COMPILER & GLM_COMPILER_HIP))))
+
293 #endif
+
294 
+
295 // N2235 Generalized Constant Expressions http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2235.pdf
+
296 // N3652 Extended Constant Expressions http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3652.html
+
297 #if (GLM_ARCH & GLM_ARCH_SIMD_BIT) // Compiler SIMD intrinsics don't support constexpr...
+
298 # define GLM_HAS_CONSTEXPR 0
+
299 #elif (GLM_COMPILER & GLM_COMPILER_CLANG)
+
300 # define GLM_HAS_CONSTEXPR __has_feature(cxx_relaxed_constexpr)
+
301 #elif (GLM_LANG & GLM_LANG_CXX14_FLAG)
+
302 # define GLM_HAS_CONSTEXPR 1
+
303 #else
+
304 # define GLM_HAS_CONSTEXPR ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && GLM_HAS_INITIALIZER_LISTS && (\
+
305  ((GLM_COMPILER & GLM_COMPILER_INTEL) && (GLM_COMPILER >= GLM_COMPILER_INTEL17)) || \
+
306  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC15))))
+
307 #endif
+
308 
+
309 #if GLM_HAS_CONSTEXPR
+
310 # define GLM_CONSTEXPR constexpr
+
311 #else
+
312 # define GLM_CONSTEXPR
+
313 #endif
+
314 
+
315 //
+
316 #if GLM_HAS_CONSTEXPR
+
317 # if (GLM_COMPILER & GLM_COMPILER_CLANG)
+
318 # if __has_feature(cxx_if_constexpr)
+
319 # define GLM_HAS_IF_CONSTEXPR 1
+
320 # else
+
321 # define GLM_HAS_IF_CONSTEXPR 0
+
322 # endif
+
323 # elif (GLM_LANG & GLM_LANG_CXX17_FLAG)
+
324 # define GLM_HAS_IF_CONSTEXPR 1
+
325 # else
+
326 # define GLM_HAS_IF_CONSTEXPR 0
+
327 # endif
+
328 #else
+
329 # define GLM_HAS_IF_CONSTEXPR 0
+
330 #endif
+
331 
+
332 #if GLM_HAS_IF_CONSTEXPR
+
333 # define GLM_IF_CONSTEXPR if constexpr
+
334 #else
+
335 # define GLM_IF_CONSTEXPR if
+
336 #endif
+
337 
+
338 // [nodiscard]
+
339 #if GLM_LANG & GLM_LANG_CXX17_FLAG
+
340 # define GLM_NODISCARD [[nodiscard]]
+
341 #else
+
342 # define GLM_NODISCARD
+
343 #endif
+
344 
+
345 //
+
346 #if GLM_LANG & GLM_LANG_CXX11_FLAG
+
347 # define GLM_HAS_ASSIGNABLE 1
+
348 #else
+
349 # define GLM_HAS_ASSIGNABLE ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
350  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC15)) || \
+
351  ((GLM_COMPILER & GLM_COMPILER_GCC) && (GLM_COMPILER >= GLM_COMPILER_GCC49))))
+
352 #endif
+
353 
+
354 //
+
355 #define GLM_HAS_TRIVIAL_QUERIES 0
+
356 
+
357 //
+
358 #if GLM_LANG & GLM_LANG_CXX11_FLAG
+
359 # define GLM_HAS_MAKE_SIGNED 1
+
360 #else
+
361 # define GLM_HAS_MAKE_SIGNED ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\
+
362  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC12)) || \
+
363  ((GLM_COMPILER & GLM_COMPILER_CUDA)) || \
+
364  ((GLM_COMPILER & GLM_COMPILER_HIP))))
+
365 #endif
+
366 
+
367 //
+
368 #if defined(GLM_FORCE_INTRINSICS)
+
369 # define GLM_HAS_BITSCAN_WINDOWS ((GLM_PLATFORM & GLM_PLATFORM_WINDOWS) && (\
+
370  ((GLM_COMPILER & GLM_COMPILER_INTEL)) || \
+
371  ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC14) && (GLM_ARCH & GLM_ARCH_X86_BIT))))
+
372 #else
+
373 # define GLM_HAS_BITSCAN_WINDOWS 0
+
374 #endif
+
375 
+
376 #if GLM_LANG & GLM_LANG_CXX11_FLAG
+
377 # define GLM_HAS_NOEXCEPT 1
+
378 #else
+
379 # define GLM_HAS_NOEXCEPT 0
+
380 #endif
+
381 
+
382 #if GLM_HAS_NOEXCEPT
+
383 # define GLM_NOEXCEPT noexcept
+
384 #else
+
385 # define GLM_NOEXCEPT
+
386 #endif
+
387 
+
389 // OpenMP
+
390 #ifdef _OPENMP
+
391 # if GLM_COMPILER & GLM_COMPILER_GCC
+
392 # if GLM_COMPILER >= GLM_COMPILER_GCC61
+
393 # define GLM_HAS_OPENMP 45
+
394 # elif GLM_COMPILER >= GLM_COMPILER_GCC49
+
395 # define GLM_HAS_OPENMP 40
+
396 # elif GLM_COMPILER >= GLM_COMPILER_GCC47
+
397 # define GLM_HAS_OPENMP 31
+
398 # else
+
399 # define GLM_HAS_OPENMP 0
+
400 # endif
+
401 # elif GLM_COMPILER & GLM_COMPILER_CLANG
+
402 # if GLM_COMPILER >= GLM_COMPILER_CLANG38
+
403 # define GLM_HAS_OPENMP 31
+
404 # else
+
405 # define GLM_HAS_OPENMP 0
+
406 # endif
+
407 # elif GLM_COMPILER & GLM_COMPILER_VC
+
408 # define GLM_HAS_OPENMP 20
+
409 # elif GLM_COMPILER & GLM_COMPILER_INTEL
+
410 # if GLM_COMPILER >= GLM_COMPILER_INTEL16
+
411 # define GLM_HAS_OPENMP 40
+
412 # else
+
413 # define GLM_HAS_OPENMP 0
+
414 # endif
+
415 # else
+
416 # define GLM_HAS_OPENMP 0
+
417 # endif
+
418 #else
+
419 # define GLM_HAS_OPENMP 0
+
420 #endif
+
421 
+
423 // nullptr
+
424 
+
425 #if GLM_LANG & GLM_LANG_CXX0X_FLAG
+
426 # define GLM_CONFIG_NULLPTR GLM_ENABLE
+
427 #else
+
428 # define GLM_CONFIG_NULLPTR GLM_DISABLE
+
429 #endif
+
430 
+
431 #if GLM_CONFIG_NULLPTR == GLM_ENABLE
+
432 # define GLM_NULLPTR nullptr
+
433 #else
+
434 # define GLM_NULLPTR 0
+
435 #endif
+
436 
+
438 // Static assert
+
439 
+
440 #if GLM_HAS_STATIC_ASSERT
+
441 # define GLM_STATIC_ASSERT(x, message) static_assert(x, message)
+
442 #elif GLM_COMPILER & GLM_COMPILER_VC
+
443 # define GLM_STATIC_ASSERT(x, message) typedef char __CASSERT__##__LINE__[(x) ? 1 : -1]
+
444 #else
+
445 # define GLM_STATIC_ASSERT(x, message) assert(x)
+
446 #endif//GLM_LANG
+
447 
+
449 // Qualifiers
+
450 
+
451 // User defines: GLM_CUDA_FORCE_DEVICE_FUNC, GLM_CUDA_FORCE_HOST_FUNC
+
452 
+
453 #if (GLM_COMPILER & GLM_COMPILER_CUDA) || (GLM_COMPILER & GLM_COMPILER_HIP)
+
454 # if defined(GLM_CUDA_FORCE_DEVICE_FUNC) && defined(GLM_CUDA_FORCE_HOST_FUNC)
+
455 # error "GLM error: GLM_CUDA_FORCE_DEVICE_FUNC and GLM_CUDA_FORCE_HOST_FUNC should not be defined at the same time, GLM by default generates both device and host code for CUDA compiler."
+
456 # endif//defined(GLM_CUDA_FORCE_DEVICE_FUNC) && defined(GLM_CUDA_FORCE_HOST_FUNC)
+
457 
+
458 # if defined(GLM_CUDA_FORCE_DEVICE_FUNC)
+
459 # define GLM_CUDA_FUNC_DEF __device__
+
460 # define GLM_CUDA_FUNC_DECL __device__
+
461 # elif defined(GLM_CUDA_FORCE_HOST_FUNC)
+
462 # define GLM_CUDA_FUNC_DEF __host__
+
463 # define GLM_CUDA_FUNC_DECL __host__
+
464 # else
+
465 # define GLM_CUDA_FUNC_DEF __device__ __host__
+
466 # define GLM_CUDA_FUNC_DECL __device__ __host__
+
467 # endif//defined(GLM_CUDA_FORCE_XXXX_FUNC)
+
468 #else
+
469 # define GLM_CUDA_FUNC_DEF
+
470 # define GLM_CUDA_FUNC_DECL
+
471 #endif
+
472 
+
473 #if defined(GLM_FORCE_INLINE)
+
474 # if GLM_COMPILER & GLM_COMPILER_VC
+
475 # define GLM_INLINE __forceinline
+
476 # define GLM_NEVER_INLINE __declspec(noinline)
+
477 # elif GLM_COMPILER & (GLM_COMPILER_GCC | GLM_COMPILER_CLANG)
+
478 # define GLM_INLINE inline __attribute__((__always_inline__))
+
479 # define GLM_NEVER_INLINE __attribute__((__noinline__))
+
480 # elif (GLM_COMPILER & GLM_COMPILER_CUDA) || (GLM_COMPILER & GLM_COMPILER_HIP)
+
481 # define GLM_INLINE __forceinline__
+
482 # define GLM_NEVER_INLINE __noinline__
+
483 # else
+
484 # define GLM_INLINE inline
+
485 # define GLM_NEVER_INLINE
+
486 # endif//GLM_COMPILER
+
487 #else
+
488 # define GLM_INLINE inline
+
489 # define GLM_NEVER_INLINE
+
490 #endif//defined(GLM_FORCE_INLINE)
+
491 
+
492 #define GLM_CTOR_DECL GLM_CUDA_FUNC_DECL GLM_CONSTEXPR
+
493 #define GLM_FUNC_DISCARD_DECL GLM_CUDA_FUNC_DECL
+
494 #define GLM_FUNC_DECL GLM_NODISCARD GLM_CUDA_FUNC_DECL
+
495 #define GLM_FUNC_QUALIFIER GLM_CUDA_FUNC_DEF GLM_INLINE
+
496 
+
497 // Do not use CUDA function qualifiers on CUDA compiler when functions are made default
+
498 #if GLM_HAS_DEFAULTED_FUNCTIONS
+
499 # define GLM_DEFAULTED_FUNC_DECL
+
500 # define GLM_DEFAULTED_FUNC_QUALIFIER GLM_INLINE
+
501 #else
+
502 # define GLM_DEFAULTED_FUNC_DECL GLM_FUNC_DISCARD_DECL
+
503 # define GLM_DEFAULTED_FUNC_QUALIFIER GLM_FUNC_QUALIFIER
+
504 #endif//GLM_HAS_DEFAULTED_FUNCTIONS
+
505 #if !defined(GLM_FORCE_CTOR_INIT)
+
506 # define GLM_DEFAULTED_DEFAULT_CTOR_DECL
+
507 # define GLM_DEFAULTED_DEFAULT_CTOR_QUALIFIER GLM_DEFAULTED_FUNC_QUALIFIER
+
508 #else
+
509 # define GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_FUNC_DISCARD_DECL
+
510 # define GLM_DEFAULTED_DEFAULT_CTOR_QUALIFIER GLM_FUNC_QUALIFIER
+
511 #endif//GLM_FORCE_CTOR_INIT
+
512 
+
514 // Swizzle operators
+
515 
+
516 // User defines: GLM_FORCE_SWIZZLE
+
517 
+
518 #define GLM_SWIZZLE_DISABLED 0
+
519 #define GLM_SWIZZLE_OPERATOR 1
+
520 #define GLM_SWIZZLE_FUNCTION 2
+
521 
+
522 #if defined(GLM_SWIZZLE)
+
523 # pragma message("GLM: GLM_SWIZZLE is deprecated, use GLM_FORCE_SWIZZLE instead.")
+
524 # define GLM_FORCE_SWIZZLE
+
525 #endif
+
526 
+
527 #if defined(GLM_FORCE_SWIZZLE) && (GLM_LANG & GLM_LANG_CXXMS_FLAG) && !defined(GLM_FORCE_XYZW_ONLY)
+
528 # define GLM_CONFIG_SWIZZLE GLM_SWIZZLE_OPERATOR
+
529 #elif defined(GLM_FORCE_SWIZZLE)
+
530 # define GLM_CONFIG_SWIZZLE GLM_SWIZZLE_FUNCTION
+
531 #else
+
532 # define GLM_CONFIG_SWIZZLE GLM_SWIZZLE_DISABLED
+
533 #endif
+
534 
+
536 // Allows using not basic types as genType
+
537 
+
538 // #define GLM_FORCE_UNRESTRICTED_GENTYPE
+
539 
+
540 #ifdef GLM_FORCE_UNRESTRICTED_GENTYPE
+
541 # define GLM_CONFIG_UNRESTRICTED_GENTYPE GLM_ENABLE
+
542 #else
+
543 # define GLM_CONFIG_UNRESTRICTED_GENTYPE GLM_DISABLE
+
544 #endif
+
545 
+
547 // Allows using any scaler as float
+
548 
+
549 // #define GLM_FORCE_UNRESTRICTED_FLOAT
+
550 
+
551 #ifdef GLM_FORCE_UNRESTRICTED_FLOAT
+
552 # define GLM_CONFIG_UNRESTRICTED_FLOAT GLM_ENABLE
+
553 #else
+
554 # define GLM_CONFIG_UNRESTRICTED_FLOAT GLM_DISABLE
+
555 #endif
+
556 
+
558 // Clip control, define GLM_FORCE_DEPTH_ZERO_TO_ONE before including GLM
+
559 // to use a clip space between 0 to 1.
+
560 // Coordinate system, define GLM_FORCE_LEFT_HANDED before including GLM
+
561 // to use left handed coordinate system by default.
+
562 
+
563 #define GLM_CLIP_CONTROL_ZO_BIT (1 << 0) // ZERO_TO_ONE
+
564 #define GLM_CLIP_CONTROL_NO_BIT (1 << 1) // NEGATIVE_ONE_TO_ONE
+
565 #define GLM_CLIP_CONTROL_LH_BIT (1 << 2) // LEFT_HANDED, For DirectX, Metal, Vulkan
+
566 #define GLM_CLIP_CONTROL_RH_BIT (1 << 3) // RIGHT_HANDED, For OpenGL, default in GLM
+
567 
+
568 #define GLM_CLIP_CONTROL_LH_ZO (GLM_CLIP_CONTROL_LH_BIT | GLM_CLIP_CONTROL_ZO_BIT)
+
569 #define GLM_CLIP_CONTROL_LH_NO (GLM_CLIP_CONTROL_LH_BIT | GLM_CLIP_CONTROL_NO_BIT)
+
570 #define GLM_CLIP_CONTROL_RH_ZO (GLM_CLIP_CONTROL_RH_BIT | GLM_CLIP_CONTROL_ZO_BIT)
+
571 #define GLM_CLIP_CONTROL_RH_NO (GLM_CLIP_CONTROL_RH_BIT | GLM_CLIP_CONTROL_NO_BIT)
+
572 
+
573 #ifdef GLM_FORCE_DEPTH_ZERO_TO_ONE
+
574 # ifdef GLM_FORCE_LEFT_HANDED
+
575 # define GLM_CONFIG_CLIP_CONTROL GLM_CLIP_CONTROL_LH_ZO
+
576 # else
+
577 # define GLM_CONFIG_CLIP_CONTROL GLM_CLIP_CONTROL_RH_ZO
+
578 # endif
+
579 #else
+
580 # ifdef GLM_FORCE_LEFT_HANDED
+
581 # define GLM_CONFIG_CLIP_CONTROL GLM_CLIP_CONTROL_LH_NO
+
582 # else
+
583 # define GLM_CONFIG_CLIP_CONTROL GLM_CLIP_CONTROL_RH_NO
+
584 # endif
+
585 #endif
+
586 
+
588 // Qualifiers
+
589 
+
590 #if (GLM_COMPILER & GLM_COMPILER_VC) || ((GLM_COMPILER & GLM_COMPILER_INTEL) && (GLM_PLATFORM & GLM_PLATFORM_WINDOWS))
+
591 # define GLM_DEPRECATED __declspec(deprecated)
+
592 # define GLM_ALIGNED_TYPEDEF(type, name, alignment) typedef __declspec(align(alignment)) type name
+
593 #elif GLM_COMPILER & (GLM_COMPILER_GCC | GLM_COMPILER_CLANG | GLM_COMPILER_INTEL)
+
594 # if GLM_LANG & GLM_LANG_CXX14_FLAG
+
595 # define GLM_DEPRECATED [[deprecated]]
+
596 # else
+
597 # define GLM_DEPRECATED __attribute__((__deprecated__))
+
598 # endif
+
599 # define GLM_ALIGNED_TYPEDEF(type, name, alignment) typedef type name __attribute__((aligned(alignment)))
+
600 #elif (GLM_COMPILER & GLM_COMPILER_CUDA) || (GLM_COMPILER & GLM_COMPILER_HIP)
+
601 # define GLM_DEPRECATED
+
602 # define GLM_ALIGNED_TYPEDEF(type, name, alignment) typedef type name __align__(x)
+
603 #else
+
604 # define GLM_DEPRECATED
+
605 # define GLM_ALIGNED_TYPEDEF(type, name, alignment) typedef type name
+
606 #endif
+
607 
+
609 
+
610 #ifdef GLM_FORCE_EXPLICIT_CTOR
+
611 # define GLM_EXPLICIT explicit
+
612 #else
+
613 # define GLM_EXPLICIT
+
614 #endif
+
615 
+
617 // Length type: all length functions returns a length_t type.
+
618 // When GLM_FORCE_SIZE_T_LENGTH is defined, length_t is a typedef of size_t otherwise
+
619 // length_t is a typedef of int like GLSL defines it.
+
620 
+
621 #define GLM_LENGTH_INT 1
+
622 #define GLM_LENGTH_SIZE_T 2
+
623 
+
624 #ifdef GLM_FORCE_SIZE_T_LENGTH
+
625 # define GLM_CONFIG_LENGTH_TYPE GLM_LENGTH_SIZE_T
+
626 # define GLM_ASSERT_LENGTH(l, max) (assert ((l) < (max)))
+
627 #else
+
628 # define GLM_CONFIG_LENGTH_TYPE GLM_LENGTH_INT
+
629 # define GLM_ASSERT_LENGTH(l, max) (assert ((l) >= 0 && (l) < (max)))
+
630 #endif
+
631 
+
632 namespace glm
+
633 {
+
634  using std::size_t;
+
635 # if GLM_CONFIG_LENGTH_TYPE == GLM_LENGTH_SIZE_T
+
636  typedef size_t length_t;
+
637 # else
+
638  typedef int length_t;
+
639 # endif
+
640 }//namespace glm
+
641 
+
643 // constexpr
+
644 
+
645 #if GLM_HAS_CONSTEXPR
+
646 # define GLM_CONFIG_CONSTEXP GLM_ENABLE
+
647 
+
648  namespace glm
+
649  {
+
650  template<typename T, std::size_t N>
+
651  constexpr std::size_t countof(T const (&)[N])
+
652  {
+
653  return N;
+
654  }
+
655  }//namespace glm
+
656 # define GLM_COUNTOF(arr) glm::countof(arr)
+
657 #elif defined(_MSC_VER)
+
658 # define GLM_CONFIG_CONSTEXP GLM_DISABLE
+
659 
+
660 # define GLM_COUNTOF(arr) _countof(arr)
+
661 #else
+
662 # define GLM_CONFIG_CONSTEXP GLM_DISABLE
+
663 
+
664 # define GLM_COUNTOF(arr) sizeof(arr) / sizeof(arr[0])
+
665 #endif
+
666 
+
668 // uint
+
669 
+
670 namespace glm{
+
671 namespace detail
+
672 {
+
673  template<typename T>
+
674  struct is_int
+
675  {
+
676  enum test {value = 0};
+
677  };
+
678 
+
679  template<>
+
680  struct is_int<unsigned int>
+
681  {
+
682  enum test {value = ~0};
+
683  };
+
684 
+
685  template<>
+
686  struct is_int<signed int>
+
687  {
+
688  enum test {value = ~0};
+
689  };
+
690 }//namespace detail
+
691 
+
692  typedef unsigned int uint;
+
693 }//namespace glm
+
694 
+
696 // 64-bit int
+
697 
+
698 #if GLM_HAS_EXTENDED_INTEGER_TYPE
+
699 # include <cstdint>
+
700 #endif
+
701 
+
702 namespace glm{
+
703 namespace detail
+
704 {
+
705 # if GLM_HAS_EXTENDED_INTEGER_TYPE
+
706  typedef std::uint64_t uint64;
+
707  typedef std::int64_t int64;
+
708 # elif (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) // C99 detected, 64 bit types available
+
709  typedef uint64_t uint64;
+
710  typedef int64_t int64;
+
711 # elif GLM_COMPILER & GLM_COMPILER_VC
+
712  typedef unsigned __int64 uint64;
+
713  typedef signed __int64 int64;
+
714 # elif GLM_COMPILER & GLM_COMPILER_GCC
+
715 # pragma GCC diagnostic ignored "-Wlong-long"
+
716  __extension__ typedef unsigned long long uint64;
+
717  __extension__ typedef signed long long int64;
+
718 # elif (GLM_COMPILER & GLM_COMPILER_CLANG)
+
719 # pragma clang diagnostic ignored "-Wc++11-long-long"
+
720  typedef unsigned long long uint64;
+
721  typedef signed long long int64;
+
722 # else//unknown compiler
+
723  typedef unsigned long long uint64;
+
724  typedef signed long long int64;
+
725 # endif
+
726 }//namespace detail
+
727 }//namespace glm
+
728 
+
730 // make_unsigned
+
731 
+
732 #if GLM_HAS_MAKE_SIGNED
+
733 # include <type_traits>
+
734 
+
735 namespace glm{
+
736 namespace detail
+
737 {
+
738  using std::make_unsigned;
+
739 }//namespace detail
+
740 }//namespace glm
+
741 
+
742 #else
+
743 
+
744 namespace glm{
+
745 namespace detail
+
746 {
+
747  template<typename genType>
+
748  struct make_unsigned
+
749  {};
+
750 
+
751  template<>
+
752  struct make_unsigned<char>
+
753  {
+
754  typedef unsigned char type;
+
755  };
+
756 
+
757  template<>
+
758  struct make_unsigned<signed char>
+
759  {
+
760  typedef unsigned char type;
+
761  };
+
762 
+
763  template<>
+
764  struct make_unsigned<short>
+
765  {
+
766  typedef unsigned short type;
+
767  };
+
768 
+
769  template<>
+
770  struct make_unsigned<int>
+
771  {
+
772  typedef unsigned int type;
+
773  };
+
774 
+
775  template<>
+
776  struct make_unsigned<long>
+
777  {
+
778  typedef unsigned long type;
+
779  };
+
780 
+
781  template<>
+
782  struct make_unsigned<int64>
+
783  {
+
784  typedef uint64 type;
+
785  };
+
786 
+
787  template<>
+
788  struct make_unsigned<unsigned char>
+
789  {
+
790  typedef unsigned char type;
+
791  };
+
792 
+
793  template<>
+
794  struct make_unsigned<unsigned short>
+
795  {
+
796  typedef unsigned short type;
+
797  };
+
798 
+
799  template<>
+
800  struct make_unsigned<unsigned int>
+
801  {
+
802  typedef unsigned int type;
+
803  };
+
804 
+
805  template<>
+
806  struct make_unsigned<unsigned long>
+
807  {
+
808  typedef unsigned long type;
+
809  };
+
810 
+
811  template<>
+
812  struct make_unsigned<uint64>
+
813  {
+
814  typedef uint64 type;
+
815  };
+
816 }//namespace detail
+
817 }//namespace glm
+
818 #endif
+
819 
+
821 // Only use x, y, z, w as vector type components
+
822 
+
823 #ifdef GLM_FORCE_XYZW_ONLY
+
824 # define GLM_CONFIG_XYZW_ONLY GLM_ENABLE
+
825 #else
+
826 # define GLM_CONFIG_XYZW_ONLY GLM_DISABLE
+
827 #endif
+
828 
+
830 // Configure the use of defaulted initialized types
+
831 
+
832 #define GLM_CTOR_INIT_DISABLE 0
+
833 #define GLM_CTOR_INITIALIZER_LIST 1
+
834 #define GLM_CTOR_INITIALISATION 2
+
835 
+
836 #if defined(GLM_FORCE_CTOR_INIT) && GLM_HAS_INITIALIZER_LISTS
+
837 # define GLM_CONFIG_CTOR_INIT GLM_CTOR_INITIALIZER_LIST
+
838 #elif defined(GLM_FORCE_CTOR_INIT) && !GLM_HAS_INITIALIZER_LISTS
+
839 # define GLM_CONFIG_CTOR_INIT GLM_CTOR_INITIALISATION
+
840 #else
+
841 # define GLM_CONFIG_CTOR_INIT GLM_CTOR_INIT_DISABLE
+
842 #endif
+
843 
+
845 // Use SIMD instruction sets
+
846 
+
847 #if GLM_HAS_ALIGNOF && (GLM_LANG & GLM_LANG_CXXMS_FLAG) && (GLM_ARCH & GLM_ARCH_SIMD_BIT)
+
848 # define GLM_CONFIG_SIMD GLM_ENABLE
+
849 #else
+
850 # define GLM_CONFIG_SIMD GLM_DISABLE
+
851 #endif
+
852 
+
854 // Configure the use of defaulted function
+
855 
+
856 #if GLM_HAS_DEFAULTED_FUNCTIONS
+
857 # define GLM_CONFIG_DEFAULTED_FUNCTIONS GLM_ENABLE
+
858 # define GLM_DEFAULT = default
+
859 #else
+
860 # define GLM_CONFIG_DEFAULTED_FUNCTIONS GLM_DISABLE
+
861 # define GLM_DEFAULT
+
862 #endif
+
863 
+
864 #if GLM_CONFIG_CTOR_INIT == GLM_CTOR_INIT_DISABLE && GLM_CONFIG_DEFAULTED_FUNCTIONS == GLM_ENABLE
+
865 # define GLM_CONFIG_DEFAULTED_DEFAULT_CTOR GLM_ENABLE
+
866 # define GLM_DEFAULT_CTOR GLM_DEFAULT
+
867 #else
+
868 # define GLM_CONFIG_DEFAULTED_DEFAULT_CTOR GLM_DISABLE
+
869 # define GLM_DEFAULT_CTOR
+
870 #endif
+
871 
+
873 // Configure the use of aligned gentypes
+
874 
+
875 #ifdef GLM_FORCE_ALIGNED // Legacy define
+
876 # define GLM_FORCE_DEFAULT_ALIGNED_GENTYPES
+
877 #endif
+
878 
+
879 #ifdef GLM_FORCE_DEFAULT_ALIGNED_GENTYPES
+
880 # define GLM_FORCE_ALIGNED_GENTYPES
+
881 #endif
+
882 
+
883 #if GLM_HAS_ALIGNOF && (GLM_LANG & GLM_LANG_CXXMS_FLAG) && (defined(GLM_FORCE_ALIGNED_GENTYPES) || (GLM_CONFIG_SIMD == GLM_ENABLE))
+
884 # define GLM_CONFIG_ALIGNED_GENTYPES GLM_ENABLE
+
885 #else
+
886 # define GLM_CONFIG_ALIGNED_GENTYPES GLM_DISABLE
+
887 #endif
+
888 
+
890 // Configure the use of anonymous structure as implementation detail
+
891 
+
892 #if ((GLM_CONFIG_SIMD == GLM_ENABLE) || (GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR) || (GLM_CONFIG_ALIGNED_GENTYPES == GLM_ENABLE))
+
893 # define GLM_CONFIG_ANONYMOUS_STRUCT GLM_ENABLE
+
894 #else
+
895 # define GLM_CONFIG_ANONYMOUS_STRUCT GLM_DISABLE
+
896 #endif
+
897 
+
899 // Silent warnings
+
900 
+
901 #ifdef GLM_FORCE_WARNINGS
+
902 # define GLM_SILENT_WARNINGS GLM_DISABLE
+
903 #else
+
904 # define GLM_SILENT_WARNINGS GLM_ENABLE
+
905 #endif
+
906 
+
908 // Precision
+
909 
+
910 #define GLM_HIGHP 1
+
911 #define GLM_MEDIUMP 2
+
912 #define GLM_LOWP 3
+
913 
+
914 #if defined(GLM_FORCE_PRECISION_HIGHP_BOOL) || defined(GLM_PRECISION_HIGHP_BOOL)
+
915 # define GLM_CONFIG_PRECISION_BOOL GLM_HIGHP
+
916 #elif defined(GLM_FORCE_PRECISION_MEDIUMP_BOOL) || defined(GLM_PRECISION_MEDIUMP_BOOL)
+
917 # define GLM_CONFIG_PRECISION_BOOL GLM_MEDIUMP
+
918 #elif defined(GLM_FORCE_PRECISION_LOWP_BOOL) || defined(GLM_PRECISION_LOWP_BOOL)
+
919 # define GLM_CONFIG_PRECISION_BOOL GLM_LOWP
+
920 #else
+
921 # define GLM_CONFIG_PRECISION_BOOL GLM_HIGHP
+
922 #endif
+
923 
+
924 #if defined(GLM_FORCE_PRECISION_HIGHP_INT) || defined(GLM_PRECISION_HIGHP_INT)
+
925 # define GLM_CONFIG_PRECISION_INT GLM_HIGHP
+
926 #elif defined(GLM_FORCE_PRECISION_MEDIUMP_INT) || defined(GLM_PRECISION_MEDIUMP_INT)
+
927 # define GLM_CONFIG_PRECISION_INT GLM_MEDIUMP
+
928 #elif defined(GLM_FORCE_PRECISION_LOWP_INT) || defined(GLM_PRECISION_LOWP_INT)
+
929 # define GLM_CONFIG_PRECISION_INT GLM_LOWP
+
930 #else
+
931 # define GLM_CONFIG_PRECISION_INT GLM_HIGHP
+
932 #endif
+
933 
+
934 #if defined(GLM_FORCE_PRECISION_HIGHP_UINT) || defined(GLM_PRECISION_HIGHP_UINT)
+
935 # define GLM_CONFIG_PRECISION_UINT GLM_HIGHP
+
936 #elif defined(GLM_FORCE_PRECISION_MEDIUMP_UINT) || defined(GLM_PRECISION_MEDIUMP_UINT)
+
937 # define GLM_CONFIG_PRECISION_UINT GLM_MEDIUMP
+
938 #elif defined(GLM_FORCE_PRECISION_LOWP_UINT) || defined(GLM_PRECISION_LOWP_UINT)
+
939 # define GLM_CONFIG_PRECISION_UINT GLM_LOWP
+
940 #else
+
941 # define GLM_CONFIG_PRECISION_UINT GLM_HIGHP
+
942 #endif
+
943 
+
944 #if defined(GLM_FORCE_PRECISION_HIGHP_FLOAT) || defined(GLM_PRECISION_HIGHP_FLOAT)
+
945 # define GLM_CONFIG_PRECISION_FLOAT GLM_HIGHP
+
946 #elif defined(GLM_FORCE_PRECISION_MEDIUMP_FLOAT) || defined(GLM_PRECISION_MEDIUMP_FLOAT)
+
947 # define GLM_CONFIG_PRECISION_FLOAT GLM_MEDIUMP
+
948 #elif defined(GLM_FORCE_PRECISION_LOWP_FLOAT) || defined(GLM_PRECISION_LOWP_FLOAT)
+
949 # define GLM_CONFIG_PRECISION_FLOAT GLM_LOWP
+
950 #else
+
951 # define GLM_CONFIG_PRECISION_FLOAT GLM_HIGHP
+
952 #endif
+
953 
+
954 #if defined(GLM_FORCE_PRECISION_HIGHP_DOUBLE) || defined(GLM_PRECISION_HIGHP_DOUBLE)
+
955 # define GLM_CONFIG_PRECISION_DOUBLE GLM_HIGHP
+
956 #elif defined(GLM_FORCE_PRECISION_MEDIUMP_DOUBLE) || defined(GLM_PRECISION_MEDIUMP_DOUBLE)
+
957 # define GLM_CONFIG_PRECISION_DOUBLE GLM_MEDIUMP
+
958 #elif defined(GLM_FORCE_PRECISION_LOWP_DOUBLE) || defined(GLM_PRECISION_LOWP_DOUBLE)
+
959 # define GLM_CONFIG_PRECISION_DOUBLE GLM_LOWP
+
960 #else
+
961 # define GLM_CONFIG_PRECISION_DOUBLE GLM_HIGHP
+
962 #endif
+
963 
+
965 // Check inclusions of different versions of GLM
+
966 
+
967 #elif ((GLM_SETUP_INCLUDED != GLM_VERSION) && !defined(GLM_FORCE_IGNORE_VERSION))
+
968 # error "GLM error: A different version of GLM is already included. Define GLM_FORCE_IGNORE_VERSION before including GLM headers to ignore this error."
+
969 #elif GLM_SETUP_INCLUDED == GLM_VERSION
+
970 
+
972 // Messages
+
973 
+
974 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_MESSAGE_DISPLAYED)
+
975 # define GLM_MESSAGE_DISPLAYED
+
976 # define GLM_STR_HELPER(x) #x
+
977 # define GLM_STR(x) GLM_STR_HELPER(x)
+
978 
+
979  // Report GLM version
+
980 # pragma message ("GLM: version " GLM_STR(GLM_VERSION_MAJOR) "." GLM_STR(GLM_VERSION_MINOR) "." GLM_STR(GLM_VERSION_PATCH))
+
981 
+
982  // Report C++ language
+
983 # if (GLM_LANG & GLM_LANG_CXX20_FLAG) && (GLM_LANG & GLM_LANG_EXT)
+
984 # pragma message("GLM: C++ 20 with extensions")
+
985 # elif (GLM_LANG & GLM_LANG_CXX20_FLAG)
+
986 # pragma message("GLM: C++ 2A")
+
987 # elif (GLM_LANG & GLM_LANG_CXX17_FLAG) && (GLM_LANG & GLM_LANG_EXT)
+
988 # pragma message("GLM: C++ 17 with extensions")
+
989 # elif (GLM_LANG & GLM_LANG_CXX17_FLAG)
+
990 # pragma message("GLM: C++ 17")
+
991 # elif (GLM_LANG & GLM_LANG_CXX14_FLAG) && (GLM_LANG & GLM_LANG_EXT)
+
992 # pragma message("GLM: C++ 14 with extensions")
+
993 # elif (GLM_LANG & GLM_LANG_CXX14_FLAG)
+
994 # pragma message("GLM: C++ 14")
+
995 # elif (GLM_LANG & GLM_LANG_CXX11_FLAG) && (GLM_LANG & GLM_LANG_EXT)
+
996 # pragma message("GLM: C++ 11 with extensions")
+
997 # elif (GLM_LANG & GLM_LANG_CXX11_FLAG)
+
998 # pragma message("GLM: C++ 11")
+
999 # elif (GLM_LANG & GLM_LANG_CXX0X_FLAG) && (GLM_LANG & GLM_LANG_EXT)
+
1000 # pragma message("GLM: C++ 0x with extensions")
+
1001 # elif (GLM_LANG & GLM_LANG_CXX0X_FLAG)
+
1002 # pragma message("GLM: C++ 0x")
+
1003 # elif (GLM_LANG & GLM_LANG_CXX03_FLAG) && (GLM_LANG & GLM_LANG_EXT)
+
1004 # pragma message("GLM: C++ 03 with extensions")
+
1005 # elif (GLM_LANG & GLM_LANG_CXX03_FLAG)
+
1006 # pragma message("GLM: C++ 03")
+
1007 # elif (GLM_LANG & GLM_LANG_CXX98_FLAG) && (GLM_LANG & GLM_LANG_EXT)
+
1008 # pragma message("GLM: C++ 98 with extensions")
+
1009 # elif (GLM_LANG & GLM_LANG_CXX98_FLAG)
+
1010 # pragma message("GLM: C++ 98")
+
1011 # else
+
1012 # pragma message("GLM: C++ language undetected")
+
1013 # endif//GLM_LANG
+
1014 
+
1015  // Report compiler detection
+
1016 # if GLM_COMPILER & GLM_COMPILER_CUDA
+
1017 # pragma message("GLM: CUDA compiler detected")
+
1018 # elif GLM_COMPILER & GLM_COMPILER_HIP
+
1019 # pragma message("GLM: HIP compiler detected")
+
1020 # elif GLM_COMPILER & GLM_COMPILER_VC
+
1021 # pragma message("GLM: Visual C++ compiler detected")
+
1022 # elif GLM_COMPILER & GLM_COMPILER_CLANG
+
1023 # pragma message("GLM: Clang compiler detected")
+
1024 # elif GLM_COMPILER & GLM_COMPILER_INTEL
+
1025 # pragma message("GLM: Intel Compiler detected")
+
1026 # elif GLM_COMPILER & GLM_COMPILER_GCC
+
1027 # pragma message("GLM: GCC compiler detected")
+
1028 # else
+
1029 # pragma message("GLM: Compiler not detected")
+
1030 # endif
+
1031 
+
1032  // Report build target
+
1033 # if (GLM_ARCH & GLM_ARCH_AVX2_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1034 # pragma message("GLM: x86 64 bits with AVX2 instruction set build target")
+
1035 # elif (GLM_ARCH & GLM_ARCH_AVX2_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1036 # pragma message("GLM: x86 32 bits with AVX2 instruction set build target")
+
1037 
+
1038 # elif (GLM_ARCH & GLM_ARCH_AVX_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1039 # pragma message("GLM: x86 64 bits with AVX instruction set build target")
+
1040 # elif (GLM_ARCH & GLM_ARCH_AVX_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1041 # pragma message("GLM: x86 32 bits with AVX instruction set build target")
+
1042 
+
1043 # elif (GLM_ARCH & GLM_ARCH_SSE42_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1044 # pragma message("GLM: x86 64 bits with SSE4.2 instruction set build target")
+
1045 # elif (GLM_ARCH & GLM_ARCH_SSE42_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1046 # pragma message("GLM: x86 32 bits with SSE4.2 instruction set build target")
+
1047 
+
1048 # elif (GLM_ARCH & GLM_ARCH_SSE41_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1049 # pragma message("GLM: x86 64 bits with SSE4.1 instruction set build target")
+
1050 # elif (GLM_ARCH & GLM_ARCH_SSE41_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1051 # pragma message("GLM: x86 32 bits with SSE4.1 instruction set build target")
+
1052 
+
1053 # elif (GLM_ARCH & GLM_ARCH_SSSE3_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1054 # pragma message("GLM: x86 64 bits with SSSE3 instruction set build target")
+
1055 # elif (GLM_ARCH & GLM_ARCH_SSSE3_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1056 # pragma message("GLM: x86 32 bits with SSSE3 instruction set build target")
+
1057 
+
1058 # elif (GLM_ARCH & GLM_ARCH_SSE3_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1059 # pragma message("GLM: x86 64 bits with SSE3 instruction set build target")
+
1060 # elif (GLM_ARCH & GLM_ARCH_SSE3_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1061 # pragma message("GLM: x86 32 bits with SSE3 instruction set build target")
+
1062 
+
1063 # elif (GLM_ARCH & GLM_ARCH_SSE2_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1064 # pragma message("GLM: x86 64 bits with SSE2 instruction set build target")
+
1065 # elif (GLM_ARCH & GLM_ARCH_SSE2_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1066 # pragma message("GLM: x86 32 bits with SSE2 instruction set build target")
+
1067 
+
1068 # elif (GLM_ARCH & GLM_ARCH_X86_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1069 # pragma message("GLM: x86 64 bits build target")
+
1070 # elif (GLM_ARCH & GLM_ARCH_X86_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1071 # pragma message("GLM: x86 32 bits build target")
+
1072 
+
1073 # elif (GLM_ARCH & GLM_ARCH_NEON_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1074 # pragma message("GLM: ARM 64 bits with Neon instruction set build target")
+
1075 # elif (GLM_ARCH & GLM_ARCH_NEON_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1076 # pragma message("GLM: ARM 32 bits with Neon instruction set build target")
+
1077 
+
1078 # elif (GLM_ARCH & GLM_ARCH_ARM_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1079 # pragma message("GLM: ARM 64 bits build target")
+
1080 # elif (GLM_ARCH & GLM_ARCH_ARM_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1081 # pragma message("GLM: ARM 32 bits build target")
+
1082 
+
1083 # elif (GLM_ARCH & GLM_ARCH_MIPS_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1084 # pragma message("GLM: MIPS 64 bits build target")
+
1085 # elif (GLM_ARCH & GLM_ARCH_MIPS_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1086 # pragma message("GLM: MIPS 32 bits build target")
+
1087 
+
1088 # elif (GLM_ARCH & GLM_ARCH_PPC_BIT) && (GLM_MODEL == GLM_MODEL_64)
+
1089 # pragma message("GLM: PowerPC 64 bits build target")
+
1090 # elif (GLM_ARCH & GLM_ARCH_PPC_BIT) && (GLM_MODEL == GLM_MODEL_32)
+
1091 # pragma message("GLM: PowerPC 32 bits build target")
+
1092 # else
+
1093 # pragma message("GLM: Unknown build target")
+
1094 # endif//GLM_ARCH
+
1095 
+
1096  // Report platform name
+
1097 # if(GLM_PLATFORM & GLM_PLATFORM_QNXNTO)
+
1098 # pragma message("GLM: QNX platform detected")
+
1099 //# elif(GLM_PLATFORM & GLM_PLATFORM_IOS)
+
1100 //# pragma message("GLM: iOS platform detected")
+
1101 # elif(GLM_PLATFORM & GLM_PLATFORM_APPLE)
+
1102 # pragma message("GLM: Apple platform detected")
+
1103 # elif(GLM_PLATFORM & GLM_PLATFORM_WINCE)
+
1104 # pragma message("GLM: WinCE platform detected")
+
1105 # elif(GLM_PLATFORM & GLM_PLATFORM_WINDOWS)
+
1106 # pragma message("GLM: Windows platform detected")
+
1107 # elif(GLM_PLATFORM & GLM_PLATFORM_CHROME_NACL)
+
1108 # pragma message("GLM: Native Client detected")
+
1109 # elif(GLM_PLATFORM & GLM_PLATFORM_ANDROID)
+
1110 # pragma message("GLM: Android platform detected")
+
1111 # elif(GLM_PLATFORM & GLM_PLATFORM_LINUX)
+
1112 # pragma message("GLM: Linux platform detected")
+
1113 # elif(GLM_PLATFORM & GLM_PLATFORM_UNIX)
+
1114 # pragma message("GLM: UNIX platform detected")
+
1115 # elif(GLM_PLATFORM & GLM_PLATFORM_UNKNOWN)
+
1116 # pragma message("GLM: platform unknown")
+
1117 # else
+
1118 # pragma message("GLM: platform not detected")
+
1119 # endif
+
1120 
+
1121  // Report whether only xyzw component are used
+
1122 # if defined GLM_FORCE_XYZW_ONLY
+
1123 # pragma message("GLM: GLM_FORCE_XYZW_ONLY is defined. Only x, y, z and w component are available in vector type. This define disables swizzle operators and SIMD instruction sets.")
+
1124 # endif
+
1125 
+
1126  // Report swizzle operator support
+
1127 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
1128 # pragma message("GLM: GLM_FORCE_SWIZZLE is defined, swizzling operators enabled.")
+
1129 # elif GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
1130 # pragma message("GLM: GLM_FORCE_SWIZZLE is defined, swizzling functions enabled. Enable compiler C++ language extensions to enable swizzle operators.")
+
1131 # else
+
1132 # pragma message("GLM: GLM_FORCE_SWIZZLE is undefined. swizzling functions or operators are disabled.")
+
1133 # endif
+
1134 
+
1135  // Report .length() type
+
1136 # if GLM_CONFIG_LENGTH_TYPE == GLM_LENGTH_SIZE_T
+
1137 # pragma message("GLM: GLM_FORCE_SIZE_T_LENGTH is defined. .length() returns a glm::length_t, a typedef of std::size_t.")
+
1138 # else
+
1139 # pragma message("GLM: GLM_FORCE_SIZE_T_LENGTH is undefined. .length() returns a glm::length_t, a typedef of int following GLSL.")
+
1140 # endif
+
1141 
+
1142 # if GLM_CONFIG_UNRESTRICTED_GENTYPE == GLM_ENABLE
+
1143 # pragma message("GLM: GLM_FORCE_UNRESTRICTED_GENTYPE is defined. Removes GLSL restrictions on valid function genTypes.")
+
1144 # else
+
1145 # pragma message("GLM: GLM_FORCE_UNRESTRICTED_GENTYPE is undefined. Follows strictly GLSL on valid function genTypes.")
+
1146 # endif
+
1147 
+
1148 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
1149 # pragma message("GLM: GLM_FORCE_SILENT_WARNINGS is defined. Ignores C++ warnings from using C++ language extensions.")
+
1150 # else
+
1151 # pragma message("GLM: GLM_FORCE_SILENT_WARNINGS is undefined. Shows C++ warnings from using C++ language extensions.")
+
1152 # endif
+
1153 
+
1154 # ifdef GLM_FORCE_SINGLE_ONLY
+
1155 # pragma message("GLM: GLM_FORCE_SINGLE_ONLY is defined. Using only single precision floating-point types.")
+
1156 # endif
+
1157 
+
1158 # if defined(GLM_FORCE_ALIGNED_GENTYPES) && (GLM_CONFIG_ALIGNED_GENTYPES == GLM_ENABLE)
+
1159 # undef GLM_FORCE_ALIGNED_GENTYPES
+
1160 # pragma message("GLM: GLM_FORCE_ALIGNED_GENTYPES is defined, allowing aligned types. This prevents the use of C++ constexpr.")
+
1161 # elif defined(GLM_FORCE_ALIGNED_GENTYPES) && (GLM_CONFIG_ALIGNED_GENTYPES == GLM_DISABLE)
+
1162 # undef GLM_FORCE_ALIGNED_GENTYPES
+
1163 # pragma message("GLM: GLM_FORCE_ALIGNED_GENTYPES is defined but is disabled. It requires C++11 and language extensions.")
+
1164 # endif
+
1165 
+
1166 # if defined(GLM_FORCE_DEFAULT_ALIGNED_GENTYPES)
+
1167 # if GLM_CONFIG_ALIGNED_GENTYPES == GLM_DISABLE
+
1168 # undef GLM_FORCE_DEFAULT_ALIGNED_GENTYPES
+
1169 # pragma message("GLM: GLM_FORCE_DEFAULT_ALIGNED_GENTYPES is defined but is disabled. It requires C++11 and language extensions.")
+
1170 # elif GLM_CONFIG_ALIGNED_GENTYPES == GLM_ENABLE
+
1171 # pragma message("GLM: GLM_FORCE_DEFAULT_ALIGNED_GENTYPES is defined. All gentypes (e.g. vec3) will be aligned and padded by default.")
+
1172 # endif
+
1173 # endif
+
1174 
+
1175 # if GLM_CONFIG_CLIP_CONTROL & GLM_CLIP_CONTROL_ZO_BIT
+
1176 # pragma message("GLM: GLM_FORCE_DEPTH_ZERO_TO_ONE is defined. Using zero to one depth clip space.")
+
1177 # else
+
1178 # pragma message("GLM: GLM_FORCE_DEPTH_ZERO_TO_ONE is undefined. Using negative one to one depth clip space.")
+
1179 # endif
+
1180 
+
1181 # if GLM_CONFIG_CLIP_CONTROL & GLM_CLIP_CONTROL_LH_BIT
+
1182 # pragma message("GLM: GLM_FORCE_LEFT_HANDED is defined. Using left handed coordinate system.")
+
1183 # else
+
1184 # pragma message("GLM: GLM_FORCE_LEFT_HANDED is undefined. Using right handed coordinate system.")
+
1185 # endif
+
1186 #endif//GLM_MESSAGES
+
1187 
+
1188 #endif//GLM_SETUP_INCLUDED
+
+
uint64 uint64_t
Default qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:145
+
detail::uint64 uint64
64 bit unsigned integer type.
+
int64 int64_t
64 bit signed integer type.
Definition: fwd.hpp:85
+
detail::int64 int64
64 bit signed integer type.
+ + + + diff --git a/include/glm/doc/api/a00038_source.html b/include/glm/doc/api/a00038_source.html new file mode 100644 index 0000000..03fd4e7 --- /dev/null +++ b/include/glm/doc/api/a00038_source.html @@ -0,0 +1,150 @@ + + + + + + + +1.0.2 API documentation: type_float.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_float.hpp
+
+
+
1 #pragma once
+
2 
+
3 #include "setup.hpp"
+
4 
+
5 #if GLM_COMPILER == GLM_COMPILER_VC12
+
6 # pragma warning(push)
+
7 # pragma warning(disable: 4512) // assignment operator could not be generated
+
8 #endif
+
9 
+
10 namespace glm{
+
11 namespace detail
+
12 {
+
13  template <typename T>
+
14  union float_t
+
15  {};
+
16 
+
17  // https://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/
+
18  template <>
+
19  union float_t<float>
+
20  {
+
21  typedef int int_type;
+
22  typedef float float_type;
+
23 
+
24  GLM_CONSTEXPR float_t(float_type Num = 0.0f) : f(Num) {}
+
25 
+
26  GLM_CONSTEXPR float_t& operator=(float_t const& x)
+
27  {
+
28  f = x.f;
+
29  return *this;
+
30  }
+
31 
+
32  // Portable extraction of components.
+
33  GLM_CONSTEXPR bool negative() const { return i < 0; }
+
34  GLM_CONSTEXPR int_type mantissa() const { return i & ((1 << 23) - 1); }
+
35  GLM_CONSTEXPR int_type exponent() const { return (i >> 23) & ((1 << 8) - 1); }
+
36 
+
37  int_type i;
+
38  float_type f;
+
39  };
+
40 
+
41  template <>
+
42  union float_t<double>
+
43  {
+
44  typedef detail::int64 int_type;
+
45  typedef double float_type;
+
46 
+
47  GLM_CONSTEXPR float_t(float_type Num = static_cast<float_type>(0)) : f(Num) {}
+
48 
+
49  GLM_CONSTEXPR float_t& operator=(float_t const& x)
+
50  {
+
51  f = x.f;
+
52  return *this;
+
53  }
+
54 
+
55  // Portable extraction of components.
+
56  GLM_CONSTEXPR bool negative() const { return i < 0; }
+
57  GLM_CONSTEXPR int_type mantissa() const { return i & ((int_type(1) << 52) - 1); }
+
58  GLM_CONSTEXPR int_type exponent() const { return (i >> 52) & ((int_type(1) << 11) - 1); }
+
59 
+
60  int_type i;
+
61  float_type f;
+
62  };
+
63 }//namespace detail
+
64 }//namespace glm
+
65 
+
66 #if GLM_COMPILER == GLM_COMPILER_VC12
+
67 # pragma warning(pop)
+
68 #endif
+
+
detail::int64 int64
64 bit signed integer type.
+ + + + diff --git a/include/glm/doc/api/a00041_source.html b/include/glm/doc/api/a00041_source.html new file mode 100644 index 0000000..1ed394b --- /dev/null +++ b/include/glm/doc/api/a00041_source.html @@ -0,0 +1,97 @@ + + + + + + + +1.0.2 API documentation: type_half.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_half.hpp
+
+
+
1 #pragma once
+
2 
+
3 #include "setup.hpp"
+
4 
+
5 namespace glm{
+
6 namespace detail
+
7 {
+
8  typedef short hdata;
+
9 
+
10  GLM_FUNC_DECL float toFloat32(hdata value);
+
11  GLM_FUNC_DECL hdata toFloat16(float const& value);
+
12 
+
13 }//namespace detail
+
14 }//namespace glm
+
15 
+
16 #include "type_half.inl"
+
+ + + + diff --git a/include/glm/doc/api/a00044.html b/include/glm/doc/api/a00044.html new file mode 100644 index 0000000..24da58f --- /dev/null +++ b/include/glm/doc/api/a00044.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_mat2x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat2x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_mat2x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00044_source.html b/include/glm/doc/api/a00044_source.html new file mode 100644 index 0000000..26b4c16 --- /dev/null +++ b/include/glm/doc/api/a00044_source.html @@ -0,0 +1,258 @@ + + + + + + + +1.0.2 API documentation: type_mat2x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat2x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "type_vec2.hpp"
+
7 #include <limits>
+
8 #include <cstddef>
+
9 
+
10 namespace glm
+
11 {
+
12  template<typename T, qualifier Q>
+
13  struct mat<2, 2, T, Q>
+
14  {
+
15  typedef vec<2, T, Q> col_type;
+
16  typedef vec<2, T, Q> row_type;
+
17  typedef mat<2, 2, T, Q> type;
+
18  typedef mat<2, 2, T, Q> transpose_type;
+
19  typedef T value_type;
+
20 
+
21  private:
+
22  col_type value[2];
+
23 
+
24  public:
+
25  // -- Accesses --
+
26 
+
27  typedef length_t length_type;
+
28  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length() { return 2; }
+
29 
+
30  GLM_FUNC_DECL GLM_CONSTEXPR col_type & operator[](length_type i) GLM_NOEXCEPT;
+
31  GLM_FUNC_DECL GLM_CONSTEXPR col_type const& operator[](length_type i) const GLM_NOEXCEPT;
+
32 
+
33  // -- Constructors --
+
34 
+
35  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR mat() GLM_DEFAULT_CTOR;
+
36  template<qualifier P>
+
37  GLM_CTOR_DECL mat(mat<2, 2, T, P> const& m);
+
38 
+
39  GLM_CTOR_DECL GLM_EXPLICIT mat(T scalar);
+
40  GLM_CTOR_DECL mat(
+
41  T const& x1, T const& y1,
+
42  T const& x2, T const& y2);
+
43  GLM_CTOR_DECL mat(
+
44  col_type const& v1,
+
45  col_type const& v2);
+
46 
+
47  // -- Conversions --
+
48 
+
49  template<typename U, typename V, typename M, typename N>
+
50  GLM_CTOR_DECL mat(
+
51  U const& x1, V const& y1,
+
52  M const& x2, N const& y2);
+
53 
+
54  template<typename U, typename V>
+
55  GLM_CTOR_DECL mat(
+
56  vec<2, U, Q> const& v1,
+
57  vec<2, V, Q> const& v2);
+
58 
+
59  // -- Matrix conversions --
+
60 
+
61  template<typename U, qualifier P>
+
62  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 2, U, P> const& m);
+
63 
+
64  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 3, T, Q> const& x);
+
65  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 4, T, Q> const& x);
+
66  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 3, T, Q> const& x);
+
67  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 2, T, Q> const& x);
+
68  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 4, T, Q> const& x);
+
69  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 2, T, Q> const& x);
+
70  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 4, T, Q> const& x);
+
71  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 3, T, Q> const& x);
+
72 
+
73  // -- Unary arithmetic operators --
+
74 
+
75  template<typename U>
+
76  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator=(mat<2, 2, U, Q> const& m);
+
77  template<typename U>
+
78  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator+=(U s);
+
79  template<typename U>
+
80  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator+=(mat<2, 2, U, Q> const& m);
+
81  template<typename U>
+
82  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator-=(U s);
+
83  template<typename U>
+
84  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator-=(mat<2, 2, U, Q> const& m);
+
85  template<typename U>
+
86  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator*=(U s);
+
87  template<typename U>
+
88  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator*=(mat<2, 2, U, Q> const& m);
+
89  template<typename U>
+
90  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator/=(U s);
+
91  template<typename U>
+
92  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator/=(mat<2, 2, U, Q> const& m);
+
93 
+
94  // -- Increment and decrement operators --
+
95 
+
96  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator++ ();
+
97  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 2, T, Q> & operator-- ();
+
98  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator++(int);
+
99  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator--(int);
+
100  };
+
101 
+
102  // -- Unary operators --
+
103 
+
104  template<typename T, qualifier Q>
+
105  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator+(mat<2, 2, T, Q> const& m);
+
106 
+
107  template<typename T, qualifier Q>
+
108  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator-(mat<2, 2, T, Q> const& m);
+
109 
+
110  // -- Binary operators --
+
111 
+
112  template<typename T, qualifier Q>
+
113  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator+(mat<2, 2, T, Q> const& m, T scalar);
+
114 
+
115  template<typename T, qualifier Q>
+
116  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator+(T scalar, mat<2, 2, T, Q> const& m);
+
117 
+
118  template<typename T, qualifier Q>
+
119  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator+(mat<2, 2, T, Q> const& m1, mat<2, 2, T, Q> const& m2);
+
120 
+
121  template<typename T, qualifier Q>
+
122  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator-(mat<2, 2, T, Q> const& m, T scalar);
+
123 
+
124  template<typename T, qualifier Q>
+
125  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator-(T scalar, mat<2, 2, T, Q> const& m);
+
126 
+
127  template<typename T, qualifier Q>
+
128  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator-(mat<2, 2, T, Q> const& m1, mat<2, 2, T, Q> const& m2);
+
129 
+
130  template<typename T, qualifier Q>
+
131  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator*(mat<2, 2, T, Q> const& m, T scalar);
+
132 
+
133  template<typename T, qualifier Q>
+
134  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator*(T scalar, mat<2, 2, T, Q> const& m);
+
135 
+
136  template<typename T, qualifier Q>
+
137  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<2, 2, T, Q>::col_type operator*(mat<2, 2, T, Q> const& m, typename mat<2, 2, T, Q>::row_type const& v);
+
138 
+
139  template<typename T, qualifier Q>
+
140  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<2, 2, T, Q>::row_type operator*(typename mat<2, 2, T, Q>::col_type const& v, mat<2, 2, T, Q> const& m);
+
141 
+
142  template<typename T, qualifier Q>
+
143  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator*(mat<2, 2, T, Q> const& m1, mat<2, 2, T, Q> const& m2);
+
144 
+
145  template<typename T, qualifier Q>
+
146  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator*(mat<2, 2, T, Q> const& m1, mat<3, 2, T, Q> const& m2);
+
147 
+
148  template<typename T, qualifier Q>
+
149  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator*(mat<2, 2, T, Q> const& m1, mat<4, 2, T, Q> const& m2);
+
150 
+
151  template<typename T, qualifier Q>
+
152  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator/(mat<2, 2, T, Q> const& m, T scalar);
+
153 
+
154  template<typename T, qualifier Q>
+
155  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator/(T scalar, mat<2, 2, T, Q> const& m);
+
156 
+
157  template<typename T, qualifier Q>
+
158  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<2, 2, T, Q>::col_type operator/(mat<2, 2, T, Q> const& m, typename mat<2, 2, T, Q>::row_type const& v);
+
159 
+
160  template<typename T, qualifier Q>
+
161  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<2, 2, T, Q>::row_type operator/(typename mat<2, 2, T, Q>::col_type const& v, mat<2, 2, T, Q> const& m);
+
162 
+
163  template<typename T, qualifier Q>
+
164  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator/(mat<2, 2, T, Q> const& m1, mat<2, 2, T, Q> const& m2);
+
165 
+
166  // -- Boolean operators --
+
167 
+
168  template<typename T, qualifier Q>
+
169  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(mat<2, 2, T, Q> const& m1, mat<2, 2, T, Q> const& m2);
+
170 
+
171  template<typename T, qualifier Q>
+
172  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(mat<2, 2, T, Q> const& m1, mat<2, 2, T, Q> const& m2);
+
173 } //namespace glm
+
174 
+
175 #ifndef GLM_EXTERNAL_TEMPLATE
+
176 #include "type_mat2x2.inl"
+
177 #endif
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00047.html b/include/glm/doc/api/a00047.html new file mode 100644 index 0000000..4253500 --- /dev/null +++ b/include/glm/doc/api/a00047.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_mat2x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat2x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_mat2x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00047_source.html b/include/glm/doc/api/a00047_source.html new file mode 100644 index 0000000..3a30ec3 --- /dev/null +++ b/include/glm/doc/api/a00047_source.html @@ -0,0 +1,241 @@ + + + + + + + +1.0.2 API documentation: type_mat2x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat2x3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "type_vec2.hpp"
+
7 #include "type_vec3.hpp"
+
8 #include <limits>
+
9 #include <cstddef>
+
10 
+
11 namespace glm
+
12 {
+
13  template<typename T, qualifier Q>
+
14  struct mat<2, 3, T, Q>
+
15  {
+
16  typedef vec<3, T, Q> col_type;
+
17  typedef vec<2, T, Q> row_type;
+
18  typedef mat<2, 3, T, Q> type;
+
19  typedef mat<3, 2, T, Q> transpose_type;
+
20  typedef T value_type;
+
21 
+
22  private:
+
23  col_type value[2];
+
24 
+
25  public:
+
26  // -- Accesses --
+
27 
+
28  typedef length_t length_type;
+
29  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length() { return 2; }
+
30 
+
31  GLM_FUNC_DECL GLM_CONSTEXPR col_type & operator[](length_type i) GLM_NOEXCEPT;
+
32  GLM_FUNC_DECL GLM_CONSTEXPR col_type const& operator[](length_type i) const GLM_NOEXCEPT;
+
33 
+
34  // -- Constructors --
+
35 
+
36  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR mat() GLM_DEFAULT_CTOR;
+
37  template<qualifier P>
+
38  GLM_CTOR_DECL mat(mat<2, 3, T, P> const& m);
+
39 
+
40  GLM_CTOR_DECL GLM_EXPLICIT mat(T scalar);
+
41  GLM_CTOR_DECL mat(
+
42  T x0, T y0, T z0,
+
43  T x1, T y1, T z1);
+
44  GLM_CTOR_DECL mat(
+
45  col_type const& v0,
+
46  col_type const& v1);
+
47 
+
48  // -- Conversions --
+
49 
+
50  template<typename X1, typename Y1, typename Z1, typename X2, typename Y2, typename Z2>
+
51  GLM_CTOR_DECL mat(
+
52  X1 x1, Y1 y1, Z1 z1,
+
53  X2 x2, Y2 y2, Z2 z2);
+
54 
+
55  template<typename U, typename V>
+
56  GLM_CTOR_DECL mat(
+
57  vec<3, U, Q> const& v1,
+
58  vec<3, V, Q> const& v2);
+
59 
+
60  // -- Matrix conversions --
+
61 
+
62  template<typename U, qualifier P>
+
63  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 3, U, P> const& m);
+
64 
+
65  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 2, T, Q> const& x);
+
66  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 3, T, Q> const& x);
+
67  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 4, T, Q> const& x);
+
68  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 4, T, Q> const& x);
+
69  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 2, T, Q> const& x);
+
70  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 4, T, Q> const& x);
+
71  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 2, T, Q> const& x);
+
72  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 3, T, Q> const& x);
+
73 
+
74  // -- Unary arithmetic operators --
+
75 
+
76  template<typename U>
+
77  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 3, T, Q> & operator=(mat<2, 3, U, Q> const& m);
+
78  template<typename U>
+
79  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 3, T, Q> & operator+=(U s);
+
80  template<typename U>
+
81  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 3, T, Q> & operator+=(mat<2, 3, U, Q> const& m);
+
82  template<typename U>
+
83  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 3, T, Q> & operator-=(U s);
+
84  template<typename U>
+
85  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 3, T, Q> & operator-=(mat<2, 3, U, Q> const& m);
+
86  template<typename U>
+
87  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 3, T, Q> & operator*=(U s);
+
88  template<typename U>
+
89  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 3, T, Q> & operator/=(U s);
+
90 
+
91  // -- Increment and decrement operators --
+
92 
+
93  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 3, T, Q> & operator++ ();
+
94  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 3, T, Q> & operator-- ();
+
95  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator++(int);
+
96  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator--(int);
+
97  };
+
98 
+
99  // -- Unary operators --
+
100 
+
101  template<typename T, qualifier Q>
+
102  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator+(mat<2, 3, T, Q> const& m);
+
103 
+
104  template<typename T, qualifier Q>
+
105  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator-(mat<2, 3, T, Q> const& m);
+
106 
+
107  // -- Binary operators --
+
108 
+
109  template<typename T, qualifier Q>
+
110  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator+(mat<2, 3, T, Q> const& m, T scalar);
+
111 
+
112  template<typename T, qualifier Q>
+
113  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator+(mat<2, 3, T, Q> const& m1, mat<2, 3, T, Q> const& m2);
+
114 
+
115  template<typename T, qualifier Q>
+
116  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator-(mat<2, 3, T, Q> const& m, T scalar);
+
117 
+
118  template<typename T, qualifier Q>
+
119  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator-(mat<2, 3, T, Q> const& m1, mat<2, 3, T, Q> const& m2);
+
120 
+
121  template<typename T, qualifier Q>
+
122  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator*(mat<2, 3, T, Q> const& m, T scalar);
+
123 
+
124  template<typename T, qualifier Q>
+
125  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator*(T scalar, mat<2, 3, T, Q> const& m);
+
126 
+
127  template<typename T, qualifier Q>
+
128  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<2, 3, T, Q>::col_type operator*(mat<2, 3, T, Q> const& m, typename mat<2, 3, T, Q>::row_type const& v);
+
129 
+
130  template<typename T, qualifier Q>
+
131  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<2, 3, T, Q>::row_type operator*(typename mat<2, 3, T, Q>::col_type const& v, mat<2, 3, T, Q> const& m);
+
132 
+
133  template<typename T, qualifier Q>
+
134  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator*(mat<2, 3, T, Q> const& m1, mat<2, 2, T, Q> const& m2);
+
135 
+
136  template<typename T, qualifier Q>
+
137  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator*(mat<2, 3, T, Q> const& m1, mat<3, 2, T, Q> const& m2);
+
138 
+
139  template<typename T, qualifier Q>
+
140  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator*(mat<2, 3, T, Q> const& m1, mat<4, 2, T, Q> const& m2);
+
141 
+
142  template<typename T, qualifier Q>
+
143  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator/(mat<2, 3, T, Q> const& m, T scalar);
+
144 
+
145  template<typename T, qualifier Q>
+
146  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator/(T scalar, mat<2, 3, T, Q> const& m);
+
147 
+
148  // -- Boolean operators --
+
149 
+
150  template<typename T, qualifier Q>
+
151  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(mat<2, 3, T, Q> const& m1, mat<2, 3, T, Q> const& m2);
+
152 
+
153  template<typename T, qualifier Q>
+
154  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(mat<2, 3, T, Q> const& m1, mat<2, 3, T, Q> const& m2);
+
155 }//namespace glm
+
156 
+
157 #ifndef GLM_EXTERNAL_TEMPLATE
+
158 #include "type_mat2x3.inl"
+
159 #endif
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
Core features
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00050.html b/include/glm/doc/api/a00050.html new file mode 100644 index 0000000..651afe0 --- /dev/null +++ b/include/glm/doc/api/a00050.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_mat2x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat2x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_mat2x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00050_source.html b/include/glm/doc/api/a00050_source.html new file mode 100644 index 0000000..de72ac1 --- /dev/null +++ b/include/glm/doc/api/a00050_source.html @@ -0,0 +1,243 @@ + + + + + + + +1.0.2 API documentation: type_mat2x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat2x4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "type_vec2.hpp"
+
7 #include "type_vec4.hpp"
+
8 #include <limits>
+
9 #include <cstddef>
+
10 
+
11 namespace glm
+
12 {
+
13  template<typename T, qualifier Q>
+
14  struct mat<2, 4, T, Q>
+
15  {
+
16  typedef vec<4, T, Q> col_type;
+
17  typedef vec<2, T, Q> row_type;
+
18  typedef mat<2, 4, T, Q> type;
+
19  typedef mat<4, 2, T, Q> transpose_type;
+
20  typedef T value_type;
+
21 
+
22  private:
+
23  col_type value[2];
+
24 
+
25  public:
+
26  // -- Accesses --
+
27 
+
28  typedef length_t length_type;
+
29  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length() { return 2; }
+
30 
+
31  GLM_FUNC_DECL GLM_CONSTEXPR col_type & operator[](length_type i) GLM_NOEXCEPT;
+
32  GLM_FUNC_DECL GLM_CONSTEXPR col_type const& operator[](length_type i) const GLM_NOEXCEPT;
+
33 
+
34  // -- Constructors --
+
35 
+
36  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR mat() GLM_DEFAULT_CTOR;
+
37  template<qualifier P>
+
38  GLM_CTOR_DECL mat(mat<2, 4, T, P> const& m);
+
39 
+
40  GLM_CTOR_DECL GLM_EXPLICIT mat(T scalar);
+
41  GLM_CTOR_DECL mat(
+
42  T x0, T y0, T z0, T w0,
+
43  T x1, T y1, T z1, T w1);
+
44  GLM_CTOR_DECL mat(
+
45  col_type const& v0,
+
46  col_type const& v1);
+
47 
+
48  // -- Conversions --
+
49 
+
50  template<
+
51  typename X1, typename Y1, typename Z1, typename W1,
+
52  typename X2, typename Y2, typename Z2, typename W2>
+
53  GLM_CTOR_DECL mat(
+
54  X1 x1, Y1 y1, Z1 z1, W1 w1,
+
55  X2 x2, Y2 y2, Z2 z2, W2 w2);
+
56 
+
57  template<typename U, typename V>
+
58  GLM_CTOR_DECL mat(
+
59  vec<4, U, Q> const& v1,
+
60  vec<4, V, Q> const& v2);
+
61 
+
62  // -- Matrix conversions --
+
63 
+
64  template<typename U, qualifier P>
+
65  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 4, U, P> const& m);
+
66 
+
67  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 2, T, Q> const& x);
+
68  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 3, T, Q> const& x);
+
69  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 4, T, Q> const& x);
+
70  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 3, T, Q> const& x);
+
71  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 2, T, Q> const& x);
+
72  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 4, T, Q> const& x);
+
73  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 2, T, Q> const& x);
+
74  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 3, T, Q> const& x);
+
75 
+
76  // -- Unary arithmetic operators --
+
77 
+
78  template<typename U>
+
79  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 4, T, Q> & operator=(mat<2, 4, U, Q> const& m);
+
80  template<typename U>
+
81  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 4, T, Q> & operator+=(U s);
+
82  template<typename U>
+
83  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 4, T, Q> & operator+=(mat<2, 4, U, Q> const& m);
+
84  template<typename U>
+
85  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 4, T, Q> & operator-=(U s);
+
86  template<typename U>
+
87  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 4, T, Q> & operator-=(mat<2, 4, U, Q> const& m);
+
88  template<typename U>
+
89  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 4, T, Q> & operator*=(U s);
+
90  template<typename U>
+
91  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 4, T, Q> & operator/=(U s);
+
92 
+
93  // -- Increment and decrement operators --
+
94 
+
95  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 4, T, Q> & operator++ ();
+
96  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<2, 4, T, Q> & operator-- ();
+
97  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator++(int);
+
98  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator--(int);
+
99  };
+
100 
+
101  // -- Unary operators --
+
102 
+
103  template<typename T, qualifier Q>
+
104  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator+(mat<2, 4, T, Q> const& m);
+
105 
+
106  template<typename T, qualifier Q>
+
107  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator-(mat<2, 4, T, Q> const& m);
+
108 
+
109  // -- Binary operators --
+
110 
+
111  template<typename T, qualifier Q>
+
112  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator+(mat<2, 4, T, Q> const& m, T scalar);
+
113 
+
114  template<typename T, qualifier Q>
+
115  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator+(mat<2, 4, T, Q> const& m1, mat<2, 4, T, Q> const& m2);
+
116 
+
117  template<typename T, qualifier Q>
+
118  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator-(mat<2, 4, T, Q> const& m, T scalar);
+
119 
+
120  template<typename T, qualifier Q>
+
121  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator-(mat<2, 4, T, Q> const& m1, mat<2, 4, T, Q> const& m2);
+
122 
+
123  template<typename T, qualifier Q>
+
124  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator*(mat<2, 4, T, Q> const& m, T scalar);
+
125 
+
126  template<typename T, qualifier Q>
+
127  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator*(T scalar, mat<2, 4, T, Q> const& m);
+
128 
+
129  template<typename T, qualifier Q>
+
130  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<2, 4, T, Q>::col_type operator*(mat<2, 4, T, Q> const& m, typename mat<2, 4, T, Q>::row_type const& v);
+
131 
+
132  template<typename T, qualifier Q>
+
133  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<2, 4, T, Q>::row_type operator*(typename mat<2, 4, T, Q>::col_type const& v, mat<2, 4, T, Q> const& m);
+
134 
+
135  template<typename T, qualifier Q>
+
136  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator*(mat<2, 4, T, Q> const& m1, mat<4, 2, T, Q> const& m2);
+
137 
+
138  template<typename T, qualifier Q>
+
139  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator*(mat<2, 4, T, Q> const& m1, mat<2, 2, T, Q> const& m2);
+
140 
+
141  template<typename T, qualifier Q>
+
142  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator*(mat<2, 4, T, Q> const& m1, mat<3, 2, T, Q> const& m2);
+
143 
+
144  template<typename T, qualifier Q>
+
145  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator/(mat<2, 4, T, Q> const& m, T scalar);
+
146 
+
147  template<typename T, qualifier Q>
+
148  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator/(T scalar, mat<2, 4, T, Q> const& m);
+
149 
+
150  // -- Boolean operators --
+
151 
+
152  template<typename T, qualifier Q>
+
153  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(mat<2, 4, T, Q> const& m1, mat<2, 4, T, Q> const& m2);
+
154 
+
155  template<typename T, qualifier Q>
+
156  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(mat<2, 4, T, Q> const& m1, mat<2, 4, T, Q> const& m2);
+
157 }//namespace glm
+
158 
+
159 #ifndef GLM_EXTERNAL_TEMPLATE
+
160 #include "type_mat2x4.inl"
+
161 #endif
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
Core features
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00053.html b/include/glm/doc/api/a00053.html new file mode 100644 index 0000000..e335a1d --- /dev/null +++ b/include/glm/doc/api/a00053.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_mat3x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat3x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_mat3x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00053_source.html b/include/glm/doc/api/a00053_source.html new file mode 100644 index 0000000..62231fb --- /dev/null +++ b/include/glm/doc/api/a00053_source.html @@ -0,0 +1,249 @@ + + + + + + + +1.0.2 API documentation: type_mat3x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat3x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "type_vec2.hpp"
+
7 #include "type_vec3.hpp"
+
8 #include <limits>
+
9 #include <cstddef>
+
10 
+
11 namespace glm
+
12 {
+
13  template<typename T, qualifier Q>
+
14  struct mat<3, 2, T, Q>
+
15  {
+
16  typedef vec<2, T, Q> col_type;
+
17  typedef vec<3, T, Q> row_type;
+
18  typedef mat<3, 2, T, Q> type;
+
19  typedef mat<2, 3, T, Q> transpose_type;
+
20  typedef T value_type;
+
21 
+
22  private:
+
23  col_type value[3];
+
24 
+
25  public:
+
26  // -- Accesses --
+
27 
+
28  typedef length_t length_type;
+
29  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length() { return 3; }
+
30 
+
31  GLM_FUNC_DECL GLM_CONSTEXPR col_type & operator[](length_type i) GLM_NOEXCEPT;
+
32  GLM_FUNC_DECL GLM_CONSTEXPR col_type const& operator[](length_type i) const GLM_NOEXCEPT;
+
33 
+
34  // -- Constructors --
+
35 
+
36  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR mat() GLM_DEFAULT_CTOR;
+
37  template<qualifier P>
+
38  GLM_CTOR_DECL mat(mat<3, 2, T, P> const& m);
+
39 
+
40  GLM_CTOR_DECL GLM_EXPLICIT mat(T scalar);
+
41  GLM_CTOR_DECL mat(
+
42  T x0, T y0,
+
43  T x1, T y1,
+
44  T x2, T y2);
+
45  GLM_CTOR_DECL mat(
+
46  col_type const& v0,
+
47  col_type const& v1,
+
48  col_type const& v2);
+
49 
+
50  // -- Conversions --
+
51 
+
52  template<
+
53  typename X1, typename Y1,
+
54  typename X2, typename Y2,
+
55  typename X3, typename Y3>
+
56  GLM_CTOR_DECL mat(
+
57  X1 x1, Y1 y1,
+
58  X2 x2, Y2 y2,
+
59  X3 x3, Y3 y3);
+
60 
+
61  template<typename V1, typename V2, typename V3>
+
62  GLM_CTOR_DECL mat(
+
63  vec<2, V1, Q> const& v1,
+
64  vec<2, V2, Q> const& v2,
+
65  vec<2, V3, Q> const& v3);
+
66 
+
67  // -- Matrix conversions --
+
68 
+
69  template<typename U, qualifier P>
+
70  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 2, U, P> const& m);
+
71 
+
72  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 2, T, Q> const& x);
+
73  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 3, T, Q> const& x);
+
74  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 4, T, Q> const& x);
+
75  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 3, T, Q> const& x);
+
76  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 4, T, Q> const& x);
+
77  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 4, T, Q> const& x);
+
78  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 2, T, Q> const& x);
+
79  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 3, T, Q> const& x);
+
80 
+
81  // -- Unary arithmetic operators --
+
82 
+
83  template<typename U>
+
84  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 2, T, Q> & operator=(mat<3, 2, U, Q> const& m);
+
85  template<typename U>
+
86  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 2, T, Q> & operator+=(U s);
+
87  template<typename U>
+
88  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 2, T, Q> & operator+=(mat<3, 2, U, Q> const& m);
+
89  template<typename U>
+
90  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 2, T, Q> & operator-=(U s);
+
91  template<typename U>
+
92  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 2, T, Q> & operator-=(mat<3, 2, U, Q> const& m);
+
93  template<typename U>
+
94  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 2, T, Q> & operator*=(U s);
+
95  template<typename U>
+
96  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 2, T, Q> & operator/=(U s);
+
97 
+
98  // -- Increment and decrement operators --
+
99 
+
100  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 2, T, Q> & operator++ ();
+
101  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 2, T, Q> & operator-- ();
+
102  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator++(int);
+
103  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator--(int);
+
104  };
+
105 
+
106  // -- Unary operators --
+
107 
+
108  template<typename T, qualifier Q>
+
109  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator+(mat<3, 2, T, Q> const& m);
+
110 
+
111  template<typename T, qualifier Q>
+
112  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator-(mat<3, 2, T, Q> const& m);
+
113 
+
114  // -- Binary operators --
+
115 
+
116  template<typename T, qualifier Q>
+
117  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator+(mat<3, 2, T, Q> const& m, T scalar);
+
118 
+
119  template<typename T, qualifier Q>
+
120  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator+(mat<3, 2, T, Q> const& m1, mat<3, 2, T, Q> const& m2);
+
121 
+
122  template<typename T, qualifier Q>
+
123  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator-(mat<3, 2, T, Q> const& m, T scalar);
+
124 
+
125  template<typename T, qualifier Q>
+
126  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator-(mat<3, 2, T, Q> const& m1, mat<3, 2, T, Q> const& m2);
+
127 
+
128  template<typename T, qualifier Q>
+
129  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator*(mat<3, 2, T, Q> const& m, T scalar);
+
130 
+
131  template<typename T, qualifier Q>
+
132  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator*(T scalar, mat<3, 2, T, Q> const& m);
+
133 
+
134  template<typename T, qualifier Q>
+
135  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<3, 2, T, Q>::col_type operator*(mat<3, 2, T, Q> const& m, typename mat<3, 2, T, Q>::row_type const& v);
+
136 
+
137  template<typename T, qualifier Q>
+
138  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<3, 2, T, Q>::row_type operator*(typename mat<3, 2, T, Q>::col_type const& v, mat<3, 2, T, Q> const& m);
+
139 
+
140  template<typename T, qualifier Q>
+
141  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator*(mat<3, 2, T, Q> const& m1, mat<2, 3, T, Q> const& m2);
+
142 
+
143  template<typename T, qualifier Q>
+
144  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator*(mat<3, 2, T, Q> const& m1, mat<3, 3, T, Q> const& m2);
+
145 
+
146  template<typename T, qualifier Q>
+
147  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator*(mat<3, 2, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
+
148 
+
149  template<typename T, qualifier Q>
+
150  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator/(mat<3, 2, T, Q> const& m, T scalar);
+
151 
+
152  template<typename T, qualifier Q>
+
153  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator/(T scalar, mat<3, 2, T, Q> const& m);
+
154 
+
155  // -- Boolean operators --
+
156 
+
157  template<typename T, qualifier Q>
+
158  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(mat<3, 2, T, Q> const& m1, mat<3, 2, T, Q> const& m2);
+
159 
+
160  template<typename T, qualifier Q>
+
161  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(mat<3, 2, T, Q> const& m1, mat<3, 2, T, Q> const& m2);
+
162 
+
163 }//namespace glm
+
164 
+
165 #ifndef GLM_EXTERNAL_TEMPLATE
+
166 #include "type_mat3x2.inl"
+
167 #endif
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
Core features
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00056.html b/include/glm/doc/api/a00056.html new file mode 100644 index 0000000..ebdaca5 --- /dev/null +++ b/include/glm/doc/api/a00056.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_mat3x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat3x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_mat3x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00056_source.html b/include/glm/doc/api/a00056_source.html new file mode 100644 index 0000000..fd3efbc --- /dev/null +++ b/include/glm/doc/api/a00056_source.html @@ -0,0 +1,265 @@ + + + + + + + +1.0.2 API documentation: type_mat3x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat3x3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "type_vec3.hpp"
+
7 #include <limits>
+
8 #include <cstddef>
+
9 
+
10 namespace glm
+
11 {
+
12  template<typename T, qualifier Q>
+
13  struct mat<3, 3, T, Q>
+
14  {
+
15  typedef vec<3, T, Q> col_type;
+
16  typedef vec<3, T, Q> row_type;
+
17  typedef mat<3, 3, T, Q> type;
+
18  typedef mat<3, 3, T, Q> transpose_type;
+
19  typedef T value_type;
+
20 
+
21  private:
+
22  col_type value[3];
+
23 
+
24  public:
+
25  // -- Accesses --
+
26 
+
27  typedef length_t length_type;
+
28  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length() { return 3; }
+
29 
+
30  GLM_FUNC_DECL GLM_CONSTEXPR col_type & operator[](length_type i) GLM_NOEXCEPT;
+
31  GLM_FUNC_DECL GLM_CONSTEXPR col_type const& operator[](length_type i) const GLM_NOEXCEPT;
+
32 
+
33  // -- Constructors --
+
34 
+
35  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR mat() GLM_DEFAULT_CTOR;
+
36  template<qualifier P>
+
37  GLM_CTOR_DECL mat(mat<3, 3, T, P> const& m);
+
38 
+
39  GLM_CTOR_DECL GLM_EXPLICIT mat(T scalar);
+
40  GLM_CTOR_DECL mat(
+
41  T x0, T y0, T z0,
+
42  T x1, T y1, T z1,
+
43  T x2, T y2, T z2);
+
44  GLM_CTOR_DECL mat(
+
45  col_type const& v0,
+
46  col_type const& v1,
+
47  col_type const& v2);
+
48 
+
49  // -- Conversions --
+
50 
+
51  template<
+
52  typename X1, typename Y1, typename Z1,
+
53  typename X2, typename Y2, typename Z2,
+
54  typename X3, typename Y3, typename Z3>
+
55  GLM_CTOR_DECL mat(
+
56  X1 x1, Y1 y1, Z1 z1,
+
57  X2 x2, Y2 y2, Z2 z2,
+
58  X3 x3, Y3 y3, Z3 z3);
+
59 
+
60  template<typename V1, typename V2, typename V3>
+
61  GLM_CTOR_DECL mat(
+
62  vec<3, V1, Q> const& v1,
+
63  vec<3, V2, Q> const& v2,
+
64  vec<3, V3, Q> const& v3);
+
65 
+
66  // -- Matrix conversions --
+
67 
+
68  template<typename U, qualifier P>
+
69  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 3, U, P> const& m);
+
70 
+
71  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 2, T, Q> const& x);
+
72  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 4, T, Q> const& x);
+
73  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 3, T, Q> const& x);
+
74  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 2, T, Q> const& x);
+
75  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 4, T, Q> const& x);
+
76  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 2, T, Q> const& x);
+
77  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 4, T, Q> const& x);
+
78  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 3, T, Q> const& x);
+
79 
+
80  // -- Unary arithmetic operators --
+
81 
+
82  template<typename U>
+
83  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator=(mat<3, 3, U, Q> const& m);
+
84  template<typename U>
+
85  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator+=(U s);
+
86  template<typename U>
+
87  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator+=(mat<3, 3, U, Q> const& m);
+
88  template<typename U>
+
89  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator-=(U s);
+
90  template<typename U>
+
91  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator-=(mat<3, 3, U, Q> const& m);
+
92  template<typename U>
+
93  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator*=(U s);
+
94  template<typename U>
+
95  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator*=(mat<3, 3, U, Q> const& m);
+
96  template<typename U>
+
97  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator/=(U s);
+
98  template<typename U>
+
99  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator/=(mat<3, 3, U, Q> const& m);
+
100 
+
101  // -- Increment and decrement operators --
+
102 
+
103  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator++();
+
104  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 3, T, Q> & operator--();
+
105  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator++(int);
+
106  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator--(int);
+
107  };
+
108 
+
109  // -- Unary operators --
+
110 
+
111  template<typename T, qualifier Q>
+
112  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator+(mat<3, 3, T, Q> const& m);
+
113 
+
114  template<typename T, qualifier Q>
+
115  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator-(mat<3, 3, T, Q> const& m);
+
116 
+
117  // -- Binary operators --
+
118 
+
119  template<typename T, qualifier Q>
+
120  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator+(mat<3, 3, T, Q> const& m, T scalar);
+
121 
+
122  template<typename T, qualifier Q>
+
123  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator+(T scalar, mat<3, 3, T, Q> const& m);
+
124 
+
125  template<typename T, qualifier Q>
+
126  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator+(mat<3, 3, T, Q> const& m1, mat<3, 3, T, Q> const& m2);
+
127 
+
128  template<typename T, qualifier Q>
+
129  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator-(mat<3, 3, T, Q> const& m, T scalar);
+
130 
+
131  template<typename T, qualifier Q>
+
132  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator-(T scalar, mat<3, 3, T, Q> const& m);
+
133 
+
134  template<typename T, qualifier Q>
+
135  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator-(mat<3, 3, T, Q> const& m1, mat<3, 3, T, Q> const& m2);
+
136 
+
137  template<typename T, qualifier Q>
+
138  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator*(mat<3, 3, T, Q> const& m, T scalar);
+
139 
+
140  template<typename T, qualifier Q>
+
141  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator*(T scalar, mat<3, 3, T, Q> const& m);
+
142 
+
143  template<typename T, qualifier Q>
+
144  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<3, 3, T, Q>::col_type operator*(mat<3, 3, T, Q> const& m, typename mat<3, 3, T, Q>::row_type const& v);
+
145 
+
146  template<typename T, qualifier Q>
+
147  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<3, 3, T, Q>::row_type operator*(typename mat<3, 3, T, Q>::col_type const& v, mat<3, 3, T, Q> const& m);
+
148 
+
149  template<typename T, qualifier Q>
+
150  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator*(mat<3, 3, T, Q> const& m1, mat<3, 3, T, Q> const& m2);
+
151 
+
152  template<typename T, qualifier Q>
+
153  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator*(mat<3, 3, T, Q> const& m1, mat<2, 3, T, Q> const& m2);
+
154 
+
155  template<typename T, qualifier Q>
+
156  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator*(mat<3, 3, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
+
157 
+
158  template<typename T, qualifier Q>
+
159  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator/(mat<3, 3, T, Q> const& m, T scalar);
+
160 
+
161  template<typename T, qualifier Q>
+
162  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator/(T scalar, mat<3, 3, T, Q> const& m);
+
163 
+
164  template<typename T, qualifier Q>
+
165  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<3, 3, T, Q>::col_type operator/(mat<3, 3, T, Q> const& m, typename mat<3, 3, T, Q>::row_type const& v);
+
166 
+
167  template<typename T, qualifier Q>
+
168  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<3, 3, T, Q>::row_type operator/(typename mat<3, 3, T, Q>::col_type const& v, mat<3, 3, T, Q> const& m);
+
169 
+
170  template<typename T, qualifier Q>
+
171  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator/(mat<3, 3, T, Q> const& m1, mat<3, 3, T, Q> const& m2);
+
172 
+
173  // -- Boolean operators --
+
174 
+
175  template<typename T, qualifier Q>
+
176  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(mat<3, 3, T, Q> const& m1, mat<3, 3, T, Q> const& m2);
+
177 
+
178  template<typename T, qualifier Q>
+
179  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(mat<3, 3, T, Q> const& m1, mat<3, 3, T, Q> const& m2);
+
180 }//namespace glm
+
181 
+
182 #ifndef GLM_EXTERNAL_TEMPLATE
+
183 #include "type_mat3x3.inl"
+
184 #endif
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00059.html b/include/glm/doc/api/a00059.html new file mode 100644 index 0000000..2772f90 --- /dev/null +++ b/include/glm/doc/api/a00059.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_mat3x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat3x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_mat3x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00059_source.html b/include/glm/doc/api/a00059_source.html new file mode 100644 index 0000000..eb3abe0 --- /dev/null +++ b/include/glm/doc/api/a00059_source.html @@ -0,0 +1,248 @@ + + + + + + + +1.0.2 API documentation: type_mat3x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat3x4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "type_vec3.hpp"
+
7 #include "type_vec4.hpp"
+
8 #include <limits>
+
9 #include <cstddef>
+
10 
+
11 namespace glm
+
12 {
+
13  template<typename T, qualifier Q>
+
14  struct mat<3, 4, T, Q>
+
15  {
+
16  typedef vec<4, T, Q> col_type;
+
17  typedef vec<3, T, Q> row_type;
+
18  typedef mat<3, 4, T, Q> type;
+
19  typedef mat<4, 3, T, Q> transpose_type;
+
20  typedef T value_type;
+
21 
+
22  private:
+
23  col_type value[3];
+
24 
+
25  public:
+
26  // -- Accesses --
+
27 
+
28  typedef length_t length_type;
+
29  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length() { return 3; }
+
30 
+
31  GLM_FUNC_DECL GLM_CONSTEXPR col_type & operator[](length_type i) GLM_NOEXCEPT;
+
32  GLM_FUNC_DECL GLM_CONSTEXPR col_type const& operator[](length_type i) const GLM_NOEXCEPT;
+
33 
+
34  // -- Constructors --
+
35 
+
36  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR mat() GLM_DEFAULT_CTOR;
+
37  template<qualifier P>
+
38  GLM_CTOR_DECL mat(mat<3, 4, T, P> const& m);
+
39 
+
40  GLM_CTOR_DECL GLM_EXPLICIT mat(T scalar);
+
41  GLM_CTOR_DECL mat(
+
42  T x0, T y0, T z0, T w0,
+
43  T x1, T y1, T z1, T w1,
+
44  T x2, T y2, T z2, T w2);
+
45  GLM_CTOR_DECL mat(
+
46  col_type const& v0,
+
47  col_type const& v1,
+
48  col_type const& v2);
+
49 
+
50  // -- Conversions --
+
51 
+
52  template<
+
53  typename X1, typename Y1, typename Z1, typename W1,
+
54  typename X2, typename Y2, typename Z2, typename W2,
+
55  typename X3, typename Y3, typename Z3, typename W3>
+
56  GLM_CTOR_DECL mat(
+
57  X1 x1, Y1 y1, Z1 z1, W1 w1,
+
58  X2 x2, Y2 y2, Z2 z2, W2 w2,
+
59  X3 x3, Y3 y3, Z3 z3, W3 w3);
+
60 
+
61  template<typename V1, typename V2, typename V3>
+
62  GLM_CTOR_DECL mat(
+
63  vec<4, V1, Q> const& v1,
+
64  vec<4, V2, Q> const& v2,
+
65  vec<4, V3, Q> const& v3);
+
66 
+
67  // -- Matrix conversions --
+
68 
+
69  template<typename U, qualifier P>
+
70  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 4, U, P> const& m);
+
71 
+
72  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 2, T, Q> const& x);
+
73  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 3, T, Q> const& x);
+
74  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 4, T, Q> const& x);
+
75  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 3, T, Q> const& x);
+
76  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 2, T, Q> const& x);
+
77  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 4, T, Q> const& x);
+
78  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 2, T, Q> const& x);
+
79  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 3, T, Q> const& x);
+
80 
+
81  // -- Unary arithmetic operators --
+
82 
+
83  template<typename U>
+
84  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 4, T, Q> & operator=(mat<3, 4, U, Q> const& m);
+
85  template<typename U>
+
86  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 4, T, Q> & operator+=(U s);
+
87  template<typename U>
+
88  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 4, T, Q> & operator+=(mat<3, 4, U, Q> const& m);
+
89  template<typename U>
+
90  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 4, T, Q> & operator-=(U s);
+
91  template<typename U>
+
92  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 4, T, Q> & operator-=(mat<3, 4, U, Q> const& m);
+
93  template<typename U>
+
94  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 4, T, Q> & operator*=(U s);
+
95  template<typename U>
+
96  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 4, T, Q> & operator/=(U s);
+
97 
+
98  // -- Increment and decrement operators --
+
99 
+
100  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 4, T, Q> & operator++();
+
101  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<3, 4, T, Q> & operator--();
+
102  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator++(int);
+
103  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator--(int);
+
104  };
+
105 
+
106  // -- Unary operators --
+
107 
+
108  template<typename T, qualifier Q>
+
109  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator+(mat<3, 4, T, Q> const& m);
+
110 
+
111  template<typename T, qualifier Q>
+
112  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator-(mat<3, 4, T, Q> const& m);
+
113 
+
114  // -- Binary operators --
+
115 
+
116  template<typename T, qualifier Q>
+
117  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator+(mat<3, 4, T, Q> const& m, T scalar);
+
118 
+
119  template<typename T, qualifier Q>
+
120  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator+(mat<3, 4, T, Q> const& m1, mat<3, 4, T, Q> const& m2);
+
121 
+
122  template<typename T, qualifier Q>
+
123  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator-(mat<3, 4, T, Q> const& m, T scalar);
+
124 
+
125  template<typename T, qualifier Q>
+
126  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator-(mat<3, 4, T, Q> const& m1, mat<3, 4, T, Q> const& m2);
+
127 
+
128  template<typename T, qualifier Q>
+
129  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator*(mat<3, 4, T, Q> const& m, T scalar);
+
130 
+
131  template<typename T, qualifier Q>
+
132  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator*(T scalar, mat<3, 4, T, Q> const& m);
+
133 
+
134  template<typename T, qualifier Q>
+
135  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<3, 4, T, Q>::col_type operator*(mat<3, 4, T, Q> const& m, typename mat<3, 4, T, Q>::row_type const& v);
+
136 
+
137  template<typename T, qualifier Q>
+
138  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<3, 4, T, Q>::row_type operator*(typename mat<3, 4, T, Q>::col_type const& v, mat<3, 4, T, Q> const& m);
+
139 
+
140  template<typename T, qualifier Q>
+
141  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator*(mat<3, 4, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
+
142 
+
143  template<typename T, qualifier Q>
+
144  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator*(mat<3, 4, T, Q> const& m1, mat<2, 3, T, Q> const& m2);
+
145 
+
146  template<typename T, qualifier Q>
+
147  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator*(mat<3, 4, T, Q> const& m1, mat<3, 3, T, Q> const& m2);
+
148 
+
149  template<typename T, qualifier Q>
+
150  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator/(mat<3, 4, T, Q> const& m, T scalar);
+
151 
+
152  template<typename T, qualifier Q>
+
153  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator/(T scalar, mat<3, 4, T, Q> const& m);
+
154 
+
155  // -- Boolean operators --
+
156 
+
157  template<typename T, qualifier Q>
+
158  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(mat<3, 4, T, Q> const& m1, mat<3, 4, T, Q> const& m2);
+
159 
+
160  template<typename T, qualifier Q>
+
161  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(mat<3, 4, T, Q> const& m1, mat<3, 4, T, Q> const& m2);
+
162 }//namespace glm
+
163 
+
164 #ifndef GLM_EXTERNAL_TEMPLATE
+
165 #include "type_mat3x4.inl"
+
166 #endif
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
Core features
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00062.html b/include/glm/doc/api/a00062.html new file mode 100644 index 0000000..52b8c4a --- /dev/null +++ b/include/glm/doc/api/a00062.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_mat4x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat4x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_mat4x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00062_source.html b/include/glm/doc/api/a00062_source.html new file mode 100644 index 0000000..177fbe2 --- /dev/null +++ b/include/glm/doc/api/a00062_source.html @@ -0,0 +1,253 @@ + + + + + + + +1.0.2 API documentation: type_mat4x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat4x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "type_vec2.hpp"
+
7 #include "type_vec4.hpp"
+
8 #include <limits>
+
9 #include <cstddef>
+
10 
+
11 namespace glm
+
12 {
+
13  template<typename T, qualifier Q>
+
14  struct mat<4, 2, T, Q>
+
15  {
+
16  typedef vec<2, T, Q> col_type;
+
17  typedef vec<4, T, Q> row_type;
+
18  typedef mat<4, 2, T, Q> type;
+
19  typedef mat<2, 4, T, Q> transpose_type;
+
20  typedef T value_type;
+
21 
+
22  private:
+
23  col_type value[4];
+
24 
+
25  public:
+
26  // -- Accesses --
+
27 
+
28  typedef length_t length_type;
+
29  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length() { return 4; }
+
30 
+
31  GLM_FUNC_DECL GLM_CONSTEXPR col_type & operator[](length_type i) GLM_NOEXCEPT;
+
32  GLM_FUNC_DECL GLM_CONSTEXPR col_type const& operator[](length_type i) const GLM_NOEXCEPT;
+
33 
+
34  // -- Constructors --
+
35 
+
36  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR mat() GLM_DEFAULT_CTOR;
+
37  template<qualifier P>
+
38  GLM_CTOR_DECL mat(mat<4, 2, T, P> const& m);
+
39 
+
40  GLM_CTOR_DECL mat(T scalar);
+
41  GLM_CTOR_DECL mat(
+
42  T x0, T y0,
+
43  T x1, T y1,
+
44  T x2, T y2,
+
45  T x3, T y3);
+
46  GLM_CTOR_DECL mat(
+
47  col_type const& v0,
+
48  col_type const& v1,
+
49  col_type const& v2,
+
50  col_type const& v3);
+
51 
+
52  // -- Conversions --
+
53 
+
54  template<
+
55  typename X0, typename Y0,
+
56  typename X1, typename Y1,
+
57  typename X2, typename Y2,
+
58  typename X3, typename Y3>
+
59  GLM_CTOR_DECL mat(
+
60  X0 x0, Y0 y0,
+
61  X1 x1, Y1 y1,
+
62  X2 x2, Y2 y2,
+
63  X3 x3, Y3 y3);
+
64 
+
65  template<typename V1, typename V2, typename V3, typename V4>
+
66  GLM_CTOR_DECL mat(
+
67  vec<2, V1, Q> const& v1,
+
68  vec<2, V2, Q> const& v2,
+
69  vec<2, V3, Q> const& v3,
+
70  vec<2, V4, Q> const& v4);
+
71 
+
72  // -- Matrix conversions --
+
73 
+
74  template<typename U, qualifier P>
+
75  GLM_CTOR_DECL mat(mat<4, 2, U, P> const& m);
+
76 
+
77  GLM_CTOR_DECL mat(mat<2, 2, T, Q> const& x);
+
78  GLM_CTOR_DECL mat(mat<3, 3, T, Q> const& x);
+
79  GLM_CTOR_DECL mat(mat<4, 4, T, Q> const& x);
+
80  GLM_CTOR_DECL mat(mat<2, 3, T, Q> const& x);
+
81  GLM_CTOR_DECL mat(mat<3, 2, T, Q> const& x);
+
82  GLM_CTOR_DECL mat(mat<2, 4, T, Q> const& x);
+
83  GLM_CTOR_DECL mat(mat<4, 3, T, Q> const& x);
+
84  GLM_CTOR_DECL mat(mat<3, 4, T, Q> const& x);
+
85 
+
86  // -- Unary arithmetic operators --
+
87 
+
88  template<typename U>
+
89  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 2, T, Q> & operator=(mat<4, 2, U, Q> const& m);
+
90  template<typename U>
+
91  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 2, T, Q> & operator+=(U s);
+
92  template<typename U>
+
93  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 2, T, Q> & operator+=(mat<4, 2, U, Q> const& m);
+
94  template<typename U>
+
95  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 2, T, Q> & operator-=(U s);
+
96  template<typename U>
+
97  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 2, T, Q> & operator-=(mat<4, 2, U, Q> const& m);
+
98  template<typename U>
+
99  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 2, T, Q> & operator*=(U s);
+
100  template<typename U>
+
101  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 2, T, Q> & operator/=(U s);
+
102 
+
103  // -- Increment and decrement operators --
+
104 
+
105  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 2, T, Q> & operator++ ();
+
106  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 2, T, Q> & operator-- ();
+
107  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator++(int);
+
108  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator--(int);
+
109  };
+
110 
+
111  // -- Unary operators --
+
112 
+
113  template<typename T, qualifier Q>
+
114  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator+(mat<4, 2, T, Q> const& m);
+
115 
+
116  template<typename T, qualifier Q>
+
117  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator-(mat<4, 2, T, Q> const& m);
+
118 
+
119  // -- Binary operators --
+
120 
+
121  template<typename T, qualifier Q>
+
122  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator+(mat<4, 2, T, Q> const& m, T scalar);
+
123 
+
124  template<typename T, qualifier Q>
+
125  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator+(mat<4, 2, T, Q> const& m1, mat<4, 2, T, Q> const& m2);
+
126 
+
127  template<typename T, qualifier Q>
+
128  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator-(mat<4, 2, T, Q> const& m, T scalar);
+
129 
+
130  template<typename T, qualifier Q>
+
131  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator-(mat<4, 2, T, Q> const& m1, mat<4, 2, T, Q> const& m2);
+
132 
+
133  template<typename T, qualifier Q>
+
134  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator*(mat<4, 2, T, Q> const& m, T scalar);
+
135 
+
136  template<typename T, qualifier Q>
+
137  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator*(T scalar, mat<4, 2, T, Q> const& m);
+
138 
+
139  template<typename T, qualifier Q>
+
140  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<4, 2, T, Q>::col_type operator*(mat<4, 2, T, Q> const& m, typename mat<4, 2, T, Q>::row_type const& v);
+
141 
+
142  template<typename T, qualifier Q>
+
143  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<4, 2, T, Q>::row_type operator*(typename mat<4, 2, T, Q>::col_type const& v, mat<4, 2, T, Q> const& m);
+
144 
+
145  template<typename T, qualifier Q>
+
146  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 2, T, Q> operator*(mat<4, 2, T, Q> const& m1, mat<2, 4, T, Q> const& m2);
+
147 
+
148  template<typename T, qualifier Q>
+
149  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 2, T, Q> operator*(mat<4, 2, T, Q> const& m1, mat<3, 4, T, Q> const& m2);
+
150 
+
151  template<typename T, qualifier Q>
+
152  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator*(mat<4, 2, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
+
153 
+
154  template<typename T, qualifier Q>
+
155  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator/(mat<4, 2, T, Q> const& m, T scalar);
+
156 
+
157  template<typename T, qualifier Q>
+
158  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 2, T, Q> operator/(T scalar, mat<4, 2, T, Q> const& m);
+
159 
+
160  // -- Boolean operators --
+
161 
+
162  template<typename T, qualifier Q>
+
163  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(mat<4, 2, T, Q> const& m1, mat<4, 2, T, Q> const& m2);
+
164 
+
165  template<typename T, qualifier Q>
+
166  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(mat<4, 2, T, Q> const& m1, mat<4, 2, T, Q> const& m2);
+
167 }//namespace glm
+
168 
+
169 #ifndef GLM_EXTERNAL_TEMPLATE
+
170 #include "type_mat4x2.inl"
+
171 #endif
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
Core features
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00065.html b/include/glm/doc/api/a00065.html new file mode 100644 index 0000000..ba89680 --- /dev/null +++ b/include/glm/doc/api/a00065.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_mat4x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat4x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_mat4x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00065_source.html b/include/glm/doc/api/a00065_source.html new file mode 100644 index 0000000..7b4f98e --- /dev/null +++ b/include/glm/doc/api/a00065_source.html @@ -0,0 +1,253 @@ + + + + + + + +1.0.2 API documentation: type_mat4x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat4x3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "type_vec3.hpp"
+
7 #include "type_vec4.hpp"
+
8 #include <limits>
+
9 #include <cstddef>
+
10 
+
11 namespace glm
+
12 {
+
13  template<typename T, qualifier Q>
+
14  struct mat<4, 3, T, Q>
+
15  {
+
16  typedef vec<3, T, Q> col_type;
+
17  typedef vec<4, T, Q> row_type;
+
18  typedef mat<4, 3, T, Q> type;
+
19  typedef mat<3, 4, T, Q> transpose_type;
+
20  typedef T value_type;
+
21 
+
22  private:
+
23  col_type value[4];
+
24 
+
25  public:
+
26  // -- Accesses --
+
27 
+
28  typedef length_t length_type;
+
29  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length() { return 4; }
+
30 
+
31  GLM_FUNC_DECL GLM_CONSTEXPR col_type & operator[](length_type i) GLM_NOEXCEPT;
+
32  GLM_FUNC_DECL GLM_CONSTEXPR col_type const& operator[](length_type i) const GLM_NOEXCEPT;
+
33 
+
34  // -- Constructors --
+
35 
+
36  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR mat() GLM_DEFAULT_CTOR;
+
37  template<qualifier P>
+
38  GLM_CTOR_DECL mat(mat<4, 3, T, P> const& m);
+
39 
+
40  GLM_CTOR_DECL GLM_EXPLICIT mat(T s);
+
41  GLM_CTOR_DECL mat(
+
42  T const& x0, T const& y0, T const& z0,
+
43  T const& x1, T const& y1, T const& z1,
+
44  T const& x2, T const& y2, T const& z2,
+
45  T const& x3, T const& y3, T const& z3);
+
46  GLM_CTOR_DECL mat(
+
47  col_type const& v0,
+
48  col_type const& v1,
+
49  col_type const& v2,
+
50  col_type const& v3);
+
51 
+
52  // -- Conversions --
+
53 
+
54  template<
+
55  typename X1, typename Y1, typename Z1,
+
56  typename X2, typename Y2, typename Z2,
+
57  typename X3, typename Y3, typename Z3,
+
58  typename X4, typename Y4, typename Z4>
+
59  GLM_CTOR_DECL mat(
+
60  X1 const& x1, Y1 const& y1, Z1 const& z1,
+
61  X2 const& x2, Y2 const& y2, Z2 const& z2,
+
62  X3 const& x3, Y3 const& y3, Z3 const& z3,
+
63  X4 const& x4, Y4 const& y4, Z4 const& z4);
+
64 
+
65  template<typename V1, typename V2, typename V3, typename V4>
+
66  GLM_CTOR_DECL mat(
+
67  vec<3, V1, Q> const& v1,
+
68  vec<3, V2, Q> const& v2,
+
69  vec<3, V3, Q> const& v3,
+
70  vec<3, V4, Q> const& v4);
+
71 
+
72  // -- Matrix conversions --
+
73 
+
74  template<typename U, qualifier P>
+
75  GLM_CTOR_DECL mat(mat<4, 3, U, P> const& m);
+
76 
+
77  GLM_CTOR_DECL mat(mat<2, 2, T, Q> const& x);
+
78  GLM_CTOR_DECL mat(mat<3, 3, T, Q> const& x);
+
79  GLM_CTOR_DECL mat(mat<4, 4, T, Q> const& x);
+
80  GLM_CTOR_DECL mat(mat<2, 3, T, Q> const& x);
+
81  GLM_CTOR_DECL mat(mat<3, 2, T, Q> const& x);
+
82  GLM_CTOR_DECL mat(mat<2, 4, T, Q> const& x);
+
83  GLM_CTOR_DECL mat(mat<4, 2, T, Q> const& x);
+
84  GLM_CTOR_DECL mat(mat<3, 4, T, Q> const& x);
+
85 
+
86  // -- Unary arithmetic operators --
+
87 
+
88  template<typename U>
+
89  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 3, T, Q> & operator=(mat<4, 3, U, Q> const& m);
+
90  template<typename U>
+
91  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 3, T, Q> & operator+=(U s);
+
92  template<typename U>
+
93  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 3, T, Q> & operator+=(mat<4, 3, U, Q> const& m);
+
94  template<typename U>
+
95  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 3, T, Q> & operator-=(U s);
+
96  template<typename U>
+
97  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 3, T, Q> & operator-=(mat<4, 3, U, Q> const& m);
+
98  template<typename U>
+
99  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 3, T, Q> & operator*=(U s);
+
100  template<typename U>
+
101  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 3, T, Q> & operator/=(U s);
+
102 
+
103  // -- Increment and decrement operators --
+
104 
+
105  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 3, T, Q>& operator++();
+
106  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 3, T, Q>& operator--();
+
107  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator++(int);
+
108  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator--(int);
+
109  };
+
110 
+
111  // -- Unary operators --
+
112 
+
113  template<typename T, qualifier Q>
+
114  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator+(mat<4, 3, T, Q> const& m);
+
115 
+
116  template<typename T, qualifier Q>
+
117  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator-(mat<4, 3, T, Q> const& m);
+
118 
+
119  // -- Binary operators --
+
120 
+
121  template<typename T, qualifier Q>
+
122  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator+(mat<4, 3, T, Q> const& m, T scalar);
+
123 
+
124  template<typename T, qualifier Q>
+
125  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator+(mat<4, 3, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
+
126 
+
127  template<typename T, qualifier Q>
+
128  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator-(mat<4, 3, T, Q> const& m, T scalar);
+
129 
+
130  template<typename T, qualifier Q>
+
131  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator-(mat<4, 3, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
+
132 
+
133  template<typename T, qualifier Q>
+
134  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator*(mat<4, 3, T, Q> const& m, T scalar);
+
135 
+
136  template<typename T, qualifier Q>
+
137  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator*(T scalar, mat<4, 3, T, Q> const& m);
+
138 
+
139  template<typename T, qualifier Q>
+
140  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<4, 3, T, Q>::col_type operator*(mat<4, 3, T, Q> const& m, typename mat<4, 3, T, Q>::row_type const& v);
+
141 
+
142  template<typename T, qualifier Q>
+
143  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<4, 3, T, Q>::row_type operator*(typename mat<4, 3, T, Q>::col_type const& v, mat<4, 3, T, Q> const& m);
+
144 
+
145  template<typename T, qualifier Q>
+
146  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 3, T, Q> operator*(mat<4, 3, T, Q> const& m1, mat<2, 4, T, Q> const& m2);
+
147 
+
148  template<typename T, qualifier Q>
+
149  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 3, T, Q> operator*(mat<4, 3, T, Q> const& m1, mat<3, 4, T, Q> const& m2);
+
150 
+
151  template<typename T, qualifier Q>
+
152  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator*(mat<4, 3, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
+
153 
+
154  template<typename T, qualifier Q>
+
155  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator/(mat<4, 3, T, Q> const& m, T scalar);
+
156 
+
157  template<typename T, qualifier Q>
+
158  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 3, T, Q> operator/(T scalar, mat<4, 3, T, Q> const& m);
+
159 
+
160  // -- Boolean operators --
+
161 
+
162  template<typename T, qualifier Q>
+
163  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(mat<4, 3, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
+
164 
+
165  template<typename T, qualifier Q>
+
166  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(mat<4, 3, T, Q> const& m1, mat<4, 3, T, Q> const& m2);
+
167 }//namespace glm
+
168 
+
169 #ifndef GLM_EXTERNAL_TEMPLATE
+
170 #include "type_mat4x3.inl"
+
171 #endif //GLM_EXTERNAL_TEMPLATE
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
Core features
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00068.html b/include/glm/doc/api/a00068.html new file mode 100644 index 0000000..09a2489 --- /dev/null +++ b/include/glm/doc/api/a00068.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_mat4x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat4x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_mat4x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00068_source.html b/include/glm/doc/api/a00068_source.html new file mode 100644 index 0000000..caff76c --- /dev/null +++ b/include/glm/doc/api/a00068_source.html @@ -0,0 +1,270 @@ + + + + + + + +1.0.2 API documentation: type_mat4x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_mat4x4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "type_vec4.hpp"
+
7 #include <limits>
+
8 #include <cstddef>
+
9 
+
10 namespace glm
+
11 {
+
12  template<typename T, qualifier Q>
+
13  struct mat<4, 4, T, Q>
+
14  {
+
15  typedef vec<4, T, Q> col_type;
+
16  typedef vec<4, T, Q> row_type;
+
17  typedef mat<4, 4, T, Q> type;
+
18  typedef mat<4, 4, T, Q> transpose_type;
+
19  typedef T value_type;
+
20 
+
21  private:
+
22  col_type value[4];
+
23 
+
24  public:
+
25  // -- Accesses --
+
26 
+
27  typedef length_t length_type;
+
28  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 4;}
+
29 
+
30  GLM_FUNC_DECL GLM_CONSTEXPR col_type & operator[](length_type i) GLM_NOEXCEPT;
+
31  GLM_FUNC_DECL GLM_CONSTEXPR col_type const& operator[](length_type i) const GLM_NOEXCEPT;
+
32 
+
33  // -- Constructors --
+
34 
+
35  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR mat() GLM_DEFAULT_CTOR;
+
36  template<qualifier P>
+
37  GLM_CTOR_DECL mat(mat<4, 4, T, P> const& m);
+
38 
+
39  GLM_CTOR_DECL GLM_EXPLICIT mat(T s);
+
40  GLM_CTOR_DECL mat(
+
41  T const& x0, T const& y0, T const& z0, T const& w0,
+
42  T const& x1, T const& y1, T const& z1, T const& w1,
+
43  T const& x2, T const& y2, T const& z2, T const& w2,
+
44  T const& x3, T const& y3, T const& z3, T const& w3);
+
45  GLM_CTOR_DECL mat(
+
46  col_type const& v0,
+
47  col_type const& v1,
+
48  col_type const& v2,
+
49  col_type const& v3);
+
50 
+
51  // -- Conversions --
+
52 
+
53  template<
+
54  typename X1, typename Y1, typename Z1, typename W1,
+
55  typename X2, typename Y2, typename Z2, typename W2,
+
56  typename X3, typename Y3, typename Z3, typename W3,
+
57  typename X4, typename Y4, typename Z4, typename W4>
+
58  GLM_CTOR_DECL mat(
+
59  X1 const& x1, Y1 const& y1, Z1 const& z1, W1 const& w1,
+
60  X2 const& x2, Y2 const& y2, Z2 const& z2, W2 const& w2,
+
61  X3 const& x3, Y3 const& y3, Z3 const& z3, W3 const& w3,
+
62  X4 const& x4, Y4 const& y4, Z4 const& z4, W4 const& w4);
+
63 
+
64  template<typename V1, typename V2, typename V3, typename V4>
+
65  GLM_CTOR_DECL mat(
+
66  vec<4, V1, Q> const& v1,
+
67  vec<4, V2, Q> const& v2,
+
68  vec<4, V3, Q> const& v3,
+
69  vec<4, V4, Q> const& v4);
+
70 
+
71  // -- Matrix conversions --
+
72 
+
73  template<typename U, qualifier P>
+
74  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 4, U, P> const& m);
+
75 
+
76  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 2, T, Q> const& x);
+
77  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 3, T, Q> const& x);
+
78  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 3, T, Q> const& x);
+
79  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 2, T, Q> const& x);
+
80  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<2, 4, T, Q> const& x);
+
81  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 2, T, Q> const& x);
+
82  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<3, 4, T, Q> const& x);
+
83  GLM_CTOR_DECL GLM_EXPLICIT mat(mat<4, 3, T, Q> const& x);
+
84 
+
85  // -- Unary arithmetic operators --
+
86 
+
87  template<typename U>
+
88  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator=(mat<4, 4, U, Q> const& m);
+
89  template<typename U>
+
90  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator+=(U s);
+
91  template<typename U>
+
92  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator+=(mat<4, 4, U, Q> const& m);
+
93  template<typename U>
+
94  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator-=(U s);
+
95  template<typename U>
+
96  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator-=(mat<4, 4, U, Q> const& m);
+
97  template<typename U>
+
98  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator*=(U s);
+
99  template<typename U>
+
100  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator*=(mat<4, 4, U, Q> const& m);
+
101  template<typename U>
+
102  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator/=(U s);
+
103  template<typename U>
+
104  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator/=(mat<4, 4, U, Q> const& m);
+
105 
+
106  // -- Increment and decrement operators --
+
107 
+
108  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator++();
+
109  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR mat<4, 4, T, Q> & operator--();
+
110  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator++(int);
+
111  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator--(int);
+
112  };
+
113 
+
114  // -- Unary operators --
+
115 
+
116  template<typename T, qualifier Q>
+
117  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator+(mat<4, 4, T, Q> const& m);
+
118 
+
119  template<typename T, qualifier Q>
+
120  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator-(mat<4, 4, T, Q> const& m);
+
121 
+
122  // -- Binary operators --
+
123 
+
124  template<typename T, qualifier Q>
+
125  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator+(mat<4, 4, T, Q> const& m, T scalar);
+
126 
+
127  template<typename T, qualifier Q>
+
128  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator+(T scalar, mat<4, 4, T, Q> const& m);
+
129 
+
130  template<typename T, qualifier Q>
+
131  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator+(mat<4, 4, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
+
132 
+
133  template<typename T, qualifier Q>
+
134  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator-(mat<4, 4, T, Q> const& m, T scalar);
+
135 
+
136  template<typename T, qualifier Q>
+
137  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator-(T scalar, mat<4, 4, T, Q> const& m);
+
138 
+
139  template<typename T, qualifier Q>
+
140  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator-(mat<4, 4, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
+
141 
+
142  template<typename T, qualifier Q>
+
143  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator*(mat<4, 4, T, Q> const& m, T scalar);
+
144 
+
145  template<typename T, qualifier Q>
+
146  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator*(T scalar, mat<4, 4, T, Q> const& m);
+
147 
+
148  template<typename T, qualifier Q>
+
149  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<4, 4, T, Q>::col_type operator*(mat<4, 4, T, Q> const& m, typename mat<4, 4, T, Q>::row_type const& v);
+
150 
+
151  template<typename T, qualifier Q>
+
152  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<4, 4, T, Q>::row_type operator*(typename mat<4, 4, T, Q>::col_type const& v, mat<4, 4, T, Q> const& m);
+
153 
+
154  template<typename T, qualifier Q>
+
155  GLM_FUNC_DECL GLM_CONSTEXPR mat<2, 4, T, Q> operator*(mat<4, 4, T, Q> const& m1, mat<2, 4, T, Q> const& m2);
+
156 
+
157  template<typename T, qualifier Q>
+
158  GLM_FUNC_DECL GLM_CONSTEXPR mat<3, 4, T, Q> operator*(mat<4, 4, T, Q> const& m1, mat<3, 4, T, Q> const& m2);
+
159 
+
160  template<typename T, qualifier Q>
+
161  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator*(mat<4, 4, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
+
162 
+
163  template<typename T, qualifier Q>
+
164  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator/(mat<4, 4, T, Q> const& m, T scalar);
+
165 
+
166  template<typename T, qualifier Q>
+
167  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator/(T scalar, mat<4, 4, T, Q> const& m);
+
168 
+
169  template<typename T, qualifier Q>
+
170  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<4, 4, T, Q>::col_type operator/(mat<4, 4, T, Q> const& m, typename mat<4, 4, T, Q>::row_type const& v);
+
171 
+
172  template<typename T, qualifier Q>
+
173  GLM_FUNC_DECL GLM_CONSTEXPR typename mat<4, 4, T, Q>::row_type operator/(typename mat<4, 4, T, Q>::col_type const& v, mat<4, 4, T, Q> const& m);
+
174 
+
175  template<typename T, qualifier Q>
+
176  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> operator/(mat<4, 4, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
+
177 
+
178  // -- Boolean operators --
+
179 
+
180  template<typename T, qualifier Q>
+
181  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(mat<4, 4, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
+
182 
+
183  template<typename T, qualifier Q>
+
184  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(mat<4, 4, T, Q> const& m1, mat<4, 4, T, Q> const& m2);
+
185 }//namespace glm
+
186 
+
187 #ifndef GLM_EXTERNAL_TEMPLATE
+
188 #include "type_mat4x4.inl"
+
189 #endif//GLM_EXTERNAL_TEMPLATE
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00071.html b/include/glm/doc/api/a00071.html new file mode 100644 index 0000000..40256d1 --- /dev/null +++ b/include/glm/doc/api/a00071.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_quat.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_quat.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_quat.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00071_source.html b/include/glm/doc/api/a00071_source.html new file mode 100644 index 0000000..b144b88 --- /dev/null +++ b/include/glm/doc/api/a00071_source.html @@ -0,0 +1,265 @@ + + + + + + + +1.0.2 API documentation: type_quat.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_quat.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 // Dependency:
+
7 #include "../detail/type_mat3x3.hpp"
+
8 #include "../detail/type_mat4x4.hpp"
+
9 #include "../detail/type_vec3.hpp"
+
10 #include "../detail/type_vec4.hpp"
+
11 #include "../ext/vector_relational.hpp"
+
12 #include "../ext/quaternion_relational.hpp"
+
13 #include "../gtc/constants.hpp"
+
14 #include "../gtc/matrix_transform.hpp"
+
15 
+
16 namespace glm
+
17 {
+
18 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
19 # if GLM_COMPILER & GLM_COMPILER_GCC
+
20 # pragma GCC diagnostic push
+
21 # pragma GCC diagnostic ignored "-Wpedantic"
+
22 # elif GLM_COMPILER & GLM_COMPILER_CLANG
+
23 # pragma clang diagnostic push
+
24 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct"
+
25 # pragma clang diagnostic ignored "-Wnested-anon-types"
+
26 # elif GLM_COMPILER & GLM_COMPILER_VC
+
27 # pragma warning(push)
+
28 # pragma warning(disable: 4201) // nonstandard extension used : nameless struct/union
+
29 # endif
+
30 # endif
+
31 
+
32  template<typename T, qualifier Q>
+
33  struct qua
+
34  {
+
35  // -- Implementation detail --
+
36 
+
37  typedef qua<T, Q> type;
+
38  typedef T value_type;
+
39 
+
40  // -- Data --
+
41 
+
42 # if GLM_LANG & GLM_LANG_CXXMS_FLAG
+
43  union
+
44  {
+
45 # ifdef GLM_FORCE_QUAT_DATA_WXYZ
+
46  struct { T w, x, y, z; };
+
47 # else
+
48  struct { T x, y, z, w; };
+
49 # endif
+
50 
+
51  typename detail::storage<4, T, detail::is_aligned<Q>::value>::type data;
+
52  };
+
53 # else
+
54 # ifdef GLM_FORCE_QUAT_DATA_WXYZ
+
55  T w, x, y, z;
+
56 # else
+
57  T x, y, z, w;
+
58 # endif
+
59 # endif
+
60 
+
61  // -- Component accesses --
+
62 
+
63  typedef length_t length_type;
+
64 
+
66  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 4;}
+
67 
+
68  GLM_FUNC_DECL GLM_CONSTEXPR T & operator[](length_type i);
+
69  GLM_FUNC_DECL GLM_CONSTEXPR T const& operator[](length_type i) const;
+
70 
+
71  // -- Implicit basic constructors --
+
72 
+
73  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR qua() GLM_DEFAULT_CTOR;
+
74  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR qua(qua<T, Q> const& q) GLM_DEFAULT;
+
75  template<qualifier P>
+
76  GLM_CTOR_DECL qua(qua<T, P> const& q);
+
77 
+
78  // -- Explicit basic constructors --
+
79 
+
80  GLM_CTOR_DECL qua(T s, vec<3, T, Q> const& v);
+
81 
+
82 # ifdef GLM_FORCE_QUAT_DATA_XYZW
+
83  GLM_CTOR_DECL qua(T x, T y, T z, T w);
+
84 # else
+
85  GLM_CTOR_DECL qua(T w, T x, T y, T z);
+
86 # endif
+
87 
+
88  GLM_FUNC_DECL static GLM_CONSTEXPR qua<T, Q> wxyz(T w, T x, T y, T z);
+
89 
+
90  // -- Conversion constructors --
+
91 
+
92  template<typename U, qualifier P>
+
93  GLM_CTOR_DECL GLM_EXPLICIT qua(qua<U, P> const& q);
+
94 
+
96 # if GLM_HAS_EXPLICIT_CONVERSION_OPERATORS
+
97  GLM_FUNC_DECL explicit operator mat<3, 3, T, Q>() const;
+
98  GLM_FUNC_DECL explicit operator mat<4, 4, T, Q>() const;
+
99 # endif
+
100 
+
107  GLM_FUNC_DISCARD_DECL qua(vec<3, T, Q> const& u, vec<3, T, Q> const& v);
+
108 
+
110  GLM_CTOR_DECL GLM_EXPLICIT qua(vec<3, T, Q> const& eulerAngles);
+
111  GLM_CTOR_DECL GLM_EXPLICIT qua(mat<3, 3, T, Q> const& q);
+
112  GLM_CTOR_DECL GLM_EXPLICIT qua(mat<4, 4, T, Q> const& q);
+
113 
+
114  // -- Unary arithmetic operators --
+
115 
+
116  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR qua<T, Q>& operator=(qua<T, Q> const& q) GLM_DEFAULT;
+
117 
+
118  template<typename U>
+
119  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR qua<T, Q>& operator=(qua<U, Q> const& q);
+
120  template<typename U>
+
121  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR qua<T, Q>& operator+=(qua<U, Q> const& q);
+
122  template<typename U>
+
123  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR qua<T, Q>& operator-=(qua<U, Q> const& q);
+
124  template<typename U>
+
125  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR qua<T, Q>& operator*=(qua<U, Q> const& q);
+
126  template<typename U>
+
127  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR qua<T, Q>& operator*=(U s);
+
128  template<typename U>
+
129  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR qua<T, Q>& operator/=(U s);
+
130  };
+
131 
+
132 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
133 # if GLM_COMPILER & GLM_COMPILER_CLANG
+
134 # pragma clang diagnostic pop
+
135 # elif GLM_COMPILER & GLM_COMPILER_GCC
+
136 # pragma GCC diagnostic pop
+
137 # elif GLM_COMPILER & GLM_COMPILER_VC
+
138 # pragma warning(pop)
+
139 # endif
+
140 # endif
+
141 
+
142  // -- Unary bit operators --
+
143 
+
144  template<typename T, qualifier Q>
+
145  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> operator+(qua<T, Q> const& q);
+
146 
+
147  template<typename T, qualifier Q>
+
148  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> operator-(qua<T, Q> const& q);
+
149 
+
150  // -- Binary operators --
+
151 
+
152  template<typename T, qualifier Q>
+
153  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> operator+(qua<T, Q> const& q, qua<T, Q> const& p);
+
154 
+
155  template<typename T, qualifier Q>
+
156  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> operator-(qua<T, Q> const& q, qua<T, Q> const& p);
+
157 
+
158  template<typename T, qualifier Q>
+
159  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> operator*(qua<T, Q> const& q, qua<T, Q> const& p);
+
160 
+
161  template<typename T, qualifier Q>
+
162  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator*(qua<T, Q> const& q, vec<3, T, Q> const& v);
+
163 
+
164  template<typename T, qualifier Q>
+
165  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator*(vec<3, T, Q> const& v, qua<T, Q> const& q);
+
166 
+
167  template<typename T, qualifier Q>
+
168  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator*(qua<T, Q> const& q, vec<4, T, Q> const& v);
+
169 
+
170  template<typename T, qualifier Q>
+
171  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator*(vec<4, T, Q> const& v, qua<T, Q> const& q);
+
172 
+
173  template<typename T, qualifier Q>
+
174  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> operator*(qua<T, Q> const& q, T const& s);
+
175 
+
176  template<typename T, qualifier Q>
+
177  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> operator*(T const& s, qua<T, Q> const& q);
+
178 
+
179  template<typename T, qualifier Q>
+
180  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> operator/(qua<T, Q> const& q, T const& s);
+
181 
+
182  // -- Boolean operators --
+
183 
+
184  template<typename T, qualifier Q>
+
185  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(qua<T, Q> const& q1, qua<T, Q> const& q2);
+
186 
+
187  template<typename T, qualifier Q>
+
188  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(qua<T, Q> const& q1, qua<T, Q> const& q2);
+
189 } //namespace glm
+
190 
+
191 #ifndef GLM_EXTERNAL_TEMPLATE
+
192 #include "type_quat.inl"
+
193 #endif//GLM_EXTERNAL_TEMPLATE
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
GLM_FUNC_DECL vec< 3, T, Q > eulerAngles(qua< T, Q > const &x)
Returns euler angles, pitch as x, yaw as y, roll as z.
+ + + + diff --git a/include/glm/doc/api/a00074.html b/include/glm/doc/api/a00074.html new file mode 100644 index 0000000..19944f2 --- /dev/null +++ b/include/glm/doc/api/a00074.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_vec1.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_vec1.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_vec1.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00074_source.html b/include/glm/doc/api/a00074_source.html new file mode 100644 index 0000000..1072fd9 --- /dev/null +++ b/include/glm/doc/api/a00074_source.html @@ -0,0 +1,383 @@ + + + + + + + +1.0.2 API documentation: type_vec1.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_vec1.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "qualifier.hpp"
+
7 #if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
8 # include "_swizzle.hpp"
+
9 #elif GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
10 # include "_swizzle_func.hpp"
+
11 #endif
+
12 #include <cstddef>
+
13 
+
14 namespace glm
+
15 {
+
16  template<typename T, qualifier Q>
+
17  struct vec<1, T, Q>
+
18  {
+
19  // -- Implementation detail --
+
20 
+
21  typedef T value_type;
+
22  typedef vec<1, T, Q> type;
+
23  typedef vec<1, bool, Q> bool_type;
+
24 
+
25  // -- Data --
+
26 
+
27 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
28 # if GLM_COMPILER & GLM_COMPILER_GCC
+
29 # pragma GCC diagnostic push
+
30 # pragma GCC diagnostic ignored "-Wpedantic"
+
31 # elif GLM_COMPILER & GLM_COMPILER_CLANG
+
32 # pragma clang diagnostic push
+
33 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct"
+
34 # pragma clang diagnostic ignored "-Wnested-anon-types"
+
35 # elif GLM_COMPILER & GLM_COMPILER_VC
+
36 # pragma warning(push)
+
37 # pragma warning(disable: 4201) // nonstandard extension used : nameless struct/union
+
38 # endif
+
39 # endif
+
40 
+
41 # if GLM_CONFIG_XYZW_ONLY
+
42  T x;
+
43 # elif GLM_CONFIG_ANONYMOUS_STRUCT == GLM_ENABLE
+
44  union
+
45  {
+
46  T x;
+
47  T r;
+
48  T s;
+
49 
+
50  typename detail::storage<1, T, detail::is_aligned<Q>::value>::type data;
+
51 /*
+
52 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
53  _GLM_SWIZZLE1_2_MEMBERS(T, Q, x)
+
54  _GLM_SWIZZLE1_2_MEMBERS(T, Q, r)
+
55  _GLM_SWIZZLE1_2_MEMBERS(T, Q, s)
+
56  _GLM_SWIZZLE1_3_MEMBERS(T, Q, x)
+
57  _GLM_SWIZZLE1_3_MEMBERS(T, Q, r)
+
58  _GLM_SWIZZLE1_3_MEMBERS(T, Q, s)
+
59  _GLM_SWIZZLE1_4_MEMBERS(T, Q, x)
+
60  _GLM_SWIZZLE1_4_MEMBERS(T, Q, r)
+
61  _GLM_SWIZZLE1_4_MEMBERS(T, Q, s)
+
62 # endif
+
63 */
+
64  };
+
65 # else
+
66  union {T x, r, s;};
+
67 /*
+
68 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
69  GLM_SWIZZLE_GEN_VEC_FROM_VEC1(T, Q)
+
70 # endif
+
71 */
+
72 # endif
+
73 
+
74 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
75 # if GLM_COMPILER & GLM_COMPILER_CLANG
+
76 # pragma clang diagnostic pop
+
77 # elif GLM_COMPILER & GLM_COMPILER_GCC
+
78 # pragma GCC diagnostic pop
+
79 # elif GLM_COMPILER & GLM_COMPILER_VC
+
80 # pragma warning(pop)
+
81 # endif
+
82 # endif
+
83 
+
84  // -- Component accesses --
+
85 
+
87  typedef length_t length_type;
+
88  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 1;}
+
89 
+
90  GLM_FUNC_DECL GLM_CONSTEXPR T & operator[](length_type i);
+
91  GLM_FUNC_DECL GLM_CONSTEXPR T const& operator[](length_type i) const;
+
92 
+
93  // -- Implicit basic constructors --
+
94 
+
95  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR vec() GLM_DEFAULT_CTOR;
+
96  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR vec(vec const& v) GLM_DEFAULT;
+
97  template<qualifier P>
+
98  GLM_CTOR_DECL vec(vec<1, T, P> const& v);
+
99 
+
100  // -- Explicit basic constructors --
+
101 
+
102  GLM_CTOR_DECL explicit vec(T scalar);
+
103 
+
104  // -- Conversion vector constructors --
+
105 
+
107  template<typename U, qualifier P>
+
108  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<2, U, P> const& v);
+
110  template<typename U, qualifier P>
+
111  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<3, U, P> const& v);
+
113  template<typename U, qualifier P>
+
114  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<4, U, P> const& v);
+
115 
+
117  template<typename U, qualifier P>
+
118  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<1, U, P> const& v);
+
119 
+
120  // -- Swizzle constructors --
+
121 /*
+
122 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
123  template<int E0>
+
124  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec(detail::_swizzle<1, T, Q, E0, -1,-2,-3> const& that)
+
125  {
+
126  *this = that();
+
127  }
+
128 # endif//GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
129 */
+
130  // -- Unary arithmetic operators --
+
131 
+
132  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> & operator=(vec const& v) GLM_DEFAULT;
+
133 
+
134  template<typename U>
+
135  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator=(vec<1, U, Q> const& v);
+
136  template<typename U>
+
137  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator+=(U scalar);
+
138  template<typename U>
+
139  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator+=(vec<1, U, Q> const& v);
+
140  template<typename U>
+
141  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator-=(U scalar);
+
142  template<typename U>
+
143  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator-=(vec<1, U, Q> const& v);
+
144  template<typename U>
+
145  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator*=(U scalar);
+
146  template<typename U>
+
147  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator*=(vec<1, U, Q> const& v);
+
148  template<typename U>
+
149  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator/=(U scalar);
+
150  template<typename U>
+
151  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator/=(vec<1, U, Q> const& v);
+
152 
+
153  // -- Increment and decrement operators --
+
154 
+
155  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator++();
+
156  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator--();
+
157  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator++(int);
+
158  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator--(int);
+
159 
+
160  // -- Unary bit operators --
+
161 
+
162  template<typename U>
+
163  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator%=(U scalar);
+
164  template<typename U>
+
165  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator%=(vec<1, U, Q> const& v);
+
166  template<typename U>
+
167  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator&=(U scalar);
+
168  template<typename U>
+
169  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator&=(vec<1, U, Q> const& v);
+
170  template<typename U>
+
171  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator|=(U scalar);
+
172  template<typename U>
+
173  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator|=(vec<1, U, Q> const& v);
+
174  template<typename U>
+
175  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator^=(U scalar);
+
176  template<typename U>
+
177  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator^=(vec<1, U, Q> const& v);
+
178  template<typename U>
+
179  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator<<=(U scalar);
+
180  template<typename U>
+
181  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator<<=(vec<1, U, Q> const& v);
+
182  template<typename U>
+
183  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator>>=(U scalar);
+
184  template<typename U>
+
185  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<1, T, Q> & operator>>=(vec<1, U, Q> const& v);
+
186  };
+
187 
+
188  // -- Unary operators --
+
189 
+
190  template<typename T, qualifier Q>
+
191  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator+(vec<1, T, Q> const& v);
+
192 
+
193  template<typename T, qualifier Q>
+
194  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator-(vec<1, T, Q> const& v);
+
195 
+
196  // -- Binary operators --
+
197 
+
198  template<typename T, qualifier Q>
+
199  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator+(vec<1, T, Q> const& v, T scalar);
+
200 
+
201  template<typename T, qualifier Q>
+
202  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator+(T scalar, vec<1, T, Q> const& v);
+
203 
+
204  template<typename T, qualifier Q>
+
205  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator+(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
206 
+
207  template<typename T, qualifier Q>
+
208  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator-(vec<1, T, Q> const& v, T scalar);
+
209 
+
210  template<typename T, qualifier Q>
+
211  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator-(T scalar, vec<1, T, Q> const& v);
+
212 
+
213  template<typename T, qualifier Q>
+
214  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator-(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
215 
+
216  template<typename T, qualifier Q>
+
217  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator*(vec<1, T, Q> const& v, T scalar);
+
218 
+
219  template<typename T, qualifier Q>
+
220  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator*(T scalar, vec<1, T, Q> const& v);
+
221 
+
222  template<typename T, qualifier Q>
+
223  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator*(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
224 
+
225  template<typename T, qualifier Q>
+
226  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator/(vec<1, T, Q> const& v, T scalar);
+
227 
+
228  template<typename T, qualifier Q>
+
229  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator/(T scalar, vec<1, T, Q> const& v);
+
230 
+
231  template<typename T, qualifier Q>
+
232  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator/(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
233 
+
234  template<typename T, qualifier Q>
+
235  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator%(vec<1, T, Q> const& v, T scalar);
+
236 
+
237  template<typename T, qualifier Q>
+
238  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator%(T scalar, vec<1, T, Q> const& v);
+
239 
+
240  template<typename T, qualifier Q>
+
241  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator%(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
242 
+
243  template<typename T, qualifier Q>
+
244  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator&(vec<1, T, Q> const& v, T scalar);
+
245 
+
246  template<typename T, qualifier Q>
+
247  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator&(T scalar, vec<1, T, Q> const& v);
+
248 
+
249  template<typename T, qualifier Q>
+
250  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator&(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
251 
+
252  template<typename T, qualifier Q>
+
253  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator|(vec<1, T, Q> const& v, T scalar);
+
254 
+
255  template<typename T, qualifier Q>
+
256  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator|(T scalar, vec<1, T, Q> const& v);
+
257 
+
258  template<typename T, qualifier Q>
+
259  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator|(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
260 
+
261  template<typename T, qualifier Q>
+
262  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator^(vec<1, T, Q> const& v, T scalar);
+
263 
+
264  template<typename T, qualifier Q>
+
265  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator^(T scalar, vec<1, T, Q> const& v);
+
266 
+
267  template<typename T, qualifier Q>
+
268  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator^(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
269 
+
270  template<typename T, qualifier Q>
+
271  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator<<(vec<1, T, Q> const& v, T scalar);
+
272 
+
273  template<typename T, qualifier Q>
+
274  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator<<(T scalar, vec<1, T, Q> const& v);
+
275 
+
276  template<typename T, qualifier Q>
+
277  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator<<(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
278 
+
279  template<typename T, qualifier Q>
+
280  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator>>(vec<1, T, Q> const& v, T scalar);
+
281 
+
282  template<typename T, qualifier Q>
+
283  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator>>(T scalar, vec<1, T, Q> const& v);
+
284 
+
285  template<typename T, qualifier Q>
+
286  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator>>(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
287 
+
288  template<typename T, qualifier Q>
+
289  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, T, Q> operator~(vec<1, T, Q> const& v);
+
290 
+
291  // -- Boolean operators --
+
292 
+
293  template<typename T, qualifier Q>
+
294  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
295 
+
296  template<typename T, qualifier Q>
+
297  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(vec<1, T, Q> const& v1, vec<1, T, Q> const& v2);
+
298 
+
299  template<qualifier Q>
+
300  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, bool, Q> operator&&(vec<1, bool, Q> const& v1, vec<1, bool, Q> const& v2);
+
301 
+
302  template<qualifier Q>
+
303  GLM_FUNC_DECL GLM_CONSTEXPR vec<1, bool, Q> operator||(vec<1, bool, Q> const& v1, vec<1, bool, Q> const& v2);
+
304 }//namespace glm
+
305 
+
306 #ifndef GLM_EXTERNAL_TEMPLATE
+
307 #include "type_vec1.inl"
+
308 #endif//GLM_EXTERNAL_TEMPLATE
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+ + + + diff --git a/include/glm/doc/api/a00077.html b/include/glm/doc/api/a00077.html new file mode 100644 index 0000000..51a2ea5 --- /dev/null +++ b/include/glm/doc/api/a00077.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_vec2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_vec2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_vec2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00077_source.html b/include/glm/doc/api/a00077_source.html new file mode 100644 index 0000000..c4b0421 --- /dev/null +++ b/include/glm/doc/api/a00077_source.html @@ -0,0 +1,481 @@ + + + + + + + +1.0.2 API documentation: type_vec2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_vec2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "qualifier.hpp"
+
7 #if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
8 # include "_swizzle.hpp"
+
9 #elif GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
10 # include "_swizzle_func.hpp"
+
11 #endif
+
12 #include <cstddef>
+
13 
+
14 namespace glm
+
15 {
+
16  template<typename T, qualifier Q>
+
17  struct vec<2, T, Q>
+
18  {
+
19  // -- Implementation detail --
+
20 
+
21  typedef T value_type;
+
22  typedef vec<2, T, Q> type;
+
23  typedef vec<2, bool, Q> bool_type;
+
24  enum is_aligned
+
25  {
+
26  value = false
+
27  };
+
28 
+
29  // -- Data --
+
30 
+
31 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
32 # if GLM_COMPILER & GLM_COMPILER_GCC
+
33 # pragma GCC diagnostic push
+
34 # pragma GCC diagnostic ignored "-Wpedantic"
+
35 # elif GLM_COMPILER & GLM_COMPILER_CLANG
+
36 # pragma clang diagnostic push
+
37 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct"
+
38 # pragma clang diagnostic ignored "-Wnested-anon-types"
+
39 # elif GLM_COMPILER & GLM_COMPILER_VC
+
40 # pragma warning(push)
+
41 # pragma warning(disable: 4201) // nonstandard extension used : nameless struct/union
+
42 # endif
+
43 # endif
+
44 
+
45 # if GLM_CONFIG_XYZW_ONLY
+
46  T x, y;
+
47 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
48  GLM_SWIZZLE_GEN_VEC_FROM_VEC2_COMP(T, Q, x, y)
+
49 # endif//GLM_CONFIG_SWIZZLE
+
50 # elif GLM_CONFIG_ANONYMOUS_STRUCT == GLM_ENABLE
+
51  union
+
52  {
+
53  struct{ T x, y; };
+
54  struct{ T r, g; };
+
55  struct{ T s, t; };
+
56 
+
57  typename detail::storage<2, T, detail::is_aligned<Q>::value>::type data;
+
58 
+
59 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
60  GLM_SWIZZLE2_2_MEMBERS(T, Q, x, y)
+
61  GLM_SWIZZLE2_2_MEMBERS(T, Q, r, g)
+
62  GLM_SWIZZLE2_2_MEMBERS(T, Q, s, t)
+
63  GLM_SWIZZLE2_3_MEMBERS(T, Q, x, y)
+
64  GLM_SWIZZLE2_3_MEMBERS(T, Q, r, g)
+
65  GLM_SWIZZLE2_3_MEMBERS(T, Q, s, t)
+
66  GLM_SWIZZLE2_4_MEMBERS(T, Q, x, y)
+
67  GLM_SWIZZLE2_4_MEMBERS(T, Q, r, g)
+
68  GLM_SWIZZLE2_4_MEMBERS(T, Q, s, t)
+
69 # endif
+
70  };
+
71 # else
+
72  union {T x, r, s;};
+
73  union {T y, g, t;};
+
74 
+
75 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
76  GLM_SWIZZLE_GEN_VEC_FROM_VEC2(T, Q)
+
77 # endif//GLM_CONFIG_SWIZZLE
+
78 # endif
+
79 
+
80 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
81 # if GLM_COMPILER & GLM_COMPILER_CLANG
+
82 # pragma clang diagnostic pop
+
83 # elif GLM_COMPILER & GLM_COMPILER_GCC
+
84 # pragma GCC diagnostic pop
+
85 # elif GLM_COMPILER & GLM_COMPILER_VC
+
86 # pragma warning(pop)
+
87 # endif
+
88 # endif
+
89 
+
90  // -- Component accesses --
+
91 
+
93  typedef length_t length_type;
+
94  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 2;}
+
95 
+
96  GLM_FUNC_DECL GLM_CONSTEXPR T& operator[](length_type i);
+
97  GLM_FUNC_DECL GLM_CONSTEXPR T const& operator[](length_type i) const;
+
98 
+
99  // -- Implicit basic constructors --
+
100 
+
101  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR vec() GLM_DEFAULT_CTOR;
+
102  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR vec(vec const& v) GLM_DEFAULT;
+
103  template<qualifier P>
+
104  GLM_CTOR_DECL vec(vec<2, T, P> const& v);
+
105 
+
106  // -- Explicit basic constructors --
+
107 
+
108  GLM_CTOR_DECL explicit vec(T scalar);
+
109  GLM_CTOR_DECL vec(T x, T y);
+
110 
+
111  // -- Conversion constructors --
+
112 
+
113  template<typename U, qualifier P>
+
114  GLM_CTOR_DECL explicit vec(vec<1, U, P> const& v);
+
115 
+
117  template<typename A, typename B>
+
118  GLM_CTOR_DECL vec(A x, B y);
+
119  template<typename A, typename B>
+
120  GLM_CTOR_DECL vec(vec<1, A, Q> const& x, B y);
+
121  template<typename A, typename B>
+
122  GLM_CTOR_DECL vec(A x, vec<1, B, Q> const& y);
+
123  template<typename A, typename B>
+
124  GLM_CTOR_DECL vec(vec<1, A, Q> const& x, vec<1, B, Q> const& y);
+
125 
+
126  // -- Conversion vector constructors --
+
127 
+
129  template<typename U, qualifier P>
+
130  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<3, U, P> const& v);
+
132  template<typename U, qualifier P>
+
133  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<4, U, P> const& v);
+
134 
+
136  template<typename U, qualifier P>
+
137  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<2, U, P> const& v);
+
138 
+
139  // -- Swizzle constructors --
+
140 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
141  template<int E0, int E1>
+
142  GLM_FUNC_DISCARD_DECL vec(detail::_swizzle<2, T, Q, E0, E1,-1,-2> const& that)
+
143  {
+
144  *this = that();
+
145  }
+
146 # endif//GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
147 
+
148  // -- Unary arithmetic operators --
+
149 
+
150  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> & operator=(vec const& v) GLM_DEFAULT;
+
151 
+
152  template<typename U>
+
153  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator=(vec<2, U, Q> const& v);
+
154  template<typename U>
+
155  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator+=(U scalar);
+
156  template<typename U>
+
157  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator+=(vec<1, U, Q> const& v);
+
158  template<typename U>
+
159  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator+=(vec<2, U, Q> const& v);
+
160  template<typename U>
+
161  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator-=(U scalar);
+
162  template<typename U>
+
163  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator-=(vec<1, U, Q> const& v);
+
164  template<typename U>
+
165  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator-=(vec<2, U, Q> const& v);
+
166  template<typename U>
+
167  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator*=(U scalar);
+
168  template<typename U>
+
169  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator*=(vec<1, U, Q> const& v);
+
170  template<typename U>
+
171  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator*=(vec<2, U, Q> const& v);
+
172  template<typename U>
+
173  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator/=(U scalar);
+
174  template<typename U>
+
175  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator/=(vec<1, U, Q> const& v);
+
176  template<typename U>
+
177  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator/=(vec<2, U, Q> const& v);
+
178 
+
179  // -- Increment and decrement operators --
+
180 
+
181  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator++();
+
182  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator--();
+
183  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator++(int);
+
184  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator--(int);
+
185 
+
186  // -- Unary bit operators --
+
187 
+
188  template<typename U>
+
189  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator%=(U scalar);
+
190  template<typename U>
+
191  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator%=(vec<1, U, Q> const& v);
+
192  template<typename U>
+
193  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator%=(vec<2, U, Q> const& v);
+
194  template<typename U>
+
195  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator&=(U scalar);
+
196  template<typename U>
+
197  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator&=(vec<1, U, Q> const& v);
+
198  template<typename U>
+
199  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator&=(vec<2, U, Q> const& v);
+
200  template<typename U>
+
201  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator|=(U scalar);
+
202  template<typename U>
+
203  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator|=(vec<1, U, Q> const& v);
+
204  template<typename U>
+
205  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator|=(vec<2, U, Q> const& v);
+
206  template<typename U>
+
207  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator^=(U scalar);
+
208  template<typename U>
+
209  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator^=(vec<1, U, Q> const& v);
+
210  template<typename U>
+
211  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator^=(vec<2, U, Q> const& v);
+
212  template<typename U>
+
213  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator<<=(U scalar);
+
214  template<typename U>
+
215  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator<<=(vec<1, U, Q> const& v);
+
216  template<typename U>
+
217  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator<<=(vec<2, U, Q> const& v);
+
218  template<typename U>
+
219  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator>>=(U scalar);
+
220  template<typename U>
+
221  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator>>=(vec<1, U, Q> const& v);
+
222  template<typename U>
+
223  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<2, T, Q> & operator>>=(vec<2, U, Q> const& v);
+
224  };
+
225 
+
226  // -- Unary operators --
+
227 
+
228  template<typename T, qualifier Q>
+
229  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator+(vec<2, T, Q> const& v);
+
230 
+
231  template<typename T, qualifier Q>
+
232  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator-(vec<2, T, Q> const& v);
+
233 
+
234  // -- Binary operators --
+
235 
+
236  template<typename T, qualifier Q>
+
237  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator+(vec<2, T, Q> const& v, T scalar);
+
238 
+
239  template<typename T, qualifier Q>
+
240  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator+(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
241 
+
242  template<typename T, qualifier Q>
+
243  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator+(T scalar, vec<2, T, Q> const& v);
+
244 
+
245  template<typename T, qualifier Q>
+
246  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator+(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
247 
+
248  template<typename T, qualifier Q>
+
249  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator+(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
250 
+
251  template<typename T, qualifier Q>
+
252  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator-(vec<2, T, Q> const& v, T scalar);
+
253 
+
254  template<typename T, qualifier Q>
+
255  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator-(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
256 
+
257  template<typename T, qualifier Q>
+
258  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator-(T scalar, vec<2, T, Q> const& v);
+
259 
+
260  template<typename T, qualifier Q>
+
261  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator-(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
262 
+
263  template<typename T, qualifier Q>
+
264  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator-(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
265 
+
266  template<typename T, qualifier Q>
+
267  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator*(vec<2, T, Q> const& v, T scalar);
+
268 
+
269  template<typename T, qualifier Q>
+
270  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator*(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
271 
+
272  template<typename T, qualifier Q>
+
273  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator*(T scalar, vec<2, T, Q> const& v);
+
274 
+
275  template<typename T, qualifier Q>
+
276  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator*(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
277 
+
278  template<typename T, qualifier Q>
+
279  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator*(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
280 
+
281  template<typename T, qualifier Q>
+
282  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator/(vec<2, T, Q> const& v, T scalar);
+
283 
+
284  template<typename T, qualifier Q>
+
285  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator/(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
286 
+
287  template<typename T, qualifier Q>
+
288  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator/(T scalar, vec<2, T, Q> const& v);
+
289 
+
290  template<typename T, qualifier Q>
+
291  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator/(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
292 
+
293  template<typename T, qualifier Q>
+
294  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator/(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
295 
+
296  template<typename T, qualifier Q>
+
297  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator%(vec<2, T, Q> const& v, T scalar);
+
298 
+
299  template<typename T, qualifier Q>
+
300  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator%(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
301 
+
302  template<typename T, qualifier Q>
+
303  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator%(T scalar, vec<2, T, Q> const& v);
+
304 
+
305  template<typename T, qualifier Q>
+
306  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator%(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
307 
+
308  template<typename T, qualifier Q>
+
309  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator%(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
310 
+
311  template<typename T, qualifier Q>
+
312  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator&(vec<2, T, Q> const& v, T scalar);
+
313 
+
314  template<typename T, qualifier Q>
+
315  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator&(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
316 
+
317  template<typename T, qualifier Q>
+
318  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator&(T scalar, vec<2, T, Q> const& v);
+
319 
+
320  template<typename T, qualifier Q>
+
321  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator&(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
322 
+
323  template<typename T, qualifier Q>
+
324  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator&(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
325 
+
326  template<typename T, qualifier Q>
+
327  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator|(vec<2, T, Q> const& v, T scalar);
+
328 
+
329  template<typename T, qualifier Q>
+
330  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator|(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
331 
+
332  template<typename T, qualifier Q>
+
333  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator|(T scalar, vec<2, T, Q> const& v);
+
334 
+
335  template<typename T, qualifier Q>
+
336  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator|(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
337 
+
338  template<typename T, qualifier Q>
+
339  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator|(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
340 
+
341  template<typename T, qualifier Q>
+
342  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator^(vec<2, T, Q> const& v, T scalar);
+
343 
+
344  template<typename T, qualifier Q>
+
345  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator^(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
346 
+
347  template<typename T, qualifier Q>
+
348  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator^(T scalar, vec<2, T, Q> const& v);
+
349 
+
350  template<typename T, qualifier Q>
+
351  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator^(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
352 
+
353  template<typename T, qualifier Q>
+
354  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator^(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
355 
+
356  template<typename T, qualifier Q>
+
357  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator<<(vec<2, T, Q> const& v, T scalar);
+
358 
+
359  template<typename T, qualifier Q>
+
360  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator<<(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
361 
+
362  template<typename T, qualifier Q>
+
363  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator<<(T scalar, vec<2, T, Q> const& v);
+
364 
+
365  template<typename T, qualifier Q>
+
366  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator<<(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
367 
+
368  template<typename T, qualifier Q>
+
369  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator<<(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
370 
+
371  template<typename T, qualifier Q>
+
372  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator>>(vec<2, T, Q> const& v, T scalar);
+
373 
+
374  template<typename T, qualifier Q>
+
375  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator>>(vec<2, T, Q> const& v1, vec<1, T, Q> const& v2);
+
376 
+
377  template<typename T, qualifier Q>
+
378  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator>>(T scalar, vec<2, T, Q> const& v);
+
379 
+
380  template<typename T, qualifier Q>
+
381  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator>>(vec<1, T, Q> const& v1, vec<2, T, Q> const& v2);
+
382 
+
383  template<typename T, qualifier Q>
+
384  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator>>(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
385 
+
386  template<typename T, qualifier Q>
+
387  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, T, Q> operator~(vec<2, T, Q> const& v);
+
388 
+
389  // -- Boolean operators --
+
390 
+
391  template<typename T, qualifier Q>
+
392  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
393 
+
394  template<typename T, qualifier Q>
+
395  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(vec<2, T, Q> const& v1, vec<2, T, Q> const& v2);
+
396 
+
397  template<qualifier Q>
+
398  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, bool, Q> operator&&(vec<2, bool, Q> const& v1, vec<2, bool, Q> const& v2);
+
399 
+
400  template<qualifier Q>
+
401  GLM_FUNC_DECL GLM_CONSTEXPR vec<2, bool, Q> operator||(vec<2, bool, Q> const& v1, vec<2, bool, Q> const& v2);
+
402 }//namespace glm
+
403 
+
404 #ifndef GLM_EXTERNAL_TEMPLATE
+
405 #include "type_vec2.inl"
+
406 #endif//GLM_EXTERNAL_TEMPLATE
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+ + + + diff --git a/include/glm/doc/api/a00080.html b/include/glm/doc/api/a00080.html new file mode 100644 index 0000000..97d8dad --- /dev/null +++ b/include/glm/doc/api/a00080.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_vec3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_vec3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_vec3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00080_source.html b/include/glm/doc/api/a00080_source.html new file mode 100644 index 0000000..3bafe76 --- /dev/null +++ b/include/glm/doc/api/a00080_source.html @@ -0,0 +1,519 @@ + + + + + + + +1.0.2 API documentation: type_vec3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_vec3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "qualifier.hpp"
+
7 #if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
8 # include "_swizzle.hpp"
+
9 #elif GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
10 # include "_swizzle_func.hpp"
+
11 #endif
+
12 #include <cstddef>
+
13 
+
14 namespace glm
+
15 {
+
16  template<typename T, qualifier Q>
+
17  struct vec<3, T, Q>
+
18  {
+
19  // -- Implementation detail --
+
20 
+
21  typedef T value_type;
+
22  typedef vec<3, T, Q> type;
+
23  typedef vec<3, bool, Q> bool_type;
+
24 
+
25  enum is_aligned
+
26  {
+
27  value = detail::is_aligned<Q>::value
+
28  };
+
29 
+
30  // -- Data --
+
31 
+
32 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
33 # if GLM_COMPILER & GLM_COMPILER_GCC
+
34 # pragma GCC diagnostic push
+
35 # pragma GCC diagnostic ignored "-Wpedantic"
+
36 # elif GLM_COMPILER & GLM_COMPILER_CLANG
+
37 # pragma clang diagnostic push
+
38 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct"
+
39 # pragma clang diagnostic ignored "-Wnested-anon-types"
+
40 # pragma clang diagnostic ignored "-Wpadded"
+
41 # elif GLM_COMPILER & GLM_COMPILER_VC
+
42 # pragma warning(push)
+
43 # pragma warning(disable: 4201) // nonstandard extension used : nameless struct/union
+
44 # if GLM_CONFIG_ALIGNED_GENTYPES == GLM_ENABLE
+
45 # pragma warning(disable: 4324) // structure was padded due to alignment specifier
+
46 # endif
+
47 # endif
+
48 # endif
+
49 
+
50 # if GLM_CONFIG_XYZW_ONLY
+
51  T x, y, z;
+
52 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
53  GLM_SWIZZLE_GEN_VEC_FROM_VEC3_COMP(T, Q, x, y, z)
+
54 # endif//GLM_CONFIG_SWIZZLE
+
55 # elif GLM_CONFIG_ANONYMOUS_STRUCT == GLM_ENABLE
+
56  union
+
57  {
+
58  struct{ T x, y, z; };
+
59  struct{ T r, g, b; };
+
60  struct{ T s, t, p; };
+
61 
+
62  typename detail::storage<3, T, detail::is_aligned<Q>::value>::type data;
+
63 
+
64 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
65  GLM_SWIZZLE3_2_MEMBERS(T, Q, x, y, z)
+
66  GLM_SWIZZLE3_2_MEMBERS(T, Q, r, g, b)
+
67  GLM_SWIZZLE3_2_MEMBERS(T, Q, s, t, p)
+
68  GLM_SWIZZLE3_3_MEMBERS(T, Q, x, y, z)
+
69  GLM_SWIZZLE3_3_MEMBERS(T, Q, r, g, b)
+
70  GLM_SWIZZLE3_3_MEMBERS(T, Q, s, t, p)
+
71  GLM_SWIZZLE3_4_MEMBERS(T, Q, x, y, z)
+
72  GLM_SWIZZLE3_4_MEMBERS(T, Q, r, g, b)
+
73  GLM_SWIZZLE3_4_MEMBERS(T, Q, s, t, p)
+
74 # endif
+
75  };
+
76 # else
+
77  union { T x, r, s; };
+
78  union { T y, g, t; };
+
79  union { T z, b, p; };
+
80 
+
81 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
82  GLM_SWIZZLE_GEN_VEC_FROM_VEC3(T, Q)
+
83 # endif//GLM_CONFIG_SWIZZLE
+
84 # endif//GLM_LANG
+
85 
+
86 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
87 # if GLM_COMPILER & GLM_COMPILER_CLANG
+
88 # pragma clang diagnostic pop
+
89 # elif GLM_COMPILER & GLM_COMPILER_GCC
+
90 # pragma GCC diagnostic pop
+
91 # elif GLM_COMPILER & GLM_COMPILER_VC
+
92 # pragma warning(pop)
+
93 # endif
+
94 # endif
+
95 
+
96  // -- Component accesses --
+
97 
+
99  typedef length_t length_type;
+
100  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 3;}
+
101 
+
102  GLM_FUNC_DECL GLM_CONSTEXPR T & operator[](length_type i);
+
103  GLM_FUNC_DECL GLM_CONSTEXPR T const& operator[](length_type i) const;
+
104 
+
105  // -- Implicit basic constructors --
+
106 
+
107  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR vec() GLM_DEFAULT_CTOR;
+
108  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR vec(vec const& v) GLM_DEFAULT;
+
109  template<qualifier P>
+
110  GLM_CTOR_DECL vec(vec<3, T, P> const& v);
+
111 
+
112  // -- Explicit basic constructors --
+
113 
+
114  GLM_CTOR_DECL explicit vec(T scalar);
+
115  GLM_CTOR_DECL vec(T a, T b, T c);
+
116 
+
117  // -- Conversion scalar constructors --
+
118 
+
119  template<typename U, qualifier P>
+
120  GLM_CTOR_DECL explicit vec(vec<1, U, P> const& v);
+
121 
+
123  template<typename X, typename Y, typename Z>
+
124  GLM_CTOR_DECL vec(X x, Y y, Z z);
+
125  template<typename X, typename Y, typename Z>
+
126  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, Y _y, Z _z);
+
127  template<typename X, typename Y, typename Z>
+
128  GLM_CTOR_DECL vec(X _x, vec<1, Y, Q> const& _y, Z _z);
+
129  template<typename X, typename Y, typename Z>
+
130  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, vec<1, Y, Q> const& _y, Z _z);
+
131  template<typename X, typename Y, typename Z>
+
132  GLM_CTOR_DECL vec(X _x, Y _y, vec<1, Z, Q> const& _z);
+
133  template<typename X, typename Y, typename Z>
+
134  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, Y _y, vec<1, Z, Q> const& _z);
+
135  template<typename X, typename Y, typename Z>
+
136  GLM_CTOR_DECL vec(X _x, vec<1, Y, Q> const& _y, vec<1, Z, Q> const& _z);
+
137  template<typename X, typename Y, typename Z>
+
138  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, vec<1, Y, Q> const& _y, vec<1, Z, Q> const& _z);
+
139 
+
140  // -- Conversion vector constructors --
+
141 
+
143  template<typename A, typename B, qualifier P>
+
144  GLM_CTOR_DECL vec(vec<2, A, P> const& _xy, B _z);
+
146  template<typename A, typename B, qualifier P>
+
147  GLM_CTOR_DECL vec(vec<2, A, P> const& _xy, vec<1, B, P> const& _z);
+
149  template<typename A, typename B, qualifier P>
+
150  GLM_CTOR_DECL vec(A _x, vec<2, B, P> const& _yz);
+
152  template<typename A, typename B, qualifier P>
+
153  GLM_CTOR_DECL vec(vec<1, A, P> const& _x, vec<2, B, P> const& _yz);
+
155  template<typename U, qualifier P>
+
156  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<4, U, P> const& v);
+
157 
+
159  template<typename U, qualifier P>
+
160  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<3, U, P> const& v);
+
161 
+
162  // -- Swizzle constructors --
+
163 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
164  template<int E0, int E1, int E2>
+
165  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec(detail::_swizzle<3, T, Q, E0, E1, E2, -1> const& that)
+
166  {
+
167  *this = that();
+
168  }
+
169 
+
170  template<int E0, int E1>
+
171  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec(detail::_swizzle<2, T, Q, E0, E1, -1, -2> const& v, T const& scalar)
+
172  {
+
173  *this = vec(v(), scalar);
+
174  }
+
175 
+
176  template<int E0, int E1>
+
177  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec(T const& scalar, detail::_swizzle<2, T, Q, E0, E1, -1, -2> const& v)
+
178  {
+
179  *this = vec(scalar, v());
+
180  }
+
181 # endif//GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
182 
+
183  // -- Unary arithmetic operators --
+
184 
+
185  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q>& operator=(vec<3, T, Q> const& v) GLM_DEFAULT;
+
186 
+
187  template<typename U>
+
188  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator=(vec<3, U, Q> const& v);
+
189  template<typename U>
+
190  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator+=(U scalar);
+
191  template<typename U>
+
192  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator+=(vec<1, U, Q> const& v);
+
193  template<typename U>
+
194  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator+=(vec<3, U, Q> const& v);
+
195  template<typename U>
+
196  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator-=(U scalar);
+
197  template<typename U>
+
198  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator-=(vec<1, U, Q> const& v);
+
199  template<typename U>
+
200  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator-=(vec<3, U, Q> const& v);
+
201  template<typename U>
+
202  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator*=(U scalar);
+
203  template<typename U>
+
204  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator*=(vec<1, U, Q> const& v);
+
205  template<typename U>
+
206  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator*=(vec<3, U, Q> const& v);
+
207  template<typename U>
+
208  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator/=(U scalar);
+
209  template<typename U>
+
210  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator/=(vec<1, U, Q> const& v);
+
211  template<typename U>
+
212  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator/=(vec<3, U, Q> const& v);
+
213 
+
214  // -- Increment and decrement operators --
+
215 
+
216  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator++();
+
217  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator--();
+
218  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator++(int);
+
219  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator--(int);
+
220 
+
221  // -- Unary bit operators --
+
222 
+
223  template<typename U>
+
224  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator%=(U scalar);
+
225  template<typename U>
+
226  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator%=(vec<1, U, Q> const& v);
+
227  template<typename U>
+
228  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator%=(vec<3, U, Q> const& v);
+
229  template<typename U>
+
230  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator&=(U scalar);
+
231  template<typename U>
+
232  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator&=(vec<1, U, Q> const& v);
+
233  template<typename U>
+
234  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator&=(vec<3, U, Q> const& v);
+
235  template<typename U>
+
236  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator|=(U scalar);
+
237  template<typename U>
+
238  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator|=(vec<1, U, Q> const& v);
+
239  template<typename U>
+
240  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator|=(vec<3, U, Q> const& v);
+
241  template<typename U>
+
242  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator^=(U scalar);
+
243  template<typename U>
+
244  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator^=(vec<1, U, Q> const& v);
+
245  template<typename U>
+
246  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator^=(vec<3, U, Q> const& v);
+
247  template<typename U>
+
248  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator<<=(U scalar);
+
249  template<typename U>
+
250  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator<<=(vec<1, U, Q> const& v);
+
251  template<typename U>
+
252  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator<<=(vec<3, U, Q> const& v);
+
253  template<typename U>
+
254  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator>>=(U scalar);
+
255  template<typename U>
+
256  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator>>=(vec<1, U, Q> const& v);
+
257  template<typename U>
+
258  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<3, T, Q> & operator>>=(vec<3, U, Q> const& v);
+
259  };
+
260 
+
261 
+
262 
+
263  // -- Unary operators --
+
264 
+
265  template<typename T, qualifier Q>
+
266  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator+(vec<3, T, Q> const& v);
+
267 
+
268  template<typename T, qualifier Q>
+
269  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator-(vec<3, T, Q> const& v);
+
270 
+
271  // -- Binary operators --
+
272 
+
273  template<typename T, qualifier Q>
+
274  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator+(vec<3, T, Q> const& v, T scalar);
+
275 
+
276  template<typename T, qualifier Q>
+
277  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator+(vec<3, T, Q> const& v, vec<1, T, Q> const& scalar);
+
278 
+
279  template<typename T, qualifier Q>
+
280  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator+(T scalar, vec<3, T, Q> const& v);
+
281 
+
282  template<typename T, qualifier Q>
+
283  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator+(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
284 
+
285  template<typename T, qualifier Q>
+
286  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator+(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
287 
+
288  template<typename T, qualifier Q>
+
289  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator-(vec<3, T, Q> const& v, T scalar);
+
290 
+
291  template<typename T, qualifier Q>
+
292  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator-(vec<3, T, Q> const& v1, vec<1, T, Q> const& v2);
+
293 
+
294  template<typename T, qualifier Q>
+
295  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator-(T scalar, vec<3, T, Q> const& v);
+
296 
+
297  template<typename T, qualifier Q>
+
298  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator-(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
299 
+
300  template<typename T, qualifier Q>
+
301  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator-(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
302 
+
303  template<typename T, qualifier Q>
+
304  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator*(vec<3, T, Q> const& v, T scalar);
+
305 
+
306  template<typename T, qualifier Q>
+
307  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator*(vec<3, T, Q> const& v1, vec<1, T, Q> const& v2);
+
308 
+
309  template<typename T, qualifier Q>
+
310  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator*(T scalar, vec<3, T, Q> const& v);
+
311 
+
312  template<typename T, qualifier Q>
+
313  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator*(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
314 
+
315  template<typename T, qualifier Q>
+
316  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator*(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
317 
+
318  template<typename T, qualifier Q>
+
319  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator/(vec<3, T, Q> const& v, T scalar);
+
320 
+
321  template<typename T, qualifier Q>
+
322  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator/(vec<3, T, Q> const& v1, vec<1, T, Q> const& v2);
+
323 
+
324  template<typename T, qualifier Q>
+
325  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator/(T scalar, vec<3, T, Q> const& v);
+
326 
+
327  template<typename T, qualifier Q>
+
328  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator/(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
329 
+
330  template<typename T, qualifier Q>
+
331  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator/(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
332 
+
333  template<typename T, qualifier Q>
+
334  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator%(vec<3, T, Q> const& v, T scalar);
+
335 
+
336  template<typename T, qualifier Q>
+
337  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator%(vec<3, T, Q> const& v1, vec<1, T, Q> const& v2);
+
338 
+
339  template<typename T, qualifier Q>
+
340  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator%(T scalar, vec<3, T, Q> const& v);
+
341 
+
342  template<typename T, qualifier Q>
+
343  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator%(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
344 
+
345  template<typename T, qualifier Q>
+
346  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator%(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
347 
+
348  template<typename T, qualifier Q>
+
349  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator&(vec<3, T, Q> const& v1, T scalar);
+
350 
+
351  template<typename T, qualifier Q>
+
352  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator&(vec<3, T, Q> const& v1, vec<1, T, Q> const& v2);
+
353 
+
354  template<typename T, qualifier Q>
+
355  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator&(T scalar, vec<3, T, Q> const& v);
+
356 
+
357  template<typename T, qualifier Q>
+
358  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator&(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
359 
+
360  template<typename T, qualifier Q>
+
361  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator&(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
362 
+
363  template<typename T, qualifier Q>
+
364  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator|(vec<3, T, Q> const& v, T scalar);
+
365 
+
366  template<typename T, qualifier Q>
+
367  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator|(vec<3, T, Q> const& v1, vec<1, T, Q> const& v2);
+
368 
+
369  template<typename T, qualifier Q>
+
370  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator|(T scalar, vec<3, T, Q> const& v);
+
371 
+
372  template<typename T, qualifier Q>
+
373  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator|(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
374 
+
375  template<typename T, qualifier Q>
+
376  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator|(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
377 
+
378  template<typename T, qualifier Q>
+
379  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator^(vec<3, T, Q> const& v, T scalar);
+
380 
+
381  template<typename T, qualifier Q>
+
382  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator^(vec<3, T, Q> const& v1, vec<1, T, Q> const& v2);
+
383 
+
384  template<typename T, qualifier Q>
+
385  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator^(T scalar, vec<3, T, Q> const& v);
+
386 
+
387  template<typename T, qualifier Q>
+
388  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator^(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
389 
+
390  template<typename T, qualifier Q>
+
391  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator^(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
392 
+
393  template<typename T, qualifier Q>
+
394  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator<<(vec<3, T, Q> const& v, T scalar);
+
395 
+
396  template<typename T, qualifier Q>
+
397  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator<<(vec<3, T, Q> const& v1, vec<1, T, Q> const& v2);
+
398 
+
399  template<typename T, qualifier Q>
+
400  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator<<(T scalar, vec<3, T, Q> const& v);
+
401 
+
402  template<typename T, qualifier Q>
+
403  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator<<(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
404 
+
405  template<typename T, qualifier Q>
+
406  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator<<(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
407 
+
408  template<typename T, qualifier Q>
+
409  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator>>(vec<3, T, Q> const& v, T scalar);
+
410 
+
411  template<typename T, qualifier Q>
+
412  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator>>(vec<3, T, Q> const& v1, vec<1, T, Q> const& v2);
+
413 
+
414  template<typename T, qualifier Q>
+
415  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator>>(T scalar, vec<3, T, Q> const& v);
+
416 
+
417  template<typename T, qualifier Q>
+
418  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator>>(vec<1, T, Q> const& v1, vec<3, T, Q> const& v2);
+
419 
+
420  template<typename T, qualifier Q>
+
421  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator>>(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
422 
+
423  template<typename T, qualifier Q>
+
424  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> operator~(vec<3, T, Q> const& v);
+
425 
+
426  // -- Boolean operators --
+
427 
+
428  template<typename T, qualifier Q>
+
429  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
430 
+
431  template<typename T, qualifier Q>
+
432  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(vec<3, T, Q> const& v1, vec<3, T, Q> const& v2);
+
433 
+
434  template<qualifier Q>
+
435  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, bool, Q> operator&&(vec<3, bool, Q> const& v1, vec<3, bool, Q> const& v2);
+
436 
+
437  template<qualifier Q>
+
438  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, bool, Q> operator||(vec<3, bool, Q> const& v1, vec<3, bool, Q> const& v2);
+
439 
+
440 
+
441 
+
442 
+
443 }//namespace glm
+
444 
+
445 #ifndef GLM_EXTERNAL_TEMPLATE
+
446 #include "type_vec3.inl"
+
447 #endif//GLM_EXTERNAL_TEMPLATE
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+ + + + diff --git a/include/glm/doc/api/a00083.html b/include/glm/doc/api/a00083.html new file mode 100644 index 0000000..be0699b --- /dev/null +++ b/include/glm/doc/api/a00083.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: type_vec4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_vec4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file type_vec4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00083_source.html b/include/glm/doc/api/a00083_source.html new file mode 100644 index 0000000..5c68a3a --- /dev/null +++ b/include/glm/doc/api/a00083_source.html @@ -0,0 +1,574 @@ + + + + + + + +1.0.2 API documentation: type_vec4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_vec4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 
+
6 #include "qualifier.hpp"
+
7 #if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
8 # include "_swizzle.hpp"
+
9 #elif GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
10 # include "_swizzle_func.hpp"
+
11 #endif
+
12 #include <cstddef>
+
13 
+
14 namespace glm
+
15 {
+
16  template<typename T, qualifier Q>
+
17  struct vec<4, T, Q>
+
18  {
+
19  // -- Implementation detail --
+
20 
+
21  typedef T value_type;
+
22  typedef vec<4, T, Q> type;
+
23  typedef vec<4, bool, Q> bool_type;
+
24 
+
25  enum is_aligned
+
26  {
+
27  value = detail::is_aligned<Q>::value
+
28  };
+
29 
+
30  // -- Data --
+
31 
+
32 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
33 # if GLM_COMPILER & GLM_COMPILER_GCC
+
34 # pragma GCC diagnostic push
+
35 # pragma GCC diagnostic ignored "-Wpedantic"
+
36 # elif GLM_COMPILER & GLM_COMPILER_CLANG
+
37 # pragma clang diagnostic push
+
38 # pragma clang diagnostic ignored "-Wgnu-anonymous-struct"
+
39 # pragma clang diagnostic ignored "-Wnested-anon-types"
+
40 # elif GLM_COMPILER & GLM_COMPILER_VC
+
41 # pragma warning(push)
+
42 # pragma warning(disable: 4201) // nonstandard extension used : nameless struct/union
+
43 # endif
+
44 # endif
+
45 
+
46 # if GLM_CONFIG_XYZW_ONLY
+
47  T x, y, z, w;
+
48 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
49  GLM_SWIZZLE_GEN_VEC_FROM_VEC4_COMP(T, Q, x, y, z, w)
+
50 # endif//GLM_CONFIG_SWIZZLE
+
51 # elif GLM_CONFIG_ANONYMOUS_STRUCT == GLM_ENABLE
+
52  union
+
53  {
+
54  struct { T x, y, z, w; };
+
55  struct { T r, g, b, a; };
+
56  struct { T s, t, p, q; };
+
57 
+
58  typename detail::storage<4, T, detail::is_aligned<Q>::value>::type data;
+
59 
+
60 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
61  GLM_SWIZZLE4_2_MEMBERS(T, Q, x, y, z, w)
+
62  GLM_SWIZZLE4_2_MEMBERS(T, Q, r, g, b, a)
+
63  GLM_SWIZZLE4_2_MEMBERS(T, Q, s, t, p, q)
+
64  GLM_SWIZZLE4_3_MEMBERS(T, Q, x, y, z, w)
+
65  GLM_SWIZZLE4_3_MEMBERS(T, Q, r, g, b, a)
+
66  GLM_SWIZZLE4_3_MEMBERS(T, Q, s, t, p, q)
+
67  GLM_SWIZZLE4_4_MEMBERS(T, Q, x, y, z, w)
+
68  GLM_SWIZZLE4_4_MEMBERS(T, Q, r, g, b, a)
+
69  GLM_SWIZZLE4_4_MEMBERS(T, Q, s, t, p, q)
+
70 # endif
+
71  };
+
72 # else
+
73  union { T x, r, s; };
+
74  union { T y, g, t; };
+
75  union { T z, b, p; };
+
76  union { T w, a, q; };
+
77 
+
78 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_FUNCTION
+
79  GLM_SWIZZLE_GEN_VEC_FROM_VEC4(T, Q)
+
80 # endif
+
81 # endif
+
82 
+
83 # if GLM_SILENT_WARNINGS == GLM_ENABLE
+
84 # if GLM_COMPILER & GLM_COMPILER_CLANG
+
85 # pragma clang diagnostic pop
+
86 # elif GLM_COMPILER & GLM_COMPILER_GCC
+
87 # pragma GCC diagnostic pop
+
88 # elif GLM_COMPILER & GLM_COMPILER_VC
+
89 # pragma warning(pop)
+
90 # endif
+
91 # endif
+
92 
+
93  // -- Component accesses --
+
94 
+
95  typedef length_t length_type;
+
96 
+
98  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 4;}
+
99 
+
100  GLM_FUNC_DECL GLM_CONSTEXPR T & operator[](length_type i);
+
101  GLM_FUNC_DECL GLM_CONSTEXPR T const& operator[](length_type i) const;
+
102 
+
103  // -- Implicit basic constructors --
+
104 
+
105  GLM_DEFAULTED_DEFAULT_CTOR_DECL GLM_CONSTEXPR vec() GLM_DEFAULT_CTOR;
+
106  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR vec(vec<4, T, Q> const& v) GLM_DEFAULT;
+
107  template<qualifier P>
+
108  GLM_CTOR_DECL vec(vec<4, T, P> const& v);
+
109 
+
110  // -- Explicit basic constructors --
+
111 
+
112  GLM_CTOR_DECL explicit vec(T scalar);
+
113  GLM_CTOR_DECL vec(T x, T y, T z, T w);
+
114 
+
115  // -- Conversion scalar constructors --
+
116 
+
117  template<typename U, qualifier P>
+
118  GLM_CTOR_DECL explicit vec(vec<1, U, P> const& v);
+
119 
+
121  template<typename X, typename Y, typename Z, typename W>
+
122  GLM_CTOR_DECL vec(X _x, Y _y, Z _z, W _w);
+
123  template<typename X, typename Y, typename Z, typename W>
+
124  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, Y _y, Z _z, W _w);
+
125  template<typename X, typename Y, typename Z, typename W>
+
126  GLM_CTOR_DECL vec(X _x, vec<1, Y, Q> const& _y, Z _z, W _w);
+
127  template<typename X, typename Y, typename Z, typename W>
+
128  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, vec<1, Y, Q> const& _y, Z _z, W _w);
+
129  template<typename X, typename Y, typename Z, typename W>
+
130  GLM_CTOR_DECL vec(X _x, Y _y, vec<1, Z, Q> const& _z, W _w);
+
131  template<typename X, typename Y, typename Z, typename W>
+
132  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, Y _y, vec<1, Z, Q> const& _z, W _w);
+
133  template<typename X, typename Y, typename Z, typename W>
+
134  GLM_CTOR_DECL vec(X _x, vec<1, Y, Q> const& _y, vec<1, Z, Q> const& _z, W _w);
+
135  template<typename X, typename Y, typename Z, typename W>
+
136  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, vec<1, Y, Q> const& _y, vec<1, Z, Q> const& _z, W _w);
+
137  template<typename X, typename Y, typename Z, typename W>
+
138  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, Y _y, Z _z, vec<1, W, Q> const& _w);
+
139  template<typename X, typename Y, typename Z, typename W>
+
140  GLM_CTOR_DECL vec(X _x, vec<1, Y, Q> const& _y, Z _z, vec<1, W, Q> const& _w);
+
141  template<typename X, typename Y, typename Z, typename W>
+
142  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, vec<1, Y, Q> const& _y, Z _z, vec<1, W, Q> const& _w);
+
143  template<typename X, typename Y, typename Z, typename W>
+
144  GLM_CTOR_DECL vec(X _x, Y _y, vec<1, Z, Q> const& _z, vec<1, W, Q> const& _w);
+
145  template<typename X, typename Y, typename Z, typename W>
+
146  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, Y _y, vec<1, Z, Q> const& _z, vec<1, W, Q> const& _w);
+
147  template<typename X, typename Y, typename Z, typename W>
+
148  GLM_CTOR_DECL vec(X _x, vec<1, Y, Q> const& _y, vec<1, Z, Q> const& _z, vec<1, W, Q> const& _w);
+
149  template<typename X, typename Y, typename Z, typename W>
+
150  GLM_CTOR_DECL vec(vec<1, X, Q> const& _x, vec<1, Y, Q> const& _y, vec<1, Z, Q> const& _z, vec<1, W, Q> const& _w);
+
151 
+
152  // -- Conversion vector constructors --
+
153 
+
155  template<typename A, typename B, typename C, qualifier P>
+
156  GLM_CTOR_DECL vec(vec<2, A, P> const& _xy, B _z, C _w);
+
158  template<typename A, typename B, typename C, qualifier P>
+
159  GLM_CTOR_DECL vec(vec<2, A, P> const& _xy, vec<1, B, P> const& _z, C _w);
+
161  template<typename A, typename B, typename C, qualifier P>
+
162  GLM_CTOR_DECL vec(vec<2, A, P> const& _xy, B _z, vec<1, C, P> const& _w);
+
164  template<typename A, typename B, typename C, qualifier P>
+
165  GLM_CTOR_DECL vec(vec<2, A, P> const& _xy, vec<1, B, P> const& _z, vec<1, C, P> const& _w);
+
167  template<typename A, typename B, typename C, qualifier P>
+
168  GLM_CTOR_DECL vec(A _x, vec<2, B, P> const& _yz, C _w);
+
170  template<typename A, typename B, typename C, qualifier P>
+
171  GLM_CTOR_DECL vec(vec<1, A, P> const& _x, vec<2, B, P> const& _yz, C _w);
+
173  template<typename A, typename B, typename C, qualifier P>
+
174  GLM_CTOR_DECL vec(A _x, vec<2, B, P> const& _yz, vec<1, C, P> const& _w);
+
176  template<typename A, typename B, typename C, qualifier P>
+
177  GLM_CTOR_DECL vec(vec<1, A, P> const& _x, vec<2, B, P> const& _yz, vec<1, C, P> const& _w);
+
179  template<typename A, typename B, typename C, qualifier P>
+
180  GLM_CTOR_DECL vec(A _x, B _y, vec<2, C, P> const& _zw);
+
182  template<typename A, typename B, typename C, qualifier P>
+
183  GLM_CTOR_DECL vec(vec<1, A, P> const& _x, B _y, vec<2, C, P> const& _zw);
+
185  template<typename A, typename B, typename C, qualifier P>
+
186  GLM_CTOR_DECL vec(A _x, vec<1, B, P> const& _y, vec<2, C, P> const& _zw);
+
188  template<typename A, typename B, typename C, qualifier P>
+
189  GLM_CTOR_DECL vec(vec<1, A, P> const& _x, vec<1, B, P> const& _y, vec<2, C, P> const& _zw);
+
191  template<typename A, typename B, qualifier P>
+
192  GLM_CTOR_DECL vec(vec<3, A, P> const& _xyz, B _w);
+
194  template<typename A, typename B, qualifier P>
+
195  GLM_CTOR_DECL vec(vec<3, A, P> const& _xyz, vec<1, B, P> const& _w);
+
197  template<typename A, typename B, qualifier P>
+
198  GLM_CTOR_DECL vec(A _x, vec<3, B, P> const& _yzw);
+
200  template<typename A, typename B, qualifier P>
+
201  GLM_CTOR_DECL vec(vec<1, A, P> const& _x, vec<3, B, P> const& _yzw);
+
203  template<typename A, typename B, qualifier P>
+
204  GLM_CTOR_DECL vec(vec<2, A, P> const& _xy, vec<2, B, P> const& _zw);
+
205 
+
207  template<typename U, qualifier P>
+
208  GLM_CTOR_DECL GLM_EXPLICIT vec(vec<4, U, P> const& v);
+
209 
+
210  // -- Swizzle constructors --
+
211 # if GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
212  template<int E0, int E1, int E2, int E3>
+
213  GLM_FUNC_DISCARD_DECL vec(detail::_swizzle<4, T, Q, E0, E1, E2, E3> const& that)
+
214  {
+
215  *this = that();
+
216  }
+
217 
+
218  template<int E0, int E1, int F0, int F1>
+
219  GLM_FUNC_DISCARD_DECL vec(detail::_swizzle<2, T, Q, E0, E1, -1, -2> const& v, detail::_swizzle<2, T, Q, F0, F1, -1, -2> const& u)
+
220  {
+
221  *this = vec<4, T, Q>(v(), u());
+
222  }
+
223 
+
224  template<int E0, int E1>
+
225  GLM_FUNC_DISCARD_DECL vec(T const& x, T const& y, detail::_swizzle<2, T, Q, E0, E1, -1, -2> const& v)
+
226  {
+
227  *this = vec<4, T, Q>(x, y, v());
+
228  }
+
229 
+
230  template<int E0, int E1>
+
231  GLM_FUNC_DISCARD_DECL vec(T const& x, detail::_swizzle<2, T, Q, E0, E1, -1, -2> const& v, T const& w)
+
232  {
+
233  *this = vec<4, T, Q>(x, v(), w);
+
234  }
+
235 
+
236  template<int E0, int E1>
+
237  GLM_FUNC_DISCARD_DECL vec(detail::_swizzle<2, T, Q, E0, E1, -1, -2> const& v, T const& z, T const& w)
+
238  {
+
239  *this = vec<4, T, Q>(v(), z, w);
+
240  }
+
241 
+
242  template<int E0, int E1, int E2>
+
243  GLM_FUNC_DISCARD_DECL vec(detail::_swizzle<3, T, Q, E0, E1, E2, 3> const& v, T const& w)
+
244  {
+
245  *this = vec<4, T, Q>(v(), w);
+
246  }
+
247 
+
248  template<int E0, int E1, int E2>
+
249  GLM_FUNC_DISCARD_DECL vec(T const& x, detail::_swizzle<3, T, Q, E0, E1, E2, 3> const& v)
+
250  {
+
251  *this = vec<4, T, Q>(x, v());
+
252  }
+
253 # endif//GLM_CONFIG_SWIZZLE == GLM_SWIZZLE_OPERATOR
+
254 
+
255  // -- Unary arithmetic operators --
+
256 
+
257  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q>& operator=(vec<4, T, Q> const& v) GLM_DEFAULT;
+
258 
+
259  template<typename U>
+
260  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator=(vec<4, U, Q> const& v);
+
261  template<typename U>
+
262  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator+=(U scalar);
+
263  template<typename U>
+
264  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator+=(vec<1, U, Q> const& v);
+
265  template<typename U>
+
266  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator+=(vec<4, U, Q> const& v);
+
267  template<typename U>
+
268  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator-=(U scalar);
+
269  template<typename U>
+
270  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator-=(vec<1, U, Q> const& v);
+
271  template<typename U>
+
272  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator-=(vec<4, U, Q> const& v);
+
273  template<typename U>
+
274  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator*=(U scalar);
+
275  template<typename U>
+
276  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator*=(vec<1, U, Q> const& v);
+
277  template<typename U>
+
278  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator*=(vec<4, U, Q> const& v);
+
279  template<typename U>
+
280  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator/=(U scalar);
+
281  template<typename U>
+
282  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator/=(vec<1, U, Q> const& v);
+
283  template<typename U>
+
284  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q>& operator/=(vec<4, U, Q> const& v);
+
285 
+
286  // -- Increment and decrement operators --
+
287 
+
288  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q> & operator++();
+
289  GLM_FUNC_DISCARD_DECL GLM_CONSTEXPR vec<4, T, Q> & operator--();
+
290  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator++(int);
+
291  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator--(int);
+
292 
+
293  // -- Unary bit operators --
+
294 
+
295  template<typename U>
+
296  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator%=(U scalar);
+
297  template<typename U>
+
298  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator%=(vec<1, U, Q> const& v);
+
299  template<typename U>
+
300  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator%=(vec<4, U, Q> const& v);
+
301  template<typename U>
+
302  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator&=(U scalar);
+
303  template<typename U>
+
304  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator&=(vec<1, U, Q> const& v);
+
305  template<typename U>
+
306  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator&=(vec<4, U, Q> const& v);
+
307  template<typename U>
+
308  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator|=(U scalar);
+
309  template<typename U>
+
310  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator|=(vec<1, U, Q> const& v);
+
311  template<typename U>
+
312  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator|=(vec<4, U, Q> const& v);
+
313  template<typename U>
+
314  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator^=(U scalar);
+
315  template<typename U>
+
316  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator^=(vec<1, U, Q> const& v);
+
317  template<typename U>
+
318  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator^=(vec<4, U, Q> const& v);
+
319  template<typename U>
+
320  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator<<=(U scalar);
+
321  template<typename U>
+
322  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator<<=(vec<1, U, Q> const& v);
+
323  template<typename U>
+
324  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator<<=(vec<4, U, Q> const& v);
+
325  template<typename U>
+
326  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator>>=(U scalar);
+
327  template<typename U>
+
328  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator>>=(vec<1, U, Q> const& v);
+
329  template<typename U>
+
330  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> & operator>>=(vec<4, U, Q> const& v);
+
331  };
+
332 
+
333 
+
334  // -- Unary operators --
+
335 
+
336  template<typename T, qualifier Q>
+
337  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator+(vec<4, T, Q> const& v);
+
338 
+
339  template<typename T, qualifier Q>
+
340  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator-(vec<4, T, Q> const& v);
+
341 
+
342  // -- Binary operators --
+
343 
+
344  template<typename T, qualifier Q>
+
345  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator+(vec<4, T, Q> const& v, T scalar);
+
346 
+
347  template<typename T, qualifier Q>
+
348  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator+(vec<4, T, Q> const& v1, vec<1, T, Q> const& v2);
+
349 
+
350  template<typename T, qualifier Q>
+
351  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator+(T scalar, vec<4, T, Q> const& v);
+
352 
+
353  template<typename T, qualifier Q>
+
354  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator+(vec<1, T, Q> const& v1, vec<4, T, Q> const& v2);
+
355 
+
356  template<typename T, qualifier Q>
+
357  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator+(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
358 
+
359  template<typename T, qualifier Q>
+
360  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator-(vec<4, T, Q> const& v, T scalar);
+
361 
+
362  template<typename T, qualifier Q>
+
363  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator-(vec<4, T, Q> const& v1, vec<1, T, Q> const& v2);
+
364 
+
365  template<typename T, qualifier Q>
+
366  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator-(T scalar, vec<4, T, Q> const& v);
+
367 
+
368  template<typename T, qualifier Q>
+
369  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator-(vec<1, T, Q> const& v1, vec<4, T, Q> const& v2);
+
370 
+
371  template<typename T, qualifier Q>
+
372  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator-(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
373 
+
374  template<typename T, qualifier Q>
+
375  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator*(vec<4, T, Q> const& v, T scalar);
+
376 
+
377  template<typename T, qualifier Q>
+
378  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator*(vec<4, T, Q> const& v1, vec<1, T, Q> const& v2);
+
379 
+
380  template<typename T, qualifier Q>
+
381  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator*(T scalar, vec<4, T, Q> const& v);
+
382 
+
383  template<typename T, qualifier Q>
+
384  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator*(vec<1, T, Q> const& v1, vec<4, T, Q> const& v2);
+
385 
+
386  template<typename T, qualifier Q>
+
387  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator*(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
388 
+
389  template<typename T, qualifier Q>
+
390  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator/(vec<4, T, Q> const& v, T scalar);
+
391 
+
392  template<typename T, qualifier Q>
+
393  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator/(vec<4, T, Q> const& v1, vec<1, T, Q> const& v2);
+
394 
+
395  template<typename T, qualifier Q>
+
396  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator/(T scalar, vec<4, T, Q> const& v);
+
397 
+
398  template<typename T, qualifier Q>
+
399  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator/(vec<1, T, Q> const& v1, vec<4, T, Q> const& v2);
+
400 
+
401  template<typename T, qualifier Q>
+
402  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator/(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
403 
+
404  template<typename T, qualifier Q>
+
405  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator%(vec<4, T, Q> const& v, T scalar);
+
406 
+
407  template<typename T, qualifier Q>
+
408  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator%(vec<4, T, Q> const& v, vec<1, T, Q> const& scalar);
+
409 
+
410  template<typename T, qualifier Q>
+
411  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator%(T scalar, vec<4, T, Q> const& v);
+
412 
+
413  template<typename T, qualifier Q>
+
414  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator%(vec<1, T, Q> const& scalar, vec<4, T, Q> const& v);
+
415 
+
416  template<typename T, qualifier Q>
+
417  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator%(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
418 
+
419  template<typename T, qualifier Q>
+
420  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator&(vec<4, T, Q> const& v, T scalar);
+
421 
+
422  template<typename T, qualifier Q>
+
423  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator&(vec<4, T, Q> const& v, vec<1, T, Q> const& scalar);
+
424 
+
425  template<typename T, qualifier Q>
+
426  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator&(T scalar, vec<4, T, Q> const& v);
+
427 
+
428  template<typename T, qualifier Q>
+
429  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator&(vec<1, T, Q> const& scalar, vec<4, T, Q> const& v);
+
430 
+
431  template<typename T, qualifier Q>
+
432  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator&(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
433 
+
434  template<typename T, qualifier Q>
+
435  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator|(vec<4, T, Q> const& v, T scalar);
+
436 
+
437  template<typename T, qualifier Q>
+
438  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator|(vec<4, T, Q> const& v, vec<1, T, Q> const& scalar);
+
439 
+
440  template<typename T, qualifier Q>
+
441  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator|(T scalar, vec<4, T, Q> const& v);
+
442 
+
443  template<typename T, qualifier Q>
+
444  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator|(vec<1, T, Q> const& scalar, vec<4, T, Q> const& v);
+
445 
+
446  template<typename T, qualifier Q>
+
447  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator|(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
448 
+
449  template<typename T, qualifier Q>
+
450  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator^(vec<4, T, Q> const& v, T scalar);
+
451 
+
452  template<typename T, qualifier Q>
+
453  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator^(vec<4, T, Q> const& v, vec<1, T, Q> const& scalar);
+
454 
+
455  template<typename T, qualifier Q>
+
456  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator^(T scalar, vec<4, T, Q> const& v);
+
457 
+
458  template<typename T, qualifier Q>
+
459  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator^(vec<1, T, Q> const& scalar, vec<4, T, Q> const& v);
+
460 
+
461  template<typename T, qualifier Q>
+
462  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator^(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
463 
+
464  template<typename T, qualifier Q>
+
465  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator<<(vec<4, T, Q> const& v, T scalar);
+
466 
+
467  template<typename T, qualifier Q>
+
468  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator<<(vec<4, T, Q> const& v, vec<1, T, Q> const& scalar);
+
469 
+
470  template<typename T, qualifier Q>
+
471  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator<<(T scalar, vec<4, T, Q> const& v);
+
472 
+
473  template<typename T, qualifier Q>
+
474  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator<<(vec<1, T, Q> const& scalar, vec<4, T, Q> const& v);
+
475 
+
476  template<typename T, qualifier Q>
+
477  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator<<(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
478 
+
479  template<typename T, qualifier Q>
+
480  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator>>(vec<4, T, Q> const& v, T scalar);
+
481 
+
482  template<typename T, qualifier Q>
+
483  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator>>(vec<4, T, Q> const& v, vec<1, T, Q> const& scalar);
+
484 
+
485  template<typename T, qualifier Q>
+
486  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator>>(T scalar, vec<4, T, Q> const& v);
+
487 
+
488  template<typename T, qualifier Q>
+
489  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator>>(vec<1, T, Q> const& scalar, vec<4, T, Q> const& v);
+
490 
+
491  template<typename T, qualifier Q>
+
492  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator>>(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
493 
+
494  template<typename T, qualifier Q>
+
495  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, T, Q> operator~(vec<4, T, Q> const& v);
+
496 
+
497  // -- Boolean operators --
+
498 
+
499  template<typename T, qualifier Q>
+
500  GLM_FUNC_DECL GLM_CONSTEXPR bool operator==(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
501 
+
502  template<typename T, qualifier Q>
+
503  GLM_FUNC_DECL GLM_CONSTEXPR bool operator!=(vec<4, T, Q> const& v1, vec<4, T, Q> const& v2);
+
504 
+
505  template<qualifier Q>
+
506  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> operator&&(vec<4, bool, Q> const& v1, vec<4, bool, Q> const& v2);
+
507 
+
508  template<qualifier Q>
+
509  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> operator||(vec<4, bool, Q> const& v1, vec<4, bool, Q> const& v2);
+
510 }//namespace glm
+
511 
+
512 #ifndef GLM_EXTERNAL_TEMPLATE
+
513 #include "type_vec4.inl"
+
514 #endif//GLM_EXTERNAL_TEMPLATE
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+ + + + diff --git a/include/glm/doc/api/a00086.html b/include/glm/doc/api/a00086.html new file mode 100644 index 0000000..99a3df4 --- /dev/null +++ b/include/glm/doc/api/a00086.html @@ -0,0 +1,125 @@ + + + + + + + +1.0.2 API documentation: exponential.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
exponential.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > exp (vec< L, T, Q > const &v)
 Returns the natural exponentiation of v, i.e., e^v. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > exp2 (vec< L, T, Q > const &v)
 Returns 2 raised to the v power. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > inversesqrt (vec< L, T, Q > const &v)
 Returns the reciprocal of the positive square root of v. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > log (vec< L, T, Q > const &v)
 Returns the natural logarithm of v, i.e., returns the value y which satisfies the equation x = e^y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > log2 (vec< L, T, Q > const &v)
 Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > pow (vec< L, T, Q > const &base, vec< L, T, Q > const &exponent)
 Returns 'base' raised to the power 'exponent'. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > sqrt (vec< L, T, Q > const &v)
 Returns the positive square root of v. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00086_source.html b/include/glm/doc/api/a00086_source.html new file mode 100644 index 0000000..e9a4ff2 --- /dev/null +++ b/include/glm/doc/api/a00086_source.html @@ -0,0 +1,128 @@ + + + + + + + +1.0.2 API documentation: exponential.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
exponential.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 #include "detail/type_vec1.hpp"
+
18 #include "detail/type_vec2.hpp"
+
19 #include "detail/type_vec3.hpp"
+
20 #include "detail/type_vec4.hpp"
+
21 #include <cmath>
+
22 
+
23 namespace glm
+
24 {
+
27 
+
35  template<length_t L, typename T, qualifier Q>
+
36  GLM_FUNC_DECL vec<L, T, Q> pow(vec<L, T, Q> const& base, vec<L, T, Q> const& exponent);
+
37 
+
46  template<length_t L, typename T, qualifier Q>
+
47  GLM_FUNC_DECL vec<L, T, Q> exp(vec<L, T, Q> const& v);
+
48 
+
59  template<length_t L, typename T, qualifier Q>
+
60  GLM_FUNC_DECL vec<L, T, Q> log(vec<L, T, Q> const& v);
+
61 
+
70  template<length_t L, typename T, qualifier Q>
+
71  GLM_FUNC_DECL vec<L, T, Q> exp2(vec<L, T, Q> const& v);
+
72 
+
82  template<length_t L, typename T, qualifier Q>
+
83  GLM_FUNC_DECL vec<L, T, Q> log2(vec<L, T, Q> const& v);
+
84 
+
93  template<length_t L, typename T, qualifier Q>
+
94  GLM_FUNC_DECL vec<L, T, Q> sqrt(vec<L, T, Q> const& v);
+
95 
+
104  template<length_t L, typename T, qualifier Q>
+
105  GLM_FUNC_DECL vec<L, T, Q> inversesqrt(vec<L, T, Q> const& v);
+
106 
+
108 }//namespace glm
+
109 
+
110 #include "detail/func_exponential.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > log(vec< L, T, Q > const &v)
Returns the natural logarithm of v, i.e., returns the value y which satisfies the equation x = e^y.
+
Core features
+
GLM_FUNC_DECL vec< L, T, Q > exp2(vec< L, T, Q > const &v)
Returns 2 raised to the v power.
+
Core features
+
GLM_FUNC_DECL vec< L, T, Q > pow(vec< L, T, Q > const &base, vec< L, T, Q > const &exponent)
Returns 'base' raised to the power 'exponent'.
+
Core features
+
GLM_FUNC_DECL vec< L, T, Q > log2(vec< L, T, Q > const &v)
Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y.
+
GLM_FUNC_DECL vec< L, T, Q > exp(vec< L, T, Q > const &v)
Returns the natural exponentiation of v, i.e., e^v.
+
Core features
+
GLM_FUNC_DECL vec< L, T, Q > inversesqrt(vec< L, T, Q > const &v)
Returns the reciprocal of the positive square root of v.
+
GLM_FUNC_DECL vec< L, T, Q > sqrt(vec< L, T, Q > const &v)
Returns the positive square root of v.
+ + + + diff --git a/include/glm/doc/api/a00089_source.html b/include/glm/doc/api/a00089_source.html new file mode 100644 index 0000000..e597189 --- /dev/null +++ b/include/glm/doc/api/a00089_source.html @@ -0,0 +1,209 @@ + + + + + + + +1.0.2 API documentation: _matrix_vectorize.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
_matrix_vectorize.hpp
+
+
+
1 #pragma once
+
2 
+
3 namespace glm {
+
4 
+
5  namespace detail {
+
6 
+
7  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, length_t C, length_t R, typename Ret, typename T, qualifier Q>
+
8  struct matrix_functor_1 {
+
9  };
+
10 
+
11  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, typename Ret, typename T, qualifier Q>
+
12  struct matrix_functor_1<mat, 2, 2, Ret, T, Q> {
+
13  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat<2, 2, T, Q> call(Ret (*Func)(T x), mat<2, 2, T, Q> const &x) {
+
14  return mat<2, 2, Ret, Q>(
+
15  Func(x[0][0]), Func(x[0][1]),
+
16  Func(x[1][0]), Func(x[1][1])
+
17  );
+
18  }
+
19  };
+
20 
+
21  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, typename Ret, typename T, qualifier Q>
+
22  struct matrix_functor_1<mat, 2, 3, Ret, T, Q> {
+
23 
+
24  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat<2, 3, T, Q> call(Ret (*Func)(T x), mat<2, 3, T, Q> const &x) {
+
25  return mat<2, 3, Ret, Q>(
+
26  Func(x[0][0]), Func(x[0][1]), Func(x[0][2]),
+
27  Func(x[1][0]), Func(x[1][1]), Func(x[1][2])
+
28  );
+
29  }
+
30 
+
31  };
+
32 
+
33  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, typename Ret, typename T, qualifier Q>
+
34  struct matrix_functor_1<mat, 2, 4, Ret, T, Q> {
+
35 
+
36  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat<2, 4, T, Q> call(Ret (*Func)(T x), mat<2, 4, T, Q> const &x) {
+
37  return mat<2, 4, Ret, Q>(
+
38  Func(x[0][0]), Func(x[0][1]), Func(x[0][2]), Func(x[0][3]),
+
39  Func(x[1][0]), Func(x[1][1]), Func(x[1][2]), Func(x[1][3])
+
40  );
+
41  }
+
42 
+
43  };
+
44 
+
45  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, typename Ret, typename T, qualifier Q>
+
46  struct matrix_functor_1<mat, 3, 2, Ret, T, Q> {
+
47 
+
48  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat<3, 2, T, Q> call(Ret (*Func)(T x), mat<3, 2, T, Q> const &x) {
+
49  return mat<3, 2, Ret, Q>(
+
50  Func(x[0][0]), Func(x[0][1]),
+
51  Func(x[1][0]), Func(x[1][1]),
+
52  Func(x[2][0]), Func(x[2][1])
+
53  );
+
54  }
+
55 
+
56  };
+
57 
+
58  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, typename Ret, typename T, qualifier Q>
+
59  struct matrix_functor_1<mat, 3, 3, Ret, T, Q> {
+
60 
+
61  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat<3, 3, T, Q> call(Ret (*Func)(T x), mat<3, 3, T, Q> const &x) {
+
62  return mat<3, 3, Ret, Q>(
+
63  Func(x[0][0]), Func(x[0][1]), Func(x[0][2]),
+
64  Func(x[1][0]), Func(x[1][1]), Func(x[1][2]),
+
65  Func(x[2][0]), Func(x[2][1]), Func(x[2][2])
+
66  );
+
67  }
+
68 
+
69  };
+
70 
+
71  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, typename Ret, typename T, qualifier Q>
+
72  struct matrix_functor_1<mat, 3, 4, Ret, T, Q> {
+
73 
+
74  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat<3, 4, T, Q> call(Ret (*Func)(T x), mat<3, 4, T, Q> const &x) {
+
75  return mat<3, 4, Ret, Q>(
+
76  Func(x[0][0]), Func(x[0][1]), Func(x[0][2]), Func(x[0][3]),
+
77  Func(x[1][0]), Func(x[1][1]), Func(x[1][2]), Func(x[1][3]),
+
78  Func(x[2][0]), Func(x[2][1]), Func(x[2][2]), Func(x[2][3])
+
79  );
+
80  }
+
81 
+
82  };
+
83 
+
84  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, typename Ret, typename T, qualifier Q>
+
85  struct matrix_functor_1<mat, 4, 2, Ret, T, Q> {
+
86 
+
87  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat<4, 2, T, Q> call(Ret (*Func)(T x), mat<4, 2, T, Q> const &x) {
+
88  return mat<4, 2, Ret, Q>(
+
89  Func(x[0][0]), Func(x[0][1]),
+
90  Func(x[1][0]), Func(x[1][1]),
+
91  Func(x[2][0]), Func(x[2][1]),
+
92  Func(x[3][0]), Func(x[3][1])
+
93  );
+
94  }
+
95 
+
96  };
+
97 
+
98  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, typename Ret, typename T, qualifier Q>
+
99  struct matrix_functor_1<mat, 4, 3, Ret, T, Q> {
+
100 
+
101  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat<4, 3, T, Q> call(Ret (*Func)(T x), mat<4, 3, T, Q> const &x) {
+
102  return mat<4, 3, Ret, Q>(
+
103  Func(x[0][0]), Func(x[0][1]), Func(x[0][2]),
+
104  Func(x[1][0]), Func(x[1][1]), Func(x[1][2]),
+
105  Func(x[2][0]), Func(x[2][1]), Func(x[2][2]),
+
106  Func(x[3][0]), Func(x[3][1]), Func(x[3][2])
+
107  );
+
108  }
+
109 
+
110  };
+
111 
+
112  template<template<length_t C, length_t R, typename T, qualifier Q> class mat, typename Ret, typename T, qualifier Q>
+
113  struct matrix_functor_1<mat, 4, 4, Ret, T, Q> {
+
114 
+
115  GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat<4, 4, T, Q> call(Ret (*Func)(T x), mat<4, 4, T, Q> const &x) {
+
116  return mat<4, 4, Ret, Q>(
+
117  Func(x[0][0]), Func(x[0][1]), Func(x[0][2]), Func(x[0][3]),
+
118  Func(x[1][0]), Func(x[1][1]), Func(x[1][2]), Func(x[1][3]),
+
119  Func(x[2][0]), Func(x[2][1]), Func(x[2][2]), Func(x[2][3]),
+
120  Func(x[3][0]), Func(x[3][1]), Func(x[3][2]), Func(x[3][3])
+
121  );
+
122  }
+
123 
+
124  };
+
125 
+
126  }
+
127 
+
128 }// namespace glm
+
+ + + + diff --git a/include/glm/doc/api/a00092.html b/include/glm/doc/api/a00092.html new file mode 100644 index 0000000..d5f4611 --- /dev/null +++ b/include/glm/doc/api/a00092.html @@ -0,0 +1,280 @@ + + + + + + + +1.0.2 API documentation: matrix_clip_space.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_clip_space.hpp File Reference
+
+
+ +

GLM_EXT_matrix_clip_space +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustum (T left, T right, T bottom, T top, T near, T far)
 Creates a frustum matrix with default handedness, using the default handedness and default near and far clip planes definition. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumLH (T left, T right, T bottom, T top, T near, T far)
 Creates a left-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumLH_NO (T left, T right, T bottom, T top, T near, T far)
 Creates a left-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumLH_ZO (T left, T right, T bottom, T top, T near, T far)
 Creates a left-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumNO (T left, T right, T bottom, T top, T near, T far)
 Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumRH (T left, T right, T bottom, T top, T near, T far)
 Creates a right-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumRH_NO (T left, T right, T bottom, T top, T near, T far)
 Creates a right-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumRH_ZO (T left, T right, T bottom, T top, T near, T far)
 Creates a right-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumZO (T left, T right, T bottom, T top, T near, T far)
 Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspective (T fovy, T aspect, T near)
 Creates a matrix for a symmetric perspective-view frustum with far plane at infinite with default handedness. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveLH (T fovy, T aspect, T near)
 Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveLH_NO (T fovy, T aspect, T near)
 Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveLH_ZO (T fovy, T aspect, T near)
 Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveRH (T fovy, T aspect, T near)
 Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveRH_NO (T fovy, T aspect, T near)
 Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveRH_ZO (T fovy, T aspect, T near)
 Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > ortho (T left, T right, T bottom, T top)
 Creates a matrix for projecting two-dimensional coordinates onto the screen. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > ortho (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using the default handedness and default near and far clip planes definition. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoLH (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoLH_NO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoLH_ZO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoNO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoRH (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoRH_NO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoRH_ZO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoZO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspective (T fovy, T aspect, T near, T far)
 Creates a matrix for a symmetric perspective-view frustum based on the default handedness and default near and far clip planes definition. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFov (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view and the default handedness and default near and far clip planes definition. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovLH (T fov, T width, T height, T near, T far)
 Builds a left-handed perspective projection matrix based on a field of view. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovLH_NO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovLH_ZO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovNO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovRH (T fov, T width, T height, T near, T far)
 Builds a right-handed perspective projection matrix based on a field of view. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovRH_NO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovRH_ZO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovZO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveLH (T fovy, T aspect, T near, T far)
 Creates a matrix for a left-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveLH_NO (T fovy, T aspect, T near, T far)
 Creates a matrix for a left-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveLH_ZO (T fovy, T aspect, T near, T far)
 Creates a matrix for a left-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveNO (T fovy, T aspect, T near, T far)
 Creates a matrix for a symmetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveRH (T fovy, T aspect, T near, T far)
 Creates a matrix for a right-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveRH_NO (T fovy, T aspect, T near, T far)
 Creates a matrix for a right-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveRH_ZO (T fovy, T aspect, T near, T far)
 Creates a matrix for a right-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveZO (T fovy, T aspect, T near, T far)
 Creates a matrix for a symmetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > tweakedInfinitePerspective (T fovy, T aspect, T near)
 Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > tweakedInfinitePerspective (T fovy, T aspect, T near, T ep)
 Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00092_source.html b/include/glm/doc/api/a00092_source.html new file mode 100644 index 0000000..e15dfc2 --- /dev/null +++ b/include/glm/doc/api/a00092_source.html @@ -0,0 +1,328 @@ + + + + + + + +1.0.2 API documentation: matrix_clip_space.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_clip_space.hpp
+
+
+Go to the documentation of this file.
1 
+
20 #pragma once
+
21 
+
22 // Dependencies
+
23 #include "../ext/scalar_constants.hpp"
+
24 #include "../geometric.hpp"
+
25 #include "../trigonometric.hpp"
+
26 
+
27 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
28 # pragma message("GLM: GLM_EXT_matrix_clip_space extension included")
+
29 #endif
+
30 
+
31 namespace glm
+
32 {
+
35 
+
42  template<typename T>
+
43  GLM_FUNC_DECL mat<4, 4, T, defaultp> ortho(
+
44  T left, T right, T bottom, T top);
+
45 
+
52  template<typename T>
+
53  GLM_FUNC_DECL mat<4, 4, T, defaultp> orthoLH_ZO(
+
54  T left, T right, T bottom, T top, T zNear, T zFar);
+
55 
+
62  template<typename T>
+
63  GLM_FUNC_DECL mat<4, 4, T, defaultp> orthoLH_NO(
+
64  T left, T right, T bottom, T top, T zNear, T zFar);
+
65 
+
72  template<typename T>
+
73  GLM_FUNC_DECL mat<4, 4, T, defaultp> orthoRH_ZO(
+
74  T left, T right, T bottom, T top, T zNear, T zFar);
+
75 
+
82  template<typename T>
+
83  GLM_FUNC_DECL mat<4, 4, T, defaultp> orthoRH_NO(
+
84  T left, T right, T bottom, T top, T zNear, T zFar);
+
85 
+
92  template<typename T>
+
93  GLM_FUNC_DECL mat<4, 4, T, defaultp> orthoZO(
+
94  T left, T right, T bottom, T top, T zNear, T zFar);
+
95 
+
102  template<typename T>
+
103  GLM_FUNC_DECL mat<4, 4, T, defaultp> orthoNO(
+
104  T left, T right, T bottom, T top, T zNear, T zFar);
+
105 
+
113  template<typename T>
+
114  GLM_FUNC_DECL mat<4, 4, T, defaultp> orthoLH(
+
115  T left, T right, T bottom, T top, T zNear, T zFar);
+
116 
+
124  template<typename T>
+
125  GLM_FUNC_DECL mat<4, 4, T, defaultp> orthoRH(
+
126  T left, T right, T bottom, T top, T zNear, T zFar);
+
127 
+
135  template<typename T>
+
136  GLM_FUNC_DECL mat<4, 4, T, defaultp> ortho(
+
137  T left, T right, T bottom, T top, T zNear, T zFar);
+
138 
+
143  template<typename T>
+
144  GLM_FUNC_DECL mat<4, 4, T, defaultp> frustumLH_ZO(
+
145  T left, T right, T bottom, T top, T near, T far);
+
146 
+
151  template<typename T>
+
152  GLM_FUNC_DECL mat<4, 4, T, defaultp> frustumLH_NO(
+
153  T left, T right, T bottom, T top, T near, T far);
+
154 
+
159  template<typename T>
+
160  GLM_FUNC_DECL mat<4, 4, T, defaultp> frustumRH_ZO(
+
161  T left, T right, T bottom, T top, T near, T far);
+
162 
+
167  template<typename T>
+
168  GLM_FUNC_DECL mat<4, 4, T, defaultp> frustumRH_NO(
+
169  T left, T right, T bottom, T top, T near, T far);
+
170 
+
175  template<typename T>
+
176  GLM_FUNC_DECL mat<4, 4, T, defaultp> frustumZO(
+
177  T left, T right, T bottom, T top, T near, T far);
+
178 
+
183  template<typename T>
+
184  GLM_FUNC_DECL mat<4, 4, T, defaultp> frustumNO(
+
185  T left, T right, T bottom, T top, T near, T far);
+
186 
+
192  template<typename T>
+
193  GLM_FUNC_DECL mat<4, 4, T, defaultp> frustumLH(
+
194  T left, T right, T bottom, T top, T near, T far);
+
195 
+
201  template<typename T>
+
202  GLM_FUNC_DECL mat<4, 4, T, defaultp> frustumRH(
+
203  T left, T right, T bottom, T top, T near, T far);
+
204 
+
210  template<typename T>
+
211  GLM_FUNC_DECL mat<4, 4, T, defaultp> frustum(
+
212  T left, T right, T bottom, T top, T near, T far);
+
213 
+
214 
+
224  template<typename T>
+
225  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveRH_ZO(
+
226  T fovy, T aspect, T near, T far);
+
227 
+
237  template<typename T>
+
238  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveRH_NO(
+
239  T fovy, T aspect, T near, T far);
+
240 
+
250  template<typename T>
+
251  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveLH_ZO(
+
252  T fovy, T aspect, T near, T far);
+
253 
+
263  template<typename T>
+
264  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveLH_NO(
+
265  T fovy, T aspect, T near, T far);
+
266 
+
276  template<typename T>
+
277  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveZO(
+
278  T fovy, T aspect, T near, T far);
+
279 
+
289  template<typename T>
+
290  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveNO(
+
291  T fovy, T aspect, T near, T far);
+
292 
+
303  template<typename T>
+
304  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveRH(
+
305  T fovy, T aspect, T near, T far);
+
306 
+
317  template<typename T>
+
318  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveLH(
+
319  T fovy, T aspect, T near, T far);
+
320 
+
331  template<typename T>
+
332  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspective(
+
333  T fovy, T aspect, T near, T far);
+
334 
+
345  template<typename T>
+
346  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveFovRH_ZO(
+
347  T fov, T width, T height, T near, T far);
+
348 
+
359  template<typename T>
+
360  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveFovRH_NO(
+
361  T fov, T width, T height, T near, T far);
+
362 
+
373  template<typename T>
+
374  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveFovLH_ZO(
+
375  T fov, T width, T height, T near, T far);
+
376 
+
387  template<typename T>
+
388  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveFovLH_NO(
+
389  T fov, T width, T height, T near, T far);
+
390 
+
401  template<typename T>
+
402  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveFovZO(
+
403  T fov, T width, T height, T near, T far);
+
404 
+
415  template<typename T>
+
416  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveFovNO(
+
417  T fov, T width, T height, T near, T far);
+
418 
+
430  template<typename T>
+
431  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveFovRH(
+
432  T fov, T width, T height, T near, T far);
+
433 
+
445  template<typename T>
+
446  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveFovLH(
+
447  T fov, T width, T height, T near, T far);
+
448 
+
459  template<typename T>
+
460  GLM_FUNC_DECL mat<4, 4, T, defaultp> perspectiveFov(
+
461  T fov, T width, T height, T near, T far);
+
462 
+
471  template<typename T>
+
472  GLM_FUNC_DECL mat<4, 4, T, defaultp> infinitePerspectiveLH_ZO(
+
473  T fovy, T aspect, T near);
+
474 
+
483  template<typename T>
+
484  GLM_FUNC_DECL mat<4, 4, T, defaultp> infinitePerspectiveLH_NO(
+
485  T fovy, T aspect, T near);
+
486 
+
495  template<typename T>
+
496  GLM_FUNC_DECL mat<4, 4, T, defaultp> infinitePerspectiveRH_ZO(
+
497  T fovy, T aspect, T near);
+
498 
+
507  template<typename T>
+
508  GLM_FUNC_DECL mat<4, 4, T, defaultp> infinitePerspectiveRH_NO(
+
509  T fovy, T aspect, T near);
+
510 
+
520  template<typename T>
+
521  GLM_FUNC_DECL mat<4, 4, T, defaultp> infinitePerspectiveLH(
+
522  T fovy, T aspect, T near);
+
523 
+
533  template<typename T>
+
534  GLM_FUNC_DECL mat<4, 4, T, defaultp> infinitePerspectiveRH(
+
535  T fovy, T aspect, T near);
+
536 
+
546  template<typename T>
+
547  GLM_FUNC_DECL mat<4, 4, T, defaultp> infinitePerspective(
+
548  T fovy, T aspect, T near);
+
549 
+
557  template<typename T>
+
558  GLM_FUNC_DECL mat<4, 4, T, defaultp> tweakedInfinitePerspective(
+
559  T fovy, T aspect, T near);
+
560 
+
569  template<typename T>
+
570  GLM_FUNC_DECL mat<4, 4, T, defaultp> tweakedInfinitePerspective(
+
571  T fovy, T aspect, T near, T ep);
+
572 
+
574 }//namespace glm
+
575 
+
576 #include "matrix_clip_space.inl"
+
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovZO(T fov, T width, T height, T near, T far)
Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveLH_ZO(T fovy, T aspect, T near)
Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveRH(T fovy, T aspect, T near, T far)
Creates a matrix for a right-handed, symmetric perspective-view frustum.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumNO(T left, T right, T bottom, T top, T near, T far)
Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-h...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveZO(T fovy, T aspect, T near, T far)
Creates a matrix for a symmetric perspective-view frustum using left-handed coordinates if GLM_FORCE_...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovNO(T fov, T width, T height, T near, T far)
Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveRH_NO(T fovy, T aspect, T near, T far)
Creates a matrix for a right-handed, symmetric perspective-view frustum.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspective(T fovy, T aspect, T near, T far)
Creates a matrix for a symmetric perspective-view frustum based on the default handedness and default...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovLH_ZO(T fov, T width, T height, T near, T far)
Builds a perspective projection matrix based on a field of view using left-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveNO(T fovy, T aspect, T near, T far)
Creates a matrix for a symmetric perspective-view frustum using left-handed coordinates if GLM_FORCE_...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoLH_ZO(T left, T right, T bottom, T top, T zNear, T zFar)
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumLH_ZO(T left, T right, T bottom, T top, T near, T far)
Creates a left-handed frustum matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > ortho(T left, T right, T bottom, T top, T zNear, T zFar)
Creates a matrix for an orthographic parallel viewing volume, using the default handedness and defaul...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveLH(T fovy, T aspect, T near, T far)
Creates a matrix for a left-handed, symmetric perspective-view frustum.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveLH_NO(T fovy, T aspect, T near)
Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveRH_ZO(T fovy, T aspect, T near, T far)
Creates a matrix for a right-handed, symmetric perspective-view frustum.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFov(T fov, T width, T height, T near, T far)
Builds a perspective projection matrix based on a field of view and the default handedness and defaul...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoRH_ZO(T left, T right, T bottom, T top, T zNear, T zFar)
Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumZO(T left, T right, T bottom, T top, T near, T far)
Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-h...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovLH(T fov, T width, T height, T near, T far)
Builds a left-handed perspective projection matrix based on a field of view.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveRH(T fovy, T aspect, T near)
Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoLH(T left, T right, T bottom, T top, T zNear, T zFar)
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumLH(T left, T right, T bottom, T top, T near, T far)
Creates a left-handed frustum matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspective(T fovy, T aspect, T near)
Creates a matrix for a symmetric perspective-view frustum with far plane at infinite with default han...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovRH_NO(T fov, T width, T height, T near, T far)
Builds a perspective projection matrix based on a field of view using right-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumRH_NO(T left, T right, T bottom, T top, T near, T far)
Creates a right-handed frustum matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveRH_ZO(T fovy, T aspect, T near)
Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveLH(T fovy, T aspect, T near)
Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveLH_NO(T fovy, T aspect, T near, T far)
Creates a matrix for a left-handed, symmetric perspective-view frustum.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoRH(T left, T right, T bottom, T top, T zNear, T zFar)
Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoNO(T left, T right, T bottom, T top, T zNear, T zFar)
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates if GLM_FO...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveLH_ZO(T fovy, T aspect, T near, T far)
Creates a matrix for a left-handed, symmetric perspective-view frustum.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovRH_ZO(T fov, T width, T height, T near, T far)
Builds a perspective projection matrix based on a field of view using right-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovRH(T fov, T width, T height, T near, T far)
Builds a right-handed perspective projection matrix based on a field of view.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumLH_NO(T left, T right, T bottom, T top, T near, T far)
Creates a left-handed frustum matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustum(T left, T right, T bottom, T top, T near, T far)
Creates a frustum matrix with default handedness, using the default handedness and default near and f...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoZO(T left, T right, T bottom, T top, T zNear, T zFar)
Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumRH(T left, T right, T bottom, T top, T near, T far)
Creates a right-handed frustum matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovLH_NO(T fov, T width, T height, T near, T far)
Builds a perspective projection matrix based on a field of view using left-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveRH_NO(T fovy, T aspect, T near)
Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > tweakedInfinitePerspective(T fovy, T aspect, T near, T ep)
Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics har...
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoRH_NO(T left, T right, T bottom, T top, T zNear, T zFar)
Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoLH_NO(T left, T right, T bottom, T top, T zNear, T zFar)
Creates a matrix for an orthographic parallel viewing volume using left-handed coordinates.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumRH_ZO(T left, T right, T bottom, T top, T near, T far)
Creates a right-handed frustum matrix.
+ + + + diff --git a/include/glm/doc/api/a00095.html b/include/glm/doc/api/a00095.html new file mode 100644 index 0000000..1a00194 --- /dev/null +++ b/include/glm/doc/api/a00095.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: matrix_common.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_common.hpp File Reference
+
+ + + + + diff --git a/include/glm/doc/api/a00095_source.html b/include/glm/doc/api/a00095_source.html new file mode 100644 index 0000000..f65734b --- /dev/null +++ b/include/glm/doc/api/a00095_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_common.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_common.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #include "../detail/qualifier.hpp"
+
16 #include "../detail/_fixes.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_common extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
27  template<length_t C, length_t R, typename T, typename U, qualifier Q>
+
28  GLM_FUNC_DECL mat<C, R, T, Q> mix(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, mat<C, R, U, Q> const& a);
+
29 
+
30  template<length_t C, length_t R, typename T, typename U, qualifier Q>
+
31  GLM_FUNC_DECL mat<C, R, T, Q> mix(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, U a);
+
32 
+
33  template <length_t C, length_t R, typename T, qualifier Q>
+
34  GLM_FUNC_DECL GLM_CONSTEXPR mat<C, R, T, Q> abs(mat<C, R, T, Q> const& x);
+
35 
+
37 }//namespace glm
+
38 
+
39 #include "matrix_common.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR genType abs(genType x)
Returns x if x >= 0; otherwise, it returns -x.
+
GLM_FUNC_DECL GLM_CONSTEXPR genTypeT mix(genTypeT x, genTypeT y, genTypeU a)
If genTypeU is a floating scalar or vector: Returns x * (1.0 - a) + y * a, i.e., the linear blend of ...
+ + + + diff --git a/include/glm/doc/api/a00098.html b/include/glm/doc/api/a00098.html new file mode 100644 index 0000000..4472a86 --- /dev/null +++ b/include/glm/doc/api/a00098.html @@ -0,0 +1,102 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double2x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 2, 2, double, defaultp > dmat2
 2 columns of 2 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 2, 2, double, defaultp > dmat2x2
 2 columns of 2 components matrix of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_double2x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00098_source.html b/include/glm/doc/api/a00098_source.html new file mode 100644 index 0000000..e2bcd77 --- /dev/null +++ b/include/glm/doc/api/a00098_source.html @@ -0,0 +1,95 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double2x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<2, 2, double, defaultp> dmat2x2;
+
16 
+
20  typedef mat<2, 2, double, defaultp> dmat2;
+
21 
+
23 }//namespace glm
+
+
mat< 2, 2, double, defaultp > dmat2x2
2 columns of 2 components matrix of double-precision floating-point numbers.
+
mat< 2, 2, double, defaultp > dmat2
2 columns of 2 components matrix of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00101.html b/include/glm/doc/api/a00101.html new file mode 100644 index 0000000..822ab1b --- /dev/null +++ b/include/glm/doc/api/a00101.html @@ -0,0 +1,114 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x2_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double2x2_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, double, highp > highp_dmat2
 2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, highp > highp_dmat2x2
 2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, lowp > lowp_dmat2
 2 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, lowp > lowp_dmat2x2
 2 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, mediump > mediump_dmat2
 2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, mediump > mediump_dmat2x2
 2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00101_source.html b/include/glm/doc/api/a00101_source.html new file mode 100644 index 0000000..b4175a2 --- /dev/null +++ b/include/glm/doc/api/a00101_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x2_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double2x2_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<2, 2, double, lowp> lowp_dmat2;
+
17 
+
22  typedef mat<2, 2, double, mediump> mediump_dmat2;
+
23 
+
28  typedef mat<2, 2, double, highp> highp_dmat2;
+
29 
+
34  typedef mat<2, 2, double, lowp> lowp_dmat2x2;
+
35 
+
40  typedef mat<2, 2, double, mediump> mediump_dmat2x2;
+
41 
+
46  typedef mat<2, 2, double, highp> highp_dmat2x2;
+
47 
+
49 }//namespace glm
+
+
mat< 2, 2, double, highp > highp_dmat2x2
2 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 2, 2, double, lowp > lowp_dmat2
2 columns of 2 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 2, 2, double, highp > highp_dmat2
2 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 2, 2, double, mediump > mediump_dmat2
2 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 2, 2, double, lowp > lowp_dmat2x2
2 columns of 2 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 2, 2, double, mediump > mediump_dmat2x2
2 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+ + + + diff --git a/include/glm/doc/api/a00104.html b/include/glm/doc/api/a00104.html new file mode 100644 index 0000000..bbb5462 --- /dev/null +++ b/include/glm/doc/api/a00104.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double2x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 2, 3, double, defaultp > dmat2x3
 2 columns of 3 components matrix of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_double2x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00104_source.html b/include/glm/doc/api/a00104_source.html new file mode 100644 index 0000000..49e01a1 --- /dev/null +++ b/include/glm/doc/api/a00104_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double2x3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<2, 3, double, defaultp> dmat2x3;
+
16 
+
18 }//namespace glm
+
+
mat< 2, 3, double, defaultp > dmat2x3
2 columns of 3 components matrix of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00107.html b/include/glm/doc/api/a00107.html new file mode 100644 index 0000000..0ef36b7 --- /dev/null +++ b/include/glm/doc/api/a00107.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x3_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double2x3_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 2, 3, double, highp > highp_dmat2x3
 2 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, double, lowp > lowp_dmat2x3
 2 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, double, mediump > mediump_dmat2x3
 2 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00107_source.html b/include/glm/doc/api/a00107_source.html new file mode 100644 index 0000000..bbcfb41 --- /dev/null +++ b/include/glm/doc/api/a00107_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x3_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double2x3_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<2, 3, double, lowp> lowp_dmat2x3;
+
17 
+
22  typedef mat<2, 3, double, mediump> mediump_dmat2x3;
+
23 
+
28  typedef mat<2, 3, double, highp> highp_dmat2x3;
+
29 
+
31 }//namespace glm
+
+
mat< 2, 3, double, lowp > lowp_dmat2x3
2 columns of 3 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 2, 3, double, highp > highp_dmat2x3
2 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 2, 3, double, mediump > mediump_dmat2x3
2 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+ + + + diff --git a/include/glm/doc/api/a00110.html b/include/glm/doc/api/a00110.html new file mode 100644 index 0000000..45475d1 --- /dev/null +++ b/include/glm/doc/api/a00110.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double2x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 2, 4, double, defaultp > dmat2x4
 2 columns of 4 components matrix of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_double2x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00110_source.html b/include/glm/doc/api/a00110_source.html new file mode 100644 index 0000000..7ae744a --- /dev/null +++ b/include/glm/doc/api/a00110_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double2x4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<2, 4, double, defaultp> dmat2x4;
+
16 
+
18 }//namespace glm
+
+
mat< 2, 4, double, defaultp > dmat2x4
2 columns of 4 components matrix of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00113.html b/include/glm/doc/api/a00113.html new file mode 100644 index 0000000..5ab2fe0 --- /dev/null +++ b/include/glm/doc/api/a00113.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x4_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double2x4_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 2, 4, double, highp > highp_dmat2x4
 2 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, double, lowp > lowp_dmat2x4
 2 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, double, mediump > mediump_dmat2x4
 2 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00113_source.html b/include/glm/doc/api/a00113_source.html new file mode 100644 index 0000000..8b49365 --- /dev/null +++ b/include/glm/doc/api/a00113_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_double2x4_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double2x4_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<2, 4, double, lowp> lowp_dmat2x4;
+
17 
+
22  typedef mat<2, 4, double, mediump> mediump_dmat2x4;
+
23 
+
28  typedef mat<2, 4, double, highp> highp_dmat2x4;
+
29 
+
31 }//namespace glm
+
+
mat< 2, 4, double, highp > highp_dmat2x4
2 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 2, 4, double, mediump > mediump_dmat2x4
2 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 2, 4, double, lowp > lowp_dmat2x4
2 columns of 4 components matrix of double-precision floating-point numbers using low precision arith...
+ + + + diff --git a/include/glm/doc/api/a00116.html b/include/glm/doc/api/a00116.html new file mode 100644 index 0000000..61febb3 --- /dev/null +++ b/include/glm/doc/api/a00116.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double3x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 3, 2, double, defaultp > dmat3x2
 3 columns of 2 components matrix of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_double3x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00116_source.html b/include/glm/doc/api/a00116_source.html new file mode 100644 index 0000000..79ad0a7 --- /dev/null +++ b/include/glm/doc/api/a00116_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double3x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<3, 2, double, defaultp> dmat3x2;
+
16 
+
18 }//namespace glm
+
+
mat< 3, 2, double, defaultp > dmat3x2
3 columns of 2 components matrix of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00119.html b/include/glm/doc/api/a00119.html new file mode 100644 index 0000000..8b5522e --- /dev/null +++ b/include/glm/doc/api/a00119.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x2_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double3x2_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 3, 2, double, highp > highp_dmat3x2
 3 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, double, lowp > lowp_dmat3x2
 3 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, double, mediump > mediump_dmat3x2
 3 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00119_source.html b/include/glm/doc/api/a00119_source.html new file mode 100644 index 0000000..5fa6c7a --- /dev/null +++ b/include/glm/doc/api/a00119_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x2_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double3x2_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<3, 2, double, lowp> lowp_dmat3x2;
+
17 
+
22  typedef mat<3, 2, double, mediump> mediump_dmat3x2;
+
23 
+
28  typedef mat<3, 2, double, highp> highp_dmat3x2;
+
29 
+
31 }//namespace glm
+
+
mat< 3, 2, double, highp > highp_dmat3x2
3 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 3, 2, double, lowp > lowp_dmat3x2
3 columns of 2 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 3, 2, double, mediump > mediump_dmat3x2
3 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+ + + + diff --git a/include/glm/doc/api/a00122.html b/include/glm/doc/api/a00122.html new file mode 100644 index 0000000..eb2db84 --- /dev/null +++ b/include/glm/doc/api/a00122.html @@ -0,0 +1,102 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double3x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 3, 3, double, defaultp > dmat3
 3 columns of 3 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 3, 3, double, defaultp > dmat3x3
 3 columns of 3 components matrix of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_double3x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00122_source.html b/include/glm/doc/api/a00122_source.html new file mode 100644 index 0000000..15ef192 --- /dev/null +++ b/include/glm/doc/api/a00122_source.html @@ -0,0 +1,95 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double3x3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<3, 3, double, defaultp> dmat3x3;
+
16 
+
20  typedef mat<3, 3, double, defaultp> dmat3;
+
21 
+
23 }//namespace glm
+
+
mat< 3, 3, double, defaultp > dmat3x3
3 columns of 3 components matrix of double-precision floating-point numbers.
+
mat< 3, 3, double, defaultp > dmat3
3 columns of 3 components matrix of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00125.html b/include/glm/doc/api/a00125.html new file mode 100644 index 0000000..90a56a5 --- /dev/null +++ b/include/glm/doc/api/a00125.html @@ -0,0 +1,114 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x3_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double3x3_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 3, double, highp > highp_dmat3
 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, highp > highp_dmat3x3
 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, lowp > lowp_dmat3
 3 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, lowp > lowp_dmat3x3
 3 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, mediump > mediump_dmat3
 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, mediump > mediump_dmat3x3
 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00125_source.html b/include/glm/doc/api/a00125_source.html new file mode 100644 index 0000000..d9f39b3 --- /dev/null +++ b/include/glm/doc/api/a00125_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x3_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double3x3_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<3, 3, double, lowp> lowp_dmat3;
+
17 
+
22  typedef mat<3, 3, double, mediump> mediump_dmat3;
+
23 
+
28  typedef mat<3, 3, double, highp> highp_dmat3;
+
29 
+
34  typedef mat<3, 3, double, lowp> lowp_dmat3x3;
+
35 
+
40  typedef mat<3, 3, double, mediump> mediump_dmat3x3;
+
41 
+
46  typedef mat<3, 3, double, highp> highp_dmat3x3;
+
47 
+
49 }//namespace glm
+
+
mat< 3, 3, double, lowp > lowp_dmat3x3
3 columns of 3 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 3, 3, double, mediump > mediump_dmat3
3 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 3, 3, double, mediump > mediump_dmat3x3
3 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 3, 3, double, lowp > lowp_dmat3
3 columns of 3 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 3, 3, double, highp > highp_dmat3x3
3 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 3, 3, double, highp > highp_dmat3
3 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+ + + + diff --git a/include/glm/doc/api/a00128.html b/include/glm/doc/api/a00128.html new file mode 100644 index 0000000..34e2977 --- /dev/null +++ b/include/glm/doc/api/a00128.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double3x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 3, 4, double, defaultp > dmat3x4
 3 columns of 4 components matrix of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_double3x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00128_source.html b/include/glm/doc/api/a00128_source.html new file mode 100644 index 0000000..cdb8520 --- /dev/null +++ b/include/glm/doc/api/a00128_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double3x4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<3, 4, double, defaultp> dmat3x4;
+
16 
+
18 }//namespace glm
+
+
mat< 3, 4, double, defaultp > dmat3x4
3 columns of 4 components matrix of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00131.html b/include/glm/doc/api/a00131.html new file mode 100644 index 0000000..4091781 --- /dev/null +++ b/include/glm/doc/api/a00131.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x4_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double3x4_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 3, 4, double, highp > highp_dmat3x4
 3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, double, lowp > lowp_dmat3x4
 3 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, double, mediump > mediump_dmat3x4
 3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00131_source.html b/include/glm/doc/api/a00131_source.html new file mode 100644 index 0000000..3092d08 --- /dev/null +++ b/include/glm/doc/api/a00131_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_double3x4_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double3x4_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<3, 4, double, lowp> lowp_dmat3x4;
+
17 
+
22  typedef mat<3, 4, double, mediump> mediump_dmat3x4;
+
23 
+
28  typedef mat<3, 4, double, highp> highp_dmat3x4;
+
29 
+
31 }//namespace glm
+
+
mat< 3, 4, double, mediump > mediump_dmat3x4
3 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 3, 4, double, highp > highp_dmat3x4
3 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 3, 4, double, lowp > lowp_dmat3x4
3 columns of 4 components matrix of double-precision floating-point numbers using low precision arith...
+ + + + diff --git a/include/glm/doc/api/a00134.html b/include/glm/doc/api/a00134.html new file mode 100644 index 0000000..efaa72f --- /dev/null +++ b/include/glm/doc/api/a00134.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double4x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 4, 2, double, defaultp > dmat4x2
 4 columns of 2 components matrix of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_double4x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00134_source.html b/include/glm/doc/api/a00134_source.html new file mode 100644 index 0000000..a69d676 --- /dev/null +++ b/include/glm/doc/api/a00134_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double4x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<4, 2, double, defaultp> dmat4x2;
+
16 
+
18 }//namespace glm
+
+
mat< 4, 2, double, defaultp > dmat4x2
4 columns of 2 components matrix of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00137.html b/include/glm/doc/api/a00137.html new file mode 100644 index 0000000..9018249 --- /dev/null +++ b/include/glm/doc/api/a00137.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x2_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double4x2_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 4, 2, double, highp > highp_dmat4x2
 4 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 2, double, lowp > lowp_dmat4x2
 4 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 2, double, mediump > mediump_dmat4x2
 4 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00137_source.html b/include/glm/doc/api/a00137_source.html new file mode 100644 index 0000000..3e1b4e2 --- /dev/null +++ b/include/glm/doc/api/a00137_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x2_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double4x2_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<4, 2, double, lowp> lowp_dmat4x2;
+
17 
+
22  typedef mat<4, 2, double, mediump> mediump_dmat4x2;
+
23 
+
28  typedef mat<4, 2, double, highp> highp_dmat4x2;
+
29 
+
31 }//namespace glm
+
+
mat< 4, 2, double, lowp > lowp_dmat4x2
4 columns of 2 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 4, 2, double, highp > highp_dmat4x2
4 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 2, double, mediump > mediump_dmat4x2
4 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+ + + + diff --git a/include/glm/doc/api/a00140.html b/include/glm/doc/api/a00140.html new file mode 100644 index 0000000..ed4960d --- /dev/null +++ b/include/glm/doc/api/a00140.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double4x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 4, 3, double, defaultp > dmat4x3
 4 columns of 3 components matrix of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_double4x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00140_source.html b/include/glm/doc/api/a00140_source.html new file mode 100644 index 0000000..dfa2928 --- /dev/null +++ b/include/glm/doc/api/a00140_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double4x3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<4, 3, double, defaultp> dmat4x3;
+
16 
+
18 }//namespace glm
+
+
mat< 4, 3, double, defaultp > dmat4x3
4 columns of 3 components matrix of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00143.html b/include/glm/doc/api/a00143.html new file mode 100644 index 0000000..d384dbb --- /dev/null +++ b/include/glm/doc/api/a00143.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x3_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double4x3_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 4, 3, double, highp > highp_dmat4x3
 4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, double, lowp > lowp_dmat4x3
 4 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, double, mediump > mediump_dmat4x3
 4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00143_source.html b/include/glm/doc/api/a00143_source.html new file mode 100644 index 0000000..6f40718 --- /dev/null +++ b/include/glm/doc/api/a00143_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x3_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double4x3_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<4, 3, double, lowp> lowp_dmat4x3;
+
17 
+
22  typedef mat<4, 3, double, mediump> mediump_dmat4x3;
+
23 
+
28  typedef mat<4, 3, double, highp> highp_dmat4x3;
+
29 
+
31 }//namespace glm
+
+
mat< 4, 3, double, highp > highp_dmat4x3
4 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 3, double, lowp > lowp_dmat4x3
4 columns of 3 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 4, 3, double, mediump > mediump_dmat4x3
4 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+ + + + diff --git a/include/glm/doc/api/a00146.html b/include/glm/doc/api/a00146.html new file mode 100644 index 0000000..775d2ff --- /dev/null +++ b/include/glm/doc/api/a00146.html @@ -0,0 +1,102 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double4x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 4, 4, double, defaultp > dmat4
 4 columns of 4 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 4, 4, double, defaultp > dmat4x4
 4 columns of 4 components matrix of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_double4x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00146_source.html b/include/glm/doc/api/a00146_source.html new file mode 100644 index 0000000..b1365db --- /dev/null +++ b/include/glm/doc/api/a00146_source.html @@ -0,0 +1,95 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double4x4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<4, 4, double, defaultp> dmat4x4;
+
16 
+
20  typedef mat<4, 4, double, defaultp> dmat4;
+
21 
+
23 }//namespace glm
+
+
mat< 4, 4, double, defaultp > dmat4
4 columns of 4 components matrix of double-precision floating-point numbers.
+
mat< 4, 4, double, defaultp > dmat4x4
4 columns of 4 components matrix of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00149.html b/include/glm/doc/api/a00149.html new file mode 100644 index 0000000..e0742eb --- /dev/null +++ b/include/glm/doc/api/a00149.html @@ -0,0 +1,114 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x4_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_double4x4_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 4, double, highp > highp_dmat4
 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, highp > highp_dmat4x4
 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, lowp > lowp_dmat4
 4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, lowp > lowp_dmat4x4
 4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, mediump > mediump_dmat4
 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, mediump > mediump_dmat4x4
 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00149_source.html b/include/glm/doc/api/a00149_source.html new file mode 100644 index 0000000..e338682 --- /dev/null +++ b/include/glm/doc/api/a00149_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: matrix_double4x4_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_double4x4_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<4, 4, double, lowp> lowp_dmat4;
+
17 
+
22  typedef mat<4, 4, double, mediump> mediump_dmat4;
+
23 
+
28  typedef mat<4, 4, double, highp> highp_dmat4;
+
29 
+
34  typedef mat<4, 4, double, lowp> lowp_dmat4x4;
+
35 
+
40  typedef mat<4, 4, double, mediump> mediump_dmat4x4;
+
41 
+
46  typedef mat<4, 4, double, highp> highp_dmat4x4;
+
47 
+
49 }//namespace glm
+
+
mat< 4, 4, double, highp > highp_dmat4
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, double, mediump > mediump_dmat4x4
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, double, lowp > lowp_dmat4x4
4 columns of 4 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 4, 4, double, mediump > mediump_dmat4
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, double, highp > highp_dmat4x4
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, double, lowp > lowp_dmat4
4 columns of 4 components matrix of double-precision floating-point numbers using low precision arith...
+ + + + diff --git a/include/glm/doc/api/a00152.html b/include/glm/doc/api/a00152.html new file mode 100644 index 0000000..b8631ea --- /dev/null +++ b/include/glm/doc/api/a00152.html @@ -0,0 +1,102 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float2x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 2, 2, float, defaultp > mat2
 2 columns of 2 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 2, 2, float, defaultp > mat2x2
 2 columns of 2 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_float2x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00152_source.html b/include/glm/doc/api/a00152_source.html new file mode 100644 index 0000000..8cbdf55 --- /dev/null +++ b/include/glm/doc/api/a00152_source.html @@ -0,0 +1,95 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float2x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<2, 2, float, defaultp> mat2x2;
+
16 
+
20  typedef mat<2, 2, float, defaultp> mat2;
+
21 
+
23 }//namespace glm
+
+
mat< 2, 2, float, defaultp > mat2x2
2 columns of 2 components matrix of single-precision floating-point numbers.
+
mat< 2, 2, float, defaultp > mat2
2 columns of 2 components matrix of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00155.html b/include/glm/doc/api/a00155.html new file mode 100644 index 0000000..b0d975c --- /dev/null +++ b/include/glm/doc/api/a00155.html @@ -0,0 +1,114 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x2_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float2x2_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, float, highp > highp_mat2
 2 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, highp > highp_mat2x2
 2 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, lowp > lowp_mat2
 2 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, lowp > lowp_mat2x2
 2 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, mediump > mediump_mat2
 2 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, mediump > mediump_mat2x2
 2 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00155_source.html b/include/glm/doc/api/a00155_source.html new file mode 100644 index 0000000..40984b3 --- /dev/null +++ b/include/glm/doc/api/a00155_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x2_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float2x2_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<2, 2, float, lowp> lowp_mat2;
+
17 
+
22  typedef mat<2, 2, float, mediump> mediump_mat2;
+
23 
+
28  typedef mat<2, 2, float, highp> highp_mat2;
+
29 
+
34  typedef mat<2, 2, float, lowp> lowp_mat2x2;
+
35 
+
40  typedef mat<2, 2, float, mediump> mediump_mat2x2;
+
41 
+
46  typedef mat<2, 2, float, highp> highp_mat2x2;
+
47 
+
49 }//namespace glm
+
+
mat< 2, 2, float, highp > highp_mat2x2
2 columns of 2 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 2, 2, float, lowp > lowp_mat2
2 columns of 2 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 2, 2, float, highp > highp_mat2
2 columns of 2 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 2, 2, float, mediump > mediump_mat2x2
2 columns of 2 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 2, 2, float, mediump > mediump_mat2
2 columns of 2 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 2, 2, float, lowp > lowp_mat2x2
2 columns of 2 components matrix of single-precision floating-point numbers using low precision arith...
+ + + + diff --git a/include/glm/doc/api/a00158.html b/include/glm/doc/api/a00158.html new file mode 100644 index 0000000..9854794 --- /dev/null +++ b/include/glm/doc/api/a00158.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float2x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 2, 3, float, defaultp > mat2x3
 2 columns of 3 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_float2x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00158_source.html b/include/glm/doc/api/a00158_source.html new file mode 100644 index 0000000..2acfe62 --- /dev/null +++ b/include/glm/doc/api/a00158_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float2x3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<2, 3, float, defaultp> mat2x3;
+
16 
+
18 }//namespace glm
+
+
mat< 2, 3, float, defaultp > mat2x3
2 columns of 3 components matrix of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00161.html b/include/glm/doc/api/a00161.html new file mode 100644 index 0000000..0b23cd3 --- /dev/null +++ b/include/glm/doc/api/a00161.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x3_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float2x3_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 2, 3, float, highp > highp_mat2x3
 2 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, float, lowp > lowp_mat2x3
 2 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, float, mediump > mediump_mat2x3
 2 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00161_source.html b/include/glm/doc/api/a00161_source.html new file mode 100644 index 0000000..33f55e3 --- /dev/null +++ b/include/glm/doc/api/a00161_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x3_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float2x3_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<2, 3, float, lowp> lowp_mat2x3;
+
17 
+
22  typedef mat<2, 3, float, mediump> mediump_mat2x3;
+
23 
+
28  typedef mat<2, 3, float, highp> highp_mat2x3;
+
29 
+
31 }//namespace glm
+
+
mat< 2, 3, float, mediump > mediump_mat2x3
2 columns of 3 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 2, 3, float, lowp > lowp_mat2x3
2 columns of 3 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 2, 3, float, highp > highp_mat2x3
2 columns of 3 components matrix of single-precision floating-point numbers using high precision arit...
+ + + + diff --git a/include/glm/doc/api/a00164.html b/include/glm/doc/api/a00164.html new file mode 100644 index 0000000..cdf35d4 --- /dev/null +++ b/include/glm/doc/api/a00164.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float2x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 2, 4, float, defaultp > mat2x4
 2 columns of 4 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_float2x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00164_source.html b/include/glm/doc/api/a00164_source.html new file mode 100644 index 0000000..81ebdf5 --- /dev/null +++ b/include/glm/doc/api/a00164_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float2x4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<2, 4, float, defaultp> mat2x4;
+
16 
+
18 }//namespace glm
+
+
mat< 2, 4, float, defaultp > mat2x4
2 columns of 4 components matrix of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00167.html b/include/glm/doc/api/a00167.html new file mode 100644 index 0000000..cb9a81e --- /dev/null +++ b/include/glm/doc/api/a00167.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x4_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float2x4_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 2, 4, float, highp > highp_mat2x4
 2 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, float, lowp > lowp_mat2x4
 2 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, float, mediump > mediump_mat2x4
 2 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00167_source.html b/include/glm/doc/api/a00167_source.html new file mode 100644 index 0000000..efdcd5a --- /dev/null +++ b/include/glm/doc/api/a00167_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_float2x4_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float2x4_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<2, 4, float, lowp> lowp_mat2x4;
+
17 
+
22  typedef mat<2, 4, float, mediump> mediump_mat2x4;
+
23 
+
28  typedef mat<2, 4, float, highp> highp_mat2x4;
+
29 
+
31 }//namespace glm
+
+
mat< 2, 4, float, highp > highp_mat2x4
2 columns of 4 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 2, 4, float, mediump > mediump_mat2x4
2 columns of 4 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 2, 4, float, lowp > lowp_mat2x4
2 columns of 4 components matrix of single-precision floating-point numbers using low precision arith...
+ + + + diff --git a/include/glm/doc/api/a00170.html b/include/glm/doc/api/a00170.html new file mode 100644 index 0000000..3d0d056 --- /dev/null +++ b/include/glm/doc/api/a00170.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float3x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 3, 2, float, defaultp > mat3x2
 3 columns of 2 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_float3x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00170_source.html b/include/glm/doc/api/a00170_source.html new file mode 100644 index 0000000..e66e87f --- /dev/null +++ b/include/glm/doc/api/a00170_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float3x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<3, 2, float, defaultp> mat3x2;
+
16 
+
18 }//namespace glm
+
+
mat< 3, 2, float, defaultp > mat3x2
3 columns of 2 components matrix of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00173.html b/include/glm/doc/api/a00173.html new file mode 100644 index 0000000..10b0629 --- /dev/null +++ b/include/glm/doc/api/a00173.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x2_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float3x2_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 3, 2, float, highp > highp_mat3x2
 3 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, float, lowp > lowp_mat3x2
 3 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, float, mediump > mediump_mat3x2
 3 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00173_source.html b/include/glm/doc/api/a00173_source.html new file mode 100644 index 0000000..248d68d --- /dev/null +++ b/include/glm/doc/api/a00173_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x2_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float3x2_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<3, 2, float, lowp> lowp_mat3x2;
+
17 
+
22  typedef mat<3, 2, float, mediump> mediump_mat3x2;
+
23 
+
28  typedef mat<3, 2, float, highp> highp_mat3x2;
+
29 
+
31 }//namespace glm
+
+
mat< 3, 2, float, mediump > mediump_mat3x2
3 columns of 2 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 3, 2, float, highp > highp_mat3x2
3 columns of 2 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 3, 2, float, lowp > lowp_mat3x2
3 columns of 2 components matrix of single-precision floating-point numbers using low precision arith...
+ + + + diff --git a/include/glm/doc/api/a00176.html b/include/glm/doc/api/a00176.html new file mode 100644 index 0000000..88fc37f --- /dev/null +++ b/include/glm/doc/api/a00176.html @@ -0,0 +1,102 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float3x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 3, 3, float, defaultp > mat3
 3 columns of 3 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 3, 3, float, defaultp > mat3x3
 3 columns of 3 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_float3x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00176_source.html b/include/glm/doc/api/a00176_source.html new file mode 100644 index 0000000..8bd5c4b --- /dev/null +++ b/include/glm/doc/api/a00176_source.html @@ -0,0 +1,95 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float3x3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<3, 3, float, defaultp> mat3x3;
+
16 
+
20  typedef mat<3, 3, float, defaultp> mat3;
+
21 
+
23 }//namespace glm
+
+
mat< 3, 3, float, defaultp > mat3
3 columns of 3 components matrix of single-precision floating-point numbers.
+
mat< 3, 3, float, defaultp > mat3x3
3 columns of 3 components matrix of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00179.html b/include/glm/doc/api/a00179.html new file mode 100644 index 0000000..339a7b5 --- /dev/null +++ b/include/glm/doc/api/a00179.html @@ -0,0 +1,114 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x3_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float3x3_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 3, float, highp > highp_mat3
 3 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, highp > highp_mat3x3
 3 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, lowp > lowp_mat3
 3 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, lowp > lowp_mat3x3
 3 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, mediump > mediump_mat3
 3 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, mediump > mediump_mat3x3
 3 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00179_source.html b/include/glm/doc/api/a00179_source.html new file mode 100644 index 0000000..0163258 --- /dev/null +++ b/include/glm/doc/api/a00179_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x3_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float3x3_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<3, 3, float, lowp> lowp_mat3;
+
17 
+
22  typedef mat<3, 3, float, mediump> mediump_mat3;
+
23 
+
28  typedef mat<3, 3, float, highp> highp_mat3;
+
29 
+
34  typedef mat<3, 3, float, lowp> lowp_mat3x3;
+
35 
+
40  typedef mat<3, 3, float, mediump> mediump_mat3x3;
+
41 
+
46  typedef mat<3, 3, float, highp> highp_mat3x3;
+
47 
+
49 }//namespace glm
+
+
mat< 3, 3, float, lowp > lowp_mat3
3 columns of 3 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 3, 3, float, mediump > mediump_mat3
3 columns of 3 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 3, 3, float, mediump > mediump_mat3x3
3 columns of 3 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 3, 3, float, lowp > lowp_mat3x3
3 columns of 3 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 3, 3, float, highp > highp_mat3
3 columns of 3 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 3, 3, float, highp > highp_mat3x3
3 columns of 3 components matrix of single-precision floating-point numbers using high precision arit...
+ + + + diff --git a/include/glm/doc/api/a00182.html b/include/glm/doc/api/a00182.html new file mode 100644 index 0000000..9bdc12b --- /dev/null +++ b/include/glm/doc/api/a00182.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float3x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 3, 4, float, defaultp > mat3x4
 3 columns of 4 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_float3x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00182_source.html b/include/glm/doc/api/a00182_source.html new file mode 100644 index 0000000..7b02b11 --- /dev/null +++ b/include/glm/doc/api/a00182_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float3x4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<3, 4, float, defaultp> mat3x4;
+
16 
+
18 }//namespace glm
+
+
mat< 3, 4, float, defaultp > mat3x4
3 columns of 4 components matrix of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00185.html b/include/glm/doc/api/a00185.html new file mode 100644 index 0000000..031a76d --- /dev/null +++ b/include/glm/doc/api/a00185.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x4_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float3x4_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 3, 4, float, highp > highp_mat3x4
 3 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, float, lowp > lowp_mat3x4
 3 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, float, mediump > mediump_mat3x4
 3 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00185_source.html b/include/glm/doc/api/a00185_source.html new file mode 100644 index 0000000..53b95c0 --- /dev/null +++ b/include/glm/doc/api/a00185_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_float3x4_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float3x4_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat3x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<3, 4, float, lowp> lowp_mat3x4;
+
17 
+
22  typedef mat<3, 4, float, mediump> mediump_mat3x4;
+
23 
+
28  typedef mat<3, 4, float, highp> highp_mat3x4;
+
29 
+
31 }//namespace glm
+
+
mat< 3, 4, float, mediump > mediump_mat3x4
3 columns of 4 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 3, 4, float, highp > highp_mat3x4
3 columns of 4 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 3, 4, float, lowp > lowp_mat3x4
3 columns of 4 components matrix of single-precision floating-point numbers using low precision arith...
+ + + + diff --git a/include/glm/doc/api/a00188.html b/include/glm/doc/api/a00188.html new file mode 100644 index 0000000..d610fa1 --- /dev/null +++ b/include/glm/doc/api/a00188.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float4x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 4, 2, float, defaultp > mat4x2
 4 columns of 2 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_float4x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00188_source.html b/include/glm/doc/api/a00188_source.html new file mode 100644 index 0000000..8c7fe3c --- /dev/null +++ b/include/glm/doc/api/a00188_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float4x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<4, 2, float, defaultp> mat4x2;
+
16 
+
18 }//namespace glm
+
+
mat< 4, 2, float, defaultp > mat4x2
4 columns of 2 components matrix of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00191_source.html b/include/glm/doc/api/a00191_source.html new file mode 100644 index 0000000..8fc5654 --- /dev/null +++ b/include/glm/doc/api/a00191_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x2_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float4x2_precision.hpp
+
+
+
1 
+
4 #pragma once
+
5 #include "../detail/type_mat2x2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<4, 2, float, lowp> lowp_mat4x2;
+
17 
+
22  typedef mat<4, 2, float, mediump> mediump_mat4x2;
+
23 
+
28  typedef mat<4, 2, float, highp> highp_mat4x2;
+
29 
+
31 }//namespace glm
+
+
mat< 4, 2, float, mediump > mediump_mat4x2
4 columns of 2 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 4, 2, float, highp > highp_mat4x2
4 columns of 2 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 4, 2, float, lowp > lowp_mat4x2
4 columns of 2 components matrix of single-precision floating-point numbers using low precision arith...
+ + + + diff --git a/include/glm/doc/api/a00194.html b/include/glm/doc/api/a00194.html new file mode 100644 index 0000000..3309f93 --- /dev/null +++ b/include/glm/doc/api/a00194.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float4x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 4, 3, float, defaultp > mat4x3
 4 columns of 3 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_float4x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00194_source.html b/include/glm/doc/api/a00194_source.html new file mode 100644 index 0000000..a4046a7 --- /dev/null +++ b/include/glm/doc/api/a00194_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float4x3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<4, 3, float, defaultp> mat4x3;
+
16 
+
18 }//namespace glm
+
+
mat< 4, 3, float, defaultp > mat4x3
4 columns of 3 components matrix of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00197.html b/include/glm/doc/api/a00197.html new file mode 100644 index 0000000..0eaeb8d --- /dev/null +++ b/include/glm/doc/api/a00197.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x3_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float4x3_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef mat< 4, 3, float, highp > highp_mat4x3
 4 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, float, lowp > lowp_mat4x3
 4 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, float, mediump > mediump_mat4x3
 4 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00197_source.html b/include/glm/doc/api/a00197_source.html new file mode 100644 index 0000000..a081a19 --- /dev/null +++ b/include/glm/doc/api/a00197_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x3_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float4x3_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<4, 3, float, lowp> lowp_mat4x3;
+
17 
+
22  typedef mat<4, 3, float, mediump> mediump_mat4x3;
+
23 
+
28  typedef mat<4, 3, float, highp> highp_mat4x3;
+
29 
+
31 }//namespace glm
+
+
mat< 4, 3, float, lowp > lowp_mat4x3
4 columns of 3 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 4, 3, float, highp > highp_mat4x3
4 columns of 3 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 4, 3, float, mediump > mediump_mat4x3
4 columns of 3 components matrix of single-precision floating-point numbers using medium precision ar...
+ + + + diff --git a/include/glm/doc/api/a00200.html b/include/glm/doc/api/a00200.html new file mode 100644 index 0000000..80fd610 --- /dev/null +++ b/include/glm/doc/api/a00200.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float4x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + +
typedef mat< 4, 4, float, defaultp > mat4
 4 columns of 4 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 4, 4, float, defaultp > mat4x4
 4 columns of 4 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file matrix_float4x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00200_source.html b/include/glm/doc/api/a00200_source.html new file mode 100644 index 0000000..2c3b6e3 --- /dev/null +++ b/include/glm/doc/api/a00200_source.html @@ -0,0 +1,95 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float4x4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef mat<4, 4, float, defaultp> mat4x4;
+
16 
+
20  typedef mat<4, 4, float, defaultp> mat4;
+
21 
+
23 }//namespace glm
+
+
mat< 4, 4, float, defaultp > mat4
4 columns of 4 components matrix of single-precision floating-point numbers.
+
mat< 4, 4, float, defaultp > mat4x4
4 columns of 4 components matrix of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00203.html b/include/glm/doc/api/a00203.html new file mode 100644 index 0000000..753cfd9 --- /dev/null +++ b/include/glm/doc/api/a00203.html @@ -0,0 +1,114 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x4_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_float4x4_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 4, float, highp > highp_mat4
 4 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, highp > highp_mat4x4
 4 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, lowp > lowp_mat4
 4 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, lowp > lowp_mat4x4
 4 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, mediump > mediump_mat4
 4 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, mediump > mediump_mat4x4
 4 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00203_source.html b/include/glm/doc/api/a00203_source.html new file mode 100644 index 0000000..0953c9c --- /dev/null +++ b/include/glm/doc/api/a00203_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: matrix_float4x4_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_float4x4_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_mat4x4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef mat<4, 4, float, lowp> lowp_mat4;
+
17 
+
22  typedef mat<4, 4, float, mediump> mediump_mat4;
+
23 
+
28  typedef mat<4, 4, float, highp> highp_mat4;
+
29 
+
34  typedef mat<4, 4, float, lowp> lowp_mat4x4;
+
35 
+
40  typedef mat<4, 4, float, mediump> mediump_mat4x4;
+
41 
+
46  typedef mat<4, 4, float, highp> highp_mat4x4;
+
47 
+
49 }//namespace glm
+
+
mat< 4, 4, float, highp > highp_mat4x4
4 columns of 4 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 4, 4, float, lowp > lowp_mat4x4
4 columns of 4 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 4, 4, float, mediump > mediump_mat4
4 columns of 4 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, float, highp > highp_mat4
4 columns of 4 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 4, 4, float, mediump > mediump_mat4x4
4 columns of 4 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, float, lowp > lowp_mat4
4 columns of 4 components matrix of single-precision floating-point numbers using low precision arith...
+ + + + diff --git a/include/glm/doc/api/a00206.html b/include/glm/doc/api/a00206.html new file mode 100644 index 0000000..d99cb1d --- /dev/null +++ b/include/glm/doc/api/a00206.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int2x2.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int2x2 +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 2, 2, int, defaultp > imat2
 Signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int, defaultp > imat2x2
 Signed integer 2x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int2x2

+
See also
Core features (dependence)
+ +

Definition in file matrix_int2x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00206_source.html b/include/glm/doc/api/a00206_source.html new file mode 100644 index 0000000..9145940 --- /dev/null +++ b/include/glm/doc/api/a00206_source.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int2x2.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x2.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_int2x2 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<2, 2, int, defaultp> imat2x2;
+
31 
+
35  typedef mat<2, 2, int, defaultp> imat2;
+
36 
+
38 }//namespace glm
+
+
mat< 2, 2, int, defaultp > imat2x2
Signed integer 2x2 matrix.
+
mat< 2, 2, int, defaultp > imat2
Signed integer 2x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00209.html b/include/glm/doc/api/a00209.html new file mode 100644 index 0000000..7d0c987 --- /dev/null +++ b/include/glm/doc/api/a00209.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x2_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int2x2_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int2x2_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, int16, defaultp > i16mat2
 16 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int16, defaultp > i16mat2x2
 16 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int32, defaultp > i32mat2
 32 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int32, defaultp > i32mat2x2
 32 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int64, defaultp > i64mat2
 64 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int64, defaultp > i64mat2x2
 64 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int8, defaultp > i8mat2
 8 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int8, defaultp > i8mat2x2
 8 bit signed integer 2x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int2x2_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_int2x2_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00209_source.html b/include/glm/doc/api/a00209_source.html new file mode 100644 index 0000000..d595ffd --- /dev/null +++ b/include/glm/doc/api/a00209_source.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x2_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int2x2_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x2.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_int2x2_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<2, 2, int8, defaultp> i8mat2x2;
+
32 
+
36  typedef mat<2, 2, int16, defaultp> i16mat2x2;
+
37 
+
41  typedef mat<2, 2, int32, defaultp> i32mat2x2;
+
42 
+
46  typedef mat<2, 2, int64, defaultp> i64mat2x2;
+
47 
+
48 
+
52  typedef mat<2, 2, int8, defaultp> i8mat2;
+
53 
+
57  typedef mat<2, 2, int16, defaultp> i16mat2;
+
58 
+
62  typedef mat<2, 2, int32, defaultp> i32mat2;
+
63 
+
67  typedef mat<2, 2, int64, defaultp> i64mat2;
+
68 
+
70 }//namespace glm
+
+
mat< 2, 2, int16, defaultp > i16mat2x2
16 bit signed integer 2x2 matrix.
+
mat< 2, 2, int8, defaultp > i8mat2x2
8 bit signed integer 2x2 matrix.
+
mat< 2, 2, int32, defaultp > i32mat2x2
32 bit signed integer 2x2 matrix.
+
mat< 2, 2, int8, defaultp > i8mat2
8 bit signed integer 2x2 matrix.
+
mat< 2, 2, int64, defaultp > i64mat2x2
64 bit signed integer 2x2 matrix.
+
mat< 2, 2, int32, defaultp > i32mat2
32 bit signed integer 2x2 matrix.
+
mat< 2, 2, int64, defaultp > i64mat2
64 bit signed integer 2x2 matrix.
+
mat< 2, 2, int16, defaultp > i16mat2
16 bit signed integer 2x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00212.html b/include/glm/doc/api/a00212.html new file mode 100644 index 0000000..a02cb81 --- /dev/null +++ b/include/glm/doc/api/a00212.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int2x3.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int2x3 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 2, 3, int, defaultp > imat2x3
 Signed integer 2x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int2x3

+
See also
Core features (dependence)
+ +

Definition in file matrix_int2x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00212_source.html b/include/glm/doc/api/a00212_source.html new file mode 100644 index 0000000..57ec5f4 --- /dev/null +++ b/include/glm/doc/api/a00212_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int2x3.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x3.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_int2x3 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<2, 3, int, defaultp> imat2x3;
+
31 
+
33 }//namespace glm
+
+
mat< 2, 3, int, defaultp > imat2x3
Signed integer 2x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00215.html b/include/glm/doc/api/a00215.html new file mode 100644 index 0000000..130ad33 --- /dev/null +++ b/include/glm/doc/api/a00215.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x3_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int2x3_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int2x3_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 3, int16, defaultp > i16mat2x3
 16 bit signed integer 2x3 matrix. More...
 
typedef mat< 2, 3, int32, defaultp > i32mat2x3
 32 bit signed integer 2x3 matrix. More...
 
typedef mat< 2, 3, int64, defaultp > i64mat2x3
 64 bit signed integer 2x3 matrix. More...
 
typedef mat< 2, 3, int8, defaultp > i8mat2x3
 8 bit signed integer 2x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int2x3_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_int2x3_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00215_source.html b/include/glm/doc/api/a00215_source.html new file mode 100644 index 0000000..87777c5 --- /dev/null +++ b/include/glm/doc/api/a00215_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x3_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int2x3_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x3.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_int2x3_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<2, 3, int8, defaultp> i8mat2x3;
+
32 
+
36  typedef mat<2, 3, int16, defaultp> i16mat2x3;
+
37 
+
41  typedef mat<2, 3, int32, defaultp> i32mat2x3;
+
42 
+
46  typedef mat<2, 3, int64, defaultp> i64mat2x3;
+
47 
+
49 }//namespace glm
+
+
mat< 2, 3, int64, defaultp > i64mat2x3
64 bit signed integer 2x3 matrix.
+
mat< 2, 3, int16, defaultp > i16mat2x3
16 bit signed integer 2x3 matrix.
+
mat< 2, 3, int8, defaultp > i8mat2x3
8 bit signed integer 2x3 matrix.
+
mat< 2, 3, int32, defaultp > i32mat2x3
32 bit signed integer 2x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00218.html b/include/glm/doc/api/a00218.html new file mode 100644 index 0000000..dfbedaf --- /dev/null +++ b/include/glm/doc/api/a00218.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int2x4.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int2x4 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 2, 4, int, defaultp > imat2x4
 Signed integer 2x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int2x4

+
See also
Core features (dependence)
+ +

Definition in file matrix_int2x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00218_source.html b/include/glm/doc/api/a00218_source.html new file mode 100644 index 0000000..5eee15f --- /dev/null +++ b/include/glm/doc/api/a00218_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int2x4.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x4.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_int2x4 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<2, 4, int, defaultp> imat2x4;
+
31 
+
33 }//namespace glm
+
+
mat< 2, 4, int, defaultp > imat2x4
Signed integer 2x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00221.html b/include/glm/doc/api/a00221.html new file mode 100644 index 0000000..18fc147 --- /dev/null +++ b/include/glm/doc/api/a00221.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x4_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int2x4_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int2x4_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 4, int16, defaultp > i16mat2x4
 16 bit signed integer 2x4 matrix. More...
 
typedef mat< 2, 4, int32, defaultp > i32mat2x4
 32 bit signed integer 2x4 matrix. More...
 
typedef mat< 2, 4, int64, defaultp > i64mat2x4
 64 bit signed integer 2x4 matrix. More...
 
typedef mat< 2, 4, int8, defaultp > i8mat2x4
 8 bit signed integer 2x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int2x4_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_int2x4_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00221_source.html b/include/glm/doc/api/a00221_source.html new file mode 100644 index 0000000..37439ae --- /dev/null +++ b/include/glm/doc/api/a00221_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_int2x4_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int2x4_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x4.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_int2x4_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<2, 4, int8, defaultp> i8mat2x4;
+
32 
+
36  typedef mat<2, 4, int16, defaultp> i16mat2x4;
+
37 
+
41  typedef mat<2, 4, int32, defaultp> i32mat2x4;
+
42 
+
46  typedef mat<2, 4, int64, defaultp> i64mat2x4;
+
47 
+
49 }//namespace glm
+
+
mat< 2, 4, int8, defaultp > i8mat2x4
8 bit signed integer 2x4 matrix.
+
mat< 2, 4, int32, defaultp > i32mat2x4
32 bit signed integer 2x4 matrix.
+
mat< 2, 4, int64, defaultp > i64mat2x4
64 bit signed integer 2x4 matrix.
+
mat< 2, 4, int16, defaultp > i16mat2x4
16 bit signed integer 2x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00224.html b/include/glm/doc/api/a00224.html new file mode 100644 index 0000000..b29b207 --- /dev/null +++ b/include/glm/doc/api/a00224.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int3x2.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int3x2 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 3, 2, int, defaultp > imat3x2
 Signed integer 3x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int3x2

+
See also
Core features (dependence)
+ +

Definition in file matrix_int3x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00224_source.html b/include/glm/doc/api/a00224_source.html new file mode 100644 index 0000000..013e32f --- /dev/null +++ b/include/glm/doc/api/a00224_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int3x2.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x2.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_int3x2 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<3, 2, int, defaultp> imat3x2;
+
31 
+
33 }//namespace glm
+
+
mat< 3, 2, int, defaultp > imat3x2
Signed integer 3x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00227.html b/include/glm/doc/api/a00227.html new file mode 100644 index 0000000..bcb8648 --- /dev/null +++ b/include/glm/doc/api/a00227.html @@ -0,0 +1,110 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x2_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int3x2_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int3x2_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 2, int16, defaultp > i16mat3x2
 16 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, int32, defaultp > i32mat3x2
 32 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, int64, defaultp > i64mat3x2
 64 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, int8, defaultp > i8mat3x2
 8 bit signed integer 3x2 matrix. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00227_source.html b/include/glm/doc/api/a00227_source.html new file mode 100644 index 0000000..daf2a38 --- /dev/null +++ b/include/glm/doc/api/a00227_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x2_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int3x2_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x2.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_int3x2_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<3, 2, int8, defaultp> i8mat3x2;
+
32 
+
36  typedef mat<3, 2, int16, defaultp> i16mat3x2;
+
37 
+
41  typedef mat<3, 2, int32, defaultp> i32mat3x2;
+
42 
+
46  typedef mat<3, 2, int64, defaultp> i64mat3x2;
+
47 
+
49 }//namespace glm
+
+
mat< 3, 2, int32, defaultp > i32mat3x2
32 bit signed integer 3x2 matrix.
+
mat< 3, 2, int64, defaultp > i64mat3x2
64 bit signed integer 3x2 matrix.
+
mat< 3, 2, int16, defaultp > i16mat3x2
16 bit signed integer 3x2 matrix.
+
mat< 3, 2, int8, defaultp > i8mat3x2
8 bit signed integer 3x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00230.html b/include/glm/doc/api/a00230.html new file mode 100644 index 0000000..78ca51f --- /dev/null +++ b/include/glm/doc/api/a00230.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int3x3.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int3x3 +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 3, 3, int, defaultp > imat3
 Signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int, defaultp > imat3x3
 Signed integer 3x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int3x3

+
See also
Core features (dependence)
+ +

Definition in file matrix_int3x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00230_source.html b/include/glm/doc/api/a00230_source.html new file mode 100644 index 0000000..95fe20c --- /dev/null +++ b/include/glm/doc/api/a00230_source.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int3x3.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x3.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_int3x3 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<3, 3, int, defaultp> imat3x3;
+
31 
+
35  typedef mat<3, 3, int, defaultp> imat3;
+
36 
+
38 }//namespace glm
+
+
mat< 3, 3, int, defaultp > imat3
Signed integer 3x3 matrix.
+
mat< 3, 3, int, defaultp > imat3x3
Signed integer 3x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00233.html b/include/glm/doc/api/a00233.html new file mode 100644 index 0000000..60f01a9 --- /dev/null +++ b/include/glm/doc/api/a00233.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x3_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int3x3_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int3x3_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 3, int16, defaultp > i16mat3
 16 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int16, defaultp > i16mat3x3
 16 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int32, defaultp > i32mat3
 32 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int32, defaultp > i32mat3x3
 32 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int64, defaultp > i64mat3
 64 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int64, defaultp > i64mat3x3
 64 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int8, defaultp > i8mat3
 8 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int8, defaultp > i8mat3x3
 8 bit signed integer 3x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int3x3_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_int3x3_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00233_source.html b/include/glm/doc/api/a00233_source.html new file mode 100644 index 0000000..018b78f --- /dev/null +++ b/include/glm/doc/api/a00233_source.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x3_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int3x3_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x3.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_int3x3_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<3, 3, int8, defaultp> i8mat3x3;
+
32 
+
36  typedef mat<3, 3, int16, defaultp> i16mat3x3;
+
37 
+
41  typedef mat<3, 3, int32, defaultp> i32mat3x3;
+
42 
+
46  typedef mat<3, 3, int64, defaultp> i64mat3x3;
+
47 
+
48 
+
52  typedef mat<3, 3, int8, defaultp> i8mat3;
+
53 
+
57  typedef mat<3, 3, int16, defaultp> i16mat3;
+
58 
+
62  typedef mat<3, 3, int32, defaultp> i32mat3;
+
63 
+
67  typedef mat<3, 3, int64, defaultp> i64mat3;
+
68 
+
70 }//namespace glm
+
+
mat< 3, 3, int32, defaultp > i32mat3
32 bit signed integer 3x3 matrix.
+
mat< 3, 3, int32, defaultp > i32mat3x3
32 bit signed integer 3x3 matrix.
+
mat< 3, 3, int16, defaultp > i16mat3
16 bit signed integer 3x3 matrix.
+
mat< 3, 3, int8, defaultp > i8mat3
8 bit signed integer 3x3 matrix.
+
mat< 3, 3, int64, defaultp > i64mat3x3
64 bit signed integer 3x3 matrix.
+
mat< 3, 3, int16, defaultp > i16mat3x3
16 bit signed integer 3x3 matrix.
+
mat< 3, 3, int64, defaultp > i64mat3
64 bit signed integer 3x3 matrix.
+
mat< 3, 3, int8, defaultp > i8mat3x3
8 bit signed integer 3x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00236.html b/include/glm/doc/api/a00236.html new file mode 100644 index 0000000..bfc165f --- /dev/null +++ b/include/glm/doc/api/a00236.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int3x4.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int3x4 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 3, 4, int, defaultp > imat3x4
 Signed integer 3x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int3x4

+
See also
Core features (dependence)
+ +

Definition in file matrix_int3x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00236_source.html b/include/glm/doc/api/a00236_source.html new file mode 100644 index 0000000..6622d5c --- /dev/null +++ b/include/glm/doc/api/a00236_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int3x4.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x4.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_int3x4 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<3, 4, int, defaultp> imat3x4;
+
31 
+
33 }//namespace glm
+
+
mat< 3, 4, int, defaultp > imat3x4
Signed integer 3x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00239_source.html b/include/glm/doc/api/a00239_source.html new file mode 100644 index 0000000..dc1c8d2 --- /dev/null +++ b/include/glm/doc/api/a00239_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_int3x4_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int3x4_sized.hpp
+
+
+
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x4.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_int3x4_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<3, 4, int8, defaultp> i8mat3x4;
+
32 
+
36  typedef mat<3, 4, int16, defaultp> i16mat3x4;
+
37 
+
41  typedef mat<3, 4, int32, defaultp> i32mat3x4;
+
42 
+
46  typedef mat<3, 4, int64, defaultp> i64mat3x4;
+
47 
+
49 }//namespace glm
+
+
mat< 3, 4, int32, defaultp > i32mat3x4
32 bit signed integer 3x4 matrix.
+
mat< 3, 4, int8, defaultp > i8mat3x4
8 bit signed integer 3x4 matrix.
+
mat< 3, 4, int64, defaultp > i64mat3x4
64 bit signed integer 3x4 matrix.
+
mat< 3, 4, int16, defaultp > i16mat3x4
16 bit signed integer 3x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00242.html b/include/glm/doc/api/a00242.html new file mode 100644 index 0000000..83ca1e9 --- /dev/null +++ b/include/glm/doc/api/a00242.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int4x2.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int4x2 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 4, 2, int, defaultp > imat4x2
 Signed integer 4x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int4x2

+
See also
Core features (dependence)
+ +

Definition in file matrix_int4x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00242_source.html b/include/glm/doc/api/a00242_source.html new file mode 100644 index 0000000..b7756d1 --- /dev/null +++ b/include/glm/doc/api/a00242_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int4x2.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x2.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_int4x2 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<4, 2, int, defaultp> imat4x2;
+
31 
+
33 }//namespace glm
+
+
mat< 4, 2, int, defaultp > imat4x2
Signed integer 4x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00245.html b/include/glm/doc/api/a00245.html new file mode 100644 index 0000000..1e06c3a --- /dev/null +++ b/include/glm/doc/api/a00245.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x2_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int4x2_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int4x2_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 2, int16, defaultp > i16mat4x2
 16 bit signed integer 4x2 matrix. More...
 
typedef mat< 4, 2, int32, defaultp > i32mat4x2
 32 bit signed integer 4x2 matrix. More...
 
typedef mat< 4, 2, int64, defaultp > i64mat4x2
 64 bit signed integer 4x2 matrix. More...
 
typedef mat< 4, 2, int8, defaultp > i8mat4x2
 8 bit signed integer 4x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int4x2_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_int4x2_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00245_source.html b/include/glm/doc/api/a00245_source.html new file mode 100644 index 0000000..2dc27f1 --- /dev/null +++ b/include/glm/doc/api/a00245_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x2_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int4x2_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x2.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_int4x2_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<4, 2, int8, defaultp> i8mat4x2;
+
32 
+
36  typedef mat<4, 2, int16, defaultp> i16mat4x2;
+
37 
+
41  typedef mat<4, 2, int32, defaultp> i32mat4x2;
+
42 
+
46  typedef mat<4, 2, int64, defaultp> i64mat4x2;
+
47 
+
49 }//namespace glm
+
+
mat< 4, 2, int16, defaultp > i16mat4x2
16 bit signed integer 4x2 matrix.
+
mat< 4, 2, int64, defaultp > i64mat4x2
64 bit signed integer 4x2 matrix.
+
mat< 4, 2, int8, defaultp > i8mat4x2
8 bit signed integer 4x2 matrix.
+
mat< 4, 2, int32, defaultp > i32mat4x2
32 bit signed integer 4x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00248.html b/include/glm/doc/api/a00248.html new file mode 100644 index 0000000..72bdc69 --- /dev/null +++ b/include/glm/doc/api/a00248.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int4x3.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int4x3 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 4, 3, int, defaultp > imat4x3
 Signed integer 4x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int4x3

+
See also
Core features (dependence)
+ +

Definition in file matrix_int4x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00248_source.html b/include/glm/doc/api/a00248_source.html new file mode 100644 index 0000000..0483297 --- /dev/null +++ b/include/glm/doc/api/a00248_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int4x3.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x3.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_int4x3 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<4, 3, int, defaultp> imat4x3;
+
31 
+
33 }//namespace glm
+
+
mat< 4, 3, int, defaultp > imat4x3
Signed integer 4x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00251.html b/include/glm/doc/api/a00251.html new file mode 100644 index 0000000..5ea1d63 --- /dev/null +++ b/include/glm/doc/api/a00251.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x3_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int4x3_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int4x3_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 3, int16, defaultp > i16mat4x3
 16 bit signed integer 4x3 matrix. More...
 
typedef mat< 4, 3, int32, defaultp > i32mat4x3
 32 bit signed integer 4x3 matrix. More...
 
typedef mat< 4, 3, int64, defaultp > i64mat4x3
 64 bit signed integer 4x3 matrix. More...
 
typedef mat< 4, 3, int8, defaultp > i8mat4x3
 8 bit signed integer 4x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int4x3_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_int4x3_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00251_source.html b/include/glm/doc/api/a00251_source.html new file mode 100644 index 0000000..82fe1f4 --- /dev/null +++ b/include/glm/doc/api/a00251_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x3_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int4x3_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x3.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_int4x3_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<4, 3, int8, defaultp> i8mat4x3;
+
32 
+
36  typedef mat<4, 3, int16, defaultp> i16mat4x3;
+
37 
+
41  typedef mat<4, 3, int32, defaultp> i32mat4x3;
+
42 
+
46  typedef mat<4, 3, int64, defaultp> i64mat4x3;
+
47 
+
49 }//namespace glm
+
+
mat< 4, 3, int32, defaultp > i32mat4x3
32 bit signed integer 4x3 matrix.
+
mat< 4, 3, int16, defaultp > i16mat4x3
16 bit signed integer 4x3 matrix.
+
mat< 4, 3, int64, defaultp > i64mat4x3
64 bit signed integer 4x3 matrix.
+
mat< 4, 3, int8, defaultp > i8mat4x3
8 bit signed integer 4x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00254.html b/include/glm/doc/api/a00254.html new file mode 100644 index 0000000..4420eb6 --- /dev/null +++ b/include/glm/doc/api/a00254.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int4x4.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int4x4 +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 4, 4, int, defaultp > imat4
 Signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int, defaultp > imat4x4
 Signed integer 4x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int4x4

+
See also
Core features (dependence)
+ +

Definition in file matrix_int4x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00254_source.html b/include/glm/doc/api/a00254_source.html new file mode 100644 index 0000000..3d05152 --- /dev/null +++ b/include/glm/doc/api/a00254_source.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int4x4.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x4.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_int4x4 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<4, 4, int, defaultp> imat4x4;
+
31 
+
35  typedef mat<4, 4, int, defaultp> imat4;
+
36 
+
38 }//namespace glm
+
+
mat< 4, 4, int, defaultp > imat4
Signed integer 4x4 matrix.
+
mat< 4, 4, int, defaultp > imat4x4
Signed integer 4x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00257.html b/include/glm/doc/api/a00257.html new file mode 100644 index 0000000..7d592c6 --- /dev/null +++ b/include/glm/doc/api/a00257.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x4_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_int4x4_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int4x4_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 4, int16, defaultp > i16mat4
 16 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int16, defaultp > i16mat4x4
 16 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int32, defaultp > i32mat4
 32 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int32, defaultp > i32mat4x4
 32 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int64, defaultp > i64mat4
 64 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int64, defaultp > i64mat4x4
 64 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int8, defaultp > i8mat4
 8 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int8, defaultp > i8mat4x4
 8 bit signed integer 4x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int4x4_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_int4x4_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00257_source.html b/include/glm/doc/api/a00257_source.html new file mode 100644 index 0000000..16bb721 --- /dev/null +++ b/include/glm/doc/api/a00257_source.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_int4x4_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_int4x4_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x4.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_int4x4_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<4, 4, int8, defaultp> i8mat4x4;
+
32 
+
36  typedef mat<4, 4, int16, defaultp> i16mat4x4;
+
37 
+
41  typedef mat<4, 4, int32, defaultp> i32mat4x4;
+
42 
+
46  typedef mat<4, 4, int64, defaultp> i64mat4x4;
+
47 
+
48 
+
52  typedef mat<4, 4, int8, defaultp> i8mat4;
+
53 
+
57  typedef mat<4, 4, int16, defaultp> i16mat4;
+
58 
+
62  typedef mat<4, 4, int32, defaultp> i32mat4;
+
63 
+
67  typedef mat<4, 4, int64, defaultp> i64mat4;
+
68 
+
70 }//namespace glm
+
+
mat< 4, 4, int8, defaultp > i8mat4
8 bit signed integer 4x4 matrix.
+
mat< 4, 4, int16, defaultp > i16mat4
16 bit signed integer 4x4 matrix.
+
mat< 4, 4, int64, defaultp > i64mat4x4
64 bit signed integer 4x4 matrix.
+
mat< 4, 4, int32, defaultp > i32mat4
32 bit signed integer 4x4 matrix.
+
mat< 4, 4, int16, defaultp > i16mat4x4
16 bit signed integer 4x4 matrix.
+
mat< 4, 4, int8, defaultp > i8mat4x4
8 bit signed integer 4x4 matrix.
+
mat< 4, 4, int32, defaultp > i32mat4x4
32 bit signed integer 4x4 matrix.
+
mat< 4, 4, int64, defaultp > i64mat4
64 bit signed integer 4x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00263.html b/include/glm/doc/api/a00263.html new file mode 100644 index 0000000..1f06b70 --- /dev/null +++ b/include/glm/doc/api/a00263.html @@ -0,0 +1,124 @@ + + + + + + + +1.0.2 API documentation: matrix_projection.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_projection.hpp File Reference
+
+
+ +

GLM_EXT_matrix_projection +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q, typename U >
GLM_FUNC_DECL mat< 4, 4, T, Q > pickMatrix (vec< 2, T, Q > const &center, vec< 2, T, Q > const &delta, vec< 4, U, Q > const &viewport)
 Define a picking region. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > project (vec< 3, T, Q > const &obj, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates using default near and far clip planes definition. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > projectNO (vec< 3, T, Q > const &obj, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > projectZO (vec< 3, T, Q > const &obj, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > unProject (vec< 3, T, Q > const &win, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified window coordinates (win.x, win.y, win.z) into object coordinates using default near and far clip planes definition. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > unProjectNO (vec< 3, T, Q > const &win, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified window coordinates (win.x, win.y, win.z) into object coordinates. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > unProjectZO (vec< 3, T, Q > const &win, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified window coordinates (win.x, win.y, win.z) into object coordinates. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00263_source.html b/include/glm/doc/api/a00263_source.html new file mode 100644 index 0000000..aefb678 --- /dev/null +++ b/include/glm/doc/api/a00263_source.html @@ -0,0 +1,136 @@ + + + + + + + +1.0.2 API documentation: matrix_projection.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_projection.hpp
+
+
+Go to the documentation of this file.
1 
+
20 #pragma once
+
21 
+
22 // Dependencies
+
23 #include "../gtc/constants.hpp"
+
24 #include "../geometric.hpp"
+
25 #include "../trigonometric.hpp"
+
26 #include "../matrix.hpp"
+
27 
+
28 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
29 # pragma message("GLM: GLM_EXT_matrix_projection extension included")
+
30 #endif
+
31 
+
32 namespace glm
+
33 {
+
36 
+
49  template<typename T, typename U, qualifier Q>
+
50  GLM_FUNC_DECL vec<3, T, Q> projectZO(
+
51  vec<3, T, Q> const& obj, mat<4, 4, T, Q> const& model, mat<4, 4, T, Q> const& proj, vec<4, U, Q> const& viewport);
+
52 
+
65  template<typename T, typename U, qualifier Q>
+
66  GLM_FUNC_DECL vec<3, T, Q> projectNO(
+
67  vec<3, T, Q> const& obj, mat<4, 4, T, Q> const& model, mat<4, 4, T, Q> const& proj, vec<4, U, Q> const& viewport);
+
68 
+
81  template<typename T, typename U, qualifier Q>
+
82  GLM_FUNC_DECL vec<3, T, Q> project(
+
83  vec<3, T, Q> const& obj, mat<4, 4, T, Q> const& model, mat<4, 4, T, Q> const& proj, vec<4, U, Q> const& viewport);
+
84 
+
97  template<typename T, typename U, qualifier Q>
+
98  GLM_FUNC_DECL vec<3, T, Q> unProjectZO(
+
99  vec<3, T, Q> const& win, mat<4, 4, T, Q> const& model, mat<4, 4, T, Q> const& proj, vec<4, U, Q> const& viewport);
+
100 
+
113  template<typename T, typename U, qualifier Q>
+
114  GLM_FUNC_DECL vec<3, T, Q> unProjectNO(
+
115  vec<3, T, Q> const& win, mat<4, 4, T, Q> const& model, mat<4, 4, T, Q> const& proj, vec<4, U, Q> const& viewport);
+
116 
+
129  template<typename T, typename U, qualifier Q>
+
130  GLM_FUNC_DECL vec<3, T, Q> unProject(
+
131  vec<3, T, Q> const& win, mat<4, 4, T, Q> const& model, mat<4, 4, T, Q> const& proj, vec<4, U, Q> const& viewport);
+
132 
+
142  template<typename T, qualifier Q, typename U>
+
143  GLM_FUNC_DECL mat<4, 4, T, Q> pickMatrix(
+
144  vec<2, T, Q> const& center, vec<2, T, Q> const& delta, vec<4, U, Q> const& viewport);
+
145 
+
147 }//namespace glm
+
148 
+
149 #include "matrix_projection.inl"
+
+
GLM_FUNC_DECL vec< 3, T, Q > projectZO(vec< 3, T, Q > const &obj, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates.
+
GLM_FUNC_DECL genType proj(genType const &x, genType const &Normal)
Projects x on Normal.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > pickMatrix(vec< 2, T, Q > const &center, vec< 2, T, Q > const &delta, vec< 4, U, Q > const &viewport)
Define a picking region.
+
GLM_FUNC_DECL vec< 3, T, Q > unProjectZO(vec< 3, T, Q > const &win, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
Map the specified window coordinates (win.x, win.y, win.z) into object coordinates.
+
GLM_FUNC_DECL vec< 3, T, Q > projectNO(vec< 3, T, Q > const &obj, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates.
+
GLM_FUNC_DECL vec< 3, T, Q > project(vec< 3, T, Q > const &obj, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates using default near...
+
GLM_FUNC_DECL vec< 3, T, Q > unProjectNO(vec< 3, T, Q > const &win, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
Map the specified window coordinates (win.x, win.y, win.z) into object coordinates.
+
GLM_FUNC_DECL vec< 3, T, Q > unProject(vec< 3, T, Q > const &win, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
Map the specified window coordinates (win.x, win.y, win.z) into object coordinates using default near...
+ + + + diff --git a/include/glm/doc/api/a00266.html b/include/glm/doc/api/a00266.html new file mode 100644 index 0000000..e016625 --- /dev/null +++ b/include/glm/doc/api/a00266.html @@ -0,0 +1,136 @@ + + + + + + + +1.0.2 API documentation: matrix_relational.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_relational.hpp File Reference
+
+
+ +

GLM_EXT_matrix_relational +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
 Perform a component-wise equal-to comparison of two matrices. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
 Perform a component-wise not-equal-to comparison of two matrices. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00266_source.html b/include/glm/doc/api/a00266_source.html new file mode 100644 index 0000000..84fd5e7 --- /dev/null +++ b/include/glm/doc/api/a00266_source.html @@ -0,0 +1,130 @@ + + + + + + + +1.0.2 API documentation: matrix_relational.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_relational.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependencies
+
18 #include "../detail/qualifier.hpp"
+
19 
+
20 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_EXT_matrix_relational extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
36  template<length_t C, length_t R, typename T, qualifier Q>
+
37  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> equal(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y);
+
38 
+
46  template<length_t C, length_t R, typename T, qualifier Q>
+
47  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y);
+
48 
+
56  template<length_t C, length_t R, typename T, qualifier Q>
+
57  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> equal(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, T epsilon);
+
58 
+
66  template<length_t C, length_t R, typename T, qualifier Q>
+
67  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> equal(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, vec<C, T, Q> const& epsilon);
+
68 
+
76  template<length_t C, length_t R, typename T, qualifier Q>
+
77  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, T epsilon);
+
78 
+
86  template<length_t C, length_t R, typename T, qualifier Q>
+
87  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, vec<C, T, Q> const& epsilon);
+
88 
+
96  template<length_t C, length_t R, typename T, qualifier Q>
+
97  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> equal(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, int ULPs);
+
98 
+
106  template<length_t C, length_t R, typename T, qualifier Q>
+
107  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> equal(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, vec<C, int, Q> const& ULPs);
+
108 
+
116  template<length_t C, length_t R, typename T, qualifier Q>
+
117  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, int ULPs);
+
118 
+
126  template<length_t C, length_t R, typename T, qualifier Q>
+
127  GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> notEqual(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y, vec<C, int, Q> const& ULPs);
+
128 
+
130 }//namespace glm
+
131 
+
132 #include "matrix_relational.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)
Returns the component-wise comparison between two vectors in term of ULPs.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)
Returns the component-wise comparison between two vectors in term of ULPs.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon()
Return the epsilon constant for floating point types.
+ + + + diff --git a/include/glm/doc/api/a00272.html b/include/glm/doc/api/a00272.html new file mode 100644 index 0000000..7d5951c --- /dev/null +++ b/include/glm/doc/api/a00272.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint2x2.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint2x2 +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 2, 2, uint, defaultp > umat2
 Unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint, defaultp > umat2x2
 Unsigned integer 2x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint2x2

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint2x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00272_source.html b/include/glm/doc/api/a00272_source.html new file mode 100644 index 0000000..8d5d9f3 --- /dev/null +++ b/include/glm/doc/api/a00272_source.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint2x2.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x2.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_uint2x2 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<2, 2, uint, defaultp> umat2x2;
+
31 
+
35  typedef mat<2, 2, uint, defaultp> umat2;
+
36 
+
38 }//namespace glm
+
+
mat< 2, 2, uint, defaultp > umat2
Unsigned integer 2x2 matrix.
+
mat< 2, 2, uint, defaultp > umat2x2
Unsigned integer 2x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00275.html b/include/glm/doc/api/a00275.html new file mode 100644 index 0000000..ada8d3e --- /dev/null +++ b/include/glm/doc/api/a00275.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x2_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint2x2_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint2x2_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, uint16, defaultp > u16mat2
 16 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint16, defaultp > u16mat2x2
 16 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint32, defaultp > u32mat2
 32 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint32, defaultp > u32mat2x2
 32 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint64, defaultp > u64mat2
 64 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint64, defaultp > u64mat2x2
 64 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint8, defaultp > u8mat2
 8 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint8, defaultp > u8mat2x2
 8 bit unsigned integer 2x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint2x2_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint2x2_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00275_source.html b/include/glm/doc/api/a00275_source.html new file mode 100644 index 0000000..ca66085 --- /dev/null +++ b/include/glm/doc/api/a00275_source.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x2_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint2x2_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x2.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_uint2x2_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<2, 2, uint8, defaultp> u8mat2x2;
+
32 
+
36  typedef mat<2, 2, uint16, defaultp> u16mat2x2;
+
37 
+
41  typedef mat<2, 2, uint32, defaultp> u32mat2x2;
+
42 
+
46  typedef mat<2, 2, uint64, defaultp> u64mat2x2;
+
47 
+
48 
+
52  typedef mat<2, 2, uint8, defaultp> u8mat2;
+
53 
+
57  typedef mat<2, 2, uint16, defaultp> u16mat2;
+
58 
+
62  typedef mat<2, 2, uint32, defaultp> u32mat2;
+
63 
+
67  typedef mat<2, 2, uint64, defaultp> u64mat2;
+
68 
+
70 }//namespace glm
+
+
mat< 2, 2, uint32, defaultp > u32mat2x2
32 bit unsigned integer 2x2 matrix.
+
mat< 2, 2, uint64, defaultp > u64mat2
64 bit unsigned integer 2x2 matrix.
+
mat< 2, 2, uint16, defaultp > u16mat2x2
16 bit unsigned integer 2x2 matrix.
+
mat< 2, 2, uint8, defaultp > u8mat2x2
8 bit unsigned integer 2x2 matrix.
+
mat< 2, 2, uint16, defaultp > u16mat2
16 bit unsigned integer 2x2 matrix.
+
mat< 2, 2, uint32, defaultp > u32mat2
32 bit unsigned integer 2x2 matrix.
+
mat< 2, 2, uint8, defaultp > u8mat2
8 bit unsigned integer 2x2 matrix.
+
mat< 2, 2, uint64, defaultp > u64mat2x2
64 bit unsigned integer 2x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00278.html b/include/glm/doc/api/a00278.html new file mode 100644 index 0000000..4139df8 --- /dev/null +++ b/include/glm/doc/api/a00278.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint2x3.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint2x3 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 2, 3, uint, defaultp > umat2x3
 Unsigned integer 2x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint2x3

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint2x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00278_source.html b/include/glm/doc/api/a00278_source.html new file mode 100644 index 0000000..f63c82e --- /dev/null +++ b/include/glm/doc/api/a00278_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint2x3.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x3.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_uint2x3 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<2, 3, uint, defaultp> umat2x3;
+
31 
+
33 }//namespace glm
+
+
mat< 2, 3, uint, defaultp > umat2x3
Unsigned integer 2x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00281.html b/include/glm/doc/api/a00281.html new file mode 100644 index 0000000..0b4b4f2 --- /dev/null +++ b/include/glm/doc/api/a00281.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x3_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint2x3_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint2x3_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 3, uint16, defaultp > u16mat2x3
 16 bit unsigned integer 2x3 matrix. More...
 
typedef mat< 2, 3, uint32, defaultp > u32mat2x3
 32 bit unsigned integer 2x3 matrix. More...
 
typedef mat< 2, 3, uint64, defaultp > u64mat2x3
 64 bit unsigned integer 2x3 matrix. More...
 
typedef mat< 2, 3, uint8, defaultp > u8mat2x3
 8 bit unsigned integer 2x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint2x3_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint2x3_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00281_source.html b/include/glm/doc/api/a00281_source.html new file mode 100644 index 0000000..5aa16e5 --- /dev/null +++ b/include/glm/doc/api/a00281_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x3_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint2x3_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x3.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_uint2x3_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<2, 3, uint8, defaultp> u8mat2x3;
+
32 
+
36  typedef mat<2, 3, uint16, defaultp> u16mat2x3;
+
37 
+
41  typedef mat<2, 3, uint32, defaultp> u32mat2x3;
+
42 
+
46  typedef mat<2, 3, uint64, defaultp> u64mat2x3;
+
47 
+
49 }//namespace glm
+
+
mat< 2, 3, uint16, defaultp > u16mat2x3
16 bit unsigned integer 2x3 matrix.
+
mat< 2, 3, uint8, defaultp > u8mat2x3
8 bit unsigned integer 2x3 matrix.
+
mat< 2, 3, uint64, defaultp > u64mat2x3
64 bit unsigned integer 2x3 matrix.
+
mat< 2, 3, uint32, defaultp > u32mat2x3
32 bit unsigned integer 2x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00284.html b/include/glm/doc/api/a00284.html new file mode 100644 index 0000000..24c73f8 --- /dev/null +++ b/include/glm/doc/api/a00284.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint2x4.hpp File Reference
+
+
+ +

GLM_EXT_matrix_int2x4 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 2, 4, uint, defaultp > umat2x4
 Unsigned integer 2x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_int2x4

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint2x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00284_source.html b/include/glm/doc/api/a00284_source.html new file mode 100644 index 0000000..491c5c3 --- /dev/null +++ b/include/glm/doc/api/a00284_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint2x4.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x4.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_uint2x4 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<2, 4, uint, defaultp> umat2x4;
+
31 
+
33 }//namespace glm
+
+
mat< 2, 4, uint, defaultp > umat2x4
Unsigned integer 2x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00287.html b/include/glm/doc/api/a00287.html new file mode 100644 index 0000000..f5eae87 --- /dev/null +++ b/include/glm/doc/api/a00287.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x4_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint2x4_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint2x4_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 4, uint16, defaultp > u16mat2x4
 16 bit unsigned integer 2x4 matrix. More...
 
typedef mat< 2, 4, uint32, defaultp > u32mat2x4
 32 bit unsigned integer 2x4 matrix. More...
 
typedef mat< 2, 4, uint64, defaultp > u64mat2x4
 64 bit unsigned integer 2x4 matrix. More...
 
typedef mat< 2, 4, uint8, defaultp > u8mat2x4
 8 bit unsigned integer 2x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint2x4_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint2x4_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00287_source.html b/include/glm/doc/api/a00287_source.html new file mode 100644 index 0000000..c05f5cc --- /dev/null +++ b/include/glm/doc/api/a00287_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_uint2x4_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint2x4_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x4.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_uint2x4_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<2, 4, uint8, defaultp> u8mat2x4;
+
32 
+
36  typedef mat<2, 4, uint16, defaultp> u16mat2x4;
+
37 
+
41  typedef mat<2, 4, uint32, defaultp> u32mat2x4;
+
42 
+
46  typedef mat<2, 4, uint64, defaultp> u64mat2x4;
+
47 
+
49 }//namespace glm
+
+
mat< 2, 4, uint8, defaultp > u8mat2x4
8 bit unsigned integer 2x4 matrix.
+
mat< 2, 4, uint16, defaultp > u16mat2x4
16 bit unsigned integer 2x4 matrix.
+
mat< 2, 4, uint32, defaultp > u32mat2x4
32 bit unsigned integer 2x4 matrix.
+
mat< 2, 4, uint64, defaultp > u64mat2x4
64 bit unsigned integer 2x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00290.html b/include/glm/doc/api/a00290.html new file mode 100644 index 0000000..fd96539 --- /dev/null +++ b/include/glm/doc/api/a00290.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint3x2.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint3x2 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 3, 2, uint, defaultp > umat3x2
 Unsigned integer 3x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint3x2

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint3x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00290_source.html b/include/glm/doc/api/a00290_source.html new file mode 100644 index 0000000..d0a14b0 --- /dev/null +++ b/include/glm/doc/api/a00290_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint3x2.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x2.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_uint3x2 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<3, 2, uint, defaultp> umat3x2;
+
31 
+
33 }//namespace glm
+
+
mat< 3, 2, uint, defaultp > umat3x2
Unsigned integer 3x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00293.html b/include/glm/doc/api/a00293.html new file mode 100644 index 0000000..8edd5d3 --- /dev/null +++ b/include/glm/doc/api/a00293.html @@ -0,0 +1,110 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x2_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint3x2_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint3x2_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 2, uint16, defaultp > u16mat3x2
 16 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, uint32, defaultp > u32mat3x2
 32 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, uint64, defaultp > u64mat3x2
 64 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, uint8, defaultp > u8mat3x2
 8 bit signed integer 3x2 matrix. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00293_source.html b/include/glm/doc/api/a00293_source.html new file mode 100644 index 0000000..4c26814 --- /dev/null +++ b/include/glm/doc/api/a00293_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x2_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint3x2_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x2.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_uint3x2_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<3, 2, uint8, defaultp> u8mat3x2;
+
32 
+
36  typedef mat<3, 2, uint16, defaultp> u16mat3x2;
+
37 
+
41  typedef mat<3, 2, uint32, defaultp> u32mat3x2;
+
42 
+
46  typedef mat<3, 2, uint64, defaultp> u64mat3x2;
+
47 
+
49 }//namespace glm
+
+
mat< 3, 2, uint8, defaultp > u8mat3x2
8 bit signed integer 3x2 matrix.
+
mat< 3, 2, uint64, defaultp > u64mat3x2
64 bit signed integer 3x2 matrix.
+
mat< 3, 2, uint16, defaultp > u16mat3x2
16 bit signed integer 3x2 matrix.
+
mat< 3, 2, uint32, defaultp > u32mat3x2
32 bit signed integer 3x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00296.html b/include/glm/doc/api/a00296.html new file mode 100644 index 0000000..0129762 --- /dev/null +++ b/include/glm/doc/api/a00296.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint3x3.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint3x3 +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 3, 3, uint, defaultp > umat3
 Unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint, defaultp > umat3x3
 Unsigned integer 3x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint3x3

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint3x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00296_source.html b/include/glm/doc/api/a00296_source.html new file mode 100644 index 0000000..2439ebb --- /dev/null +++ b/include/glm/doc/api/a00296_source.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint3x3.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x3.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_uint3x3 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<3, 3, uint, defaultp> umat3x3;
+
31 
+
35  typedef mat<3, 3, uint, defaultp> umat3;
+
36 
+
38 }//namespace glm
+
+
mat< 3, 3, uint, defaultp > umat3
Unsigned integer 3x3 matrix.
+
mat< 3, 3, uint, defaultp > umat3x3
Unsigned integer 3x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00299.html b/include/glm/doc/api/a00299.html new file mode 100644 index 0000000..70d7d7b --- /dev/null +++ b/include/glm/doc/api/a00299.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x3_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint3x3_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint3x3_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 3, uint16, defaultp > u16mat3
 16 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint16, defaultp > u16mat3x3
 16 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint32, defaultp > u32mat3
 32 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint32, defaultp > u32mat3x3
 32 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint64, defaultp > u64mat3
 64 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint64, defaultp > u64mat3x3
 64 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint8, defaultp > u8mat3
 8 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint8, defaultp > u8mat3x3
 8 bit unsigned integer 3x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint3x3_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint3x3_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00299_source.html b/include/glm/doc/api/a00299_source.html new file mode 100644 index 0000000..6ad7c2c --- /dev/null +++ b/include/glm/doc/api/a00299_source.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x3_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint3x3_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x3.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_uint3x3_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<3, 3, uint8, defaultp> u8mat3x3;
+
32 
+
36  typedef mat<3, 3, uint16, defaultp> u16mat3x3;
+
37 
+
41  typedef mat<3, 3, uint32, defaultp> u32mat3x3;
+
42 
+
46  typedef mat<3, 3, uint64, defaultp> u64mat3x3;
+
47 
+
48 
+
52  typedef mat<3, 3, uint8, defaultp> u8mat3;
+
53 
+
57  typedef mat<3, 3, uint16, defaultp> u16mat3;
+
58 
+
62  typedef mat<3, 3, uint32, defaultp> u32mat3;
+
63 
+
67  typedef mat<3, 3, uint64, defaultp> u64mat3;
+
68 
+
70 }//namespace glm
+
+
mat< 3, 3, uint8, defaultp > u8mat3
8 bit unsigned integer 3x3 matrix.
+
mat< 3, 3, uint64, defaultp > u64mat3x3
64 bit unsigned integer 3x3 matrix.
+
mat< 3, 3, uint32, defaultp > u32mat3
32 bit unsigned integer 3x3 matrix.
+
mat< 3, 3, uint32, defaultp > u32mat3x3
32 bit unsigned integer 3x3 matrix.
+
mat< 3, 3, uint64, defaultp > u64mat3
64 bit unsigned integer 3x3 matrix.
+
mat< 3, 3, uint8, defaultp > u8mat3x3
8 bit unsigned integer 3x3 matrix.
+
mat< 3, 3, uint16, defaultp > u16mat3x3
16 bit unsigned integer 3x3 matrix.
+
mat< 3, 3, uint16, defaultp > u16mat3
16 bit unsigned integer 3x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00302.html b/include/glm/doc/api/a00302.html new file mode 100644 index 0000000..abaff3b --- /dev/null +++ b/include/glm/doc/api/a00302.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint3x4.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint3x4 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 3, 4, uint, defaultp > umat3x4
 Signed integer 3x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint3x4

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint3x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00302_source.html b/include/glm/doc/api/a00302_source.html new file mode 100644 index 0000000..0923bd4 --- /dev/null +++ b/include/glm/doc/api/a00302_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint3x4.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x4.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_uint3x4 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<3, 4, uint, defaultp> umat3x4;
+
31 
+
33 }//namespace glm
+
+
mat< 3, 4, uint, defaultp > umat3x4
Signed integer 3x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00305_source.html b/include/glm/doc/api/a00305_source.html new file mode 100644 index 0000000..4e5ce61 --- /dev/null +++ b/include/glm/doc/api/a00305_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_uint3x4_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint3x4_sized.hpp
+
+
+
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat3x4.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_uint3x4_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<3, 4, uint8, defaultp> u8mat3x4;
+
32 
+
36  typedef mat<3, 4, uint16, defaultp> u16mat3x4;
+
37 
+
41  typedef mat<3, 4, uint32, defaultp> u32mat3x4;
+
42 
+
46  typedef mat<3, 4, uint64, defaultp> u64mat3x4;
+
47 
+
49 }//namespace glm
+
+
mat< 3, 4, uint8, defaultp > u8mat3x4
8 bit unsigned integer 3x4 matrix.
+
mat< 3, 4, uint16, defaultp > u16mat3x4
16 bit unsigned integer 3x4 matrix.
+
mat< 3, 4, uint32, defaultp > u32mat3x4
32 bit unsigned integer 3x4 matrix.
+
mat< 3, 4, uint64, defaultp > u64mat3x4
64 bit unsigned integer 3x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00308.html b/include/glm/doc/api/a00308.html new file mode 100644 index 0000000..12cc7a1 --- /dev/null +++ b/include/glm/doc/api/a00308.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint4x2.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint4x2 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 4, 2, uint, defaultp > umat4x2
 Unsigned integer 4x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint4x2

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint4x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00308_source.html b/include/glm/doc/api/a00308_source.html new file mode 100644 index 0000000..5c0e3fa --- /dev/null +++ b/include/glm/doc/api/a00308_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint4x2.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x2.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_uint4x2 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<4, 2, uint, defaultp> umat4x2;
+
31 
+
33 }//namespace glm
+
+
mat< 4, 2, uint, defaultp > umat4x2
Unsigned integer 4x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00311.html b/include/glm/doc/api/a00311.html new file mode 100644 index 0000000..dced9be --- /dev/null +++ b/include/glm/doc/api/a00311.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x2_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint4x2_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint4x2_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 2, uint16, defaultp > u16mat4x2
 16 bit unsigned integer 4x2 matrix. More...
 
typedef mat< 4, 2, uint32, defaultp > u32mat4x2
 32 bit unsigned integer 4x2 matrix. More...
 
typedef mat< 4, 2, uint64, defaultp > u64mat4x2
 64 bit unsigned integer 4x2 matrix. More...
 
typedef mat< 4, 2, uint8, defaultp > u8mat4x2
 8 bit unsigned integer 4x2 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint4x2_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint4x2_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00311_source.html b/include/glm/doc/api/a00311_source.html new file mode 100644 index 0000000..2efe016 --- /dev/null +++ b/include/glm/doc/api/a00311_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x2_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint4x2_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x2.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_uint4x2_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<4, 2, uint8, defaultp> u8mat4x2;
+
32 
+
36  typedef mat<4, 2, uint16, defaultp> u16mat4x2;
+
37 
+
41  typedef mat<4, 2, uint32, defaultp> u32mat4x2;
+
42 
+
46  typedef mat<4, 2, uint64, defaultp> u64mat4x2;
+
47 
+
49 }//namespace glm
+
+
mat< 4, 2, uint16, defaultp > u16mat4x2
16 bit unsigned integer 4x2 matrix.
+
mat< 4, 2, uint64, defaultp > u64mat4x2
64 bit unsigned integer 4x2 matrix.
+
mat< 4, 2, uint8, defaultp > u8mat4x2
8 bit unsigned integer 4x2 matrix.
+
mat< 4, 2, uint32, defaultp > u32mat4x2
32 bit unsigned integer 4x2 matrix.
+ + + + diff --git a/include/glm/doc/api/a00314.html b/include/glm/doc/api/a00314.html new file mode 100644 index 0000000..361582f --- /dev/null +++ b/include/glm/doc/api/a00314.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint4x3.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint4x3 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef mat< 4, 3, uint, defaultp > umat4x3
 Unsigned integer 4x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint4x3

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint4x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00314_source.html b/include/glm/doc/api/a00314_source.html new file mode 100644 index 0000000..9dd62ab --- /dev/null +++ b/include/glm/doc/api/a00314_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint4x3.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x3.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_uint4x3 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<4, 3, uint, defaultp> umat4x3;
+
31 
+
33 }//namespace glm
+
+
mat< 4, 3, uint, defaultp > umat4x3
Unsigned integer 4x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00317.html b/include/glm/doc/api/a00317.html new file mode 100644 index 0000000..fb8467a --- /dev/null +++ b/include/glm/doc/api/a00317.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x3_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint4x3_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint4x3_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 3, uint16, defaultp > u16mat4x3
 16 bit unsigned integer 4x3 matrix. More...
 
typedef mat< 4, 3, uint32, defaultp > u32mat4x3
 32 bit unsigned integer 4x3 matrix. More...
 
typedef mat< 4, 3, uint64, defaultp > u64mat4x3
 64 bit unsigned integer 4x3 matrix. More...
 
typedef mat< 4, 3, uint8, defaultp > u8mat4x3
 8 bit unsigned integer 4x3 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint4x3_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint4x3_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00317_source.html b/include/glm/doc/api/a00317_source.html new file mode 100644 index 0000000..51323f8 --- /dev/null +++ b/include/glm/doc/api/a00317_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x3_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint4x3_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x3.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_uint4x3_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<4, 3, uint8, defaultp> u8mat4x3;
+
32 
+
36  typedef mat<4, 3, uint16, defaultp> u16mat4x3;
+
37 
+
41  typedef mat<4, 3, uint32, defaultp> u32mat4x3;
+
42 
+
46  typedef mat<4, 3, uint64, defaultp> u64mat4x3;
+
47 
+
49 }//namespace glm
+
+
mat< 4, 3, uint8, defaultp > u8mat4x3
8 bit unsigned integer 4x3 matrix.
+
mat< 4, 3, uint32, defaultp > u32mat4x3
32 bit unsigned integer 4x3 matrix.
+
mat< 4, 3, uint16, defaultp > u16mat4x3
16 bit unsigned integer 4x3 matrix.
+
mat< 4, 3, uint64, defaultp > u64mat4x3
64 bit unsigned integer 4x3 matrix.
+ + + + diff --git a/include/glm/doc/api/a00320.html b/include/glm/doc/api/a00320.html new file mode 100644 index 0000000..846e638 --- /dev/null +++ b/include/glm/doc/api/a00320.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint4x4.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint4x4 +More...

+ +

Go to the source code of this file.

+ + + + + + + + +

+Typedefs

typedef mat< 4, 4, uint, defaultp > umat4
 Unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint, defaultp > umat4x4
 Unsigned integer 4x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint4x4

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint4x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00320_source.html b/include/glm/doc/api/a00320_source.html new file mode 100644 index 0000000..8a73c01 --- /dev/null +++ b/include/glm/doc/api/a00320_source.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint4x4.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x4.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_matrix_uint4x4 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
30  typedef mat<4, 4, uint, defaultp> umat4x4;
+
31 
+
35  typedef mat<4, 4, uint, defaultp> umat4;
+
36 
+
38 }//namespace glm
+
+
mat< 4, 4, uint, defaultp > umat4
Unsigned integer 4x4 matrix.
+
mat< 4, 4, uint, defaultp > umat4x4
Unsigned integer 4x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00323.html b/include/glm/doc/api/a00323.html new file mode 100644 index 0000000..a900833 --- /dev/null +++ b/include/glm/doc/api/a00323.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x4_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_uint4x4_sized.hpp File Reference
+
+
+ +

GLM_EXT_matrix_uint4x4_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 4, uint16, defaultp > u16mat4
 16 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint16, defaultp > u16mat4x4
 16 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint32, defaultp > u32mat4
 32 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint32, defaultp > u32mat4x4
 32 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint64, defaultp > u64mat4
 64 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint64, defaultp > u64mat4x4
 64 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint8, defaultp > u8mat4
 8 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint8, defaultp > u8mat4x4
 8 bit unsigned integer 4x4 matrix. More...
 
+

Detailed Description

+

GLM_EXT_matrix_uint4x4_sized

+
See also
Core features (dependence)
+ +

Definition in file matrix_uint4x4_sized.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00323_source.html b/include/glm/doc/api/a00323_source.html new file mode 100644 index 0000000..ac05ac3 --- /dev/null +++ b/include/glm/doc/api/a00323_source.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_uint4x4_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_uint4x4_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat4x4.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_matrix_uint4x4_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef mat<4, 4, uint8, defaultp> u8mat4x4;
+
32 
+
36  typedef mat<4, 4, uint16, defaultp> u16mat4x4;
+
37 
+
41  typedef mat<4, 4, uint32, defaultp> u32mat4x4;
+
42 
+
46  typedef mat<4, 4, uint64, defaultp> u64mat4x4;
+
47 
+
48 
+
52  typedef mat<4, 4, uint8, defaultp> u8mat4;
+
53 
+
57  typedef mat<4, 4, uint16, defaultp> u16mat4;
+
58 
+
62  typedef mat<4, 4, uint32, defaultp> u32mat4;
+
63 
+
67  typedef mat<4, 4, uint64, defaultp> u64mat4;
+
68 
+
70 }//namespace glm
+
+
mat< 4, 4, uint8, defaultp > u8mat4x4
8 bit unsigned integer 4x4 matrix.
+
mat< 4, 4, uint16, defaultp > u16mat4x4
16 bit unsigned integer 4x4 matrix.
+
mat< 4, 4, uint16, defaultp > u16mat4
16 bit unsigned integer 4x4 matrix.
+
mat< 4, 4, uint8, defaultp > u8mat4
8 bit unsigned integer 4x4 matrix.
+
mat< 4, 4, uint32, defaultp > u32mat4x4
32 bit unsigned integer 4x4 matrix.
+
mat< 4, 4, uint32, defaultp > u32mat4
32 bit unsigned integer 4x4 matrix.
+
mat< 4, 4, uint64, defaultp > u64mat4x4
64 bit unsigned integer 4x4 matrix.
+
mat< 4, 4, uint64, defaultp > u64mat4
64 bit unsigned integer 4x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a00326.html b/include/glm/doc/api/a00326.html new file mode 100644 index 0000000..7c43015 --- /dev/null +++ b/include/glm/doc/api/a00326.html @@ -0,0 +1,128 @@ + + + + + + + +1.0.2 API documentation: quaternion_common.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_common.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_common +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > conjugate (qua< T, Q > const &q)
 Returns the q conjugate. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > inverse (qua< T, Q > const &q)
 Returns the q inverse. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > isinf (qua< T, Q > const &x)
 Returns true if x holds a positive infinity or negative infinity representation in the underlying implementation's set of floating point representations. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > isnan (qua< T, Q > const &x)
 Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of floating point representations. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > lerp (qua< T, Q > const &x, qua< T, Q > const &y, T a)
 Linear interpolation of two quaternions. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > mix (qua< T, Q > const &x, qua< T, Q > const &y, T a)
 Spherical linear interpolation of two quaternions. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > slerp (qua< T, Q > const &x, qua< T, Q > const &y, T a)
 Spherical linear interpolation of two quaternions. More...
 
template<typename T , typename S , qualifier Q>
GLM_FUNC_DECL qua< T, Q > slerp (qua< T, Q > const &x, qua< T, Q > const &y, T a, S k)
 Spherical linear interpolation of two quaternions with multiple spins over rotation axis. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00326_source.html b/include/glm/doc/api/a00326_source.html new file mode 100644 index 0000000..618eb8d --- /dev/null +++ b/include/glm/doc/api/a00326_source.html @@ -0,0 +1,133 @@ + + + + + + + +1.0.2 API documentation: quaternion_common.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_common.hpp
+
+
+Go to the documentation of this file.
1 
+
21 #pragma once
+
22 
+
23 // Dependency:
+
24 #include "../ext/scalar_constants.hpp"
+
25 #include "../ext/quaternion_geometric.hpp"
+
26 #include "../common.hpp"
+
27 #include "../trigonometric.hpp"
+
28 #include "../exponential.hpp"
+
29 #include <limits>
+
30 
+
31 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
32 # pragma message("GLM: GLM_EXT_quaternion_common extension included")
+
33 #endif
+
34 
+
35 namespace glm
+
36 {
+
39 
+
52  template<typename T, qualifier Q>
+
53  GLM_FUNC_DECL qua<T, Q> mix(qua<T, Q> const& x, qua<T, Q> const& y, T a);
+
54 
+
64  template<typename T, qualifier Q>
+
65  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> lerp(qua<T, Q> const& x, qua<T, Q> const& y, T a);
+
66 
+
76  template<typename T, qualifier Q>
+
77  GLM_FUNC_DECL qua<T, Q> slerp(qua<T, Q> const& x, qua<T, Q> const& y, T a);
+
78 
+
91  template<typename T, typename S, qualifier Q>
+
92  GLM_FUNC_DECL qua<T, Q> slerp(qua<T, Q> const& x, qua<T, Q> const& y, T a, S k);
+
93 
+
98  template<typename T, qualifier Q>
+
99  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> conjugate(qua<T, Q> const& q);
+
100 
+
105  template<typename T, qualifier Q>
+
106  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> inverse(qua<T, Q> const& q);
+
107 
+
118  template<typename T, qualifier Q>
+
119  GLM_FUNC_DECL vec<4, bool, Q> isnan(qua<T, Q> const& x);
+
120 
+
129  template<typename T, qualifier Q>
+
130  GLM_FUNC_DECL vec<4, bool, Q> isinf(qua<T, Q> const& x);
+
131 
+
133 } //namespace glm
+
134 
+
135 #include "quaternion_common.inl"
+
+
GLM_FUNC_DECL vec< 4, bool, Q > isinf(qua< T, Q > const &x)
Returns true if x holds a positive infinity or negative infinity representation in the underlying imp...
+
GLM_FUNC_DECL qua< T, Q > slerp(qua< T, Q > const &x, qua< T, Q > const &y, T a, S k)
Spherical linear interpolation of two quaternions with multiple spins over rotation axis.
+
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > inverse(qua< T, Q > const &q)
Returns the q inverse.
+
GLM_FUNC_DECL vec< 4, bool, Q > isnan(qua< T, Q > const &x)
Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of...
+
GLM_FUNC_DECL qua< T, Q > mix(qua< T, Q > const &x, qua< T, Q > const &y, T a)
Spherical linear interpolation of two quaternions.
+
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > conjugate(qua< T, Q > const &q)
Returns the q conjugate.
+
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > lerp(qua< T, Q > const &x, qua< T, Q > const &y, T a)
Linear interpolation of two quaternions.
+ + + + diff --git a/include/glm/doc/api/a00329.html b/include/glm/doc/api/a00329.html new file mode 100644 index 0000000..eaf82d1 --- /dev/null +++ b/include/glm/doc/api/a00329.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: quaternion_double.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_double.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_double +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

+typedef qua< double, defaultp > dquat
 Quaternion of double-precision floating-point numbers.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00329_source.html b/include/glm/doc/api/a00329_source.html new file mode 100644 index 0000000..b278a9b --- /dev/null +++ b/include/glm/doc/api/a00329_source.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: quaternion_double.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_double.hpp
+
+
+Go to the documentation of this file.
1 
+
20 #pragma once
+
21 
+
22 // Dependency:
+
23 #include "../detail/type_quat.hpp"
+
24 
+
25 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
26 # pragma message("GLM: GLM_EXT_quaternion_double extension included")
+
27 #endif
+
28 
+
29 namespace glm
+
30 {
+
33 
+
35  typedef qua<double, defaultp> dquat;
+
36 
+
38 } //namespace glm
+
39 
+
+
qua< double, defaultp > dquat
Quaternion of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00332.html b/include/glm/doc/api/a00332.html new file mode 100644 index 0000000..7101d8a --- /dev/null +++ b/include/glm/doc/api/a00332.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: quaternion_double_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_double_precision.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_double_precision +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef qua< double, highp > highp_dquat
 Quaternion of high double-qualifier floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef qua< double, lowp > lowp_dquat
 Quaternion of double-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef qua< double, mediump > mediump_dquat
 Quaternion of medium double-qualifier floating-point numbers using high precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00332_source.html b/include/glm/doc/api/a00332_source.html new file mode 100644 index 0000000..b20cfad --- /dev/null +++ b/include/glm/doc/api/a00332_source.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: quaternion_double_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_double_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
11 #pragma once
+
12 
+
13 // Dependency:
+
14 #include "../detail/type_quat.hpp"
+
15 
+
16 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
17 # pragma message("GLM: GLM_EXT_quaternion_double_precision extension included")
+
18 #endif
+
19 
+
20 namespace glm
+
21 {
+
24 
+
28  typedef qua<double, lowp> lowp_dquat;
+
29 
+
33  typedef qua<double, mediump> mediump_dquat;
+
34 
+
38  typedef qua<double, highp> highp_dquat;
+
39 
+
41 } //namespace glm
+
42 
+
+
qua< double, highp > highp_dquat
Quaternion of high double-qualifier floating-point numbers using high precision arithmetic in term of...
+
qua< double, mediump > mediump_dquat
Quaternion of medium double-qualifier floating-point numbers using high precision arithmetic in term ...
+
qua< double, lowp > lowp_dquat
Quaternion of double-precision floating-point numbers using high precision arithmetic in term of ULPs...
+ + + + diff --git a/include/glm/doc/api/a00335.html b/include/glm/doc/api/a00335.html new file mode 100644 index 0000000..8655aff --- /dev/null +++ b/include/glm/doc/api/a00335.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: quaternion_exponential.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_exponential.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_exponential +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > exp (qua< T, Q > const &q)
 Returns a exponential of a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > log (qua< T, Q > const &q)
 Returns a logarithm of a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > pow (qua< T, Q > const &q, T y)
 Returns a quaternion raised to a power. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > sqrt (qua< T, Q > const &q)
 Returns the square root of a quaternion. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00335_source.html b/include/glm/doc/api/a00335_source.html new file mode 100644 index 0000000..7270062 --- /dev/null +++ b/include/glm/doc/api/a00335_source.html @@ -0,0 +1,116 @@ + + + + + + + +1.0.2 API documentation: quaternion_exponential.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_exponential.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependency:
+
18 #include "../common.hpp"
+
19 #include "../trigonometric.hpp"
+
20 #include "../geometric.hpp"
+
21 #include "../ext/scalar_constants.hpp"
+
22 
+
23 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_EXT_quaternion_exponential extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
36  template<typename T, qualifier Q>
+
37  GLM_FUNC_DECL qua<T, Q> exp(qua<T, Q> const& q);
+
38 
+
43  template<typename T, qualifier Q>
+
44  GLM_FUNC_DECL qua<T, Q> log(qua<T, Q> const& q);
+
45 
+
50  template<typename T, qualifier Q>
+
51  GLM_FUNC_DECL qua<T, Q> pow(qua<T, Q> const& q, T y);
+
52 
+
57  template<typename T, qualifier Q>
+
58  GLM_FUNC_DECL qua<T, Q> sqrt(qua<T, Q> const& q);
+
59 
+
61 } //namespace glm
+
62 
+
63 #include "quaternion_exponential.inl"
+
+
GLM_FUNC_DECL qua< T, Q > pow(qua< T, Q > const &q, T y)
Returns a quaternion raised to a power.
+
GLM_FUNC_DECL qua< T, Q > log(qua< T, Q > const &q)
Returns a logarithm of a quaternion.
+
GLM_FUNC_DECL qua< T, Q > sqrt(qua< T, Q > const &q)
Returns the square root of a quaternion.
+
GLM_FUNC_DECL qua< T, Q > exp(qua< T, Q > const &q)
Returns a exponential of a quaternion.
+ + + + diff --git a/include/glm/doc/api/a00338.html b/include/glm/doc/api/a00338.html new file mode 100644 index 0000000..b3475a2 --- /dev/null +++ b/include/glm/doc/api/a00338.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: quaternion_float.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_float.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_float +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

+typedef qua< float, defaultp > quat
 Quaternion of single-precision floating-point numbers.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00338_source.html b/include/glm/doc/api/a00338_source.html new file mode 100644 index 0000000..442556b --- /dev/null +++ b/include/glm/doc/api/a00338_source.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: quaternion_float.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_float.hpp
+
+
+Go to the documentation of this file.
1 
+
20 #pragma once
+
21 
+
22 // Dependency:
+
23 #include "../detail/type_quat.hpp"
+
24 
+
25 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
26 # pragma message("GLM: GLM_EXT_quaternion_float extension included")
+
27 #endif
+
28 
+
29 namespace glm
+
30 {
+
33 
+
35  typedef qua<float, defaultp> quat;
+
36 
+
38 } //namespace glm
+
39 
+
+
qua< float, defaultp > quat
Quaternion of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00341.html b/include/glm/doc/api/a00341.html new file mode 100644 index 0000000..d70e43b --- /dev/null +++ b/include/glm/doc/api/a00341.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: quaternion_float_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_float_precision.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_float_precision +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

+typedef qua< float, highp > highp_quat
 Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< float, lowp > lowp_quat
 Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< float, mediump > mediump_quat
 Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00341_source.html b/include/glm/doc/api/a00341_source.html new file mode 100644 index 0000000..1212523 --- /dev/null +++ b/include/glm/doc/api/a00341_source.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: quaternion_float_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_float_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
11 #pragma once
+
12 
+
13 // Dependency:
+
14 #include "../detail/type_quat.hpp"
+
15 
+
16 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
17 # pragma message("GLM: GLM_EXT_quaternion_float_precision extension included")
+
18 #endif
+
19 
+
20 namespace glm
+
21 {
+
24 
+
26  typedef qua<float, lowp> lowp_quat;
+
27 
+
29  typedef qua<float, mediump> mediump_quat;
+
30 
+
32  typedef qua<float, highp> highp_quat;
+
33 
+
35 } //namespace glm
+
36 
+
+
qua< float, lowp > lowp_quat
Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs...
+
qua< float, mediump > mediump_quat
Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs...
+
qua< float, highp > highp_quat
Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs...
+ + + + diff --git a/include/glm/doc/api/a00344.html b/include/glm/doc/api/a00344.html new file mode 100644 index 0000000..63877c9 --- /dev/null +++ b/include/glm/doc/api/a00344.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: quaternion_geometric.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_geometric.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_geometric +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua< T, Q > cross (qua< T, Q > const &q1, qua< T, Q > const &q2)
 Compute a cross product. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR T dot (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns dot product of q1 and q2, i.e., q1[0] * q2[0] + q1[1] * q2[1] + ... More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T length (qua< T, Q > const &q)
 Returns the norm of a quaternions. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > normalize (qua< T, Q > const &q)
 Returns the normalized quaternion. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00344_source.html b/include/glm/doc/api/a00344_source.html new file mode 100644 index 0000000..b48509a --- /dev/null +++ b/include/glm/doc/api/a00344_source.html @@ -0,0 +1,115 @@ + + + + + + + +1.0.2 API documentation: quaternion_geometric.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_geometric.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependency:
+
18 #include "../geometric.hpp"
+
19 #include "../exponential.hpp"
+
20 #include "../ext/vector_relational.hpp"
+
21 
+
22 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_EXT_quaternion_geometric extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
37  template<typename T, qualifier Q>
+
38  GLM_FUNC_DECL T length(qua<T, Q> const& q);
+
39 
+
46  template<typename T, qualifier Q>
+
47  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> normalize(qua<T, Q> const& q);
+
48 
+
55  template<typename T, qualifier Q>
+
56  GLM_FUNC_DECL GLM_CONSTEXPR T dot(qua<T, Q> const& x, qua<T, Q> const& y);
+
57 
+
64  template<typename T, qualifier Q>
+
65  GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua<T, Q> cross(qua<T, Q> const& q1, qua<T, Q> const& q2);
+
66 
+
68 } //namespace glm
+
69 
+
70 #include "quaternion_geometric.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR T dot(qua< T, Q > const &x, qua< T, Q > const &y)
Returns dot product of q1 and q2, i.e., q1[0] * q2[0] + q1[1] * q2[1] + ...
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > normalize(qua< T, Q > const &q)
Returns the normalized quaternion.
+
GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua< T, Q > cross(qua< T, Q > const &q1, qua< T, Q > const &q2)
Compute a cross product.
+ + + + diff --git a/include/glm/doc/api/a00347.html b/include/glm/doc/api/a00347.html new file mode 100644 index 0000000..301cc7a --- /dev/null +++ b/include/glm/doc/api/a00347.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: quaternion_relational.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_relational.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_relational +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > equal (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x == y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > equal (qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > notEqual (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x != y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > notEqual (qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00347_source.html b/include/glm/doc/api/a00347_source.html new file mode 100644 index 0000000..98bf3d5 --- /dev/null +++ b/include/glm/doc/api/a00347_source.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: quaternion_relational.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_relational.hpp
+
+
+Go to the documentation of this file.
1 
+
17 #pragma once
+
18 
+
19 // Dependency:
+
20 #include "../vector_relational.hpp"
+
21 
+
22 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_EXT_quaternion_relational extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
35  template<typename T, qualifier Q>
+
36  GLM_FUNC_DECL vec<4, bool, Q> equal(qua<T, Q> const& x, qua<T, Q> const& y);
+
37 
+
42  template<typename T, qualifier Q>
+
43  GLM_FUNC_DECL vec<4, bool, Q> equal(qua<T, Q> const& x, qua<T, Q> const& y, T epsilon);
+
44 
+
49  template<typename T, qualifier Q>
+
50  GLM_FUNC_DECL vec<4, bool, Q> notEqual(qua<T, Q> const& x, qua<T, Q> const& y);
+
51 
+
56  template<typename T, qualifier Q>
+
57  GLM_FUNC_DECL vec<4, bool, Q> notEqual(qua<T, Q> const& x, qua<T, Q> const& y, T epsilon);
+
58 
+
60 } //namespace glm
+
61 
+
62 #include "quaternion_relational.inl"
+
+
GLM_FUNC_DECL vec< 4, bool, Q > notEqual(qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)
Returns the component-wise comparison of |x - y| >= epsilon.
+
GLM_FUNC_DECL vec< 4, bool, Q > equal(qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)
Returns the component-wise comparison of |x - y| < epsilon.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon()
Return the epsilon constant for floating point types.
+ + + + diff --git a/include/glm/doc/api/a00350.html b/include/glm/doc/api/a00350.html new file mode 100644 index 0000000..1cb341a --- /dev/null +++ b/include/glm/doc/api/a00350.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: quaternion_transform.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_transform.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_transform +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > rotate (qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)
 Rotates a quaternion from a vector of 3 components axis and an angle. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00350_source.html b/include/glm/doc/api/a00350_source.html new file mode 100644 index 0000000..6d8bf5e --- /dev/null +++ b/include/glm/doc/api/a00350_source.html @@ -0,0 +1,104 @@ + + + + + + + +1.0.2 API documentation: quaternion_transform.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_transform.hpp
+
+
+Go to the documentation of this file.
1 
+
18 #pragma once
+
19 
+
20 // Dependency:
+
21 #include "../common.hpp"
+
22 #include "../trigonometric.hpp"
+
23 #include "../geometric.hpp"
+
24 
+
25 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
26 # pragma message("GLM: GLM_EXT_quaternion_transform extension included")
+
27 #endif
+
28 
+
29 namespace glm
+
30 {
+
33 
+
42  template<typename T, qualifier Q>
+
43  GLM_FUNC_DECL qua<T, Q> rotate(qua<T, Q> const& q, T const& angle, vec<3, T, Q> const& axis);
+
45 } //namespace glm
+
46 
+
47 #include "quaternion_transform.inl"
+
+
GLM_FUNC_DECL qua< T, Q > rotate(qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)
Rotates a quaternion from a vector of 3 components axis and an angle.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL vec< 3, T, Q > axis(qua< T, Q > const &x)
Returns the q rotation axis.
+ + + + diff --git a/include/glm/doc/api/a00353.html b/include/glm/doc/api/a00353.html new file mode 100644 index 0000000..00acfb3 --- /dev/null +++ b/include/glm/doc/api/a00353.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: quaternion_trigonometric.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
quaternion_trigonometric.hpp File Reference
+
+
+ +

GLM_EXT_quaternion_trigonometric +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL T angle (qua< T, Q > const &x)
 Returns the quaternion rotation angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > angleAxis (T const &angle, vec< 3, T, Q > const &axis)
 Build a quaternion from an angle and a normalized axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > axis (qua< T, Q > const &x)
 Returns the q rotation axis. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00353_source.html b/include/glm/doc/api/a00353_source.html new file mode 100644 index 0000000..831d02b --- /dev/null +++ b/include/glm/doc/api/a00353_source.html @@ -0,0 +1,115 @@ + + + + + + + +1.0.2 API documentation: quaternion_trigonometric.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
quaternion_trigonometric.hpp
+
+
+Go to the documentation of this file.
1 
+
18 #pragma once
+
19 
+
20 // Dependency:
+
21 #include "../trigonometric.hpp"
+
22 #include "../exponential.hpp"
+
23 #include "scalar_constants.hpp"
+
24 #include "vector_relational.hpp"
+
25 #include <limits>
+
26 
+
27 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
28 # pragma message("GLM: GLM_EXT_quaternion_trigonometric extension included")
+
29 #endif
+
30 
+
31 namespace glm
+
32 {
+
35 
+
42  template<typename T, qualifier Q>
+
43  GLM_FUNC_DECL T angle(qua<T, Q> const& x);
+
44 
+
49  template<typename T, qualifier Q>
+
50  GLM_FUNC_DECL vec<3, T, Q> axis(qua<T, Q> const& x);
+
51 
+
59  template<typename T, qualifier Q>
+
60  GLM_FUNC_DECL qua<T, Q> angleAxis(T const& angle, vec<3, T, Q> const& axis);
+
61 
+
63 } //namespace glm
+
64 
+
65 #include "quaternion_trigonometric.inl"
+
+
GLM_EXT_scalar_constants
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL qua< T, Q > angleAxis(T const &angle, vec< 3, T, Q > const &axis)
Build a quaternion from an angle and a normalized axis.
+ +
GLM_FUNC_DECL vec< 3, T, Q > axis(qua< T, Q > const &x)
Returns the q rotation axis.
+ + + + diff --git a/include/glm/doc/api/a00356.html b/include/glm/doc/api/a00356.html new file mode 100644 index 0000000..2898ce4 --- /dev/null +++ b/include/glm/doc/api/a00356.html @@ -0,0 +1,164 @@ + + + + + + + +1.0.2 API documentation: scalar_common.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
scalar_common.hpp File Reference
+
+
+ +

GLM_EXT_scalar_common +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType clamp (genType const &Texcoord)
 Simulate GL_CLAMP OpenGL wrap mode. More...
 
template<typename genType >
GLM_FUNC_DECL genType fclamp (genType x, genType minVal, genType maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x. More...
 
template<typename T >
GLM_FUNC_DECL T() fmax (T a, T b)
 Returns the maximum component-wise values of 2 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmax (T a, T b, T C)
 Returns the maximum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmax (T a, T b, T C, T D)
 Returns the maximum component-wise values of 4 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmin (T a, T b)
 Returns the minimum component-wise values of 2 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmin (T a, T b, T c)
 Returns the minimum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmin (T a, T b, T c, T d)
 Returns the minimum component-wise values of 4 inputs. More...
 
template<typename genType >
GLM_FUNC_DECL int iround (genType const &x)
 Returns a value equal to the nearest integer to x. More...
 
template<typename T >
GLM_FUNC_DECL T() max (T a, T b, T c)
 Returns the maximum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() max (T a, T b, T c, T d)
 Returns the maximum component-wise values of 4 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() min (T a, T b, T c)
 Returns the minimum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() min (T a, T b, T c, T d)
 Returns the minimum component-wise values of 4 inputs. More...
 
template<typename genType >
GLM_FUNC_DECL genType mirrorClamp (genType const &Texcoord)
 Simulate GL_MIRRORED_REPEAT OpenGL wrap mode. More...
 
template<typename genType >
GLM_FUNC_DECL genType mirrorRepeat (genType const &Texcoord)
 Simulate GL_MIRROR_REPEAT OpenGL wrap mode. More...
 
template<typename genType >
GLM_FUNC_DECL genType repeat (genType const &Texcoord)
 Simulate GL_REPEAT OpenGL wrap mode. More...
 
template<typename genType >
GLM_FUNC_DECL uint uround (genType const &x)
 Returns a value equal to the nearest integer to x. More...
 
+

Detailed Description

+

GLM_EXT_scalar_common

+ +

Definition in file scalar_common.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00356_source.html b/include/glm/doc/api/a00356_source.html new file mode 100644 index 0000000..9c260e8 --- /dev/null +++ b/include/glm/doc/api/a00356_source.html @@ -0,0 +1,159 @@ + + + + + + + +1.0.2 API documentation: scalar_common.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_common.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../common.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_scalar_common extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
33  template<typename T>
+
34  GLM_FUNC_DECL T (min)(T a, T b, T c);
+
35 
+
41  template<typename T>
+
42  GLM_FUNC_DECL T (min)(T a, T b, T c, T d);
+
43 
+
49  template<typename T>
+
50  GLM_FUNC_DECL T (max)(T a, T b, T c);
+
51 
+
57  template<typename T>
+
58  GLM_FUNC_DECL T (max)(T a, T b, T c, T d);
+
59 
+
66  template<typename T>
+
67  GLM_FUNC_DECL T (fmin)(T a, T b);
+
68 
+
75  template<typename T>
+
76  GLM_FUNC_DECL T (fmin)(T a, T b, T c);
+
77 
+
84  template<typename T>
+
85  GLM_FUNC_DECL T (fmin)(T a, T b, T c, T d);
+
86 
+
93  template<typename T>
+
94  GLM_FUNC_DECL T (fmax)(T a, T b);
+
95 
+
102  template<typename T>
+
103  GLM_FUNC_DECL T (fmax)(T a, T b, T C);
+
104 
+
111  template<typename T>
+
112  GLM_FUNC_DECL T (fmax)(T a, T b, T C, T D);
+
113 
+
119  template<typename genType>
+
120  GLM_FUNC_DECL genType fclamp(genType x, genType minVal, genType maxVal);
+
121 
+
127  template<typename genType>
+
128  GLM_FUNC_DECL genType clamp(genType const& Texcoord);
+
129 
+
135  template<typename genType>
+
136  GLM_FUNC_DECL genType repeat(genType const& Texcoord);
+
137 
+
143  template<typename genType>
+
144  GLM_FUNC_DECL genType mirrorClamp(genType const& Texcoord);
+
145 
+
151  template<typename genType>
+
152  GLM_FUNC_DECL genType mirrorRepeat(genType const& Texcoord);
+
153 
+
163  template<typename genType>
+
164  GLM_FUNC_DECL int iround(genType const& x);
+
165 
+
175  template<typename genType>
+
176  GLM_FUNC_DECL uint uround(genType const& x);
+
177 
+
179 }//namespace glm
+
180 
+
181 #include "scalar_common.inl"
+
+
GLM_FUNC_DECL genType repeat(genType const &Texcoord)
Simulate GL_REPEAT OpenGL wrap mode.
+
GLM_FUNC_DECL T() max(T a, T b, T c, T d)
Returns the maximum component-wise values of 4 inputs.
+
GLM_FUNC_DECL genType clamp(genType const &Texcoord)
Simulate GL_CLAMP OpenGL wrap mode.
+
GLM_FUNC_DECL uint uround(genType const &x)
Returns a value equal to the nearest integer to x.
+
GLM_FUNC_DECL T() fmax(T a, T b, T C, T D)
Returns the maximum component-wise values of 4 inputs.
+
GLM_FUNC_DECL genType fclamp(genType x, genType minVal, genType maxVal)
Returns min(max(x, minVal), maxVal) for each component in x.
+
GLM_FUNC_DECL T() fmin(T a, T b, T c, T d)
Returns the minimum component-wise values of 4 inputs.
+
GLM_FUNC_DECL genType mirrorRepeat(genType const &Texcoord)
Simulate GL_MIRROR_REPEAT OpenGL wrap mode.
+
GLM_FUNC_DECL T() min(T a, T b, T c, T d)
Returns the minimum component-wise values of 4 inputs.
+
GLM_FUNC_DECL int iround(genType const &x)
Returns a value equal to the nearest integer to x.
+
GLM_FUNC_DECL genType mirrorClamp(genType const &Texcoord)
Simulate GL_MIRRORED_REPEAT OpenGL wrap mode.
+ + + + diff --git a/include/glm/doc/api/a00359.html b/include/glm/doc/api/a00359.html new file mode 100644 index 0000000..6cd9047 --- /dev/null +++ b/include/glm/doc/api/a00359.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: scalar_constants.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
scalar_constants.hpp File Reference
+
+
+ +

GLM_EXT_scalar_constants +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Functions

+template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType cos_one_over_two ()
 Return the value of cos(1 / 2) for floating point types.
 
+template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon ()
 Return the epsilon constant for floating point types.
 
+template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType pi ()
 Return the pi constant for floating point types.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00359_source.html b/include/glm/doc/api/a00359_source.html new file mode 100644 index 0000000..4ab41ff --- /dev/null +++ b/include/glm/doc/api/a00359_source.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: scalar_constants.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_constants.hpp
+
+
+Go to the documentation of this file.
1 
+
11 #pragma once
+
12 
+
13 // Dependencies
+
14 #include "../detail/setup.hpp"
+
15 
+
16 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
17 # pragma message("GLM: GLM_EXT_scalar_constants extension included")
+
18 #endif
+
19 
+
20 namespace glm
+
21 {
+
24 
+
26  template<typename genType>
+
27  GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon();
+
28 
+
30  template<typename genType>
+
31  GLM_FUNC_DECL GLM_CONSTEXPR genType pi();
+
32 
+
34  template<typename genType>
+
35  GLM_FUNC_DECL GLM_CONSTEXPR genType cos_one_over_two();
+
36 
+
38 } //namespace glm
+
39 
+
40 #include "scalar_constants.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR genType cos_one_over_two()
Return the value of cos(1 / 2) for floating point types.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType pi()
Return the pi constant for floating point types.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon()
Return the epsilon constant for floating point types.
+ + + + diff --git a/include/glm/doc/api/a00362.html b/include/glm/doc/api/a00362.html new file mode 100644 index 0000000..f5bda0c --- /dev/null +++ b/include/glm/doc/api/a00362.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: scalar_int_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
scalar_int_sized.hpp File Reference
+
+
+ +

GLM_EXT_scalar_int_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

+typedef detail::int16 int16
 16 bit signed integer type.
 
+typedef detail::int32 int32
 32 bit signed integer type.
 
+typedef detail::int64 int64
 64 bit signed integer type.
 
+typedef detail::int8 int8
 8 bit signed integer type.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00362_source.html b/include/glm/doc/api/a00362_source.html new file mode 100644 index 0000000..9a2b96e --- /dev/null +++ b/include/glm/doc/api/a00362_source.html @@ -0,0 +1,140 @@ + + + + + + + +1.0.2 API documentation: scalar_int_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_int_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #include "../detail/setup.hpp"
+
16 
+
17 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
18 # pragma message("GLM: GLM_EXT_scalar_int_sized extension included")
+
19 #endif
+
20 
+
21 namespace glm{
+
22 namespace detail
+
23 {
+
24 # if GLM_HAS_EXTENDED_INTEGER_TYPE
+
25  typedef std::int8_t int8;
+
26  typedef std::int16_t int16;
+
27  typedef std::int32_t int32;
+
28 # else
+
29  typedef signed char int8;
+
30  typedef signed short int16;
+
31  typedef signed int int32;
+
32 #endif//
+
33 
+
34  template<>
+
35  struct is_int<int8>
+
36  {
+
37  enum test {value = ~0};
+
38  };
+
39 
+
40  template<>
+
41  struct is_int<int16>
+
42  {
+
43  enum test {value = ~0};
+
44  };
+
45 
+
46  template<>
+
47  struct is_int<int64>
+
48  {
+
49  enum test {value = ~0};
+
50  };
+
51 }//namespace detail
+
52 
+
53 
+
56 
+
58  typedef detail::int8 int8;
+
59 
+
61  typedef detail::int16 int16;
+
62 
+
64  typedef detail::int32 int32;
+
65 
+
67  typedef detail::int64 int64;
+
68 
+
70 }//namespace glm
+
+
detail::int16 int16
16 bit signed integer type.
+
int16 int16_t
16 bit signed integer type.
Definition: fwd.hpp:57
+
int32 int32_t
32 bit signed integer type.
Definition: fwd.hpp:71
+
int8 int8_t
8 bit signed integer type.
Definition: fwd.hpp:43
+
detail::int8 int8
8 bit signed integer type.
+
detail::int64 int64
64 bit signed integer type.
+
detail::int32 int32
32 bit signed integer type.
+ + + + diff --git a/include/glm/doc/api/a00365.html b/include/glm/doc/api/a00365.html new file mode 100644 index 0000000..7567dc8 --- /dev/null +++ b/include/glm/doc/api/a00365.html @@ -0,0 +1,125 @@ + + + + + + + +1.0.2 API documentation: scalar_integer.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
scalar_integer.hpp File Reference
+
+
+ +

GLM_EXT_scalar_integer +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genIUType >
GLM_FUNC_DECL int findNSB (genIUType x, int significantBitCount)
 Returns the bit number of the Nth significant bit set to 1 in the binary representation of value. More...
 
template<typename genIUType >
GLM_FUNC_DECL bool isMultiple (genIUType v, genIUType Multiple)
 Return true if the 'Value' is a multiple of 'Multiple'. More...
 
template<typename genIUType >
GLM_FUNC_DECL bool isPowerOfTwo (genIUType v)
 Return true if the value is a power of two number. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType nextMultiple (genIUType v, genIUType Multiple)
 Higher multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType nextPowerOfTwo (genIUType v)
 Return the power of two number which value is just higher the input value, round up to a power of two. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType prevMultiple (genIUType v, genIUType Multiple)
 Lower multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType prevPowerOfTwo (genIUType v)
 Return the power of two number which value is just lower the input value, round down to a power of two. More...
 
+

Detailed Description

+

GLM_EXT_scalar_integer

+
See also
Core features (dependence)
+ +

Definition in file scalar_integer.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00365_source.html b/include/glm/doc/api/a00365_source.html new file mode 100644 index 0000000..81bf966 --- /dev/null +++ b/include/glm/doc/api/a00365_source.html @@ -0,0 +1,131 @@ + + + + + + + +1.0.2 API documentation: scalar_integer.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_integer.hpp
+
+
+Go to the documentation of this file.
1 
+
11 #pragma once
+
12 
+
13 // Dependencies
+
14 #include "../detail/setup.hpp"
+
15 #include "../detail/qualifier.hpp"
+
16 #include "../detail/_vectorize.hpp"
+
17 #include "../detail/type_float.hpp"
+
18 #include "../vector_relational.hpp"
+
19 #include "../common.hpp"
+
20 #include <limits>
+
21 
+
22 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_EXT_scalar_integer extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
34  template<typename genIUType>
+
35  GLM_FUNC_DECL bool isPowerOfTwo(genIUType v);
+
36 
+
41  template<typename genIUType>
+
42  GLM_FUNC_DECL genIUType nextPowerOfTwo(genIUType v);
+
43 
+
48  template<typename genIUType>
+
49  GLM_FUNC_DECL genIUType prevPowerOfTwo(genIUType v);
+
50 
+
54  template<typename genIUType>
+
55  GLM_FUNC_DECL bool isMultiple(genIUType v, genIUType Multiple);
+
56 
+
65  template<typename genIUType>
+
66  GLM_FUNC_DECL genIUType nextMultiple(genIUType v, genIUType Multiple);
+
67 
+
76  template<typename genIUType>
+
77  GLM_FUNC_DECL genIUType prevMultiple(genIUType v, genIUType Multiple);
+
78 
+
86  template<typename genIUType>
+
87  GLM_FUNC_DECL int findNSB(genIUType x, int significantBitCount);
+
88 
+
90 } //namespace glm
+
91 
+
92 #include "scalar_integer.inl"
+
+
GLM_FUNC_DECL genIUType prevPowerOfTwo(genIUType v)
Return the power of two number which value is just lower the input value, round down to a power of tw...
+
GLM_FUNC_DECL genIUType nextMultiple(genIUType v, genIUType Multiple)
Higher multiple number of Source.
+
GLM_FUNC_DECL int findNSB(genIUType x, int significantBitCount)
Returns the bit number of the Nth significant bit set to 1 in the binary representation of value.
+
GLM_FUNC_DECL genIUType nextPowerOfTwo(genIUType v)
Return the power of two number which value is just higher the input value, round up to a power of two...
+
GLM_FUNC_DECL bool isMultiple(genIUType v, genIUType Multiple)
Return true if the 'Value' is a multiple of 'Multiple'.
+
GLM_FUNC_DECL bool isPowerOfTwo(genIUType v)
Return true if the value is a power of two number.
+
GLM_FUNC_DECL genIUType prevMultiple(genIUType v, genIUType Multiple)
Lower multiple number of Source.
+ + + + diff --git a/include/glm/doc/api/a00368.html b/include/glm/doc/api/a00368.html new file mode 100644 index 0000000..07cb28d --- /dev/null +++ b/include/glm/doc/api/a00368.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: scalar_packing.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_packing.hpp File Reference
+
+
+ +

GLM_EXT_scalar_packing +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_EXT_scalar_packing

+
See also
Core features (dependence)
+ +

Definition in file scalar_packing.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00368_source.html b/include/glm/doc/api/a00368_source.html new file mode 100644 index 0000000..daa750f --- /dev/null +++ b/include/glm/doc/api/a00368_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: scalar_packing.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_packing.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../detail/qualifier.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_scalar_packing extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
28 
+
30 }// namespace glm
+
31 
+
32 #include "scalar_packing.inl"
+
+ + + + diff --git a/include/glm/doc/api/a00371.html b/include/glm/doc/api/a00371.html new file mode 100644 index 0000000..00bb8d1 --- /dev/null +++ b/include/glm/doc/api/a00371.html @@ -0,0 +1,145 @@ + + + + + + + +1.0.2 API documentation: scalar_reciprocal.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
scalar_reciprocal.hpp File Reference
+
+
+ +

GLM_EXT_scalar_reciprocal +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType acot (genType x)
 Inverse cotangent function. More...
 
template<typename genType >
GLM_FUNC_DECL genType acoth (genType x)
 Inverse cotangent hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType acsc (genType x)
 Inverse cosecant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType acsch (genType x)
 Inverse cosecant hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType asec (genType x)
 Inverse secant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType asech (genType x)
 Inverse secant hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType cot (genType angle)
 Cotangent function. More...
 
template<typename genType >
GLM_FUNC_DECL genType coth (genType angle)
 Cotangent hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType csc (genType angle)
 Cosecant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType csch (genType angle)
 Cosecant hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType sec (genType angle)
 Secant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType sech (genType angle)
 Secant hyperbolic function. More...
 
+

Detailed Description

+

GLM_EXT_scalar_reciprocal

+
See also
Core features (dependence)
+ +

Definition in file scalar_reciprocal.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00371_source.html b/include/glm/doc/api/a00371_source.html new file mode 100644 index 0000000..86a8362 --- /dev/null +++ b/include/glm/doc/api/a00371_source.html @@ -0,0 +1,146 @@ + + + + + + + +1.0.2 API documentation: scalar_reciprocal.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_reciprocal.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "../detail/setup.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_scalar_reciprocal extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
33  template<typename genType>
+
34  GLM_FUNC_DECL genType sec(genType angle);
+
35 
+
42  template<typename genType>
+
43  GLM_FUNC_DECL genType csc(genType angle);
+
44 
+
51  template<typename genType>
+
52  GLM_FUNC_DECL genType cot(genType angle);
+
53 
+
60  template<typename genType>
+
61  GLM_FUNC_DECL genType asec(genType x);
+
62 
+
69  template<typename genType>
+
70  GLM_FUNC_DECL genType acsc(genType x);
+
71 
+
78  template<typename genType>
+
79  GLM_FUNC_DECL genType acot(genType x);
+
80 
+
86  template<typename genType>
+
87  GLM_FUNC_DECL genType sech(genType angle);
+
88 
+
94  template<typename genType>
+
95  GLM_FUNC_DECL genType csch(genType angle);
+
96 
+
102  template<typename genType>
+
103  GLM_FUNC_DECL genType coth(genType angle);
+
104 
+
111  template<typename genType>
+
112  GLM_FUNC_DECL genType asech(genType x);
+
113 
+
120  template<typename genType>
+
121  GLM_FUNC_DECL genType acsch(genType x);
+
122 
+
129  template<typename genType>
+
130  GLM_FUNC_DECL genType acoth(genType x);
+
131 
+
133 }//namespace glm
+
134 
+
135 #include "scalar_reciprocal.inl"
+
+
GLM_FUNC_DECL genType cot(genType angle)
Cotangent function.
+
GLM_FUNC_DECL genType sec(genType angle)
Secant function.
+
GLM_FUNC_DECL genType csch(genType angle)
Cosecant hyperbolic function.
+
GLM_FUNC_DECL genType sech(genType angle)
Secant hyperbolic function.
+
GLM_FUNC_DECL genType csc(genType angle)
Cosecant function.
+
GLM_FUNC_DECL genType acot(genType x)
Inverse cotangent function.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL genType asech(genType x)
Inverse secant hyperbolic function.
+
GLM_FUNC_DECL genType acsch(genType x)
Inverse cosecant hyperbolic function.
+
GLM_FUNC_DECL genType acoth(genType x)
Inverse cotangent hyperbolic function.
+
GLM_FUNC_DECL genType coth(genType angle)
Cotangent hyperbolic function.
+
GLM_FUNC_DECL genType acsc(genType x)
Inverse cosecant function.
+
GLM_FUNC_DECL genType asec(genType x)
Inverse secant function.
+ + + + diff --git a/include/glm/doc/api/a00377.html b/include/glm/doc/api/a00377.html new file mode 100644 index 0000000..e24d91c --- /dev/null +++ b/include/glm/doc/api/a00377.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: scalar_uint_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
scalar_uint_sized.hpp File Reference
+
+
+ +

GLM_EXT_scalar_uint_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

+typedef detail::uint16 uint16
 16 bit unsigned integer type.
 
+typedef detail::uint32 uint32
 32 bit unsigned integer type.
 
+typedef detail::uint64 uint64
 64 bit unsigned integer type.
 
+typedef detail::uint8 uint8
 8 bit unsigned integer type.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00377_source.html b/include/glm/doc/api/a00377_source.html new file mode 100644 index 0000000..46ce6b0 --- /dev/null +++ b/include/glm/doc/api/a00377_source.html @@ -0,0 +1,140 @@ + + + + + + + +1.0.2 API documentation: scalar_uint_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_uint_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #include "../detail/setup.hpp"
+
16 
+
17 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
18 # pragma message("GLM: GLM_EXT_scalar_uint_sized extension included")
+
19 #endif
+
20 
+
21 namespace glm{
+
22 namespace detail
+
23 {
+
24 # if GLM_HAS_EXTENDED_INTEGER_TYPE
+
25  typedef std::uint8_t uint8;
+
26  typedef std::uint16_t uint16;
+
27  typedef std::uint32_t uint32;
+
28 # else
+
29  typedef unsigned char uint8;
+
30  typedef unsigned short uint16;
+
31  typedef unsigned int uint32;
+
32 #endif
+
33 
+
34  template<>
+
35  struct is_int<uint8>
+
36  {
+
37  enum test {value = ~0};
+
38  };
+
39 
+
40  template<>
+
41  struct is_int<uint16>
+
42  {
+
43  enum test {value = ~0};
+
44  };
+
45 
+
46  template<>
+
47  struct is_int<uint64>
+
48  {
+
49  enum test {value = ~0};
+
50  };
+
51 }//namespace detail
+
52 
+
53 
+
56 
+
58  typedef detail::uint8 uint8;
+
59 
+
61  typedef detail::uint16 uint16;
+
62 
+
64  typedef detail::uint32 uint32;
+
65 
+
67  typedef detail::uint64 uint64;
+
68 
+
70 }//namespace glm
+
+
detail::uint32 uint32
32 bit unsigned integer type.
+
uint16 uint16_t
Default qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:117
+
detail::uint64 uint64
64 bit unsigned integer type.
+
detail::uint8 uint8
8 bit unsigned integer type.
+
uint32 uint32_t
Default qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:131
+
uint8 uint8_t
Default qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:103
+
detail::uint16 uint16
16 bit unsigned integer type.
+ + + + diff --git a/include/glm/doc/api/a00380.html b/include/glm/doc/api/a00380.html new file mode 100644 index 0000000..b874654 --- /dev/null +++ b/include/glm/doc/api/a00380.html @@ -0,0 +1,118 @@ + + + + + + + +1.0.2 API documentation: scalar_ulp.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
scalar_ulp.hpp File Reference
+
+
+ +

GLM_EXT_scalar_ulp +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

GLM_FUNC_DECL int64 floatDistance (double x, double y)
 Return the distance in the number of ULP between 2 double-precision floating-point scalars. More...
 
GLM_FUNC_DECL int floatDistance (float x, float y)
 Return the distance in the number of ULP between 2 single-precision floating-point scalars. More...
 
template<typename genType >
GLM_FUNC_DECL genType nextFloat (genType x)
 Return the next ULP value(s) after the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType nextFloat (genType x, int ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType prevFloat (genType x)
 Return the previous ULP value(s) before the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType prevFloat (genType x, int ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
+

Detailed Description

+

GLM_EXT_scalar_ulp

+ +

Definition in file scalar_ulp.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00380_source.html b/include/glm/doc/api/a00380_source.html new file mode 100644 index 0000000..1365001 --- /dev/null +++ b/include/glm/doc/api/a00380_source.html @@ -0,0 +1,119 @@ + + + + + + + +1.0.2 API documentation: scalar_ulp.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_ulp.hpp
+
+
+Go to the documentation of this file.
1 
+
16 #pragma once
+
17 
+
18 // Dependencies
+
19 #include "../ext/scalar_int_sized.hpp"
+
20 #include "../common.hpp"
+
21 #include "../detail/qualifier.hpp"
+
22 
+
23 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_EXT_scalar_ulp extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
37  template<typename genType>
+
38  GLM_FUNC_DECL genType nextFloat(genType x);
+
39 
+
45  template<typename genType>
+
46  GLM_FUNC_DECL genType prevFloat(genType x);
+
47 
+
53  template<typename genType>
+
54  GLM_FUNC_DECL genType nextFloat(genType x, int ULPs);
+
55 
+
61  template<typename genType>
+
62  GLM_FUNC_DECL genType prevFloat(genType x, int ULPs);
+
63 
+
67  GLM_FUNC_DECL int floatDistance(float x, float y);
+
68 
+
72  GLM_FUNC_DECL int64 floatDistance(double x, double y);
+
73 
+
75 }//namespace glm
+
76 
+
77 #include "scalar_ulp.inl"
+
+
GLM_FUNC_DECL genType prevFloat(genType x, int ULPs)
Return the value(s) ULP distance before the input value(s).
+
GLM_FUNC_DECL int64 floatDistance(double x, double y)
Return the distance in the number of ULP between 2 double-precision floating-point scalars.
+
GLM_FUNC_DECL genType nextFloat(genType x, int ULPs)
Return the value(s) ULP distance after the input value(s).
+
detail::int64 int64
64 bit signed integer type.
+ + + + diff --git a/include/glm/doc/api/a00383.html b/include/glm/doc/api/a00383.html new file mode 100644 index 0000000..74e5e55 --- /dev/null +++ b/include/glm/doc/api/a00383.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: vector_bool1.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_bool1.hpp File Reference
+
+
+ +

GLM_EXT_vector_bool1 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

+typedef vec< 1, bool, defaultp > bvec1
 1 components vector of boolean.
 
+

Detailed Description

+

GLM_EXT_vector_bool1

+ +

Definition in file vector_bool1.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00383_source.html b/include/glm/doc/api/a00383_source.html new file mode 100644 index 0000000..a62b096 --- /dev/null +++ b/include/glm/doc/api/a00383_source.html @@ -0,0 +1,97 @@ + + + + + + + +1.0.2 API documentation: vector_bool1.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_bool1.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #include "../detail/type_vec1.hpp"
+
16 
+
17 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
18 # pragma message("GLM: GLM_EXT_vector_bool1 extension included")
+
19 #endif
+
20 
+
21 namespace glm
+
22 {
+
25 
+
27  typedef vec<1, bool, defaultp> bvec1;
+
28 
+
30 }//namespace glm
+
+
vec< 1, bool, defaultp > bvec1
1 components vector of boolean.
+ + + + diff --git a/include/glm/doc/api/a00386.html b/include/glm/doc/api/a00386.html new file mode 100644 index 0000000..978aa42 --- /dev/null +++ b/include/glm/doc/api/a00386.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_bool1_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_bool1_precision.hpp File Reference
+
+
+ +

GLM_EXT_vector_bool1_precision +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

+typedef vec< 1, bool, highp > highp_bvec1
 1 component vector of bool values.
 
+typedef vec< 1, bool, lowp > lowp_bvec1
 1 component vector of bool values.
 
+typedef vec< 1, bool, mediump > mediump_bvec1
 1 component vector of bool values.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00386_source.html b/include/glm/doc/api/a00386_source.html new file mode 100644 index 0000000..3a87d06 --- /dev/null +++ b/include/glm/doc/api/a00386_source.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: vector_bool1_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_bool1_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
11 #pragma once
+
12 
+
13 #include "../detail/type_vec1.hpp"
+
14 
+
15 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
16 # pragma message("GLM: GLM_EXT_vector_bool1_precision extension included")
+
17 #endif
+
18 
+
19 namespace glm
+
20 {
+
23 
+
25  typedef vec<1, bool, highp> highp_bvec1;
+
26 
+
28  typedef vec<1, bool, mediump> mediump_bvec1;
+
29 
+
31  typedef vec<1, bool, lowp> lowp_bvec1;
+
32 
+
34 }//namespace glm
+
+
vec< 1, bool, lowp > lowp_bvec1
1 component vector of bool values.
+
vec< 1, bool, highp > highp_bvec1
1 component vector of bool values.
+
vec< 1, bool, mediump > mediump_bvec1
1 component vector of bool values.
+ + + + diff --git a/include/glm/doc/api/a00389.html b/include/glm/doc/api/a00389.html new file mode 100644 index 0000000..fbc6844 --- /dev/null +++ b/include/glm/doc/api/a00389.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_bool2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_bool2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 2, bool, defaultp > bvec2
 2 components vector of boolean. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_bool2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00389_source.html b/include/glm/doc/api/a00389_source.html new file mode 100644 index 0000000..514ebea --- /dev/null +++ b/include/glm/doc/api/a00389_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_bool2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_bool2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<2, bool, defaultp> bvec2;
+
16 
+
18 }//namespace glm
+
+
vec< 2, bool, defaultp > bvec2
2 components vector of boolean.
+ + + + diff --git a/include/glm/doc/api/a00392.html b/include/glm/doc/api/a00392.html new file mode 100644 index 0000000..6f9c591 --- /dev/null +++ b/include/glm/doc/api/a00392.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: vector_bool2_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_bool2_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef vec< 2, bool, highp > highp_bvec2
 2 components vector of high qualifier bool numbers. More...
 
typedef vec< 2, bool, lowp > lowp_bvec2
 2 components vector of low qualifier bool numbers. More...
 
typedef vec< 2, bool, mediump > mediump_bvec2
 2 components vector of medium qualifier bool numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_bool2_precision.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00392_source.html b/include/glm/doc/api/a00392_source.html new file mode 100644 index 0000000..cc79d20 --- /dev/null +++ b/include/glm/doc/api/a00392_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_bool2_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_bool2_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef vec<2, bool, highp> highp_bvec2;
+
17 
+
22  typedef vec<2, bool, mediump> mediump_bvec2;
+
23 
+
28  typedef vec<2, bool, lowp> lowp_bvec2;
+
29 
+
31 }//namespace glm
+
+
vec< 2, bool, lowp > lowp_bvec2
2 components vector of low qualifier bool numbers.
+
vec< 2, bool, highp > highp_bvec2
2 components vector of high qualifier bool numbers.
+
vec< 2, bool, mediump > mediump_bvec2
2 components vector of medium qualifier bool numbers.
+ + + + diff --git a/include/glm/doc/api/a00395.html b/include/glm/doc/api/a00395.html new file mode 100644 index 0000000..7651285 --- /dev/null +++ b/include/glm/doc/api/a00395.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_bool3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_bool3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 3, bool, defaultp > bvec3
 3 components vector of boolean. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_bool3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00395_source.html b/include/glm/doc/api/a00395_source.html new file mode 100644 index 0000000..ff2ddc5 --- /dev/null +++ b/include/glm/doc/api/a00395_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_bool3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_bool3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<3, bool, defaultp> bvec3;
+
16 
+
18 }//namespace glm
+
+
vec< 3, bool, defaultp > bvec3
3 components vector of boolean.
+ + + + diff --git a/include/glm/doc/api/a00398.html b/include/glm/doc/api/a00398.html new file mode 100644 index 0000000..7e3dce9 --- /dev/null +++ b/include/glm/doc/api/a00398.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: vector_bool3_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_bool3_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef vec< 3, bool, highp > highp_bvec3
 3 components vector of high qualifier bool numbers. More...
 
typedef vec< 3, bool, lowp > lowp_bvec3
 3 components vector of low qualifier bool numbers. More...
 
typedef vec< 3, bool, mediump > mediump_bvec3
 3 components vector of medium qualifier bool numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_bool3_precision.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00398_source.html b/include/glm/doc/api/a00398_source.html new file mode 100644 index 0000000..4d19a19 --- /dev/null +++ b/include/glm/doc/api/a00398_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_bool3_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_bool3_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef vec<3, bool, highp> highp_bvec3;
+
17 
+
22  typedef vec<3, bool, mediump> mediump_bvec3;
+
23 
+
28  typedef vec<3, bool, lowp> lowp_bvec3;
+
29 
+
31 }//namespace glm
+
+
vec< 3, bool, mediump > mediump_bvec3
3 components vector of medium qualifier bool numbers.
+
vec< 3, bool, highp > highp_bvec3
3 components vector of high qualifier bool numbers.
+
vec< 3, bool, lowp > lowp_bvec3
3 components vector of low qualifier bool numbers.
+ + + + diff --git a/include/glm/doc/api/a00401.html b/include/glm/doc/api/a00401.html new file mode 100644 index 0000000..2f3eeb0 --- /dev/null +++ b/include/glm/doc/api/a00401.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_bool4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_bool4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 4, bool, defaultp > bvec4
 4 components vector of boolean. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_bool4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00401_source.html b/include/glm/doc/api/a00401_source.html new file mode 100644 index 0000000..f2aae48 --- /dev/null +++ b/include/glm/doc/api/a00401_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_bool4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_bool4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<4, bool, defaultp> bvec4;
+
16 
+
18 }//namespace glm
+
+
vec< 4, bool, defaultp > bvec4
4 components vector of boolean.
+ + + + diff --git a/include/glm/doc/api/a00404.html b/include/glm/doc/api/a00404.html new file mode 100644 index 0000000..303acf1 --- /dev/null +++ b/include/glm/doc/api/a00404.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: vector_bool4_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_bool4_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef vec< 4, bool, highp > highp_bvec4
 4 components vector of high qualifier bool numbers. More...
 
typedef vec< 4, bool, lowp > lowp_bvec4
 4 components vector of low qualifier bool numbers. More...
 
typedef vec< 4, bool, mediump > mediump_bvec4
 4 components vector of medium qualifier bool numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_bool4_precision.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00404_source.html b/include/glm/doc/api/a00404_source.html new file mode 100644 index 0000000..4a1db15 --- /dev/null +++ b/include/glm/doc/api/a00404_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_bool4_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_bool4_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef vec<4, bool, highp> highp_bvec4;
+
17 
+
22  typedef vec<4, bool, mediump> mediump_bvec4;
+
23 
+
28  typedef vec<4, bool, lowp> lowp_bvec4;
+
29 
+
31 }//namespace glm
+
+
vec< 4, bool, mediump > mediump_bvec4
4 components vector of medium qualifier bool numbers.
+
vec< 4, bool, lowp > lowp_bvec4
4 components vector of low qualifier bool numbers.
+
vec< 4, bool, highp > highp_bvec4
4 components vector of high qualifier bool numbers.
+ + + + diff --git a/include/glm/doc/api/a00407.html b/include/glm/doc/api/a00407.html new file mode 100644 index 0000000..2935899 --- /dev/null +++ b/include/glm/doc/api/a00407.html @@ -0,0 +1,176 @@ + + + + + + + +1.0.2 API documentation: vector_common.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_common.hpp File Reference
+
+
+ +

GLM_EXT_vector_common +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > clamp (vec< L, T, Q > const &Texcoord)
 Simulate GL_CLAMP OpenGL wrap mode. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fclamp (vec< L, T, Q > const &x, T minVal, T maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fclamp (vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmax (vec< L, T, Q > const &a, T b)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmax (vec< L, T, Q > const &a, vec< L, T, Q > const &b)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmax (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmax (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmin (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmin (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmin (vec< L, T, Q > const &x, T y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmin (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > iround (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &z)
 Return the maximum component-wise values of 3 inputs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &z, vec< L, T, Q > const &w)
 Return the maximum component-wise values of 4 inputs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)
 Return the minimum component-wise values of 3 inputs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)
 Return the minimum component-wise values of 4 inputs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > mirrorClamp (vec< L, T, Q > const &Texcoord)
 Simulate GL_MIRRORED_REPEAT OpenGL wrap mode. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > mirrorRepeat (vec< L, T, Q > const &Texcoord)
 Simulate GL_MIRROR_REPEAT OpenGL wrap mode. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > repeat (vec< L, T, Q > const &Texcoord)
 Simulate GL_REPEAT OpenGL wrap mode. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, uint, Q > uround (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x. More...
 
+

Detailed Description

+

GLM_EXT_vector_common

+ +

Definition in file vector_common.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00407_source.html b/include/glm/doc/api/a00407_source.html new file mode 100644 index 0000000..dbf88df --- /dev/null +++ b/include/glm/doc/api/a00407_source.html @@ -0,0 +1,169 @@ + + + + + + + +1.0.2 API documentation: vector_common.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_common.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../ext/scalar_common.hpp"
+
18 #include "../common.hpp"
+
19 
+
20 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_EXT_vector_common extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
34  template<length_t L, typename T, qualifier Q>
+
35  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> min(vec<L, T, Q> const& a, vec<L, T, Q> const& b, vec<L, T, Q> const& c);
+
36 
+
42  template<length_t L, typename T, qualifier Q>
+
43  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> min(vec<L, T, Q> const& a, vec<L, T, Q> const& b, vec<L, T, Q> const& c, vec<L, T, Q> const& d);
+
44 
+
50  template<length_t L, typename T, qualifier Q>
+
51  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> max(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, T, Q> const& z);
+
52 
+
58  template<length_t L, typename T, qualifier Q>
+
59  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> max( vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, T, Q> const& z, vec<L, T, Q> const& w);
+
60 
+
68  template<length_t L, typename T, qualifier Q>
+
69  GLM_FUNC_DECL vec<L, T, Q> fmin(vec<L, T, Q> const& x, T y);
+
70 
+
78  template<length_t L, typename T, qualifier Q>
+
79  GLM_FUNC_DECL vec<L, T, Q> fmin(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
80 
+
88  template<length_t L, typename T, qualifier Q>
+
89  GLM_FUNC_DECL vec<L, T, Q> fmin(vec<L, T, Q> const& a, vec<L, T, Q> const& b, vec<L, T, Q> const& c);
+
90 
+
98  template<length_t L, typename T, qualifier Q>
+
99  GLM_FUNC_DECL vec<L, T, Q> fmin(vec<L, T, Q> const& a, vec<L, T, Q> const& b, vec<L, T, Q> const& c, vec<L, T, Q> const& d);
+
100 
+
108  template<length_t L, typename T, qualifier Q>
+
109  GLM_FUNC_DECL vec<L, T, Q> fmax(vec<L, T, Q> const& a, T b);
+
110 
+
118  template<length_t L, typename T, qualifier Q>
+
119  GLM_FUNC_DECL vec<L, T, Q> fmax(vec<L, T, Q> const& a, vec<L, T, Q> const& b);
+
120 
+
128  template<length_t L, typename T, qualifier Q>
+
129  GLM_FUNC_DECL vec<L, T, Q> fmax(vec<L, T, Q> const& a, vec<L, T, Q> const& b, vec<L, T, Q> const& c);
+
130 
+
138  template<length_t L, typename T, qualifier Q>
+
139  GLM_FUNC_DECL vec<L, T, Q> fmax(vec<L, T, Q> const& a, vec<L, T, Q> const& b, vec<L, T, Q> const& c, vec<L, T, Q> const& d);
+
140 
+
148  template<length_t L, typename T, qualifier Q>
+
149  GLM_FUNC_DECL vec<L, T, Q> fclamp(vec<L, T, Q> const& x, T minVal, T maxVal);
+
150 
+
158  template<length_t L, typename T, qualifier Q>
+
159  GLM_FUNC_DECL vec<L, T, Q> fclamp(vec<L, T, Q> const& x, vec<L, T, Q> const& minVal, vec<L, T, Q> const& maxVal);
+
160 
+
168  template<length_t L, typename T, qualifier Q>
+
169  GLM_FUNC_DECL vec<L, T, Q> clamp(vec<L, T, Q> const& Texcoord);
+
170 
+
178  template<length_t L, typename T, qualifier Q>
+
179  GLM_FUNC_DECL vec<L, T, Q> repeat(vec<L, T, Q> const& Texcoord);
+
180 
+
188  template<length_t L, typename T, qualifier Q>
+
189  GLM_FUNC_DECL vec<L, T, Q> mirrorClamp(vec<L, T, Q> const& Texcoord);
+
190 
+
198  template<length_t L, typename T, qualifier Q>
+
199  GLM_FUNC_DECL vec<L, T, Q> mirrorRepeat(vec<L, T, Q> const& Texcoord);
+
200 
+
210  template<length_t L, typename T, qualifier Q>
+
211  GLM_FUNC_DECL vec<L, int, Q> iround(vec<L, T, Q> const& x);
+
212 
+
222  template<length_t L, typename T, qualifier Q>
+
223  GLM_FUNC_DECL vec<L, uint, Q> uround(vec<L, T, Q> const& x);
+
224 
+
226 }//namespace glm
+
227 
+
228 #include "vector_common.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)
Return the minimum component-wise values of 4 inputs.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &z, vec< L, T, Q > const &w)
Return the maximum component-wise values of 4 inputs.
+
GLM_FUNC_DECL vec< L, T, Q > repeat(vec< L, T, Q > const &Texcoord)
Simulate GL_REPEAT OpenGL wrap mode.
+
GLM_FUNC_DECL vec< L, uint, Q > uround(vec< L, T, Q > const &x)
Returns a value equal to the nearest integer to x.
+
GLM_FUNC_DECL vec< L, T, Q > fmax(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)
Returns y if x < y; otherwise, it returns x.
+
GLM_FUNC_DECL vec< L, T, Q > fclamp(vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)
Returns min(max(x, minVal), maxVal) for each component in x.
+
GLM_FUNC_DECL vec< L, T, Q > mirrorClamp(vec< L, T, Q > const &Texcoord)
Simulate GL_MIRRORED_REPEAT OpenGL wrap mode.
+
GLM_FUNC_DECL vec< L, T, Q > clamp(vec< L, T, Q > const &Texcoord)
Simulate GL_CLAMP OpenGL wrap mode.
+
GLM_FUNC_DECL vec< L, T, Q > mirrorRepeat(vec< L, T, Q > const &Texcoord)
Simulate GL_MIRROR_REPEAT OpenGL wrap mode.
+
GLM_FUNC_DECL vec< L, int, Q > iround(vec< L, T, Q > const &x)
Returns a value equal to the nearest integer to x.
+
GLM_FUNC_DECL vec< L, T, Q > fmin(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)
Returns y if y < x; otherwise, it returns x.
+ + + + diff --git a/include/glm/doc/api/a00410.html b/include/glm/doc/api/a00410.html new file mode 100644 index 0000000..af9d55e --- /dev/null +++ b/include/glm/doc/api/a00410.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: vector_double1.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_double1.hpp File Reference
+
+
+ +

GLM_EXT_vector_double1 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

+typedef vec< 1, double, defaultp > dvec1
 1 components vector of double-precision floating-point numbers.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00410_source.html b/include/glm/doc/api/a00410_source.html new file mode 100644 index 0000000..f1eab82 --- /dev/null +++ b/include/glm/doc/api/a00410_source.html @@ -0,0 +1,97 @@ + + + + + + + +1.0.2 API documentation: vector_double1.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_double1.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../detail/type_vec1.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_vector_double1 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
28  typedef vec<1, double, defaultp> dvec1;
+
29 
+
31 }//namespace glm
+
+
vec< 1, double, defaultp > dvec1
1 components vector of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00413.html b/include/glm/doc/api/a00413.html new file mode 100644 index 0000000..e7b2a14 --- /dev/null +++ b/include/glm/doc/api/a00413.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_double1_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_double1_precision.hpp File Reference
+
+
+ +

GLM_EXT_vector_double1_precision +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

+typedef vec< 1, double, highp > highp_dvec1
 1 component vector of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, lowp > lowp_dvec1
 1 component vector of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, mediump > mediump_dvec1
 1 component vector of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00413_source.html b/include/glm/doc/api/a00413_source.html new file mode 100644 index 0000000..fbbe1e7 --- /dev/null +++ b/include/glm/doc/api/a00413_source.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: vector_double1_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_double1_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #include "../detail/type_vec1.hpp"
+
16 
+
17 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
18 # pragma message("GLM: GLM_EXT_vector_double1_precision extension included")
+
19 #endif
+
20 
+
21 namespace glm
+
22 {
+
25 
+
27  typedef vec<1, double, highp> highp_dvec1;
+
28 
+
30  typedef vec<1, double, mediump> mediump_dvec1;
+
31 
+
33  typedef vec<1, double, lowp> lowp_dvec1;
+
34 
+
36 }//namespace glm
+
+
vec< 1, double, mediump > mediump_dvec1
1 component vector of double-precision floating-point numbers using medium precision arithmetic in te...
+
vec< 1, double, lowp > lowp_dvec1
1 component vector of double-precision floating-point numbers using low precision arithmetic in term ...
+
vec< 1, double, highp > highp_dvec1
1 component vector of double-precision floating-point numbers using high precision arithmetic in term...
+ + + + diff --git a/include/glm/doc/api/a00416.html b/include/glm/doc/api/a00416.html new file mode 100644 index 0000000..c81f256 --- /dev/null +++ b/include/glm/doc/api/a00416.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_double2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_double2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 2, double, defaultp > dvec2
 2 components vector of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_double2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00416_source.html b/include/glm/doc/api/a00416_source.html new file mode 100644 index 0000000..530d6a4 --- /dev/null +++ b/include/glm/doc/api/a00416_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_double2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_double2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<2, double, defaultp> dvec2;
+
16 
+
18 }//namespace glm
+
+
vec< 2, double, defaultp > dvec2
2 components vector of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00419.html b/include/glm/doc/api/a00419.html new file mode 100644 index 0000000..5de3cfa --- /dev/null +++ b/include/glm/doc/api/a00419.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: vector_double2_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_double2_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef vec< 2, double, highp > highp_dvec2
 2 components vector of high double-qualifier floating-point numbers. More...
 
typedef vec< 2, double, lowp > lowp_dvec2
 2 components vector of low double-qualifier floating-point numbers. More...
 
typedef vec< 2, double, mediump > mediump_dvec2
 2 components vector of medium double-qualifier floating-point numbers. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00419_source.html b/include/glm/doc/api/a00419_source.html new file mode 100644 index 0000000..738dc56 --- /dev/null +++ b/include/glm/doc/api/a00419_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_double2_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_double2_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef vec<2, double, highp> highp_dvec2;
+
17 
+
22  typedef vec<2, double, mediump> mediump_dvec2;
+
23 
+
28  typedef vec<2, double, lowp> lowp_dvec2;
+
29 
+
31 }//namespace glm
+
+
vec< 2, double, mediump > mediump_dvec2
2 components vector of medium double-qualifier floating-point numbers.
+
vec< 2, double, lowp > lowp_dvec2
2 components vector of low double-qualifier floating-point numbers.
+
vec< 2, double, highp > highp_dvec2
2 components vector of high double-qualifier floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00422.html b/include/glm/doc/api/a00422.html new file mode 100644 index 0000000..cd19e04 --- /dev/null +++ b/include/glm/doc/api/a00422.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_double3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_double3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 3, double, defaultp > dvec3
 3 components vector of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_double3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00422_source.html b/include/glm/doc/api/a00422_source.html new file mode 100644 index 0000000..4c27e78 --- /dev/null +++ b/include/glm/doc/api/a00422_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_double3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_double3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<3, double, defaultp> dvec3;
+
16 
+
18 }//namespace glm
+
+
vec< 3, double, defaultp > dvec3
3 components vector of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00425.html b/include/glm/doc/api/a00425.html new file mode 100644 index 0000000..25fef1a --- /dev/null +++ b/include/glm/doc/api/a00425.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: vector_double3_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_double3_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef vec< 3, double, highp > highp_dvec3
 3 components vector of high double-qualifier floating-point numbers. More...
 
typedef vec< 3, double, lowp > lowp_dvec3
 3 components vector of low double-qualifier floating-point numbers. More...
 
typedef vec< 3, double, mediump > mediump_dvec3
 3 components vector of medium double-qualifier floating-point numbers. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00425_source.html b/include/glm/doc/api/a00425_source.html new file mode 100644 index 0000000..9151aea --- /dev/null +++ b/include/glm/doc/api/a00425_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_double3_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_double3_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
17  typedef vec<3, double, highp> highp_dvec3;
+
18 
+
24  typedef vec<3, double, mediump> mediump_dvec3;
+
25 
+
31  typedef vec<3, double, lowp> lowp_dvec3;
+
32 
+
34 }//namespace glm
+
+
vec< 3, double, highp > highp_dvec3
3 components vector of high double-qualifier floating-point numbers.
+
vec< 3, double, lowp > lowp_dvec3
3 components vector of low double-qualifier floating-point numbers.
+
vec< 3, double, mediump > mediump_dvec3
3 components vector of medium double-qualifier floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00428.html b/include/glm/doc/api/a00428.html new file mode 100644 index 0000000..85d2bde --- /dev/null +++ b/include/glm/doc/api/a00428.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_double4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_double4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 4, double, defaultp > dvec4
 4 components vector of double-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_double4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00428_source.html b/include/glm/doc/api/a00428_source.html new file mode 100644 index 0000000..b5b0e39 --- /dev/null +++ b/include/glm/doc/api/a00428_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_double4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_double4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<4, double, defaultp> dvec4;
+
16 
+
18 }//namespace glm
+
+
vec< 4, double, defaultp > dvec4
4 components vector of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00431.html b/include/glm/doc/api/a00431.html new file mode 100644 index 0000000..e981f66 --- /dev/null +++ b/include/glm/doc/api/a00431.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: vector_double4_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_double4_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef vec< 4, double, highp > highp_dvec4
 4 components vector of high double-qualifier floating-point numbers. More...
 
typedef vec< 4, double, lowp > lowp_dvec4
 4 components vector of low double-qualifier floating-point numbers. More...
 
typedef vec< 4, double, mediump > mediump_dvec4
 4 components vector of medium double-qualifier floating-point numbers. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00431_source.html b/include/glm/doc/api/a00431_source.html new file mode 100644 index 0000000..f96ac5c --- /dev/null +++ b/include/glm/doc/api/a00431_source.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_double4_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_double4_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/setup.hpp"
+
6 #include "../detail/type_vec4.hpp"
+
7 
+
8 namespace glm
+
9 {
+
12 
+
18  typedef vec<4, double, highp> highp_dvec4;
+
19 
+
25  typedef vec<4, double, mediump> mediump_dvec4;
+
26 
+
32  typedef vec<4, double, lowp> lowp_dvec4;
+
33 
+
35 }//namespace glm
+
+
vec< 4, double, mediump > mediump_dvec4
4 components vector of medium double-qualifier floating-point numbers.
+
vec< 4, double, highp > highp_dvec4
4 components vector of high double-qualifier floating-point numbers.
+
vec< 4, double, lowp > lowp_dvec4
4 components vector of low double-qualifier floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00434.html b/include/glm/doc/api/a00434.html new file mode 100644 index 0000000..af85736 --- /dev/null +++ b/include/glm/doc/api/a00434.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: vector_float1.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_float1.hpp File Reference
+
+
+ +

GLM_EXT_vector_float1 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

+typedef vec< 1, float, defaultp > vec1
 1 components vector of single-precision floating-point numbers.
 
+

Detailed Description

+

GLM_EXT_vector_float1

+ +

Definition in file vector_float1.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00434_source.html b/include/glm/doc/api/a00434_source.html new file mode 100644 index 0000000..e9362e5 --- /dev/null +++ b/include/glm/doc/api/a00434_source.html @@ -0,0 +1,97 @@ + + + + + + + +1.0.2 API documentation: vector_float1.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_float1.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../detail/type_vec1.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_vector_float1 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
28  typedef vec<1, float, defaultp> vec1;
+
29 
+
31 }//namespace glm
+
+
vec< 1, float, defaultp > vec1
1 components vector of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00437.html b/include/glm/doc/api/a00437.html new file mode 100644 index 0000000..2620793 --- /dev/null +++ b/include/glm/doc/api/a00437.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_float1_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_float1_precision.hpp File Reference
+
+
+ +

GLM_EXT_vector_float1_precision +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

+typedef vec< 1, float, highp > highp_vec1
 1 component vector of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, float, lowp > lowp_vec1
 1 component vector of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, float, mediump > mediump_vec1
 1 component vector of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00437_source.html b/include/glm/doc/api/a00437_source.html new file mode 100644 index 0000000..feba1bd --- /dev/null +++ b/include/glm/doc/api/a00437_source.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: vector_float1_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_float1_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #include "../detail/type_vec1.hpp"
+
16 
+
17 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
18 # pragma message("GLM: GLM_EXT_vector_float1_precision extension included")
+
19 #endif
+
20 
+
21 namespace glm
+
22 {
+
25 
+
27  typedef vec<1, float, highp> highp_vec1;
+
28 
+
30  typedef vec<1, float, mediump> mediump_vec1;
+
31 
+
33  typedef vec<1, float, lowp> lowp_vec1;
+
34 
+
36 }//namespace glm
+
+
vec< 1, float, mediump > mediump_vec1
1 component vector of single-precision floating-point numbers using medium precision arithmetic in te...
+
vec< 1, float, lowp > lowp_vec1
1 component vector of single-precision floating-point numbers using low precision arithmetic in term ...
+
vec< 1, float, highp > highp_vec1
1 component vector of single-precision floating-point numbers using high precision arithmetic in term...
+ + + + diff --git a/include/glm/doc/api/a00440.html b/include/glm/doc/api/a00440.html new file mode 100644 index 0000000..d738b7c --- /dev/null +++ b/include/glm/doc/api/a00440.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_float2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_float2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 2, float, defaultp > vec2
 2 components vector of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_float2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00440_source.html b/include/glm/doc/api/a00440_source.html new file mode 100644 index 0000000..32fd61a --- /dev/null +++ b/include/glm/doc/api/a00440_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_float2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_float2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<2, float, defaultp> vec2;
+
16 
+
18 }//namespace glm
+
+
vec< 2, float, defaultp > vec2
2 components vector of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00443.html b/include/glm/doc/api/a00443.html new file mode 100644 index 0000000..bf3a914 --- /dev/null +++ b/include/glm/doc/api/a00443.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: vector_float2_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_float2_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef vec< 2, float, highp > highp_vec2
 2 components vector of high single-qualifier floating-point numbers. More...
 
typedef vec< 2, float, lowp > lowp_vec2
 2 components vector of low single-qualifier floating-point numbers. More...
 
typedef vec< 2, float, mediump > mediump_vec2
 2 components vector of medium single-qualifier floating-point numbers. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00443_source.html b/include/glm/doc/api/a00443_source.html new file mode 100644 index 0000000..b77a387 --- /dev/null +++ b/include/glm/doc/api/a00443_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_float2_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_float2_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef vec<2, float, highp> highp_vec2;
+
17 
+
22  typedef vec<2, float, mediump> mediump_vec2;
+
23 
+
28  typedef vec<2, float, lowp> lowp_vec2;
+
29 
+
31 }//namespace glm
+
+
vec< 2, float, mediump > mediump_vec2
2 components vector of medium single-qualifier floating-point numbers.
+
vec< 2, float, lowp > lowp_vec2
2 components vector of low single-qualifier floating-point numbers.
+
vec< 2, float, highp > highp_vec2
2 components vector of high single-qualifier floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00446.html b/include/glm/doc/api/a00446.html new file mode 100644 index 0000000..7478223 --- /dev/null +++ b/include/glm/doc/api/a00446.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_float3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_float3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 3, float, defaultp > vec3
 3 components vector of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_float3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00446_source.html b/include/glm/doc/api/a00446_source.html new file mode 100644 index 0000000..71ed9e6 --- /dev/null +++ b/include/glm/doc/api/a00446_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_float3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_float3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<3, float, defaultp> vec3;
+
16 
+
18 }//namespace glm
+
+
vec< 3, float, defaultp > vec3
3 components vector of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00449.html b/include/glm/doc/api/a00449.html new file mode 100644 index 0000000..145968f --- /dev/null +++ b/include/glm/doc/api/a00449.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: vector_float3_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_float3_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef vec< 3, float, highp > highp_vec3
 3 components vector of high single-qualifier floating-point numbers. More...
 
typedef vec< 3, float, lowp > lowp_vec3
 3 components vector of low single-qualifier floating-point numbers. More...
 
typedef vec< 3, float, mediump > mediump_vec3
 3 components vector of medium single-qualifier floating-point numbers. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00449_source.html b/include/glm/doc/api/a00449_source.html new file mode 100644 index 0000000..dbfe350 --- /dev/null +++ b/include/glm/doc/api/a00449_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_float3_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_float3_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef vec<3, float, highp> highp_vec3;
+
17 
+
22  typedef vec<3, float, mediump> mediump_vec3;
+
23 
+
28  typedef vec<3, float, lowp> lowp_vec3;
+
29 
+
31 }//namespace glm
+
+
vec< 3, float, highp > highp_vec3
3 components vector of high single-qualifier floating-point numbers.
+
vec< 3, float, mediump > mediump_vec3
3 components vector of medium single-qualifier floating-point numbers.
+
vec< 3, float, lowp > lowp_vec3
3 components vector of low single-qualifier floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00452.html b/include/glm/doc/api/a00452.html new file mode 100644 index 0000000..11be981 --- /dev/null +++ b/include/glm/doc/api/a00452.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_float4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_float4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 4, float, defaultp > vec4
 4 components vector of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_float4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00452_source.html b/include/glm/doc/api/a00452_source.html new file mode 100644 index 0000000..4ccb26a --- /dev/null +++ b/include/glm/doc/api/a00452_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_float4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_float4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<4, float, defaultp> vec4;
+
16 
+
18 }//namespace glm
+
+
vec< 4, float, defaultp > vec4
4 components vector of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00455.html b/include/glm/doc/api/a00455.html new file mode 100644 index 0000000..9505f01 --- /dev/null +++ b/include/glm/doc/api/a00455.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: vector_float4_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_float4_precision.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + +

+Typedefs

typedef vec< 4, float, highp > highp_vec4
 4 components vector of high single-qualifier floating-point numbers. More...
 
typedef vec< 4, float, lowp > lowp_vec4
 4 components vector of low single-qualifier floating-point numbers. More...
 
typedef vec< 4, float, mediump > mediump_vec4
 4 components vector of medium single-qualifier floating-point numbers. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00455_source.html b/include/glm/doc/api/a00455_source.html new file mode 100644 index 0000000..ee5e58c --- /dev/null +++ b/include/glm/doc/api/a00455_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_float4_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_float4_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
16  typedef vec<4, float, highp> highp_vec4;
+
17 
+
22  typedef vec<4, float, mediump> mediump_vec4;
+
23 
+
28  typedef vec<4, float, lowp> lowp_vec4;
+
29 
+
31 }//namespace glm
+
+
vec< 4, float, highp > highp_vec4
4 components vector of high single-qualifier floating-point numbers.
+
vec< 4, float, mediump > mediump_vec4
4 components vector of medium single-qualifier floating-point numbers.
+
vec< 4, float, lowp > lowp_vec4
4 components vector of low single-qualifier floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00458.html b/include/glm/doc/api/a00458.html new file mode 100644 index 0000000..6f0a4fd --- /dev/null +++ b/include/glm/doc/api/a00458.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: vector_int1.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_int1.hpp File Reference
+
+
+ +

GLM_EXT_vector_int1 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

+typedef vec< 1, int, defaultp > ivec1
 1 component vector of signed integer numbers.
 
+

Detailed Description

+

GLM_EXT_vector_int1

+ +

Definition in file vector_int1.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00458_source.html b/include/glm/doc/api/a00458_source.html new file mode 100644 index 0000000..c3be37b --- /dev/null +++ b/include/glm/doc/api/a00458_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_int1.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_int1.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../detail/type_vec1.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_vector_int1 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
28  typedef vec<1, int, defaultp> ivec1;
+
29 
+
31 }//namespace glm
+
32 
+
+
vec< 1, int, defaultp > ivec1
1 component vector of signed integer numbers.
Definition: vector_int1.hpp:28
+ + + + diff --git a/include/glm/doc/api/a00461.html b/include/glm/doc/api/a00461.html new file mode 100644 index 0000000..3db323e --- /dev/null +++ b/include/glm/doc/api/a00461.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_int1_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_int1_sized.hpp File Reference
+
+
+ +

GLM_EXT_vector_int1_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 1, int16, defaultp > i16vec1
 16 bit signed integer vector of 1 component type. More...
 
typedef vec< 1, int32, defaultp > i32vec1
 32 bit signed integer vector of 1 component type. More...
 
typedef vec< 1, int64, defaultp > i64vec1
 64 bit signed integer vector of 1 component type. More...
 
typedef vec< 1, int8, defaultp > i8vec1
 8 bit signed integer vector of 1 component type. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00461_source.html b/include/glm/doc/api/a00461_source.html new file mode 100644 index 0000000..cf55816 --- /dev/null +++ b/include/glm/doc/api/a00461_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: vector_int1_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_int1_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../ext/vector_int1.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_vector_int1_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef vec<1, int8, defaultp> i8vec1;
+
32 
+
36  typedef vec<1, int16, defaultp> i16vec1;
+
37 
+
41  typedef vec<1, int32, defaultp> i32vec1;
+
42 
+
46  typedef vec<1, int64, defaultp> i64vec1;
+
47 
+
49 }//namespace glm
+
+
vec< 1, int16, defaultp > i16vec1
16 bit signed integer vector of 1 component type.
+
vec< 1, int8, defaultp > i8vec1
8 bit signed integer vector of 1 component type.
+
vec< 1, int32, defaultp > i32vec1
32 bit signed integer vector of 1 component type.
+
vec< 1, int64, defaultp > i64vec1
64 bit signed integer vector of 1 component type.
+ + + + diff --git a/include/glm/doc/api/a00464.html b/include/glm/doc/api/a00464.html new file mode 100644 index 0000000..0162fbb --- /dev/null +++ b/include/glm/doc/api/a00464.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_int2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_int2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 2, int, defaultp > ivec2
 2 components vector of signed integer numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_int2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00464_source.html b/include/glm/doc/api/a00464_source.html new file mode 100644 index 0000000..c13cc4f --- /dev/null +++ b/include/glm/doc/api/a00464_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_int2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_int2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<2, int, defaultp> ivec2;
+
16 
+
18 }//namespace glm
+
+
vec< 2, int, defaultp > ivec2
2 components vector of signed integer numbers.
Definition: vector_int2.hpp:15
+ + + + diff --git a/include/glm/doc/api/a00467.html b/include/glm/doc/api/a00467.html new file mode 100644 index 0000000..34a5663 --- /dev/null +++ b/include/glm/doc/api/a00467.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_int2_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_int2_sized.hpp File Reference
+
+
+ +

GLM_EXT_vector_int2_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 2, int16, defaultp > i16vec2
 16 bit signed integer vector of 2 components type. More...
 
typedef vec< 2, int32, defaultp > i32vec2
 32 bit signed integer vector of 2 components type. More...
 
typedef vec< 2, int64, defaultp > i64vec2
 64 bit signed integer vector of 2 components type. More...
 
typedef vec< 2, int8, defaultp > i8vec2
 8 bit signed integer vector of 2 components type. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00467_source.html b/include/glm/doc/api/a00467_source.html new file mode 100644 index 0000000..04a0447 --- /dev/null +++ b/include/glm/doc/api/a00467_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: vector_int2_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_int2_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../ext/vector_int2.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_vector_int2_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef vec<2, int8, defaultp> i8vec2;
+
32 
+
36  typedef vec<2, int16, defaultp> i16vec2;
+
37 
+
41  typedef vec<2, int32, defaultp> i32vec2;
+
42 
+
46  typedef vec<2, int64, defaultp> i64vec2;
+
47 
+
49 }//namespace glm
+
+
vec< 2, int16, defaultp > i16vec2
16 bit signed integer vector of 2 components type.
+
vec< 2, int64, defaultp > i64vec2
64 bit signed integer vector of 2 components type.
+
vec< 2, int32, defaultp > i32vec2
32 bit signed integer vector of 2 components type.
+
vec< 2, int8, defaultp > i8vec2
8 bit signed integer vector of 2 components type.
+ + + + diff --git a/include/glm/doc/api/a00470.html b/include/glm/doc/api/a00470.html new file mode 100644 index 0000000..4cdedd8 --- /dev/null +++ b/include/glm/doc/api/a00470.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_int3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_int3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 3, int, defaultp > ivec3
 3 components vector of signed integer numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_int3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00470_source.html b/include/glm/doc/api/a00470_source.html new file mode 100644 index 0000000..5b030d5 --- /dev/null +++ b/include/glm/doc/api/a00470_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_int3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_int3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<3, int, defaultp> ivec3;
+
16 
+
18 }//namespace glm
+
+
vec< 3, int, defaultp > ivec3
3 components vector of signed integer numbers.
Definition: vector_int3.hpp:15
+ + + + diff --git a/include/glm/doc/api/a00473.html b/include/glm/doc/api/a00473.html new file mode 100644 index 0000000..ac228c7 --- /dev/null +++ b/include/glm/doc/api/a00473.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_int3_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_int3_sized.hpp File Reference
+
+
+ +

GLM_EXT_vector_int3_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 3, int16, defaultp > i16vec3
 16 bit signed integer vector of 3 components type. More...
 
typedef vec< 3, int32, defaultp > i32vec3
 32 bit signed integer vector of 3 components type. More...
 
typedef vec< 3, int64, defaultp > i64vec3
 64 bit signed integer vector of 3 components type. More...
 
typedef vec< 3, int8, defaultp > i8vec3
 8 bit signed integer vector of 3 components type. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00473_source.html b/include/glm/doc/api/a00473_source.html new file mode 100644 index 0000000..0d34813 --- /dev/null +++ b/include/glm/doc/api/a00473_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: vector_int3_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_int3_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../ext/vector_int3.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_vector_int3_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef vec<3, int8, defaultp> i8vec3;
+
32 
+
36  typedef vec<3, int16, defaultp> i16vec3;
+
37 
+
41  typedef vec<3, int32, defaultp> i32vec3;
+
42 
+
46  typedef vec<3, int64, defaultp> i64vec3;
+
47 
+
49 }//namespace glm
+
+
vec< 3, int8, defaultp > i8vec3
8 bit signed integer vector of 3 components type.
+
vec< 3, int32, defaultp > i32vec3
32 bit signed integer vector of 3 components type.
+
vec< 3, int64, defaultp > i64vec3
64 bit signed integer vector of 3 components type.
+
vec< 3, int16, defaultp > i16vec3
16 bit signed integer vector of 3 components type.
+ + + + diff --git a/include/glm/doc/api/a00476.html b/include/glm/doc/api/a00476.html new file mode 100644 index 0000000..df2ad4f --- /dev/null +++ b/include/glm/doc/api/a00476.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_int4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_int4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 4, int, defaultp > ivec4
 4 components vector of signed integer numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_int4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00476_source.html b/include/glm/doc/api/a00476_source.html new file mode 100644 index 0000000..8f69320 --- /dev/null +++ b/include/glm/doc/api/a00476_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_int4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_int4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<4, int, defaultp> ivec4;
+
16 
+
18 }//namespace glm
+
+
vec< 4, int, defaultp > ivec4
4 components vector of signed integer numbers.
Definition: vector_int4.hpp:15
+ + + + diff --git a/include/glm/doc/api/a00479.html b/include/glm/doc/api/a00479.html new file mode 100644 index 0000000..a4c7726 --- /dev/null +++ b/include/glm/doc/api/a00479.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_int4_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_int4_sized.hpp File Reference
+
+
+ +

GLM_EXT_vector_int4_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 4, int16, defaultp > i16vec4
 16 bit signed integer vector of 4 components type. More...
 
typedef vec< 4, int32, defaultp > i32vec4
 32 bit signed integer vector of 4 components type. More...
 
typedef vec< 4, int64, defaultp > i64vec4
 64 bit signed integer vector of 4 components type. More...
 
typedef vec< 4, int8, defaultp > i8vec4
 8 bit signed integer vector of 4 components type. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00479_source.html b/include/glm/doc/api/a00479_source.html new file mode 100644 index 0000000..96b625d --- /dev/null +++ b/include/glm/doc/api/a00479_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: vector_int4_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_int4_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../ext/vector_int4.hpp"
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_vector_int4_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef vec<4, int8, defaultp> i8vec4;
+
32 
+
36  typedef vec<4, int16, defaultp> i16vec4;
+
37 
+
41  typedef vec<4, int32, defaultp> i32vec4;
+
42 
+
46  typedef vec<4, int64, defaultp> i64vec4;
+
47 
+
49 }//namespace glm
+
+
vec< 4, int32, defaultp > i32vec4
32 bit signed integer vector of 4 components type.
+
vec< 4, int16, defaultp > i16vec4
16 bit signed integer vector of 4 components type.
+
vec< 4, int64, defaultp > i64vec4
64 bit signed integer vector of 4 components type.
+
vec< 4, int8, defaultp > i8vec4
8 bit signed integer vector of 4 components type.
+ + + + diff --git a/include/glm/doc/api/a00482.html b/include/glm/doc/api/a00482.html new file mode 100644 index 0000000..0f42284 --- /dev/null +++ b/include/glm/doc/api/a00482.html @@ -0,0 +1,139 @@ + + + + + + + +1.0.2 API documentation: vector_integer.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_integer.hpp File Reference
+
+
+ +

GLM_EXT_vector_integer +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > findNSB (vec< L, T, Q > const &Source, vec< L, int, Q > SignificantBitCount)
 Returns the bit number of the Nth significant bit set to 1 in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isMultiple (vec< L, T, Q > const &v, T Multiple)
 Return true if the 'Value' is a multiple of 'Multiple'. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Return true if the 'Value' is a multiple of 'Multiple'. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isPowerOfTwo (vec< L, T, Q > const &v)
 Return true if the value is a power of two number. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextMultiple (vec< L, T, Q > const &v, T Multiple)
 Higher multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Higher multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is just higher the input value, round up to a power of two. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevMultiple (vec< L, T, Q > const &v, T Multiple)
 Lower multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Lower multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is just lower the input value, round down to a power of two. More...
 
+

Detailed Description

+

GLM_EXT_vector_integer

+
See also
Core features (dependence)
+
+GLM_EXT_vector_integer (dependence)
+ +

Definition in file vector_integer.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00482_source.html b/include/glm/doc/api/a00482_source.html new file mode 100644 index 0000000..6e8237c --- /dev/null +++ b/include/glm/doc/api/a00482_source.html @@ -0,0 +1,139 @@ + + + + + + + +1.0.2 API documentation: vector_integer.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_integer.hpp
+
+
+Go to the documentation of this file.
1 
+
12 #pragma once
+
13 
+
14 // Dependencies
+
15 #include "../detail/setup.hpp"
+
16 #include "../detail/qualifier.hpp"
+
17 #include "../detail/_vectorize.hpp"
+
18 #include "../vector_relational.hpp"
+
19 #include "../common.hpp"
+
20 #include <limits>
+
21 
+
22 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_EXT_vector_integer extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
38  template<length_t L, typename T, qualifier Q>
+
39  GLM_FUNC_DECL vec<L, bool, Q> isPowerOfTwo(vec<L, T, Q> const& v);
+
40 
+
49  template<length_t L, typename T, qualifier Q>
+
50  GLM_FUNC_DECL vec<L, T, Q> nextPowerOfTwo(vec<L, T, Q> const& v);
+
51 
+
60  template<length_t L, typename T, qualifier Q>
+
61  GLM_FUNC_DECL vec<L, T, Q> prevPowerOfTwo(vec<L, T, Q> const& v);
+
62 
+
70  template<length_t L, typename T, qualifier Q>
+
71  GLM_FUNC_DECL vec<L, bool, Q> isMultiple(vec<L, T, Q> const& v, T Multiple);
+
72 
+
80  template<length_t L, typename T, qualifier Q>
+
81  GLM_FUNC_DECL vec<L, bool, Q> isMultiple(vec<L, T, Q> const& v, vec<L, T, Q> const& Multiple);
+
82 
+
93  template<length_t L, typename T, qualifier Q>
+
94  GLM_FUNC_DECL vec<L, T, Q> nextMultiple(vec<L, T, Q> const& v, T Multiple);
+
95 
+
106  template<length_t L, typename T, qualifier Q>
+
107  GLM_FUNC_DECL vec<L, T, Q> nextMultiple(vec<L, T, Q> const& v, vec<L, T, Q> const& Multiple);
+
108 
+
119  template<length_t L, typename T, qualifier Q>
+
120  GLM_FUNC_DECL vec<L, T, Q> prevMultiple(vec<L, T, Q> const& v, T Multiple);
+
121 
+
132  template<length_t L, typename T, qualifier Q>
+
133  GLM_FUNC_DECL vec<L, T, Q> prevMultiple(vec<L, T, Q> const& v, vec<L, T, Q> const& Multiple);
+
134 
+
143  template<length_t L, typename T, qualifier Q>
+
144  GLM_FUNC_DECL vec<L, int, Q> findNSB(vec<L, T, Q> const& Source, vec<L, int, Q> SignificantBitCount);
+
145 
+
147 } //namespace glm
+
148 
+
149 #include "vector_integer.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > nextMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
Higher multiple number of Source.
+
GLM_FUNC_DECL vec< L, bool, Q > isMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
Return true if the 'Value' is a multiple of 'Multiple'.
+
GLM_FUNC_DECL vec< L, T, Q > nextPowerOfTwo(vec< L, T, Q > const &v)
Return the power of two number which value is just higher the input value, round up to a power of two...
+
GLM_FUNC_DECL vec< L, T, Q > prevPowerOfTwo(vec< L, T, Q > const &v)
Return the power of two number which value is just lower the input value, round down to a power of tw...
+
GLM_FUNC_DECL vec< L, int, Q > findNSB(vec< L, T, Q > const &Source, vec< L, int, Q > SignificantBitCount)
Returns the bit number of the Nth significant bit set to 1 in the binary representation of value.
+
GLM_FUNC_DECL vec< L, T, Q > prevMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
Lower multiple number of Source.
+
GLM_FUNC_DECL vec< L, bool, Q > isPowerOfTwo(vec< L, T, Q > const &v)
Return true if the value is a power of two number.
+ + + + diff --git a/include/glm/doc/api/a00485.html b/include/glm/doc/api/a00485.html new file mode 100644 index 0000000..ca11b2f --- /dev/null +++ b/include/glm/doc/api/a00485.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: vector_packing.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_packing.hpp File Reference
+
+
+ +

GLM_EXT_vector_packing +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_EXT_vector_packing

+
See also
Core features (dependence)
+ +

Definition in file vector_packing.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00485_source.html b/include/glm/doc/api/a00485_source.html new file mode 100644 index 0000000..621487c --- /dev/null +++ b/include/glm/doc/api/a00485_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_packing.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_packing.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../detail/qualifier.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_vector_packing extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
28 
+
30 }// namespace glm
+
31 
+
32 #include "vector_packing.inl"
+
+ + + + diff --git a/include/glm/doc/api/a00488.html b/include/glm/doc/api/a00488.html new file mode 100644 index 0000000..acf274a --- /dev/null +++ b/include/glm/doc/api/a00488.html @@ -0,0 +1,145 @@ + + + + + + + +1.0.2 API documentation: vector_reciprocal.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_reciprocal.hpp File Reference
+
+
+ +

GLM_EXT_vector_reciprocal +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType acot (genType x)
 Inverse cotangent function. More...
 
template<typename genType >
GLM_FUNC_DECL genType acoth (genType x)
 Inverse cotangent hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType acsc (genType x)
 Inverse cosecant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType acsch (genType x)
 Inverse cosecant hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType asec (genType x)
 Inverse secant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType asech (genType x)
 Inverse secant hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType cot (genType angle)
 Cotangent function. More...
 
template<typename genType >
GLM_FUNC_DECL genType coth (genType angle)
 Cotangent hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType csc (genType angle)
 Cosecant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType csch (genType angle)
 Cosecant hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType sec (genType angle)
 Secant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType sech (genType angle)
 Secant hyperbolic function. More...
 
+

Detailed Description

+

GLM_EXT_vector_reciprocal

+
See also
Core features (dependence)
+ +

Definition in file vector_reciprocal.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00488_source.html b/include/glm/doc/api/a00488_source.html new file mode 100644 index 0000000..a44513e --- /dev/null +++ b/include/glm/doc/api/a00488_source.html @@ -0,0 +1,146 @@ + + + + + + + +1.0.2 API documentation: vector_reciprocal.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_reciprocal.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "../detail/setup.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_vector_reciprocal extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
33  template<typename genType>
+
34  GLM_FUNC_DECL genType sec(genType angle);
+
35 
+
42  template<typename genType>
+
43  GLM_FUNC_DECL genType csc(genType angle);
+
44 
+
51  template<typename genType>
+
52  GLM_FUNC_DECL genType cot(genType angle);
+
53 
+
60  template<typename genType>
+
61  GLM_FUNC_DECL genType asec(genType x);
+
62 
+
69  template<typename genType>
+
70  GLM_FUNC_DECL genType acsc(genType x);
+
71 
+
78  template<typename genType>
+
79  GLM_FUNC_DECL genType acot(genType x);
+
80 
+
86  template<typename genType>
+
87  GLM_FUNC_DECL genType sech(genType angle);
+
88 
+
94  template<typename genType>
+
95  GLM_FUNC_DECL genType csch(genType angle);
+
96 
+
102  template<typename genType>
+
103  GLM_FUNC_DECL genType coth(genType angle);
+
104 
+
111  template<typename genType>
+
112  GLM_FUNC_DECL genType asech(genType x);
+
113 
+
120  template<typename genType>
+
121  GLM_FUNC_DECL genType acsch(genType x);
+
122 
+
129  template<typename genType>
+
130  GLM_FUNC_DECL genType acoth(genType x);
+
131 
+
133 }//namespace glm
+
134 
+
135 #include "vector_reciprocal.inl"
+
+
GLM_FUNC_DECL genType cot(genType angle)
Cotangent function.
+
GLM_FUNC_DECL genType sec(genType angle)
Secant function.
+
GLM_FUNC_DECL genType csch(genType angle)
Cosecant hyperbolic function.
+
GLM_FUNC_DECL genType sech(genType angle)
Secant hyperbolic function.
+
GLM_FUNC_DECL genType csc(genType angle)
Cosecant function.
+
GLM_FUNC_DECL genType acot(genType x)
Inverse cotangent function.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL genType asech(genType x)
Inverse secant hyperbolic function.
+
GLM_FUNC_DECL genType acsch(genType x)
Inverse cosecant hyperbolic function.
+
GLM_FUNC_DECL genType acoth(genType x)
Inverse cotangent hyperbolic function.
+
GLM_FUNC_DECL genType coth(genType angle)
Cotangent hyperbolic function.
+
GLM_FUNC_DECL genType acsc(genType x)
Inverse cosecant function.
+
GLM_FUNC_DECL genType asec(genType x)
Inverse secant function.
+ + + + diff --git a/include/glm/doc/api/a00491.html b/include/glm/doc/api/a00491.html new file mode 100644 index 0000000..c49bde5 --- /dev/null +++ b/include/glm/doc/api/a00491.html @@ -0,0 +1,133 @@ + + + + + + + +1.0.2 API documentation: vector_relational.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_relational.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR bool all (vec< L, bool, Q > const &v)
 Returns true if all components of x are true. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR bool any (vec< L, bool, Q > const &v)
 Returns true if any component of x is true. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x == y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > greaterThan (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x > y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > greaterThanEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x >= y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > lessThan (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison result of x < y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > lessThanEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x <= y. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > not_ (vec< L, bool, Q > const &v)
 Returns the component-wise logical complement of x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x != y. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00491_source.html b/include/glm/doc/api/a00491_source.html new file mode 100644 index 0000000..4b5cf21 --- /dev/null +++ b/include/glm/doc/api/a00491_source.html @@ -0,0 +1,129 @@ + + + + + + + +1.0.2 API documentation: vector_relational.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_relational.hpp
+
+
+Go to the documentation of this file.
1 
+
20 #pragma once
+
21 
+
22 #include "detail/qualifier.hpp"
+
23 #include "detail/setup.hpp"
+
24 
+
25 namespace glm
+
26 {
+
29 
+
37  template<length_t L, typename T, qualifier Q>
+
38  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> lessThan(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
39 
+
47  template<length_t L, typename T, qualifier Q>
+
48  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> lessThanEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
49 
+
57  template<length_t L, typename T, qualifier Q>
+
58  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> greaterThan(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
59 
+
67  template<length_t L, typename T, qualifier Q>
+
68  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> greaterThanEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
69 
+
77  template<length_t L, typename T, qualifier Q>
+
78  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> equal(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
79 
+
87  template<length_t L, typename T, qualifier Q>
+
88  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> notEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
89 
+
96  template<length_t L, qualifier Q>
+
97  GLM_FUNC_DECL GLM_CONSTEXPR bool any(vec<L, bool, Q> const& v);
+
98 
+
105  template<length_t L, qualifier Q>
+
106  GLM_FUNC_DECL GLM_CONSTEXPR bool all(vec<L, bool, Q> const& v);
+
107 
+
115  template<length_t L, qualifier Q>
+
116  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> not_(vec<L, bool, Q> const& v);
+
117 
+
119 }//namespace glm
+
120 
+
121 #include "detail/func_vector_relational.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > lessThanEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x <= y.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > greaterThan(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x > y.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x == y.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > lessThan(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison result of x < y.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x != y.
+
GLM_FUNC_DECL GLM_CONSTEXPR bool any(vec< L, bool, Q > const &v)
Returns true if any component of x is true.
+
GLM_FUNC_DECL GLM_CONSTEXPR bool all(vec< L, bool, Q > const &v)
Returns true if all components of x are true.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > not_(vec< L, bool, Q > const &v)
Returns the component-wise logical complement of x.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > greaterThanEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the component-wise comparison of result x >= y.
+ + + + diff --git a/include/glm/doc/api/a00494.html b/include/glm/doc/api/a00494.html new file mode 100644 index 0000000..44bd2cb --- /dev/null +++ b/include/glm/doc/api/a00494.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: vector_uint1.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_uint1.hpp File Reference
+
+
+ +

GLM_EXT_vector_uint1 +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

+typedef vec< 1, unsigned int, defaultp > uvec1
 1 component vector of unsigned integer numbers.
 
+

Detailed Description

+

GLM_EXT_vector_uint1

+ +

Definition in file vector_uint1.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00494_source.html b/include/glm/doc/api/a00494_source.html new file mode 100644 index 0000000..9a11328 --- /dev/null +++ b/include/glm/doc/api/a00494_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: vector_uint1.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_uint1.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../detail/type_vec1.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_EXT_vector_uint1 extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
28  typedef vec<1, unsigned int, defaultp> uvec1;
+
29 
+
31 }//namespace glm
+
32 
+
+
vec< 1, unsigned int, defaultp > uvec1
1 component vector of unsigned integer numbers.
+ + + + diff --git a/include/glm/doc/api/a00497.html b/include/glm/doc/api/a00497.html new file mode 100644 index 0000000..914c822 --- /dev/null +++ b/include/glm/doc/api/a00497.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_uint1_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_uint1_sized.hpp File Reference
+
+
+ +

GLM_EXT_vector_uint1_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 1, uint16, defaultp > u16vec1
 16 bit unsigned integer vector of 1 component type. More...
 
typedef vec< 1, uint32, defaultp > u32vec1
 32 bit unsigned integer vector of 1 component type. More...
 
typedef vec< 1, uint64, defaultp > u64vec1
 64 bit unsigned integer vector of 1 component type. More...
 
typedef vec< 1, uint8, defaultp > u8vec1
 8 bit unsigned integer vector of 1 component type. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00497_source.html b/include/glm/doc/api/a00497_source.html new file mode 100644 index 0000000..b1fc4e3 --- /dev/null +++ b/include/glm/doc/api/a00497_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: vector_uint1_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_uint1_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../ext/vector_uint1.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_vector_uint1_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef vec<1, uint8, defaultp> u8vec1;
+
32 
+
36  typedef vec<1, uint16, defaultp> u16vec1;
+
37 
+
41  typedef vec<1, uint32, defaultp> u32vec1;
+
42 
+
46  typedef vec<1, uint64, defaultp> u64vec1;
+
47 
+
49 }//namespace glm
+
+
vec< 1, uint8, defaultp > u8vec1
8 bit unsigned integer vector of 1 component type.
+
vec< 1, uint16, defaultp > u16vec1
16 bit unsigned integer vector of 1 component type.
+
vec< 1, uint64, defaultp > u64vec1
64 bit unsigned integer vector of 1 component type.
+
vec< 1, uint32, defaultp > u32vec1
32 bit unsigned integer vector of 1 component type.
+ + + + diff --git a/include/glm/doc/api/a00500.html b/include/glm/doc/api/a00500.html new file mode 100644 index 0000000..3e7115e --- /dev/null +++ b/include/glm/doc/api/a00500.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_uint2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_uint2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 2, unsigned int, defaultp > uvec2
 2 components vector of unsigned integer numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_uint2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00500_source.html b/include/glm/doc/api/a00500_source.html new file mode 100644 index 0000000..438f06c --- /dev/null +++ b/include/glm/doc/api/a00500_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_uint2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_uint2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec2.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<2, unsigned int, defaultp> uvec2;
+
16 
+
18 }//namespace glm
+
+
vec< 2, unsigned int, defaultp > uvec2
2 components vector of unsigned integer numbers.
+ + + + diff --git a/include/glm/doc/api/a00503.html b/include/glm/doc/api/a00503.html new file mode 100644 index 0000000..41837ab --- /dev/null +++ b/include/glm/doc/api/a00503.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_uint2_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_uint2_sized.hpp File Reference
+
+
+ +

GLM_EXT_vector_uint2_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 2, uint16, defaultp > u16vec2
 16 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 2, uint32, defaultp > u32vec2
 32 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 2, uint64, defaultp > u64vec2
 64 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 2, uint8, defaultp > u8vec2
 8 bit unsigned integer vector of 2 components type. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00503_source.html b/include/glm/doc/api/a00503_source.html new file mode 100644 index 0000000..1cdc7fc --- /dev/null +++ b/include/glm/doc/api/a00503_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: vector_uint2_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_uint2_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../ext/vector_uint2.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_vector_uint2_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef vec<2, uint8, defaultp> u8vec2;
+
32 
+
36  typedef vec<2, uint16, defaultp> u16vec2;
+
37 
+
41  typedef vec<2, uint32, defaultp> u32vec2;
+
42 
+
46  typedef vec<2, uint64, defaultp> u64vec2;
+
47 
+
49 }//namespace glm
+
+
vec< 2, uint16, defaultp > u16vec2
16 bit unsigned integer vector of 2 components type.
+
vec< 2, uint32, defaultp > u32vec2
32 bit unsigned integer vector of 2 components type.
+
vec< 2, uint8, defaultp > u8vec2
8 bit unsigned integer vector of 2 components type.
+
vec< 2, uint64, defaultp > u64vec2
64 bit unsigned integer vector of 2 components type.
+ + + + diff --git a/include/glm/doc/api/a00506.html b/include/glm/doc/api/a00506.html new file mode 100644 index 0000000..05aeb05 --- /dev/null +++ b/include/glm/doc/api/a00506.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_uint3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_uint3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 3, unsigned int, defaultp > uvec3
 3 components vector of unsigned integer numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_uint3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00506_source.html b/include/glm/doc/api/a00506_source.html new file mode 100644 index 0000000..5f72857 --- /dev/null +++ b/include/glm/doc/api/a00506_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_uint3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_uint3.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec3.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<3, unsigned int, defaultp> uvec3;
+
16 
+
18 }//namespace glm
+
+
vec< 3, unsigned int, defaultp > uvec3
3 components vector of unsigned integer numbers.
+ + + + diff --git a/include/glm/doc/api/a00509.html b/include/glm/doc/api/a00509.html new file mode 100644 index 0000000..861a649 --- /dev/null +++ b/include/glm/doc/api/a00509.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_uint3_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_uint3_sized.hpp File Reference
+
+
+ +

GLM_EXT_vector_uint3_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 3, uint16, defaultp > u16vec3
 16 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 3, uint32, defaultp > u32vec3
 32 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 3, uint64, defaultp > u64vec3
 64 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 3, uint8, defaultp > u8vec3
 8 bit unsigned integer vector of 3 components type. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00509_source.html b/include/glm/doc/api/a00509_source.html new file mode 100644 index 0000000..92444ea --- /dev/null +++ b/include/glm/doc/api/a00509_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: vector_uint3_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_uint3_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../ext/vector_uint3.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_vector_uint3_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef vec<3, uint8, defaultp> u8vec3;
+
32 
+
36  typedef vec<3, uint16, defaultp> u16vec3;
+
37 
+
41  typedef vec<3, uint32, defaultp> u32vec3;
+
42 
+
46  typedef vec<3, uint64, defaultp> u64vec3;
+
47 
+
49 }//namespace glm
+
+
vec< 3, uint16, defaultp > u16vec3
16 bit unsigned integer vector of 3 components type.
+
vec< 3, uint32, defaultp > u32vec3
32 bit unsigned integer vector of 3 components type.
+
vec< 3, uint64, defaultp > u64vec3
64 bit unsigned integer vector of 3 components type.
+
vec< 3, uint8, defaultp > u8vec3
8 bit unsigned integer vector of 3 components type.
+ + + + diff --git a/include/glm/doc/api/a00512.html b/include/glm/doc/api/a00512.html new file mode 100644 index 0000000..269e42b --- /dev/null +++ b/include/glm/doc/api/a00512.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: vector_uint4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_uint4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef vec< 4, unsigned int, defaultp > uvec4
 4 components vector of unsigned integer numbers. More...
 
+

Detailed Description

+

Core features

+ +

Definition in file vector_uint4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00512_source.html b/include/glm/doc/api/a00512_source.html new file mode 100644 index 0000000..30c73de --- /dev/null +++ b/include/glm/doc/api/a00512_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: vector_uint4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_uint4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "../detail/type_vec4.hpp"
+
6 
+
7 namespace glm
+
8 {
+
11 
+
15  typedef vec<4, unsigned int, defaultp> uvec4;
+
16 
+
18 }//namespace glm
+
+
vec< 4, unsigned int, defaultp > uvec4
4 components vector of unsigned integer numbers.
+ + + + diff --git a/include/glm/doc/api/a00515.html b/include/glm/doc/api/a00515.html new file mode 100644 index 0000000..98c2eea --- /dev/null +++ b/include/glm/doc/api/a00515.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: vector_uint4_sized.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_uint4_sized.hpp File Reference
+
+
+ +

GLM_EXT_vector_uint4_sized +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 4, uint16, defaultp > u16vec4
 16 bit unsigned integer vector of 4 components type. More...
 
typedef vec< 4, uint32, defaultp > u32vec4
 32 bit unsigned integer vector of 4 components type. More...
 
typedef vec< 4, uint64, defaultp > u64vec4
 64 bit unsigned integer vector of 4 components type. More...
 
typedef vec< 4, uint8, defaultp > u8vec4
 8 bit unsigned integer vector of 4 components type. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00515_source.html b/include/glm/doc/api/a00515_source.html new file mode 100644 index 0000000..18f3fc6 --- /dev/null +++ b/include/glm/doc/api/a00515_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: vector_uint4_sized.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_uint4_sized.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 #include "../ext/vector_uint4.hpp"
+
17 #include "../ext/scalar_uint_sized.hpp"
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_EXT_vector_uint4_sized extension included")
+
21 #endif
+
22 
+
23 namespace glm
+
24 {
+
27 
+
31  typedef vec<4, uint8, defaultp> u8vec4;
+
32 
+
36  typedef vec<4, uint16, defaultp> u16vec4;
+
37 
+
41  typedef vec<4, uint32, defaultp> u32vec4;
+
42 
+
46  typedef vec<4, uint64, defaultp> u64vec4;
+
47 
+
49 }//namespace glm
+
+
vec< 4, uint8, defaultp > u8vec4
8 bit unsigned integer vector of 4 components type.
+
vec< 4, uint32, defaultp > u32vec4
32 bit unsigned integer vector of 4 components type.
+
vec< 4, uint64, defaultp > u64vec4
64 bit unsigned integer vector of 4 components type.
+
vec< 4, uint16, defaultp > u16vec4
16 bit unsigned integer vector of 4 components type.
+ + + + diff --git a/include/glm/doc/api/a00518.html b/include/glm/doc/api/a00518.html new file mode 100644 index 0000000..a5d7f51 --- /dev/null +++ b/include/glm/doc/api/a00518.html @@ -0,0 +1,128 @@ + + + + + + + +1.0.2 API documentation: vector_ulp.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_ulp.hpp File Reference
+
+
+ +

GLM_EXT_vector_ulp +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int64, Q > floatDistance (vec< L, double, Q > const &x, vec< L, double, Q > const &y)
 Return the distance in the number of ULP between 2 double-precision floating-point scalars. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > floatDistance (vec< L, float, Q > const &x, vec< L, float, Q > const &y)
 Return the distance in the number of ULP between 2 single-precision floating-point scalars. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextFloat (vec< L, T, Q > const &x)
 Return the next ULP value(s) after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextFloat (vec< L, T, Q > const &x, int ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextFloat (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevFloat (vec< L, T, Q > const &x)
 Return the previous ULP value(s) before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevFloat (vec< L, T, Q > const &x, int ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevFloat (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
+

Detailed Description

+

GLM_EXT_vector_ulp

+ +

Definition in file vector_ulp.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00518_source.html b/include/glm/doc/api/a00518_source.html new file mode 100644 index 0000000..f6060b4 --- /dev/null +++ b/include/glm/doc/api/a00518_source.html @@ -0,0 +1,124 @@ + + + + + + + +1.0.2 API documentation: vector_ulp.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_ulp.hpp
+
+
+Go to the documentation of this file.
1 
+
17 #pragma once
+
18 
+
19 // Dependencies
+
20 #include "../ext/scalar_ulp.hpp"
+
21 
+
22 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_EXT_vector_ulp extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
38  template<length_t L, typename T, qualifier Q>
+
39  GLM_FUNC_DECL vec<L, T, Q> nextFloat(vec<L, T, Q> const& x);
+
40 
+
48  template<length_t L, typename T, qualifier Q>
+
49  GLM_FUNC_DECL vec<L, T, Q> nextFloat(vec<L, T, Q> const& x, int ULPs);
+
50 
+
58  template<length_t L, typename T, qualifier Q>
+
59  GLM_FUNC_DECL vec<L, T, Q> nextFloat(vec<L, T, Q> const& x, vec<L, int, Q> const& ULPs);
+
60 
+
68  template<length_t L, typename T, qualifier Q>
+
69  GLM_FUNC_DECL vec<L, T, Q> prevFloat(vec<L, T, Q> const& x);
+
70 
+
78  template<length_t L, typename T, qualifier Q>
+
79  GLM_FUNC_DECL vec<L, T, Q> prevFloat(vec<L, T, Q> const& x, int ULPs);
+
80 
+
88  template<length_t L, typename T, qualifier Q>
+
89  GLM_FUNC_DECL vec<L, T, Q> prevFloat(vec<L, T, Q> const& x, vec<L, int, Q> const& ULPs);
+
90 
+
97  template<length_t L, typename T, qualifier Q>
+
98  GLM_FUNC_DECL vec<L, int, Q> floatDistance(vec<L, float, Q> const& x, vec<L, float, Q> const& y);
+
99 
+
106  template<length_t L, typename T, qualifier Q>
+
107  GLM_FUNC_DECL vec<L, int64, Q> floatDistance(vec<L, double, Q> const& x, vec<L, double, Q> const& y);
+
108 
+
110 }//namespace glm
+
111 
+
112 #include "vector_ulp.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > prevFloat(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
Return the value(s) ULP distance before the input value(s).
+
GLM_FUNC_DECL vec< L, int64, Q > floatDistance(vec< L, double, Q > const &x, vec< L, double, Q > const &y)
Return the distance in the number of ULP between 2 double-precision floating-point scalars.
+
GLM_FUNC_DECL vec< L, T, Q > nextFloat(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
Return the value(s) ULP distance after the input value(s).
+ + + + diff --git a/include/glm/doc/api/a00521.html b/include/glm/doc/api/a00521.html new file mode 100644 index 0000000..f2a5ce0 --- /dev/null +++ b/include/glm/doc/api/a00521.html @@ -0,0 +1,87 @@ + + + + + + + +1.0.2 API documentation: ext.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ext.hpp File Reference
+
+
+ +

Go to the source code of this file.

+

Detailed Description

+

Core features (Dependence)

+ +

Definition in file ext.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00521_source.html b/include/glm/doc/api/a00521_source.html new file mode 100644 index 0000000..ecbf465 --- /dev/null +++ b/include/glm/doc/api/a00521_source.html @@ -0,0 +1,562 @@ + + + + + + + +1.0.2 API documentation: ext.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ext.hpp
+
+
+Go to the documentation of this file.
1 
+
5 #include "detail/setup.hpp"
+
6 
+
7 #pragma once
+
8 
+
9 #include "./glm.hpp"
+
10 
+
11 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_MESSAGE_EXT_INCLUDED_DISPLAYED)
+
12 # define GLM_MESSAGE_EXT_INCLUDED_DISPLAYED
+
13 # pragma message("GLM: All extensions included (not recommended)")
+
14 #endif//GLM_MESSAGES
+
15 
+ +
17 #include "./ext/matrix_common.hpp"
+
18 
+ + + + + + + + + + + + + + + + + + +
37 
+ + + + + + + + + + + + + +
51 #include "./ext/matrix_float4x2_precision.hpp"
+ + + + +
56 
+
57 #include "./ext/matrix_int2x2.hpp"
+ +
59 #include "./ext/matrix_int2x3.hpp"
+ +
61 #include "./ext/matrix_int2x4.hpp"
+ +
63 #include "./ext/matrix_int3x2.hpp"
+ +
65 #include "./ext/matrix_int3x3.hpp"
+ +
67 #include "./ext/matrix_int3x4.hpp"
+
68 #include "./ext/matrix_int3x4_sized.hpp"
+
69 #include "./ext/matrix_int4x2.hpp"
+ +
71 #include "./ext/matrix_int4x3.hpp"
+ +
73 #include "./ext/matrix_int4x4.hpp"
+ +
75 
+
76 #include "./ext/matrix_uint2x2.hpp"
+ +
78 #include "./ext/matrix_uint2x3.hpp"
+ +
80 #include "./ext/matrix_uint2x4.hpp"
+ +
82 #include "./ext/matrix_uint3x2.hpp"
+ +
84 #include "./ext/matrix_uint3x3.hpp"
+ +
86 #include "./ext/matrix_uint3x4.hpp"
+
87 #include "./ext/matrix_uint3x4_sized.hpp"
+
88 #include "./ext/matrix_uint4x2.hpp"
+ +
90 #include "./ext/matrix_uint4x3.hpp"
+ +
92 #include "./ext/matrix_uint4x4.hpp"
+ +
94 
+ + + +
98 
+ + + + + + + + + + +
109 
+
110 #include "./ext/scalar_common.hpp"
+ +
112 #include "./ext/scalar_integer.hpp"
+
113 #include "./ext/scalar_packing.hpp"
+ + +
116 #include "./ext/scalar_ulp.hpp"
+
117 
+ + +
120 
+
121 #include "./ext/vector_common.hpp"
+
122 #include "./ext/vector_integer.hpp"
+
123 #include "./ext/vector_packing.hpp"
+ + +
126 #include "./ext/vector_ulp.hpp"
+
127 
+
128 #include "./ext/vector_bool1.hpp"
+ +
130 #include "./ext/vector_bool2.hpp"
+ +
132 #include "./ext/vector_bool3.hpp"
+ +
134 #include "./ext/vector_bool4.hpp"
+ +
136 
+
137 #include "./ext/vector_double1.hpp"
+ +
139 #include "./ext/vector_double2.hpp"
+ +
141 #include "./ext/vector_double3.hpp"
+ +
143 #include "./ext/vector_double4.hpp"
+ +
145 
+
146 #include "./ext/vector_float1.hpp"
+ +
148 #include "./ext/vector_float2.hpp"
+ +
150 #include "./ext/vector_float3.hpp"
+ +
152 #include "./ext/vector_float4.hpp"
+ +
154 
+
155 #include "./ext/vector_int1.hpp"
+ +
157 #include "./ext/vector_int2.hpp"
+ +
159 #include "./ext/vector_int3.hpp"
+ +
161 #include "./ext/vector_int4.hpp"
+ +
163 
+
164 #include "./ext/vector_uint1.hpp"
+ +
166 #include "./ext/vector_uint2.hpp"
+ +
168 #include "./ext/vector_uint3.hpp"
+ +
170 #include "./ext/vector_uint4.hpp"
+ +
172 
+
173 #include "./gtc/bitfield.hpp"
+
174 #include "./gtc/color_space.hpp"
+
175 #include "./gtc/constants.hpp"
+
176 #include "./gtc/epsilon.hpp"
+
177 #include "./gtc/integer.hpp"
+
178 #include "./gtc/matrix_access.hpp"
+
179 #include "./gtc/matrix_integer.hpp"
+
180 #include "./gtc/matrix_inverse.hpp"
+ +
182 #include "./gtc/noise.hpp"
+
183 #include "./gtc/packing.hpp"
+
184 #include "./gtc/quaternion.hpp"
+
185 #include "./gtc/random.hpp"
+
186 #include "./gtc/reciprocal.hpp"
+
187 #include "./gtc/round.hpp"
+
188 #include "./gtc/type_precision.hpp"
+
189 #include "./gtc/type_ptr.hpp"
+
190 #include "./gtc/ulp.hpp"
+
191 #include "./gtc/vec1.hpp"
+
192 #if GLM_CONFIG_ALIGNED_GENTYPES == GLM_ENABLE
+
193 # include "./gtc/type_aligned.hpp"
+
194 #endif
+
195 
+
196 #ifdef GLM_ENABLE_EXPERIMENTAL
+ +
198 #include "./gtx/bit.hpp"
+
199 #include "./gtx/closest_point.hpp"
+
200 #include "./gtx/color_encoding.hpp"
+
201 #include "./gtx/color_space.hpp"
+ +
203 #include "./gtx/common.hpp"
+
204 #include "./gtx/compatibility.hpp"
+
205 #include "./gtx/component_wise.hpp"
+
206 #include "./gtx/dual_quaternion.hpp"
+
207 #include "./gtx/easing.hpp"
+
208 #include "./gtx/euler_angles.hpp"
+
209 #include "./gtx/extend.hpp"
+ + + + +
214 #include "./gtx/functions.hpp"
+
215 #include "./gtx/gradient_paint.hpp"
+ +
217 
+
218 #if __cplusplus >= 201103L
+
219 #include "./gtx/hash.hpp"
+
220 #endif
+
221 
+
222 #include "./gtx/integer.hpp"
+
223 #include "./gtx/intersect.hpp"
+
224 #include "./gtx/io.hpp"
+
225 #include "./gtx/log_base.hpp"
+ + + + + + +
232 #include "./gtx/matrix_query.hpp"
+
233 #include "./gtx/mixed_product.hpp"
+
234 #include "./gtx/norm.hpp"
+
235 #include "./gtx/normal.hpp"
+
236 #include "./gtx/normalize_dot.hpp"
+ +
238 #include "./gtx/optimum_pow.hpp"
+
239 #include "./gtx/orthonormalize.hpp"
+
240 #include "./gtx/pca.hpp"
+
241 #include "./gtx/perpendicular.hpp"
+ +
243 #include "./gtx/projection.hpp"
+
244 #include "./gtx/quaternion.hpp"
+
245 #include "./gtx/raw_data.hpp"
+ +
247 #include "./gtx/rotate_vector.hpp"
+
248 #include "./gtx/spline.hpp"
+
249 #include "./gtx/std_based_type.hpp"
+
250 #if !((GLM_COMPILER & GLM_COMPILER_CUDA) || (GLM_COMPILER & GLM_COMPILER_HIP))
+
251 # include "./gtx/string_cast.hpp"
+
252 #endif
+
253 #include "./gtx/transform.hpp"
+
254 #include "./gtx/transform2.hpp"
+
255 #include "./gtx/vec_swizzle.hpp"
+
256 #include "./gtx/vector_angle.hpp"
+
257 #include "./gtx/vector_query.hpp"
+
258 #include "./gtx/wrap.hpp"
+
259 
+
260 #if GLM_HAS_TEMPLATE_ALIASES
+ +
262 #endif
+
263 
+
264 #if GLM_HAS_RANGE_FOR
+
265 # include "./gtx/range.hpp"
+
266 #endif
+
267 #endif//GLM_ENABLE_EXPERIMENTAL
+
+
GLM_GTX_scalar_multiplication
+
Core features
+ + +
GLM_EXT_vector_int1
+
GLM_GTX_range
+
GLM_EXT_vector_uint2_sized
+
Core features
+
GLM_GTX_vector_angle
+
Core features
+
GLM_EXT_quaternion_geometric
+ +
GLM_GTX_orthonormalize
+
GLM_EXT_vector_bool1_precision
+
GLM_GTX_hash
+
GLM_EXT_matrix_uint3x3_sized
+
GLM_GTC_type_aligned
+
GLM_GTX_norm
+
GLM_GTX_color_space_YCoCg
+
GLM_EXT_matrix_int4x2
+
GLM_GTC_epsilon
+
GLM_GTX_matrix_operation
+
GLM_EXT_matrix_int3x3
+
GLM_EXT_matrix_uint2x2
+
GLM_EXT_matrix_uint4x2
+
GLM_GTX_dual_quaternion
+ + +
GLM_GTX_transform2
+
GLM_EXT_vector_float1_precision
+
GLM_EXT_matrix_int3x2
+ +
GLM_EXT_vector_int4_sized
+
GLM_EXT_matrix_relational
+
GLM_GTX_string_cast
+ +
GLM_GTC_reciprocal
+
Core features
+ +
GLM_GTX_rotate_normalized_axis
+
GLM_EXT_matrix_int4x4
+
GLM_GTC_noise
+
GLM_EXT_vector_double1
+
GLM_EXT_matrix_common
+ +
Core features
+
GLM_GTX_polar_coordinates
+
GLM_GTC_matrix_integer
+
Core features
+
Core features
+
GLM_GTX_number_precision
+
GLM_EXT_scalar_ulp
+
GLM_EXT_quaternion_double
+
GLM_GTX_fast_square_root
+
GLM_GTC_packing
+ +
GLM_EXT_matrix_uint4x3_sized
+ +
GLM_GTX_pca
+
GLM_EXT_scalar_constants
+
GLM_GTX_extend
+
GLM_GTX_matrix_cross_product
+
GLM_EXT_matrix_uint3x4
+
GLM_EXT_matrix_int4x2_sized
+
GLM_GTX_compatibility
+
GLM_EXT_matrix_uint2x4_sized
+
GLM_GTX_associated_min_max
+
GLM_EXT_matrix_int3x3_sized
+
GLM_EXT_matrix_uint2x2_sized
+
GLM_GTC_bitfield
+
GLM_GTC_type_precision
+ + +
GLM_GTX_spline
+
GLM_EXT_matrix_int2x2_sized
+
GLM_EXT_vector_uint3_sized
+
GLM_EXT_vector_relational
+ +
GLM_EXT_quaternion_float
+ +
GLM_EXT_vector_int2_sized
+
GLM_GTX_rotate_vector
+ +
GLM_GTX_gradient_paint
+
GLM_EXT_scalar_relational
+
GLM_EXT_vector_double1_precision
+ + +
GLM_GTX_projection
+ +
GLM_GTX_vec_swizzle
+
GLM_EXT_matrix_transform
+
GLM_EXT_matrix_uint4x2_sized
+
GLM_GTX_common
+
GLM_EXT_vector_bool1
+
GLM_GTX_easing
+
GLM_EXT_matrix_uint3x3
+
GLM_GTX_mixed_producte
+
GLM_GTX_color_encoding
+
GLM_EXT_matrix_uint2x3_sized
+
GLM_GTC_ulp
+
GLM_EXT_matrix_int2x4
+
GLM_GTX_component_wise
+
GLM_EXT_vector_ulp
+
Core features
+ +
GLM_EXT_vector_reciprocal
+
GLM_GTX_transform
+
Core features
+
GLM_EXT_vector_float1
+ +
Core features
+
GLM_GTX_std_based_type
+
Core features
+
GLM_EXT_quaternion_double_precision
+
GLM_EXT_vector_int1_sized
+ +
GLM_GTX_fast_trigonometry
+
GLM_GTX_vector_query
+
GLM_GTC_quaternion
+
GLM_GTC_color_space
+
GLM_EXT_matrix_uint3x2
+
GLM_EXT_quaternion_common
+
GLM_GTX_bit
+
GLM_EXT_scalar_packing
+
GLM_GTX_fast_exponential
+
GLM_GTC_constants
+
GLM_GTC_matrix_transform
+
GLM_GTX_matrix_interpolation
+
GLM_EXT_matrix_uint4x3
+
GLM_EXT_scalar_common
+
GLM_GTX_euler_angles
+
GLM_GTX_log_base
+
GLM_EXT_matrix_int2x3
+
GLM_EXT_vector_uint1_sized
+
GLM_EXT_matrix_int2x4
+
Core features
+ +
GLM_GTC_vec1
+
Core features
+ +
GLM_EXT_vector_integer
+
Core features
+
Core features
+
Core features
+ +
GLM_EXT_matrix_int2x2
+ +
GLM_GTX_raw_data
+
Core features
+
GLM_EXT_quaternion_relational
+
Core features
+
GLM_GTX_intersect
+
GLM_GTC_integer
+
GLM_GTX_normal
+
GLM_EXT_quaternion_exponential
+
Core features
+
GLM_EXT_scalar_uint_sized
+
Core features
+
GLM_GTX_functions
+
GLM_GTX_wrap
+
GLM_GTX_quaternion
+
GLM_GTX_matrix_query
+
GLM_EXT_matrix_uint4x4
+
GLM_EXT_matrix_projection
+
GLM_EXT_scalar_int_sized
+
GLM_GTX_extended_min_max
+
GLM_GTC_random
+
GLM_GTX_matrix_decompose
+
GLM_GTX_color_space
+
GLM_EXT_quaternion_transform
+
GLM_EXT_matrix_uint3x2_sized
+
GLM_GTX_io
+
GLM_GTX_closest_point
+
GLM_EXT_matrix_int3x2_sized
+
GLM_GTC_round
+
GLM_EXT_matrix_int2x3_sized
+
GLM_EXT_matrix_int4x4_sized
+
GLM_EXT_vector_uint4_sized
+ +
Core features
+ + +
GLM_EXT_vector_packing
+
Core features
+ + +
GLM_GTX_optimum_pow
+
GLM_EXT_quaternion_float_precision
+
GLM_EXT_vector_int3_sized
+
GLM_GTX_handed_coordinate_space
+ +
GLM_EXT_scalar_reciprocal
+
GLM_EXT_vector_common
+
GLM_GTX_matrix_major_storage
+ +
GLM_GTX_perpendicular
+
GLM_GTX_integer
+
GLM_EXT_matrix_int4x3
+
GLM_GTC_matrix_access
+
GLM_EXT_matrix_uint4x4_sized
+
GLM_EXT_matrix_int3x4
+
GLM_EXT_scalar_integer
+
GLM_EXT_matrix_uint2x3
+
GLM_GTX_matrix_factorisation
+
GLM_GTC_type_ptr
+
GLM_EXT_matrix_int2x4_sized
+
GLM_EXT_quaternion_trigonometric
+
GLM_EXT_vector_uint1
+
GLM_EXT_matrix_int4x3_sized
+
Core features
+
GLM_GTC_matrix_inverse
+
GLM_EXT_matrix_clip_space
+ +
Core features
+
GLM_GTX_normalize_dot
+ + + + + diff --git a/include/glm/doc/api/a00524_source.html b/include/glm/doc/api/a00524_source.html new file mode 100644 index 0000000..2fa2fdf --- /dev/null +++ b/include/glm/doc/api/a00524_source.html @@ -0,0 +1,2090 @@ + + + + + + + +1.0.2 API documentation: fwd.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
fwd.hpp
+
+
+
1 #pragma once
+
2 
+
3 #include "detail/qualifier.hpp"
+
4 
+
5 namespace glm
+
6 {
+
7 #if GLM_HAS_EXTENDED_INTEGER_TYPE
+
8  typedef std::int8_t int8;
+
9  typedef std::int16_t int16;
+
10  typedef std::int32_t int32;
+
11  typedef std::int64_t int64;
+
12 
+
13  typedef std::uint8_t uint8;
+
14  typedef std::uint16_t uint16;
+
15  typedef std::uint32_t uint32;
+
16  typedef std::uint64_t uint64;
+
17 #else
+
18  typedef signed char int8;
+
19  typedef signed short int16;
+
20  typedef signed int int32;
+
21  typedef detail::int64 int64;
+
22 
+
23  typedef unsigned char uint8;
+
24  typedef unsigned short uint16;
+
25  typedef unsigned int uint32;
+
26  typedef detail::uint64 uint64;
+
27 #endif
+
28 
+
29  // Scalar int
+
30 
+
31  typedef int8 lowp_i8;
+
32  typedef int8 mediump_i8;
+
33  typedef int8 highp_i8;
+
34  typedef int8 i8;
+
35 
+
36  typedef int8 lowp_int8;
+
37  typedef int8 mediump_int8;
+
38  typedef int8 highp_int8;
+
39 
+
40  typedef int8 lowp_int8_t;
+ +
42  typedef int8 highp_int8_t;
+
43  typedef int8 int8_t;
+
44 
+
45  typedef int16 lowp_i16;
+
46  typedef int16 mediump_i16;
+
47  typedef int16 highp_i16;
+
48  typedef int16 i16;
+
49 
+
50  typedef int16 lowp_int16;
+ +
52  typedef int16 highp_int16;
+
53 
+ + + +
57  typedef int16 int16_t;
+
58 
+
59  typedef int32 lowp_i32;
+
60  typedef int32 mediump_i32;
+
61  typedef int32 highp_i32;
+
62  typedef int32 i32;
+
63 
+
64  typedef int32 lowp_int32;
+ +
66  typedef int32 highp_int32;
+
67 
+ + + +
71  typedef int32 int32_t;
+
72 
+
73  typedef int64 lowp_i64;
+
74  typedef int64 mediump_i64;
+
75  typedef int64 highp_i64;
+
76  typedef int64 i64;
+
77 
+
78  typedef int64 lowp_int64;
+ +
80  typedef int64 highp_int64;
+
81 
+ + + +
85  typedef int64 int64_t;
+
86 
+
87  // Scalar uint
+
88 
+
89  typedef unsigned int uint;
+
90 
+
91  typedef uint8 lowp_u8;
+
92  typedef uint8 mediump_u8;
+
93  typedef uint8 highp_u8;
+
94  typedef uint8 u8;
+
95 
+
96  typedef uint8 lowp_uint8;
+ +
98  typedef uint8 highp_uint8;
+
99 
+ + + +
103  typedef uint8 uint8_t;
+
104 
+
105  typedef uint16 lowp_u16;
+ +
107  typedef uint16 highp_u16;
+
108  typedef uint16 u16;
+
109 
+ + + +
113 
+ + + +
117  typedef uint16 uint16_t;
+
118 
+
119  typedef uint32 lowp_u32;
+ +
121  typedef uint32 highp_u32;
+
122  typedef uint32 u32;
+
123 
+ + + +
127 
+ + + +
131  typedef uint32 uint32_t;
+
132 
+
133  typedef uint64 lowp_u64;
+ +
135  typedef uint64 highp_u64;
+
136  typedef uint64 u64;
+
137 
+ + + +
141 
+ + + +
145  typedef uint64 uint64_t;
+
146 
+
147  // Scalar float
+
148 
+
149  typedef float lowp_f32;
+
150  typedef float mediump_f32;
+
151  typedef float highp_f32;
+
152  typedef float f32;
+
153 
+
154  typedef float lowp_float32;
+
155  typedef float mediump_float32;
+
156  typedef float highp_float32;
+
157  typedef float float32;
+
158 
+
159  typedef float lowp_float32_t;
+
160  typedef float mediump_float32_t;
+
161  typedef float highp_float32_t;
+
162  typedef float float32_t;
+
163 
+
164 
+
165  typedef double lowp_f64;
+
166  typedef double mediump_f64;
+
167  typedef double highp_f64;
+
168  typedef double f64;
+
169 
+
170  typedef double lowp_float64;
+
171  typedef double mediump_float64;
+
172  typedef double highp_float64;
+
173  typedef double float64;
+
174 
+
175  typedef double lowp_float64_t;
+
176  typedef double mediump_float64_t;
+
177  typedef double highp_float64_t;
+
178  typedef double float64_t;
+
179 
+
180  // Vector bool
+
181 
+
182  typedef vec<1, bool, lowp> lowp_bvec1;
+
183  typedef vec<2, bool, lowp> lowp_bvec2;
+
184  typedef vec<3, bool, lowp> lowp_bvec3;
+
185  typedef vec<4, bool, lowp> lowp_bvec4;
+
186 
+
187  typedef vec<1, bool, mediump> mediump_bvec1;
+
188  typedef vec<2, bool, mediump> mediump_bvec2;
+
189  typedef vec<3, bool, mediump> mediump_bvec3;
+
190  typedef vec<4, bool, mediump> mediump_bvec4;
+
191 
+
192  typedef vec<1, bool, highp> highp_bvec1;
+
193  typedef vec<2, bool, highp> highp_bvec2;
+
194  typedef vec<3, bool, highp> highp_bvec3;
+
195  typedef vec<4, bool, highp> highp_bvec4;
+
196 
+
197  typedef vec<1, bool, defaultp> bvec1;
+
198  typedef vec<2, bool, defaultp> bvec2;
+
199  typedef vec<3, bool, defaultp> bvec3;
+
200  typedef vec<4, bool, defaultp> bvec4;
+
201 
+
202  // Vector int
+
203 
+
204  typedef vec<1, int, lowp> lowp_ivec1;
+
205  typedef vec<2, int, lowp> lowp_ivec2;
+
206  typedef vec<3, int, lowp> lowp_ivec3;
+
207  typedef vec<4, int, lowp> lowp_ivec4;
+
208 
+
209  typedef vec<1, int, mediump> mediump_ivec1;
+
210  typedef vec<2, int, mediump> mediump_ivec2;
+
211  typedef vec<3, int, mediump> mediump_ivec3;
+
212  typedef vec<4, int, mediump> mediump_ivec4;
+
213 
+
214  typedef vec<1, int, highp> highp_ivec1;
+
215  typedef vec<2, int, highp> highp_ivec2;
+
216  typedef vec<3, int, highp> highp_ivec3;
+
217  typedef vec<4, int, highp> highp_ivec4;
+
218 
+
219  typedef vec<1, int, defaultp> ivec1;
+
220  typedef vec<2, int, defaultp> ivec2;
+
221  typedef vec<3, int, defaultp> ivec3;
+
222  typedef vec<4, int, defaultp> ivec4;
+
223 
+
224  typedef vec<1, i8, lowp> lowp_i8vec1;
+
225  typedef vec<2, i8, lowp> lowp_i8vec2;
+
226  typedef vec<3, i8, lowp> lowp_i8vec3;
+
227  typedef vec<4, i8, lowp> lowp_i8vec4;
+
228 
+
229  typedef vec<1, i8, mediump> mediump_i8vec1;
+
230  typedef vec<2, i8, mediump> mediump_i8vec2;
+
231  typedef vec<3, i8, mediump> mediump_i8vec3;
+
232  typedef vec<4, i8, mediump> mediump_i8vec4;
+
233 
+
234  typedef vec<1, i8, highp> highp_i8vec1;
+
235  typedef vec<2, i8, highp> highp_i8vec2;
+
236  typedef vec<3, i8, highp> highp_i8vec3;
+
237  typedef vec<4, i8, highp> highp_i8vec4;
+
238 
+
239  typedef vec<1, i8, defaultp> i8vec1;
+
240  typedef vec<2, i8, defaultp> i8vec2;
+
241  typedef vec<3, i8, defaultp> i8vec3;
+
242  typedef vec<4, i8, defaultp> i8vec4;
+
243 
+
244  typedef vec<1, i16, lowp> lowp_i16vec1;
+
245  typedef vec<2, i16, lowp> lowp_i16vec2;
+
246  typedef vec<3, i16, lowp> lowp_i16vec3;
+
247  typedef vec<4, i16, lowp> lowp_i16vec4;
+
248 
+
249  typedef vec<1, i16, mediump> mediump_i16vec1;
+
250  typedef vec<2, i16, mediump> mediump_i16vec2;
+
251  typedef vec<3, i16, mediump> mediump_i16vec3;
+
252  typedef vec<4, i16, mediump> mediump_i16vec4;
+
253 
+
254  typedef vec<1, i16, highp> highp_i16vec1;
+
255  typedef vec<2, i16, highp> highp_i16vec2;
+
256  typedef vec<3, i16, highp> highp_i16vec3;
+
257  typedef vec<4, i16, highp> highp_i16vec4;
+
258 
+
259  typedef vec<1, i16, defaultp> i16vec1;
+
260  typedef vec<2, i16, defaultp> i16vec2;
+
261  typedef vec<3, i16, defaultp> i16vec3;
+
262  typedef vec<4, i16, defaultp> i16vec4;
+
263 
+
264  typedef vec<1, i32, lowp> lowp_i32vec1;
+
265  typedef vec<2, i32, lowp> lowp_i32vec2;
+
266  typedef vec<3, i32, lowp> lowp_i32vec3;
+
267  typedef vec<4, i32, lowp> lowp_i32vec4;
+
268 
+
269  typedef vec<1, i32, mediump> mediump_i32vec1;
+
270  typedef vec<2, i32, mediump> mediump_i32vec2;
+
271  typedef vec<3, i32, mediump> mediump_i32vec3;
+
272  typedef vec<4, i32, mediump> mediump_i32vec4;
+
273 
+
274  typedef vec<1, i32, highp> highp_i32vec1;
+
275  typedef vec<2, i32, highp> highp_i32vec2;
+
276  typedef vec<3, i32, highp> highp_i32vec3;
+
277  typedef vec<4, i32, highp> highp_i32vec4;
+
278 
+
279  typedef vec<1, i32, defaultp> i32vec1;
+
280  typedef vec<2, i32, defaultp> i32vec2;
+
281  typedef vec<3, i32, defaultp> i32vec3;
+
282  typedef vec<4, i32, defaultp> i32vec4;
+
283 
+
284  typedef vec<1, i64, lowp> lowp_i64vec1;
+
285  typedef vec<2, i64, lowp> lowp_i64vec2;
+
286  typedef vec<3, i64, lowp> lowp_i64vec3;
+
287  typedef vec<4, i64, lowp> lowp_i64vec4;
+
288 
+
289  typedef vec<1, i64, mediump> mediump_i64vec1;
+
290  typedef vec<2, i64, mediump> mediump_i64vec2;
+
291  typedef vec<3, i64, mediump> mediump_i64vec3;
+
292  typedef vec<4, i64, mediump> mediump_i64vec4;
+
293 
+
294  typedef vec<1, i64, highp> highp_i64vec1;
+
295  typedef vec<2, i64, highp> highp_i64vec2;
+
296  typedef vec<3, i64, highp> highp_i64vec3;
+
297  typedef vec<4, i64, highp> highp_i64vec4;
+
298 
+
299  typedef vec<1, i64, defaultp> i64vec1;
+
300  typedef vec<2, i64, defaultp> i64vec2;
+
301  typedef vec<3, i64, defaultp> i64vec3;
+
302  typedef vec<4, i64, defaultp> i64vec4;
+
303 
+
304  // Vector uint
+
305 
+
306  typedef vec<1, uint, lowp> lowp_uvec1;
+
307  typedef vec<2, uint, lowp> lowp_uvec2;
+
308  typedef vec<3, uint, lowp> lowp_uvec3;
+
309  typedef vec<4, uint, lowp> lowp_uvec4;
+
310 
+
311  typedef vec<1, uint, mediump> mediump_uvec1;
+
312  typedef vec<2, uint, mediump> mediump_uvec2;
+
313  typedef vec<3, uint, mediump> mediump_uvec3;
+
314  typedef vec<4, uint, mediump> mediump_uvec4;
+
315 
+
316  typedef vec<1, uint, highp> highp_uvec1;
+
317  typedef vec<2, uint, highp> highp_uvec2;
+
318  typedef vec<3, uint, highp> highp_uvec3;
+
319  typedef vec<4, uint, highp> highp_uvec4;
+
320 
+
321  typedef vec<1, uint, defaultp> uvec1;
+
322  typedef vec<2, uint, defaultp> uvec2;
+
323  typedef vec<3, uint, defaultp> uvec3;
+
324  typedef vec<4, uint, defaultp> uvec4;
+
325 
+
326  typedef vec<1, u8, lowp> lowp_u8vec1;
+
327  typedef vec<2, u8, lowp> lowp_u8vec2;
+
328  typedef vec<3, u8, lowp> lowp_u8vec3;
+
329  typedef vec<4, u8, lowp> lowp_u8vec4;
+
330 
+
331  typedef vec<1, u8, mediump> mediump_u8vec1;
+
332  typedef vec<2, u8, mediump> mediump_u8vec2;
+
333  typedef vec<3, u8, mediump> mediump_u8vec3;
+
334  typedef vec<4, u8, mediump> mediump_u8vec4;
+
335 
+
336  typedef vec<1, u8, highp> highp_u8vec1;
+
337  typedef vec<2, u8, highp> highp_u8vec2;
+
338  typedef vec<3, u8, highp> highp_u8vec3;
+
339  typedef vec<4, u8, highp> highp_u8vec4;
+
340 
+
341  typedef vec<1, u8, defaultp> u8vec1;
+
342  typedef vec<2, u8, defaultp> u8vec2;
+
343  typedef vec<3, u8, defaultp> u8vec3;
+
344  typedef vec<4, u8, defaultp> u8vec4;
+
345 
+
346  typedef vec<1, u16, lowp> lowp_u16vec1;
+
347  typedef vec<2, u16, lowp> lowp_u16vec2;
+
348  typedef vec<3, u16, lowp> lowp_u16vec3;
+
349  typedef vec<4, u16, lowp> lowp_u16vec4;
+
350 
+
351  typedef vec<1, u16, mediump> mediump_u16vec1;
+
352  typedef vec<2, u16, mediump> mediump_u16vec2;
+
353  typedef vec<3, u16, mediump> mediump_u16vec3;
+
354  typedef vec<4, u16, mediump> mediump_u16vec4;
+
355 
+
356  typedef vec<1, u16, highp> highp_u16vec1;
+
357  typedef vec<2, u16, highp> highp_u16vec2;
+
358  typedef vec<3, u16, highp> highp_u16vec3;
+
359  typedef vec<4, u16, highp> highp_u16vec4;
+
360 
+
361  typedef vec<1, u16, defaultp> u16vec1;
+
362  typedef vec<2, u16, defaultp> u16vec2;
+
363  typedef vec<3, u16, defaultp> u16vec3;
+
364  typedef vec<4, u16, defaultp> u16vec4;
+
365 
+
366  typedef vec<1, u32, lowp> lowp_u32vec1;
+
367  typedef vec<2, u32, lowp> lowp_u32vec2;
+
368  typedef vec<3, u32, lowp> lowp_u32vec3;
+
369  typedef vec<4, u32, lowp> lowp_u32vec4;
+
370 
+
371  typedef vec<1, u32, mediump> mediump_u32vec1;
+
372  typedef vec<2, u32, mediump> mediump_u32vec2;
+
373  typedef vec<3, u32, mediump> mediump_u32vec3;
+
374  typedef vec<4, u32, mediump> mediump_u32vec4;
+
375 
+
376  typedef vec<1, u32, highp> highp_u32vec1;
+
377  typedef vec<2, u32, highp> highp_u32vec2;
+
378  typedef vec<3, u32, highp> highp_u32vec3;
+
379  typedef vec<4, u32, highp> highp_u32vec4;
+
380 
+
381  typedef vec<1, u32, defaultp> u32vec1;
+
382  typedef vec<2, u32, defaultp> u32vec2;
+
383  typedef vec<3, u32, defaultp> u32vec3;
+
384  typedef vec<4, u32, defaultp> u32vec4;
+
385 
+
386  typedef vec<1, u64, lowp> lowp_u64vec1;
+
387  typedef vec<2, u64, lowp> lowp_u64vec2;
+
388  typedef vec<3, u64, lowp> lowp_u64vec3;
+
389  typedef vec<4, u64, lowp> lowp_u64vec4;
+
390 
+
391  typedef vec<1, u64, mediump> mediump_u64vec1;
+
392  typedef vec<2, u64, mediump> mediump_u64vec2;
+
393  typedef vec<3, u64, mediump> mediump_u64vec3;
+
394  typedef vec<4, u64, mediump> mediump_u64vec4;
+
395 
+
396  typedef vec<1, u64, highp> highp_u64vec1;
+
397  typedef vec<2, u64, highp> highp_u64vec2;
+
398  typedef vec<3, u64, highp> highp_u64vec3;
+
399  typedef vec<4, u64, highp> highp_u64vec4;
+
400 
+
401  typedef vec<1, u64, defaultp> u64vec1;
+
402  typedef vec<2, u64, defaultp> u64vec2;
+
403  typedef vec<3, u64, defaultp> u64vec3;
+
404  typedef vec<4, u64, defaultp> u64vec4;
+
405 
+
406  // Vector float
+
407 
+
408  typedef vec<1, float, lowp> lowp_vec1;
+
409  typedef vec<2, float, lowp> lowp_vec2;
+
410  typedef vec<3, float, lowp> lowp_vec3;
+
411  typedef vec<4, float, lowp> lowp_vec4;
+
412 
+
413  typedef vec<1, float, mediump> mediump_vec1;
+
414  typedef vec<2, float, mediump> mediump_vec2;
+
415  typedef vec<3, float, mediump> mediump_vec3;
+
416  typedef vec<4, float, mediump> mediump_vec4;
+
417 
+
418  typedef vec<1, float, highp> highp_vec1;
+
419  typedef vec<2, float, highp> highp_vec2;
+
420  typedef vec<3, float, highp> highp_vec3;
+
421  typedef vec<4, float, highp> highp_vec4;
+
422 
+
423  typedef vec<1, float, defaultp> vec1;
+
424  typedef vec<2, float, defaultp> vec2;
+
425  typedef vec<3, float, defaultp> vec3;
+
426  typedef vec<4, float, defaultp> vec4;
+
427 
+
428  typedef vec<1, float, lowp> lowp_fvec1;
+
429  typedef vec<2, float, lowp> lowp_fvec2;
+
430  typedef vec<3, float, lowp> lowp_fvec3;
+
431  typedef vec<4, float, lowp> lowp_fvec4;
+
432 
+
433  typedef vec<1, float, mediump> mediump_fvec1;
+
434  typedef vec<2, float, mediump> mediump_fvec2;
+
435  typedef vec<3, float, mediump> mediump_fvec3;
+
436  typedef vec<4, float, mediump> mediump_fvec4;
+
437 
+
438  typedef vec<1, float, highp> highp_fvec1;
+
439  typedef vec<2, float, highp> highp_fvec2;
+
440  typedef vec<3, float, highp> highp_fvec3;
+
441  typedef vec<4, float, highp> highp_fvec4;
+
442 
+
443  typedef vec<1, f32, defaultp> fvec1;
+
444  typedef vec<2, f32, defaultp> fvec2;
+
445  typedef vec<3, f32, defaultp> fvec3;
+
446  typedef vec<4, f32, defaultp> fvec4;
+
447 
+
448  typedef vec<1, f32, lowp> lowp_f32vec1;
+
449  typedef vec<2, f32, lowp> lowp_f32vec2;
+
450  typedef vec<3, f32, lowp> lowp_f32vec3;
+
451  typedef vec<4, f32, lowp> lowp_f32vec4;
+
452 
+
453  typedef vec<1, f32, mediump> mediump_f32vec1;
+
454  typedef vec<2, f32, mediump> mediump_f32vec2;
+
455  typedef vec<3, f32, mediump> mediump_f32vec3;
+
456  typedef vec<4, f32, mediump> mediump_f32vec4;
+
457 
+
458  typedef vec<1, f32, highp> highp_f32vec1;
+
459  typedef vec<2, f32, highp> highp_f32vec2;
+
460  typedef vec<3, f32, highp> highp_f32vec3;
+
461  typedef vec<4, f32, highp> highp_f32vec4;
+
462 
+
463  typedef vec<1, f32, defaultp> f32vec1;
+
464  typedef vec<2, f32, defaultp> f32vec2;
+
465  typedef vec<3, f32, defaultp> f32vec3;
+
466  typedef vec<4, f32, defaultp> f32vec4;
+
467 
+
468  typedef vec<1, f64, lowp> lowp_dvec1;
+
469  typedef vec<2, f64, lowp> lowp_dvec2;
+
470  typedef vec<3, f64, lowp> lowp_dvec3;
+
471  typedef vec<4, f64, lowp> lowp_dvec4;
+
472 
+
473  typedef vec<1, f64, mediump> mediump_dvec1;
+
474  typedef vec<2, f64, mediump> mediump_dvec2;
+
475  typedef vec<3, f64, mediump> mediump_dvec3;
+
476  typedef vec<4, f64, mediump> mediump_dvec4;
+
477 
+
478  typedef vec<1, f64, highp> highp_dvec1;
+
479  typedef vec<2, f64, highp> highp_dvec2;
+
480  typedef vec<3, f64, highp> highp_dvec3;
+
481  typedef vec<4, f64, highp> highp_dvec4;
+
482 
+
483  typedef vec<1, f64, defaultp> dvec1;
+
484  typedef vec<2, f64, defaultp> dvec2;
+
485  typedef vec<3, f64, defaultp> dvec3;
+
486  typedef vec<4, f64, defaultp> dvec4;
+
487 
+
488  typedef vec<1, f64, lowp> lowp_f64vec1;
+
489  typedef vec<2, f64, lowp> lowp_f64vec2;
+
490  typedef vec<3, f64, lowp> lowp_f64vec3;
+
491  typedef vec<4, f64, lowp> lowp_f64vec4;
+
492 
+
493  typedef vec<1, f64, mediump> mediump_f64vec1;
+
494  typedef vec<2, f64, mediump> mediump_f64vec2;
+
495  typedef vec<3, f64, mediump> mediump_f64vec3;
+
496  typedef vec<4, f64, mediump> mediump_f64vec4;
+
497 
+
498  typedef vec<1, f64, highp> highp_f64vec1;
+
499  typedef vec<2, f64, highp> highp_f64vec2;
+
500  typedef vec<3, f64, highp> highp_f64vec3;
+
501  typedef vec<4, f64, highp> highp_f64vec4;
+
502 
+
503  typedef vec<1, f64, defaultp> f64vec1;
+
504  typedef vec<2, f64, defaultp> f64vec2;
+
505  typedef vec<3, f64, defaultp> f64vec3;
+
506  typedef vec<4, f64, defaultp> f64vec4;
+
507 
+
508  // Matrix NxN
+
509 
+
510  typedef mat<2, 2, f32, lowp> lowp_mat2;
+
511  typedef mat<3, 3, f32, lowp> lowp_mat3;
+
512  typedef mat<4, 4, f32, lowp> lowp_mat4;
+
513 
+
514  typedef mat<2, 2, f32, mediump> mediump_mat2;
+
515  typedef mat<3, 3, f32, mediump> mediump_mat3;
+
516  typedef mat<4, 4, f32, mediump> mediump_mat4;
+
517 
+
518  typedef mat<2, 2, f32, highp> highp_mat2;
+
519  typedef mat<3, 3, f32, highp> highp_mat3;
+
520  typedef mat<4, 4, f32, highp> highp_mat4;
+
521 
+
522  typedef mat<2, 2, f32, defaultp> mat2;
+
523  typedef mat<3, 3, f32, defaultp> mat3;
+
524  typedef mat<4, 4, f32, defaultp> mat4;
+
525 
+
526  typedef mat<2, 2, f32, lowp> lowp_fmat2;
+
527  typedef mat<3, 3, f32, lowp> lowp_fmat3;
+
528  typedef mat<4, 4, f32, lowp> lowp_fmat4;
+
529 
+
530  typedef mat<2, 2, f32, mediump> mediump_fmat2;
+
531  typedef mat<3, 3, f32, mediump> mediump_fmat3;
+
532  typedef mat<4, 4, f32, mediump> mediump_fmat4;
+
533 
+
534  typedef mat<2, 2, f32, highp> highp_fmat2;
+
535  typedef mat<3, 3, f32, highp> highp_fmat3;
+
536  typedef mat<4, 4, f32, highp> highp_fmat4;
+
537 
+
538  typedef mat<2, 2, f32, defaultp> fmat2;
+
539  typedef mat<3, 3, f32, defaultp> fmat3;
+
540  typedef mat<4, 4, f32, defaultp> fmat4;
+
541 
+
542  typedef mat<2, 2, f32, lowp> lowp_f32mat2;
+
543  typedef mat<3, 3, f32, lowp> lowp_f32mat3;
+
544  typedef mat<4, 4, f32, lowp> lowp_f32mat4;
+
545 
+
546  typedef mat<2, 2, f32, mediump> mediump_f32mat2;
+
547  typedef mat<3, 3, f32, mediump> mediump_f32mat3;
+
548  typedef mat<4, 4, f32, mediump> mediump_f32mat4;
+
549 
+
550  typedef mat<2, 2, f32, highp> highp_f32mat2;
+
551  typedef mat<3, 3, f32, highp> highp_f32mat3;
+
552  typedef mat<4, 4, f32, highp> highp_f32mat4;
+
553 
+
554  typedef mat<2, 2, f32, defaultp> f32mat2;
+
555  typedef mat<3, 3, f32, defaultp> f32mat3;
+
556  typedef mat<4, 4, f32, defaultp> f32mat4;
+
557 
+
558  typedef mat<2, 2, f64, lowp> lowp_dmat2;
+
559  typedef mat<3, 3, f64, lowp> lowp_dmat3;
+
560  typedef mat<4, 4, f64, lowp> lowp_dmat4;
+
561 
+
562  typedef mat<2, 2, f64, mediump> mediump_dmat2;
+
563  typedef mat<3, 3, f64, mediump> mediump_dmat3;
+
564  typedef mat<4, 4, f64, mediump> mediump_dmat4;
+
565 
+
566  typedef mat<2, 2, f64, highp> highp_dmat2;
+
567  typedef mat<3, 3, f64, highp> highp_dmat3;
+
568  typedef mat<4, 4, f64, highp> highp_dmat4;
+
569 
+
570  typedef mat<2, 2, f64, defaultp> dmat2;
+
571  typedef mat<3, 3, f64, defaultp> dmat3;
+
572  typedef mat<4, 4, f64, defaultp> dmat4;
+
573 
+
574  typedef mat<2, 2, f64, lowp> lowp_f64mat2;
+
575  typedef mat<3, 3, f64, lowp> lowp_f64mat3;
+
576  typedef mat<4, 4, f64, lowp> lowp_f64mat4;
+
577 
+
578  typedef mat<2, 2, f64, mediump> mediump_f64mat2;
+
579  typedef mat<3, 3, f64, mediump> mediump_f64mat3;
+
580  typedef mat<4, 4, f64, mediump> mediump_f64mat4;
+
581 
+
582  typedef mat<2, 2, f64, highp> highp_f64mat2;
+
583  typedef mat<3, 3, f64, highp> highp_f64mat3;
+
584  typedef mat<4, 4, f64, highp> highp_f64mat4;
+
585 
+
586  typedef mat<2, 2, f64, defaultp> f64mat2;
+
587  typedef mat<3, 3, f64, defaultp> f64mat3;
+
588  typedef mat<4, 4, f64, defaultp> f64mat4;
+
589 
+
590  // Matrix MxN
+
591 
+
592  typedef mat<2, 2, f32, lowp> lowp_mat2x2;
+
593  typedef mat<2, 3, f32, lowp> lowp_mat2x3;
+
594  typedef mat<2, 4, f32, lowp> lowp_mat2x4;
+
595  typedef mat<3, 2, f32, lowp> lowp_mat3x2;
+
596  typedef mat<3, 3, f32, lowp> lowp_mat3x3;
+
597  typedef mat<3, 4, f32, lowp> lowp_mat3x4;
+
598  typedef mat<4, 2, f32, lowp> lowp_mat4x2;
+
599  typedef mat<4, 3, f32, lowp> lowp_mat4x3;
+
600  typedef mat<4, 4, f32, lowp> lowp_mat4x4;
+
601 
+
602  typedef mat<2, 2, f32, mediump> mediump_mat2x2;
+
603  typedef mat<2, 3, f32, mediump> mediump_mat2x3;
+
604  typedef mat<2, 4, f32, mediump> mediump_mat2x4;
+
605  typedef mat<3, 2, f32, mediump> mediump_mat3x2;
+
606  typedef mat<3, 3, f32, mediump> mediump_mat3x3;
+
607  typedef mat<3, 4, f32, mediump> mediump_mat3x4;
+
608  typedef mat<4, 2, f32, mediump> mediump_mat4x2;
+
609  typedef mat<4, 3, f32, mediump> mediump_mat4x3;
+
610  typedef mat<4, 4, f32, mediump> mediump_mat4x4;
+
611 
+
612  typedef mat<2, 2, f32, highp> highp_mat2x2;
+
613  typedef mat<2, 3, f32, highp> highp_mat2x3;
+
614  typedef mat<2, 4, f32, highp> highp_mat2x4;
+
615  typedef mat<3, 2, f32, highp> highp_mat3x2;
+
616  typedef mat<3, 3, f32, highp> highp_mat3x3;
+
617  typedef mat<3, 4, f32, highp> highp_mat3x4;
+
618  typedef mat<4, 2, f32, highp> highp_mat4x2;
+
619  typedef mat<4, 3, f32, highp> highp_mat4x3;
+
620  typedef mat<4, 4, f32, highp> highp_mat4x4;
+
621 
+
622  typedef mat<2, 2, f32, defaultp> mat2x2;
+
623  typedef mat<2, 3, f32, defaultp> mat2x3;
+
624  typedef mat<2, 4, f32, defaultp> mat2x4;
+
625  typedef mat<3, 2, f32, defaultp> mat3x2;
+
626  typedef mat<3, 3, f32, defaultp> mat3x3;
+
627  typedef mat<3, 4, f32, defaultp> mat3x4;
+
628  typedef mat<4, 2, f32, defaultp> mat4x2;
+
629  typedef mat<4, 3, f32, defaultp> mat4x3;
+
630  typedef mat<4, 4, f32, defaultp> mat4x4;
+
631 
+
632  typedef mat<2, 2, f32, lowp> lowp_fmat2x2;
+
633  typedef mat<2, 3, f32, lowp> lowp_fmat2x3;
+
634  typedef mat<2, 4, f32, lowp> lowp_fmat2x4;
+
635  typedef mat<3, 2, f32, lowp> lowp_fmat3x2;
+
636  typedef mat<3, 3, f32, lowp> lowp_fmat3x3;
+
637  typedef mat<3, 4, f32, lowp> lowp_fmat3x4;
+
638  typedef mat<4, 2, f32, lowp> lowp_fmat4x2;
+
639  typedef mat<4, 3, f32, lowp> lowp_fmat4x3;
+
640  typedef mat<4, 4, f32, lowp> lowp_fmat4x4;
+
641 
+
642  typedef mat<2, 2, f32, mediump> mediump_fmat2x2;
+
643  typedef mat<2, 3, f32, mediump> mediump_fmat2x3;
+
644  typedef mat<2, 4, f32, mediump> mediump_fmat2x4;
+
645  typedef mat<3, 2, f32, mediump> mediump_fmat3x2;
+
646  typedef mat<3, 3, f32, mediump> mediump_fmat3x3;
+
647  typedef mat<3, 4, f32, mediump> mediump_fmat3x4;
+
648  typedef mat<4, 2, f32, mediump> mediump_fmat4x2;
+
649  typedef mat<4, 3, f32, mediump> mediump_fmat4x3;
+
650  typedef mat<4, 4, f32, mediump> mediump_fmat4x4;
+
651 
+
652  typedef mat<2, 2, f32, highp> highp_fmat2x2;
+
653  typedef mat<2, 3, f32, highp> highp_fmat2x3;
+
654  typedef mat<2, 4, f32, highp> highp_fmat2x4;
+
655  typedef mat<3, 2, f32, highp> highp_fmat3x2;
+
656  typedef mat<3, 3, f32, highp> highp_fmat3x3;
+
657  typedef mat<3, 4, f32, highp> highp_fmat3x4;
+
658  typedef mat<4, 2, f32, highp> highp_fmat4x2;
+
659  typedef mat<4, 3, f32, highp> highp_fmat4x3;
+
660  typedef mat<4, 4, f32, highp> highp_fmat4x4;
+
661 
+
662  typedef mat<2, 2, f32, defaultp> fmat2x2;
+
663  typedef mat<2, 3, f32, defaultp> fmat2x3;
+
664  typedef mat<2, 4, f32, defaultp> fmat2x4;
+
665  typedef mat<3, 2, f32, defaultp> fmat3x2;
+
666  typedef mat<3, 3, f32, defaultp> fmat3x3;
+
667  typedef mat<3, 4, f32, defaultp> fmat3x4;
+
668  typedef mat<4, 2, f32, defaultp> fmat4x2;
+
669  typedef mat<4, 3, f32, defaultp> fmat4x3;
+
670  typedef mat<4, 4, f32, defaultp> fmat4x4;
+
671 
+
672  typedef mat<2, 2, f32, lowp> lowp_f32mat2x2;
+
673  typedef mat<2, 3, f32, lowp> lowp_f32mat2x3;
+
674  typedef mat<2, 4, f32, lowp> lowp_f32mat2x4;
+
675  typedef mat<3, 2, f32, lowp> lowp_f32mat3x2;
+
676  typedef mat<3, 3, f32, lowp> lowp_f32mat3x3;
+
677  typedef mat<3, 4, f32, lowp> lowp_f32mat3x4;
+
678  typedef mat<4, 2, f32, lowp> lowp_f32mat4x2;
+
679  typedef mat<4, 3, f32, lowp> lowp_f32mat4x3;
+
680  typedef mat<4, 4, f32, lowp> lowp_f32mat4x4;
+
681 
+
682  typedef mat<2, 2, f32, mediump> mediump_f32mat2x2;
+
683  typedef mat<2, 3, f32, mediump> mediump_f32mat2x3;
+
684  typedef mat<2, 4, f32, mediump> mediump_f32mat2x4;
+
685  typedef mat<3, 2, f32, mediump> mediump_f32mat3x2;
+
686  typedef mat<3, 3, f32, mediump> mediump_f32mat3x3;
+
687  typedef mat<3, 4, f32, mediump> mediump_f32mat3x4;
+
688  typedef mat<4, 2, f32, mediump> mediump_f32mat4x2;
+
689  typedef mat<4, 3, f32, mediump> mediump_f32mat4x3;
+
690  typedef mat<4, 4, f32, mediump> mediump_f32mat4x4;
+
691 
+
692  typedef mat<2, 2, f32, highp> highp_f32mat2x2;
+
693  typedef mat<2, 3, f32, highp> highp_f32mat2x3;
+
694  typedef mat<2, 4, f32, highp> highp_f32mat2x4;
+
695  typedef mat<3, 2, f32, highp> highp_f32mat3x2;
+
696  typedef mat<3, 3, f32, highp> highp_f32mat3x3;
+
697  typedef mat<3, 4, f32, highp> highp_f32mat3x4;
+
698  typedef mat<4, 2, f32, highp> highp_f32mat4x2;
+
699  typedef mat<4, 3, f32, highp> highp_f32mat4x3;
+
700  typedef mat<4, 4, f32, highp> highp_f32mat4x4;
+
701 
+
702  typedef mat<2, 2, f32, defaultp> f32mat2x2;
+
703  typedef mat<2, 3, f32, defaultp> f32mat2x3;
+
704  typedef mat<2, 4, f32, defaultp> f32mat2x4;
+
705  typedef mat<3, 2, f32, defaultp> f32mat3x2;
+
706  typedef mat<3, 3, f32, defaultp> f32mat3x3;
+
707  typedef mat<3, 4, f32, defaultp> f32mat3x4;
+
708  typedef mat<4, 2, f32, defaultp> f32mat4x2;
+
709  typedef mat<4, 3, f32, defaultp> f32mat4x3;
+
710  typedef mat<4, 4, f32, defaultp> f32mat4x4;
+
711 
+
712  typedef mat<2, 2, double, lowp> lowp_dmat2x2;
+
713  typedef mat<2, 3, double, lowp> lowp_dmat2x3;
+
714  typedef mat<2, 4, double, lowp> lowp_dmat2x4;
+
715  typedef mat<3, 2, double, lowp> lowp_dmat3x2;
+
716  typedef mat<3, 3, double, lowp> lowp_dmat3x3;
+
717  typedef mat<3, 4, double, lowp> lowp_dmat3x4;
+
718  typedef mat<4, 2, double, lowp> lowp_dmat4x2;
+
719  typedef mat<4, 3, double, lowp> lowp_dmat4x3;
+
720  typedef mat<4, 4, double, lowp> lowp_dmat4x4;
+
721 
+
722  typedef mat<2, 2, double, mediump> mediump_dmat2x2;
+
723  typedef mat<2, 3, double, mediump> mediump_dmat2x3;
+
724  typedef mat<2, 4, double, mediump> mediump_dmat2x4;
+
725  typedef mat<3, 2, double, mediump> mediump_dmat3x2;
+
726  typedef mat<3, 3, double, mediump> mediump_dmat3x3;
+
727  typedef mat<3, 4, double, mediump> mediump_dmat3x4;
+
728  typedef mat<4, 2, double, mediump> mediump_dmat4x2;
+
729  typedef mat<4, 3, double, mediump> mediump_dmat4x3;
+
730  typedef mat<4, 4, double, mediump> mediump_dmat4x4;
+
731 
+
732  typedef mat<2, 2, double, highp> highp_dmat2x2;
+
733  typedef mat<2, 3, double, highp> highp_dmat2x3;
+
734  typedef mat<2, 4, double, highp> highp_dmat2x4;
+
735  typedef mat<3, 2, double, highp> highp_dmat3x2;
+
736  typedef mat<3, 3, double, highp> highp_dmat3x3;
+
737  typedef mat<3, 4, double, highp> highp_dmat3x4;
+
738  typedef mat<4, 2, double, highp> highp_dmat4x2;
+
739  typedef mat<4, 3, double, highp> highp_dmat4x3;
+
740  typedef mat<4, 4, double, highp> highp_dmat4x4;
+
741 
+
742  typedef mat<2, 2, double, defaultp> dmat2x2;
+
743  typedef mat<2, 3, double, defaultp> dmat2x3;
+
744  typedef mat<2, 4, double, defaultp> dmat2x4;
+
745  typedef mat<3, 2, double, defaultp> dmat3x2;
+
746  typedef mat<3, 3, double, defaultp> dmat3x3;
+
747  typedef mat<3, 4, double, defaultp> dmat3x4;
+
748  typedef mat<4, 2, double, defaultp> dmat4x2;
+
749  typedef mat<4, 3, double, defaultp> dmat4x3;
+
750  typedef mat<4, 4, double, defaultp> dmat4x4;
+
751 
+
752  typedef mat<2, 2, f64, lowp> lowp_f64mat2x2;
+
753  typedef mat<2, 3, f64, lowp> lowp_f64mat2x3;
+
754  typedef mat<2, 4, f64, lowp> lowp_f64mat2x4;
+
755  typedef mat<3, 2, f64, lowp> lowp_f64mat3x2;
+
756  typedef mat<3, 3, f64, lowp> lowp_f64mat3x3;
+
757  typedef mat<3, 4, f64, lowp> lowp_f64mat3x4;
+
758  typedef mat<4, 2, f64, lowp> lowp_f64mat4x2;
+
759  typedef mat<4, 3, f64, lowp> lowp_f64mat4x3;
+
760  typedef mat<4, 4, f64, lowp> lowp_f64mat4x4;
+
761 
+
762  typedef mat<2, 2, f64, mediump> mediump_f64mat2x2;
+
763  typedef mat<2, 3, f64, mediump> mediump_f64mat2x3;
+
764  typedef mat<2, 4, f64, mediump> mediump_f64mat2x4;
+
765  typedef mat<3, 2, f64, mediump> mediump_f64mat3x2;
+
766  typedef mat<3, 3, f64, mediump> mediump_f64mat3x3;
+
767  typedef mat<3, 4, f64, mediump> mediump_f64mat3x4;
+
768  typedef mat<4, 2, f64, mediump> mediump_f64mat4x2;
+
769  typedef mat<4, 3, f64, mediump> mediump_f64mat4x3;
+
770  typedef mat<4, 4, f64, mediump> mediump_f64mat4x4;
+
771 
+
772  typedef mat<2, 2, f64, highp> highp_f64mat2x2;
+
773  typedef mat<2, 3, f64, highp> highp_f64mat2x3;
+
774  typedef mat<2, 4, f64, highp> highp_f64mat2x4;
+
775  typedef mat<3, 2, f64, highp> highp_f64mat3x2;
+
776  typedef mat<3, 3, f64, highp> highp_f64mat3x3;
+
777  typedef mat<3, 4, f64, highp> highp_f64mat3x4;
+
778  typedef mat<4, 2, f64, highp> highp_f64mat4x2;
+
779  typedef mat<4, 3, f64, highp> highp_f64mat4x3;
+
780  typedef mat<4, 4, f64, highp> highp_f64mat4x4;
+
781 
+
782  typedef mat<2, 2, f64, defaultp> f64mat2x2;
+
783  typedef mat<2, 3, f64, defaultp> f64mat2x3;
+
784  typedef mat<2, 4, f64, defaultp> f64mat2x4;
+
785  typedef mat<3, 2, f64, defaultp> f64mat3x2;
+
786  typedef mat<3, 3, f64, defaultp> f64mat3x3;
+
787  typedef mat<3, 4, f64, defaultp> f64mat3x4;
+
788  typedef mat<4, 2, f64, defaultp> f64mat4x2;
+
789  typedef mat<4, 3, f64, defaultp> f64mat4x3;
+
790  typedef mat<4, 4, f64, defaultp> f64mat4x4;
+
791 
+
792  // Signed integer matrix MxN
+
793 
+
794  typedef mat<2, 2, int, lowp> lowp_imat2x2;
+
795  typedef mat<2, 3, int, lowp> lowp_imat2x3;
+
796  typedef mat<2, 4, int, lowp> lowp_imat2x4;
+
797  typedef mat<3, 2, int, lowp> lowp_imat3x2;
+
798  typedef mat<3, 3, int, lowp> lowp_imat3x3;
+
799  typedef mat<3, 4, int, lowp> lowp_imat3x4;
+
800  typedef mat<4, 2, int, lowp> lowp_imat4x2;
+
801  typedef mat<4, 3, int, lowp> lowp_imat4x3;
+
802  typedef mat<4, 4, int, lowp> lowp_imat4x4;
+
803 
+
804  typedef mat<2, 2, int, mediump> mediump_imat2x2;
+
805  typedef mat<2, 3, int, mediump> mediump_imat2x3;
+
806  typedef mat<2, 4, int, mediump> mediump_imat2x4;
+
807  typedef mat<3, 2, int, mediump> mediump_imat3x2;
+
808  typedef mat<3, 3, int, mediump> mediump_imat3x3;
+
809  typedef mat<3, 4, int, mediump> mediump_imat3x4;
+
810  typedef mat<4, 2, int, mediump> mediump_imat4x2;
+
811  typedef mat<4, 3, int, mediump> mediump_imat4x3;
+
812  typedef mat<4, 4, int, mediump> mediump_imat4x4;
+
813 
+
814  typedef mat<2, 2, int, highp> highp_imat2x2;
+
815  typedef mat<2, 3, int, highp> highp_imat2x3;
+
816  typedef mat<2, 4, int, highp> highp_imat2x4;
+
817  typedef mat<3, 2, int, highp> highp_imat3x2;
+
818  typedef mat<3, 3, int, highp> highp_imat3x3;
+
819  typedef mat<3, 4, int, highp> highp_imat3x4;
+
820  typedef mat<4, 2, int, highp> highp_imat4x2;
+
821  typedef mat<4, 3, int, highp> highp_imat4x3;
+
822  typedef mat<4, 4, int, highp> highp_imat4x4;
+
823 
+
824  typedef mat<2, 2, int, defaultp> imat2x2;
+
825  typedef mat<2, 3, int, defaultp> imat2x3;
+
826  typedef mat<2, 4, int, defaultp> imat2x4;
+
827  typedef mat<3, 2, int, defaultp> imat3x2;
+
828  typedef mat<3, 3, int, defaultp> imat3x3;
+
829  typedef mat<3, 4, int, defaultp> imat3x4;
+
830  typedef mat<4, 2, int, defaultp> imat4x2;
+
831  typedef mat<4, 3, int, defaultp> imat4x3;
+
832  typedef mat<4, 4, int, defaultp> imat4x4;
+
833 
+
834 
+
835  typedef mat<2, 2, int8, lowp> lowp_i8mat2x2;
+
836  typedef mat<2, 3, int8, lowp> lowp_i8mat2x3;
+
837  typedef mat<2, 4, int8, lowp> lowp_i8mat2x4;
+
838  typedef mat<3, 2, int8, lowp> lowp_i8mat3x2;
+
839  typedef mat<3, 3, int8, lowp> lowp_i8mat3x3;
+
840  typedef mat<3, 4, int8, lowp> lowp_i8mat3x4;
+
841  typedef mat<4, 2, int8, lowp> lowp_i8mat4x2;
+
842  typedef mat<4, 3, int8, lowp> lowp_i8mat4x3;
+
843  typedef mat<4, 4, int8, lowp> lowp_i8mat4x4;
+
844 
+
845  typedef mat<2, 2, int8, mediump> mediump_i8mat2x2;
+
846  typedef mat<2, 3, int8, mediump> mediump_i8mat2x3;
+
847  typedef mat<2, 4, int8, mediump> mediump_i8mat2x4;
+
848  typedef mat<3, 2, int8, mediump> mediump_i8mat3x2;
+
849  typedef mat<3, 3, int8, mediump> mediump_i8mat3x3;
+
850  typedef mat<3, 4, int8, mediump> mediump_i8mat3x4;
+
851  typedef mat<4, 2, int8, mediump> mediump_i8mat4x2;
+
852  typedef mat<4, 3, int8, mediump> mediump_i8mat4x3;
+
853  typedef mat<4, 4, int8, mediump> mediump_i8mat4x4;
+
854 
+
855  typedef mat<2, 2, int8, highp> highp_i8mat2x2;
+
856  typedef mat<2, 3, int8, highp> highp_i8mat2x3;
+
857  typedef mat<2, 4, int8, highp> highp_i8mat2x4;
+
858  typedef mat<3, 2, int8, highp> highp_i8mat3x2;
+
859  typedef mat<3, 3, int8, highp> highp_i8mat3x3;
+
860  typedef mat<3, 4, int8, highp> highp_i8mat3x4;
+
861  typedef mat<4, 2, int8, highp> highp_i8mat4x2;
+
862  typedef mat<4, 3, int8, highp> highp_i8mat4x3;
+
863  typedef mat<4, 4, int8, highp> highp_i8mat4x4;
+
864 
+
865  typedef mat<2, 2, int8, defaultp> i8mat2x2;
+
866  typedef mat<2, 3, int8, defaultp> i8mat2x3;
+
867  typedef mat<2, 4, int8, defaultp> i8mat2x4;
+
868  typedef mat<3, 2, int8, defaultp> i8mat3x2;
+
869  typedef mat<3, 3, int8, defaultp> i8mat3x3;
+
870  typedef mat<3, 4, int8, defaultp> i8mat3x4;
+
871  typedef mat<4, 2, int8, defaultp> i8mat4x2;
+
872  typedef mat<4, 3, int8, defaultp> i8mat4x3;
+
873  typedef mat<4, 4, int8, defaultp> i8mat4x4;
+
874 
+
875 
+
876  typedef mat<2, 2, int16, lowp> lowp_i16mat2x2;
+
877  typedef mat<2, 3, int16, lowp> lowp_i16mat2x3;
+
878  typedef mat<2, 4, int16, lowp> lowp_i16mat2x4;
+
879  typedef mat<3, 2, int16, lowp> lowp_i16mat3x2;
+
880  typedef mat<3, 3, int16, lowp> lowp_i16mat3x3;
+
881  typedef mat<3, 4, int16, lowp> lowp_i16mat3x4;
+
882  typedef mat<4, 2, int16, lowp> lowp_i16mat4x2;
+
883  typedef mat<4, 3, int16, lowp> lowp_i16mat4x3;
+
884  typedef mat<4, 4, int16, lowp> lowp_i16mat4x4;
+
885 
+
886  typedef mat<2, 2, int16, mediump> mediump_i16mat2x2;
+
887  typedef mat<2, 3, int16, mediump> mediump_i16mat2x3;
+
888  typedef mat<2, 4, int16, mediump> mediump_i16mat2x4;
+
889  typedef mat<3, 2, int16, mediump> mediump_i16mat3x2;
+
890  typedef mat<3, 3, int16, mediump> mediump_i16mat3x3;
+
891  typedef mat<3, 4, int16, mediump> mediump_i16mat3x4;
+
892  typedef mat<4, 2, int16, mediump> mediump_i16mat4x2;
+
893  typedef mat<4, 3, int16, mediump> mediump_i16mat4x3;
+
894  typedef mat<4, 4, int16, mediump> mediump_i16mat4x4;
+
895 
+
896  typedef mat<2, 2, int16, highp> highp_i16mat2x2;
+
897  typedef mat<2, 3, int16, highp> highp_i16mat2x3;
+
898  typedef mat<2, 4, int16, highp> highp_i16mat2x4;
+
899  typedef mat<3, 2, int16, highp> highp_i16mat3x2;
+
900  typedef mat<3, 3, int16, highp> highp_i16mat3x3;
+
901  typedef mat<3, 4, int16, highp> highp_i16mat3x4;
+
902  typedef mat<4, 2, int16, highp> highp_i16mat4x2;
+
903  typedef mat<4, 3, int16, highp> highp_i16mat4x3;
+
904  typedef mat<4, 4, int16, highp> highp_i16mat4x4;
+
905 
+
906  typedef mat<2, 2, int16, defaultp> i16mat2x2;
+
907  typedef mat<2, 3, int16, defaultp> i16mat2x3;
+
908  typedef mat<2, 4, int16, defaultp> i16mat2x4;
+
909  typedef mat<3, 2, int16, defaultp> i16mat3x2;
+
910  typedef mat<3, 3, int16, defaultp> i16mat3x3;
+
911  typedef mat<3, 4, int16, defaultp> i16mat3x4;
+
912  typedef mat<4, 2, int16, defaultp> i16mat4x2;
+
913  typedef mat<4, 3, int16, defaultp> i16mat4x3;
+
914  typedef mat<4, 4, int16, defaultp> i16mat4x4;
+
915 
+
916 
+
917  typedef mat<2, 2, int32, lowp> lowp_i32mat2x2;
+
918  typedef mat<2, 3, int32, lowp> lowp_i32mat2x3;
+
919  typedef mat<2, 4, int32, lowp> lowp_i32mat2x4;
+
920  typedef mat<3, 2, int32, lowp> lowp_i32mat3x2;
+
921  typedef mat<3, 3, int32, lowp> lowp_i32mat3x3;
+
922  typedef mat<3, 4, int32, lowp> lowp_i32mat3x4;
+
923  typedef mat<4, 2, int32, lowp> lowp_i32mat4x2;
+
924  typedef mat<4, 3, int32, lowp> lowp_i32mat4x3;
+
925  typedef mat<4, 4, int32, lowp> lowp_i32mat4x4;
+
926 
+
927  typedef mat<2, 2, int32, mediump> mediump_i32mat2x2;
+
928  typedef mat<2, 3, int32, mediump> mediump_i32mat2x3;
+
929  typedef mat<2, 4, int32, mediump> mediump_i32mat2x4;
+
930  typedef mat<3, 2, int32, mediump> mediump_i32mat3x2;
+
931  typedef mat<3, 3, int32, mediump> mediump_i32mat3x3;
+
932  typedef mat<3, 4, int32, mediump> mediump_i32mat3x4;
+
933  typedef mat<4, 2, int32, mediump> mediump_i32mat4x2;
+
934  typedef mat<4, 3, int32, mediump> mediump_i32mat4x3;
+
935  typedef mat<4, 4, int32, mediump> mediump_i32mat4x4;
+
936 
+
937  typedef mat<2, 2, int32, highp> highp_i32mat2x2;
+
938  typedef mat<2, 3, int32, highp> highp_i32mat2x3;
+
939  typedef mat<2, 4, int32, highp> highp_i32mat2x4;
+
940  typedef mat<3, 2, int32, highp> highp_i32mat3x2;
+
941  typedef mat<3, 3, int32, highp> highp_i32mat3x3;
+
942  typedef mat<3, 4, int32, highp> highp_i32mat3x4;
+
943  typedef mat<4, 2, int32, highp> highp_i32mat4x2;
+
944  typedef mat<4, 3, int32, highp> highp_i32mat4x3;
+
945  typedef mat<4, 4, int32, highp> highp_i32mat4x4;
+
946 
+
947  typedef mat<2, 2, int32, defaultp> i32mat2x2;
+
948  typedef mat<2, 3, int32, defaultp> i32mat2x3;
+
949  typedef mat<2, 4, int32, defaultp> i32mat2x4;
+
950  typedef mat<3, 2, int32, defaultp> i32mat3x2;
+
951  typedef mat<3, 3, int32, defaultp> i32mat3x3;
+
952  typedef mat<3, 4, int32, defaultp> i32mat3x4;
+
953  typedef mat<4, 2, int32, defaultp> i32mat4x2;
+
954  typedef mat<4, 3, int32, defaultp> i32mat4x3;
+
955  typedef mat<4, 4, int32, defaultp> i32mat4x4;
+
956 
+
957 
+
958  typedef mat<2, 2, int64, lowp> lowp_i64mat2x2;
+
959  typedef mat<2, 3, int64, lowp> lowp_i64mat2x3;
+
960  typedef mat<2, 4, int64, lowp> lowp_i64mat2x4;
+
961  typedef mat<3, 2, int64, lowp> lowp_i64mat3x2;
+
962  typedef mat<3, 3, int64, lowp> lowp_i64mat3x3;
+
963  typedef mat<3, 4, int64, lowp> lowp_i64mat3x4;
+
964  typedef mat<4, 2, int64, lowp> lowp_i64mat4x2;
+
965  typedef mat<4, 3, int64, lowp> lowp_i64mat4x3;
+
966  typedef mat<4, 4, int64, lowp> lowp_i64mat4x4;
+
967 
+
968  typedef mat<2, 2, int64, mediump> mediump_i64mat2x2;
+
969  typedef mat<2, 3, int64, mediump> mediump_i64mat2x3;
+
970  typedef mat<2, 4, int64, mediump> mediump_i64mat2x4;
+
971  typedef mat<3, 2, int64, mediump> mediump_i64mat3x2;
+
972  typedef mat<3, 3, int64, mediump> mediump_i64mat3x3;
+
973  typedef mat<3, 4, int64, mediump> mediump_i64mat3x4;
+
974  typedef mat<4, 2, int64, mediump> mediump_i64mat4x2;
+
975  typedef mat<4, 3, int64, mediump> mediump_i64mat4x3;
+
976  typedef mat<4, 4, int64, mediump> mediump_i64mat4x4;
+
977 
+
978  typedef mat<2, 2, int64, highp> highp_i64mat2x2;
+
979  typedef mat<2, 3, int64, highp> highp_i64mat2x3;
+
980  typedef mat<2, 4, int64, highp> highp_i64mat2x4;
+
981  typedef mat<3, 2, int64, highp> highp_i64mat3x2;
+
982  typedef mat<3, 3, int64, highp> highp_i64mat3x3;
+
983  typedef mat<3, 4, int64, highp> highp_i64mat3x4;
+
984  typedef mat<4, 2, int64, highp> highp_i64mat4x2;
+
985  typedef mat<4, 3, int64, highp> highp_i64mat4x3;
+
986  typedef mat<4, 4, int64, highp> highp_i64mat4x4;
+
987 
+
988  typedef mat<2, 2, int64, defaultp> i64mat2x2;
+
989  typedef mat<2, 3, int64, defaultp> i64mat2x3;
+
990  typedef mat<2, 4, int64, defaultp> i64mat2x4;
+
991  typedef mat<3, 2, int64, defaultp> i64mat3x2;
+
992  typedef mat<3, 3, int64, defaultp> i64mat3x3;
+
993  typedef mat<3, 4, int64, defaultp> i64mat3x4;
+
994  typedef mat<4, 2, int64, defaultp> i64mat4x2;
+
995  typedef mat<4, 3, int64, defaultp> i64mat4x3;
+
996  typedef mat<4, 4, int64, defaultp> i64mat4x4;
+
997 
+
998 
+
999  // Unsigned integer matrix MxN
+
1000 
+
1001  typedef mat<2, 2, uint, lowp> lowp_umat2x2;
+
1002  typedef mat<2, 3, uint, lowp> lowp_umat2x3;
+
1003  typedef mat<2, 4, uint, lowp> lowp_umat2x4;
+
1004  typedef mat<3, 2, uint, lowp> lowp_umat3x2;
+
1005  typedef mat<3, 3, uint, lowp> lowp_umat3x3;
+
1006  typedef mat<3, 4, uint, lowp> lowp_umat3x4;
+
1007  typedef mat<4, 2, uint, lowp> lowp_umat4x2;
+
1008  typedef mat<4, 3, uint, lowp> lowp_umat4x3;
+
1009  typedef mat<4, 4, uint, lowp> lowp_umat4x4;
+
1010 
+
1011  typedef mat<2, 2, uint, mediump> mediump_umat2x2;
+
1012  typedef mat<2, 3, uint, mediump> mediump_umat2x3;
+
1013  typedef mat<2, 4, uint, mediump> mediump_umat2x4;
+
1014  typedef mat<3, 2, uint, mediump> mediump_umat3x2;
+
1015  typedef mat<3, 3, uint, mediump> mediump_umat3x3;
+
1016  typedef mat<3, 4, uint, mediump> mediump_umat3x4;
+
1017  typedef mat<4, 2, uint, mediump> mediump_umat4x2;
+
1018  typedef mat<4, 3, uint, mediump> mediump_umat4x3;
+
1019  typedef mat<4, 4, uint, mediump> mediump_umat4x4;
+
1020 
+
1021  typedef mat<2, 2, uint, highp> highp_umat2x2;
+
1022  typedef mat<2, 3, uint, highp> highp_umat2x3;
+
1023  typedef mat<2, 4, uint, highp> highp_umat2x4;
+
1024  typedef mat<3, 2, uint, highp> highp_umat3x2;
+
1025  typedef mat<3, 3, uint, highp> highp_umat3x3;
+
1026  typedef mat<3, 4, uint, highp> highp_umat3x4;
+
1027  typedef mat<4, 2, uint, highp> highp_umat4x2;
+
1028  typedef mat<4, 3, uint, highp> highp_umat4x3;
+
1029  typedef mat<4, 4, uint, highp> highp_umat4x4;
+
1030 
+
1031  typedef mat<2, 2, uint, defaultp> umat2x2;
+
1032  typedef mat<2, 3, uint, defaultp> umat2x3;
+
1033  typedef mat<2, 4, uint, defaultp> umat2x4;
+
1034  typedef mat<3, 2, uint, defaultp> umat3x2;
+
1035  typedef mat<3, 3, uint, defaultp> umat3x3;
+
1036  typedef mat<3, 4, uint, defaultp> umat3x4;
+
1037  typedef mat<4, 2, uint, defaultp> umat4x2;
+
1038  typedef mat<4, 3, uint, defaultp> umat4x3;
+
1039  typedef mat<4, 4, uint, defaultp> umat4x4;
+
1040 
+
1041 
+
1042  typedef mat<2, 2, uint8, lowp> lowp_u8mat2x2;
+
1043  typedef mat<2, 3, uint8, lowp> lowp_u8mat2x3;
+
1044  typedef mat<2, 4, uint8, lowp> lowp_u8mat2x4;
+
1045  typedef mat<3, 2, uint8, lowp> lowp_u8mat3x2;
+
1046  typedef mat<3, 3, uint8, lowp> lowp_u8mat3x3;
+
1047  typedef mat<3, 4, uint8, lowp> lowp_u8mat3x4;
+
1048  typedef mat<4, 2, uint8, lowp> lowp_u8mat4x2;
+
1049  typedef mat<4, 3, uint8, lowp> lowp_u8mat4x3;
+
1050  typedef mat<4, 4, uint8, lowp> lowp_u8mat4x4;
+
1051 
+
1052  typedef mat<2, 2, uint8, mediump> mediump_u8mat2x2;
+
1053  typedef mat<2, 3, uint8, mediump> mediump_u8mat2x3;
+
1054  typedef mat<2, 4, uint8, mediump> mediump_u8mat2x4;
+
1055  typedef mat<3, 2, uint8, mediump> mediump_u8mat3x2;
+
1056  typedef mat<3, 3, uint8, mediump> mediump_u8mat3x3;
+
1057  typedef mat<3, 4, uint8, mediump> mediump_u8mat3x4;
+
1058  typedef mat<4, 2, uint8, mediump> mediump_u8mat4x2;
+
1059  typedef mat<4, 3, uint8, mediump> mediump_u8mat4x3;
+
1060  typedef mat<4, 4, uint8, mediump> mediump_u8mat4x4;
+
1061 
+
1062  typedef mat<2, 2, uint8, highp> highp_u8mat2x2;
+
1063  typedef mat<2, 3, uint8, highp> highp_u8mat2x3;
+
1064  typedef mat<2, 4, uint8, highp> highp_u8mat2x4;
+
1065  typedef mat<3, 2, uint8, highp> highp_u8mat3x2;
+
1066  typedef mat<3, 3, uint8, highp> highp_u8mat3x3;
+
1067  typedef mat<3, 4, uint8, highp> highp_u8mat3x4;
+
1068  typedef mat<4, 2, uint8, highp> highp_u8mat4x2;
+
1069  typedef mat<4, 3, uint8, highp> highp_u8mat4x3;
+
1070  typedef mat<4, 4, uint8, highp> highp_u8mat4x4;
+
1071 
+
1072  typedef mat<2, 2, uint8, defaultp> u8mat2x2;
+
1073  typedef mat<2, 3, uint8, defaultp> u8mat2x3;
+
1074  typedef mat<2, 4, uint8, defaultp> u8mat2x4;
+
1075  typedef mat<3, 2, uint8, defaultp> u8mat3x2;
+
1076  typedef mat<3, 3, uint8, defaultp> u8mat3x3;
+
1077  typedef mat<3, 4, uint8, defaultp> u8mat3x4;
+
1078  typedef mat<4, 2, uint8, defaultp> u8mat4x2;
+
1079  typedef mat<4, 3, uint8, defaultp> u8mat4x3;
+
1080  typedef mat<4, 4, uint8, defaultp> u8mat4x4;
+
1081 
+
1082 
+
1083  typedef mat<2, 2, uint16, lowp> lowp_u16mat2x2;
+
1084  typedef mat<2, 3, uint16, lowp> lowp_u16mat2x3;
+
1085  typedef mat<2, 4, uint16, lowp> lowp_u16mat2x4;
+
1086  typedef mat<3, 2, uint16, lowp> lowp_u16mat3x2;
+
1087  typedef mat<3, 3, uint16, lowp> lowp_u16mat3x3;
+
1088  typedef mat<3, 4, uint16, lowp> lowp_u16mat3x4;
+
1089  typedef mat<4, 2, uint16, lowp> lowp_u16mat4x2;
+
1090  typedef mat<4, 3, uint16, lowp> lowp_u16mat4x3;
+
1091  typedef mat<4, 4, uint16, lowp> lowp_u16mat4x4;
+
1092 
+
1093  typedef mat<2, 2, uint16, mediump> mediump_u16mat2x2;
+
1094  typedef mat<2, 3, uint16, mediump> mediump_u16mat2x3;
+
1095  typedef mat<2, 4, uint16, mediump> mediump_u16mat2x4;
+
1096  typedef mat<3, 2, uint16, mediump> mediump_u16mat3x2;
+
1097  typedef mat<3, 3, uint16, mediump> mediump_u16mat3x3;
+
1098  typedef mat<3, 4, uint16, mediump> mediump_u16mat3x4;
+
1099  typedef mat<4, 2, uint16, mediump> mediump_u16mat4x2;
+
1100  typedef mat<4, 3, uint16, mediump> mediump_u16mat4x3;
+
1101  typedef mat<4, 4, uint16, mediump> mediump_u16mat4x4;
+
1102 
+
1103  typedef mat<2, 2, uint16, highp> highp_u16mat2x2;
+
1104  typedef mat<2, 3, uint16, highp> highp_u16mat2x3;
+
1105  typedef mat<2, 4, uint16, highp> highp_u16mat2x4;
+
1106  typedef mat<3, 2, uint16, highp> highp_u16mat3x2;
+
1107  typedef mat<3, 3, uint16, highp> highp_u16mat3x3;
+
1108  typedef mat<3, 4, uint16, highp> highp_u16mat3x4;
+
1109  typedef mat<4, 2, uint16, highp> highp_u16mat4x2;
+
1110  typedef mat<4, 3, uint16, highp> highp_u16mat4x3;
+
1111  typedef mat<4, 4, uint16, highp> highp_u16mat4x4;
+
1112 
+
1113  typedef mat<2, 2, uint16, defaultp> u16mat2x2;
+
1114  typedef mat<2, 3, uint16, defaultp> u16mat2x3;
+
1115  typedef mat<2, 4, uint16, defaultp> u16mat2x4;
+
1116  typedef mat<3, 2, uint16, defaultp> u16mat3x2;
+
1117  typedef mat<3, 3, uint16, defaultp> u16mat3x3;
+
1118  typedef mat<3, 4, uint16, defaultp> u16mat3x4;
+
1119  typedef mat<4, 2, uint16, defaultp> u16mat4x2;
+
1120  typedef mat<4, 3, uint16, defaultp> u16mat4x3;
+
1121  typedef mat<4, 4, uint16, defaultp> u16mat4x4;
+
1122 
+
1123 
+
1124  typedef mat<2, 2, uint32, lowp> lowp_u32mat2x2;
+
1125  typedef mat<2, 3, uint32, lowp> lowp_u32mat2x3;
+
1126  typedef mat<2, 4, uint32, lowp> lowp_u32mat2x4;
+
1127  typedef mat<3, 2, uint32, lowp> lowp_u32mat3x2;
+
1128  typedef mat<3, 3, uint32, lowp> lowp_u32mat3x3;
+
1129  typedef mat<3, 4, uint32, lowp> lowp_u32mat3x4;
+
1130  typedef mat<4, 2, uint32, lowp> lowp_u32mat4x2;
+
1131  typedef mat<4, 3, uint32, lowp> lowp_u32mat4x3;
+
1132  typedef mat<4, 4, uint32, lowp> lowp_u32mat4x4;
+
1133 
+
1134  typedef mat<2, 2, uint32, mediump> mediump_u32mat2x2;
+
1135  typedef mat<2, 3, uint32, mediump> mediump_u32mat2x3;
+
1136  typedef mat<2, 4, uint32, mediump> mediump_u32mat2x4;
+
1137  typedef mat<3, 2, uint32, mediump> mediump_u32mat3x2;
+
1138  typedef mat<3, 3, uint32, mediump> mediump_u32mat3x3;
+
1139  typedef mat<3, 4, uint32, mediump> mediump_u32mat3x4;
+
1140  typedef mat<4, 2, uint32, mediump> mediump_u32mat4x2;
+
1141  typedef mat<4, 3, uint32, mediump> mediump_u32mat4x3;
+
1142  typedef mat<4, 4, uint32, mediump> mediump_u32mat4x4;
+
1143 
+
1144  typedef mat<2, 2, uint32, highp> highp_u32mat2x2;
+
1145  typedef mat<2, 3, uint32, highp> highp_u32mat2x3;
+
1146  typedef mat<2, 4, uint32, highp> highp_u32mat2x4;
+
1147  typedef mat<3, 2, uint32, highp> highp_u32mat3x2;
+
1148  typedef mat<3, 3, uint32, highp> highp_u32mat3x3;
+
1149  typedef mat<3, 4, uint32, highp> highp_u32mat3x4;
+
1150  typedef mat<4, 2, uint32, highp> highp_u32mat4x2;
+
1151  typedef mat<4, 3, uint32, highp> highp_u32mat4x3;
+
1152  typedef mat<4, 4, uint32, highp> highp_u32mat4x4;
+
1153 
+
1154  typedef mat<2, 2, uint32, defaultp> u32mat2x2;
+
1155  typedef mat<2, 3, uint32, defaultp> u32mat2x3;
+
1156  typedef mat<2, 4, uint32, defaultp> u32mat2x4;
+
1157  typedef mat<3, 2, uint32, defaultp> u32mat3x2;
+
1158  typedef mat<3, 3, uint32, defaultp> u32mat3x3;
+
1159  typedef mat<3, 4, uint32, defaultp> u32mat3x4;
+
1160  typedef mat<4, 2, uint32, defaultp> u32mat4x2;
+
1161  typedef mat<4, 3, uint32, defaultp> u32mat4x3;
+
1162  typedef mat<4, 4, uint32, defaultp> u32mat4x4;
+
1163 
+
1164 
+
1165  typedef mat<2, 2, uint64, lowp> lowp_u64mat2x2;
+
1166  typedef mat<2, 3, uint64, lowp> lowp_u64mat2x3;
+
1167  typedef mat<2, 4, uint64, lowp> lowp_u64mat2x4;
+
1168  typedef mat<3, 2, uint64, lowp> lowp_u64mat3x2;
+
1169  typedef mat<3, 3, uint64, lowp> lowp_u64mat3x3;
+
1170  typedef mat<3, 4, uint64, lowp> lowp_u64mat3x4;
+
1171  typedef mat<4, 2, uint64, lowp> lowp_u64mat4x2;
+
1172  typedef mat<4, 3, uint64, lowp> lowp_u64mat4x3;
+
1173  typedef mat<4, 4, uint64, lowp> lowp_u64mat4x4;
+
1174 
+
1175  typedef mat<2, 2, uint64, mediump> mediump_u64mat2x2;
+
1176  typedef mat<2, 3, uint64, mediump> mediump_u64mat2x3;
+
1177  typedef mat<2, 4, uint64, mediump> mediump_u64mat2x4;
+
1178  typedef mat<3, 2, uint64, mediump> mediump_u64mat3x2;
+
1179  typedef mat<3, 3, uint64, mediump> mediump_u64mat3x3;
+
1180  typedef mat<3, 4, uint64, mediump> mediump_u64mat3x4;
+
1181  typedef mat<4, 2, uint64, mediump> mediump_u64mat4x2;
+
1182  typedef mat<4, 3, uint64, mediump> mediump_u64mat4x3;
+
1183  typedef mat<4, 4, uint64, mediump> mediump_u64mat4x4;
+
1184 
+
1185  typedef mat<2, 2, uint64, highp> highp_u64mat2x2;
+
1186  typedef mat<2, 3, uint64, highp> highp_u64mat2x3;
+
1187  typedef mat<2, 4, uint64, highp> highp_u64mat2x4;
+
1188  typedef mat<3, 2, uint64, highp> highp_u64mat3x2;
+
1189  typedef mat<3, 3, uint64, highp> highp_u64mat3x3;
+
1190  typedef mat<3, 4, uint64, highp> highp_u64mat3x4;
+
1191  typedef mat<4, 2, uint64, highp> highp_u64mat4x2;
+
1192  typedef mat<4, 3, uint64, highp> highp_u64mat4x3;
+
1193  typedef mat<4, 4, uint64, highp> highp_u64mat4x4;
+
1194 
+
1195  typedef mat<2, 2, uint64, defaultp> u64mat2x2;
+
1196  typedef mat<2, 3, uint64, defaultp> u64mat2x3;
+
1197  typedef mat<2, 4, uint64, defaultp> u64mat2x4;
+
1198  typedef mat<3, 2, uint64, defaultp> u64mat3x2;
+
1199  typedef mat<3, 3, uint64, defaultp> u64mat3x3;
+
1200  typedef mat<3, 4, uint64, defaultp> u64mat3x4;
+
1201  typedef mat<4, 2, uint64, defaultp> u64mat4x2;
+
1202  typedef mat<4, 3, uint64, defaultp> u64mat4x3;
+
1203  typedef mat<4, 4, uint64, defaultp> u64mat4x4;
+
1204 
+
1205  // Quaternion
+
1206 
+
1207  typedef qua<float, lowp> lowp_quat;
+
1208  typedef qua<float, mediump> mediump_quat;
+
1209  typedef qua<float, highp> highp_quat;
+
1210  typedef qua<float, defaultp> quat;
+
1211 
+
1212  typedef qua<float, lowp> lowp_fquat;
+
1213  typedef qua<float, mediump> mediump_fquat;
+
1214  typedef qua<float, highp> highp_fquat;
+
1215  typedef qua<float, defaultp> fquat;
+
1216 
+
1217  typedef qua<f32, lowp> lowp_f32quat;
+
1218  typedef qua<f32, mediump> mediump_f32quat;
+
1219  typedef qua<f32, highp> highp_f32quat;
+
1220  typedef qua<f32, defaultp> f32quat;
+
1221 
+
1222  typedef qua<double, lowp> lowp_dquat;
+
1223  typedef qua<double, mediump> mediump_dquat;
+
1224  typedef qua<double, highp> highp_dquat;
+
1225  typedef qua<double, defaultp> dquat;
+
1226 
+
1227  typedef qua<f64, lowp> lowp_f64quat;
+
1228  typedef qua<f64, mediump> mediump_f64quat;
+
1229  typedef qua<f64, highp> highp_f64quat;
+
1230  typedef qua<f64, defaultp> f64quat;
+
1231 }//namespace glm
+
1232 
+
1233 
+
+
mat< 3, 4, uint, highp > highp_umat3x4
High-qualifier unsigned integer 3x4 matrix.
Definition: fwd.hpp:1026
+
vec< 2, int16, defaultp > i16vec2
16 bit signed integer vector of 2 components type.
+
mat< 3, 3, f32, highp > highp_f32mat3x3
High single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:696
+
vec< 3, float, highp > highp_vec3
3 components vector of high single-qualifier floating-point numbers.
+
mat< 4, 3, float, lowp > lowp_mat4x3
4 columns of 3 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 2, 2, int16, defaultp > i16mat2x2
16 bit signed integer 2x2 matrix.
+
mat< 3, 2, int, highp > highp_imat3x2
High-qualifier signed integer 3x2 matrix.
Definition: fwd.hpp:817
+
mat< 2, 4, int8, defaultp > i8mat2x4
8 bit signed integer 2x4 matrix.
+
mat< 3, 3, float, defaultp > mat3
3 columns of 3 components matrix of single-precision floating-point numbers.
+
uint64 uint64_t
Default qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:145
+
mat< 3, 4, int, highp > highp_imat3x4
High-qualifier signed integer 3x4 matrix.
Definition: fwd.hpp:819
+
mat< 2, 2, int8, defaultp > i8mat2x2
8 bit signed integer 2x2 matrix.
+
mat< 4, 4, double, highp > highp_dmat4
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
vec< 1, i64, lowp > lowp_i64vec1
Low qualifier 64 bit signed integer scalar type.
Definition: fwd.hpp:284
+
mat< 3, 3, f32, mediump > mediump_fmat3
Medium single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:531
+
mat< 4, 4, f32, lowp > lowp_fmat4x4
Low single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:640
+
uint64 u64
Default qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:136
+
mat< 4, 3, float, defaultp > mat4x3
4 columns of 3 components matrix of single-precision floating-point numbers.
+
vec< 1, double, mediump > mediump_dvec1
1 component vector of double-precision floating-point numbers using medium precision arithmetic in te...
+
mat< 3, 3, f32, highp > highp_fmat3x3
High single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:656
+
vec< 1, u16, mediump > mediump_u16vec1
Medium qualifier 16 bit unsigned integer scalar type.
Definition: fwd.hpp:351
+
mat< 2, 3, f32, mediump > mediump_f32mat2x3
Medium single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:683
+
mat< 4, 4, f64, highp > highp_f64mat4x4
High double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:780
+
mat< 2, 4, double, highp > highp_dmat2x4
2 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
vec< 2, double, mediump > mediump_dvec2
2 components vector of medium double-qualifier floating-point numbers.
+
mat< 3, 2, int, defaultp > imat3x2
Signed integer 3x2 matrix.
+
vec< 3, double, highp > highp_dvec3
3 components vector of high double-qualifier floating-point numbers.
+
mat< 3, 2, int32, defaultp > i32mat3x2
32 bit signed integer 3x2 matrix.
+
mat< 3, 4, int, lowp > lowp_imat3x4
Low-qualifier signed integer 3x4 matrix.
Definition: fwd.hpp:799
+
vec< 4, float, mediump > mediump_fvec4
Medium Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:436
+
mat< 2, 3, f32, highp > highp_fmat2x3
High single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:653
+
vec< 2, i16, highp > highp_i16vec2
High qualifier 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:255
+
mat< 4, 3, int, lowp > lowp_imat4x3
Low-qualifier signed integer 4x3 matrix.
Definition: fwd.hpp:801
+
mat< 2, 4, int, defaultp > imat2x4
Signed integer 2x4 matrix.
+
mat< 2, 3, f64, defaultp > f64mat2x3
Double-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:783
+
mat< 2, 4, f64, lowp > lowp_f64mat2x4
Low double-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:754
+
mat< 2, 2, f64, defaultp > f64mat2x2
Double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:782
+
mat< 4, 4, float, highp > highp_mat4x4
4 columns of 4 components matrix of single-precision floating-point numbers using high precision arit...
+
vec< 3, unsigned int, defaultp > uvec3
3 components vector of unsigned integer numbers.
+
vec< 4, u8, mediump > mediump_u8vec4
Medium qualifier 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:334
+
vec< 4, f32, mediump > mediump_f32vec4
Medium single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:456
+
mat< 2, 3, int, highp > highp_imat2x3
High-qualifier signed integer 2x3 matrix.
Definition: fwd.hpp:815
+
mat< 4, 2, f32, defaultp > f32mat4x2
Single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:708
+
vec< 2, u64, highp > highp_u64vec2
High qualifier 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:397
+
mat< 3, 2, float, defaultp > mat3x2
3 columns of 2 components matrix of single-precision floating-point numbers.
+
mat< 4, 4, uint8, defaultp > u8mat4x4
8 bit unsigned integer 4x4 matrix.
+
vec< 3, u16, highp > highp_u16vec3
High qualifier 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:358
+
qua< double, defaultp > dquat
Quaternion of double-precision floating-point numbers.
+
float mediump_float32_t
Medium 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:160
+
double lowp_float64
Low 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:170
+
vec< 1, int, mediump > mediump_ivec1
Medium qualifier signed integer vector of 1 component type.
Definition: fwd.hpp:209
+
mat< 4, 3, int, mediump > mediump_imat4x3
Medium-qualifier signed integer 4x3 matrix.
Definition: fwd.hpp:811
+
mat< 3, 3, float, lowp > lowp_mat3
3 columns of 3 components matrix of single-precision floating-point numbers using low precision arith...
+
vec< 2, int, highp > highp_ivec2
High qualifier signed integer vector of 2 components type.
Definition: fwd.hpp:215
+
mat< 2, 2, f32, lowp > lowp_fmat2x2
Low single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:632
+
mat< 3, 4, float, mediump > mediump_mat3x4
3 columns of 4 components matrix of single-precision floating-point numbers using medium precision ar...
+
vec< 2, int, mediump > mediump_ivec2
Medium qualifier signed integer vector of 2 components type.
Definition: fwd.hpp:210
+
mat< 3, 4, double, mediump > mediump_dmat3x4
3 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
int16 mediump_int16_t
Medium qualifier 16 bit signed integer type.
Definition: fwd.hpp:55
+
mat< 2, 3, float, mediump > mediump_mat2x3
2 columns of 3 components matrix of single-precision floating-point numbers using medium precision ar...
+
vec< 4, i16, lowp > lowp_i16vec4
Low qualifier 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:247
+
mat< 2, 2, f32, highp > highp_f32mat2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:550
+
vec< 2, float, mediump > mediump_vec2
2 components vector of medium single-qualifier floating-point numbers.
+
mat< 3, 4, int32, defaultp > i32mat3x4
32 bit signed integer 3x4 matrix.
+
mat< 2, 2, f64, mediump > mediump_f64mat2x2
Medium double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:762
+
int64 mediump_int64
Medium qualifier 64 bit signed integer type.
Definition: fwd.hpp:79
+
int32 highp_i32
High qualifier 32 bit signed integer type.
Definition: fwd.hpp:61
+
mat< 2, 3, f32, defaultp > f32mat2x3
Single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:703
+
mat< 4, 4, uint, lowp > lowp_umat4x4
Low-qualifier unsigned integer 4x4 matrix.
Definition: fwd.hpp:1009
+
mat< 3, 2, f32, highp > highp_f32mat3x2
High single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:695
+
int16 highp_i16
High qualifier 16 bit signed integer type.
Definition: fwd.hpp:47
+
vec< 1, i16, highp > highp_i16vec1
High qualifier 16 bit signed integer scalar type.
Definition: fwd.hpp:254
+
uint16 mediump_u16
Medium qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:106
+
mat< 4, 3, f64, highp > highp_f64mat4x3
High double-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:779
+
mat< 4, 3, f32, defaultp > fmat4x3
Single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:669
+
mat< 4, 2, f32, lowp > lowp_fmat4x2
Low single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:638
+
mat< 2, 4, f32, lowp > lowp_fmat2x4
Low single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:634
+
vec< 2, i16, mediump > mediump_i16vec2
Medium qualifier 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:250
+
mat< 3, 2, int64, defaultp > i64mat3x2
64 bit signed integer 3x2 matrix.
+
detail::uint32 uint32
32 bit unsigned integer type.
+
vec< 2, f64, highp > highp_f64vec2
High double-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:499
+
uint32 mediump_uint32
Medium qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:125
+
vec< 4, i32, mediump > mediump_i32vec4
Medium qualifier 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:272
+
vec< 1, float, lowp > lowp_fvec1
Low single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:428
+
vec< 4, u64, highp > highp_u64vec4
High qualifier 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:399
+
vec< 3, double, lowp > lowp_dvec3
3 components vector of low double-qualifier floating-point numbers.
+
mat< 2, 2, uint32, defaultp > u32mat2x2
32 bit unsigned integer 2x2 matrix.
+
uint64 highp_uint64
High qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:140
+
vec< 3, i16, lowp > lowp_i16vec3
Low qualifier 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:246
+
vec< 1, float, mediump > mediump_fvec1
Medium single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:433
+
mat< 3, 3, int32, defaultp > i32mat3x3
32 bit signed integer 3x3 matrix.
+
int8 mediump_int8
Medium qualifier 8 bit signed integer type.
Definition: fwd.hpp:37
+
mat< 3, 3, f32, mediump > mediump_fmat3x3
Medium single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:646
+
vec< 1, u32, mediump > mediump_u32vec1
Medium qualifier 32 bit unsigned integer scalar type.
Definition: fwd.hpp:371
+
mat< 3, 3, double, lowp > lowp_dmat3x3
3 columns of 3 components matrix of double-precision floating-point numbers using low precision arith...
+
vec< 4, int, defaultp > ivec4
4 components vector of signed integer numbers.
Definition: vector_int4.hpp:15
+
vec< 3, f64, defaultp > f64vec3
Double-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:505
+
vec< 2, unsigned int, defaultp > uvec2
2 components vector of unsigned integer numbers.
+
int64 lowp_i64
Low qualifier 64 bit signed integer type.
Definition: fwd.hpp:73
+
vec< 1, int, highp > highp_ivec1
High qualifier signed integer vector of 1 component type.
Definition: fwd.hpp:214
+
mat< 4, 2, f64, lowp > lowp_f64mat4x2
Low double-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:758
+
vec< 4, float, highp > highp_vec4
4 components vector of high single-qualifier floating-point numbers.
+
mat< 2, 2, double, highp > highp_dmat2x2
2 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
int32 highp_int32
High qualifier 32 bit signed integer type.
Definition: fwd.hpp:66
+
mat< 3, 3, f32, mediump > mediump_f32mat3
Medium single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:547
+
mat< 3, 2, int16, defaultp > i16mat3x2
16 bit signed integer 3x2 matrix.
+
mat< 3, 3, f32, defaultp > f32mat3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:555
+
float highp_f32
High 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:151
+
int8 mediump_int8_t
Medium qualifier 8 bit signed integer type.
Definition: fwd.hpp:41
+
mat< 3, 4, uint, mediump > mediump_umat3x4
Medium-qualifier unsigned integer 3x4 matrix.
Definition: fwd.hpp:1016
+
mat< 4, 3, int, highp > highp_imat4x3
High-qualifier signed integer 4x3 matrix.
Definition: fwd.hpp:821
+
int16 highp_int16_t
High qualifier 16 bit signed integer type.
Definition: fwd.hpp:56
+
int64 lowp_int64_t
Low qualifier 64 bit signed integer type.
Definition: fwd.hpp:82
+
vec< 2, uint16, defaultp > u16vec2
16 bit unsigned integer vector of 2 components type.
+
vec< 4, f32, highp > highp_f32vec4
High single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:461
+
vec< 2, int64, defaultp > i64vec2
64 bit signed integer vector of 2 components type.
+
vec< 4, uint8, defaultp > u8vec4
8 bit unsigned integer vector of 4 components type.
+
mat< 2, 4, float, defaultp > mat2x4
2 columns of 4 components matrix of single-precision floating-point numbers.
+
mat< 2, 2, f64, defaultp > f64mat2
Double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:586
+
vec< 2, i32, mediump > mediump_i32vec2
Medium qualifier 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:270
+
int32 mediump_int32
Medium qualifier 32 bit signed integer type.
Definition: fwd.hpp:65
+
uint32 u32
Default qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:122
+
double float64
Double-qualifier floating-point scalar.
Definition: fwd.hpp:173
+
mat< 2, 2, f64, highp > highp_f64mat2x2
High double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:772
+
vec< 2, u32, mediump > mediump_u32vec2
Medium qualifier 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:372
+
mat< 3, 4, f64, lowp > lowp_f64mat3x4
Low double-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:757
+
mat< 4, 4, int, defaultp > imat4x4
Signed integer 4x4 matrix.
+
mat< 2, 2, int, defaultp > imat2x2
Signed integer 2x2 matrix.
+
mat< 2, 3, float, defaultp > mat2x3
2 columns of 3 components matrix of single-precision floating-point numbers.
+
vec< 3, int8, defaultp > i8vec3
8 bit signed integer vector of 3 components type.
+
uint16 lowp_uint16
Low qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:110
+
vec< 4, float, lowp > lowp_fvec4
Low single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:431
+
mat< 4, 3, int, defaultp > imat4x3
Signed integer 4x3 matrix.
+
mat< 4, 4, f32, lowp > lowp_fmat4
Low single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:528
+
mat< 3, 4, f32, highp > highp_f32mat3x4
High single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:697
+
double highp_float64
High 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:172
+
mat< 4, 4, int, lowp > lowp_imat4x4
Low-qualifier signed integer 4x4 matrix.
Definition: fwd.hpp:802
+
uint32 highp_uint32_t
High qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:130
+
mat< 4, 4, uint16, defaultp > u16mat4x4
16 bit unsigned integer 4x4 matrix.
+
float mediump_f32
Medium 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:150
+
vec< 3, i8, highp > highp_i8vec3
High qualifier 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:236
+
vec< 2, int32, defaultp > i32vec2
32 bit signed integer vector of 2 components type.
+
mat< 2, 4, f32, defaultp > fmat2x4
Single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:664
+
mat< 2, 2, f32, highp > highp_fmat2x2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:652
+
mat< 3, 3, f64, highp > highp_f64mat3x3
High double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:776
+
vec< 4, int, highp > highp_ivec4
High qualifier signed integer vector of 4 components type.
Definition: fwd.hpp:217
+
mat< 2, 4, uint8, defaultp > u8mat2x4
8 bit unsigned integer 2x4 matrix.
+
float f32
Default 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:152
+
int8 lowp_i8
Low qualifier 8 bit signed integer type.
Definition: fwd.hpp:31
+
vec< 4, double, mediump > mediump_dvec4
4 components vector of medium double-qualifier floating-point numbers.
+
mat< 3, 4, double, highp > highp_dmat3x4
3 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 3, 2, uint, defaultp > umat3x2
Unsigned integer 3x2 matrix.
+
uint16 uint16_t
Default qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:117
+
mat< 3, 4, int8, defaultp > i8mat3x4
8 bit signed integer 3x4 matrix.
+
uint8 u8
Default qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:94
+
qua< f64, defaultp > f64quat
Double-qualifier floating-point quaternion.
Definition: fwd.hpp:1230
+
mat< 3, 3, f32, mediump > mediump_f32mat3x3
Medium single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:686
+
mat< 3, 3, uint, mediump > mediump_umat3x3
Medium-qualifier unsigned integer 3x3 matrix.
Definition: fwd.hpp:1015
+
vec< 1, f32, highp > highp_f32vec1
High single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:458
+
mat< 2, 4, uint, lowp > lowp_umat2x4
Low-qualifier unsigned integer 2x4 matrix.
Definition: fwd.hpp:1003
+
mat< 4, 2, uint, mediump > mediump_umat4x2
Medium-qualifier unsigned integer 4x2 matrix.
Definition: fwd.hpp:1017
+
mat< 4, 3, double, highp > highp_dmat4x3
4 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
int64 lowp_int64
Low qualifier 64 bit signed integer type.
Definition: fwd.hpp:78
+
mat< 4, 2, f32, mediump > mediump_f32mat4x2
Medium single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:688
+
mat< 3, 4, uint8, defaultp > u8mat3x4
8 bit unsigned integer 3x4 matrix.
+
mat< 2, 4, double, mediump > mediump_dmat2x4
2 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 2, 3, f32, defaultp > fmat2x3
Single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:663
+
mat< 3, 3, float, mediump > mediump_mat3
3 columns of 3 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 4, 2, int, mediump > mediump_imat4x2
Medium-qualifier signed integer 4x2 matrix.
Definition: fwd.hpp:810
+
mat< 3, 3, double, mediump > mediump_dmat3
3 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, float, defaultp > mat4
4 columns of 4 components matrix of single-precision floating-point numbers.
+
mat< 4, 3, f32, defaultp > f32mat4x3
Single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:709
+
mat< 4, 4, f32, mediump > mediump_f32mat4
Medium single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:548
+
mat< 2, 2, f32, mediump > mediump_f32mat2x2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:682
+
vec< 4, double, highp > highp_dvec4
4 components vector of high double-qualifier floating-point numbers.
+
vec< 3, u32, mediump > mediump_u32vec3
Medium qualifier 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:373
+
vec< 1, double, lowp > lowp_dvec1
1 component vector of double-precision floating-point numbers using low precision arithmetic in term ...
+
mat< 2, 2, f32, highp > highp_f32mat2x2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:692
+
int16 lowp_i16
Low qualifier 16 bit signed integer type.
Definition: fwd.hpp:45
+
vec< 2, u8, highp > highp_u8vec2
High qualifier 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:337
+
int32 lowp_i32
Low qualifier 32 bit signed integer type.
Definition: fwd.hpp:59
+
mat< 4, 4, f32, mediump > mediump_f32mat4x4
Medium single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:690
+
int32 mediump_i32
Medium qualifier 32 bit signed integer type.
Definition: fwd.hpp:60
+
vec< 1, uint8, defaultp > u8vec1
8 bit unsigned integer vector of 1 component type.
+
int8 lowp_int8
Low qualifier 8 bit signed integer type.
Definition: fwd.hpp:36
+
uint64 mediump_uint64
Medium qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:139
+
detail::int16 int16
16 bit signed integer type.
+
mat< 3, 4, uint, defaultp > umat3x4
Signed integer 3x4 matrix.
+
vec< 1, int16, defaultp > i16vec1
16 bit signed integer vector of 1 component type.
+
mat< 4, 2, int16, defaultp > i16mat4x2
16 bit signed integer 4x2 matrix.
+
mat< 2, 4, uint, defaultp > umat2x4
Unsigned integer 2x4 matrix.
+
mat< 3, 2, f32, defaultp > f32mat3x2
Single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:705
+
vec< 1, bool, defaultp > bvec1
1 components vector of boolean.
+
mat< 3, 4, int, defaultp > imat3x4
Signed integer 3x4 matrix.
+
mat< 3, 3, double, defaultp > dmat3x3
3 columns of 3 components matrix of double-precision floating-point numbers.
+
mat< 2, 2, f32, lowp > lowp_f32mat2
Low single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:542
+
vec< 4, f64, lowp > lowp_f64vec4
Low double-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:491
+
vec< 1, u16, lowp > lowp_u16vec1
Low qualifier 16 bit unsigned integer scalar type.
Definition: fwd.hpp:346
+
vec< 4, u16, mediump > mediump_u16vec4
Medium qualifier 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:354
+
mat< 4, 4, uint, mediump > mediump_umat4x4
Medium-qualifier unsigned integer 4x4 matrix.
Definition: fwd.hpp:1019
+
mat< 3, 4, float, highp > highp_mat3x4
3 columns of 4 components matrix of single-precision floating-point numbers using high precision arit...
+
vec< 2, i8, highp > highp_i8vec2
High qualifier 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:235
+
mat< 3, 4, uint16, defaultp > u16mat3x4
16 bit unsigned integer 3x4 matrix.
+
detail::uint64 uint64
64 bit unsigned integer type.
+
int8 mediump_i8
Medium qualifier 8 bit signed integer type.
Definition: fwd.hpp:32
+
vec< 4, f64, mediump > mediump_f64vec4
Medium double-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:496
+
mat< 2, 4, uint16, defaultp > u16mat2x4
16 bit unsigned integer 2x4 matrix.
+
int16 i16
16 bit signed integer type.
Definition: fwd.hpp:48
+
uint8 lowp_u8
Low qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:91
+
vec< 1, u16, highp > highp_u16vec1
High qualifier 16 bit unsigned integer scalar type.
Definition: fwd.hpp:356
+
mat< 3, 3, f64, defaultp > f64mat3x3
Double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:786
+
vec< 4, i8, lowp > lowp_i8vec4
Low qualifier 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:227
+
mat< 3, 4, f64, mediump > mediump_f64mat3x4
Medium double-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:767
+
mat< 4, 4, uint, highp > highp_umat4x4
High-qualifier unsigned integer 4x4 matrix.
Definition: fwd.hpp:1029
+
mat< 4, 3, uint8, defaultp > u8mat4x3
8 bit unsigned integer 4x3 matrix.
+
mat< 2, 3, f32, lowp > lowp_fmat2x3
Low single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:633
+
mat< 3, 4, int, mediump > mediump_imat3x4
Medium-qualifier signed integer 3x4 matrix.
Definition: fwd.hpp:809
+
vec< 1, f64, lowp > lowp_f64vec1
Low double-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:488
+
uint16 highp_uint16
High qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:112
+
vec< 2, bool, lowp > lowp_bvec2
2 components vector of low qualifier bool numbers.
+
mat< 4, 2, double, lowp > lowp_dmat4x2
4 columns of 2 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 3, 3, double, mediump > mediump_dmat3x3
3 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
uint32 lowp_uint32_t
Low qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:128
+
vec< 2, bool, highp > highp_bvec2
2 components vector of high qualifier bool numbers.
+
vec< 4, int, mediump > mediump_ivec4
Medium qualifier signed integer vector of 4 components type.
Definition: fwd.hpp:212
+
mat< 2, 2, uint16, defaultp > u16mat2x2
16 bit unsigned integer 2x2 matrix.
+
vec< 4, int32, defaultp > i32vec4
32 bit signed integer vector of 4 components type.
+
mat< 2, 2, int32, defaultp > i32mat2x2
32 bit signed integer 2x2 matrix.
+
mat< 4, 2, f64, defaultp > f64mat4x2
Double-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:788
+
vec< 2, float, lowp > lowp_vec2
2 components vector of low single-qualifier floating-point numbers.
+
int16 int16_t
16 bit signed integer type.
Definition: fwd.hpp:57
+
mat< 3, 3, f32, defaultp > f32mat3x3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:706
+
mat< 3, 3, float, mediump > mediump_mat3x3
3 columns of 3 components matrix of single-precision floating-point numbers using medium precision ar...
+
vec< 2, int8, defaultp > i8vec2
8 bit signed integer vector of 2 components type.
+
mat< 3, 3, double, lowp > lowp_dmat3
3 columns of 3 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 3, 2, uint, lowp > lowp_umat3x2
Low-qualifier unsigned integer 3x2 matrix.
Definition: fwd.hpp:1004
+
vec< 2, float, defaultp > vec2
2 components vector of single-precision floating-point numbers.
+
mat< 2, 2, int, highp > highp_imat2x2
High-qualifier signed integer 2x2 matrix.
Definition: fwd.hpp:814
+
mat< 4, 3, double, lowp > lowp_dmat4x3
4 columns of 3 components matrix of double-precision floating-point numbers using low precision arith...
+
vec< 2, f32, highp > highp_f32vec2
High single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:459
+
mat< 3, 2, int8, defaultp > i8mat3x2
8 bit signed integer 3x2 matrix.
+
vec< 2, f32, lowp > lowp_f32vec2
Low single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:449
+
mat< 4, 4, f32, defaultp > f32mat4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:556
+
mat< 4, 3, f64, defaultp > f64mat4x3
Double-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:789
+
vec< 3, i64, lowp > lowp_i64vec3
Low qualifier 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:286
+
vec< 2, f32, defaultp > f32vec2
Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:464
+
mat< 2, 2, double, lowp > lowp_dmat2
2 columns of 2 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 2, 3, double, lowp > lowp_dmat2x3
2 columns of 3 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 4, 4, f64, defaultp > f64mat4
Double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:588
+
vec< 2, i64, mediump > mediump_i64vec2
Medium qualifier 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:290
+
mat< 3, 4, int64, defaultp > i64mat3x4
64 bit signed integer 3x4 matrix.
+
mat< 2, 4, f64, defaultp > f64mat2x4
Double-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:784
+
vec< 4, bool, mediump > mediump_bvec4
4 components vector of medium qualifier bool numbers.
+
double mediump_float64
Medium 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:171
+
double lowp_float64_t
Low 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:175
+
mat< 3, 2, double, highp > highp_dmat3x2
3 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
double float64_t
Default 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:178
+
mat< 2, 4, f32, highp > highp_f32mat2x4
High single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:694
+
mat< 4, 4, f32, highp > highp_f32mat4
High single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:552
+
vec< 4, unsigned int, defaultp > uvec4
4 components vector of unsigned integer numbers.
+
vec< 3, int, highp > highp_ivec3
High qualifier signed integer vector of 3 components type.
Definition: fwd.hpp:216
+
qua< double, highp > highp_dquat
Quaternion of high double-qualifier floating-point numbers using high precision arithmetic in term of...
+
vec< 4, uint32, defaultp > u32vec4
32 bit unsigned integer vector of 4 components type.
+
vec< 2, int, defaultp > ivec2
2 components vector of signed integer numbers.
Definition: vector_int2.hpp:15
+
vec< 1, u64, highp > highp_u64vec1
High qualifier 64 bit unsigned integer scalar type.
Definition: fwd.hpp:396
+
uint64 mediump_uint64_t
Medium qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:143
+
mat< 4, 4, int64, defaultp > i64mat4x4
64 bit signed integer 4x4 matrix.
+
vec< 3, u32, lowp > lowp_u32vec3
Low qualifier 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:368
+
int16 highp_int16
High qualifier 16 bit signed integer type.
Definition: fwd.hpp:52
+
mat< 2, 4, float, highp > highp_mat2x4
2 columns of 4 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 3, 2, f32, lowp > lowp_fmat3x2
Low single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:635
+
mat< 3, 3, f32, lowp > lowp_f32mat3x3
Low single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:676
+
mat< 4, 4, f32, highp > highp_fmat4
High single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:536
+
mat< 4, 2, int64, defaultp > i64mat4x2
64 bit signed integer 4x2 matrix.
+
mat< 4, 2, uint16, defaultp > u16mat4x2
16 bit unsigned integer 4x2 matrix.
+
mat< 2, 3, double, highp > highp_dmat2x3
2 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 2, uint, lowp > lowp_umat4x2
Low-qualifier unsigned integer 4x2 matrix.
Definition: fwd.hpp:1007
+
mat< 2, 3, f64, mediump > mediump_f64mat2x3
Medium double-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:763
+
vec< 1, int8, defaultp > i8vec1
8 bit signed integer vector of 1 component type.
+
mat< 4, 4, f64, highp > highp_f64mat4
High double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:584
+
vec< 1, i8, lowp > lowp_i8vec1
Low qualifier 8 bit signed integer vector of 1 component type.
Definition: fwd.hpp:224
+
vec< 3, i32, highp > highp_i32vec3
High qualifier 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:276
+
mat< 2, 2, f32, highp > highp_fmat2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:534
+
mat< 2, 2, f64, mediump > mediump_f64mat2
Medium double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:578
+
mat< 3, 2, f64, mediump > mediump_f64mat3x2
Medium double-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:765
+
int8 highp_int8
High qualifier 8 bit signed integer type.
Definition: fwd.hpp:38
+
mat< 4, 2, int8, defaultp > i8mat4x2
8 bit signed integer 4x2 matrix.
+
vec< 4, int, lowp > lowp_ivec4
Low qualifier signed integer vector of 4 components type.
Definition: fwd.hpp:207
+
vec< 3, uint16, defaultp > u16vec3
16 bit unsigned integer vector of 3 components type.
+
double mediump_float64_t
Medium 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:176
+
mat< 3, 3, f32, highp > highp_fmat3
High single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:535
+
vec< 3, f32, defaultp > fvec3
Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:445
+
mat< 2, 3, uint16, defaultp > u16mat2x3
16 bit unsigned integer 2x3 matrix.
+
vec< 1, uint, mediump > mediump_uvec1
Medium qualifier unsigned integer vector of 1 component type.
Definition: fwd.hpp:311
+
vec< 1, u64, lowp > lowp_u64vec1
Low qualifier 64 bit unsigned integer scalar type.
Definition: fwd.hpp:386
+
mat< 4, 4, uint32, defaultp > u32mat4x4
32 bit unsigned integer 4x4 matrix.
+
mat< 4, 2, f32, highp > highp_f32mat4x2
High single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:698
+
mat< 2, 4, double, lowp > lowp_dmat2x4
2 columns of 4 components matrix of double-precision floating-point numbers using low precision arith...
+
vec< 4, int16, defaultp > i16vec4
16 bit signed integer vector of 4 components type.
+
int16 lowp_int16_t
Low qualifier 16 bit signed integer type.
Definition: fwd.hpp:54
+
vec< 1, f64, defaultp > f64vec1
Double-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:503
+
vec< 3, float, mediump > mediump_vec3
3 components vector of medium single-qualifier floating-point numbers.
+
qua< float, lowp > lowp_quat
Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs...
+
vec< 1, i16, mediump > mediump_i16vec1
Medium qualifier 16 bit signed integer scalar type.
Definition: fwd.hpp:249
+
mat< 3, 4, uint, lowp > lowp_umat3x4
Low-qualifier unsigned integer 3x4 matrix.
Definition: fwd.hpp:1006
+
mat< 3, 2, f32, defaultp > fmat3x2
Single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:665
+
vec< 1, float, defaultp > vec1
1 components vector of single-precision floating-point numbers.
+
mat< 4, 4, float, lowp > lowp_mat4x4
4 columns of 4 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 4, 3, f32, mediump > mediump_f32mat4x3
Medium single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:689
+
mat< 3, 3, uint64, defaultp > u64mat3x3
64 bit unsigned integer 3x3 matrix.
+
qua< f32, lowp > lowp_f32quat
Low single-qualifier floating-point quaternion.
Definition: fwd.hpp:1217
+
mat< 4, 3, float, highp > highp_mat4x3
4 columns of 3 components matrix of single-precision floating-point numbers using high precision arit...
+
vec< 3, int32, defaultp > i32vec3
32 bit signed integer vector of 3 components type.
+
detail::uint8 uint8
8 bit unsigned integer type.
+
qua< f32, highp > highp_f32quat
High single-qualifier floating-point quaternion.
Definition: fwd.hpp:1219
+
mat< 2, 4, f32, highp > highp_fmat2x4
High single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:654
+
mat< 2, 2, f32, mediump > mediump_fmat2x2
Medium single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:642
+
mat< 3, 3, double, highp > highp_dmat3x3
3 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
vec< 3, f32, mediump > mediump_f32vec3
Medium single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:455
+
int64 highp_i64
High qualifier 64 bit signed integer type.
Definition: fwd.hpp:75
+
mat< 3, 2, f64, defaultp > f64mat3x2
Double-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:785
+
mat< 2, 3, uint, defaultp > umat2x3
Unsigned integer 2x3 matrix.
+
mat< 4, 2, float, mediump > mediump_mat4x2
4 columns of 2 components matrix of single-precision floating-point numbers using medium precision ar...
+
int64 highp_int64_t
High qualifier 64 bit signed integer type.
Definition: fwd.hpp:84
+
float float32_t
Default 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:162
+
vec< 4, double, lowp > lowp_dvec4
4 components vector of low double-qualifier floating-point numbers.
+
mat< 3, 3, f32, defaultp > fmat3x3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:666
+
int32 int32_t
32 bit signed integer type.
Definition: fwd.hpp:71
+
mat< 4, 2, uint64, defaultp > u64mat4x2
64 bit unsigned integer 4x2 matrix.
+
mat< 2, 4, float, mediump > mediump_mat2x4
2 columns of 4 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, float, mediump > mediump_mat4
4 columns of 4 components matrix of single-precision floating-point numbers using medium precision ar...
+
uint8 lowp_uint8_t
Low qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:100
+
vec< 4, uint64, defaultp > u64vec4
64 bit unsigned integer vector of 4 components type.
+
mat< 2, 2, int, mediump > mediump_imat2x2
Medium-qualifier signed integer 2x2 matrix.
Definition: fwd.hpp:804
+
vec< 4, int64, defaultp > i64vec4
64 bit signed integer vector of 4 components type.
+
vec< 1, float, mediump > mediump_vec1
1 component vector of single-precision floating-point numbers using medium precision arithmetic in te...
+
float float32
Single-qualifier floating-point scalar.
Definition: fwd.hpp:157
+
qua< f64, highp > highp_f64quat
High double-qualifier floating-point quaternion.
Definition: fwd.hpp:1229
+
mat< 4, 3, double, defaultp > dmat4x3
4 columns of 3 components matrix of double-precision floating-point numbers.
+
mat< 2, 2, uint, highp > highp_umat2x2
High-qualifier unsigned integer 2x2 matrix.
Definition: fwd.hpp:1021
+
mat< 4, 2, float, highp > highp_mat4x2
4 columns of 2 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 4, 3, f64, mediump > mediump_f64mat4x3
Medium double-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:769
+
vec< 4, u32, highp > highp_u32vec4
High qualifier 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:379
+
int32 lowp_int32
Low qualifier 32 bit signed integer type.
Definition: fwd.hpp:64
+
vec< 4, bool, defaultp > bvec4
4 components vector of boolean.
+
mat< 3, 4, float, lowp > lowp_mat3x4
3 columns of 4 components matrix of single-precision floating-point numbers using low precision arith...
+
int64 int64_t
64 bit signed integer type.
Definition: fwd.hpp:85
+
mat< 2, 4, int, mediump > mediump_imat2x4
Medium-qualifier signed integer 2x4 matrix.
Definition: fwd.hpp:806
+
vec< 4, i64, lowp > lowp_i64vec4
Low qualifier 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:287
+
mat< 2, 4, uint, mediump > mediump_umat2x4
Medium-qualifier unsigned integer 2x4 matrix.
Definition: fwd.hpp:1013
+
vec< 4, uint16, defaultp > u16vec4
16 bit unsigned integer vector of 4 components type.
+
mat< 4, 2, uint8, defaultp > u8mat4x2
8 bit unsigned integer 4x2 matrix.
+
vec< 1, i8, mediump > mediump_i8vec1
Medium qualifier 8 bit signed integer scalar type.
Definition: fwd.hpp:229
+
vec< 2, u32, highp > highp_u32vec2
High qualifier 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:377
+
mat< 4, 4, double, mediump > mediump_dmat4x4
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
vec< 2, u16, lowp > lowp_u16vec2
Low qualifier 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:347
+
mat< 4, 4, float, highp > highp_mat4
4 columns of 4 components matrix of single-precision floating-point numbers using high precision arit...
+
vec< 2, float, lowp > lowp_fvec2
Low single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:429
+
float lowp_float32
Low 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:154
+
mat< 4, 2, uint, highp > highp_umat4x2
High-qualifier unsigned integer 4x2 matrix.
Definition: fwd.hpp:1027
+
uint8 highp_uint8_t
High qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:102
+
mat< 2, 2, f32, lowp > lowp_f32mat2x2
Low single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:672
+
vec< 1, double, highp > highp_dvec1
1 component vector of double-precision floating-point numbers using high precision arithmetic in term...
+
vec< 2, float, mediump > mediump_fvec2
Medium Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:434
+
mat< 2, 4, uint32, defaultp > u32mat2x4
32 bit unsigned integer 2x4 matrix.
+
vec< 2, float, highp > highp_fvec2
High Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:439
+
mat< 4, 4, f32, lowp > lowp_f32mat4x4
Low single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:680
+
vec< 2, u8, lowp > lowp_u8vec2
Low qualifier 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:327
+
int64 mediump_int64_t
Medium qualifier 64 bit signed integer type.
Definition: fwd.hpp:83
+
mat< 2, 2, f64, lowp > lowp_f64mat2
Low double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:574
+
vec< 4, uint, lowp > lowp_uvec4
Low qualifier unsigned integer vector of 4 components type.
Definition: fwd.hpp:309
+
mat< 2, 3, uint8, defaultp > u8mat2x3
8 bit unsigned integer 2x3 matrix.
+
vec< 3, i16, highp > highp_i16vec3
High qualifier 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:256
+
vec< 3, int, lowp > lowp_ivec3
Low qualifier signed integer vector of 3 components type.
Definition: fwd.hpp:206
+
mat< 3, 4, float, defaultp > mat3x4
3 columns of 4 components matrix of single-precision floating-point numbers.
+
int64 mediump_i64
Medium qualifier 64 bit signed integer type.
Definition: fwd.hpp:74
+
vec< 1, double, defaultp > dvec1
1 components vector of double-precision floating-point numbers.
+
vec< 4, u64, lowp > lowp_u64vec4
Low qualifier 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:389
+
mat< 2, 3, float, lowp > lowp_mat2x3
2 columns of 3 components matrix of single-precision floating-point numbers using low precision arith...
+
uint32 highp_uint32
High qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:126
+
mat< 2, 2, double, defaultp > dmat2x2
2 columns of 2 components matrix of double-precision floating-point numbers.
+
vec< 3, bool, mediump > mediump_bvec3
3 components vector of medium qualifier bool numbers.
+
uint64 lowp_uint64
Low qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:138
+
vec< 4, u16, lowp > lowp_u16vec4
Low qualifier 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:349
+
mat< 4, 3, f32, lowp > lowp_fmat4x3
Low single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:639
+
vec< 3, f32, defaultp > f32vec3
Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:465
+
mat< 4, 4, f64, mediump > mediump_f64mat4x4
Medium double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:770
+
vec< 1, u8, mediump > mediump_u8vec1
Medium qualifier 8 bit unsigned integer scalar type.
Definition: fwd.hpp:331
+
mat< 4, 4, int16, defaultp > i16mat4x4
16 bit signed integer 4x4 matrix.
+
mat< 3, 2, float, mediump > mediump_mat3x2
3 columns of 2 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 2, 3, double, defaultp > dmat2x3
2 columns of 3 components matrix of double-precision floating-point numbers.
+
double mediump_f64
Medium 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:166
+
vec< 3, bool, highp > highp_bvec3
3 components vector of high qualifier bool numbers.
+
mat< 2, 2, double, highp > highp_dmat2
2 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
int8 highp_i8
High qualifier 8 bit signed integer type.
Definition: fwd.hpp:33
+
mat< 4, 2, uint, defaultp > umat4x2
Unsigned integer 4x2 matrix.
+
uint8 highp_uint8
High qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:98
+
mat< 3, 3, f64, defaultp > f64mat3
Double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:587
+
vec< 3, i64, highp > highp_i64vec3
High qualifier 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:296
+
mat< 3, 3, uint, lowp > lowp_umat3x3
Low-qualifier unsigned integer 3x3 matrix.
Definition: fwd.hpp:1005
+
mat< 3, 2, int, lowp > lowp_imat3x2
Low-qualifier signed integer 3x2 matrix.
Definition: fwd.hpp:797
+
vec< 1, int, defaultp > ivec1
1 component vector of signed integer numbers.
Definition: vector_int1.hpp:28
+
vec< 1, float, lowp > lowp_vec1
1 component vector of single-precision floating-point numbers using low precision arithmetic in term ...
+
mat< 2, 2, float, highp > highp_mat2x2
2 columns of 2 components matrix of single-precision floating-point numbers using high precision arit...
+
uint8 mediump_uint8_t
Medium qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:101
+
mat< 4, 4, f32, defaultp > f32mat4x4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:710
+
mat< 3, 2, uint8, defaultp > u8mat3x2
8 bit signed integer 3x2 matrix.
+
mat< 2, 2, float, lowp > lowp_mat2
2 columns of 2 components matrix of single-precision floating-point numbers using low precision arith...
+
vec< 4, i8, highp > highp_i8vec4
High qualifier 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:237
+
int16 mediump_i16
Medium qualifier 16 bit signed integer type.
Definition: fwd.hpp:46
+
vec< 3, int64, defaultp > i64vec3
64 bit signed integer vector of 3 components type.
+
mat< 4, 2, float, defaultp > mat4x2
4 columns of 2 components matrix of single-precision floating-point numbers.
+
uint16 mediump_uint16_t
Medium qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:115
+
vec< 3, u8, mediump > mediump_u8vec3
Medium qualifier 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:333
+
mat< 4, 3, f32, mediump > mediump_fmat4x3
Medium single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:649
+
mat< 2, 3, uint, lowp > lowp_umat2x3
Low-qualifier unsigned integer 2x3 matrix.
Definition: fwd.hpp:1002
+
vec< 4, i8, mediump > mediump_i8vec4
Medium qualifier 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:232
+
vec< 1, int32, defaultp > i32vec1
32 bit signed integer vector of 1 component type.
+
mat< 4, 4, int8, defaultp > i8mat4x4
8 bit signed integer 4x4 matrix.
+
uint8 lowp_uint8
Low qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:96
+
float highp_float32_t
High 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:161
+
int16 mediump_int16
Medium qualifier 16 bit signed integer type.
Definition: fwd.hpp:51
+
mat< 4, 2, uint32, defaultp > u32mat4x2
32 bit unsigned integer 4x2 matrix.
+
mat< 2, 2, f32, defaultp > f32mat2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:554
+
mat< 3, 3, f64, highp > highp_f64mat3
High double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:583
+
vec< 4, float, mediump > mediump_vec4
4 components vector of medium single-qualifier floating-point numbers.
+
mat< 3, 3, f64, mediump > mediump_f64mat3
Medium double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:579
+
mat< 2, 3, int64, defaultp > i64mat2x3
64 bit signed integer 2x3 matrix.
+
vec< 1, u8, highp > highp_u8vec1
High qualifier 8 bit unsigned integer scalar type.
Definition: fwd.hpp:336
+
int64 highp_int64
High qualifier 64 bit signed integer type.
Definition: fwd.hpp:80
+
vec< 1, int, lowp > lowp_ivec1
Low qualifier signed integer vector of 1 component type.
Definition: fwd.hpp:204
+
qua< f64, lowp > lowp_f64quat
Low double-qualifier floating-point quaternion.
Definition: fwd.hpp:1227
+
mat< 4, 3, double, mediump > mediump_dmat4x3
4 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
vec< 1, bool, lowp > lowp_bvec1
1 component vector of bool values.
+
float highp_float32
High 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:156
+
mat< 4, 4, f64, lowp > lowp_f64mat4
Low double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:576
+
mat< 3, 4, f32, highp > highp_fmat3x4
High single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:657
+
mat< 2, 3, uint, highp > highp_umat2x3
High-qualifier unsigned integer 2x3 matrix.
Definition: fwd.hpp:1022
+
vec< 4, i64, highp > highp_i64vec4
High qualifier 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:297
+
mat< 4, 2, f32, mediump > mediump_fmat4x2
Medium single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:648
+
mat< 2, 2, uint, lowp > lowp_umat2x2
Low-qualifier unsigned integer 2x2 matrix.
Definition: fwd.hpp:1001
+
mat< 3, 4, f32, defaultp > f32mat3x4
Single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:707
+
mat< 3, 2, uint, mediump > mediump_umat3x2
Medium-qualifier unsigned integer 3x2 matrix.
Definition: fwd.hpp:1014
+
mat< 4, 3, f32, highp > highp_fmat4x3
High single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:659
+
mat< 4, 4, float, mediump > mediump_mat4x4
4 columns of 4 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, double, lowp > lowp_dmat4x4
4 columns of 4 components matrix of double-precision floating-point numbers using low precision arith...
+
vec< 4, u32, lowp > lowp_u32vec4
Low qualifier 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:369
+
vec< 2, f32, mediump > mediump_f32vec2
Medium single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:454
+
vec< 3, f64, highp > highp_f64vec3
High double-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:500
+
vec< 2, i32, highp > highp_i32vec2
High qualifier 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:275
+
vec< 1, f32, lowp > lowp_f32vec1
Low single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:448
+
mat< 4, 3, uint, lowp > lowp_umat4x3
Low-qualifier unsigned integer 4x3 matrix.
Definition: fwd.hpp:1008
+
mat< 2, 3, uint, mediump > mediump_umat2x3
Medium-qualifier unsigned integer 2x3 matrix.
Definition: fwd.hpp:1012
+
mat< 3, 4, uint32, defaultp > u32mat3x4
32 bit unsigned integer 3x4 matrix.
+
mat< 3, 4, int16, defaultp > i16mat3x4
16 bit signed integer 3x4 matrix.
+
vec< 3, u64, mediump > mediump_u64vec3
Medium qualifier 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:393
+
vec< 1, uint, lowp > lowp_uvec1
Low qualifier unsigned integer vector of 1 component type.
Definition: fwd.hpp:306
+
mat< 2, 4, f64, highp > highp_f64mat2x4
High double-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:774
+
mat< 2, 3, f32, highp > highp_f32mat2x3
High single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:693
+
mat< 2, 2, uint8, defaultp > u8mat2x2
8 bit unsigned integer 2x2 matrix.
+
mat< 3, 3, uint32, defaultp > u32mat3x3
32 bit unsigned integer 3x3 matrix.
+
vec< 3, u16, lowp > lowp_u16vec3
Low qualifier 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:348
+
vec< 3, double, mediump > mediump_dvec3
3 components vector of medium double-qualifier floating-point numbers.
+
vec< 1, u64, mediump > mediump_u64vec1
Medium qualifier 64 bit unsigned integer scalar type.
Definition: fwd.hpp:391
+
mat< 4, 2, int32, defaultp > i32mat4x2
32 bit signed integer 4x2 matrix.
+
vec< 2, u32, lowp > lowp_u32vec2
Low qualifier 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:367
+
uint32 uint32_t
Default qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:131
+
mat< 2, 2, f32, defaultp > fmat2x2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:662
+
mat< 3, 4, f32, defaultp > fmat3x4
Single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:667
+
vec< 4, u8, highp > highp_u8vec4
High qualifier 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:339
+
mat< 4, 2, f32, lowp > lowp_f32mat4x2
Low single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:678
+
mat< 3, 2, f32, highp > highp_fmat3x2
High single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:655
+
int32 mediump_int32_t
Medium qualifier 32 bit signed integer type.
Definition: fwd.hpp:69
+
vec< 4, f64, highp > highp_f64vec4
High double-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:501
+
mat< 4, 2, int, highp > highp_imat4x2
High-qualifier signed integer 4x2 matrix.
Definition: fwd.hpp:820
+
mat< 2, 2, int64, defaultp > i64mat2x2
64 bit signed integer 2x2 matrix.
+
mat< 2, 2, float, defaultp > mat2x2
2 columns of 2 components matrix of single-precision floating-point numbers.
+
double highp_float64_t
High 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:177
+
int64 i64
64 bit signed integer type.
Definition: fwd.hpp:76
+
vec< 4, bool, lowp > lowp_bvec4
4 components vector of low qualifier bool numbers.
+
qua< float, mediump > mediump_quat
Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs...
+
qua< f32, mediump > mediump_f32quat
Medium single-qualifier floating-point quaternion.
Definition: fwd.hpp:1218
+
vec< 4, uint, mediump > mediump_uvec4
Medium qualifier unsigned integer vector of 4 components type.
Definition: fwd.hpp:314
+
vec< 2, f64, mediump > mediump_f64vec2
Medium double-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:494
+
uint8 uint8_t
Default qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:103
+
vec< 1, u8, lowp > lowp_u8vec1
Low qualifier 8 bit unsigned integer scalar type.
Definition: fwd.hpp:326
+
vec< 1, i32, lowp > lowp_i32vec1
Low qualifier 32 bit signed integer scalar type.
Definition: fwd.hpp:264
+
mat< 4, 3, f64, lowp > lowp_f64mat4x3
Low double-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:759
+
vec< 1, float, highp > highp_fvec1
High single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:438
+
vec< 4, double, defaultp > dvec4
4 components vector of double-precision floating-point numbers.
+
mat< 4, 3, int32, defaultp > i32mat4x3
32 bit signed integer 4x3 matrix.
+
mat< 2, 2, float, highp > highp_mat2
2 columns of 2 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 4, 4, f32, defaultp > fmat4x4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:670
+
vec< 2, u64, mediump > mediump_u64vec2
Medium qualifier 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:392
+
mat< 2, 2, uint, defaultp > umat2x2
Unsigned integer 2x2 matrix.
+
uint16 mediump_uint16
Medium qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:111
+
mat< 3, 3, double, highp > highp_dmat3
3 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 2, 2, float, defaultp > mat2
2 columns of 2 components matrix of single-precision floating-point numbers.
+
vec< 4, i16, highp > highp_i16vec4
High qualifier 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:257
+
mat< 3, 3, float, lowp > lowp_mat3x3
3 columns of 3 components matrix of single-precision floating-point numbers using low precision arith...
+
float lowp_float32_t
Low 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:159
+
vec< 4, f32, lowp > lowp_f32vec4
Low single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:451
+
qua< f32, defaultp > f32quat
Single-qualifier floating-point quaternion.
Definition: fwd.hpp:1220
+
mat< 2, 2, float, mediump > mediump_mat2x2
2 columns of 2 components matrix of single-precision floating-point numbers using medium precision ar...
+
vec< 3, u8, highp > highp_u8vec3
High qualifier 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:338
+
int8 int8_t
8 bit signed integer type.
Definition: fwd.hpp:43
+
vec< 1, f32, defaultp > f32vec1
Single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:463
+
vec< 3, uint, lowp > lowp_uvec3
Low qualifier unsigned integer vector of 3 components type.
Definition: fwd.hpp:308
+
vec< 4, f64, defaultp > f64vec4
Double-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:506
+
mat< 2, 4, float, lowp > lowp_mat2x4
2 columns of 4 components matrix of single-precision floating-point numbers using low precision arith...
+
vec< 1, f32, defaultp > fvec1
Single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:443
+
mat< 4, 3, int16, defaultp > i16mat4x3
16 bit signed integer 4x3 matrix.
+
mat< 3, 2, uint64, defaultp > u64mat3x2
64 bit signed integer 3x2 matrix.
+
mat< 2, 3, int16, defaultp > i16mat2x3
16 bit signed integer 2x3 matrix.
+
mat< 4, 4, f32, mediump > mediump_fmat4x4
Medium single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:650
+
mat< 4, 4, float, lowp > lowp_mat4
4 columns of 4 components matrix of single-precision floating-point numbers using low precision arith...
+
vec< 2, uint, highp > highp_uvec2
High qualifier unsigned integer vector of 2 components type.
Definition: fwd.hpp:317
+
vec< 1, i64, mediump > mediump_i64vec1
Medium qualifier 64 bit signed integer scalar type.
Definition: fwd.hpp:289
+
uint64 highp_u64
High qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:135
+
int16 lowp_int16
Low qualifier 16 bit signed integer type.
Definition: fwd.hpp:50
+
mat< 2, 3, int, defaultp > imat2x3
Signed integer 2x3 matrix.
+
vec< 4, u32, mediump > mediump_u32vec4
Medium qualifier 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:374
+
vec< 3, float, defaultp > vec3
3 components vector of single-precision floating-point numbers.
+
vec< 3, u8, lowp > lowp_u8vec3
Low qualifier 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:328
+
vec< 2, int, lowp > lowp_ivec2
Low qualifier signed integer vector of 2 components type.
Definition: fwd.hpp:205
+
int8 highp_int8_t
High qualifier 8 bit signed integer type.
Definition: fwd.hpp:42
+
mat< 2, 4, int32, defaultp > i32mat2x4
32 bit signed integer 2x4 matrix.
+
vec< 4, i32, lowp > lowp_i32vec4
Low qualifier 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:267
+
vec< 1, f32, mediump > mediump_f32vec1
Medium single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:453
+
mat< 2, 4, f32, lowp > lowp_f32mat2x4
Low single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:674
+
mat< 3, 3, f64, mediump > mediump_f64mat3x3
Medium double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:766
+
mat< 2, 2, f32, defaultp > fmat2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:538
+
vec< 2, uint, mediump > mediump_uvec2
Medium qualifier unsigned integer vector of 2 components type.
Definition: fwd.hpp:312
+
vec< 4, f32, defaultp > f32vec4
Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:466
+
mat< 2, 3, f64, highp > highp_f64mat2x3
High double-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:773
+
mat< 4, 2, f64, mediump > mediump_f64mat4x2
Medium double-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:768
+
mat< 4, 2, int, defaultp > imat4x2
Signed integer 4x2 matrix.
+
vec< 1, i16, lowp > lowp_i16vec1
Low qualifier 16 bit signed integer scalar type.
Definition: fwd.hpp:244
+
vec< 3, u16, mediump > mediump_u16vec3
Medium qualifier 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:353
+
uint64 lowp_u64
Low qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:133
+
mat< 2, 2, double, defaultp > dmat2
2 columns of 2 components matrix of double-precision floating-point numbers.
+
uint64 mediump_u64
Medium qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:134
+
mat< 2, 4, int64, defaultp > i64mat2x4
64 bit signed integer 2x4 matrix.
+
mat< 3, 3, uint8, defaultp > u8mat3x3
8 bit unsigned integer 3x3 matrix.
+
vec< 2, u64, lowp > lowp_u64vec2
Low qualifier 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:387
+
mat< 3, 3, float, highp > highp_mat3
3 columns of 3 components matrix of single-precision floating-point numbers using high precision arit...
+
vec< 3, u64, highp > highp_u64vec3
High qualifier 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:398
+
vec< 2, i32, lowp > lowp_i32vec2
Low qualifier 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:265
+
vec< 2, double, lowp > lowp_dvec2
2 components vector of low double-qualifier floating-point numbers.
+
mat< 2, 3, int8, defaultp > i8mat2x3
8 bit signed integer 2x3 matrix.
+
mat< 4, 4, f64, lowp > lowp_f64mat4x4
Low double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:760
+
vec< 2, i64, highp > highp_i64vec2
High qualifier 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:295
+
int8 lowp_int8_t
Low qualifier 8 bit signed integer type.
Definition: fwd.hpp:40
+
detail::int8 int8
8 bit signed integer type.
+
mat< 4, 3, int64, defaultp > i64mat4x3
64 bit signed integer 4x3 matrix.
+
mat< 4, 2, f32, defaultp > fmat4x2
Single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:668
+
mat< 3, 2, uint, highp > highp_umat3x2
High-qualifier unsigned integer 3x2 matrix.
Definition: fwd.hpp:1024
+
vec< 4, u8, lowp > lowp_u8vec4
Low qualifier 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:329
+
vec< 4, float, lowp > lowp_vec4
4 components vector of low single-qualifier floating-point numbers.
+
mat< 3, 2, f32, mediump > mediump_f32mat3x2
Medium single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:685
+
mat< 4, 2, int, lowp > lowp_imat4x2
Low-qualifier signed integer 4x2 matrix.
Definition: fwd.hpp:800
+
mat< 2, 4, f32, mediump > mediump_f32mat2x4
Medium single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:684
+
mat< 4, 2, float, lowp > lowp_mat4x2
4 columns of 2 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 4, 4, uint64, defaultp > u64mat4x4
64 bit unsigned integer 4x4 matrix.
+
mat< 3, 4, f32, lowp > lowp_f32mat3x4
Low single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:677
+
vec< 3, float, highp > highp_fvec3
High Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:440
+
vec< 3, bool, lowp > lowp_bvec3
3 components vector of low qualifier bool numbers.
+
uint8 mediump_u8
Medium qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:92
+
double highp_f64
High 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:167
+
mat< 3, 3, f32, lowp > lowp_fmat3x3
Low single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:636
+
vec< 4, u16, highp > highp_u16vec4
High qualifier 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:359
+
vec< 2, bool, defaultp > bvec2
2 components vector of boolean.
+
vec< 4, float, defaultp > vec4
4 components vector of single-precision floating-point numbers.
+
vec< 3, uint, mediump > mediump_uvec3
Medium qualifier unsigned integer vector of 3 components type.
Definition: fwd.hpp:313
+
vec< 2, f64, lowp > lowp_f64vec2
Low double-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:489
+
mat< 3, 2, f64, lowp > lowp_f64mat3x2
Low double-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:755
+
vec< 3, uint, highp > highp_uvec3
High qualifier unsigned integer vector of 3 components type.
Definition: fwd.hpp:318
+
mat< 3, 3, uint16, defaultp > u16mat3x3
16 bit unsigned integer 3x3 matrix.
+
uint16 highp_u16
High qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:107
+
mat< 4, 4, int, highp > highp_imat4x4
High-qualifier signed integer 4x4 matrix.
Definition: fwd.hpp:822
+
vec< 2, uint, lowp > lowp_uvec2
Low qualifier unsigned integer vector of 2 components type.
Definition: fwd.hpp:307
+
vec< 4, uint, highp > highp_uvec4
High qualifier unsigned integer vector of 4 components type.
Definition: fwd.hpp:319
+
mat< 3, 3, float, defaultp > mat3x3
3 columns of 3 components matrix of single-precision floating-point numbers.
+
mat< 2, 3, float, highp > highp_mat2x3
2 columns of 3 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 2, 2, double, mediump > mediump_dmat2
2 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
vec< 2, double, defaultp > dvec2
2 components vector of double-precision floating-point numbers.
+
mat< 4, 4, double, mediump > mediump_dmat4
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
vec< 3, u64, lowp > lowp_u64vec3
Low qualifier 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:388
+
mat< 4, 3, f32, highp > highp_f32mat4x3
High single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:699
+
vec< 1, i64, highp > highp_i64vec1
High qualifier 64 bit signed integer scalar type.
Definition: fwd.hpp:294
+
mat< 4, 3, uint32, defaultp > u32mat4x3
32 bit unsigned integer 4x3 matrix.
+
mat< 2, 3, f32, mediump > mediump_fmat2x3
Medium single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:643
+
int32 i32
32 bit signed integer type.
Definition: fwd.hpp:62
+
mat< 4, 4, float, defaultp > mat4x4
4 columns of 4 components matrix of single-precision floating-point numbers.
+
mat< 3, 2, f32, mediump > mediump_fmat3x2
Medium single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:645
+
vec< 3, i16, mediump > mediump_i16vec3
Medium qualifier 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:251
+
mat< 3, 2, float, highp > highp_mat3x2
3 columns of 2 components matrix of single-precision floating-point numbers using high precision arit...
+
vec< 1, u32, highp > highp_u32vec1
High qualifier 32 bit unsigned integer scalar type.
Definition: fwd.hpp:376
+
mat< 3, 4, double, lowp > lowp_dmat3x4
3 columns of 4 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 2, 2, float, mediump > mediump_mat2
2 columns of 2 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 3, 2, double, lowp > lowp_dmat3x2
3 columns of 2 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 2, 3, int, lowp > lowp_imat2x3
Low-qualifier signed integer 2x3 matrix.
Definition: fwd.hpp:795
+
mat< 3, 3, int64, defaultp > i64mat3x3
64 bit signed integer 3x3 matrix.
+
vec< 2, uint32, defaultp > u32vec2
32 bit unsigned integer vector of 2 components type.
+
vec< 1, bool, highp > highp_bvec1
1 component vector of bool values.
+
mat< 2, 3, int32, defaultp > i32mat2x3
32 bit signed integer 2x3 matrix.
+
vec< 1, uint16, defaultp > u16vec1
16 bit unsigned integer vector of 1 component type.
+
mat< 3, 3, int, lowp > lowp_imat3x3
Low-qualifier signed integer 3x3 matrix.
Definition: fwd.hpp:798
+
mat< 4, 3, uint16, defaultp > u16mat4x3
16 bit unsigned integer 4x3 matrix.
+
vec< 2, i8, lowp > lowp_i8vec2
Low qualifier 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:225
+
mat< 4, 4, f32, lowp > lowp_f32mat4
Low single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:544
+
mat< 2, 4, f64, mediump > mediump_f64mat2x4
Medium double-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:764
+
mat< 4, 3, int8, defaultp > i8mat4x3
8 bit signed integer 4x3 matrix.
+
mat< 4, 4, double, defaultp > dmat4
4 columns of 4 components matrix of double-precision floating-point numbers.
+
int8 i8
8 bit signed integer type.
Definition: fwd.hpp:34
+
uint8 mediump_uint8
Medium qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:97
+
mat< 3, 2, f32, lowp > lowp_f32mat3x2
Low single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:675
+
mat< 4, 4, f32, highp > highp_f32mat4x4
High single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:700
+
mat< 2, 2, f32, mediump > mediump_f32mat2
Medium single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:546
+
mat< 3, 4, f64, highp > highp_f64mat3x4
High double-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:777
+
float mediump_float32
Medium 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:155
+
mat< 3, 3, uint, highp > highp_umat3x3
High-qualifier unsigned integer 3x3 matrix.
Definition: fwd.hpp:1025
+
mat< 4, 4, f32, mediump > mediump_fmat4
Medium single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:532
+
mat< 2, 2, f32, defaultp > f32mat2x2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:702
+
mat< 3, 2, uint16, defaultp > u16mat3x2
16 bit signed integer 3x2 matrix.
+
vec< 1, i8, highp > highp_i8vec1
High qualifier 8 bit signed integer scalar type.
Definition: fwd.hpp:234
+
mat< 2, 4, uint64, defaultp > u64mat2x4
64 bit unsigned integer 2x4 matrix.
+
mat< 3, 2, int, mediump > mediump_imat3x2
Medium-qualifier signed integer 3x2 matrix.
Definition: fwd.hpp:807
+
mat< 4, 4, uint, defaultp > umat4x4
Unsigned integer 4x4 matrix.
+
mat< 3, 3, int16, defaultp > i16mat3x3
16 bit signed integer 3x3 matrix.
+
mat< 2, 3, int, mediump > mediump_imat2x3
Medium-qualifier signed integer 2x3 matrix.
Definition: fwd.hpp:805
+
vec< 2, uint8, defaultp > u8vec2
8 bit unsigned integer vector of 2 components type.
+
vec< 3, uint32, defaultp > u32vec3
32 bit unsigned integer vector of 3 components type.
+
mat< 4, 2, double, highp > highp_dmat4x2
4 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
vec< 4, float, highp > highp_fvec4
High Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:441
+
mat< 3, 4, double, defaultp > dmat3x4
3 columns of 4 components matrix of double-precision floating-point numbers.
+
vec< 3, f32, lowp > lowp_f32vec3
Low single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:450
+
vec< 2, u16, highp > highp_u16vec2
High qualifier 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:357
+
vec< 3, bool, defaultp > bvec3
3 components vector of boolean.
+
mat< 2, 3, double, mediump > mediump_dmat2x3
2 columns of 3 components matrix of double-precision floating-point numbers using medium precision ar...
+
vec< 3, i8, mediump > mediump_i8vec3
Medium qualifier 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:231
+
mat< 4, 4, double, highp > highp_dmat4x4
4 columns of 4 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 2, 3, f32, lowp > lowp_f32mat2x3
Low single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:673
+
vec< 3, f64, mediump > mediump_f64vec3
Medium double-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:495
+
vec< 3, f32, highp > highp_f32vec3
High single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:460
+
uint32 lowp_u32
Low qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:119
+
mat< 4, 2, f32, highp > highp_fmat4x2
High single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:658
+
vec< 3, double, defaultp > dvec3
3 components vector of double-precision floating-point numbers.
+
uint64 highp_uint64_t
High qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:144
+
vec< 1, int64, defaultp > i64vec1
64 bit signed integer vector of 1 component type.
+
vec< 2, double, highp > highp_dvec2
2 components vector of high double-qualifier floating-point numbers.
+
mat< 3, 2, uint32, defaultp > u32mat3x2
32 bit signed integer 3x2 matrix.
+
mat< 2, 4, double, defaultp > dmat2x4
2 columns of 4 components matrix of double-precision floating-point numbers.
+
mat< 2, 4, f32, mediump > mediump_fmat2x4
Medium single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:644
+
vec< 2, u16, mediump > mediump_u16vec2
Medium qualifier 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:352
+
mat< 2, 4, int, lowp > lowp_imat2x4
Low-qualifier signed integer 2x4 matrix.
Definition: fwd.hpp:796
+
mat< 4, 3, f32, lowp > lowp_f32mat4x3
Low single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:679
+
mat< 4, 4, f32, defaultp > fmat4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:540
+
vec< 1, uint64, defaultp > u64vec1
64 bit unsigned integer vector of 1 component type.
+
mat< 2, 3, uint64, defaultp > u64mat2x3
64 bit unsigned integer 2x3 matrix.
+
vec< 3, i32, mediump > mediump_i32vec3
Medium qualifier 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:271
+
vec< 2, u8, mediump > mediump_u8vec2
Medium qualifier 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:332
+
uint32 mediump_uint32_t
Medium qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:129
+
mat< 2, 2, uint64, defaultp > u64mat2x2
64 bit unsigned integer 2x2 matrix.
+
mat< 4, 3, uint64, defaultp > u64mat4x3
64 bit unsigned integer 4x3 matrix.
+
int32 lowp_int32_t
Low qualifier 32 bit signed integer type.
Definition: fwd.hpp:68
+
uint32 mediump_u32
Medium qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:120
+
mat< 3, 3, f32, defaultp > fmat3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:539
+
mat< 3, 4, f32, mediump > mediump_fmat3x4
Medium single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:647
+
vec< 3, int, mediump > mediump_ivec3
Medium qualifier signed integer vector of 3 components type.
Definition: fwd.hpp:211
+
qua< float, highp > highp_quat
Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs...
+
mat< 2, 2, int, lowp > lowp_imat2x2
Low-qualifier signed integer 2x2 matrix.
Definition: fwd.hpp:794
+
uint16 lowp_u16
Low qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:105
+
mat< 3, 2, double, mediump > mediump_dmat3x2
3 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 3, 3, uint, defaultp > umat3x3
Unsigned integer 3x3 matrix.
+
uint32 highp_u32
High qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:121
+
mat< 3, 3, f64, lowp > lowp_f64mat3x3
Low double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:756
+
vec< 1, f64, highp > highp_f64vec1
High double-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:498
+
mat< 3, 3, f32, lowp > lowp_fmat3
Low single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:527
+
mat< 3, 3, f32, lowp > lowp_f32mat3
Low single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:543
+
vec< 2, f32, defaultp > fvec2
Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:444
+
vec< 2, bool, mediump > mediump_bvec2
2 components vector of medium qualifier bool numbers.
+
mat< 3, 3, f32, highp > highp_f32mat3
High single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:551
+
uint16 highp_uint16_t
High qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:116
+
mat< 3, 2, float, lowp > lowp_mat3x2
3 columns of 2 components matrix of single-precision floating-point numbers using low precision arith...
+
vec< 4, f32, defaultp > fvec4
Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:446
+
vec< 4, int8, defaultp > i8vec4
8 bit signed integer vector of 4 components type.
+
mat< 2, 4, f32, defaultp > f32mat2x4
Single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:704
+
mat< 2, 2, uint, mediump > mediump_umat2x2
Medium-qualifier unsigned integer 2x2 matrix.
Definition: fwd.hpp:1011
+
uint8 highp_u8
High qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:93
+
mat< 2, 2, double, lowp > lowp_dmat2x2
2 columns of 2 components matrix of double-precision floating-point numbers using low precision arith...
+
mat< 4, 4, int, mediump > mediump_imat4x4
Medium-qualifier signed integer 4x4 matrix.
Definition: fwd.hpp:812
+
qua< f64, mediump > mediump_f64quat
Medium double-qualifier floating-point quaternion.
Definition: fwd.hpp:1228
+
mat< 3, 4, f32, lowp > lowp_fmat3x4
Low single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:637
+
uint32 lowp_uint32
Low qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:124
+
mat< 3, 4, uint64, defaultp > u64mat3x4
64 bit unsigned integer 3x4 matrix.
+
vec< 4, bool, highp > highp_bvec4
4 components vector of high qualifier bool numbers.
+
vec< 2, float, highp > highp_vec2
2 components vector of high single-qualifier floating-point numbers.
+
mat< 2, 3, uint32, defaultp > u32mat2x3
32 bit unsigned integer 2x3 matrix.
+
mat< 2, 2, f32, lowp > lowp_fmat2
Low single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:526
+
mat< 3, 3, double, defaultp > dmat3
3 columns of 3 components matrix of double-precision floating-point numbers.
+
vec< 2, f64, defaultp > f64vec2
Double-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:504
+
mat< 2, 2, f64, lowp > lowp_f64mat2x2
Low double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:752
+
vec< 1, u32, lowp > lowp_u32vec1
Low qualifier 32 bit unsigned integer scalar type.
Definition: fwd.hpp:366
+
detail::int64 int64
64 bit signed integer type.
+
mat< 2, 4, int, highp > highp_imat2x4
High-qualifier signed integer 2x4 matrix.
Definition: fwd.hpp:816
+
qua< double, mediump > mediump_dquat
Quaternion of medium double-qualifier floating-point numbers using high precision arithmetic in term ...
+
mat< 3, 2, double, defaultp > dmat3x2
3 columns of 2 components matrix of double-precision floating-point numbers.
+
vec< 2, i64, lowp > lowp_i64vec2
Low qualifier 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:285
+
vec< 4, u64, mediump > mediump_u64vec4
Medium qualifier 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:394
+
detail::uint16 uint16
16 bit unsigned integer type.
+
mat< 2, 4, uint, highp > highp_umat2x4
High-qualifier unsigned integer 2x4 matrix.
Definition: fwd.hpp:1023
+
vec< 1, f64, mediump > mediump_f64vec1
Medium double-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:493
+
uint64 lowp_uint64_t
Low qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:142
+
vec< 3, i64, mediump > mediump_i64vec3
Medium qualifier 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:291
+
mat< 2, 2, f32, mediump > mediump_fmat2
Medium single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:530
+
vec< 1, i32, highp > highp_i32vec1
High qualifier 32 bit signed integer scalar type.
Definition: fwd.hpp:274
+
vec< 4, i64, mediump > mediump_i64vec4
Medium qualifier 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:292
+
mat< 3, 3, int, mediump > mediump_imat3x3
Medium-qualifier signed integer 3x3 matrix.
Definition: fwd.hpp:808
+
vec< 1, unsigned int, defaultp > uvec1
1 component vector of unsigned integer numbers.
+
int32 highp_int32_t
32 bit signed integer type.
Definition: fwd.hpp:70
+
mat< 3, 4, f32, mediump > mediump_f32mat3x4
Medium single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:687
+
vec< 1, uint32, defaultp > u32vec1
32 bit unsigned integer vector of 1 component type.
+
mat< 4, 4, double, lowp > lowp_dmat4
4 columns of 4 components matrix of double-precision floating-point numbers using low precision arith...
+
vec< 3, uint64, defaultp > u64vec3
64 bit unsigned integer vector of 3 components type.
+
mat< 4, 3, uint, highp > highp_umat4x3
High-qualifier unsigned integer 4x3 matrix.
Definition: fwd.hpp:1028
+
mat< 4, 4, f64, defaultp > f64mat4x4
Double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:790
+
float lowp_f32
Low 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:149
+
vec< 3, int16, defaultp > i16vec3
16 bit signed integer vector of 3 components type.
+
vec< 2, uint64, defaultp > u64vec2
64 bit unsigned integer vector of 2 components type.
+
mat< 3, 3, int, highp > highp_imat3x3
High-qualifier signed integer 3x3 matrix.
Definition: fwd.hpp:818
+
qua< float, defaultp > quat
Quaternion of single-precision floating-point numbers.
+
vec< 3, i32, lowp > lowp_i32vec3
Low qualifier 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:266
+
vec< 1, bool, mediump > mediump_bvec1
1 component vector of bool values.
+
mat< 2, 2, float, lowp > lowp_mat2x2
2 columns of 2 components matrix of single-precision floating-point numbers using low precision arith...
+
mat< 4, 3, float, mediump > mediump_mat4x3
4 columns of 3 components matrix of single-precision floating-point numbers using medium precision ar...
+
mat< 4, 4, f32, highp > highp_fmat4x4
High single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:660
+
vec< 2, i8, mediump > mediump_i8vec2
Medium qualifier 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:230
+
vec< 4, i32, highp > highp_i32vec4
High qualifier 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:277
+
mat< 4, 3, uint, mediump > mediump_umat4x3
Medium-qualifier unsigned integer 4x3 matrix.
Definition: fwd.hpp:1018
+
mat< 2, 2, double, mediump > mediump_dmat2x2
2 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 3, uint, defaultp > umat4x3
Unsigned integer 4x3 matrix.
+
vec< 3, int, defaultp > ivec3
3 components vector of signed integer numbers.
Definition: vector_int3.hpp:15
+
mat< 3, 3, float, highp > highp_mat3x3
3 columns of 3 components matrix of single-precision floating-point numbers using high precision arit...
+
mat< 2, 3, f64, lowp > lowp_f64mat2x3
Low double-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:753
+
vec< 3, float, lowp > lowp_vec3
3 components vector of low single-qualifier floating-point numbers.
+
mat< 4, 4, int32, defaultp > i32mat4x4
32 bit signed integer 4x4 matrix.
+
vec< 3, u32, highp > highp_u32vec3
High qualifier 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:378
+
vec< 1, uint, highp > highp_uvec1
High qualifier unsigned integer vector of 1 component type.
Definition: fwd.hpp:316
+
mat< 3, 4, f64, defaultp > f64mat3x4
Double-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:787
+
mat< 2, 4, int16, defaultp > i16mat2x4
16 bit signed integer 2x4 matrix.
+
mat< 3, 3, int8, defaultp > i8mat3x3
8 bit signed integer 3x3 matrix.
+
mat< 4, 2, double, mediump > mediump_dmat4x2
4 columns of 2 components matrix of double-precision floating-point numbers using medium precision ar...
+
mat< 4, 2, f64, highp > highp_f64mat4x2
High double-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:778
+
vec< 1, float, highp > highp_vec1
1 component vector of single-precision floating-point numbers using high precision arithmetic in term...
+
qua< double, lowp > lowp_dquat
Quaternion of double-precision floating-point numbers using high precision arithmetic in term of ULPs...
+
vec< 4, i16, mediump > mediump_i16vec4
Medium qualifier 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:252
+
vec< 3, float, mediump > mediump_fvec3
Medium Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:435
+
mat< 3, 3, f64, lowp > lowp_f64mat3
Low double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:575
+
vec< 1, i32, mediump > mediump_i32vec1
Medium qualifier 32 bit signed integer scalar type.
Definition: fwd.hpp:269
+
mat< 3, 3, int, defaultp > imat3x3
Signed integer 3x3 matrix.
+
mat< 4, 2, double, defaultp > dmat4x2
4 columns of 2 components matrix of double-precision floating-point numbers.
+
vec< 2, i16, lowp > lowp_i16vec2
Low qualifier 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:245
+
mat< 4, 4, f64, mediump > mediump_f64mat4
Medium double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:580
+
double lowp_f64
Low 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:165
+
vec< 3, i8, lowp > lowp_i8vec3
Low qualifier 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:226
+
detail::int32 int32
32 bit signed integer type.
+
uint16 u16
Default qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:108
+
mat< 4, 4, double, defaultp > dmat4x4
4 columns of 4 components matrix of double-precision floating-point numbers.
+
vec< 3, uint8, defaultp > u8vec3
8 bit unsigned integer vector of 3 components type.
+
mat< 2, 2, f64, highp > highp_f64mat2
High double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:582
+
vec< 3, float, lowp > lowp_fvec3
Low single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:430
+
uint16 lowp_uint16_t
Low qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:114
+
double f64
Default 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:168
+
mat< 3, 2, f64, highp > highp_f64mat3x2
High double-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:775
+
vec< 3, f64, lowp > lowp_f64vec3
Low double-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:490
+ + + + diff --git a/include/glm/doc/api/a00527.html b/include/glm/doc/api/a00527.html new file mode 100644 index 0000000..64d84f4 --- /dev/null +++ b/include/glm/doc/api/a00527.html @@ -0,0 +1,129 @@ + + + + + + + +1.0.2 API documentation: geometric.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
geometric.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 3, T, Q > cross (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Returns the cross product of x and y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T distance (vec< L, T, Q > const &p0, vec< L, T, Q > const &p1)
 Returns the distance between p0 and p1, i.e., length(p0 - p1). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR T dot (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the dot product of x and y, i.e., result = x * y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > faceforward (vec< L, T, Q > const &N, vec< L, T, Q > const &I, vec< L, T, Q > const &Nref)
 If dot(Nref, I) < 0.0, return N, otherwise, return -N. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T length (vec< L, T, Q > const &x)
 Returns the length of x, i.e., sqrt(x * x). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > normalize (vec< L, T, Q > const &x)
 Returns a vector in the same direction as x but with length of 1. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > reflect (vec< L, T, Q > const &I, vec< L, T, Q > const &N)
 For the incident vector I and surface orientation N, returns the reflection direction : result = I - 2.0 * dot(N, I) * N. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > refract (vec< L, T, Q > const &I, vec< L, T, Q > const &N, T eta)
 For the incident vector I and surface normal N, and the ratio of indices of refraction eta, return the refraction vector. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00527_source.html b/include/glm/doc/api/a00527_source.html new file mode 100644 index 0000000..9b372b1 --- /dev/null +++ b/include/glm/doc/api/a00527_source.html @@ -0,0 +1,133 @@ + + + + + + + +1.0.2 API documentation: geometric.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
geometric.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #include "detail/type_vec3.hpp"
+
16 
+
17 namespace glm
+
18 {
+
21 
+
29  template<length_t L, typename T, qualifier Q>
+
30  GLM_FUNC_DECL T length(vec<L, T, Q> const& x);
+
31 
+
39  template<length_t L, typename T, qualifier Q>
+
40  GLM_FUNC_DECL T distance(vec<L, T, Q> const& p0, vec<L, T, Q> const& p1);
+
41 
+
49  template<length_t L, typename T, qualifier Q>
+
50  GLM_FUNC_DECL GLM_CONSTEXPR T dot(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
51 
+
58  template<typename T, qualifier Q>
+
59  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> cross(vec<3, T, Q> const& x, vec<3, T, Q> const& y);
+
60 
+
69  template<length_t L, typename T, qualifier Q>
+
70  GLM_FUNC_DECL vec<L, T, Q> normalize(vec<L, T, Q> const& x);
+
71 
+
79  template<length_t L, typename T, qualifier Q>
+
80  GLM_FUNC_DECL vec<L, T, Q> faceforward(
+
81  vec<L, T, Q> const& N,
+
82  vec<L, T, Q> const& I,
+
83  vec<L, T, Q> const& Nref);
+
84 
+
93  template<length_t L, typename T, qualifier Q>
+
94  GLM_FUNC_DECL vec<L, T, Q> reflect(
+
95  vec<L, T, Q> const& I,
+
96  vec<L, T, Q> const& N);
+
97 
+
107  template<length_t L, typename T, qualifier Q>
+
108  GLM_FUNC_DECL vec<L, T, Q> refract(
+
109  vec<L, T, Q> const& I,
+
110  vec<L, T, Q> const& N,
+
111  T eta);
+
112 
+
114 }//namespace glm
+
115 
+
116 #include "detail/func_geometric.inl"
+
+
GLM_FUNC_DECL T length(vec< L, T, Q > const &x)
Returns the length of x, i.e., sqrt(x * x).
+
Core features
+
GLM_FUNC_DECL vec< L, T, Q > normalize(vec< L, T, Q > const &x)
Returns a vector in the same direction as x but with length of 1.
+
GLM_FUNC_DECL T distance(vec< L, T, Q > const &p0, vec< L, T, Q > const &p1)
Returns the distance between p0 and p1, i.e., length(p0 - p1).
+
GLM_FUNC_DECL vec< L, T, Q > refract(vec< L, T, Q > const &I, vec< L, T, Q > const &N, T eta)
For the incident vector I and surface normal N, and the ratio of indices of refraction eta,...
+
GLM_FUNC_DECL vec< L, T, Q > reflect(vec< L, T, Q > const &I, vec< L, T, Q > const &N)
For the incident vector I and surface orientation N, returns the reflection direction : result = I - ...
+
GLM_FUNC_DECL vec< L, T, Q > faceforward(vec< L, T, Q > const &N, vec< L, T, Q > const &I, vec< L, T, Q > const &Nref)
If dot(Nref, I) < 0.0, return N, otherwise, return -N.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< 3, T, Q > cross(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
Returns the cross product of x and y.
+
GLM_FUNC_DECL GLM_CONSTEXPR T dot(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the dot product of x and y, i.e., result = x * y.
+ + + + diff --git a/include/glm/doc/api/a00530_source.html b/include/glm/doc/api/a00530_source.html new file mode 100644 index 0000000..ae40954 --- /dev/null +++ b/include/glm/doc/api/a00530_source.html @@ -0,0 +1,136 @@ + + + + + + + +1.0.2 API documentation: glm.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
glm.hpp
+
+
+
1 
+
104 #include "detail/_fixes.hpp"
+
105 
+
106 #include "detail/setup.hpp"
+
107 
+
108 #pragma once
+
109 
+
110 #include <cmath>
+
111 #include <climits>
+
112 #include <cfloat>
+
113 #include <limits>
+
114 #include <cassert>
+
115 #include "fwd.hpp"
+
116 
+
117 #include "vec2.hpp"
+
118 #include "vec3.hpp"
+
119 #include "vec4.hpp"
+
120 #include "mat2x2.hpp"
+
121 #include "mat2x3.hpp"
+
122 #include "mat2x4.hpp"
+
123 #include "mat3x2.hpp"
+
124 #include "mat3x3.hpp"
+
125 #include "mat3x4.hpp"
+
126 #include "mat4x2.hpp"
+
127 #include "mat4x3.hpp"
+
128 #include "mat4x4.hpp"
+
129 
+
130 #include "trigonometric.hpp"
+
131 #include "exponential.hpp"
+
132 #include "common.hpp"
+
133 #include "packing.hpp"
+
134 #include "geometric.hpp"
+
135 #include "matrix.hpp"
+
136 #include "vector_relational.hpp"
+
137 #include "integer.hpp"
+
+
Core features
+
Core features
+
Core features
+
Core features
+
Core features
+
GLM_GTX_common
+
Core features
+
Core features
+
Core features
+
Core features
+
Core features
+
Core features
+ +
Core features
+
Core features
+
Core features
+
Core features
+
Core features
+
Core features
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00533.html b/include/glm/doc/api/a00533.html new file mode 100644 index 0000000..341d116 --- /dev/null +++ b/include/glm/doc/api/a00533.html @@ -0,0 +1,205 @@ + + + + + + + +1.0.2 API documentation: bitfield.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
bitfield.hpp File Reference
+
+
+ +

GLM_GTC_bitfield +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

GLM_FUNC_DECL glm::u8vec2 bitfieldDeinterleave (glm::uint16 x)
 Deinterleaves the bits of x. More...
 
GLM_FUNC_DECL glm::u16vec2 bitfieldDeinterleave (glm::uint32 x)
 Deinterleaves the bits of x. More...
 
GLM_FUNC_DECL glm::u32vec2 bitfieldDeinterleave (glm::uint64 x)
 Deinterleaves the bits of x. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType bitfieldFillOne (genIUType Value, int FirstBit, int BitCount)
 Set to 1 a range of bits. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldFillOne (vec< L, T, Q > const &Value, int FirstBit, int BitCount)
 Set to 1 a range of bits. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType bitfieldFillZero (genIUType Value, int FirstBit, int BitCount)
 Set to 0 a range of bits. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldFillZero (vec< L, T, Q > const &Value, int FirstBit, int BitCount)
 Set to 0 a range of bits. More...
 
GLM_FUNC_DECL int32 bitfieldInterleave (int16 x, int16 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL int64 bitfieldInterleave (int16 x, int16 y, int16 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL int64 bitfieldInterleave (int16 x, int16 y, int16 z, int16 w)
 Interleaves the bits of x, y, z and w. More...
 
GLM_FUNC_DECL int64 bitfieldInterleave (int32 x, int32 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL int64 bitfieldInterleave (int32 x, int32 y, int32 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL int16 bitfieldInterleave (int8 x, int8 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL int32 bitfieldInterleave (int8 x, int8 y, int8 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL int32 bitfieldInterleave (int8 x, int8 y, int8 z, int8 w)
 Interleaves the bits of x, y, z and w. More...
 
GLM_FUNC_DECL uint32 bitfieldInterleave (u16vec2 const &v)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (u32vec2 const &v)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint16 bitfieldInterleave (u8vec2 const &v)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint32 bitfieldInterleave (uint16 x, uint16 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (uint16 x, uint16 y, uint16 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (uint16 x, uint16 y, uint16 z, uint16 w)
 Interleaves the bits of x, y, z and w. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (uint32 x, uint32 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (uint32 x, uint32 y, uint32 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL uint16 bitfieldInterleave (uint8 x, uint8 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint32 bitfieldInterleave (uint8 x, uint8 y, uint8 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL uint32 bitfieldInterleave (uint8 x, uint8 y, uint8 z, uint8 w)
 Interleaves the bits of x, y, z and w. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType bitfieldRotateLeft (genIUType In, int Shift)
 Rotate all bits to the left. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldRotateLeft (vec< L, T, Q > const &In, int Shift)
 Rotate all bits to the left. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType bitfieldRotateRight (genIUType In, int Shift)
 Rotate all bits to the right. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldRotateRight (vec< L, T, Q > const &In, int Shift)
 Rotate all bits to the right. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType mask (genIUType Bits)
 Build a mask of 'count' bits. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > mask (vec< L, T, Q > const &v)
 Build a mask of 'count' bits. More...
 
+

Detailed Description

+

GLM_GTC_bitfield

+
See also
Core features (dependence)
+
+GLM_GTC_bitfield (dependence)
+ +

Definition in file bitfield.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00533_source.html b/include/glm/doc/api/a00533_source.html new file mode 100644 index 0000000..346dc95 --- /dev/null +++ b/include/glm/doc/api/a00533_source.html @@ -0,0 +1,197 @@ + + + + + + + +1.0.2 API documentation: bitfield.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
bitfield.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #include "../detail/setup.hpp"
+
15 
+
16 #pragma once
+
17 
+
18 // Dependencies
+
19 #include "../ext/scalar_int_sized.hpp"
+
20 #include "../ext/scalar_uint_sized.hpp"
+
21 #include "../detail/qualifier.hpp"
+
22 #include "../detail/_vectorize.hpp"
+
23 #include "type_precision.hpp"
+
24 #include <limits>
+
25 
+
26 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
27 # pragma message("GLM: GLM_GTC_bitfield extension included")
+
28 #endif
+
29 
+
30 namespace glm
+
31 {
+
34 
+
38  template<typename genIUType>
+
39  GLM_FUNC_DECL genIUType mask(genIUType Bits);
+
40 
+
48  template<length_t L, typename T, qualifier Q>
+
49  GLM_FUNC_DECL vec<L, T, Q> mask(vec<L, T, Q> const& v);
+
50 
+
54  template<typename genIUType>
+
55  GLM_FUNC_DECL genIUType bitfieldRotateRight(genIUType In, int Shift);
+
56 
+
64  template<length_t L, typename T, qualifier Q>
+
65  GLM_FUNC_DECL vec<L, T, Q> bitfieldRotateRight(vec<L, T, Q> const& In, int Shift);
+
66 
+
70  template<typename genIUType>
+
71  GLM_FUNC_DECL genIUType bitfieldRotateLeft(genIUType In, int Shift);
+
72 
+
80  template<length_t L, typename T, qualifier Q>
+
81  GLM_FUNC_DECL vec<L, T, Q> bitfieldRotateLeft(vec<L, T, Q> const& In, int Shift);
+
82 
+
86  template<typename genIUType>
+
87  GLM_FUNC_DECL genIUType bitfieldFillOne(genIUType Value, int FirstBit, int BitCount);
+
88 
+
96  template<length_t L, typename T, qualifier Q>
+
97  GLM_FUNC_DECL vec<L, T, Q> bitfieldFillOne(vec<L, T, Q> const& Value, int FirstBit, int BitCount);
+
98 
+
102  template<typename genIUType>
+
103  GLM_FUNC_DECL genIUType bitfieldFillZero(genIUType Value, int FirstBit, int BitCount);
+
104 
+
112  template<length_t L, typename T, qualifier Q>
+
113  GLM_FUNC_DECL vec<L, T, Q> bitfieldFillZero(vec<L, T, Q> const& Value, int FirstBit, int BitCount);
+
114 
+
120  GLM_FUNC_DECL int16 bitfieldInterleave(int8 x, int8 y);
+
121 
+
127  GLM_FUNC_DECL uint16 bitfieldInterleave(uint8 x, uint8 y);
+
128 
+
134  GLM_FUNC_DECL uint16 bitfieldInterleave(u8vec2 const& v);
+
135 
+ +
140 
+
146  GLM_FUNC_DECL int32 bitfieldInterleave(int16 x, int16 y);
+
147 
+
153  GLM_FUNC_DECL uint32 bitfieldInterleave(uint16 x, uint16 y);
+
154 
+
160  GLM_FUNC_DECL uint32 bitfieldInterleave(u16vec2 const& v);
+
161 
+ +
166 
+
172  GLM_FUNC_DECL int64 bitfieldInterleave(int32 x, int32 y);
+
173 
+
179  GLM_FUNC_DECL uint64 bitfieldInterleave(uint32 x, uint32 y);
+
180 
+
186  GLM_FUNC_DECL uint64 bitfieldInterleave(u32vec2 const& v);
+
187 
+ +
192 
+
198  GLM_FUNC_DECL int32 bitfieldInterleave(int8 x, int8 y, int8 z);
+
199 
+
205  GLM_FUNC_DECL uint32 bitfieldInterleave(uint8 x, uint8 y, uint8 z);
+
206 
+
212  GLM_FUNC_DECL int64 bitfieldInterleave(int16 x, int16 y, int16 z);
+
213 
+
219  GLM_FUNC_DECL uint64 bitfieldInterleave(uint16 x, uint16 y, uint16 z);
+
220 
+
226  GLM_FUNC_DECL int64 bitfieldInterleave(int32 x, int32 y, int32 z);
+
227 
+
233  GLM_FUNC_DECL uint64 bitfieldInterleave(uint32 x, uint32 y, uint32 z);
+
234 
+
240  GLM_FUNC_DECL int32 bitfieldInterleave(int8 x, int8 y, int8 z, int8 w);
+
241 
+
247  GLM_FUNC_DECL uint32 bitfieldInterleave(uint8 x, uint8 y, uint8 z, uint8 w);
+
248 
+
254  GLM_FUNC_DECL int64 bitfieldInterleave(int16 x, int16 y, int16 z, int16 w);
+
255 
+
261  GLM_FUNC_DECL uint64 bitfieldInterleave(uint16 x, uint16 y, uint16 z, uint16 w);
+
262 
+
264 } //namespace glm
+
265 
+
266 #include "bitfield.inl"
+
+
detail::uint32 uint32
32 bit unsigned integer type.
+
vec< 2, uint16, defaultp > u16vec2
16 bit unsigned integer vector of 2 components type.
+
detail::int16 int16
16 bit signed integer type.
+
GLM_FUNC_DECL uint64 bitfieldInterleave(uint16 x, uint16 y, uint16 z, uint16 w)
Interleaves the bits of x, y, z and w.
+
detail::uint64 uint64
64 bit unsigned integer type.
+
GLM_GTC_type_precision
+
detail::uint8 uint8
8 bit unsigned integer type.
+
GLM_FUNC_DECL vec< L, T, Q > bitfieldFillOne(vec< L, T, Q > const &Value, int FirstBit, int BitCount)
Set to 1 a range of bits.
+
GLM_FUNC_DECL vec< L, T, Q > mask(vec< L, T, Q > const &v)
Build a mask of 'count' bits.
+
GLM_FUNC_DECL vec< L, T, Q > bitfieldFillZero(vec< L, T, Q > const &Value, int FirstBit, int BitCount)
Set to 0 a range of bits.
+
GLM_FUNC_DECL vec< L, T, Q > bitfieldRotateRight(vec< L, T, Q > const &In, int Shift)
Rotate all bits to the right.
+
detail::int8 int8
8 bit signed integer type.
+
vec< 2, uint32, defaultp > u32vec2
32 bit unsigned integer vector of 2 components type.
+
vec< 2, uint8, defaultp > u8vec2
8 bit unsigned integer vector of 2 components type.
+
detail::int64 int64
64 bit signed integer type.
+
detail::uint16 uint16
16 bit unsigned integer type.
+
GLM_FUNC_DECL glm::u32vec2 bitfieldDeinterleave(glm::uint64 x)
Deinterleaves the bits of x.
+
GLM_FUNC_DECL vec< L, T, Q > bitfieldRotateLeft(vec< L, T, Q > const &In, int Shift)
Rotate all bits to the left.
+
detail::int32 int32
32 bit signed integer type.
+ + + + diff --git a/include/glm/doc/api/a00539.html b/include/glm/doc/api/a00539.html new file mode 100644 index 0000000..2f37798 --- /dev/null +++ b/include/glm/doc/api/a00539.html @@ -0,0 +1,209 @@ + + + + + + + +1.0.2 API documentation: constants.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
constants.hpp File Reference
+
+
+ +

GLM_GTC_constants +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType e ()
 Return e constant. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType euler ()
 Return Euler's constant. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType four_over_pi ()
 Return 4 / pi. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType golden_ratio ()
 Return the golden ratio constant. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType half_pi ()
 Return pi / 2. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType ln_ln_two ()
 Return ln(ln(2)). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType ln_ten ()
 Return ln(10). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType ln_two ()
 Return ln(2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType one ()
 Return 1. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_pi ()
 Return 1 / pi. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_root_two ()
 Return 1 / sqrt(2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_two_pi ()
 Return 1 / (pi * 2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType quarter_pi ()
 Return pi / 4. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_five ()
 Return sqrt(5). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_half_pi ()
 Return sqrt(pi / 2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_ln_four ()
 Return sqrt(ln(4)). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_pi ()
 Return square root of pi. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_three ()
 Return sqrt(3). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_two ()
 Return sqrt(2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_two_pi ()
 Return sqrt(2 * pi). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType tau ()
 Return unit-circle circumference, or pi * 2. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType third ()
 Return 1 / 3. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType three_over_two_pi ()
 Return pi / 2 * 3. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType two_over_pi ()
 Return 2 / pi. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType two_over_root_pi ()
 Return 2 / sqrt(pi). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType two_pi ()
 Return pi * 2. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType two_thirds ()
 Return 2 / 3. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType zero ()
 Return 0. More...
 
+

Detailed Description

+

GLM_GTC_constants

+
See also
Core features (dependence)
+ +

Definition in file constants.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00539_source.html b/include/glm/doc/api/a00539_source.html new file mode 100644 index 0000000..4e7acfe --- /dev/null +++ b/include/glm/doc/api/a00539_source.html @@ -0,0 +1,209 @@ + + + + + + + +1.0.2 API documentation: constants.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
constants.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "../ext/scalar_constants.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_GTC_constants extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
29  template<typename genType>
+
30  GLM_FUNC_DECL GLM_CONSTEXPR genType zero();
+
31 
+
34  template<typename genType>
+
35  GLM_FUNC_DECL GLM_CONSTEXPR genType one();
+
36 
+
39  template<typename genType>
+
40  GLM_FUNC_DECL GLM_CONSTEXPR genType two_pi();
+
41 
+
44  template<typename genType>
+
45  GLM_FUNC_DECL GLM_CONSTEXPR genType tau();
+
46 
+
49  template<typename genType>
+
50  GLM_FUNC_DECL GLM_CONSTEXPR genType root_pi();
+
51 
+
54  template<typename genType>
+
55  GLM_FUNC_DECL GLM_CONSTEXPR genType half_pi();
+
56 
+
59  template<typename genType>
+
60  GLM_FUNC_DECL GLM_CONSTEXPR genType three_over_two_pi();
+
61 
+
64  template<typename genType>
+
65  GLM_FUNC_DECL GLM_CONSTEXPR genType quarter_pi();
+
66 
+
69  template<typename genType>
+
70  GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_pi();
+
71 
+
74  template<typename genType>
+
75  GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_two_pi();
+
76 
+
79  template<typename genType>
+
80  GLM_FUNC_DECL GLM_CONSTEXPR genType two_over_pi();
+
81 
+
84  template<typename genType>
+
85  GLM_FUNC_DECL GLM_CONSTEXPR genType four_over_pi();
+
86 
+
89  template<typename genType>
+
90  GLM_FUNC_DECL GLM_CONSTEXPR genType two_over_root_pi();
+
91 
+
94  template<typename genType>
+
95  GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_root_two();
+
96 
+
99  template<typename genType>
+
100  GLM_FUNC_DECL GLM_CONSTEXPR genType root_half_pi();
+
101 
+
104  template<typename genType>
+
105  GLM_FUNC_DECL GLM_CONSTEXPR genType root_two_pi();
+
106 
+
109  template<typename genType>
+
110  GLM_FUNC_DECL GLM_CONSTEXPR genType root_ln_four();
+
111 
+
114  template<typename genType>
+
115  GLM_FUNC_DECL GLM_CONSTEXPR genType e();
+
116 
+
119  template<typename genType>
+
120  GLM_FUNC_DECL GLM_CONSTEXPR genType euler();
+
121 
+
124  template<typename genType>
+
125  GLM_FUNC_DECL GLM_CONSTEXPR genType root_two();
+
126 
+
129  template<typename genType>
+
130  GLM_FUNC_DECL GLM_CONSTEXPR genType root_three();
+
131 
+
134  template<typename genType>
+
135  GLM_FUNC_DECL GLM_CONSTEXPR genType root_five();
+
136 
+
139  template<typename genType>
+
140  GLM_FUNC_DECL GLM_CONSTEXPR genType ln_two();
+
141 
+
144  template<typename genType>
+
145  GLM_FUNC_DECL GLM_CONSTEXPR genType ln_ten();
+
146 
+
149  template<typename genType>
+
150  GLM_FUNC_DECL GLM_CONSTEXPR genType ln_ln_two();
+
151 
+
154  template<typename genType>
+
155  GLM_FUNC_DECL GLM_CONSTEXPR genType third();
+
156 
+
159  template<typename genType>
+
160  GLM_FUNC_DECL GLM_CONSTEXPR genType two_thirds();
+
161 
+
164  template<typename genType>
+
165  GLM_FUNC_DECL GLM_CONSTEXPR genType golden_ratio();
+
166 
+
168 } //namespace glm
+
169 
+
170 #include "constants.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR genType golden_ratio()
Return the golden ratio constant.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType two_pi()
Return pi * 2.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType root_two()
Return sqrt(2).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_two_pi()
Return 1 / (pi * 2).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_pi()
Return 1 / pi.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType ln_ln_two()
Return ln(ln(2)).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType half_pi()
Return pi / 2.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType third()
Return 1 / 3.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType one()
Return 1.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType two_over_root_pi()
Return 2 / sqrt(pi).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType root_three()
Return sqrt(3).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType root_half_pi()
Return sqrt(pi / 2).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType three_over_two_pi()
Return pi / 2 * 3.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType quarter_pi()
Return pi / 4.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType root_pi()
Return square root of pi.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType root_five()
Return sqrt(5).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType e()
Return e constant.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType root_two_pi()
Return sqrt(2 * pi).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType zero()
Return 0.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType root_ln_four()
Return sqrt(ln(4)).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType ln_two()
Return ln(2).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType two_over_pi()
Return 2 / pi.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType euler()
Return Euler's constant.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType ln_ten()
Return ln(10).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType four_over_pi()
Return 4 / pi.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_root_two()
Return 1 / sqrt(2).
+
GLM_FUNC_DECL GLM_CONSTEXPR genType two_thirds()
Return 2 / 3.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType tau()
Return unit-circle circumference, or pi * 2.
+ + + + diff --git a/include/glm/doc/api/a00542.html b/include/glm/doc/api/a00542.html new file mode 100644 index 0000000..9390508 --- /dev/null +++ b/include/glm/doc/api/a00542.html @@ -0,0 +1,115 @@ + + + + + + + +1.0.2 API documentation: epsilon.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
epsilon.hpp File Reference
+
+
+ +

GLM_GTC_epsilon +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL bool epsilonEqual (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > epsilonEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<typename genType >
GLM_FUNC_DECL bool epsilonNotEqual (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > epsilonNotEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
+

Detailed Description

+

GLM_GTC_epsilon

+
See also
Core features (dependence)
+
+GLM_GTC_quaternion (dependence)
+ +

Definition in file epsilon.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00542_source.html b/include/glm/doc/api/a00542_source.html new file mode 100644 index 0000000..1fbdf58 --- /dev/null +++ b/include/glm/doc/api/a00542_source.html @@ -0,0 +1,113 @@ + + + + + + + +1.0.2 API documentation: epsilon.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
epsilon.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependencies
+
17 #include "../detail/setup.hpp"
+
18 #include "../detail/qualifier.hpp"
+
19 
+
20 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTC_epsilon extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
33  template<length_t L, typename T, qualifier Q>
+
34  GLM_FUNC_DECL vec<L, bool, Q> epsilonEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, T const& epsilon);
+
35 
+
40  template<typename genType>
+
41  GLM_FUNC_DECL bool epsilonEqual(genType const& x, genType const& y, genType const& epsilon);
+
42 
+
47  template<length_t L, typename T, qualifier Q>
+
48  GLM_FUNC_DECL vec<L, bool, Q> epsilonNotEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, T const& epsilon);
+
49 
+
54  template<typename genType>
+
55  GLM_FUNC_DECL bool epsilonNotEqual(genType const& x, genType const& y, genType const& epsilon);
+
56 
+
58 }//namespace glm
+
59 
+
60 #include "epsilon.inl"
+
+
GLM_FUNC_DECL bool epsilonNotEqual(genType const &x, genType const &y, genType const &epsilon)
Returns the component-wise comparison of |x - y| >= epsilon.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon()
Return the epsilon constant for floating point types.
+
GLM_FUNC_DECL bool epsilonEqual(genType const &x, genType const &y, genType const &epsilon)
Returns the component-wise comparison of |x - y| < epsilon.
+ + + + diff --git a/include/glm/doc/api/a00545.html b/include/glm/doc/api/a00545.html new file mode 100644 index 0000000..4c1c1c4 --- /dev/null +++ b/include/glm/doc/api/a00545.html @@ -0,0 +1,149 @@ + + + + + + + +1.0.2 API documentation: integer.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
integer.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL int bitCount (genType v)
 Returns the number of bits set to 1 in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > bitCount (vec< L, T, Q > const &v)
 Returns the number of bits set to 1 in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldExtract (vec< L, T, Q > const &Value, int Offset, int Bits)
 Extracts bits [offset, offset + bits - 1] from value, returning them in the least significant bits of the result. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldInsert (vec< L, T, Q > const &Base, vec< L, T, Q > const &Insert, int Offset, int Bits)
 Returns the insertion the bits least-significant bits of insert into base. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldReverse (vec< L, T, Q > const &v)
 Returns the reversal of the bits of value. More...
 
template<typename genIUType >
GLM_FUNC_DECL int findLSB (genIUType x)
 Returns the bit number of the least significant bit set to 1 in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > findLSB (vec< L, T, Q > const &v)
 Returns the bit number of the least significant bit set to 1 in the binary representation of value. More...
 
template<typename genIUType >
GLM_FUNC_DECL int findMSB (genIUType x)
 Returns the bit number of the most significant bit in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > findMSB (vec< L, T, Q > const &v)
 Returns the bit number of the most significant bit in the binary representation of value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DISCARD_DECL void imulExtended (vec< L, int, Q > const &x, vec< L, int, Q > const &y, vec< L, int, Q > &msb, vec< L, int, Q > &lsb)
 Multiplies 32-bit integers x and y, producing a 64-bit result. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, uint, Q > uaddCarry (vec< L, uint, Q > const &x, vec< L, uint, Q > const &y, vec< L, uint, Q > &carry)
 Adds 32-bit unsigned integer x and y, returning the sum modulo pow(2, 32). More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DISCARD_DECL void umulExtended (vec< L, uint, Q > const &x, vec< L, uint, Q > const &y, vec< L, uint, Q > &msb, vec< L, uint, Q > &lsb)
 Multiplies 32-bit integers x and y, producing a 64-bit result. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, uint, Q > usubBorrow (vec< L, uint, Q > const &x, vec< L, uint, Q > const &y, vec< L, uint, Q > &borrow)
 Subtracts the 32-bit unsigned integer y from x, returning the difference if non-negative, or pow(2, 32) plus the difference otherwise. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00545_source.html b/include/glm/doc/api/a00545_source.html new file mode 100644 index 0000000..8863b12 --- /dev/null +++ b/include/glm/doc/api/a00545_source.html @@ -0,0 +1,166 @@ + + + + + + + +1.0.2 API documentation: integer.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
integer.hpp
+
+
+Go to the documentation of this file.
1 
+
17 #pragma once
+
18 
+
19 #include "detail/qualifier.hpp"
+
20 #include "common.hpp"
+
21 #include "vector_relational.hpp"
+
22 
+
23 namespace glm
+
24 {
+
27 
+
36  template<length_t L, qualifier Q>
+
37  GLM_FUNC_DECL vec<L, uint, Q> uaddCarry(
+
38  vec<L, uint, Q> const& x,
+
39  vec<L, uint, Q> const& y,
+
40  vec<L, uint, Q> & carry);
+
41 
+
50  template<length_t L, qualifier Q>
+
51  GLM_FUNC_DECL vec<L, uint, Q> usubBorrow(
+
52  vec<L, uint, Q> const& x,
+
53  vec<L, uint, Q> const& y,
+
54  vec<L, uint, Q> & borrow);
+
55 
+
64  template<length_t L, qualifier Q>
+
65  GLM_FUNC_DISCARD_DECL void umulExtended(
+
66  vec<L, uint, Q> const& x,
+
67  vec<L, uint, Q> const& y,
+
68  vec<L, uint, Q> & msb,
+
69  vec<L, uint, Q> & lsb);
+
70 
+
79  template<length_t L, qualifier Q>
+
80  GLM_FUNC_DISCARD_DECL void imulExtended(
+
81  vec<L, int, Q> const& x,
+
82  vec<L, int, Q> const& y,
+
83  vec<L, int, Q> & msb,
+
84  vec<L, int, Q> & lsb);
+
85 
+
102  template<length_t L, typename T, qualifier Q>
+
103  GLM_FUNC_DECL vec<L, T, Q> bitfieldExtract(
+
104  vec<L, T, Q> const& Value,
+
105  int Offset,
+
106  int Bits);
+
107 
+
123  template<length_t L, typename T, qualifier Q>
+
124  GLM_FUNC_DECL vec<L, T, Q> bitfieldInsert(
+
125  vec<L, T, Q> const& Base,
+
126  vec<L, T, Q> const& Insert,
+
127  int Offset,
+
128  int Bits);
+
129 
+
139  template<length_t L, typename T, qualifier Q>
+
140  GLM_FUNC_DECL vec<L, T, Q> bitfieldReverse(vec<L, T, Q> const& v);
+
141 
+
148  template<typename genType>
+
149  GLM_FUNC_DECL int bitCount(genType v);
+
150 
+
158  template<length_t L, typename T, qualifier Q>
+
159  GLM_FUNC_DECL vec<L, int, Q> bitCount(vec<L, T, Q> const& v);
+
160 
+
169  template<typename genIUType>
+
170  GLM_FUNC_DECL int findLSB(genIUType x);
+
171 
+
181  template<length_t L, typename T, qualifier Q>
+
182  GLM_FUNC_DECL vec<L, int, Q> findLSB(vec<L, T, Q> const& v);
+
183 
+
193  template<typename genIUType>
+
194  GLM_FUNC_DECL int findMSB(genIUType x);
+
195 
+
206  template<length_t L, typename T, qualifier Q>
+
207  GLM_FUNC_DECL vec<L, int, Q> findMSB(vec<L, T, Q> const& v);
+
208 
+
210 }//namespace glm
+
211 
+
212 #include "detail/func_integer.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > bitfieldExtract(vec< L, T, Q > const &Value, int Offset, int Bits)
Extracts bits [offset, offset + bits - 1] from value, returning them in the least significant bits of...
+
GLM_FUNC_DISCARD_DECL void umulExtended(vec< L, uint, Q > const &x, vec< L, uint, Q > const &y, vec< L, uint, Q > &msb, vec< L, uint, Q > &lsb)
Multiplies 32-bit integers x and y, producing a 64-bit result.
+
GLM_FUNC_DECL vec< L, T, Q > bitfieldInsert(vec< L, T, Q > const &Base, vec< L, T, Q > const &Insert, int Offset, int Bits)
Returns the insertion the bits least-significant bits of insert into base.
+
GLM_GTX_common
+
GLM_FUNC_DECL vec< L, int, Q > bitCount(vec< L, T, Q > const &v)
Returns the number of bits set to 1 in the binary representation of value.
+
GLM_FUNC_DISCARD_DECL void imulExtended(vec< L, int, Q > const &x, vec< L, int, Q > const &y, vec< L, int, Q > &msb, vec< L, int, Q > &lsb)
Multiplies 32-bit integers x and y, producing a 64-bit result.
+
GLM_FUNC_DECL vec< L, int, Q > findMSB(vec< L, T, Q > const &v)
Returns the bit number of the most significant bit in the binary representation of value.
+
GLM_FUNC_DECL vec< L, T, Q > bitfieldReverse(vec< L, T, Q > const &v)
Returns the reversal of the bits of value.
+
GLM_FUNC_DECL vec< L, int, Q > findLSB(vec< L, T, Q > const &v)
Returns the bit number of the least significant bit set to 1 in the binary representation of value.
+
GLM_FUNC_DECL vec< L, uint, Q > uaddCarry(vec< L, uint, Q > const &x, vec< L, uint, Q > const &y, vec< L, uint, Q > &carry)
Adds 32-bit unsigned integer x and y, returning the sum modulo pow(2, 32).
+
GLM_FUNC_DECL vec< L, uint, Q > usubBorrow(vec< L, uint, Q > const &x, vec< L, uint, Q > const &y, vec< L, uint, Q > &borrow)
Subtracts the 32-bit unsigned integer y from x, returning the difference if non-negative,...
+ + + + + diff --git a/include/glm/doc/api/a00548.html b/include/glm/doc/api/a00548.html new file mode 100644 index 0000000..d2fa160 --- /dev/null +++ b/include/glm/doc/api/a00548.html @@ -0,0 +1,113 @@ + + + + + + + +1.0.2 API documentation: matrix_access.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_access.hpp File Reference
+
+
+ +

GLM_GTC_matrix_access +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType::col_type column (genType const &m, length_t index)
 Get a specific column of a matrix. More...
 
template<typename genType >
GLM_FUNC_DECL genType column (genType const &m, length_t index, typename genType::col_type const &x)
 Set a specific column to a matrix. More...
 
template<typename genType >
GLM_FUNC_DECL genType::row_type row (genType const &m, length_t index)
 Get a specific row of a matrix. More...
 
template<typename genType >
GLM_FUNC_DECL genType row (genType const &m, length_t index, typename genType::row_type const &x)
 Set a specific row to a matrix. More...
 
+

Detailed Description

+

GLM_GTC_matrix_access

+
See also
Core features (dependence)
+ +

Definition in file matrix_access.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00548_source.html b/include/glm/doc/api/a00548_source.html new file mode 100644 index 0000000..fce056f --- /dev/null +++ b/include/glm/doc/api/a00548_source.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_access.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_access.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../detail/setup.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_GTC_matrix_access extension included")
+
20 #endif
+
21 
+
22 namespace glm
+
23 {
+
26 
+
29  template<typename genType>
+
30  GLM_FUNC_DECL typename genType::row_type row(
+
31  genType const& m,
+
32  length_t index);
+
33 
+
36  template<typename genType>
+
37  GLM_FUNC_DECL genType row(
+
38  genType const& m,
+
39  length_t index,
+
40  typename genType::row_type const& x);
+
41 
+
44  template<typename genType>
+
45  GLM_FUNC_DECL typename genType::col_type column(
+
46  genType const& m,
+
47  length_t index);
+
48 
+
51  template<typename genType>
+
52  GLM_FUNC_DECL genType column(
+
53  genType const& m,
+
54  length_t index,
+
55  typename genType::col_type const& x);
+
56 
+
58 }//namespace glm
+
59 
+
60 #include "matrix_access.inl"
+
+
GLM_FUNC_DECL genType column(genType const &m, length_t index, typename genType::col_type const &x)
Set a specific column to a matrix.
+
GLM_FUNC_DECL genType row(genType const &m, length_t index, typename genType::row_type const &x)
Set a specific row to a matrix.
+ + + + diff --git a/include/glm/doc/api/a00551.html b/include/glm/doc/api/a00551.html new file mode 100644 index 0000000..4b62681 --- /dev/null +++ b/include/glm/doc/api/a00551.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: matrix_inverse.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_inverse.hpp File Reference
+
+
+ +

GLM_GTC_matrix_inverse +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType affineInverse (genType const &m)
 Fast matrix inverse for affine matrix. More...
 
template<typename genType >
GLM_FUNC_DECL genType inverseTranspose (genType const &m)
 Compute the inverse transpose of a matrix. More...
 
+

Detailed Description

+

GLM_GTC_matrix_inverse

+
See also
Core features (dependence)
+ +

Definition in file matrix_inverse.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00551_source.html b/include/glm/doc/api/a00551_source.html new file mode 100644 index 0000000..fe211cc --- /dev/null +++ b/include/glm/doc/api/a00551_source.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_inverse.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_inverse.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "../detail/setup.hpp"
+
17 #include "../matrix.hpp"
+
18 #include "../mat2x2.hpp"
+
19 #include "../mat3x3.hpp"
+
20 #include "../mat4x4.hpp"
+
21 
+
22 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTC_matrix_inverse extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
36  template<typename genType>
+
37  GLM_FUNC_DECL genType affineInverse(genType const& m);
+
38 
+
44  template<typename genType>
+
45  GLM_FUNC_DECL genType inverseTranspose(genType const& m);
+
46 
+
48 }//namespace glm
+
49 
+
50 #include "matrix_inverse.inl"
+
+
GLM_FUNC_DECL genType inverseTranspose(genType const &m)
Compute the inverse transpose of a matrix.
+
GLM_FUNC_DECL genType affineInverse(genType const &m)
Fast matrix inverse for affine matrix.
+ + + + diff --git a/include/glm/doc/api/a00554.html b/include/glm/doc/api/a00554.html new file mode 100644 index 0000000..0eecfe0 --- /dev/null +++ b/include/glm/doc/api/a00554.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: noise.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
noise.hpp File Reference
+
+
+ +

GLM_GTC_noise +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T perlin (vec< L, T, Q > const &p)
 Classic perlin noise. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T perlin (vec< L, T, Q > const &p, vec< L, T, Q > const &rep)
 Periodic perlin noise. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T simplex (vec< L, T, Q > const &p)
 Simplex noise. More...
 
+

Detailed Description

+

GLM_GTC_noise

+
See also
Core features (dependence)
+ +

Definition in file noise.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00554_source.html b/include/glm/doc/api/a00554_source.html new file mode 100644 index 0000000..b660c8a --- /dev/null +++ b/include/glm/doc/api/a00554_source.html @@ -0,0 +1,120 @@ + + + + + + + +1.0.2 API documentation: noise.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
noise.hpp
+
+
+Go to the documentation of this file.
1 
+
17 #pragma once
+
18 
+
19 // Dependencies
+
20 #include "../detail/setup.hpp"
+
21 #include "../detail/qualifier.hpp"
+
22 #include "../detail/_noise.hpp"
+
23 #include "../geometric.hpp"
+
24 #include "../common.hpp"
+
25 #include "../vector_relational.hpp"
+
26 #include "../vec2.hpp"
+
27 #include "../vec3.hpp"
+
28 #include "../vec4.hpp"
+
29 
+
30 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
31 # pragma message("GLM: GLM_GTC_noise extension included")
+
32 #endif
+
33 
+
34 namespace glm
+
35 {
+
38 
+
41  template<length_t L, typename T, qualifier Q>
+
42  GLM_FUNC_DECL T perlin(
+
43  vec<L, T, Q> const& p);
+
44 
+
47  template<length_t L, typename T, qualifier Q>
+
48  GLM_FUNC_DECL T perlin(
+
49  vec<L, T, Q> const& p,
+
50  vec<L, T, Q> const& rep);
+
51 
+
54  template<length_t L, typename T, qualifier Q>
+
55  GLM_FUNC_DECL T simplex(
+
56  vec<L, T, Q> const& p);
+
57 
+
59 }//namespace glm
+
60 
+
61 #include "noise.inl"
+
+
GLM_FUNC_DECL T perlin(vec< L, T, Q > const &p, vec< L, T, Q > const &rep)
Periodic perlin noise.
+
GLM_FUNC_DECL T simplex(vec< L, T, Q > const &p)
Simplex noise.
+ + + + diff --git a/include/glm/doc/api/a00557.html b/include/glm/doc/api/a00557.html new file mode 100644 index 0000000..4f37cf5 --- /dev/null +++ b/include/glm/doc/api/a00557.html @@ -0,0 +1,135 @@ + + + + + + + +1.0.2 API documentation: packing.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
packing.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

GLM_FUNC_DECL double packDouble2x32 (uvec2 const &v)
 Returns a double-qualifier value obtained by packing the components of v into a 64-bit value. More...
 
GLM_FUNC_DECL uint packHalf2x16 (vec2 const &v)
 Returns an unsigned integer obtained by converting the components of a two-component floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification, and then packing these two 16- bit integers into a 32-bit unsigned integer. More...
 
GLM_FUNC_DECL uint packSnorm2x16 (vec2 const &v)
 First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values. More...
 
GLM_FUNC_DECL uint packSnorm4x8 (vec4 const &v)
 First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values. More...
 
GLM_FUNC_DECL uint packUnorm2x16 (vec2 const &v)
 First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values. More...
 
GLM_FUNC_DECL uint packUnorm4x8 (vec4 const &v)
 First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values. More...
 
GLM_FUNC_DECL uvec2 unpackDouble2x32 (double v)
 Returns a two-component unsigned integer vector representation of v. More...
 
GLM_FUNC_DECL vec2 unpackHalf2x16 (uint v)
 Returns a two-component floating-point vector with components obtained by unpacking a 32-bit unsigned integer into a pair of 16-bit values, interpreting those values as 16-bit floating-point numbers according to the OpenGL Specification, and converting them to 32-bit floating-point values. More...
 
GLM_FUNC_DECL vec2 unpackSnorm2x16 (uint p)
 First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackSnorm4x8 (uint p)
 First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers. More...
 
GLM_FUNC_DECL vec2 unpackUnorm2x16 (uint p)
 First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackUnorm4x8 (uint p)
 First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00557_source.html b/include/glm/doc/api/a00557_source.html new file mode 100644 index 0000000..fc0f17c --- /dev/null +++ b/include/glm/doc/api/a00557_source.html @@ -0,0 +1,136 @@ + + + + + + + +1.0.2 API documentation: packing.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
packing.hpp
+
+
+Go to the documentation of this file.
1 
+
16 #pragma once
+
17 
+
18 #include "./ext/vector_uint2.hpp"
+
19 #include "./ext/vector_float2.hpp"
+
20 #include "./ext/vector_float4.hpp"
+
21 
+
22 namespace glm
+
23 {
+
26 
+
38  GLM_FUNC_DECL uint packUnorm2x16(vec2 const& v);
+
39 
+
51  GLM_FUNC_DECL uint packSnorm2x16(vec2 const& v);
+
52 
+
64  GLM_FUNC_DECL uint packUnorm4x8(vec4 const& v);
+
65 
+
77  GLM_FUNC_DECL uint packSnorm4x8(vec4 const& v);
+
78 
+
90  GLM_FUNC_DECL vec2 unpackUnorm2x16(uint p);
+
91 
+
103  GLM_FUNC_DECL vec2 unpackSnorm2x16(uint p);
+
104 
+
116  GLM_FUNC_DECL vec4 unpackUnorm4x8(uint p);
+
117 
+
129  GLM_FUNC_DECL vec4 unpackSnorm4x8(uint p);
+
130 
+
139  GLM_FUNC_DECL double packDouble2x32(uvec2 const& v);
+
140 
+
148  GLM_FUNC_DECL uvec2 unpackDouble2x32(double v);
+
149 
+
158  GLM_FUNC_DECL uint packHalf2x16(vec2 const& v);
+
159 
+
168  GLM_FUNC_DECL vec2 unpackHalf2x16(uint v);
+
169 
+
171 }//namespace glm
+
172 
+
173 #include "detail/func_packing.inl"
+
+
GLM_FUNC_DECL vec4 unpackUnorm4x8(uint p)
First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers,...
+
vec< 2, unsigned int, defaultp > uvec2
2 components vector of unsigned integer numbers.
+
GLM_FUNC_DECL uvec2 unpackDouble2x32(double v)
Returns a two-component unsigned integer vector representation of v.
+
Core features
+
GLM_FUNC_DECL uint packSnorm4x8(vec4 const &v)
First, converts each component of the normalized floating-point value v into 8- or 16-bit integer val...
+
GLM_FUNC_DECL uint packUnorm4x8(vec4 const &v)
First, converts each component of the normalized floating-point value v into 8- or 16-bit integer val...
+
vec< 2, float, defaultp > vec2
2 components vector of single-precision floating-point numbers.
+
GLM_FUNC_DECL vec2 unpackUnorm2x16(uint p)
First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers,...
+
GLM_FUNC_DECL vec2 unpackSnorm2x16(uint p)
First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers,...
+
GLM_FUNC_DECL uint packSnorm2x16(vec2 const &v)
First, converts each component of the normalized floating-point value v into 8- or 16-bit integer val...
+
GLM_FUNC_DECL uint packUnorm2x16(vec2 const &v)
First, converts each component of the normalized floating-point value v into 8- or 16-bit integer val...
+
Core features
+
GLM_FUNC_DECL double packDouble2x32(uvec2 const &v)
Returns a double-qualifier value obtained by packing the components of v into a 64-bit value.
+
vec< 4, float, defaultp > vec4
4 components vector of single-precision floating-point numbers.
+
GLM_FUNC_DECL uint packHalf2x16(vec2 const &v)
Returns an unsigned integer obtained by converting the components of a two-component floating-point v...
+
Core features
+
GLM_FUNC_DECL vec2 unpackHalf2x16(uint v)
Returns a two-component floating-point vector with components obtained by unpacking a 32-bit unsigned...
+
GLM_FUNC_DECL vec4 unpackSnorm4x8(uint p)
First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers,...
+ + + + diff --git a/include/glm/doc/api/a00563.html b/include/glm/doc/api/a00563.html new file mode 100644 index 0000000..56d693f --- /dev/null +++ b/include/glm/doc/api/a00563.html @@ -0,0 +1,127 @@ + + + + + + + +1.0.2 API documentation: random.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
random.hpp File Reference
+
+
+ +

GLM_GTC_random +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL vec< 3, T, defaultp > ballRand (T Radius)
 Generate a random 3D vector which coordinates are regularly distributed within the volume of a ball of a given radius. More...
 
template<typename T >
GLM_FUNC_DECL vec< 2, T, defaultp > circularRand (T Radius)
 Generate a random 2D vector which coordinates are regularly distributed on a circle of a given radius. More...
 
template<typename T >
GLM_FUNC_DECL vec< 2, T, defaultp > diskRand (T Radius)
 Generate a random 2D vector which coordinates are regularly distributed within the area of a disk of a given radius. More...
 
template<typename genType >
GLM_FUNC_DECL genType gaussRand (genType Mean, genType Deviation)
 Generate random numbers in the interval [Min, Max], according a gaussian distribution. More...
 
template<typename genType >
GLM_FUNC_DECL genType linearRand (genType Min, genType Max)
 Generate random numbers in the interval [Min, Max], according a linear distribution. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > linearRand (vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
 Generate random numbers in the interval [Min, Max], according a linear distribution. More...
 
template<typename T >
GLM_FUNC_DECL vec< 3, T, defaultp > sphericalRand (T Radius)
 Generate a random 3D vector which coordinates are regularly distributed on a sphere of a given radius. More...
 
+

Detailed Description

+

GLM_GTC_random

+
See also
Core features (dependence)
+
+gtx_random (extended)
+ +

Definition in file random.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00563_source.html b/include/glm/doc/api/a00563_source.html new file mode 100644 index 0000000..6105633 --- /dev/null +++ b/include/glm/doc/api/a00563_source.html @@ -0,0 +1,126 @@ + + + + + + + +1.0.2 API documentation: random.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
random.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../ext/scalar_int_sized.hpp"
+
18 #include "../ext/scalar_uint_sized.hpp"
+
19 #include "../detail/qualifier.hpp"
+
20 
+
21 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTC_random extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
36  template<typename genType>
+
37  GLM_FUNC_DECL genType linearRand(genType Min, genType Max);
+
38 
+
46  template<length_t L, typename T, qualifier Q>
+
47  GLM_FUNC_DECL vec<L, T, Q> linearRand(vec<L, T, Q> const& Min, vec<L, T, Q> const& Max);
+
48 
+
52  template<typename genType>
+
53  GLM_FUNC_DECL genType gaussRand(genType Mean, genType Deviation);
+
54 
+
58  template<typename T>
+
59  GLM_FUNC_DECL vec<2, T, defaultp> circularRand(T Radius);
+
60 
+
64  template<typename T>
+
65  GLM_FUNC_DECL vec<3, T, defaultp> sphericalRand(T Radius);
+
66 
+
70  template<typename T>
+
71  GLM_FUNC_DECL vec<2, T, defaultp> diskRand(T Radius);
+
72 
+
76  template<typename T>
+
77  GLM_FUNC_DECL vec<3, T, defaultp> ballRand(T Radius);
+
78 
+
80 }//namespace glm
+
81 
+
82 #include "random.inl"
+
+
GLM_FUNC_DECL vec< 2, T, defaultp > diskRand(T Radius)
Generate a random 2D vector which coordinates are regularly distributed within the area of a disk of ...
+
GLM_FUNC_DECL vec< 2, T, defaultp > circularRand(T Radius)
Generate a random 2D vector which coordinates are regularly distributed on a circle of a given radius...
+
GLM_FUNC_DECL vec< 3, T, defaultp > sphericalRand(T Radius)
Generate a random 3D vector which coordinates are regularly distributed on a sphere of a given radius...
+
GLM_FUNC_DECL genType gaussRand(genType Mean, genType Deviation)
Generate random numbers in the interval [Min, Max], according a gaussian distribution.
+
GLM_FUNC_DECL vec< L, T, Q > linearRand(vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
Generate random numbers in the interval [Min, Max], according a linear distribution.
+
GLM_FUNC_DECL vec< 3, T, defaultp > ballRand(T Radius)
Generate a random 3D vector which coordinates are regularly distributed within the volume of a ball o...
+ + + + diff --git a/include/glm/doc/api/a00566.html b/include/glm/doc/api/a00566.html new file mode 100644 index 0000000..40b93b0 --- /dev/null +++ b/include/glm/doc/api/a00566.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: reciprocal.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
reciprocal.hpp File Reference
+
+
+ +

GLM_GTC_reciprocal +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTC_reciprocal

+
See also
Core features (dependence)
+ +

Definition in file reciprocal.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00566_source.html b/include/glm/doc/api/a00566_source.html new file mode 100644 index 0000000..e98920d --- /dev/null +++ b/include/glm/doc/api/a00566_source.html @@ -0,0 +1,94 @@ + + + + + + + +1.0.2 API documentation: reciprocal.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
reciprocal.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "../detail/setup.hpp"
+
17 
+
18 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
19 # pragma message("GLM: GLM_GTC_reciprocal extension included")
+
20 #endif
+
21 
+
22 #include "../ext/scalar_reciprocal.hpp"
+
23 #include "../ext/vector_reciprocal.hpp"
+
24 
+
+ + + + diff --git a/include/glm/doc/api/a00569.html b/include/glm/doc/api/a00569.html new file mode 100644 index 0000000..0fc3558 --- /dev/null +++ b/include/glm/doc/api/a00569.html @@ -0,0 +1,147 @@ + + + + + + + +1.0.2 API documentation: round.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
round.hpp File Reference
+
+
+ +

GLM_GTC_round +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType ceilMultiple (genType v, genType Multiple)
 Higher multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > ceilMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Higher multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType ceilPowerOfTwo (genIUType v)
 Return the power of two number which value is just higher the input value, round up to a power of two. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > ceilPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is just higher the input value, round up to a power of two. More...
 
template<typename genType >
GLM_FUNC_DECL genType floorMultiple (genType v, genType Multiple)
 Lower multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > floorMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Lower multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType floorPowerOfTwo (genIUType v)
 Return the power of two number which value is just lower the input value, round down to a power of two. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > floorPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is just lower the input value, round down to a power of two. More...
 
template<typename genType >
GLM_FUNC_DECL genType roundMultiple (genType v, genType Multiple)
 Lower multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > roundMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Lower multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType roundPowerOfTwo (genIUType v)
 Return the power of two number which value is the closet to the input value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > roundPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is the closet to the input value. More...
 
+

Detailed Description

+

GLM_GTC_round

+
See also
Core features (dependence)
+
+GLM_GTC_round (dependence)
+ +

Definition in file round.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00569_source.html b/include/glm/doc/api/a00569_source.html new file mode 100644 index 0000000..c170591 --- /dev/null +++ b/include/glm/doc/api/a00569_source.html @@ -0,0 +1,144 @@ + + + + + + + +1.0.2 API documentation: round.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
round.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependencies
+
17 #include "../detail/setup.hpp"
+
18 #include "../detail/qualifier.hpp"
+
19 #include "../detail/_vectorize.hpp"
+
20 #include "../vector_relational.hpp"
+
21 #include "../common.hpp"
+
22 #include <limits>
+
23 
+
24 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
25 # pragma message("GLM: GLM_GTC_round extension included")
+
26 #endif
+
27 
+
28 namespace glm
+
29 {
+
32 
+
37  template<typename genIUType>
+
38  GLM_FUNC_DECL genIUType ceilPowerOfTwo(genIUType v);
+
39 
+
48  template<length_t L, typename T, qualifier Q>
+
49  GLM_FUNC_DECL vec<L, T, Q> ceilPowerOfTwo(vec<L, T, Q> const& v);
+
50 
+
55  template<typename genIUType>
+
56  GLM_FUNC_DECL genIUType floorPowerOfTwo(genIUType v);
+
57 
+
66  template<length_t L, typename T, qualifier Q>
+
67  GLM_FUNC_DECL vec<L, T, Q> floorPowerOfTwo(vec<L, T, Q> const& v);
+
68 
+
72  template<typename genIUType>
+
73  GLM_FUNC_DECL genIUType roundPowerOfTwo(genIUType v);
+
74 
+
82  template<length_t L, typename T, qualifier Q>
+
83  GLM_FUNC_DECL vec<L, T, Q> roundPowerOfTwo(vec<L, T, Q> const& v);
+
84 
+
93  template<typename genType>
+
94  GLM_FUNC_DECL genType ceilMultiple(genType v, genType Multiple);
+
95 
+
106  template<length_t L, typename T, qualifier Q>
+
107  GLM_FUNC_DECL vec<L, T, Q> ceilMultiple(vec<L, T, Q> const& v, vec<L, T, Q> const& Multiple);
+
108 
+
117  template<typename genType>
+
118  GLM_FUNC_DECL genType floorMultiple(genType v, genType Multiple);
+
119 
+
130  template<length_t L, typename T, qualifier Q>
+
131  GLM_FUNC_DECL vec<L, T, Q> floorMultiple(vec<L, T, Q> const& v, vec<L, T, Q> const& Multiple);
+
132 
+
141  template<typename genType>
+
142  GLM_FUNC_DECL genType roundMultiple(genType v, genType Multiple);
+
143 
+
154  template<length_t L, typename T, qualifier Q>
+
155  GLM_FUNC_DECL vec<L, T, Q> roundMultiple(vec<L, T, Q> const& v, vec<L, T, Q> const& Multiple);
+
156 
+
158 } //namespace glm
+
159 
+
160 #include "round.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > floorPowerOfTwo(vec< L, T, Q > const &v)
Return the power of two number which value is just lower the input value, round down to a power of tw...
+
GLM_FUNC_DECL vec< L, T, Q > ceilPowerOfTwo(vec< L, T, Q > const &v)
Return the power of two number which value is just higher the input value, round up to a power of two...
+
GLM_FUNC_DECL vec< L, T, Q > roundMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
Lower multiple number of Source.
+
GLM_FUNC_DECL vec< L, T, Q > floorMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
Lower multiple number of Source.
+
GLM_FUNC_DECL vec< L, T, Q > ceilMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
Higher multiple number of Source.
+
GLM_FUNC_DECL vec< L, T, Q > roundPowerOfTwo(vec< L, T, Q > const &v)
Return the power of two number which value is the closet to the input value.
+ + + + diff --git a/include/glm/doc/api/a00575.html b/include/glm/doc/api/a00575.html new file mode 100644 index 0000000..d624a29 --- /dev/null +++ b/include/glm/doc/api/a00575.html @@ -0,0 +1,93 @@ + + + + + + + +1.0.2 API documentation: type_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_precision.hpp File Reference
+
+
+ +

GLM_GTC_type_precision +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTC_type_precision

+
See also
Core features (dependence)
+
+GLM_GTC_quaternion (dependence)
+ +

Definition in file type_precision.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00575_source.html b/include/glm/doc/api/a00575_source.html new file mode 100644 index 0000000..cb039e0 --- /dev/null +++ b/include/glm/doc/api/a00575_source.html @@ -0,0 +1,1625 @@ + + + + + + + +1.0.2 API documentation: type_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../gtc/quaternion.hpp"
+
18 #include "../gtc/vec1.hpp"
+
19 #include "../ext/vector_int1_sized.hpp"
+
20 #include "../ext/vector_int2_sized.hpp"
+
21 #include "../ext/vector_int3_sized.hpp"
+
22 #include "../ext/vector_int4_sized.hpp"
+
23 #include "../ext/scalar_int_sized.hpp"
+
24 #include "../ext/vector_uint1_sized.hpp"
+
25 #include "../ext/vector_uint2_sized.hpp"
+
26 #include "../ext/vector_uint3_sized.hpp"
+
27 #include "../ext/vector_uint4_sized.hpp"
+
28 #include "../ext/scalar_uint_sized.hpp"
+
29 #include "../detail/type_vec2.hpp"
+
30 #include "../detail/type_vec3.hpp"
+
31 #include "../detail/type_vec4.hpp"
+
32 #include "../detail/type_mat2x2.hpp"
+
33 #include "../detail/type_mat2x3.hpp"
+
34 #include "../detail/type_mat2x4.hpp"
+
35 #include "../detail/type_mat3x2.hpp"
+
36 #include "../detail/type_mat3x3.hpp"
+
37 #include "../detail/type_mat3x4.hpp"
+
38 #include "../detail/type_mat4x2.hpp"
+
39 #include "../detail/type_mat4x3.hpp"
+
40 #include "../detail/type_mat4x4.hpp"
+
41 
+
42 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
43 # pragma message("GLM: GLM_GTC_type_precision extension included")
+
44 #endif
+
45 
+
46 namespace glm
+
47 {
+
49  // Signed int vector types
+
50 
+
53 
+
56  typedef detail::int8 lowp_int8;
+
57 
+
60  typedef detail::int16 lowp_int16;
+
61 
+
64  typedef detail::int32 lowp_int32;
+
65 
+
68  typedef detail::int64 lowp_int64;
+
69 
+
72  typedef detail::int8 lowp_int8_t;
+
73 
+
76  typedef detail::int16 lowp_int16_t;
+
77 
+
80  typedef detail::int32 lowp_int32_t;
+
81 
+ +
85 
+
88  typedef detail::int8 lowp_i8;
+
89 
+
92  typedef detail::int16 lowp_i16;
+
93 
+
96  typedef detail::int32 lowp_i32;
+
97 
+
100  typedef detail::int64 lowp_i64;
+
101 
+
104  typedef detail::int8 mediump_int8;
+
105 
+
108  typedef detail::int16 mediump_int16;
+
109 
+
112  typedef detail::int32 mediump_int32;
+
113 
+ +
117 
+
120  typedef detail::int8 mediump_int8_t;
+
121 
+
124  typedef detail::int16 mediump_int16_t;
+
125 
+
128  typedef detail::int32 mediump_int32_t;
+
129 
+ +
133 
+
136  typedef detail::int8 mediump_i8;
+
137 
+
140  typedef detail::int16 mediump_i16;
+
141 
+
144  typedef detail::int32 mediump_i32;
+
145 
+
148  typedef detail::int64 mediump_i64;
+
149 
+
152  typedef detail::int8 highp_int8;
+
153 
+
156  typedef detail::int16 highp_int16;
+
157 
+
160  typedef detail::int32 highp_int32;
+
161 
+
164  typedef detail::int64 highp_int64;
+
165 
+
168  typedef detail::int8 highp_int8_t;
+
169 
+
172  typedef detail::int16 highp_int16_t;
+
173 
+
176  typedef detail::int32 highp_int32_t;
+
177 
+ +
181 
+
184  typedef detail::int8 highp_i8;
+
185 
+
188  typedef detail::int16 highp_i16;
+
189 
+
192  typedef detail::int32 highp_i32;
+
193 
+
196  typedef detail::int64 highp_i64;
+
197 
+
198 
+
199 #if GLM_HAS_EXTENDED_INTEGER_TYPE
+
200  using std::int8_t;
+
201  using std::int16_t;
+
202  using std::int32_t;
+
203  using std::int64_t;
+
204 #else
+
205  typedef detail::int8 int8_t;
+
208 
+
211  typedef detail::int16 int16_t;
+
212 
+
215  typedef detail::int32 int32_t;
+
216 
+
219  typedef detail::int64 int64_t;
+
220 #endif
+
221 
+
224  typedef detail::int8 i8;
+
225 
+
228  typedef detail::int16 i16;
+
229 
+
232  typedef detail::int32 i32;
+
233 
+
236  typedef detail::int64 i64;
+
237 
+
239  // Unsigned int vector types
+
240 
+
243  typedef detail::uint8 lowp_uint8;
+
244 
+
247  typedef detail::uint16 lowp_uint16;
+
248 
+
251  typedef detail::uint32 lowp_uint32;
+
252 
+
255  typedef detail::uint64 lowp_uint64;
+
256 
+
259  typedef detail::uint8 lowp_uint8_t;
+
260 
+
263  typedef detail::uint16 lowp_uint16_t;
+
264 
+
267  typedef detail::uint32 lowp_uint32_t;
+
268 
+ +
272 
+
275  typedef detail::uint8 lowp_u8;
+
276 
+
279  typedef detail::uint16 lowp_u16;
+
280 
+
283  typedef detail::uint32 lowp_u32;
+
284 
+
287  typedef detail::uint64 lowp_u64;
+
288 
+
291  typedef detail::uint8 mediump_uint8;
+
292 
+
295  typedef detail::uint16 mediump_uint16;
+
296 
+
299  typedef detail::uint32 mediump_uint32;
+
300 
+ +
304 
+
307  typedef detail::uint8 mediump_uint8_t;
+
308 
+
311  typedef detail::uint16 mediump_uint16_t;
+
312 
+
315  typedef detail::uint32 mediump_uint32_t;
+
316 
+ +
320 
+
323  typedef detail::uint8 mediump_u8;
+
324 
+
327  typedef detail::uint16 mediump_u16;
+
328 
+
331  typedef detail::uint32 mediump_u32;
+
332 
+
335  typedef detail::uint64 mediump_u64;
+
336 
+
339  typedef detail::uint8 highp_uint8;
+
340 
+
343  typedef detail::uint16 highp_uint16;
+
344 
+
347  typedef detail::uint32 highp_uint32;
+
348 
+ +
352 
+
355  typedef detail::uint8 highp_uint8_t;
+
356 
+
359  typedef detail::uint16 highp_uint16_t;
+
360 
+
363  typedef detail::uint32 highp_uint32_t;
+
364 
+ +
368 
+
371  typedef detail::uint8 highp_u8;
+
372 
+
375  typedef detail::uint16 highp_u16;
+
376 
+
379  typedef detail::uint32 highp_u32;
+
380 
+
383  typedef detail::uint64 highp_u64;
+
384 
+
385 #if GLM_HAS_EXTENDED_INTEGER_TYPE
+
386  using std::uint8_t;
+
387  using std::uint16_t;
+
388  using std::uint32_t;
+
389  using std::uint64_t;
+
390 #else
+
391  typedef detail::uint8 uint8_t;
+
394 
+
397  typedef detail::uint16 uint16_t;
+
398 
+
401  typedef detail::uint32 uint32_t;
+
402 
+
405  typedef detail::uint64 uint64_t;
+
406 #endif
+
407 
+
410  typedef detail::uint8 u8;
+
411 
+
414  typedef detail::uint16 u16;
+
415 
+
418  typedef detail::uint32 u32;
+
419 
+
422  typedef detail::uint64 u64;
+
423 
+
424 
+
425 
+
426 
+
427 
+
429  // Float vector types
+
430 
+
433  typedef float float32;
+
434 
+
437  typedef double float64;
+
438 
+
441  typedef float32 lowp_float32;
+
442 
+
445  typedef float64 lowp_float64;
+
446 
+
449  typedef float32 lowp_float32_t;
+
450 
+
453  typedef float64 lowp_float64_t;
+
454 
+
457  typedef float32 lowp_f32;
+
458 
+
461  typedef float64 lowp_f64;
+
462 
+
465  typedef float32 lowp_float32;
+
466 
+
469  typedef float64 lowp_float64;
+
470 
+
473  typedef float32 lowp_float32_t;
+
474 
+
477  typedef float64 lowp_float64_t;
+
478 
+
481  typedef float32 lowp_f32;
+
482 
+
485  typedef float64 lowp_f64;
+
486 
+
487 
+
490  typedef float32 lowp_float32;
+
491 
+
494  typedef float64 lowp_float64;
+
495 
+
498  typedef float32 lowp_float32_t;
+
499 
+
502  typedef float64 lowp_float64_t;
+
503 
+
506  typedef float32 lowp_f32;
+
507 
+
510  typedef float64 lowp_f64;
+
511 
+
512 
+
515  typedef float32 mediump_float32;
+
516 
+
519  typedef float64 mediump_float64;
+
520 
+
523  typedef float32 mediump_float32_t;
+
524 
+
527  typedef float64 mediump_float64_t;
+
528 
+
531  typedef float32 mediump_f32;
+
532 
+
535  typedef float64 mediump_f64;
+
536 
+
537 
+
540  typedef float32 highp_float32;
+
541 
+
544  typedef float64 highp_float64;
+
545 
+
548  typedef float32 highp_float32_t;
+
549 
+
552  typedef float64 highp_float64_t;
+
553 
+
556  typedef float32 highp_f32;
+
557 
+
560  typedef float64 highp_f64;
+
561 
+
562 
+
563 #if(defined(GLM_PRECISION_LOWP_FLOAT))
+
564  typedef lowp_float32_t float32_t;
+
567 
+
570  typedef lowp_float64_t float64_t;
+
571 
+
574  typedef lowp_f32 f32;
+
575 
+
578  typedef lowp_f64 f64;
+
579 
+
580 #elif(defined(GLM_PRECISION_MEDIUMP_FLOAT))
+
581  typedef mediump_float32 float32_t;
+
584 
+
587  typedef mediump_float64 float64_t;
+
588 
+
591  typedef mediump_float32 f32;
+
592 
+
595  typedef mediump_float64 f64;
+
596 
+
597 #else//(defined(GLM_PRECISION_HIGHP_FLOAT))
+
598 
+
601  typedef highp_float32_t float32_t;
+
602 
+
605  typedef highp_float64_t float64_t;
+
606 
+
609  typedef highp_float32_t f32;
+
610 
+
613  typedef highp_float64_t f64;
+
614 #endif
+
615 
+
616 
+
619  typedef vec<1, float, lowp> lowp_fvec1;
+
620 
+
623  typedef vec<2, float, lowp> lowp_fvec2;
+
624 
+
627  typedef vec<3, float, lowp> lowp_fvec3;
+
628 
+
631  typedef vec<4, float, lowp> lowp_fvec4;
+
632 
+
633 
+
636  typedef vec<1, float, mediump> mediump_fvec1;
+
637 
+
640  typedef vec<2, float, mediump> mediump_fvec2;
+
641 
+
644  typedef vec<3, float, mediump> mediump_fvec3;
+
645 
+
648  typedef vec<4, float, mediump> mediump_fvec4;
+
649 
+
650 
+
653  typedef vec<1, float, highp> highp_fvec1;
+
654 
+
657  typedef vec<2, float, highp> highp_fvec2;
+
658 
+
661  typedef vec<3, float, highp> highp_fvec3;
+
662 
+
665  typedef vec<4, float, highp> highp_fvec4;
+
666 
+
667 
+
670  typedef vec<1, f32, lowp> lowp_f32vec1;
+
671 
+
674  typedef vec<2, f32, lowp> lowp_f32vec2;
+
675 
+
678  typedef vec<3, f32, lowp> lowp_f32vec3;
+
679 
+
682  typedef vec<4, f32, lowp> lowp_f32vec4;
+
683 
+
686  typedef vec<1, f32, mediump> mediump_f32vec1;
+
687 
+
690  typedef vec<2, f32, mediump> mediump_f32vec2;
+
691 
+
694  typedef vec<3, f32, mediump> mediump_f32vec3;
+
695 
+
698  typedef vec<4, f32, mediump> mediump_f32vec4;
+
699 
+
702  typedef vec<1, f32, highp> highp_f32vec1;
+
703 
+
706  typedef vec<2, f32, highp> highp_f32vec2;
+
707 
+
710  typedef vec<3, f32, highp> highp_f32vec3;
+
711 
+
714  typedef vec<4, f32, highp> highp_f32vec4;
+
715 
+
716 
+
719  typedef vec<1, f64, lowp> lowp_f64vec1;
+
720 
+
723  typedef vec<2, f64, lowp> lowp_f64vec2;
+
724 
+
727  typedef vec<3, f64, lowp> lowp_f64vec3;
+
728 
+
731  typedef vec<4, f64, lowp> lowp_f64vec4;
+
732 
+
735  typedef vec<1, f64, mediump> mediump_f64vec1;
+
736 
+
739  typedef vec<2, f64, mediump> mediump_f64vec2;
+
740 
+
743  typedef vec<3, f64, mediump> mediump_f64vec3;
+
744 
+
747  typedef vec<4, f64, mediump> mediump_f64vec4;
+
748 
+
751  typedef vec<1, f64, highp> highp_f64vec1;
+
752 
+
755  typedef vec<2, f64, highp> highp_f64vec2;
+
756 
+
759  typedef vec<3, f64, highp> highp_f64vec3;
+
760 
+
763  typedef vec<4, f64, highp> highp_f64vec4;
+
764 
+
765 
+
766 
+
768  // Float matrix types
+
769 
+
772  //typedef lowp_f32 lowp_fmat1x1;
+
773 
+
776  typedef mat<2, 2, f32, lowp> lowp_fmat2x2;
+
777 
+
780  typedef mat<2, 3, f32, lowp> lowp_fmat2x3;
+
781 
+
784  typedef mat<2, 4, f32, lowp> lowp_fmat2x4;
+
785 
+
788  typedef mat<3, 2, f32, lowp> lowp_fmat3x2;
+
789 
+
792  typedef mat<3, 3, f32, lowp> lowp_fmat3x3;
+
793 
+
796  typedef mat<3, 4, f32, lowp> lowp_fmat3x4;
+
797 
+
800  typedef mat<4, 2, f32, lowp> lowp_fmat4x2;
+
801 
+
804  typedef mat<4, 3, f32, lowp> lowp_fmat4x3;
+
805 
+
808  typedef mat<4, 4, f32, lowp> lowp_fmat4x4;
+
809 
+
812  //typedef lowp_fmat1x1 lowp_fmat1;
+
813 
+
816  typedef lowp_fmat2x2 lowp_fmat2;
+
817 
+
820  typedef lowp_fmat3x3 lowp_fmat3;
+
821 
+
824  typedef lowp_fmat4x4 lowp_fmat4;
+
825 
+
826 
+
829  //typedef mediump_f32 mediump_fmat1x1;
+
830 
+
833  typedef mat<2, 2, f32, mediump> mediump_fmat2x2;
+
834 
+
837  typedef mat<2, 3, f32, mediump> mediump_fmat2x3;
+
838 
+
841  typedef mat<2, 4, f32, mediump> mediump_fmat2x4;
+
842 
+
845  typedef mat<3, 2, f32, mediump> mediump_fmat3x2;
+
846 
+
849  typedef mat<3, 3, f32, mediump> mediump_fmat3x3;
+
850 
+
853  typedef mat<3, 4, f32, mediump> mediump_fmat3x4;
+
854 
+
857  typedef mat<4, 2, f32, mediump> mediump_fmat4x2;
+
858 
+
861  typedef mat<4, 3, f32, mediump> mediump_fmat4x3;
+
862 
+
865  typedef mat<4, 4, f32, mediump> mediump_fmat4x4;
+
866 
+
869  //typedef mediump_fmat1x1 mediump_fmat1;
+
870 
+ +
874 
+ +
878 
+ +
882 
+
883 
+
886  //typedef highp_f32 highp_fmat1x1;
+
887 
+
890  typedef mat<2, 2, f32, highp> highp_fmat2x2;
+
891 
+
894  typedef mat<2, 3, f32, highp> highp_fmat2x3;
+
895 
+
898  typedef mat<2, 4, f32, highp> highp_fmat2x4;
+
899 
+
902  typedef mat<3, 2, f32, highp> highp_fmat3x2;
+
903 
+
906  typedef mat<3, 3, f32, highp> highp_fmat3x3;
+
907 
+
910  typedef mat<3, 4, f32, highp> highp_fmat3x4;
+
911 
+
914  typedef mat<4, 2, f32, highp> highp_fmat4x2;
+
915 
+
918  typedef mat<4, 3, f32, highp> highp_fmat4x3;
+
919 
+
922  typedef mat<4, 4, f32, highp> highp_fmat4x4;
+
923 
+
926  //typedef highp_fmat1x1 highp_fmat1;
+
927 
+
930  typedef highp_fmat2x2 highp_fmat2;
+
931 
+
934  typedef highp_fmat3x3 highp_fmat3;
+
935 
+
938  typedef highp_fmat4x4 highp_fmat4;
+
939 
+
940 
+
943  //typedef f32 lowp_f32mat1x1;
+
944 
+
947  typedef mat<2, 2, f32, lowp> lowp_f32mat2x2;
+
948 
+
951  typedef mat<2, 3, f32, lowp> lowp_f32mat2x3;
+
952 
+
955  typedef mat<2, 4, f32, lowp> lowp_f32mat2x4;
+
956 
+
959  typedef mat<3, 2, f32, lowp> lowp_f32mat3x2;
+
960 
+
963  typedef mat<3, 3, f32, lowp> lowp_f32mat3x3;
+
964 
+
967  typedef mat<3, 4, f32, lowp> lowp_f32mat3x4;
+
968 
+
971  typedef mat<4, 2, f32, lowp> lowp_f32mat4x2;
+
972 
+
975  typedef mat<4, 3, f32, lowp> lowp_f32mat4x3;
+
976 
+
979  typedef mat<4, 4, f32, lowp> lowp_f32mat4x4;
+
980 
+
983  //typedef detail::tmat1x1<f32, lowp> lowp_f32mat1;
+
984 
+ +
988 
+ +
992 
+ +
996 
+
997 
+
1000  //typedef f32 mediump_f32mat1x1;
+
1001 
+
1004  typedef mat<2, 2, f32, mediump> mediump_f32mat2x2;
+
1005 
+
1008  typedef mat<2, 3, f32, mediump> mediump_f32mat2x3;
+
1009 
+
1012  typedef mat<2, 4, f32, mediump> mediump_f32mat2x4;
+
1013 
+
1016  typedef mat<3, 2, f32, mediump> mediump_f32mat3x2;
+
1017 
+
1020  typedef mat<3, 3, f32, mediump> mediump_f32mat3x3;
+
1021 
+
1024  typedef mat<3, 4, f32, mediump> mediump_f32mat3x4;
+
1025 
+
1028  typedef mat<4, 2, f32, mediump> mediump_f32mat4x2;
+
1029 
+
1032  typedef mat<4, 3, f32, mediump> mediump_f32mat4x3;
+
1033 
+
1036  typedef mat<4, 4, f32, mediump> mediump_f32mat4x4;
+
1037 
+
1040  //typedef detail::tmat1x1<f32, mediump> f32mat1;
+
1041 
+ +
1045 
+ +
1049 
+ +
1053 
+
1054 
+
1057  //typedef f32 highp_f32mat1x1;
+
1058 
+
1061  typedef mat<2, 2, f32, highp> highp_f32mat2x2;
+
1062 
+
1065  typedef mat<2, 3, f32, highp> highp_f32mat2x3;
+
1066 
+
1069  typedef mat<2, 4, f32, highp> highp_f32mat2x4;
+
1070 
+
1073  typedef mat<3, 2, f32, highp> highp_f32mat3x2;
+
1074 
+
1077  typedef mat<3, 3, f32, highp> highp_f32mat3x3;
+
1078 
+
1081  typedef mat<3, 4, f32, highp> highp_f32mat3x4;
+
1082 
+
1085  typedef mat<4, 2, f32, highp> highp_f32mat4x2;
+
1086 
+
1089  typedef mat<4, 3, f32, highp> highp_f32mat4x3;
+
1090 
+
1093  typedef mat<4, 4, f32, highp> highp_f32mat4x4;
+
1094 
+
1097  //typedef detail::tmat1x1<f32, highp> f32mat1;
+
1098 
+ +
1102 
+ +
1106 
+ +
1110 
+
1111 
+
1114  //typedef f64 lowp_f64mat1x1;
+
1115 
+
1118  typedef mat<2, 2, f64, lowp> lowp_f64mat2x2;
+
1119 
+
1122  typedef mat<2, 3, f64, lowp> lowp_f64mat2x3;
+
1123 
+
1126  typedef mat<2, 4, f64, lowp> lowp_f64mat2x4;
+
1127 
+
1130  typedef mat<3, 2, f64, lowp> lowp_f64mat3x2;
+
1131 
+
1134  typedef mat<3, 3, f64, lowp> lowp_f64mat3x3;
+
1135 
+
1138  typedef mat<3, 4, f64, lowp> lowp_f64mat3x4;
+
1139 
+
1142  typedef mat<4, 2, f64, lowp> lowp_f64mat4x2;
+
1143 
+
1146  typedef mat<4, 3, f64, lowp> lowp_f64mat4x3;
+
1147 
+
1150  typedef mat<4, 4, f64, lowp> lowp_f64mat4x4;
+
1151 
+
1154  //typedef lowp_f64mat1x1 lowp_f64mat1;
+
1155 
+
1158  typedef lowp_f64mat2x2 lowp_f64mat2;
+
1159 
+
1162  typedef lowp_f64mat3x3 lowp_f64mat3;
+
1163 
+
1166  typedef lowp_f64mat4x4 lowp_f64mat4;
+
1167 
+
1168 
+
1171  //typedef f64 Highp_f64mat1x1;
+
1172 
+
1175  typedef mat<2, 2, f64, mediump> mediump_f64mat2x2;
+
1176 
+
1179  typedef mat<2, 3, f64, mediump> mediump_f64mat2x3;
+
1180 
+
1183  typedef mat<2, 4, f64, mediump> mediump_f64mat2x4;
+
1184 
+
1187  typedef mat<3, 2, f64, mediump> mediump_f64mat3x2;
+
1188 
+
1191  typedef mat<3, 3, f64, mediump> mediump_f64mat3x3;
+
1192 
+
1195  typedef mat<3, 4, f64, mediump> mediump_f64mat3x4;
+
1196 
+
1199  typedef mat<4, 2, f64, mediump> mediump_f64mat4x2;
+
1200 
+
1203  typedef mat<4, 3, f64, mediump> mediump_f64mat4x3;
+
1204 
+
1207  typedef mat<4, 4, f64, mediump> mediump_f64mat4x4;
+
1208 
+
1211  //typedef mediump_f64mat1x1 mediump_f64mat1;
+
1212 
+ +
1216 
+ +
1220 
+ +
1224 
+
1227  //typedef f64 highp_f64mat1x1;
+
1228 
+
1231  typedef mat<2, 2, f64, highp> highp_f64mat2x2;
+
1232 
+
1235  typedef mat<2, 3, f64, highp> highp_f64mat2x3;
+
1236 
+
1239  typedef mat<2, 4, f64, highp> highp_f64mat2x4;
+
1240 
+
1243  typedef mat<3, 2, f64, highp> highp_f64mat3x2;
+
1244 
+
1247  typedef mat<3, 3, f64, highp> highp_f64mat3x3;
+
1248 
+
1251  typedef mat<3, 4, f64, highp> highp_f64mat3x4;
+
1252 
+
1255  typedef mat<4, 2, f64, highp> highp_f64mat4x2;
+
1256 
+
1259  typedef mat<4, 3, f64, highp> highp_f64mat4x3;
+
1260 
+
1263  typedef mat<4, 4, f64, highp> highp_f64mat4x4;
+
1264 
+
1267  //typedef highp_f64mat1x1 highp_f64mat1;
+
1268 
+ +
1272 
+ +
1276 
+ +
1280 
+
1281 
+
1283  // Signed int vector types
+
1284 
+
1287  typedef vec<1, int, lowp> lowp_ivec1;
+
1288 
+
1291  typedef vec<2, int, lowp> lowp_ivec2;
+
1292 
+
1295  typedef vec<3, int, lowp> lowp_ivec3;
+
1296 
+
1299  typedef vec<4, int, lowp> lowp_ivec4;
+
1300 
+
1301 
+
1304  typedef vec<1, int, mediump> mediump_ivec1;
+
1305 
+
1308  typedef vec<2, int, mediump> mediump_ivec2;
+
1309 
+
1312  typedef vec<3, int, mediump> mediump_ivec3;
+
1313 
+
1316  typedef vec<4, int, mediump> mediump_ivec4;
+
1317 
+
1318 
+
1321  typedef vec<1, int, highp> highp_ivec1;
+
1322 
+
1325  typedef vec<2, int, highp> highp_ivec2;
+
1326 
+
1329  typedef vec<3, int, highp> highp_ivec3;
+
1330 
+
1333  typedef vec<4, int, highp> highp_ivec4;
+
1334 
+
1335 
+
1338  typedef vec<1, i8, lowp> lowp_i8vec1;
+
1339 
+
1342  typedef vec<2, i8, lowp> lowp_i8vec2;
+
1343 
+
1346  typedef vec<3, i8, lowp> lowp_i8vec3;
+
1347 
+
1350  typedef vec<4, i8, lowp> lowp_i8vec4;
+
1351 
+
1352 
+
1355  typedef vec<1, i8, mediump> mediump_i8vec1;
+
1356 
+
1359  typedef vec<2, i8, mediump> mediump_i8vec2;
+
1360 
+
1363  typedef vec<3, i8, mediump> mediump_i8vec3;
+
1364 
+
1367  typedef vec<4, i8, mediump> mediump_i8vec4;
+
1368 
+
1369 
+
1372  typedef vec<1, i8, highp> highp_i8vec1;
+
1373 
+
1376  typedef vec<2, i8, highp> highp_i8vec2;
+
1377 
+
1380  typedef vec<3, i8, highp> highp_i8vec3;
+
1381 
+
1384  typedef vec<4, i8, highp> highp_i8vec4;
+
1385 
+
1386 
+
1389  typedef vec<1, i16, lowp> lowp_i16vec1;
+
1390 
+
1393  typedef vec<2, i16, lowp> lowp_i16vec2;
+
1394 
+
1397  typedef vec<3, i16, lowp> lowp_i16vec3;
+
1398 
+
1401  typedef vec<4, i16, lowp> lowp_i16vec4;
+
1402 
+
1403 
+
1406  typedef vec<1, i16, mediump> mediump_i16vec1;
+
1407 
+
1410  typedef vec<2, i16, mediump> mediump_i16vec2;
+
1411 
+
1414  typedef vec<3, i16, mediump> mediump_i16vec3;
+
1415 
+
1418  typedef vec<4, i16, mediump> mediump_i16vec4;
+
1419 
+
1420 
+
1423  typedef vec<1, i16, highp> highp_i16vec1;
+
1424 
+
1427  typedef vec<2, i16, highp> highp_i16vec2;
+
1428 
+
1431  typedef vec<3, i16, highp> highp_i16vec3;
+
1432 
+
1435  typedef vec<4, i16, highp> highp_i16vec4;
+
1436 
+
1437 
+
1440  typedef vec<1, i32, lowp> lowp_i32vec1;
+
1441 
+
1444  typedef vec<2, i32, lowp> lowp_i32vec2;
+
1445 
+
1448  typedef vec<3, i32, lowp> lowp_i32vec3;
+
1449 
+
1452  typedef vec<4, i32, lowp> lowp_i32vec4;
+
1453 
+
1454 
+
1457  typedef vec<1, i32, mediump> mediump_i32vec1;
+
1458 
+
1461  typedef vec<2, i32, mediump> mediump_i32vec2;
+
1462 
+
1465  typedef vec<3, i32, mediump> mediump_i32vec3;
+
1466 
+
1469  typedef vec<4, i32, mediump> mediump_i32vec4;
+
1470 
+
1471 
+
1474  typedef vec<1, i32, highp> highp_i32vec1;
+
1475 
+
1478  typedef vec<2, i32, highp> highp_i32vec2;
+
1479 
+
1482  typedef vec<3, i32, highp> highp_i32vec3;
+
1483 
+
1486  typedef vec<4, i32, highp> highp_i32vec4;
+
1487 
+
1488 
+
1491  typedef vec<1, i64, lowp> lowp_i64vec1;
+
1492 
+
1495  typedef vec<2, i64, lowp> lowp_i64vec2;
+
1496 
+
1499  typedef vec<3, i64, lowp> lowp_i64vec3;
+
1500 
+
1503  typedef vec<4, i64, lowp> lowp_i64vec4;
+
1504 
+
1505 
+
1508  typedef vec<1, i64, mediump> mediump_i64vec1;
+
1509 
+
1512  typedef vec<2, i64, mediump> mediump_i64vec2;
+
1513 
+
1516  typedef vec<3, i64, mediump> mediump_i64vec3;
+
1517 
+
1520  typedef vec<4, i64, mediump> mediump_i64vec4;
+
1521 
+
1522 
+
1525  typedef vec<1, i64, highp> highp_i64vec1;
+
1526 
+
1529  typedef vec<2, i64, highp> highp_i64vec2;
+
1530 
+
1533  typedef vec<3, i64, highp> highp_i64vec3;
+
1534 
+
1537  typedef vec<4, i64, highp> highp_i64vec4;
+
1538 
+
1539 
+
1541  // Unsigned int vector types
+
1542 
+
1545  typedef vec<1, uint, lowp> lowp_uvec1;
+
1546 
+
1549  typedef vec<2, uint, lowp> lowp_uvec2;
+
1550 
+
1553  typedef vec<3, uint, lowp> lowp_uvec3;
+
1554 
+
1557  typedef vec<4, uint, lowp> lowp_uvec4;
+
1558 
+
1559 
+
1562  typedef vec<1, uint, mediump> mediump_uvec1;
+
1563 
+
1566  typedef vec<2, uint, mediump> mediump_uvec2;
+
1567 
+
1570  typedef vec<3, uint, mediump> mediump_uvec3;
+
1571 
+
1574  typedef vec<4, uint, mediump> mediump_uvec4;
+
1575 
+
1576 
+
1579  typedef vec<1, uint, highp> highp_uvec1;
+
1580 
+
1583  typedef vec<2, uint, highp> highp_uvec2;
+
1584 
+
1587  typedef vec<3, uint, highp> highp_uvec3;
+
1588 
+
1591  typedef vec<4, uint, highp> highp_uvec4;
+
1592 
+
1593 
+
1596  typedef vec<1, u8, lowp> lowp_u8vec1;
+
1597 
+
1600  typedef vec<2, u8, lowp> lowp_u8vec2;
+
1601 
+
1604  typedef vec<3, u8, lowp> lowp_u8vec3;
+
1605 
+
1608  typedef vec<4, u8, lowp> lowp_u8vec4;
+
1609 
+
1610 
+
1613  typedef vec<1, u8, mediump> mediump_u8vec1;
+
1614 
+
1617  typedef vec<2, u8, mediump> mediump_u8vec2;
+
1618 
+
1621  typedef vec<3, u8, mediump> mediump_u8vec3;
+
1622 
+
1625  typedef vec<4, u8, mediump> mediump_u8vec4;
+
1626 
+
1627 
+
1630  typedef vec<1, u8, highp> highp_u8vec1;
+
1631 
+
1634  typedef vec<2, u8, highp> highp_u8vec2;
+
1635 
+
1638  typedef vec<3, u8, highp> highp_u8vec3;
+
1639 
+
1642  typedef vec<4, u8, highp> highp_u8vec4;
+
1643 
+
1644 
+
1647  typedef vec<1, u16, lowp> lowp_u16vec1;
+
1648 
+
1651  typedef vec<2, u16, lowp> lowp_u16vec2;
+
1652 
+
1655  typedef vec<3, u16, lowp> lowp_u16vec3;
+
1656 
+
1659  typedef vec<4, u16, lowp> lowp_u16vec4;
+
1660 
+
1661 
+
1664  typedef vec<1, u16, mediump> mediump_u16vec1;
+
1665 
+
1668  typedef vec<2, u16, mediump> mediump_u16vec2;
+
1669 
+
1672  typedef vec<3, u16, mediump> mediump_u16vec3;
+
1673 
+
1676  typedef vec<4, u16, mediump> mediump_u16vec4;
+
1677 
+
1678 
+
1681  typedef vec<1, u16, highp> highp_u16vec1;
+
1682 
+
1685  typedef vec<2, u16, highp> highp_u16vec2;
+
1686 
+
1689  typedef vec<3, u16, highp> highp_u16vec3;
+
1690 
+
1693  typedef vec<4, u16, highp> highp_u16vec4;
+
1694 
+
1695 
+
1698  typedef vec<1, u32, lowp> lowp_u32vec1;
+
1699 
+
1702  typedef vec<2, u32, lowp> lowp_u32vec2;
+
1703 
+
1706  typedef vec<3, u32, lowp> lowp_u32vec3;
+
1707 
+
1710  typedef vec<4, u32, lowp> lowp_u32vec4;
+
1711 
+
1712 
+
1715  typedef vec<1, u32, mediump> mediump_u32vec1;
+
1716 
+
1719  typedef vec<2, u32, mediump> mediump_u32vec2;
+
1720 
+
1723  typedef vec<3, u32, mediump> mediump_u32vec3;
+
1724 
+
1727  typedef vec<4, u32, mediump> mediump_u32vec4;
+
1728 
+
1729 
+
1732  typedef vec<1, u32, highp> highp_u32vec1;
+
1733 
+
1736  typedef vec<2, u32, highp> highp_u32vec2;
+
1737 
+
1740  typedef vec<3, u32, highp> highp_u32vec3;
+
1741 
+
1744  typedef vec<4, u32, highp> highp_u32vec4;
+
1745 
+
1746 
+
1749  typedef vec<1, u64, lowp> lowp_u64vec1;
+
1750 
+
1753  typedef vec<2, u64, lowp> lowp_u64vec2;
+
1754 
+
1757  typedef vec<3, u64, lowp> lowp_u64vec3;
+
1758 
+
1761  typedef vec<4, u64, lowp> lowp_u64vec4;
+
1762 
+
1763 
+
1766  typedef vec<1, u64, mediump> mediump_u64vec1;
+
1767 
+
1770  typedef vec<2, u64, mediump> mediump_u64vec2;
+
1771 
+
1774  typedef vec<3, u64, mediump> mediump_u64vec3;
+
1775 
+
1778  typedef vec<4, u64, mediump> mediump_u64vec4;
+
1779 
+
1780 
+
1783  typedef vec<1, u64, highp> highp_u64vec1;
+
1784 
+
1787  typedef vec<2, u64, highp> highp_u64vec2;
+
1788 
+
1791  typedef vec<3, u64, highp> highp_u64vec3;
+
1792 
+
1795  typedef vec<4, u64, highp> highp_u64vec4;
+
1796 
+
1797 
+
1799  // Float vector types
+
1800 
+
1803  typedef float32 float32_t;
+
1804 
+
1807  typedef float32 f32;
+
1808 
+
1809 # ifndef GLM_FORCE_SINGLE_ONLY
+
1810 
+
1813  typedef float64 float64_t;
+
1814 
+
1817  typedef float64 f64;
+
1818 # endif//GLM_FORCE_SINGLE_ONLY
+
1819 
+
1822  typedef vec<1, float, defaultp> fvec1;
+
1823 
+
1826  typedef vec<2, float, defaultp> fvec2;
+
1827 
+
1830  typedef vec<3, float, defaultp> fvec3;
+
1831 
+
1834  typedef vec<4, float, defaultp> fvec4;
+
1835 
+
1836 
+
1839  typedef vec<1, f32, defaultp> f32vec1;
+
1840 
+
1843  typedef vec<2, f32, defaultp> f32vec2;
+
1844 
+
1847  typedef vec<3, f32, defaultp> f32vec3;
+
1848 
+
1851  typedef vec<4, f32, defaultp> f32vec4;
+
1852 
+
1853 # ifndef GLM_FORCE_SINGLE_ONLY
+
1854  typedef vec<1, f64, defaultp> f64vec1;
+
1857 
+
1860  typedef vec<2, f64, defaultp> f64vec2;
+
1861 
+
1864  typedef vec<3, f64, defaultp> f64vec3;
+
1865 
+
1868  typedef vec<4, f64, defaultp> f64vec4;
+
1869 # endif//GLM_FORCE_SINGLE_ONLY
+
1870 
+
1871 
+
1873  // Float matrix types
+
1874 
+
1877  //typedef detail::tmat1x1<f32> fmat1;
+
1878 
+
1881  typedef mat<2, 2, f32, defaultp> fmat2;
+
1882 
+
1885  typedef mat<3, 3, f32, defaultp> fmat3;
+
1886 
+
1889  typedef mat<4, 4, f32, defaultp> fmat4;
+
1890 
+
1891 
+
1894  //typedef f32 fmat1x1;
+
1895 
+
1898  typedef mat<2, 2, f32, defaultp> fmat2x2;
+
1899 
+
1902  typedef mat<2, 3, f32, defaultp> fmat2x3;
+
1903 
+
1906  typedef mat<2, 4, f32, defaultp> fmat2x4;
+
1907 
+
1910  typedef mat<3, 2, f32, defaultp> fmat3x2;
+
1911 
+
1914  typedef mat<3, 3, f32, defaultp> fmat3x3;
+
1915 
+
1918  typedef mat<3, 4, f32, defaultp> fmat3x4;
+
1919 
+
1922  typedef mat<4, 2, f32, defaultp> fmat4x2;
+
1923 
+
1926  typedef mat<4, 3, f32, defaultp> fmat4x3;
+
1927 
+
1930  typedef mat<4, 4, f32, defaultp> fmat4x4;
+
1931 
+
1932 
+
1935  //typedef detail::tmat1x1<f32, defaultp> f32mat1;
+
1936 
+
1939  typedef mat<2, 2, f32, defaultp> f32mat2;
+
1940 
+
1943  typedef mat<3, 3, f32, defaultp> f32mat3;
+
1944 
+
1947  typedef mat<4, 4, f32, defaultp> f32mat4;
+
1948 
+
1949 
+
1952  //typedef f32 f32mat1x1;
+
1953 
+
1956  typedef mat<2, 2, f32, defaultp> f32mat2x2;
+
1957 
+
1960  typedef mat<2, 3, f32, defaultp> f32mat2x3;
+
1961 
+
1964  typedef mat<2, 4, f32, defaultp> f32mat2x4;
+
1965 
+
1968  typedef mat<3, 2, f32, defaultp> f32mat3x2;
+
1969 
+
1972  typedef mat<3, 3, f32, defaultp> f32mat3x3;
+
1973 
+
1976  typedef mat<3, 4, f32, defaultp> f32mat3x4;
+
1977 
+
1980  typedef mat<4, 2, f32, defaultp> f32mat4x2;
+
1981 
+
1984  typedef mat<4, 3, f32, defaultp> f32mat4x3;
+
1985 
+
1988  typedef mat<4, 4, f32, defaultp> f32mat4x4;
+
1989 
+
1990 
+
1991 # ifndef GLM_FORCE_SINGLE_ONLY
+
1992 
+
1995  //typedef detail::tmat1x1<f64, defaultp> f64mat1;
+
1996 
+
1999  typedef mat<2, 2, f64, defaultp> f64mat2;
+
2000 
+
2003  typedef mat<3, 3, f64, defaultp> f64mat3;
+
2004 
+
2007  typedef mat<4, 4, f64, defaultp> f64mat4;
+
2008 
+
2009 
+
2012  //typedef f64 f64mat1x1;
+
2013 
+
2016  typedef mat<2, 2, f64, defaultp> f64mat2x2;
+
2017 
+
2020  typedef mat<2, 3, f64, defaultp> f64mat2x3;
+
2021 
+
2024  typedef mat<2, 4, f64, defaultp> f64mat2x4;
+
2025 
+
2028  typedef mat<3, 2, f64, defaultp> f64mat3x2;
+
2029 
+
2032  typedef mat<3, 3, f64, defaultp> f64mat3x3;
+
2033 
+
2036  typedef mat<3, 4, f64, defaultp> f64mat3x4;
+
2037 
+
2040  typedef mat<4, 2, f64, defaultp> f64mat4x2;
+
2041 
+
2044  typedef mat<4, 3, f64, defaultp> f64mat4x3;
+
2045 
+
2048  typedef mat<4, 4, f64, defaultp> f64mat4x4;
+
2049 
+
2050 # endif//GLM_FORCE_SINGLE_ONLY
+
2051 
+
2053  // Quaternion types
+
2054 
+
2057  typedef qua<f32, defaultp> f32quat;
+
2058 
+
2061  typedef qua<f32, lowp> lowp_f32quat;
+
2062 
+
2065  typedef qua<f64, lowp> lowp_f64quat;
+
2066 
+
2069  typedef qua<f32, mediump> mediump_f32quat;
+
2070 
+
2071 # ifndef GLM_FORCE_SINGLE_ONLY
+
2072 
+
2075  typedef qua<f64, mediump> mediump_f64quat;
+
2076 
+
2079  typedef qua<f32, highp> highp_f32quat;
+
2080 
+
2083  typedef qua<f64, highp> highp_f64quat;
+
2084 
+
2087  typedef qua<f64, defaultp> f64quat;
+
2088 
+
2089 # endif//GLM_FORCE_SINGLE_ONLY
+
2090 
+
2092 }//namespace glm
+
2093 
+
2094 #include "type_precision.inl"
+
+
mat< 3, 3, f32, highp > highp_f32mat3x3
High single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:696
+
uint64 uint64_t
Default qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:145
+
vec< 1, i64, lowp > lowp_i64vec1
Low qualifier 64 bit signed integer scalar type.
Definition: fwd.hpp:284
+
mat< 3, 3, f32, mediump > mediump_fmat3
Medium single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:531
+
mat< 4, 4, f32, lowp > lowp_fmat4x4
Low single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:640
+
uint64 u64
Default qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:136
+
vec< 1, u16, mediump > mediump_u16vec1
Medium qualifier 16 bit unsigned integer scalar type.
Definition: fwd.hpp:351
+
mat< 3, 3, f32, highp > highp_fmat3x3
High single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:656
+
mat< 2, 3, f32, mediump > mediump_f32mat2x3
Medium single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:683
+
mat< 4, 4, f64, highp > highp_f64mat4x4
High double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:780
+
vec< 4, float, mediump > mediump_fvec4
Medium Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:436
+
mat< 2, 3, f32, highp > highp_fmat2x3
High single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:653
+
vec< 2, i16, highp > highp_i16vec2
High qualifier 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:255
+
mat< 2, 3, f64, defaultp > f64mat2x3
Double-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:783
+
mat< 2, 4, f64, lowp > lowp_f64mat2x4
Low double-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:754
+
mat< 2, 2, f64, defaultp > f64mat2x2
Double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:782
+
vec< 4, u8, mediump > mediump_u8vec4
Medium qualifier 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:334
+
vec< 4, f32, mediump > mediump_f32vec4
Medium single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:456
+
mat< 4, 2, f32, defaultp > f32mat4x2
Single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:708
+
vec< 2, u64, highp > highp_u64vec2
High qualifier 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:397
+
vec< 3, u16, highp > highp_u16vec3
High qualifier 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:358
+
float mediump_float32_t
Medium 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:160
+
double lowp_float64
Low 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:170
+
vec< 1, int, mediump > mediump_ivec1
Medium qualifier signed integer vector of 1 component type.
Definition: fwd.hpp:209
+
vec< 2, int, highp > highp_ivec2
High qualifier signed integer vector of 2 components type.
Definition: fwd.hpp:215
+
mat< 2, 2, f32, lowp > lowp_fmat2x2
Low single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:632
+
vec< 2, int, mediump > mediump_ivec2
Medium qualifier signed integer vector of 2 components type.
Definition: fwd.hpp:210
+
int16 mediump_int16_t
Medium qualifier 16 bit signed integer type.
Definition: fwd.hpp:55
+
vec< 4, i16, lowp > lowp_i16vec4
Low qualifier 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:247
+
mat< 2, 2, f32, highp > highp_f32mat2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:550
+
mat< 2, 2, f64, mediump > mediump_f64mat2x2
Medium double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:762
+
int64 mediump_int64
Medium qualifier 64 bit signed integer type.
Definition: fwd.hpp:79
+
int32 highp_i32
High qualifier 32 bit signed integer type.
Definition: fwd.hpp:61
+
mat< 2, 3, f32, defaultp > f32mat2x3
Single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:703
+
mat< 3, 2, f32, highp > highp_f32mat3x2
High single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:695
+
int16 highp_i16
High qualifier 16 bit signed integer type.
Definition: fwd.hpp:47
+
vec< 1, i16, highp > highp_i16vec1
High qualifier 16 bit signed integer scalar type.
Definition: fwd.hpp:254
+
uint16 mediump_u16
Medium qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:106
+
mat< 4, 3, f64, highp > highp_f64mat4x3
High double-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:779
+
mat< 4, 3, f32, defaultp > fmat4x3
Single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:669
+
mat< 4, 2, f32, lowp > lowp_fmat4x2
Low single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:638
+
mat< 2, 4, f32, lowp > lowp_fmat2x4
Low single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:634
+
vec< 2, i16, mediump > mediump_i16vec2
Medium qualifier 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:250
+
vec< 2, f64, highp > highp_f64vec2
High double-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:499
+
uint32 mediump_uint32
Medium qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:125
+
vec< 4, i32, mediump > mediump_i32vec4
Medium qualifier 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:272
+
vec< 1, float, lowp > lowp_fvec1
Low single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:428
+
vec< 4, u64, highp > highp_u64vec4
High qualifier 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:399
+
uint64 highp_uint64
High qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:140
+
vec< 3, i16, lowp > lowp_i16vec3
Low qualifier 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:246
+
vec< 1, float, mediump > mediump_fvec1
Medium single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:433
+
int8 mediump_int8
Medium qualifier 8 bit signed integer type.
Definition: fwd.hpp:37
+
mat< 3, 3, f32, mediump > mediump_fmat3x3
Medium single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:646
+
vec< 1, u32, mediump > mediump_u32vec1
Medium qualifier 32 bit unsigned integer scalar type.
Definition: fwd.hpp:371
+
vec< 3, f64, defaultp > f64vec3
Double-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:505
+
int64 lowp_i64
Low qualifier 64 bit signed integer type.
Definition: fwd.hpp:73
+
vec< 1, int, highp > highp_ivec1
High qualifier signed integer vector of 1 component type.
Definition: fwd.hpp:214
+
mat< 4, 2, f64, lowp > lowp_f64mat4x2
Low double-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:758
+
int32 highp_int32
High qualifier 32 bit signed integer type.
Definition: fwd.hpp:66
+
mat< 3, 3, f32, mediump > mediump_f32mat3
Medium single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:547
+
mat< 3, 3, f32, defaultp > f32mat3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:555
+
float highp_f32
High 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:151
+
int8 mediump_int8_t
Medium qualifier 8 bit signed integer type.
Definition: fwd.hpp:41
+
int16 highp_int16_t
High qualifier 16 bit signed integer type.
Definition: fwd.hpp:56
+
int64 lowp_int64_t
Low qualifier 64 bit signed integer type.
Definition: fwd.hpp:82
+
vec< 4, f32, highp > highp_f32vec4
High single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:461
+
mat< 2, 2, f64, defaultp > f64mat2
Double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:586
+
vec< 2, i32, mediump > mediump_i32vec2
Medium qualifier 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:270
+
int32 mediump_int32
Medium qualifier 32 bit signed integer type.
Definition: fwd.hpp:65
+
uint32 u32
Default qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:122
+
double float64
Double-qualifier floating-point scalar.
Definition: fwd.hpp:173
+
mat< 2, 2, f64, highp > highp_f64mat2x2
High double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:772
+
vec< 2, u32, mediump > mediump_u32vec2
Medium qualifier 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:372
+
mat< 3, 4, f64, lowp > lowp_f64mat3x4
Low double-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:757
+
uint16 lowp_uint16
Low qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:110
+
vec< 4, float, lowp > lowp_fvec4
Low single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:431
+
mat< 4, 4, f32, lowp > lowp_fmat4
Low single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:528
+
mat< 3, 4, f32, highp > highp_f32mat3x4
High single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:697
+
double highp_float64
High 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:172
+
uint32 highp_uint32_t
High qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:130
+
float mediump_f32
Medium 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:150
+
vec< 3, i8, highp > highp_i8vec3
High qualifier 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:236
+
mat< 2, 4, f32, defaultp > fmat2x4
Single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:664
+
mat< 2, 2, f32, highp > highp_fmat2x2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:652
+
mat< 3, 3, f64, highp > highp_f64mat3x3
High double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:776
+
vec< 4, int, highp > highp_ivec4
High qualifier signed integer vector of 4 components type.
Definition: fwd.hpp:217
+
float f32
Default 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:152
+
int8 lowp_i8
Low qualifier 8 bit signed integer type.
Definition: fwd.hpp:31
+
uint16 uint16_t
Default qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:117
+
uint8 u8
Default qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:94
+
qua< f64, defaultp > f64quat
Double-qualifier floating-point quaternion.
Definition: fwd.hpp:1230
+
mat< 3, 3, f32, mediump > mediump_f32mat3x3
Medium single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:686
+
vec< 1, f32, highp > highp_f32vec1
High single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:458
+
int64 lowp_int64
Low qualifier 64 bit signed integer type.
Definition: fwd.hpp:78
+
mat< 4, 2, f32, mediump > mediump_f32mat4x2
Medium single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:688
+
mat< 2, 3, f32, defaultp > fmat2x3
Single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:663
+
mat< 4, 3, f32, defaultp > f32mat4x3
Single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:709
+
mat< 4, 4, f32, mediump > mediump_f32mat4
Medium single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:548
+
mat< 2, 2, f32, mediump > mediump_f32mat2x2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:682
+
vec< 3, u32, mediump > mediump_u32vec3
Medium qualifier 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:373
+
mat< 2, 2, f32, highp > highp_f32mat2x2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:692
+
int16 lowp_i16
Low qualifier 16 bit signed integer type.
Definition: fwd.hpp:45
+
vec< 2, u8, highp > highp_u8vec2
High qualifier 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:337
+
int32 lowp_i32
Low qualifier 32 bit signed integer type.
Definition: fwd.hpp:59
+
mat< 4, 4, f32, mediump > mediump_f32mat4x4
Medium single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:690
+
int32 mediump_i32
Medium qualifier 32 bit signed integer type.
Definition: fwd.hpp:60
+
int8 lowp_int8
Low qualifier 8 bit signed integer type.
Definition: fwd.hpp:36
+
uint64 mediump_uint64
Medium qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:139
+
mat< 3, 2, f32, defaultp > f32mat3x2
Single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:705
+
mat< 2, 2, f32, lowp > lowp_f32mat2
Low single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:542
+
vec< 4, f64, lowp > lowp_f64vec4
Low double-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:491
+
vec< 1, u16, lowp > lowp_u16vec1
Low qualifier 16 bit unsigned integer scalar type.
Definition: fwd.hpp:346
+
vec< 4, u16, mediump > mediump_u16vec4
Medium qualifier 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:354
+
vec< 2, i8, highp > highp_i8vec2
High qualifier 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:235
+
detail::uint64 uint64
64 bit unsigned integer type.
+
int8 mediump_i8
Medium qualifier 8 bit signed integer type.
Definition: fwd.hpp:32
+
vec< 4, f64, mediump > mediump_f64vec4
Medium double-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:496
+
int16 i16
16 bit signed integer type.
Definition: fwd.hpp:48
+
uint8 lowp_u8
Low qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:91
+
vec< 1, u16, highp > highp_u16vec1
High qualifier 16 bit unsigned integer scalar type.
Definition: fwd.hpp:356
+
mat< 3, 3, f64, defaultp > f64mat3x3
Double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:786
+
vec< 4, i8, lowp > lowp_i8vec4
Low qualifier 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:227
+
mat< 3, 4, f64, mediump > mediump_f64mat3x4
Medium double-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:767
+
mat< 2, 3, f32, lowp > lowp_fmat2x3
Low single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:633
+
vec< 1, f64, lowp > lowp_f64vec1
Low double-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:488
+
uint16 highp_uint16
High qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:112
+
uint32 lowp_uint32_t
Low qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:128
+
vec< 4, int, mediump > mediump_ivec4
Medium qualifier signed integer vector of 4 components type.
Definition: fwd.hpp:212
+
mat< 4, 2, f64, defaultp > f64mat4x2
Double-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:788
+
int16 int16_t
16 bit signed integer type.
Definition: fwd.hpp:57
+
mat< 3, 3, f32, defaultp > f32mat3x3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:706
+
vec< 2, f32, highp > highp_f32vec2
High single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:459
+
vec< 2, f32, lowp > lowp_f32vec2
Low single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:449
+
mat< 4, 4, f32, defaultp > f32mat4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:556
+
mat< 4, 3, f64, defaultp > f64mat4x3
Double-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:789
+
vec< 3, i64, lowp > lowp_i64vec3
Low qualifier 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:286
+
vec< 2, f32, defaultp > f32vec2
Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:464
+
mat< 4, 4, f64, defaultp > f64mat4
Double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:588
+
vec< 2, i64, mediump > mediump_i64vec2
Medium qualifier 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:290
+
mat< 2, 4, f64, defaultp > f64mat2x4
Double-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:784
+
double mediump_float64
Medium 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:171
+
double lowp_float64_t
Low 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:175
+
double float64_t
Default 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:178
+
mat< 2, 4, f32, highp > highp_f32mat2x4
High single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:694
+
mat< 4, 4, f32, highp > highp_f32mat4
High single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:552
+
vec< 3, int, highp > highp_ivec3
High qualifier signed integer vector of 3 components type.
Definition: fwd.hpp:216
+
vec< 1, u64, highp > highp_u64vec1
High qualifier 64 bit unsigned integer scalar type.
Definition: fwd.hpp:396
+
uint64 mediump_uint64_t
Medium qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:143
+
vec< 3, u32, lowp > lowp_u32vec3
Low qualifier 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:368
+
int16 highp_int16
High qualifier 16 bit signed integer type.
Definition: fwd.hpp:52
+
mat< 3, 2, f32, lowp > lowp_fmat3x2
Low single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:635
+
mat< 3, 3, f32, lowp > lowp_f32mat3x3
Low single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:676
+
mat< 4, 4, f32, highp > highp_fmat4
High single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:536
+
mat< 2, 3, f64, mediump > mediump_f64mat2x3
Medium double-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:763
+
mat< 4, 4, f64, highp > highp_f64mat4
High double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:584
+
vec< 1, i8, lowp > lowp_i8vec1
Low qualifier 8 bit signed integer vector of 1 component type.
Definition: fwd.hpp:224
+
vec< 3, i32, highp > highp_i32vec3
High qualifier 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:276
+
mat< 2, 2, f32, highp > highp_fmat2
High single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:534
+
mat< 2, 2, f64, mediump > mediump_f64mat2
Medium double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:578
+
mat< 3, 2, f64, mediump > mediump_f64mat3x2
Medium double-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:765
+
int8 highp_int8
High qualifier 8 bit signed integer type.
Definition: fwd.hpp:38
+
vec< 4, int, lowp > lowp_ivec4
Low qualifier signed integer vector of 4 components type.
Definition: fwd.hpp:207
+
double mediump_float64_t
Medium 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:176
+
mat< 3, 3, f32, highp > highp_fmat3
High single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:535
+
vec< 3, f32, defaultp > fvec3
Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:445
+
vec< 1, uint, mediump > mediump_uvec1
Medium qualifier unsigned integer vector of 1 component type.
Definition: fwd.hpp:311
+
vec< 1, u64, lowp > lowp_u64vec1
Low qualifier 64 bit unsigned integer scalar type.
Definition: fwd.hpp:386
+
mat< 4, 2, f32, highp > highp_f32mat4x2
High single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:698
+
int16 lowp_int16_t
Low qualifier 16 bit signed integer type.
Definition: fwd.hpp:54
+
vec< 1, f64, defaultp > f64vec1
Double-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:503
+
vec< 1, i16, mediump > mediump_i16vec1
Medium qualifier 16 bit signed integer scalar type.
Definition: fwd.hpp:249
+
mat< 3, 2, f32, defaultp > fmat3x2
Single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:665
+
mat< 4, 3, f32, mediump > mediump_f32mat4x3
Medium single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:689
+
qua< f32, lowp > lowp_f32quat
Low single-qualifier floating-point quaternion.
Definition: fwd.hpp:1217
+
qua< f32, highp > highp_f32quat
High single-qualifier floating-point quaternion.
Definition: fwd.hpp:1219
+
mat< 2, 4, f32, highp > highp_fmat2x4
High single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:654
+
mat< 2, 2, f32, mediump > mediump_fmat2x2
Medium single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:642
+
vec< 3, f32, mediump > mediump_f32vec3
Medium single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:455
+
int64 highp_i64
High qualifier 64 bit signed integer type.
Definition: fwd.hpp:75
+
mat< 3, 2, f64, defaultp > f64mat3x2
Double-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:785
+
int64 highp_int64_t
High qualifier 64 bit signed integer type.
Definition: fwd.hpp:84
+
float float32_t
Default 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:162
+
mat< 3, 3, f32, defaultp > fmat3x3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:666
+
int32 int32_t
32 bit signed integer type.
Definition: fwd.hpp:71
+
uint8 lowp_uint8_t
Low qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:100
+
float float32
Single-qualifier floating-point scalar.
Definition: fwd.hpp:157
+
qua< f64, highp > highp_f64quat
High double-qualifier floating-point quaternion.
Definition: fwd.hpp:1229
+
mat< 4, 3, f64, mediump > mediump_f64mat4x3
Medium double-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:769
+
vec< 4, u32, highp > highp_u32vec4
High qualifier 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:379
+
int32 lowp_int32
Low qualifier 32 bit signed integer type.
Definition: fwd.hpp:64
+
int64 int64_t
64 bit signed integer type.
Definition: fwd.hpp:85
+
vec< 4, i64, lowp > lowp_i64vec4
Low qualifier 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:287
+
vec< 1, i8, mediump > mediump_i8vec1
Medium qualifier 8 bit signed integer scalar type.
Definition: fwd.hpp:229
+
vec< 2, u32, highp > highp_u32vec2
High qualifier 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:377
+
vec< 2, u16, lowp > lowp_u16vec2
Low qualifier 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:347
+
vec< 2, float, lowp > lowp_fvec2
Low single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:429
+
float lowp_float32
Low 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:154
+
uint8 highp_uint8_t
High qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:102
+
mat< 2, 2, f32, lowp > lowp_f32mat2x2
Low single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:672
+
vec< 2, float, mediump > mediump_fvec2
Medium Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:434
+
vec< 2, float, highp > highp_fvec2
High Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:439
+
mat< 4, 4, f32, lowp > lowp_f32mat4x4
Low single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:680
+
vec< 2, u8, lowp > lowp_u8vec2
Low qualifier 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:327
+
int64 mediump_int64_t
Medium qualifier 64 bit signed integer type.
Definition: fwd.hpp:83
+
mat< 2, 2, f64, lowp > lowp_f64mat2
Low double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:574
+
vec< 4, uint, lowp > lowp_uvec4
Low qualifier unsigned integer vector of 4 components type.
Definition: fwd.hpp:309
+
vec< 3, i16, highp > highp_i16vec3
High qualifier 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:256
+
vec< 3, int, lowp > lowp_ivec3
Low qualifier signed integer vector of 3 components type.
Definition: fwd.hpp:206
+
int64 mediump_i64
Medium qualifier 64 bit signed integer type.
Definition: fwd.hpp:74
+
vec< 4, u64, lowp > lowp_u64vec4
Low qualifier 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:389
+
uint32 highp_uint32
High qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:126
+
uint64 lowp_uint64
Low qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:138
+
vec< 4, u16, lowp > lowp_u16vec4
Low qualifier 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:349
+
mat< 4, 3, f32, lowp > lowp_fmat4x3
Low single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:639
+
vec< 3, f32, defaultp > f32vec3
Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:465
+
mat< 4, 4, f64, mediump > mediump_f64mat4x4
Medium double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:770
+
vec< 1, u8, mediump > mediump_u8vec1
Medium qualifier 8 bit unsigned integer scalar type.
Definition: fwd.hpp:331
+
double mediump_f64
Medium 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:166
+
int8 highp_i8
High qualifier 8 bit signed integer type.
Definition: fwd.hpp:33
+
uint8 highp_uint8
High qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:98
+
mat< 3, 3, f64, defaultp > f64mat3
Double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:587
+
vec< 3, i64, highp > highp_i64vec3
High qualifier 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:296
+
uint8 mediump_uint8_t
Medium qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:101
+
mat< 4, 4, f32, defaultp > f32mat4x4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:710
+
vec< 4, i8, highp > highp_i8vec4
High qualifier 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:237
+
int16 mediump_i16
Medium qualifier 16 bit signed integer type.
Definition: fwd.hpp:46
+
uint16 mediump_uint16_t
Medium qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:115
+
vec< 3, u8, mediump > mediump_u8vec3
Medium qualifier 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:333
+
mat< 4, 3, f32, mediump > mediump_fmat4x3
Medium single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:649
+
vec< 4, i8, mediump > mediump_i8vec4
Medium qualifier 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:232
+
uint8 lowp_uint8
Low qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:96
+
float highp_float32_t
High 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:161
+
int16 mediump_int16
Medium qualifier 16 bit signed integer type.
Definition: fwd.hpp:51
+
mat< 2, 2, f32, defaultp > f32mat2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:554
+
mat< 3, 3, f64, highp > highp_f64mat3
High double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:583
+
mat< 3, 3, f64, mediump > mediump_f64mat3
Medium double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:579
+
vec< 1, u8, highp > highp_u8vec1
High qualifier 8 bit unsigned integer scalar type.
Definition: fwd.hpp:336
+
int64 highp_int64
High qualifier 64 bit signed integer type.
Definition: fwd.hpp:80
+
vec< 1, int, lowp > lowp_ivec1
Low qualifier signed integer vector of 1 component type.
Definition: fwd.hpp:204
+
qua< f64, lowp > lowp_f64quat
Low double-qualifier floating-point quaternion.
Definition: fwd.hpp:1227
+
float highp_float32
High 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:156
+
mat< 4, 4, f64, lowp > lowp_f64mat4
Low double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:576
+
mat< 3, 4, f32, highp > highp_fmat3x4
High single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:657
+
vec< 4, i64, highp > highp_i64vec4
High qualifier 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:297
+
mat< 4, 2, f32, mediump > mediump_fmat4x2
Medium single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:648
+
mat< 3, 4, f32, defaultp > f32mat3x4
Single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:707
+
mat< 4, 3, f32, highp > highp_fmat4x3
High single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:659
+
vec< 4, u32, lowp > lowp_u32vec4
Low qualifier 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:369
+
vec< 2, f32, mediump > mediump_f32vec2
Medium single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:454
+
vec< 3, f64, highp > highp_f64vec3
High double-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:500
+
vec< 2, i32, highp > highp_i32vec2
High qualifier 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:275
+
vec< 1, f32, lowp > lowp_f32vec1
Low single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:448
+
vec< 3, u64, mediump > mediump_u64vec3
Medium qualifier 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:393
+
vec< 1, uint, lowp > lowp_uvec1
Low qualifier unsigned integer vector of 1 component type.
Definition: fwd.hpp:306
+
mat< 2, 4, f64, highp > highp_f64mat2x4
High double-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:774
+
mat< 2, 3, f32, highp > highp_f32mat2x3
High single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:693
+
vec< 3, u16, lowp > lowp_u16vec3
Low qualifier 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:348
+
vec< 1, u64, mediump > mediump_u64vec1
Medium qualifier 64 bit unsigned integer scalar type.
Definition: fwd.hpp:391
+
vec< 2, u32, lowp > lowp_u32vec2
Low qualifier 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:367
+
uint32 uint32_t
Default qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:131
+
mat< 2, 2, f32, defaultp > fmat2x2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:662
+
mat< 3, 4, f32, defaultp > fmat3x4
Single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:667
+
vec< 4, u8, highp > highp_u8vec4
High qualifier 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:339
+
mat< 4, 2, f32, lowp > lowp_f32mat4x2
Low single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:678
+
mat< 3, 2, f32, highp > highp_fmat3x2
High single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:655
+
int32 mediump_int32_t
Medium qualifier 32 bit signed integer type.
Definition: fwd.hpp:69
+
vec< 4, f64, highp > highp_f64vec4
High double-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:501
+
double highp_float64_t
High 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:177
+
int64 i64
64 bit signed integer type.
Definition: fwd.hpp:76
+
qua< f32, mediump > mediump_f32quat
Medium single-qualifier floating-point quaternion.
Definition: fwd.hpp:1218
+
vec< 4, uint, mediump > mediump_uvec4
Medium qualifier unsigned integer vector of 4 components type.
Definition: fwd.hpp:314
+
vec< 2, f64, mediump > mediump_f64vec2
Medium double-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:494
+
uint8 uint8_t
Default qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:103
+
vec< 1, u8, lowp > lowp_u8vec1
Low qualifier 8 bit unsigned integer scalar type.
Definition: fwd.hpp:326
+
vec< 1, i32, lowp > lowp_i32vec1
Low qualifier 32 bit signed integer scalar type.
Definition: fwd.hpp:264
+
mat< 4, 3, f64, lowp > lowp_f64mat4x3
Low double-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:759
+
vec< 1, float, highp > highp_fvec1
High single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:438
+
mat< 4, 4, f32, defaultp > fmat4x4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:670
+
vec< 2, u64, mediump > mediump_u64vec2
Medium qualifier 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:392
+
uint16 mediump_uint16
Medium qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:111
+
vec< 4, i16, highp > highp_i16vec4
High qualifier 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:257
+
float lowp_float32_t
Low 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:159
+
vec< 4, f32, lowp > lowp_f32vec4
Low single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:451
+
qua< f32, defaultp > f32quat
Single-qualifier floating-point quaternion.
Definition: fwd.hpp:1220
+
vec< 3, u8, highp > highp_u8vec3
High qualifier 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:338
+
int8 int8_t
8 bit signed integer type.
Definition: fwd.hpp:43
+
vec< 1, f32, defaultp > f32vec1
Single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:463
+
vec< 3, uint, lowp > lowp_uvec3
Low qualifier unsigned integer vector of 3 components type.
Definition: fwd.hpp:308
+
vec< 4, f64, defaultp > f64vec4
Double-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:506
+
vec< 1, f32, defaultp > fvec1
Single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:443
+
mat< 4, 4, f32, mediump > mediump_fmat4x4
Medium single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:650
+
vec< 2, uint, highp > highp_uvec2
High qualifier unsigned integer vector of 2 components type.
Definition: fwd.hpp:317
+
vec< 1, i64, mediump > mediump_i64vec1
Medium qualifier 64 bit signed integer scalar type.
Definition: fwd.hpp:289
+
uint64 highp_u64
High qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:135
+
int16 lowp_int16
Low qualifier 16 bit signed integer type.
Definition: fwd.hpp:50
+
vec< 4, u32, mediump > mediump_u32vec4
Medium qualifier 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:374
+
vec< 3, u8, lowp > lowp_u8vec3
Low qualifier 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:328
+
vec< 2, int, lowp > lowp_ivec2
Low qualifier signed integer vector of 2 components type.
Definition: fwd.hpp:205
+
int8 highp_int8_t
High qualifier 8 bit signed integer type.
Definition: fwd.hpp:42
+
vec< 4, i32, lowp > lowp_i32vec4
Low qualifier 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:267
+
vec< 1, f32, mediump > mediump_f32vec1
Medium single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:453
+
mat< 2, 4, f32, lowp > lowp_f32mat2x4
Low single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:674
+
mat< 3, 3, f64, mediump > mediump_f64mat3x3
Medium double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:766
+
mat< 2, 2, f32, defaultp > fmat2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:538
+
vec< 2, uint, mediump > mediump_uvec2
Medium qualifier unsigned integer vector of 2 components type.
Definition: fwd.hpp:312
+
vec< 4, f32, defaultp > f32vec4
Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:466
+
mat< 2, 3, f64, highp > highp_f64mat2x3
High double-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:773
+
mat< 4, 2, f64, mediump > mediump_f64mat4x2
Medium double-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:768
+
vec< 1, i16, lowp > lowp_i16vec1
Low qualifier 16 bit signed integer scalar type.
Definition: fwd.hpp:244
+
vec< 3, u16, mediump > mediump_u16vec3
Medium qualifier 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:353
+
uint64 lowp_u64
Low qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:133
+
uint64 mediump_u64
Medium qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:134
+
vec< 2, u64, lowp > lowp_u64vec2
Low qualifier 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:387
+
vec< 3, u64, highp > highp_u64vec3
High qualifier 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:398
+
vec< 2, i32, lowp > lowp_i32vec2
Low qualifier 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:265
+
vec< 2, i64, highp > highp_i64vec2
High qualifier 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:295
+
mat< 4, 4, f64, lowp > lowp_f64mat4x4
Low double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:760
+
int8 lowp_int8_t
Low qualifier 8 bit signed integer type.
Definition: fwd.hpp:40
+
mat< 4, 2, f32, defaultp > fmat4x2
Single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:668
+
vec< 4, u8, lowp > lowp_u8vec4
Low qualifier 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:329
+
mat< 3, 2, f32, mediump > mediump_f32mat3x2
Medium single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:685
+
mat< 2, 4, f32, mediump > mediump_f32mat2x4
Medium single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:684
+
mat< 3, 4, f32, lowp > lowp_f32mat3x4
Low single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:677
+
vec< 3, float, highp > highp_fvec3
High Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:440
+
uint8 mediump_u8
Medium qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:92
+
double highp_f64
High 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:167
+
mat< 3, 3, f32, lowp > lowp_fmat3x3
Low single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:636
+
vec< 4, u16, highp > highp_u16vec4
High qualifier 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:359
+
vec< 3, uint, mediump > mediump_uvec3
Medium qualifier unsigned integer vector of 3 components type.
Definition: fwd.hpp:313
+
vec< 2, f64, lowp > lowp_f64vec2
Low double-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:489
+
mat< 3, 2, f64, lowp > lowp_f64mat3x2
Low double-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:755
+
vec< 3, uint, highp > highp_uvec3
High qualifier unsigned integer vector of 3 components type.
Definition: fwd.hpp:318
+
uint16 highp_u16
High qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:107
+
vec< 2, uint, lowp > lowp_uvec2
Low qualifier unsigned integer vector of 2 components type.
Definition: fwd.hpp:307
+
vec< 4, uint, highp > highp_uvec4
High qualifier unsigned integer vector of 4 components type.
Definition: fwd.hpp:319
+
vec< 3, u64, lowp > lowp_u64vec3
Low qualifier 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:388
+
vec< 1, i64, highp > highp_i64vec1
High qualifier 64 bit signed integer scalar type.
Definition: fwd.hpp:294
+
mat< 4, 3, f32, highp > highp_f32mat4x3
High single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:699
+
mat< 2, 3, f32, mediump > mediump_fmat2x3
Medium single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:643
+
int32 i32
32 bit signed integer type.
Definition: fwd.hpp:62
+
mat< 3, 2, f32, mediump > mediump_fmat3x2
Medium single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:645
+
vec< 3, i16, mediump > mediump_i16vec3
Medium qualifier 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:251
+
vec< 1, u32, highp > highp_u32vec1
High qualifier 32 bit unsigned integer scalar type.
Definition: fwd.hpp:376
+
vec< 2, i8, lowp > lowp_i8vec2
Low qualifier 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:225
+
mat< 4, 4, f32, lowp > lowp_f32mat4
Low single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:544
+
mat< 2, 4, f64, mediump > mediump_f64mat2x4
Medium double-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:764
+
int8 i8
8 bit signed integer type.
Definition: fwd.hpp:34
+
uint8 mediump_uint8
Medium qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:97
+
mat< 3, 2, f32, lowp > lowp_f32mat3x2
Low single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:675
+
mat< 4, 4, f32, highp > highp_f32mat4x4
High single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:700
+
mat< 2, 2, f32, mediump > mediump_f32mat2
Medium single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:546
+
mat< 3, 4, f64, highp > highp_f64mat3x4
High double-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:777
+
float mediump_float32
Medium 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:155
+
mat< 4, 4, f32, mediump > mediump_fmat4
Medium single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:532
+
mat< 2, 2, f32, defaultp > f32mat2x2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:702
+
vec< 1, i8, highp > highp_i8vec1
High qualifier 8 bit signed integer scalar type.
Definition: fwd.hpp:234
+
vec< 4, float, highp > highp_fvec4
High Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:441
+
vec< 3, f32, lowp > lowp_f32vec3
Low single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:450
+
vec< 2, u16, highp > highp_u16vec2
High qualifier 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:357
+
vec< 3, i8, mediump > mediump_i8vec3
Medium qualifier 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:231
+
mat< 2, 3, f32, lowp > lowp_f32mat2x3
Low single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:673
+
vec< 3, f64, mediump > mediump_f64vec3
Medium double-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:495
+
vec< 3, f32, highp > highp_f32vec3
High single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:460
+
uint32 lowp_u32
Low qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:119
+
mat< 4, 2, f32, highp > highp_fmat4x2
High single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:658
+
uint64 highp_uint64_t
High qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:144
+
vec< 2, u16, mediump > mediump_u16vec2
Medium qualifier 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:352
+
mat< 2, 4, f32, mediump > mediump_fmat2x4
Medium single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:644
+
mat< 4, 3, f32, lowp > lowp_f32mat4x3
Low single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:679
+
mat< 4, 4, f32, defaultp > fmat4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:540
+
vec< 3, i32, mediump > mediump_i32vec3
Medium qualifier 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:271
+
vec< 2, u8, mediump > mediump_u8vec2
Medium qualifier 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:332
+
uint32 mediump_uint32_t
Medium qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:129
+
int32 lowp_int32_t
Low qualifier 32 bit signed integer type.
Definition: fwd.hpp:68
+
uint32 mediump_u32
Medium qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:120
+
mat< 3, 3, f32, defaultp > fmat3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:539
+
mat< 3, 4, f32, mediump > mediump_fmat3x4
Medium single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:647
+
vec< 3, int, mediump > mediump_ivec3
Medium qualifier signed integer vector of 3 components type.
Definition: fwd.hpp:211
+
uint16 lowp_u16
Low qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:105
+
uint32 highp_u32
High qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:121
+
mat< 3, 3, f64, lowp > lowp_f64mat3x3
Low double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:756
+
vec< 1, f64, highp > highp_f64vec1
High double-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:498
+
mat< 3, 3, f32, lowp > lowp_fmat3
Low single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:527
+
mat< 3, 3, f32, lowp > lowp_f32mat3
Low single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:543
+
vec< 2, f32, defaultp > fvec2
Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:444
+
mat< 3, 3, f32, highp > highp_f32mat3
High single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:551
+
uint16 highp_uint16_t
High qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:116
+
vec< 4, f32, defaultp > fvec4
Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:446
+
mat< 2, 4, f32, defaultp > f32mat2x4
Single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:704
+
uint8 highp_u8
High qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:93
+
qua< f64, mediump > mediump_f64quat
Medium double-qualifier floating-point quaternion.
Definition: fwd.hpp:1228
+
mat< 3, 4, f32, lowp > lowp_fmat3x4
Low single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:637
+
uint32 lowp_uint32
Low qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:124
+
mat< 2, 2, f32, lowp > lowp_fmat2
Low single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:526
+
vec< 2, f64, defaultp > f64vec2
Double-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:504
+
mat< 2, 2, f64, lowp > lowp_f64mat2x2
Low double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:752
+
vec< 1, u32, lowp > lowp_u32vec1
Low qualifier 32 bit unsigned integer scalar type.
Definition: fwd.hpp:366
+
detail::int64 int64
64 bit signed integer type.
+
vec< 2, i64, lowp > lowp_i64vec2
Low qualifier 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:285
+
vec< 4, u64, mediump > mediump_u64vec4
Medium qualifier 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:394
+
vec< 1, f64, mediump > mediump_f64vec1
Medium double-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:493
+
uint64 lowp_uint64_t
Low qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:142
+
vec< 3, i64, mediump > mediump_i64vec3
Medium qualifier 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:291
+
mat< 2, 2, f32, mediump > mediump_fmat2
Medium single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:530
+
vec< 1, i32, highp > highp_i32vec1
High qualifier 32 bit signed integer scalar type.
Definition: fwd.hpp:274
+
vec< 4, i64, mediump > mediump_i64vec4
Medium qualifier 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:292
+
int32 highp_int32_t
32 bit signed integer type.
Definition: fwd.hpp:70
+
mat< 3, 4, f32, mediump > mediump_f32mat3x4
Medium single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:687
+
mat< 4, 4, f64, defaultp > f64mat4x4
Double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:790
+
float lowp_f32
Low 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:149
+
vec< 3, i32, lowp > lowp_i32vec3
Low qualifier 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:266
+
mat< 4, 4, f32, highp > highp_fmat4x4
High single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:660
+
vec< 2, i8, mediump > mediump_i8vec2
Medium qualifier 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:230
+
vec< 4, i32, highp > highp_i32vec4
High qualifier 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:277
+
mat< 2, 3, f64, lowp > lowp_f64mat2x3
Low double-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:753
+
vec< 3, u32, highp > highp_u32vec3
High qualifier 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:378
+
vec< 1, uint, highp > highp_uvec1
High qualifier unsigned integer vector of 1 component type.
Definition: fwd.hpp:316
+
mat< 3, 4, f64, defaultp > f64mat3x4
Double-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:787
+
mat< 4, 2, f64, highp > highp_f64mat4x2
High double-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:778
+
vec< 4, i16, mediump > mediump_i16vec4
Medium qualifier 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:252
+
vec< 3, float, mediump > mediump_fvec3
Medium Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:435
+
mat< 3, 3, f64, lowp > lowp_f64mat3
Low double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:575
+
vec< 1, i32, mediump > mediump_i32vec1
Medium qualifier 32 bit signed integer scalar type.
Definition: fwd.hpp:269
+
vec< 2, i16, lowp > lowp_i16vec2
Low qualifier 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:245
+
mat< 4, 4, f64, mediump > mediump_f64mat4
Medium double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:580
+
double lowp_f64
Low 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:165
+
vec< 3, i8, lowp > lowp_i8vec3
Low qualifier 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:226
+
uint16 u16
Default qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:108
+
mat< 2, 2, f64, highp > highp_f64mat2
High double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:582
+
vec< 3, float, lowp > lowp_fvec3
Low single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:430
+
uint16 lowp_uint16_t
Low qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:114
+
double f64
Default 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:168
+
mat< 3, 2, f64, highp > highp_f64mat3x2
High double-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:775
+
vec< 3, f64, lowp > lowp_f64vec3
Low double-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:490
+ + + + diff --git a/include/glm/doc/api/a00578.html b/include/glm/doc/api/a00578.html new file mode 100644 index 0000000..1703840 --- /dev/null +++ b/include/glm/doc/api/a00578.html @@ -0,0 +1,231 @@ + + + + + + + +1.0.2 API documentation: type_ptr.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
type_ptr.hpp File Reference
+
+
+ +

GLM_GTC_type_ptr +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL mat< 2, 2, T, defaultp > make_mat2 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 2, 2, T, defaultp > make_mat2x2 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 2, 3, T, defaultp > make_mat2x3 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 2, 4, T, defaultp > make_mat2x4 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 3, T, defaultp > make_mat3 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 2, T, defaultp > make_mat3x2 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 3, T, defaultp > make_mat3x3 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 4, T, defaultp > make_mat3x4 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > make_mat4 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 2, T, defaultp > make_mat4x2 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 3, T, defaultp > make_mat4x3 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > make_mat4x4 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL qua< T, defaultp > make_quat (T const *const ptr)
 Build a quaternion from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, T, Q > make_vec1 (vec< 1, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, T, Q > make_vec1 (vec< 2, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, T, Q > make_vec1 (vec< 3, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, T, Q > make_vec1 (vec< 4, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL vec< 2, T, defaultp > make_vec2 (T const *const ptr)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > make_vec2 (vec< 1, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > make_vec2 (vec< 2, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > make_vec2 (vec< 3, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > make_vec2 (vec< 4, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL vec< 3, T, defaultp > make_vec3 (T const *const ptr)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > make_vec3 (vec< 1, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > make_vec3 (vec< 2, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > make_vec3 (vec< 3, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > make_vec3 (vec< 4, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL vec< 4, T, defaultp > make_vec4 (T const *const ptr)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > make_vec4 (vec< 1, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > make_vec4 (vec< 2, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > make_vec4 (vec< 3, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > make_vec4 (vec< 4, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type const * value_ptr (genType const &v)
 Return the constant address to the data of the input parameter. More...
 
+

Detailed Description

+

GLM_GTC_type_ptr

+
See also
Core features (dependence)
+
+GLM_GTC_quaternion (dependence)
+ +

Definition in file type_ptr.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00578_source.html b/include/glm/doc/api/a00578_source.html new file mode 100644 index 0000000..e8824fb --- /dev/null +++ b/include/glm/doc/api/a00578_source.html @@ -0,0 +1,228 @@ + + + + + + + +1.0.2 API documentation: type_ptr.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_ptr.hpp
+
+
+Go to the documentation of this file.
1 
+
34 #pragma once
+
35 
+
36 // Dependency:
+
37 #include "../gtc/quaternion.hpp"
+
38 #include "../gtc/vec1.hpp"
+
39 #include "../vec2.hpp"
+
40 #include "../vec3.hpp"
+
41 #include "../vec4.hpp"
+
42 #include "../mat2x2.hpp"
+
43 #include "../mat2x3.hpp"
+
44 #include "../mat2x4.hpp"
+
45 #include "../mat3x2.hpp"
+
46 #include "../mat3x3.hpp"
+
47 #include "../mat3x4.hpp"
+
48 #include "../mat4x2.hpp"
+
49 #include "../mat4x3.hpp"
+
50 #include "../mat4x4.hpp"
+
51 #include <cstring>
+
52 
+
53 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
54 # pragma message("GLM: GLM_GTC_type_ptr extension included")
+
55 #endif
+
56 
+
57 namespace glm
+
58 {
+
61 
+
64  template<typename genType>
+
65  GLM_FUNC_DECL typename genType::value_type const * value_ptr(genType const& v);
+
66 
+
69  template <typename T, qualifier Q>
+
70  GLM_FUNC_DECL vec<1, T, Q> make_vec1(vec<1, T, Q> const& v);
+
71 
+
74  template <typename T, qualifier Q>
+
75  GLM_FUNC_DECL vec<1, T, Q> make_vec1(vec<2, T, Q> const& v);
+
76 
+
79  template <typename T, qualifier Q>
+
80  GLM_FUNC_DECL vec<1, T, Q> make_vec1(vec<3, T, Q> const& v);
+
81 
+
84  template <typename T, qualifier Q>
+
85  GLM_FUNC_DECL vec<1, T, Q> make_vec1(vec<4, T, Q> const& v);
+
86 
+
89  template <typename T, qualifier Q>
+
90  GLM_FUNC_DECL vec<2, T, Q> make_vec2(vec<1, T, Q> const& v);
+
91 
+
94  template <typename T, qualifier Q>
+
95  GLM_FUNC_DECL vec<2, T, Q> make_vec2(vec<2, T, Q> const& v);
+
96 
+
99  template <typename T, qualifier Q>
+
100  GLM_FUNC_DECL vec<2, T, Q> make_vec2(vec<3, T, Q> const& v);
+
101 
+
104  template <typename T, qualifier Q>
+
105  GLM_FUNC_DECL vec<2, T, Q> make_vec2(vec<4, T, Q> const& v);
+
106 
+
109  template <typename T, qualifier Q>
+
110  GLM_FUNC_DECL vec<3, T, Q> make_vec3(vec<1, T, Q> const& v);
+
111 
+
114  template <typename T, qualifier Q>
+
115  GLM_FUNC_DECL vec<3, T, Q> make_vec3(vec<2, T, Q> const& v);
+
116 
+
119  template <typename T, qualifier Q>
+
120  GLM_FUNC_DECL vec<3, T, Q> make_vec3(vec<3, T, Q> const& v);
+
121 
+
124  template <typename T, qualifier Q>
+
125  GLM_FUNC_DECL vec<3, T, Q> make_vec3(vec<4, T, Q> const& v);
+
126 
+
129  template <typename T, qualifier Q>
+
130  GLM_FUNC_DECL vec<4, T, Q> make_vec4(vec<1, T, Q> const& v);
+
131 
+
134  template <typename T, qualifier Q>
+
135  GLM_FUNC_DECL vec<4, T, Q> make_vec4(vec<2, T, Q> const& v);
+
136 
+
139  template <typename T, qualifier Q>
+
140  GLM_FUNC_DECL vec<4, T, Q> make_vec4(vec<3, T, Q> const& v);
+
141 
+
144  template <typename T, qualifier Q>
+
145  GLM_FUNC_DECL vec<4, T, Q> make_vec4(vec<4, T, Q> const& v);
+
146 
+
149  template<typename T>
+
150  GLM_FUNC_DECL vec<2, T, defaultp> make_vec2(T const * const ptr);
+
151 
+
154  template<typename T>
+
155  GLM_FUNC_DECL vec<3, T, defaultp> make_vec3(T const * const ptr);
+
156 
+
159  template<typename T>
+
160  GLM_FUNC_DECL vec<4, T, defaultp> make_vec4(T const * const ptr);
+
161 
+
164  template<typename T>
+
165  GLM_FUNC_DECL mat<2, 2, T, defaultp> make_mat2x2(T const * const ptr);
+
166 
+
169  template<typename T>
+
170  GLM_FUNC_DECL mat<2, 3, T, defaultp> make_mat2x3(T const * const ptr);
+
171 
+
174  template<typename T>
+
175  GLM_FUNC_DECL mat<2, 4, T, defaultp> make_mat2x4(T const * const ptr);
+
176 
+
179  template<typename T>
+
180  GLM_FUNC_DECL mat<3, 2, T, defaultp> make_mat3x2(T const * const ptr);
+
181 
+
184  template<typename T>
+
185  GLM_FUNC_DECL mat<3, 3, T, defaultp> make_mat3x3(T const * const ptr);
+
186 
+
189  template<typename T>
+
190  GLM_FUNC_DECL mat<3, 4, T, defaultp> make_mat3x4(T const * const ptr);
+
191 
+
194  template<typename T>
+
195  GLM_FUNC_DECL mat<4, 2, T, defaultp> make_mat4x2(T const * const ptr);
+
196 
+
199  template<typename T>
+
200  GLM_FUNC_DECL mat<4, 3, T, defaultp> make_mat4x3(T const * const ptr);
+
201 
+
204  template<typename T>
+
205  GLM_FUNC_DECL mat<4, 4, T, defaultp> make_mat4x4(T const * const ptr);
+
206 
+
209  template<typename T>
+
210  GLM_FUNC_DECL mat<2, 2, T, defaultp> make_mat2(T const * const ptr);
+
211 
+
214  template<typename T>
+
215  GLM_FUNC_DECL mat<3, 3, T, defaultp> make_mat3(T const * const ptr);
+
216 
+
219  template<typename T>
+
220  GLM_FUNC_DECL mat<4, 4, T, defaultp> make_mat4(T const * const ptr);
+
221 
+
224  template<typename T>
+
225  GLM_FUNC_DECL qua<T, defaultp> make_quat(T const * const ptr);
+
226 
+
228 }//namespace glm
+
229 
+
230 #include "type_ptr.inl"
+
+
GLM_FUNC_DECL mat< 2, 3, T, defaultp > make_mat2x3(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL vec< 3, T, defaultp > make_vec3(T const *const ptr)
Build a vector from a pointer.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > make_mat4x4(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL mat< 3, 4, T, defaultp > make_mat3x4(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL mat< 2, 2, T, defaultp > make_mat2(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL mat< 3, 3, T, defaultp > make_mat3(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL mat< 3, 3, T, defaultp > make_mat3x3(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL vec< 2, T, defaultp > make_vec2(T const *const ptr)
Build a vector from a pointer.
+
GLM_FUNC_DECL mat< 2, 2, T, defaultp > make_mat2x2(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL genType::value_type const * value_ptr(genType const &v)
Return the constant address to the data of the input parameter.
+
GLM_FUNC_DECL mat< 2, 4, T, defaultp > make_mat2x4(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL vec< 1, T, Q > make_vec1(vec< 4, T, Q > const &v)
Build a vector from a pointer.
+
GLM_FUNC_DECL vec< 4, T, defaultp > make_vec4(T const *const ptr)
Build a vector from a pointer.
+
GLM_FUNC_DECL mat< 3, 2, T, defaultp > make_mat3x2(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > make_mat4(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL mat< 4, 2, T, defaultp > make_mat4x2(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL mat< 4, 3, T, defaultp > make_mat4x3(T const *const ptr)
Build a matrix from a pointer.
+
GLM_FUNC_DECL qua< T, defaultp > make_quat(T const *const ptr)
Build a quaternion from a pointer.
+ + + + diff --git a/include/glm/doc/api/a00581.html b/include/glm/doc/api/a00581.html new file mode 100644 index 0000000..ba12262 --- /dev/null +++ b/include/glm/doc/api/a00581.html @@ -0,0 +1,151 @@ + + + + + + + +1.0.2 API documentation: ulp.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
ulp.hpp File Reference
+
+
+ +

GLM_GTC_ulp +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

GLM_FUNC_DECL int64 float_distance (double x, double y)
 Return the distance in the number of ULP between 2 double-precision floating-point scalars. More...
 
GLM_FUNC_DECL int float_distance (float x, float y)
 Return the distance in the number of ULP between 2 single-precision floating-point scalars. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int64, Q > float_distance (vec< L, double, Q > const &x, vec< L, double, Q > const &y)
 Return the distance in the number of ULP between 2 double-precision floating-point scalars. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > float_distance (vec< L, float, Q > const &x, vec< L, float, Q > const &y)
 Return the distance in the number of ULP between 2 single-precision floating-point scalars. More...
 
template<typename genType >
GLM_FUNC_DECL genType next_float (genType x)
 Return the next ULP value(s) after the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType next_float (genType x, int ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > next_float (vec< L, T, Q > const &x)
 Return the next ULP value(s) after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > next_float (vec< L, T, Q > const &x, int ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > next_float (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType prev_float (genType x)
 Return the previous ULP value(s) before the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType prev_float (genType x, int ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prev_float (vec< L, T, Q > const &x)
 Return the previous ULP value(s) before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prev_float (vec< L, T, Q > const &x, int ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prev_float (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
+

Detailed Description

+

GLM_GTC_ulp

+
See also
Core features (dependence)
+ +

Definition in file ulp.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00581_source.html b/include/glm/doc/api/a00581_source.html new file mode 100644 index 0000000..b07ab47 --- /dev/null +++ b/include/glm/doc/api/a00581_source.html @@ -0,0 +1,144 @@ + + + + + + + +1.0.2 API documentation: ulp.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ulp.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependencies
+
18 #include "../detail/setup.hpp"
+
19 #include "../detail/qualifier.hpp"
+
20 #include "../detail/_vectorize.hpp"
+
21 #include "../ext/scalar_int_sized.hpp"
+
22 
+
23 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTC_ulp extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
37  template<typename genType>
+
38  GLM_FUNC_DECL genType next_float(genType x);
+
39 
+
45  template<typename genType>
+
46  GLM_FUNC_DECL genType prev_float(genType x);
+
47 
+
53  template<typename genType>
+
54  GLM_FUNC_DECL genType next_float(genType x, int ULPs);
+
55 
+
61  template<typename genType>
+
62  GLM_FUNC_DECL genType prev_float(genType x, int ULPs);
+
63 
+
67  GLM_FUNC_DECL int float_distance(float x, float y);
+
68 
+
72  GLM_FUNC_DECL int64 float_distance(double x, double y);
+
73 
+
81  template<length_t L, typename T, qualifier Q>
+
82  GLM_FUNC_DECL vec<L, T, Q> next_float(vec<L, T, Q> const& x);
+
83 
+
91  template<length_t L, typename T, qualifier Q>
+
92  GLM_FUNC_DECL vec<L, T, Q> next_float(vec<L, T, Q> const& x, int ULPs);
+
93 
+
101  template<length_t L, typename T, qualifier Q>
+
102  GLM_FUNC_DECL vec<L, T, Q> next_float(vec<L, T, Q> const& x, vec<L, int, Q> const& ULPs);
+
103 
+
111  template<length_t L, typename T, qualifier Q>
+
112  GLM_FUNC_DECL vec<L, T, Q> prev_float(vec<L, T, Q> const& x);
+
113 
+
121  template<length_t L, typename T, qualifier Q>
+
122  GLM_FUNC_DECL vec<L, T, Q> prev_float(vec<L, T, Q> const& x, int ULPs);
+
123 
+
131  template<length_t L, typename T, qualifier Q>
+
132  GLM_FUNC_DECL vec<L, T, Q> prev_float(vec<L, T, Q> const& x, vec<L, int, Q> const& ULPs);
+
133 
+
140  template<length_t L, typename T, qualifier Q>
+
141  GLM_FUNC_DECL vec<L, int, Q> float_distance(vec<L, float, Q> const& x, vec<L, float, Q> const& y);
+
142 
+
149  template<length_t L, typename T, qualifier Q>
+
150  GLM_FUNC_DECL vec<L, int64, Q> float_distance(vec<L, double, Q> const& x, vec<L, double, Q> const& y);
+
151 
+
153 }//namespace glm
+
154 
+
155 #include "ulp.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > prev_float(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
Return the value(s) ULP distance before the input value(s).
+
GLM_FUNC_DECL vec< L, int64, Q > float_distance(vec< L, double, Q > const &x, vec< L, double, Q > const &y)
Return the distance in the number of ULP between 2 double-precision floating-point scalars.
+
GLM_FUNC_DECL vec< L, T, Q > next_float(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
Return the value(s) ULP distance after the input value(s).
+
detail::int64 int64
64 bit signed integer type.
+ + + + diff --git a/include/glm/doc/api/a00584.html b/include/glm/doc/api/a00584.html new file mode 100644 index 0000000..8927ab2 --- /dev/null +++ b/include/glm/doc/api/a00584.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: vec1.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec1.hpp File Reference
+
+
+ +

GLM_GTC_vec1 +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTC_vec1

+
See also
Core features (dependence)
+ +

Definition in file vec1.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00584_source.html b/include/glm/doc/api/a00584_source.html new file mode 100644 index 0000000..6968764 --- /dev/null +++ b/include/glm/doc/api/a00584_source.html @@ -0,0 +1,100 @@ + + + + + + + +1.0.2 API documentation: vec1.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec1.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../ext/vector_bool1.hpp"
+
17 #include "../ext/vector_bool1_precision.hpp"
+
18 #include "../ext/vector_float1.hpp"
+
19 #include "../ext/vector_float1_precision.hpp"
+
20 #include "../ext/vector_double1.hpp"
+
21 #include "../ext/vector_double1_precision.hpp"
+
22 #include "../ext/vector_int1.hpp"
+
23 #include "../ext/vector_int1_sized.hpp"
+
24 #include "../ext/vector_uint1.hpp"
+
25 #include "../ext/vector_uint1_sized.hpp"
+
26 
+
27 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
28 # pragma message("GLM: GLM_GTC_vec1 extension included")
+
29 #endif
+
30 
+
+ + + + diff --git a/include/glm/doc/api/a00587.html b/include/glm/doc/api/a00587.html new file mode 100644 index 0000000..2f85eb0 --- /dev/null +++ b/include/glm/doc/api/a00587.html @@ -0,0 +1,187 @@ + + + + + + + +1.0.2 API documentation: associated_min_max.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
associated_min_max.hpp File Reference
+
+
+ +

GLM_GTX_associated_min_max +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , typename U >
GLM_FUNC_DECL U associatedMax (T x, U a, T y, U b)
 Maximum comparison between 2 variables and returns 2 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMax (T x, U a, T y, U b, T z, U c)
 Maximum comparison between 3 variables and returns 3 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMax (T x, U a, T y, U b, T z, U c, T w, U d)
 Maximum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > associatedMax (T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b)
 Maximum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > associatedMax (T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c)
 Maximum comparison between 3 variables and returns 3 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c, T w, vec< L, U, Q > const &d)
 Maximum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b)
 Maximum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c)
 Maximum comparison between 3 variables and returns 3 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)
 Maximum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b)
 Maximum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c)
 Maximum comparison between 3 variables and returns 3 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c, vec< L, T, Q > const &w, vec< L, U, Q > const &d)
 Maximum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (T x, const vec< L, U, Q > &a, T y, const vec< L, U, Q > &b)
 Minimum comparison between 2 variables and returns 2 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMin (T x, U a, T y, U b)
 Minimum comparison between 2 variables and returns 2 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMin (T x, U a, T y, U b, T z, U c)
 Minimum comparison between 3 variables and returns 3 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMin (T x, U a, T y, U b, T z, U c, T w, U d)
 Minimum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c, T w, vec< L, U, Q > const &d)
 Minimum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b)
 Minimum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)
 Minimum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b)
 Minimum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c)
 Minimum comparison between 3 variables and returns 3 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c, vec< L, T, Q > const &w, vec< L, U, Q > const &d)
 Minimum comparison between 4 variables and returns 4 associated variable values. More...
 
+

Detailed Description

+

GLM_GTX_associated_min_max

+
See also
Core features (dependence)
+
+gtx_extented_min_max (dependence)
+ +

Definition in file associated_min_max.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00587_source.html b/include/glm/doc/api/a00587_source.html new file mode 100644 index 0000000..dcd29a0 --- /dev/null +++ b/include/glm/doc/api/a00587_source.html @@ -0,0 +1,229 @@ + + + + + + + +1.0.2 API documentation: associated_min_max.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
associated_min_max.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_associated_min_max is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_associated_min_max extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
32  template<typename T, typename U>
+
33  GLM_FUNC_DECL U associatedMin(T x, U a, T y, U b);
+
34 
+
37  template<length_t L, typename T, typename U, qualifier Q>
+
38  GLM_FUNC_DECL vec<L, U, Q> associatedMin(
+
39  vec<L, T, Q> const& x, vec<L, U, Q> const& a,
+
40  vec<L, T, Q> const& y, vec<L, U, Q> const& b);
+
41 
+
44  template<length_t L, typename T, typename U, qualifier Q>
+
45  GLM_FUNC_DECL vec<L, U, Q> associatedMin(
+
46  T x, const vec<L, U, Q>& a,
+
47  T y, const vec<L, U, Q>& b);
+
48 
+
51  template<length_t L, typename T, typename U, qualifier Q>
+
52  GLM_FUNC_DECL vec<L, U, Q> associatedMin(
+
53  vec<L, T, Q> const& x, U a,
+
54  vec<L, T, Q> const& y, U b);
+
55 
+
58  template<typename T, typename U>
+
59  GLM_FUNC_DECL U associatedMin(
+
60  T x, U a,
+
61  T y, U b,
+
62  T z, U c);
+
63 
+
66  template<length_t L, typename T, typename U, qualifier Q>
+
67  GLM_FUNC_DECL vec<L, U, Q> associatedMin(
+
68  vec<L, T, Q> const& x, vec<L, U, Q> const& a,
+
69  vec<L, T, Q> const& y, vec<L, U, Q> const& b,
+
70  vec<L, T, Q> const& z, vec<L, U, Q> const& c);
+
71 
+
74  template<typename T, typename U>
+
75  GLM_FUNC_DECL U associatedMin(
+
76  T x, U a,
+
77  T y, U b,
+
78  T z, U c,
+
79  T w, U d);
+
80 
+
83  template<length_t L, typename T, typename U, qualifier Q>
+
84  GLM_FUNC_DECL vec<L, U, Q> associatedMin(
+
85  vec<L, T, Q> const& x, vec<L, U, Q> const& a,
+
86  vec<L, T, Q> const& y, vec<L, U, Q> const& b,
+
87  vec<L, T, Q> const& z, vec<L, U, Q> const& c,
+
88  vec<L, T, Q> const& w, vec<L, U, Q> const& d);
+
89 
+
92  template<length_t L, typename T, typename U, qualifier Q>
+
93  GLM_FUNC_DECL vec<L, U, Q> associatedMin(
+
94  T x, vec<L, U, Q> const& a,
+
95  T y, vec<L, U, Q> const& b,
+
96  T z, vec<L, U, Q> const& c,
+
97  T w, vec<L, U, Q> const& d);
+
98 
+
101  template<length_t L, typename T, typename U, qualifier Q>
+
102  GLM_FUNC_DECL vec<L, U, Q> associatedMin(
+
103  vec<L, T, Q> const& x, U a,
+
104  vec<L, T, Q> const& y, U b,
+
105  vec<L, T, Q> const& z, U c,
+
106  vec<L, T, Q> const& w, U d);
+
107 
+
110  template<typename T, typename U>
+
111  GLM_FUNC_DECL U associatedMax(T x, U a, T y, U b);
+
112 
+
115  template<length_t L, typename T, typename U, qualifier Q>
+
116  GLM_FUNC_DECL vec<L, U, Q> associatedMax(
+
117  vec<L, T, Q> const& x, vec<L, U, Q> const& a,
+
118  vec<L, T, Q> const& y, vec<L, U, Q> const& b);
+
119 
+
122  template<length_t L, typename T, typename U, qualifier Q>
+
123  GLM_FUNC_DECL vec<L, T, Q> associatedMax(
+
124  T x, vec<L, U, Q> const& a,
+
125  T y, vec<L, U, Q> const& b);
+
126 
+
129  template<length_t L, typename T, typename U, qualifier Q>
+
130  GLM_FUNC_DECL vec<L, U, Q> associatedMax(
+
131  vec<L, T, Q> const& x, U a,
+
132  vec<L, T, Q> const& y, U b);
+
133 
+
136  template<typename T, typename U>
+
137  GLM_FUNC_DECL U associatedMax(
+
138  T x, U a,
+
139  T y, U b,
+
140  T z, U c);
+
141 
+
144  template<length_t L, typename T, typename U, qualifier Q>
+
145  GLM_FUNC_DECL vec<L, U, Q> associatedMax(
+
146  vec<L, T, Q> const& x, vec<L, U, Q> const& a,
+
147  vec<L, T, Q> const& y, vec<L, U, Q> const& b,
+
148  vec<L, T, Q> const& z, vec<L, U, Q> const& c);
+
149 
+
152  template<length_t L, typename T, typename U, qualifier Q>
+
153  GLM_FUNC_DECL vec<L, T, Q> associatedMax(
+
154  T x, vec<L, U, Q> const& a,
+
155  T y, vec<L, U, Q> const& b,
+
156  T z, vec<L, U, Q> const& c);
+
157 
+
160  template<length_t L, typename T, typename U, qualifier Q>
+
161  GLM_FUNC_DECL vec<L, U, Q> associatedMax(
+
162  vec<L, T, Q> const& x, U a,
+
163  vec<L, T, Q> const& y, U b,
+
164  vec<L, T, Q> const& z, U c);
+
165 
+
168  template<typename T, typename U>
+
169  GLM_FUNC_DECL U associatedMax(
+
170  T x, U a,
+
171  T y, U b,
+
172  T z, U c,
+
173  T w, U d);
+
174 
+
177  template<length_t L, typename T, typename U, qualifier Q>
+
178  GLM_FUNC_DECL vec<L, U, Q> associatedMax(
+
179  vec<L, T, Q> const& x, vec<L, U, Q> const& a,
+
180  vec<L, T, Q> const& y, vec<L, U, Q> const& b,
+
181  vec<L, T, Q> const& z, vec<L, U, Q> const& c,
+
182  vec<L, T, Q> const& w, vec<L, U, Q> const& d);
+
183 
+
186  template<length_t L, typename T, typename U, qualifier Q>
+
187  GLM_FUNC_DECL vec<L, U, Q> associatedMax(
+
188  T x, vec<L, U, Q> const& a,
+
189  T y, vec<L, U, Q> const& b,
+
190  T z, vec<L, U, Q> const& c,
+
191  T w, vec<L, U, Q> const& d);
+
192 
+
195  template<length_t L, typename T, typename U, qualifier Q>
+
196  GLM_FUNC_DECL vec<L, U, Q> associatedMax(
+
197  vec<L, T, Q> const& x, U a,
+
198  vec<L, T, Q> const& y, U b,
+
199  vec<L, T, Q> const& z, U c,
+
200  vec<L, T, Q> const& w, U d);
+
201 
+
203 } //namespace glm
+
204 
+
205 #include "associated_min_max.inl"
+
+
GLM_FUNC_DECL vec< L, U, Q > associatedMax(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)
Maximum comparison between 4 variables and returns 4 associated variable values.
+
GLM_FUNC_DECL vec< L, U, Q > associatedMin(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)
Minimum comparison between 4 variables and returns 4 associated variable values.
+ + + + diff --git a/include/glm/doc/api/a00590.html b/include/glm/doc/api/a00590.html new file mode 100644 index 0000000..97e52b9 --- /dev/null +++ b/include/glm/doc/api/a00590.html @@ -0,0 +1,131 @@ + + + + + + + +1.0.2 API documentation: bit.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
bit.hpp File Reference
+
+
+ +

GLM_GTX_bit +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genIUType >
GLM_FUNC_DECL genIUType highestBitValue (genIUType Value)
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > highestBitValue (vec< L, T, Q > const &value)
 Find the highest bit set to 1 in a integer variable and return its value. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType lowestBitValue (genIUType Value)
 
template<typename genIUType >
GLM_DEPRECATED GLM_FUNC_DECL genIUType powerOfTwoAbove (genIUType Value)
 Return the power of two number which value is just higher the input value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_DEPRECATED GLM_FUNC_DECL vec< L, T, Q > powerOfTwoAbove (vec< L, T, Q > const &value)
 Return the power of two number which value is just higher the input value. More...
 
template<typename genIUType >
GLM_DEPRECATED GLM_FUNC_DECL genIUType powerOfTwoBelow (genIUType Value)
 Return the power of two number which value is just lower the input value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_DEPRECATED GLM_FUNC_DECL vec< L, T, Q > powerOfTwoBelow (vec< L, T, Q > const &value)
 Return the power of two number which value is just lower the input value. More...
 
template<typename genIUType >
GLM_DEPRECATED GLM_FUNC_DECL genIUType powerOfTwoNearest (genIUType Value)
 Return the power of two number which value is the closet to the input value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_DEPRECATED GLM_FUNC_DECL vec< L, T, Q > powerOfTwoNearest (vec< L, T, Q > const &value)
 Return the power of two number which value is the closet to the input value. More...
 
+

Detailed Description

+

GLM_GTX_bit

+
See also
Core features (dependence)
+ +

Definition in file bit.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00590_source.html b/include/glm/doc/api/a00590_source.html new file mode 100644 index 0000000..f78a295 --- /dev/null +++ b/include/glm/doc/api/a00590_source.html @@ -0,0 +1,133 @@ + + + + + + + +1.0.2 API documentation: bit.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
bit.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "../gtc/bitfield.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_bit is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_bit extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
30  template<typename genIUType>
+
31  GLM_FUNC_DECL genIUType highestBitValue(genIUType Value);
+
32 
+
34  template<typename genIUType>
+
35  GLM_FUNC_DECL genIUType lowestBitValue(genIUType Value);
+
36 
+
40  template<length_t L, typename T, qualifier Q>
+
41  GLM_FUNC_DECL vec<L, T, Q> highestBitValue(vec<L, T, Q> const& value);
+
42 
+
48  template<typename genIUType>
+
49  GLM_DEPRECATED GLM_FUNC_DECL genIUType powerOfTwoAbove(genIUType Value);
+
50 
+
56  template<length_t L, typename T, qualifier Q>
+
57  GLM_DEPRECATED GLM_FUNC_DECL vec<L, T, Q> powerOfTwoAbove(vec<L, T, Q> const& value);
+
58 
+
64  template<typename genIUType>
+
65  GLM_DEPRECATED GLM_FUNC_DECL genIUType powerOfTwoBelow(genIUType Value);
+
66 
+
72  template<length_t L, typename T, qualifier Q>
+
73  GLM_DEPRECATED GLM_FUNC_DECL vec<L, T, Q> powerOfTwoBelow(vec<L, T, Q> const& value);
+
74 
+
80  template<typename genIUType>
+
81  GLM_DEPRECATED GLM_FUNC_DECL genIUType powerOfTwoNearest(genIUType Value);
+
82 
+
88  template<length_t L, typename T, qualifier Q>
+
89  GLM_DEPRECATED GLM_FUNC_DECL vec<L, T, Q> powerOfTwoNearest(vec<L, T, Q> const& value);
+
90 
+
92 } //namespace glm
+
93 
+
94 
+
95 #include "bit.inl"
+
96 
+
+
GLM_DEPRECATED GLM_FUNC_DECL vec< L, T, Q > powerOfTwoNearest(vec< L, T, Q > const &value)
Return the power of two number which value is the closet to the input value.
+
GLM_FUNC_DECL vec< L, T, Q > highestBitValue(vec< L, T, Q > const &value)
Find the highest bit set to 1 in a integer variable and return its value.
+
GLM_DEPRECATED GLM_FUNC_DECL vec< L, T, Q > powerOfTwoBelow(vec< L, T, Q > const &value)
Return the power of two number which value is just lower the input value.
+
GLM_DEPRECATED GLM_FUNC_DECL vec< L, T, Q > powerOfTwoAbove(vec< L, T, Q > const &value)
Return the power of two number which value is just higher the input value.
+
GLM_FUNC_DECL genIUType lowestBitValue(genIUType Value)
+ + + + diff --git a/include/glm/doc/api/a00593.html b/include/glm/doc/api/a00593.html new file mode 100644 index 0000000..c2041fd --- /dev/null +++ b/include/glm/doc/api/a00593.html @@ -0,0 +1,106 @@ + + + + + + + +1.0.2 API documentation: closest_point.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
closest_point.hpp File Reference
+
+
+ +

GLM_GTX_closest_point +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > closestPointOnLine (vec< 2, T, Q > const &point, vec< 2, T, Q > const &a, vec< 2, T, Q > const &b)
 2d lines work as well
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > closestPointOnLine (vec< 3, T, Q > const &point, vec< 3, T, Q > const &a, vec< 3, T, Q > const &b)
 Find the point on a straight line which is the closet of a point. More...
 
+

Detailed Description

+

GLM_GTX_closest_point

+
See also
Core features (dependence)
+ +

Definition in file closest_point.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00593_source.html b/include/glm/doc/api/a00593_source.html new file mode 100644 index 0000000..dcd8c5a --- /dev/null +++ b/include/glm/doc/api/a00593_source.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: closest_point.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
closest_point.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_closest_point is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_closest_point extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
31  template<typename T, qualifier Q>
+
32  GLM_FUNC_DECL vec<3, T, Q> closestPointOnLine(
+
33  vec<3, T, Q> const& point,
+
34  vec<3, T, Q> const& a,
+
35  vec<3, T, Q> const& b);
+
36 
+
38  template<typename T, qualifier Q>
+
39  GLM_FUNC_DECL vec<2, T, Q> closestPointOnLine(
+
40  vec<2, T, Q> const& point,
+
41  vec<2, T, Q> const& a,
+
42  vec<2, T, Q> const& b);
+
43 
+
45 }// namespace glm
+
46 
+
47 #include "closest_point.inl"
+
+
GLM_FUNC_DECL vec< 2, T, Q > closestPointOnLine(vec< 2, T, Q > const &point, vec< 2, T, Q > const &a, vec< 2, T, Q > const &b)
2d lines work as well
+ + + + diff --git a/include/glm/doc/api/a00596.html b/include/glm/doc/api/a00596.html new file mode 100644 index 0000000..dd2b46a --- /dev/null +++ b/include/glm/doc/api/a00596.html @@ -0,0 +1,119 @@ + + + + + + + +1.0.2 API documentation: color_encoding.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
color_encoding.hpp File Reference
+
+
+ +

GLM_GTX_color_encoding +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > convertD65XYZToD50XYZ (vec< 3, T, Q > const &ColorD65XYZ)
 Convert a D65 YUV color to D50 YUV.
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > convertD65XYZToLinearSRGB (vec< 3, T, Q > const &ColorD65XYZ)
 Convert a D65 YUV color to linear sRGB.
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > convertLinearSRGBToD50XYZ (vec< 3, T, Q > const &ColorLinearSRGB)
 Convert a linear sRGB color to D50 YUV.
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > convertLinearSRGBToD65XYZ (vec< 3, T, Q > const &ColorLinearSRGB)
 Convert a linear sRGB color to D65 YUV.
 
+

Detailed Description

+

GLM_GTX_color_encoding

+
See also
Core features (dependence)
+
+GLM_GTX_color_encoding (dependence)
+ +

Definition in file color_encoding.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00596_source.html b/include/glm/doc/api/a00596_source.html new file mode 100644 index 0000000..010edcf --- /dev/null +++ b/include/glm/doc/api/a00596_source.html @@ -0,0 +1,118 @@ + + + + + + + +1.0.2 API documentation: color_encoding.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
color_encoding.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependencies
+
17 #include "../detail/setup.hpp"
+
18 #include "../detail/qualifier.hpp"
+
19 #include "../vec3.hpp"
+
20 #include <limits>
+
21 
+
22 #ifndef GLM_ENABLE_EXPERIMENTAL
+
23 # error "GLM: GLM_GTC_color_encoding is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
24 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
25 # pragma message("GLM: GLM_GTC_color_encoding extension included")
+
26 #endif
+
27 
+
28 namespace glm
+
29 {
+
32 
+
34  template<typename T, qualifier Q>
+
35  GLM_FUNC_DECL vec<3, T, Q> convertLinearSRGBToD65XYZ(vec<3, T, Q> const& ColorLinearSRGB);
+
36 
+
38  template<typename T, qualifier Q>
+
39  GLM_FUNC_DECL vec<3, T, Q> convertLinearSRGBToD50XYZ(vec<3, T, Q> const& ColorLinearSRGB);
+
40 
+
42  template<typename T, qualifier Q>
+
43  GLM_FUNC_DECL vec<3, T, Q> convertD65XYZToLinearSRGB(vec<3, T, Q> const& ColorD65XYZ);
+
44 
+
46  template<typename T, qualifier Q>
+
47  GLM_FUNC_DECL vec<3, T, Q> convertD65XYZToD50XYZ(vec<3, T, Q> const& ColorD65XYZ);
+
48 
+
50 } //namespace glm
+
51 
+
52 #include "color_encoding.inl"
+
+
GLM_FUNC_DECL vec< 3, T, Q > convertD65XYZToD50XYZ(vec< 3, T, Q > const &ColorD65XYZ)
Convert a D65 YUV color to D50 YUV.
+
GLM_FUNC_DECL vec< 3, T, Q > convertD65XYZToLinearSRGB(vec< 3, T, Q > const &ColorD65XYZ)
Convert a D65 YUV color to linear sRGB.
+
GLM_FUNC_DECL vec< 3, T, Q > convertLinearSRGBToD65XYZ(vec< 3, T, Q > const &ColorLinearSRGB)
Convert a linear sRGB color to D65 YUV.
+
GLM_FUNC_DECL vec< 3, T, Q > convertLinearSRGBToD50XYZ(vec< 3, T, Q > const &ColorLinearSRGB)
Convert a linear sRGB color to D50 YUV.
+ + + + diff --git a/include/glm/doc/api/a00599.html b/include/glm/doc/api/a00599.html new file mode 100644 index 0000000..d15bba9 --- /dev/null +++ b/include/glm/doc/api/a00599.html @@ -0,0 +1,113 @@ + + + + + + + +1.0.2 API documentation: color_space_YCoCg.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
color_space_YCoCg.hpp File Reference
+
+
+ +

GLM_GTX_color_space_YCoCg +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rgb2YCoCg (vec< 3, T, Q > const &rgbColor)
 Convert a color from RGB color space to YCoCg color space. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rgb2YCoCgR (vec< 3, T, Q > const &rgbColor)
 Convert a color from RGB color space to YCoCgR color space. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > YCoCg2rgb (vec< 3, T, Q > const &YCoCgColor)
 Convert a color from YCoCg color space to RGB color space. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > YCoCgR2rgb (vec< 3, T, Q > const &YCoCgColor)
 Convert a color from YCoCgR color space to RGB color space. More...
 
+

Detailed Description

+

GLM_GTX_color_space_YCoCg

+
See also
Core features (dependence)
+ +

Definition in file color_space_YCoCg.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00599_source.html b/include/glm/doc/api/a00599_source.html new file mode 100644 index 0000000..7b8fb4f --- /dev/null +++ b/include/glm/doc/api/a00599_source.html @@ -0,0 +1,120 @@ + + + + + + + +1.0.2 API documentation: color_space_YCoCg.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
color_space_YCoCg.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_color_space_YCoCg is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_color_space_YCoCg extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
31  template<typename T, qualifier Q>
+
32  GLM_FUNC_DECL vec<3, T, Q> rgb2YCoCg(
+
33  vec<3, T, Q> const& rgbColor);
+
34 
+
37  template<typename T, qualifier Q>
+
38  GLM_FUNC_DECL vec<3, T, Q> YCoCg2rgb(
+
39  vec<3, T, Q> const& YCoCgColor);
+
40 
+
44  template<typename T, qualifier Q>
+
45  GLM_FUNC_DECL vec<3, T, Q> rgb2YCoCgR(
+
46  vec<3, T, Q> const& rgbColor);
+
47 
+
51  template<typename T, qualifier Q>
+
52  GLM_FUNC_DECL vec<3, T, Q> YCoCgR2rgb(
+
53  vec<3, T, Q> const& YCoCgColor);
+
54 
+
56 }//namespace glm
+
57 
+
58 #include "color_space_YCoCg.inl"
+
+
GLM_FUNC_DECL vec< 3, T, Q > rgb2YCoCgR(vec< 3, T, Q > const &rgbColor)
Convert a color from RGB color space to YCoCgR color space.
+
GLM_FUNC_DECL vec< 3, T, Q > YCoCgR2rgb(vec< 3, T, Q > const &YCoCgColor)
Convert a color from YCoCgR color space to RGB color space.
+
GLM_FUNC_DECL vec< 3, T, Q > rgb2YCoCg(vec< 3, T, Q > const &rgbColor)
Convert a color from RGB color space to YCoCg color space.
+
GLM_FUNC_DECL vec< 3, T, Q > YCoCg2rgb(vec< 3, T, Q > const &YCoCgColor)
Convert a color from YCoCg color space to RGB color space.
+
GLM_FUNC_DECL vec< 3, T, Q > rgbColor(vec< 3, T, Q > const &hsvValue)
Converts a color from HSV color space to its color in RGB color space.
+ + + + diff --git a/include/glm/doc/api/a00602.html b/include/glm/doc/api/a00602.html new file mode 100644 index 0000000..6f00996 --- /dev/null +++ b/include/glm/doc/api/a00602.html @@ -0,0 +1,430 @@ + + + + + + + +1.0.2 API documentation: compatibility.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
compatibility.hpp File Reference
+
+
+ +

GLM_GTX_compatibility +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

+typedef bool bool1
 boolean type with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef bool bool1x1
 boolean matrix with 1 x 1 component. (From GLM_GTX_compatibility extension)
 
+typedef vec< 2, bool, highp > bool2
 boolean type with 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 2, bool, highp > bool2x2
 boolean matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 3, bool, highp > bool2x3
 boolean matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 4, bool, highp > bool2x4
 boolean matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 3, bool, highp > bool3
 boolean type with 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 2, bool, highp > bool3x2
 boolean matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 3, bool, highp > bool3x3
 boolean matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 4, bool, highp > bool3x4
 boolean matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 4, bool, highp > bool4
 boolean type with 4 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 2, bool, highp > bool4x2
 boolean matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 3, bool, highp > bool4x3
 boolean matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 4, bool, highp > bool4x4
 boolean matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef double double1
 double-qualifier floating-point vector with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef double double1x1
 double-qualifier floating-point matrix with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef vec< 2, double, highp > double2
 double-qualifier floating-point vector with 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 2, double, highp > double2x2
 double-qualifier floating-point matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 3, double, highp > double2x3
 double-qualifier floating-point matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 4, double, highp > double2x4
 double-qualifier floating-point matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 3, double, highp > double3
 double-qualifier floating-point vector with 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 2, double, highp > double3x2
 double-qualifier floating-point matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 3, double, highp > double3x3
 double-qualifier floating-point matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 4, double, highp > double3x4
 double-qualifier floating-point matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 4, double, highp > double4
 double-qualifier floating-point vector with 4 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 2, double, highp > double4x2
 double-qualifier floating-point matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 3, double, highp > double4x3
 double-qualifier floating-point matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 4, double, highp > double4x4
 double-qualifier floating-point matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef float float1
 single-qualifier floating-point vector with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef float float1x1
 single-qualifier floating-point matrix with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef vec< 2, float, highp > float2
 single-qualifier floating-point vector with 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 2, float, highp > float2x2
 single-qualifier floating-point matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 3, float, highp > float2x3
 single-qualifier floating-point matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 4, float, highp > float2x4
 single-qualifier floating-point matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 3, float, highp > float3
 single-qualifier floating-point vector with 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 2, float, highp > float3x2
 single-qualifier floating-point matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 3, float, highp > float3x3
 single-qualifier floating-point matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 4, float, highp > float3x4
 single-qualifier floating-point matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 4, float, highp > float4
 single-qualifier floating-point vector with 4 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 2, float, highp > float4x2
 single-qualifier floating-point matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 3, float, highp > float4x3
 single-qualifier floating-point matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 4, float, highp > float4x4
 single-qualifier floating-point matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef int int1
 integer vector with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef int int1x1
 integer matrix with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef vec< 2, int, highp > int2
 integer vector with 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 2, int, highp > int2x2
 integer matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 3, int, highp > int2x3
 integer matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 4, int, highp > int2x4
 integer matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 3, int, highp > int3
 integer vector with 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 2, int, highp > int3x2
 integer matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 3, int, highp > int3x3
 integer matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 4, int, highp > int3x4
 integer matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 4, int, highp > int4
 integer vector with 4 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 2, int, highp > int4x2
 integer matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 3, int, highp > int4x3
 integer matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 4, int, highp > int4x4
 integer matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 2, T, Q > atan2 (const vec< 2, T, Q > &y, const vec< 2, T, Q > &x)
 Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 3, T, Q > atan2 (const vec< 3, T, Q > &y, const vec< 3, T, Q > &x)
 Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 4, T, Q > atan2 (const vec< 4, T, Q > &y, const vec< 4, T, Q > &x)
 Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
 
+template<typename T >
GLM_FUNC_QUALIFIER T atan2 (T y, T x)
 Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > isfinite (const qua< T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, bool, Q > isfinite (const vec< 1, T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, bool, Q > isfinite (const vec< 2, T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, bool, Q > isfinite (const vec< 3, T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > isfinite (const vec< 4, T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename genType >
GLM_FUNC_DECL bool isfinite (genType const &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 2, T, Q > lerp (const vec< 2, T, Q > &x, const vec< 2, T, Q > &y, const vec< 2, T, Q > &a)
 Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 2, T, Q > lerp (const vec< 2, T, Q > &x, const vec< 2, T, Q > &y, T a)
 Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 3, T, Q > lerp (const vec< 3, T, Q > &x, const vec< 3, T, Q > &y, const vec< 3, T, Q > &a)
 Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 3, T, Q > lerp (const vec< 3, T, Q > &x, const vec< 3, T, Q > &y, T a)
 Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 4, T, Q > lerp (const vec< 4, T, Q > &x, const vec< 4, T, Q > &y, const vec< 4, T, Q > &a)
 Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 4, T, Q > lerp (const vec< 4, T, Q > &x, const vec< 4, T, Q > &y, T a)
 Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T >
GLM_FUNC_QUALIFIER T lerp (T x, T y, T a)
 Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 2, T, Q > saturate (const vec< 2, T, Q > &x)
 Returns clamp(x, 0, 1) for each component in x. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 3, T, Q > saturate (const vec< 3, T, Q > &x)
 Returns clamp(x, 0, 1) for each component in x. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 4, T, Q > saturate (const vec< 4, T, Q > &x)
 Returns clamp(x, 0, 1) for each component in x. (From GLM_GTX_compatibility)
 
+template<typename T >
GLM_FUNC_QUALIFIER T saturate (T x)
 Returns clamp(x, 0, 1) for each component in x. (From GLM_GTX_compatibility)
 
+

Detailed Description

+

GLM_GTX_compatibility

+
See also
Core features (dependence)
+ +

Definition in file compatibility.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00602_source.html b/include/glm/doc/api/a00602_source.html new file mode 100644 index 0000000..3642824 --- /dev/null +++ b/include/glm/doc/api/a00602_source.html @@ -0,0 +1,262 @@ + + + + + + + +1.0.2 API documentation: compatibility.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
compatibility.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 #include "../gtc/quaternion.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_compatibility is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_compatibility extension included")
+
23 #endif
+
24 
+
25 #if GLM_COMPILER & GLM_COMPILER_VC
+
26 # include <cfloat>
+
27 #elif GLM_COMPILER & GLM_COMPILER_GCC
+
28 # include <cmath>
+
29 # if(GLM_PLATFORM & GLM_PLATFORM_ANDROID)
+
30 # undef isfinite
+
31 # endif
+
32 #endif//GLM_COMPILER
+
33 
+
34 namespace glm
+
35 {
+
38 
+
39  template<typename T> GLM_FUNC_QUALIFIER T lerp(T x, T y, T a){return mix(x, y, a);}
+
40  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<2, T, Q> lerp(const vec<2, T, Q>& x, const vec<2, T, Q>& y, T a){return mix(x, y, a);}
+
41 
+
42  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<3, T, Q> lerp(const vec<3, T, Q>& x, const vec<3, T, Q>& y, T a){return mix(x, y, a);}
+
43  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<4, T, Q> lerp(const vec<4, T, Q>& x, const vec<4, T, Q>& y, T a){return mix(x, y, a);}
+
44  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<2, T, Q> lerp(const vec<2, T, Q>& x, const vec<2, T, Q>& y, const vec<2, T, Q>& a){return mix(x, y, a);}
+
45  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<3, T, Q> lerp(const vec<3, T, Q>& x, const vec<3, T, Q>& y, const vec<3, T, Q>& a){return mix(x, y, a);}
+
46  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<4, T, Q> lerp(const vec<4, T, Q>& x, const vec<4, T, Q>& y, const vec<4, T, Q>& a){return mix(x, y, a);}
+
47 
+
48  template<typename T> GLM_FUNC_QUALIFIER T saturate(T x){return clamp(x, T(0), T(1));}
+
49  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<2, T, Q> saturate(const vec<2, T, Q>& x){return clamp(x, T(0), T(1));}
+
50  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<3, T, Q> saturate(const vec<3, T, Q>& x){return clamp(x, T(0), T(1));}
+
51  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<4, T, Q> saturate(const vec<4, T, Q>& x){return clamp(x, T(0), T(1));}
+
52 
+
53  template<typename T> GLM_FUNC_QUALIFIER T atan2(T y, T x){return atan(y, x);}
+
54  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<2, T, Q> atan2(const vec<2, T, Q>& y, const vec<2, T, Q>& x){return atan(y, x);}
+
55  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<3, T, Q> atan2(const vec<3, T, Q>& y, const vec<3, T, Q>& x){return atan(y, x);}
+
56  template<typename T, qualifier Q> GLM_FUNC_QUALIFIER vec<4, T, Q> atan2(const vec<4, T, Q>& y, const vec<4, T, Q>& x){return atan(y, x);}
+
57 
+
58  template<typename genType> GLM_FUNC_DECL bool isfinite(genType const& x);
+
59  template<typename T, qualifier Q> GLM_FUNC_DECL vec<1, bool, Q> isfinite(const vec<1, T, Q>& x);
+
60  template<typename T, qualifier Q> GLM_FUNC_DECL vec<2, bool, Q> isfinite(const vec<2, T, Q>& x);
+
61  template<typename T, qualifier Q> GLM_FUNC_DECL vec<3, bool, Q> isfinite(const vec<3, T, Q>& x);
+
62  template<typename T, qualifier Q> GLM_FUNC_DECL vec<4, bool, Q> isfinite(const vec<4, T, Q>& x);
+
63  template<typename T, qualifier Q> GLM_FUNC_DECL vec<4, bool, Q> isfinite(const qua<T, Q>& x);
+
64 
+
65  typedef bool bool1;
+
66  typedef vec<2, bool, highp> bool2;
+
67  typedef vec<3, bool, highp> bool3;
+
68  typedef vec<4, bool, highp> bool4;
+
69 
+
70  typedef bool bool1x1;
+
71  typedef mat<2, 2, bool, highp> bool2x2;
+
72  typedef mat<2, 3, bool, highp> bool2x3;
+
73  typedef mat<2, 4, bool, highp> bool2x4;
+
74  typedef mat<3, 2, bool, highp> bool3x2;
+
75  typedef mat<3, 3, bool, highp> bool3x3;
+
76  typedef mat<3, 4, bool, highp> bool3x4;
+
77  typedef mat<4, 2, bool, highp> bool4x2;
+
78  typedef mat<4, 3, bool, highp> bool4x3;
+
79  typedef mat<4, 4, bool, highp> bool4x4;
+
80 
+
81  typedef int int1;
+
82  typedef vec<2, int, highp> int2;
+
83  typedef vec<3, int, highp> int3;
+
84  typedef vec<4, int, highp> int4;
+
85 
+
86  typedef int int1x1;
+
87  typedef mat<2, 2, int, highp> int2x2;
+
88  typedef mat<2, 3, int, highp> int2x3;
+
89  typedef mat<2, 4, int, highp> int2x4;
+
90  typedef mat<3, 2, int, highp> int3x2;
+
91  typedef mat<3, 3, int, highp> int3x3;
+
92  typedef mat<3, 4, int, highp> int3x4;
+
93  typedef mat<4, 2, int, highp> int4x2;
+
94  typedef mat<4, 3, int, highp> int4x3;
+
95  typedef mat<4, 4, int, highp> int4x4;
+
96 
+
97  typedef float float1;
+
98  typedef vec<2, float, highp> float2;
+
99  typedef vec<3, float, highp> float3;
+
100  typedef vec<4, float, highp> float4;
+
101 
+
102  typedef float float1x1;
+
103  typedef mat<2, 2, float, highp> float2x2;
+
104  typedef mat<2, 3, float, highp> float2x3;
+
105  typedef mat<2, 4, float, highp> float2x4;
+
106  typedef mat<3, 2, float, highp> float3x2;
+
107  typedef mat<3, 3, float, highp> float3x3;
+
108  typedef mat<3, 4, float, highp> float3x4;
+
109  typedef mat<4, 2, float, highp> float4x2;
+
110  typedef mat<4, 3, float, highp> float4x3;
+
111  typedef mat<4, 4, float, highp> float4x4;
+
112 
+
113  typedef double double1;
+
114  typedef vec<2, double, highp> double2;
+
115  typedef vec<3, double, highp> double3;
+
116  typedef vec<4, double, highp> double4;
+
117 
+
118  typedef double double1x1;
+
119  typedef mat<2, 2, double, highp> double2x2;
+
120  typedef mat<2, 3, double, highp> double2x3;
+
121  typedef mat<2, 4, double, highp> double2x4;
+
122  typedef mat<3, 2, double, highp> double3x2;
+
123  typedef mat<3, 3, double, highp> double3x3;
+
124  typedef mat<3, 4, double, highp> double3x4;
+
125  typedef mat<4, 2, double, highp> double4x2;
+
126  typedef mat<4, 3, double, highp> double4x3;
+
127  typedef mat<4, 4, double, highp> double4x4;
+
128 
+
130 }//namespace glm
+
131 
+
132 #include "compatibility.inl"
+
+
mat< 2, 3, bool, highp > bool2x3
boolean matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
+
mat< 2, 2, float, highp > float2x2
single-qualifier floating-point matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
+
mat< 3, 2, int, highp > int3x2
integer matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 2, double, highp > double4x2
double-qualifier floating-point matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
+
mat< 2, 3, double, highp > double2x3
double-qualifier floating-point matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
+
vec< 4, int, highp > int4
integer vector with 4 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 4, bool, highp > bool4x4
boolean matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 4, int, highp > int4x4
integer matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
+
GLM_FUNC_DECL vec< L, T, Q > atan(vec< L, T, Q > const &y, vec< L, T, Q > const &x)
Arc tangent.
+
mat< 4, 3, float, highp > float4x3
single-qualifier floating-point matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
+
vec< 4, double, highp > double4
double-qualifier floating-point vector with 4 components. (From GLM_GTX_compatibility extension)
+
GLM_FUNC_QUALIFIER vec< 4, T, Q > atan2(const vec< 4, T, Q > &y, const vec< 4, T, Q > &x)
Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what q...
+
float float1x1
single-qualifier floating-point matrix with 1 component. (From GLM_GTX_compatibility extension)
+
vec< 3, bool, highp > bool3
boolean type with 3 components. (From GLM_GTX_compatibility extension)
+
vec< 3, double, highp > double3
double-qualifier floating-point vector with 3 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 3, double, highp > double4x3
double-qualifier floating-point matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
+
mat< 2, 4, double, highp > double2x4
double-qualifier floating-point matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
+
bool bool1
boolean type with 1 component. (From GLM_GTX_compatibility extension)
+
mat< 2, 4, float, highp > float2x4
single-qualifier floating-point matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 3, bool, highp > bool4x3
boolean matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
+
mat< 3, 2, float, highp > float3x2
single-qualifier floating-point matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 2, int, highp > int4x2
integer matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
+
mat< 3, 4, float, highp > float3x4
single-qualifier floating-point matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
+
mat< 2, 4, int, highp > int2x4
integer matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
+
vec< 2, int, highp > int2
integer vector with 2 components. (From GLM_GTX_compatibility extension)
+
vec< 3, float, highp > float3
single-qualifier floating-point vector with 3 components. (From GLM_GTX_compatibility extension)
+
mat< 3, 3, float, highp > float3x3
single-qualifier floating-point matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
+
double double1x1
double-qualifier floating-point matrix with 1 component. (From GLM_GTX_compatibility extension)
+
int int1
integer vector with 1 component. (From GLM_GTX_compatibility extension)
+
mat< 3, 2, bool, highp > bool3x2
boolean matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 2, bool, highp > bool4x2
boolean matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
+
mat< 3, 3, bool, highp > bool3x3
boolean matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
+
mat< 2, 3, int, highp > int2x3
integer matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 4, float, highp > float4x4
single-qualifier floating-point matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
+
mat< 2, 2, bool, highp > bool2x2
boolean matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
+
int int1x1
integer matrix with 1 component. (From GLM_GTX_compatibility extension)
+
mat< 3, 4, int, highp > int3x4
integer matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
+
GLM_FUNC_DECL vec< 4, bool, Q > isfinite(const qua< T, Q > &x)
Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
+
GLM_FUNC_QUALIFIER vec< 4, T, Q > lerp(const vec< 4, T, Q > &x, const vec< 4, T, Q > &y, const vec< 4, T, Q > &a)
Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using v...
+
mat< 3, 3, int, highp > int3x3
integer matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
+
GLM_FUNC_DECL GLM_CONSTEXPR genTypeT mix(genTypeT x, genTypeT y, genTypeU a)
If genTypeU is a floating scalar or vector: Returns x * (1.0 - a) + y * a, i.e., the linear blend of ...
+
vec< 4, float, highp > float4
single-qualifier floating-point vector with 4 components. (From GLM_GTX_compatibility extension)
+
vec< 2, double, highp > double2
double-qualifier floating-point vector with 2 components. (From GLM_GTX_compatibility extension)
+
GLM_FUNC_DECL GLM_CONSTEXPR genType clamp(genType x, genType minVal, genType maxVal)
Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal an...
+
mat< 4, 3, int, highp > int4x3
integer matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 4, double, highp > double4x4
double-qualifier floating-point matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
+
vec< 2, bool, highp > bool2
boolean type with 2 components. (From GLM_GTX_compatibility extension)
+
vec< 4, bool, highp > bool4
boolean type with 4 components. (From GLM_GTX_compatibility extension)
+
float float1
single-qualifier floating-point vector with 1 component. (From GLM_GTX_compatibility extension)
+
mat< 2, 3, float, highp > float2x3
single-qualifier floating-point matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
+
double double1
double-qualifier floating-point vector with 1 component. (From GLM_GTX_compatibility extension)
+
mat< 3, 4, double, highp > double3x4
double-qualifier floating-point matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
+
mat< 3, 2, double, highp > double3x2
double-qualifier floating-point matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
+
mat< 3, 3, double, highp > double3x3
double-qualifier floating-point matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
+
bool bool1x1
boolean matrix with 1 x 1 component. (From GLM_GTX_compatibility extension)
+
mat< 2, 2, int, highp > int2x2
integer matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
+
mat< 2, 4, bool, highp > bool2x4
boolean matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
+
mat< 4, 2, float, highp > float4x2
single-qualifier floating-point matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
+
vec< 3, int, highp > int3
integer vector with 3 components. (From GLM_GTX_compatibility extension)
+
mat< 3, 4, bool, highp > bool3x4
boolean matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
+
mat< 2, 2, double, highp > double2x2
double-qualifier floating-point matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
+
vec< 2, float, highp > float2
single-qualifier floating-point vector with 2 components. (From GLM_GTX_compatibility extension)
+
GLM_FUNC_QUALIFIER vec< 4, T, Q > saturate(const vec< 4, T, Q > &x)
Returns clamp(x, 0, 1) for each component in x. (From GLM_GTX_compatibility)
+ + + + diff --git a/include/glm/doc/api/a00605.html b/include/glm/doc/api/a00605.html new file mode 100644 index 0000000..06a3a52 --- /dev/null +++ b/include/glm/doc/api/a00605.html @@ -0,0 +1,131 @@ + + + + + + + +1.0.2 API documentation: component_wise.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
component_wise.hpp File Reference
+
+
+ +

GLM_GTX_component_wise +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType::value_type compAdd (genType const &v)
 Add all vector components together. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type compMax (genType const &v)
 Find the maximum value between single vector components. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type compMin (genType const &v)
 Find the minimum value between single vector components. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type compMul (genType const &v)
 Multiply all vector components together. More...
 
template<typename floatType , length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, floatType, Q > compNormalize (vec< L, T, Q > const &v)
 Convert an integer vector to a normalized float vector. More...
 
template<length_t L, typename T , typename floatType , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > compScale (vec< L, floatType, Q > const &v)
 Convert a normalized float vector to an integer vector. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type fcompMax (genType const &v)
 Find the maximum float between single vector components. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type fcompMin (genType const &v)
 Find the minimum float between single vector components. More...
 
+

Detailed Description

+

GLM_GTX_component_wise

+
Date
2007-05-21 / 2011-06-07
+
Author
Christophe Riccio
+
See also
Core features (dependence)
+ +

Definition in file component_wise.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00605_source.html b/include/glm/doc/api/a00605_source.html new file mode 100644 index 0000000..8f29b69 --- /dev/null +++ b/include/glm/doc/api/a00605_source.html @@ -0,0 +1,132 @@ + + + + + + + +1.0.2 API documentation: component_wise.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
component_wise.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependencies
+
18 #include "../detail/setup.hpp"
+
19 #include "../detail/qualifier.hpp"
+
20 
+
21 #ifndef GLM_ENABLE_EXPERIMENTAL
+
22 # error "GLM: GLM_GTX_component_wise is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
23 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTX_component_wise extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
35  template<typename floatType, length_t L, typename T, qualifier Q>
+
36  GLM_FUNC_DECL vec<L, floatType, Q> compNormalize(vec<L, T, Q> const& v);
+
37 
+
41  template<length_t L, typename T, typename floatType, qualifier Q>
+
42  GLM_FUNC_DECL vec<L, T, Q> compScale(vec<L, floatType, Q> const& v);
+
43 
+
46  template<typename genType>
+
47  GLM_FUNC_DECL typename genType::value_type compAdd(genType const& v);
+
48 
+
51  template<typename genType>
+
52  GLM_FUNC_DECL typename genType::value_type compMul(genType const& v);
+
53 
+
56  template<typename genType>
+
57  GLM_FUNC_DECL typename genType::value_type compMin(genType const& v);
+
58 
+
61  template<typename genType>
+
62  GLM_FUNC_DECL typename genType::value_type compMax(genType const& v);
+
63 
+
66  template<typename genType>
+
67  GLM_FUNC_DECL typename genType::value_type fcompMin(genType const& v);
+
68 
+
71  template<typename genType>
+
72  GLM_FUNC_DECL typename genType::value_type fcompMax(genType const& v);
+
73 
+
75 }//namespace glm
+
76 
+
77 #include "component_wise.inl"
+
+
GLM_FUNC_DECL vec< L, floatType, Q > compNormalize(vec< L, T, Q > const &v)
Convert an integer vector to a normalized float vector.
+
GLM_FUNC_DECL genType::value_type compAdd(genType const &v)
Add all vector components together.
+
GLM_FUNC_DECL genType::value_type compMax(genType const &v)
Find the maximum value between single vector components.
+
GLM_FUNC_DECL genType::value_type compMul(genType const &v)
Multiply all vector components together.
+
GLM_FUNC_DECL genType::value_type fcompMax(genType const &v)
Find the maximum float between single vector components.
+
GLM_FUNC_DECL vec< L, T, Q > compScale(vec< L, floatType, Q > const &v)
Convert a normalized float vector to an integer vector.
+
GLM_FUNC_DECL genType::value_type fcompMin(genType const &v)
Find the minimum float between single vector components.
+
GLM_FUNC_DECL genType::value_type compMin(genType const &v)
Find the minimum value between single vector components.
+ + + + diff --git a/include/glm/doc/api/a00608.html b/include/glm/doc/api/a00608.html new file mode 100644 index 0000000..3c6524b --- /dev/null +++ b/include/glm/doc/api/a00608.html @@ -0,0 +1,174 @@ + + + + + + + +1.0.2 API documentation: dual_quaternion.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
dual_quaternion.hpp File Reference
+
+
+ +

GLM_GTX_dual_quaternion +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef highp_ddualquat ddualquat
 Dual-quaternion of default double-qualifier floating-point numbers. More...
 
typedef highp_fdualquat dualquat
 Dual-quaternion of floating-point numbers. More...
 
typedef highp_fdualquat fdualquat
 Dual-quaternion of single-qualifier floating-point numbers. More...
 
typedef tdualquat< double, highp > highp_ddualquat
 Dual-quaternion of high double-qualifier floating-point numbers. More...
 
typedef tdualquat< float, highp > highp_dualquat
 Dual-quaternion of high single-qualifier floating-point numbers. More...
 
typedef tdualquat< float, highp > highp_fdualquat
 Dual-quaternion of high single-qualifier floating-point numbers. More...
 
typedef tdualquat< double, lowp > lowp_ddualquat
 Dual-quaternion of low double-qualifier floating-point numbers. More...
 
typedef tdualquat< float, lowp > lowp_dualquat
 Dual-quaternion of low single-qualifier floating-point numbers. More...
 
typedef tdualquat< float, lowp > lowp_fdualquat
 Dual-quaternion of low single-qualifier floating-point numbers. More...
 
typedef tdualquat< double, mediump > mediump_ddualquat
 Dual-quaternion of medium double-qualifier floating-point numbers. More...
 
typedef tdualquat< float, mediump > mediump_dualquat
 Dual-quaternion of medium single-qualifier floating-point numbers. More...
 
typedef tdualquat< float, mediump > mediump_fdualquat
 Dual-quaternion of medium single-qualifier floating-point numbers. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > dual_quat_identity ()
 Creates an identity dual quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > dualquat_cast (mat< 2, 4, T, Q > const &x)
 Converts a 2 * 4 matrix (matrix which holds real and dual parts) to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > dualquat_cast (mat< 3, 4, T, Q > const &x)
 Converts a 3 * 4 matrix (augmented matrix rotation + translation) to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > inverse (tdualquat< T, Q > const &q)
 Returns the q inverse. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > lerp (tdualquat< T, Q > const &x, tdualquat< T, Q > const &y, T const &a)
 Returns the linear interpolation of two dual quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 4, T, Q > mat2x4_cast (tdualquat< T, Q > const &x)
 Converts a quaternion to a 2 * 4 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 4, T, Q > mat3x4_cast (tdualquat< T, Q > const &x)
 Converts a quaternion to a 3 * 4 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > normalize (tdualquat< T, Q > const &q)
 Returns the normalized quaternion. More...
 
+

Detailed Description

+

GLM_GTX_dual_quaternion

+
Author
Maksim Vorobiev (msome.nosp@m.one@.nosp@m.gmail.nosp@m..com)
+
See also
Core features (dependence)
+
+GLM_GTC_constants (dependence)
+
+GLM_GTC_quaternion (dependence)
+ +

Definition in file dual_quaternion.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00608_source.html b/include/glm/doc/api/a00608_source.html new file mode 100644 index 0000000..a6fa61b --- /dev/null +++ b/include/glm/doc/api/a00608_source.html @@ -0,0 +1,296 @@ + + + + + + + +1.0.2 API documentation: dual_quaternion.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
dual_quaternion.hpp
+
+
+Go to the documentation of this file.
1 
+
16 #pragma once
+
17 
+
18 // Dependency:
+
19 #include "../glm.hpp"
+
20 #include "../gtc/constants.hpp"
+
21 #include "../gtc/quaternion.hpp"
+
22 
+
23 #ifndef GLM_ENABLE_EXPERIMENTAL
+
24 # error "GLM: GLM_GTX_dual_quaternion is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
25 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
26 # pragma message("GLM: GLM_GTX_dual_quaternion extension included")
+
27 #endif
+
28 
+
29 namespace glm
+
30 {
+
33 
+
34  template<typename T, qualifier Q = defaultp>
+
35  struct tdualquat
+
36  {
+
37  // -- Implementation detail --
+
38 
+
39  typedef T value_type;
+
40  typedef qua<T, Q> part_type;
+
41 
+
42  // -- Data --
+
43 
+
44  qua<T, Q> real, dual;
+
45 
+
46  // -- Component accesses --
+
47 
+
48  typedef length_t length_type;
+
50  GLM_FUNC_DECL static GLM_CONSTEXPR length_type length(){return 2;}
+
51 
+
52  GLM_FUNC_DECL part_type & operator[](length_type i);
+
53  GLM_FUNC_DECL part_type const& operator[](length_type i) const;
+
54 
+
55  // -- Implicit basic constructors --
+
56 
+
57  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR tdualquat() GLM_DEFAULT;
+
58  GLM_DEFAULTED_FUNC_DECL GLM_CONSTEXPR tdualquat(tdualquat<T, Q> const& d) GLM_DEFAULT;
+
59  template<qualifier P>
+
60  GLM_CTOR_DECL tdualquat(tdualquat<T, P> const& d);
+
61 
+
62  // -- Explicit basic constructors --
+
63 
+
64  GLM_CTOR_DECL tdualquat(qua<T, Q> const& real);
+
65  GLM_CTOR_DECL tdualquat(qua<T, Q> const& orientation, vec<3, T, Q> const& translation);
+
66  GLM_CTOR_DECL tdualquat(qua<T, Q> const& real, qua<T, Q> const& dual);
+
67 
+
68  // -- Conversion constructors --
+
69 
+
70  template<typename U, qualifier P>
+
71  GLM_CTOR_DECL GLM_EXPLICIT tdualquat(tdualquat<U, P> const& q);
+
72 
+
73  GLM_CTOR_DECL GLM_EXPLICIT tdualquat(mat<2, 4, T, Q> const& holder_mat);
+
74  GLM_CTOR_DECL GLM_EXPLICIT tdualquat(mat<3, 4, T, Q> const& aug_mat);
+
75 
+
76  // -- Unary arithmetic operators --
+
77 
+
78  GLM_DEFAULTED_FUNC_DECL tdualquat<T, Q> & operator=(tdualquat<T, Q> const& m) GLM_DEFAULT;
+
79 
+
80  template<typename U>
+
81  GLM_FUNC_DISCARD_DECL tdualquat<T, Q> & operator=(tdualquat<U, Q> const& m);
+
82  template<typename U>
+
83  GLM_FUNC_DISCARD_DECL tdualquat<T, Q> & operator*=(U s);
+
84  template<typename U>
+
85  GLM_FUNC_DISCARD_DECL tdualquat<T, Q> & operator/=(U s);
+
86  };
+
87 
+
88  // -- Unary bit operators --
+
89 
+
90  template<typename T, qualifier Q>
+
91  GLM_FUNC_DECL tdualquat<T, Q> operator+(tdualquat<T, Q> const& q);
+
92 
+
93  template<typename T, qualifier Q>
+
94  GLM_FUNC_DECL tdualquat<T, Q> operator-(tdualquat<T, Q> const& q);
+
95 
+
96  // -- Binary operators --
+
97 
+
98  template<typename T, qualifier Q>
+
99  GLM_FUNC_DECL tdualquat<T, Q> operator+(tdualquat<T, Q> const& q, tdualquat<T, Q> const& p);
+
100 
+
101  template<typename T, qualifier Q>
+
102  GLM_FUNC_DECL tdualquat<T, Q> operator*(tdualquat<T, Q> const& q, tdualquat<T, Q> const& p);
+
103 
+
104  template<typename T, qualifier Q>
+
105  GLM_FUNC_DECL vec<3, T, Q> operator*(tdualquat<T, Q> const& q, vec<3, T, Q> const& v);
+
106 
+
107  template<typename T, qualifier Q>
+
108  GLM_FUNC_DECL vec<3, T, Q> operator*(vec<3, T, Q> const& v, tdualquat<T, Q> const& q);
+
109 
+
110  template<typename T, qualifier Q>
+
111  GLM_FUNC_DECL vec<4, T, Q> operator*(tdualquat<T, Q> const& q, vec<4, T, Q> const& v);
+
112 
+
113  template<typename T, qualifier Q>
+
114  GLM_FUNC_DECL vec<4, T, Q> operator*(vec<4, T, Q> const& v, tdualquat<T, Q> const& q);
+
115 
+
116  template<typename T, qualifier Q>
+
117  GLM_FUNC_DECL tdualquat<T, Q> operator*(tdualquat<T, Q> const& q, T const& s);
+
118 
+
119  template<typename T, qualifier Q>
+
120  GLM_FUNC_DECL tdualquat<T, Q> operator*(T const& s, tdualquat<T, Q> const& q);
+
121 
+
122  template<typename T, qualifier Q>
+
123  GLM_FUNC_DECL tdualquat<T, Q> operator/(tdualquat<T, Q> const& q, T const& s);
+
124 
+
125  // -- Boolean operators --
+
126 
+
127  template<typename T, qualifier Q>
+
128  GLM_FUNC_DECL bool operator==(tdualquat<T, Q> const& q1, tdualquat<T, Q> const& q2);
+
129 
+
130  template<typename T, qualifier Q>
+
131  GLM_FUNC_DECL bool operator!=(tdualquat<T, Q> const& q1, tdualquat<T, Q> const& q2);
+
132 
+
136  template <typename T, qualifier Q>
+
137  GLM_FUNC_DECL tdualquat<T, Q> dual_quat_identity();
+
138 
+
142  template<typename T, qualifier Q>
+
143  GLM_FUNC_DECL tdualquat<T, Q> normalize(tdualquat<T, Q> const& q);
+
144 
+
148  template<typename T, qualifier Q>
+
149  GLM_FUNC_DECL tdualquat<T, Q> lerp(tdualquat<T, Q> const& x, tdualquat<T, Q> const& y, T const& a);
+
150 
+
154  template<typename T, qualifier Q>
+
155  GLM_FUNC_DECL tdualquat<T, Q> inverse(tdualquat<T, Q> const& q);
+
156 
+
160  template<typename T, qualifier Q>
+
161  GLM_FUNC_DECL mat<2, 4, T, Q> mat2x4_cast(tdualquat<T, Q> const& x);
+
162 
+
166  template<typename T, qualifier Q>
+
167  GLM_FUNC_DECL mat<3, 4, T, Q> mat3x4_cast(tdualquat<T, Q> const& x);
+
168 
+
172  template<typename T, qualifier Q>
+
173  GLM_FUNC_DECL tdualquat<T, Q> dualquat_cast(mat<2, 4, T, Q> const& x);
+
174 
+
178  template<typename T, qualifier Q>
+
179  GLM_FUNC_DECL tdualquat<T, Q> dualquat_cast(mat<3, 4, T, Q> const& x);
+
180 
+
181 
+
185  typedef tdualquat<float, lowp> lowp_dualquat;
+
186 
+
190  typedef tdualquat<float, mediump> mediump_dualquat;
+
191 
+
195  typedef tdualquat<float, highp> highp_dualquat;
+
196 
+
197 
+
201  typedef tdualquat<float, lowp> lowp_fdualquat;
+
202 
+
206  typedef tdualquat<float, mediump> mediump_fdualquat;
+
207 
+
211  typedef tdualquat<float, highp> highp_fdualquat;
+
212 
+
213 
+
217  typedef tdualquat<double, lowp> lowp_ddualquat;
+
218 
+
222  typedef tdualquat<double, mediump> mediump_ddualquat;
+
223 
+
227  typedef tdualquat<double, highp> highp_ddualquat;
+
228 
+
229 
+
230 #if(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
+
231  typedef highp_fdualquat dualquat;
+
235 
+ +
240 #elif(defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
+
241  typedef highp_fdualquat dualquat;
+
242  typedef highp_fdualquat fdualquat;
+
243 #elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
+
244  typedef mediump_fdualquat dualquat;
+ +
246 #elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && defined(GLM_PRECISION_LOWP_FLOAT))
+
247  typedef lowp_fdualquat dualquat;
+
248  typedef lowp_fdualquat fdualquat;
+
249 #else
+
250 # error "GLM error: multiple default precision requested for single-precision floating-point types"
+
251 #endif
+
252 
+
253 
+
254 #if(!defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE))
+
255  typedef highp_ddualquat ddualquat;
+
259 #elif(defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE))
+
260  typedef highp_ddualquat ddualquat;
+
261 #elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE))
+ +
263 #elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && defined(GLM_PRECISION_LOWP_DOUBLE))
+
264  typedef lowp_ddualquat ddualquat;
+
265 #else
+
266 # error "GLM error: Multiple default precision requested for double-precision floating-point types"
+
267 #endif
+
268 
+
270 } //namespace glm
+
271 
+
272 #include "dual_quaternion.inl"
+
+
GLM_FUNC_DECL T length(qua< T, Q > const &q)
Returns the norm of a quaternions.
+
tdualquat< float, lowp > lowp_fdualquat
Dual-quaternion of low single-qualifier floating-point numbers.
+
highp_fdualquat dualquat
Dual-quaternion of floating-point numbers.
+
tdualquat< float, mediump > mediump_fdualquat
Dual-quaternion of medium single-qualifier floating-point numbers.
+
tdualquat< double, lowp > lowp_ddualquat
Dual-quaternion of low double-qualifier floating-point numbers.
+
tdualquat< double, mediump > mediump_ddualquat
Dual-quaternion of medium double-qualifier floating-point numbers.
+
tdualquat< float, highp > highp_dualquat
Dual-quaternion of high single-qualifier floating-point numbers.
+
GLM_FUNC_DECL tdualquat< T, Q > inverse(tdualquat< T, Q > const &q)
Returns the q inverse.
+
tdualquat< double, highp > highp_ddualquat
Dual-quaternion of high double-qualifier floating-point numbers.
+
highp_ddualquat ddualquat
Dual-quaternion of default double-qualifier floating-point numbers.
+
GLM_FUNC_DECL tdualquat< T, Q > dualquat_cast(mat< 3, 4, T, Q > const &x)
Converts a 3 * 4 matrix (augmented matrix rotation + translation) to a quaternion.
+
GLM_FUNC_DECL tdualquat< T, Q > lerp(tdualquat< T, Q > const &x, tdualquat< T, Q > const &y, T const &a)
Returns the linear interpolation of two dual quaternion.
+
GLM_FUNC_DECL mat< 2, 4, T, Q > mat2x4_cast(tdualquat< T, Q > const &x)
Converts a quaternion to a 2 * 4 matrix.
+
GLM_FUNC_DECL tdualquat< T, Q > dual_quat_identity()
Creates an identity dual quaternion.
+
tdualquat< float, highp > highp_fdualquat
Dual-quaternion of high single-qualifier floating-point numbers.
+
GLM_FUNC_DECL mat< 3, 4, T, Q > mat3x4_cast(tdualquat< T, Q > const &x)
Converts a quaternion to a 3 * 4 matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > orientation(vec< 3, T, Q > const &Normal, vec< 3, T, Q > const &Up)
Build a rotation matrix from a normal and a up vector.
+
tdualquat< float, mediump > mediump_dualquat
Dual-quaternion of medium single-qualifier floating-point numbers.
+
GLM_FUNC_DECL tdualquat< T, Q > normalize(tdualquat< T, Q > const &q)
Returns the normalized quaternion.
+
highp_fdualquat fdualquat
Dual-quaternion of single-qualifier floating-point numbers.
+
tdualquat< float, lowp > lowp_dualquat
Dual-quaternion of low single-qualifier floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00611.html b/include/glm/doc/api/a00611.html new file mode 100644 index 0000000..bdc91f7 --- /dev/null +++ b/include/glm/doc/api/a00611.html @@ -0,0 +1,226 @@ + + + + + + + +1.0.2 API documentation: easing.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
easing.hpp File Reference
+
+
+ +

GLM_GTX_easing +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType backEaseIn (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseIn (genType const &a, genType const &o)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseInOut (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseInOut (genType const &a, genType const &o)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseOut (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseOut (genType const &a, genType const &o)
 
template<typename genType >
GLM_FUNC_DECL genType bounceEaseIn (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType bounceEaseInOut (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType bounceEaseOut (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType circularEaseIn (genType const &a)
 Modelled after shifted quadrant IV of unit circle. More...
 
template<typename genType >
GLM_FUNC_DECL genType circularEaseInOut (genType const &a)
 Modelled after the piecewise circular function y = (1/2)(1 - sqrt(1 - 4x^2)) ; [0, 0.5) y = (1/2)(sqrt(-(2x - 3)*(2x - 1)) + 1) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType circularEaseOut (genType const &a)
 Modelled after shifted quadrant II of unit circle. More...
 
+template<typename genType >
GLM_FUNC_DECL genType cubicEaseIn (genType const &a)
 Modelled after the cubic y = x^3.
 
template<typename genType >
GLM_FUNC_DECL genType cubicEaseInOut (genType const &a)
 Modelled after the piecewise cubic y = (1/2)((2x)^3) ; [0, 0.5) y = (1/2)((2x-2)^3 + 2) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType cubicEaseOut (genType const &a)
 Modelled after the cubic y = (x - 1)^3 + 1. More...
 
template<typename genType >
GLM_FUNC_DECL genType elasticEaseIn (genType const &a)
 Modelled after the damped sine wave y = sin(13pi/2*x)*pow(2, 10 * (x - 1)) More...
 
template<typename genType >
GLM_FUNC_DECL genType elasticEaseInOut (genType const &a)
 Modelled after the piecewise exponentially-damped sine wave: y = (1/2)*sin(13pi/2*(2*x))*pow(2, 10 * ((2*x) - 1)) ; [0,0.5) y = (1/2)*(sin(-13pi/2*((2x-1)+1))*pow(2,-10(2*x-1)) + 2) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType elasticEaseOut (genType const &a)
 Modelled after the damped sine wave y = sin(-13pi/2*(x + 1))*pow(2, -10x) + 1. More...
 
template<typename genType >
GLM_FUNC_DECL genType exponentialEaseIn (genType const &a)
 Modelled after the exponential function y = 2^(10(x - 1)) More...
 
template<typename genType >
GLM_FUNC_DECL genType exponentialEaseInOut (genType const &a)
 Modelled after the piecewise exponential y = (1/2)2^(10(2x - 1)) ; [0,0.5) y = -(1/2)*2^(-10(2x - 1))) + 1 ; [0.5,1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType exponentialEaseOut (genType const &a)
 Modelled after the exponential function y = -2^(-10x) + 1. More...
 
template<typename genType >
GLM_FUNC_DECL genType linearInterpolation (genType const &a)
 Modelled after the line y = x. More...
 
template<typename genType >
GLM_FUNC_DECL genType quadraticEaseIn (genType const &a)
 Modelled after the parabola y = x^2. More...
 
template<typename genType >
GLM_FUNC_DECL genType quadraticEaseInOut (genType const &a)
 Modelled after the piecewise quadratic y = (1/2)((2x)^2) ; [0, 0.5) y = -(1/2)((2x-1)*(2x-3) - 1) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType quadraticEaseOut (genType const &a)
 Modelled after the parabola y = -x^2 + 2x. More...
 
template<typename genType >
GLM_FUNC_DECL genType quarticEaseIn (genType const &a)
 Modelled after the quartic x^4. More...
 
template<typename genType >
GLM_FUNC_DECL genType quarticEaseInOut (genType const &a)
 Modelled after the piecewise quartic y = (1/2)((2x)^4) ; [0, 0.5) y = -(1/2)((2x-2)^4 - 2) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType quarticEaseOut (genType const &a)
 Modelled after the quartic y = 1 - (x - 1)^4. More...
 
template<typename genType >
GLM_FUNC_DECL genType quinticEaseIn (genType const &a)
 Modelled after the quintic y = x^5. More...
 
template<typename genType >
GLM_FUNC_DECL genType quinticEaseInOut (genType const &a)
 Modelled after the piecewise quintic y = (1/2)((2x)^5) ; [0, 0.5) y = (1/2)((2x-2)^5 + 2) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType quinticEaseOut (genType const &a)
 Modelled after the quintic y = (x - 1)^5 + 1. More...
 
template<typename genType >
GLM_FUNC_DECL genType sineEaseIn (genType const &a)
 Modelled after quarter-cycle of sine wave. More...
 
template<typename genType >
GLM_FUNC_DECL genType sineEaseInOut (genType const &a)
 Modelled after half sine wave. More...
 
template<typename genType >
GLM_FUNC_DECL genType sineEaseOut (genType const &a)
 Modelled after quarter-cycle of sine wave (different phase) More...
 
+

Detailed Description

+

GLM_GTX_easing

+
Author
Robert Chisholm
+
See also
Core features (dependence)
+ +

Definition in file easing.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00611_source.html b/include/glm/doc/api/a00611_source.html new file mode 100644 index 0000000..1402a1a --- /dev/null +++ b/include/glm/doc/api/a00611_source.html @@ -0,0 +1,233 @@ + + + + + + + +1.0.2 API documentation: easing.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
easing.hpp
+
+
+Go to the documentation of this file.
1 
+
17 #pragma once
+
18 
+
19 // Dependency:
+
20 #include "../glm.hpp"
+
21 #include "../gtc/constants.hpp"
+
22 #include "../detail/qualifier.hpp"
+
23 
+
24 #ifndef GLM_ENABLE_EXPERIMENTAL
+
25 # error "GLM: GLM_GTX_easing is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
26 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
27 # pragma message("GLM: GLM_GTX_easing extension included")
+
28 #endif
+
29 
+
30 namespace glm{
+
33 
+
36  template <typename genType>
+
37  GLM_FUNC_DECL genType linearInterpolation(genType const & a);
+
38 
+
41  template <typename genType>
+
42  GLM_FUNC_DECL genType quadraticEaseIn(genType const & a);
+
43 
+
46  template <typename genType>
+
47  GLM_FUNC_DECL genType quadraticEaseOut(genType const & a);
+
48 
+
53  template <typename genType>
+
54  GLM_FUNC_DECL genType quadraticEaseInOut(genType const & a);
+
55 
+
57  template <typename genType>
+
58  GLM_FUNC_DECL genType cubicEaseIn(genType const & a);
+
59 
+
62  template <typename genType>
+
63  GLM_FUNC_DECL genType cubicEaseOut(genType const & a);
+
64 
+
69  template <typename genType>
+
70  GLM_FUNC_DECL genType cubicEaseInOut(genType const & a);
+
71 
+
74  template <typename genType>
+
75  GLM_FUNC_DECL genType quarticEaseIn(genType const & a);
+
76 
+
79  template <typename genType>
+
80  GLM_FUNC_DECL genType quarticEaseOut(genType const & a);
+
81 
+
86  template <typename genType>
+
87  GLM_FUNC_DECL genType quarticEaseInOut(genType const & a);
+
88 
+
91  template <typename genType>
+
92  GLM_FUNC_DECL genType quinticEaseIn(genType const & a);
+
93 
+
96  template <typename genType>
+
97  GLM_FUNC_DECL genType quinticEaseOut(genType const & a);
+
98 
+
103  template <typename genType>
+
104  GLM_FUNC_DECL genType quinticEaseInOut(genType const & a);
+
105 
+
108  template <typename genType>
+
109  GLM_FUNC_DECL genType sineEaseIn(genType const & a);
+
110 
+
113  template <typename genType>
+
114  GLM_FUNC_DECL genType sineEaseOut(genType const & a);
+
115 
+
118  template <typename genType>
+
119  GLM_FUNC_DECL genType sineEaseInOut(genType const & a);
+
120 
+
123  template <typename genType>
+
124  GLM_FUNC_DECL genType circularEaseIn(genType const & a);
+
125 
+
128  template <typename genType>
+
129  GLM_FUNC_DECL genType circularEaseOut(genType const & a);
+
130 
+
135  template <typename genType>
+
136  GLM_FUNC_DECL genType circularEaseInOut(genType const & a);
+
137 
+
140  template <typename genType>
+
141  GLM_FUNC_DECL genType exponentialEaseIn(genType const & a);
+
142 
+
145  template <typename genType>
+
146  GLM_FUNC_DECL genType exponentialEaseOut(genType const & a);
+
147 
+
152  template <typename genType>
+
153  GLM_FUNC_DECL genType exponentialEaseInOut(genType const & a);
+
154 
+
157  template <typename genType>
+
158  GLM_FUNC_DECL genType elasticEaseIn(genType const & a);
+
159 
+
162  template <typename genType>
+
163  GLM_FUNC_DECL genType elasticEaseOut(genType const & a);
+
164 
+
169  template <typename genType>
+
170  GLM_FUNC_DECL genType elasticEaseInOut(genType const & a);
+
171 
+
173  template <typename genType>
+
174  GLM_FUNC_DECL genType backEaseIn(genType const& a);
+
175 
+
177  template <typename genType>
+
178  GLM_FUNC_DECL genType backEaseOut(genType const& a);
+
179 
+
181  template <typename genType>
+
182  GLM_FUNC_DECL genType backEaseInOut(genType const& a);
+
183 
+
187  template <typename genType>
+
188  GLM_FUNC_DECL genType backEaseIn(genType const& a, genType const& o);
+
189 
+
193  template <typename genType>
+
194  GLM_FUNC_DECL genType backEaseOut(genType const& a, genType const& o);
+
195 
+
199  template <typename genType>
+
200  GLM_FUNC_DECL genType backEaseInOut(genType const& a, genType const& o);
+
201 
+
203  template <typename genType>
+
204  GLM_FUNC_DECL genType bounceEaseIn(genType const& a);
+
205 
+
207  template <typename genType>
+
208  GLM_FUNC_DECL genType bounceEaseOut(genType const& a);
+
209 
+
211  template <typename genType>
+
212  GLM_FUNC_DECL genType bounceEaseInOut(genType const& a);
+
213 
+
215 }//namespace glm
+
216 
+
217 #include "easing.inl"
+
+
GLM_FUNC_DECL genType cubicEaseInOut(genType const &a)
Modelled after the piecewise cubic y = (1/2)((2x)^3) ; [0, 0.5) y = (1/2)((2x-2)^3 + 2) ; [0....
+
GLM_FUNC_DECL genType exponentialEaseIn(genType const &a)
Modelled after the exponential function y = 2^(10(x - 1))
+
GLM_FUNC_DECL genType quinticEaseIn(genType const &a)
Modelled after the quintic y = x^5.
+
GLM_FUNC_DECL genType backEaseIn(genType const &a, genType const &o)
+
GLM_FUNC_DECL genType backEaseInOut(genType const &a, genType const &o)
+
GLM_FUNC_DECL genType quadraticEaseOut(genType const &a)
Modelled after the parabola y = -x^2 + 2x.
+
GLM_FUNC_DECL genType circularEaseIn(genType const &a)
Modelled after shifted quadrant IV of unit circle.
+
GLM_FUNC_DECL genType linearInterpolation(genType const &a)
Modelled after the line y = x.
+
GLM_FUNC_DECL genType bounceEaseOut(genType const &a)
+
GLM_FUNC_DECL genType exponentialEaseInOut(genType const &a)
Modelled after the piecewise exponential y = (1/2)2^(10(2x - 1)) ; [0,0.5) y = -(1/2)*2^(-10(2x - 1))...
+
GLM_FUNC_DECL genType sineEaseInOut(genType const &a)
Modelled after half sine wave.
+
GLM_FUNC_DECL genType quarticEaseOut(genType const &a)
Modelled after the quartic y = 1 - (x - 1)^4.
+
GLM_FUNC_DECL genType sineEaseIn(genType const &a)
Modelled after quarter-cycle of sine wave.
+
GLM_FUNC_DECL genType quadraticEaseInOut(genType const &a)
Modelled after the piecewise quadratic y = (1/2)((2x)^2) ; [0, 0.5) y = -(1/2)((2x-1)*(2x-3) - 1) ; [...
+
GLM_FUNC_DECL genType quinticEaseInOut(genType const &a)
Modelled after the piecewise quintic y = (1/2)((2x)^5) ; [0, 0.5) y = (1/2)((2x-2)^5 + 2) ; [0....
+
GLM_FUNC_DECL genType backEaseOut(genType const &a, genType const &o)
+
GLM_FUNC_DECL genType circularEaseOut(genType const &a)
Modelled after shifted quadrant II of unit circle.
+
GLM_FUNC_DECL genType bounceEaseInOut(genType const &a)
+
GLM_FUNC_DECL genType bounceEaseIn(genType const &a)
+
GLM_FUNC_DECL genType cubicEaseOut(genType const &a)
Modelled after the cubic y = (x - 1)^3 + 1.
+
GLM_FUNC_DECL genType quadraticEaseIn(genType const &a)
Modelled after the parabola y = x^2.
+
GLM_FUNC_DECL genType cubicEaseIn(genType const &a)
Modelled after the cubic y = x^3.
+
GLM_FUNC_DECL genType quarticEaseInOut(genType const &a)
Modelled after the piecewise quartic y = (1/2)((2x)^4) ; [0, 0.5) y = -(1/2)((2x-2)^4 - 2) ; [0....
+
GLM_FUNC_DECL genType quinticEaseOut(genType const &a)
Modelled after the quintic y = (x - 1)^5 + 1.
+
GLM_FUNC_DECL genType elasticEaseInOut(genType const &a)
Modelled after the piecewise exponentially-damped sine wave: y = (1/2)*sin(13pi/2*(2*x))*pow(2,...
+
GLM_FUNC_DECL genType circularEaseInOut(genType const &a)
Modelled after the piecewise circular function y = (1/2)(1 - sqrt(1 - 4x^2)) ; [0,...
+
GLM_FUNC_DECL genType sineEaseOut(genType const &a)
Modelled after quarter-cycle of sine wave (different phase)
+
GLM_FUNC_DECL genType elasticEaseIn(genType const &a)
Modelled after the damped sine wave y = sin(13pi/2*x)*pow(2, 10 * (x - 1))
+
GLM_FUNC_DECL genType elasticEaseOut(genType const &a)
Modelled after the damped sine wave y = sin(-13pi/2*(x + 1))*pow(2, -10x) + 1.
+
GLM_FUNC_DECL genType quarticEaseIn(genType const &a)
Modelled after the quartic x^4.
+
GLM_FUNC_DECL genType exponentialEaseOut(genType const &a)
Modelled after the exponential function y = -2^(-10x) + 1.
+ + + + diff --git a/include/glm/doc/api/a00614.html b/include/glm/doc/api/a00614.html new file mode 100644 index 0000000..f9da2a9 --- /dev/null +++ b/include/glm/doc/api/a00614.html @@ -0,0 +1,261 @@ + + + + + + + +1.0.2 API documentation: euler_angles.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
euler_angles.hpp File Reference
+
+
+ +

GLM_GTX_euler_angles +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > derivedEulerAngleX (T const &angleX, T const &angularVelocityX)
 Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about X-axis. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > derivedEulerAngleY (T const &angleY, T const &angularVelocityY)
 Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about Y-axis. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > derivedEulerAngleZ (T const &angleZ, T const &angularVelocityZ)
 Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about Z-axis. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleX (T const &angleX)
 Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle X. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXY (T const &angleX, T const &angleY)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXYX (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXYZ (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXZ (T const &angleX, T const &angleZ)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXZX (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXZY (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleY (T const &angleY)
 Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle Y. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYX (T const &angleY, T const &angleX)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYXY (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYXZ (T const &yaw, T const &pitch, T const &roll)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYZ (T const &angleY, T const &angleZ)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYZX (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYZY (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZ (T const &angleZ)
 Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle Z. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZX (T const &angle, T const &angleX)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZXY (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZXZ (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZY (T const &angleZ, T const &angleY)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZYX (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZYZ (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y * Z). More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleXYX (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (X * Y * X) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleXYZ (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (X * Y * Z) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleXZX (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (X * Z * X) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleXZY (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (X * Z * Y) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleYXY (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Y * X * Y) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleYXZ (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Y * X * Z) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleYZX (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Y * Z * X) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleYZY (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Y * Z * Y) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleZXY (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Z * X * Y) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleZXZ (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Z * X * Z) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleZYX (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Z * Y * X) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleZYZ (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Z * Y * Z) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DECL mat< 2, 2, T, defaultp > orientate2 (T const &angle)
 Creates a 2D 2 * 2 rotation matrix from an euler angle. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 3, T, defaultp > orientate3 (T const &angle)
 Creates a 2D 4 * 4 homogeneous rotation matrix from an euler angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > orientate3 (vec< 3, T, Q > const &angles)
 Creates a 3D 3 * 3 rotation matrix from euler angles (Y * X * Z). More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > orientate4 (vec< 3, T, Q > const &angles)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > yawPitchRoll (T const &yaw, T const &pitch, T const &roll)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z). More...
 
+

Detailed Description

+

GLM_GTX_euler_angles

+
See also
Core features (dependence)
+ +

Definition in file euler_angles.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00614_source.html b/include/glm/doc/api/a00614_source.html new file mode 100644 index 0000000..45b8a63 --- /dev/null +++ b/include/glm/doc/api/a00614_source.html @@ -0,0 +1,359 @@ + + + + + + + +1.0.2 API documentation: euler_angles.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
euler_angles.hpp
+
+
+Go to the documentation of this file.
1 
+
16 #pragma once
+
17 
+
18 // Dependency:
+
19 #include "../glm.hpp"
+
20 
+
21 #ifndef GLM_ENABLE_EXPERIMENTAL
+
22 # error "GLM: GLM_GTX_euler_angles is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
23 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTX_euler_angles extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
34  template<typename T>
+
35  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleX(
+
36  T const& angleX);
+
37 
+
40  template<typename T>
+
41  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleY(
+
42  T const& angleY);
+
43 
+
46  template<typename T>
+
47  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleZ(
+
48  T const& angleZ);
+
49 
+
52  template <typename T>
+
53  GLM_FUNC_DECL mat<4, 4, T, defaultp> derivedEulerAngleX(
+
54  T const & angleX, T const & angularVelocityX);
+
55 
+
58  template <typename T>
+
59  GLM_FUNC_DECL mat<4, 4, T, defaultp> derivedEulerAngleY(
+
60  T const & angleY, T const & angularVelocityY);
+
61 
+
64  template <typename T>
+
65  GLM_FUNC_DECL mat<4, 4, T, defaultp> derivedEulerAngleZ(
+
66  T const & angleZ, T const & angularVelocityZ);
+
67 
+
70  template<typename T>
+
71  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleXY(
+
72  T const& angleX,
+
73  T const& angleY);
+
74 
+
77  template<typename T>
+
78  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleYX(
+
79  T const& angleY,
+
80  T const& angleX);
+
81 
+
84  template<typename T>
+
85  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleXZ(
+
86  T const& angleX,
+
87  T const& angleZ);
+
88 
+
91  template<typename T>
+
92  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleZX(
+
93  T const& angle,
+
94  T const& angleX);
+
95 
+
98  template<typename T>
+
99  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleYZ(
+
100  T const& angleY,
+
101  T const& angleZ);
+
102 
+
105  template<typename T>
+
106  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleZY(
+
107  T const& angleZ,
+
108  T const& angleY);
+
109 
+
112  template<typename T>
+
113  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleXYZ(
+
114  T const& t1,
+
115  T const& t2,
+
116  T const& t3);
+
117 
+
120  template<typename T>
+
121  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleYXZ(
+
122  T const& yaw,
+
123  T const& pitch,
+
124  T const& roll);
+
125 
+
128  template <typename T>
+
129  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleXZX(
+
130  T const & t1,
+
131  T const & t2,
+
132  T const & t3);
+
133 
+
136  template <typename T>
+
137  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleXYX(
+
138  T const & t1,
+
139  T const & t2,
+
140  T const & t3);
+
141 
+
144  template <typename T>
+
145  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleYXY(
+
146  T const & t1,
+
147  T const & t2,
+
148  T const & t3);
+
149 
+
152  template <typename T>
+
153  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleYZY(
+
154  T const & t1,
+
155  T const & t2,
+
156  T const & t3);
+
157 
+
160  template <typename T>
+
161  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleZYZ(
+
162  T const & t1,
+
163  T const & t2,
+
164  T const & t3);
+
165 
+
168  template <typename T>
+
169  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleZXZ(
+
170  T const & t1,
+
171  T const & t2,
+
172  T const & t3);
+
173 
+
176  template <typename T>
+
177  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleXZY(
+
178  T const & t1,
+
179  T const & t2,
+
180  T const & t3);
+
181 
+
184  template <typename T>
+
185  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleYZX(
+
186  T const & t1,
+
187  T const & t2,
+
188  T const & t3);
+
189 
+
192  template <typename T>
+
193  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleZYX(
+
194  T const & t1,
+
195  T const & t2,
+
196  T const & t3);
+
197 
+
200  template <typename T>
+
201  GLM_FUNC_DECL mat<4, 4, T, defaultp> eulerAngleZXY(
+
202  T const & t1,
+
203  T const & t2,
+
204  T const & t3);
+
205 
+
208  template<typename T>
+
209  GLM_FUNC_DECL mat<4, 4, T, defaultp> yawPitchRoll(
+
210  T const& yaw,
+
211  T const& pitch,
+
212  T const& roll);
+
213 
+
216  template<typename T>
+
217  GLM_FUNC_DECL mat<2, 2, T, defaultp> orientate2(T const& angle);
+
218 
+
221  template<typename T>
+
222  GLM_FUNC_DECL mat<3, 3, T, defaultp> orientate3(T const& angle);
+
223 
+
226  template<typename T, qualifier Q>
+
227  GLM_FUNC_DECL mat<3, 3, T, Q> orientate3(vec<3, T, Q> const& angles);
+
228 
+
231  template<typename T, qualifier Q>
+
232  GLM_FUNC_DECL mat<4, 4, T, Q> orientate4(vec<3, T, Q> const& angles);
+
233 
+
236  template<typename T>
+
237  GLM_FUNC_DISCARD_DECL void extractEulerAngleXYZ(mat<4, 4, T, defaultp> const& M,
+
238  T & t1,
+
239  T & t2,
+
240  T & t3);
+
241 
+
244  template <typename T>
+
245  GLM_FUNC_DISCARD_DECL void extractEulerAngleYXZ(mat<4, 4, T, defaultp> const & M,
+
246  T & t1,
+
247  T & t2,
+
248  T & t3);
+
249 
+
252  template <typename T>
+
253  GLM_FUNC_DISCARD_DECL void extractEulerAngleXZX(mat<4, 4, T, defaultp> const & M,
+
254  T & t1,
+
255  T & t2,
+
256  T & t3);
+
257 
+
260  template <typename T>
+
261  GLM_FUNC_DISCARD_DECL void extractEulerAngleXYX(mat<4, 4, T, defaultp> const & M,
+
262  T & t1,
+
263  T & t2,
+
264  T & t3);
+
265 
+
268  template <typename T>
+
269  GLM_FUNC_DISCARD_DECL void extractEulerAngleYXY(mat<4, 4, T, defaultp> const & M,
+
270  T & t1,
+
271  T & t2,
+
272  T & t3);
+
273 
+
276  template <typename T>
+
277  GLM_FUNC_DISCARD_DECL void extractEulerAngleYZY(mat<4, 4, T, defaultp> const & M,
+
278  T & t1,
+
279  T & t2,
+
280  T & t3);
+
281 
+
284  template <typename T>
+
285  GLM_FUNC_DISCARD_DECL void extractEulerAngleZYZ(mat<4, 4, T, defaultp> const & M,
+
286  T & t1,
+
287  T & t2,
+
288  T & t3);
+
289 
+
292  template <typename T>
+
293  GLM_FUNC_DISCARD_DECL void extractEulerAngleZXZ(mat<4, 4, T, defaultp> const & M,
+
294  T & t1,
+
295  T & t2,
+
296  T & t3);
+
297 
+
300  template <typename T>
+
301  GLM_FUNC_DISCARD_DECL void extractEulerAngleXZY(mat<4, 4, T, defaultp> const & M,
+
302  T & t1,
+
303  T & t2,
+
304  T & t3);
+
305 
+
308  template <typename T>
+
309  GLM_FUNC_DISCARD_DECL void extractEulerAngleYZX(mat<4, 4, T, defaultp> const & M,
+
310  T & t1,
+
311  T & t2,
+
312  T & t3);
+
313 
+
316  template <typename T>
+
317  GLM_FUNC_DISCARD_DECL void extractEulerAngleZYX(mat<4, 4, T, defaultp> const & M,
+
318  T & t1,
+
319  T & t2,
+
320  T & t3);
+
321 
+
324  template <typename T>
+
325  GLM_FUNC_DISCARD_DECL void extractEulerAngleZXY(mat<4, 4, T, defaultp> const & M,
+
326  T & t1,
+
327  T & t2,
+
328  T & t3);
+
329 
+
331 }//namespace glm
+
332 
+
333 #include "euler_angles.inl"
+
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZ(T const &angleZ)
Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle Z.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > derivedEulerAngleY(T const &angleY, T const &angularVelocityY)
Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about Y-axis.
+
GLM_FUNC_DECL T roll(qua< T, Q > const &x)
Returns roll value of euler angles expressed in radians.
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleXZX(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (X * Z * X) Euler angles from the rotation matrix M.
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleZXY(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (Z * X * Y) Euler angles from the rotation matrix M.
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleYXY(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (Y * X * Y) Euler angles from the rotation matrix M.
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleZXZ(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (Z * X * Z) Euler angles from the rotation matrix M.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZYZ(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y * Z).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleX(T const &angleX)
Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle X.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXY(T const &angleX, T const &angleY)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > derivedEulerAngleZ(T const &angleZ, T const &angularVelocityZ)
Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about Z-axis.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > orientate3(vec< 3, T, Q > const &angles)
Creates a 3D 3 * 3 rotation matrix from euler angles (Y * X * Z).
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleXYX(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (X * Y * X) Euler angles from the rotation matrix M.
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleYZX(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (Y * Z * X) Euler angles from the rotation matrix M.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXZ(T const &angleX, T const &angleZ)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYZY(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z * Y).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXZX(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z * X).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZXZ(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X * Z).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZY(T const &angleZ, T const &angleY)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXZY(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z * Y).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYXY(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Y).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > derivedEulerAngleX(T const &angleX, T const &angularVelocityX)
Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about X-axis.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZX(T const &angle, T const &angleX)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYZ(T const &angleY, T const &angleZ)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z).
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleXYZ(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (X * Y * Z) Euler angles from the rotation matrix M.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleZYX(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (Z * Y * X) Euler angles from the rotation matrix M.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZYX(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y * X).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZXY(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X * Y).
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleYZY(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (Y * Z * Y) Euler angles from the rotation matrix M.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYX(T const &angleY, T const &angleX)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X).
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleXZY(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (X * Z * Y) Euler angles from the rotation matrix M.
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleYXZ(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (Y * X * Z) Euler angles from the rotation matrix M.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > orientate4(vec< 3, T, Q > const &angles)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z).
+
GLM_FUNC_DISCARD_DECL void extractEulerAngleZYZ(mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
Extracts the (Z * Y * Z) Euler angles from the rotation matrix M.
+
GLM_FUNC_DECL T pitch(qua< T, Q > const &x)
Returns pitch value of euler angles expressed in radians.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYZX(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z * X).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXYX(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y * X).
+
GLM_FUNC_DECL mat< 2, 2, T, defaultp > orientate2(T const &angle)
Creates a 2D 2 * 2 rotation matrix from an euler angle.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleY(T const &angleY)
Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle Y.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYXZ(T const &yaw, T const &pitch, T const &roll)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z).
+
GLM_FUNC_DECL T yaw(qua< T, Q > const &x)
Returns yaw value of euler angles expressed in radians.
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXYZ(T const &t1, T const &t2, T const &t3)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y * Z).
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > yawPitchRoll(T const &yaw, T const &pitch, T const &roll)
Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z).
+ + + + diff --git a/include/glm/doc/api/a00617.html b/include/glm/doc/api/a00617.html new file mode 100644 index 0000000..02b7e13 --- /dev/null +++ b/include/glm/doc/api/a00617.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: extend.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
extend.hpp File Reference
+
+
+ +

GLM_GTX_extend +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType extend (genType const &Origin, genType const &Source, typename genType::value_type const Length)
 Extends of Length the Origin position using the (Source - Origin) direction. More...
 
+

Detailed Description

+

GLM_GTX_extend

+
See also
Core features (dependence)
+ +

Definition in file extend.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00617_source.html b/include/glm/doc/api/a00617_source.html new file mode 100644 index 0000000..f707014 --- /dev/null +++ b/include/glm/doc/api/a00617_source.html @@ -0,0 +1,106 @@ + + + + + + + +1.0.2 API documentation: extend.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
extend.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_extend is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_extend extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
31  template<typename genType>
+
32  GLM_FUNC_DECL genType extend(
+
33  genType const& Origin,
+
34  genType const& Source,
+
35  typename genType::value_type const Length);
+
36 
+
38 }//namespace glm
+
39 
+
40 #include "extend.inl"
+
+
GLM_FUNC_DECL genType extend(genType const &Origin, genType const &Source, typename genType::value_type const Length)
Extends of Length the Origin position using the (Source - Origin) direction.
+ + + + diff --git a/include/glm/doc/api/a00620.html b/include/glm/doc/api/a00620.html new file mode 100644 index 0000000..cc978f9 --- /dev/null +++ b/include/glm/doc/api/a00620.html @@ -0,0 +1,145 @@ + + + + + + + +1.0.2 API documentation: extended_min_max.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
extended_min_max.hpp File Reference
+
+
+ +

GLM_GTX_extended_min_max +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > max (C< T > const &x, C< T > const &y, C< T > const &z)
 Return the maximum component-wise values of 3 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > max (C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)
 Return the maximum component-wise values of 4 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > max (C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z)
 Return the maximum component-wise values of 3 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > max (C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z, typename C< T >::T const &w)
 Return the maximum component-wise values of 4 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T max (T const &x, T const &y, T const &z)
 Return the maximum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T max (T const &x, T const &y, T const &z, T const &w)
 Return the maximum component-wise values of 4 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > min (C< T > const &x, C< T > const &y, C< T > const &z)
 Return the minimum component-wise values of 3 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > min (C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)
 Return the minimum component-wise values of 4 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > min (C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z)
 Return the minimum component-wise values of 3 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > min (C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z, typename C< T >::T const &w)
 Return the minimum component-wise values of 4 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T min (T const &x, T const &y, T const &z)
 Return the minimum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T min (T const &x, T const &y, T const &z, T const &w)
 Return the minimum component-wise values of 4 inputs. More...
 
+

Detailed Description

+

GLM_GTX_extended_min_max

+
See also
Core features (dependence)
+ +

Definition in file extended_min_max.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00620_source.html b/include/glm/doc/api/a00620_source.html new file mode 100644 index 0000000..e047538 --- /dev/null +++ b/include/glm/doc/api/a00620_source.html @@ -0,0 +1,180 @@ + + + + + + + +1.0.2 API documentation: extended_min_max.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
extended_min_max.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 #include "../ext/vector_common.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_extended_min_max is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_extended_min_max extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
32  template<typename T>
+
33  GLM_FUNC_DECL T min(
+
34  T const& x,
+
35  T const& y,
+
36  T const& z);
+
37 
+
40  template<typename T, template<typename> class C>
+
41  GLM_FUNC_DECL C<T> min(
+
42  C<T> const& x,
+
43  typename C<T>::T const& y,
+
44  typename C<T>::T const& z);
+
45 
+
48  template<typename T, template<typename> class C>
+
49  GLM_FUNC_DECL C<T> min(
+
50  C<T> const& x,
+
51  C<T> const& y,
+
52  C<T> const& z);
+
53 
+
56  template<typename T>
+
57  GLM_FUNC_DECL T min(
+
58  T const& x,
+
59  T const& y,
+
60  T const& z,
+
61  T const& w);
+
62 
+
65  template<typename T, template<typename> class C>
+
66  GLM_FUNC_DECL C<T> min(
+
67  C<T> const& x,
+
68  typename C<T>::T const& y,
+
69  typename C<T>::T const& z,
+
70  typename C<T>::T const& w);
+
71 
+
74  template<typename T, template<typename> class C>
+
75  GLM_FUNC_DECL C<T> min(
+
76  C<T> const& x,
+
77  C<T> const& y,
+
78  C<T> const& z,
+
79  C<T> const& w);
+
80 
+
83  template<typename T>
+
84  GLM_FUNC_DECL T max(
+
85  T const& x,
+
86  T const& y,
+
87  T const& z);
+
88 
+
91  template<typename T, template<typename> class C>
+
92  GLM_FUNC_DECL C<T> max(
+
93  C<T> const& x,
+
94  typename C<T>::T const& y,
+
95  typename C<T>::T const& z);
+
96 
+
99  template<typename T, template<typename> class C>
+
100  GLM_FUNC_DECL C<T> max(
+
101  C<T> const& x,
+
102  C<T> const& y,
+
103  C<T> const& z);
+
104 
+
107  template<typename T>
+
108  GLM_FUNC_DECL T max(
+
109  T const& x,
+
110  T const& y,
+
111  T const& z,
+
112  T const& w);
+
113 
+
116  template<typename T, template<typename> class C>
+
117  GLM_FUNC_DECL C<T> max(
+
118  C<T> const& x,
+
119  typename C<T>::T const& y,
+
120  typename C<T>::T const& z,
+
121  typename C<T>::T const& w);
+
122 
+
125  template<typename T, template<typename> class C>
+
126  GLM_FUNC_DECL C<T> max(
+
127  C<T> const& x,
+
128  C<T> const& y,
+
129  C<T> const& z,
+
130  C<T> const& w);
+
131 
+
133 }//namespace glm
+
134 
+
135 #include "extended_min_max.inl"
+
+
GLM_FUNC_DECL C< T > max(C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)
Return the maximum component-wise values of 4 inputs.
+
GLM_FUNC_DECL C< T > min(C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)
Return the minimum component-wise values of 4 inputs.
+ + + + diff --git a/include/glm/doc/api/a00623.html b/include/glm/doc/api/a00623.html new file mode 100644 index 0000000..d326180 --- /dev/null +++ b/include/glm/doc/api/a00623.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: exterior_product.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
exterior_product.hpp File Reference
+
+
+ +

GLM_GTX_exterior_product +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR T cross (vec< 2, T, Q > const &v, vec< 2, T, Q > const &u)
 Returns the cross product of x and y. More...
 
+

Detailed Description

+

GLM_GTX_exterior_product

+
See also
Core features (dependence)
+
+GLM_GTX_exterior_product (dependence)
+ +

Definition in file exterior_product.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00623_source.html b/include/glm/doc/api/a00623_source.html new file mode 100644 index 0000000..43d5f64 --- /dev/null +++ b/include/glm/doc/api/a00623_source.html @@ -0,0 +1,104 @@ + + + + + + + +1.0.2 API documentation: exterior_product.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
exterior_product.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependencies
+
17 #include "../detail/setup.hpp"
+
18 #include "../detail/qualifier.hpp"
+
19 
+
20 #ifndef GLM_ENABLE_EXPERIMENTAL
+
21 # error "GLM: GLM_GTX_exterior_product is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
22 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTX_exterior_product extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
37  template<typename T, qualifier Q>
+
38  GLM_FUNC_DECL GLM_CONSTEXPR T cross(vec<2, T, Q> const& v, vec<2, T, Q> const& u);
+
39 
+
41 } //namespace glm
+
42 
+
43 #include "exterior_product.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR T cross(vec< 2, T, Q > const &v, vec< 2, T, Q > const &u)
Returns the cross product of x and y.
+ + + + diff --git a/include/glm/doc/api/a00626.html b/include/glm/doc/api/a00626.html new file mode 100644 index 0000000..3e57b86 --- /dev/null +++ b/include/glm/doc/api/a00626.html @@ -0,0 +1,147 @@ + + + + + + + +1.0.2 API documentation: fast_exponential.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
fast_exponential.hpp File Reference
+
+
+ +

GLM_GTX_fast_exponential +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL T fastExp (T x)
 Faster than the common exp function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastExp (vec< L, T, Q > const &x)
 Faster than the common exp function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastExp2 (T x)
 Faster than the common exp2 function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastExp2 (vec< L, T, Q > const &x)
 Faster than the common exp2 function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastLog (T x)
 Faster than the common log function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastLog (vec< L, T, Q > const &x)
 Faster than the common exp2 function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastLog2 (T x)
 Faster than the common log2 function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastLog2 (vec< L, T, Q > const &x)
 Faster than the common log2 function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastPow (genType x, genType y)
 Faster than the common pow function but less accurate. More...
 
template<typename genTypeT , typename genTypeU >
GLM_FUNC_DECL genTypeT fastPow (genTypeT x, genTypeU y)
 Faster than the common pow function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastPow (vec< L, T, Q > const &x)
 Faster than the common pow function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastPow (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Faster than the common pow function but less accurate. More...
 
+

Detailed Description

+

GLM_GTX_fast_exponential

+
See also
Core features (dependence)
+
+gtx_half_float (dependence)
+ +

Definition in file fast_exponential.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00626_source.html b/include/glm/doc/api/a00626_source.html new file mode 100644 index 0000000..0da0b7c --- /dev/null +++ b/include/glm/doc/api/a00626_source.html @@ -0,0 +1,140 @@ + + + + + + + +1.0.2 API documentation: fast_exponential.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
fast_exponential.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_fast_exponential is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_fast_exponential extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
32  template<typename genType>
+
33  GLM_FUNC_DECL genType fastPow(genType x, genType y);
+
34 
+
37  template<length_t L, typename T, qualifier Q>
+
38  GLM_FUNC_DECL vec<L, T, Q> fastPow(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
39 
+
42  template<typename genTypeT, typename genTypeU>
+
43  GLM_FUNC_DECL genTypeT fastPow(genTypeT x, genTypeU y);
+
44 
+
47  template<length_t L, typename T, qualifier Q>
+
48  GLM_FUNC_DECL vec<L, T, Q> fastPow(vec<L, T, Q> const& x);
+
49 
+
52  template<typename T>
+
53  GLM_FUNC_DECL T fastExp(T x);
+
54 
+
57  template<length_t L, typename T, qualifier Q>
+
58  GLM_FUNC_DECL vec<L, T, Q> fastExp(vec<L, T, Q> const& x);
+
59 
+
62  template<typename T>
+
63  GLM_FUNC_DECL T fastLog(T x);
+
64 
+
67  template<length_t L, typename T, qualifier Q>
+
68  GLM_FUNC_DECL vec<L, T, Q> fastLog(vec<L, T, Q> const& x);
+
69 
+
72  template<typename T>
+
73  GLM_FUNC_DECL T fastExp2(T x);
+
74 
+
77  template<length_t L, typename T, qualifier Q>
+
78  GLM_FUNC_DECL vec<L, T, Q> fastExp2(vec<L, T, Q> const& x);
+
79 
+
82  template<typename T>
+
83  GLM_FUNC_DECL T fastLog2(T x);
+
84 
+
87  template<length_t L, typename T, qualifier Q>
+
88  GLM_FUNC_DECL vec<L, T, Q> fastLog2(vec<L, T, Q> const& x);
+
89 
+
91 }//namespace glm
+
92 
+
93 #include "fast_exponential.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > fastLog2(vec< L, T, Q > const &x)
Faster than the common log2 function but less accurate.
+
GLM_FUNC_DECL vec< L, T, Q > fastExp(vec< L, T, Q > const &x)
Faster than the common exp function but less accurate.
+
GLM_FUNC_DECL vec< L, T, Q > fastLog(vec< L, T, Q > const &x)
Faster than the common exp2 function but less accurate.
+
GLM_FUNC_DECL vec< L, T, Q > fastExp2(vec< L, T, Q > const &x)
Faster than the common exp2 function but less accurate.
+
GLM_FUNC_DECL vec< L, T, Q > fastPow(vec< L, T, Q > const &x)
Faster than the common pow function but less accurate.
+ + + + diff --git a/include/glm/doc/api/a00629.html b/include/glm/doc/api/a00629.html new file mode 100644 index 0000000..f5e00b4 --- /dev/null +++ b/include/glm/doc/api/a00629.html @@ -0,0 +1,137 @@ + + + + + + + +1.0.2 API documentation: fast_square_root.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
fast_square_root.hpp File Reference
+
+
+ +

GLM_GTX_fast_square_root +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType fastDistance (genType x, genType y)
 Faster than the common distance function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T fastDistance (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Faster than the common distance function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastInverseSqrt (genType x)
 Faster than the common inversesqrt function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastInverseSqrt (vec< L, T, Q > const &x)
 Faster than the common inversesqrt function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastLength (genType x)
 Faster than the common length function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T fastLength (vec< L, T, Q > const &x)
 Faster than the common length function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastNormalize (genType x)
 Faster than the common normalize function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastNormalize (vec< L, T, Q > const &x)
 Faster than the common normalize function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastSqrt (genType x)
 Faster than the common sqrt function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastSqrt (vec< L, T, Q > const &x)
 Faster than the common sqrt function but less accurate. More...
 
+

Detailed Description

+

GLM_GTX_fast_square_root

+
See also
Core features (dependence)
+ +

Definition in file fast_square_root.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00629_source.html b/include/glm/doc/api/a00629_source.html new file mode 100644 index 0000000..8f0f18c --- /dev/null +++ b/include/glm/doc/api/a00629_source.html @@ -0,0 +1,136 @@ + + + + + + + +1.0.2 API documentation: fast_square_root.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
fast_square_root.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependency:
+
18 #include "../common.hpp"
+
19 #include "../exponential.hpp"
+
20 #include "../geometric.hpp"
+
21 
+
22 #ifndef GLM_ENABLE_EXPERIMENTAL
+
23 # error "GLM: GLM_GTX_fast_square_root is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
24 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
25 # pragma message("GLM: GLM_GTX_fast_square_root extension included")
+
26 #endif
+
27 
+
28 namespace glm
+
29 {
+
32 
+
36  template<typename genType>
+
37  GLM_FUNC_DECL genType fastSqrt(genType x);
+
38 
+
42  template<length_t L, typename T, qualifier Q>
+
43  GLM_FUNC_DECL vec<L, T, Q> fastSqrt(vec<L, T, Q> const& x);
+
44 
+
48  template<typename genType>
+
49  GLM_FUNC_DECL genType fastInverseSqrt(genType x);
+
50 
+
54  template<length_t L, typename T, qualifier Q>
+
55  GLM_FUNC_DECL vec<L, T, Q> fastInverseSqrt(vec<L, T, Q> const& x);
+
56 
+
60  template<typename genType>
+
61  GLM_FUNC_DECL genType fastLength(genType x);
+
62 
+
66  template<length_t L, typename T, qualifier Q>
+
67  GLM_FUNC_DECL T fastLength(vec<L, T, Q> const& x);
+
68 
+
72  template<typename genType>
+
73  GLM_FUNC_DECL genType fastDistance(genType x, genType y);
+
74 
+
78  template<length_t L, typename T, qualifier Q>
+
79  GLM_FUNC_DECL T fastDistance(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
80 
+
84  template<typename genType>
+
85  GLM_FUNC_DECL genType fastNormalize(genType x);
+
86 
+
90  template<length_t L, typename T, qualifier Q>
+
91  GLM_FUNC_DECL vec<L, T, Q> fastNormalize(vec<L, T, Q> const& x);
+
92 
+
94 }// namespace glm
+
95 
+
96 #include "fast_square_root.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > fastInverseSqrt(vec< L, T, Q > const &x)
Faster than the common inversesqrt function but less accurate.
+
GLM_FUNC_DECL vec< L, T, Q > fastSqrt(vec< L, T, Q > const &x)
Faster than the common sqrt function but less accurate.
+
GLM_FUNC_DECL vec< L, T, Q > fastNormalize(vec< L, T, Q > const &x)
Faster than the common normalize function but less accurate.
+
GLM_FUNC_DECL T fastLength(vec< L, T, Q > const &x)
Faster than the common length function but less accurate.
+
GLM_FUNC_DECL T fastDistance(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Faster than the common distance function but less accurate.
+ + + + diff --git a/include/glm/doc/api/a00632.html b/include/glm/doc/api/a00632.html new file mode 100644 index 0000000..a49ad3a --- /dev/null +++ b/include/glm/doc/api/a00632.html @@ -0,0 +1,130 @@ + + + + + + + +1.0.2 API documentation: fast_trigonometry.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
fast_trigonometry.hpp File Reference
+
+
+ +

GLM_GTX_fast_trigonometry +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL T fastAcos (T angle)
 Faster than the common acos function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastAsin (T angle)
 Faster than the common asin function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastAtan (T angle)
 Faster than the common atan function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastAtan (T y, T x)
 Faster than the common atan function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastCos (T angle)
 Faster than the common cos function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastSin (T angle)
 Faster than the common sin function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastTan (T angle)
 Faster than the common tan function but less accurate. More...
 
+template<typename T >
GLM_FUNC_DECL T wrapAngle (T angle)
 Wrap an angle to [0 2pi[ From GLM_GTX_fast_trigonometry extension.
 
+

Detailed Description

+

GLM_GTX_fast_trigonometry

+
See also
Core features (dependence)
+ +

Definition in file fast_trigonometry.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00632_source.html b/include/glm/doc/api/a00632_source.html new file mode 100644 index 0000000..15a1c03 --- /dev/null +++ b/include/glm/doc/api/a00632_source.html @@ -0,0 +1,131 @@ + + + + + + + +1.0.2 API documentation: fast_trigonometry.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
fast_trigonometry.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../gtc/constants.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_fast_trigonometry is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_fast_trigonometry extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
31  template<typename T>
+
32  GLM_FUNC_DECL T wrapAngle(T angle);
+
33 
+
36  template<typename T>
+
37  GLM_FUNC_DECL T fastSin(T angle);
+
38 
+
41  template<typename T>
+
42  GLM_FUNC_DECL T fastCos(T angle);
+
43 
+
47  template<typename T>
+
48  GLM_FUNC_DECL T fastTan(T angle);
+
49 
+
53  template<typename T>
+
54  GLM_FUNC_DECL T fastAsin(T angle);
+
55 
+
59  template<typename T>
+
60  GLM_FUNC_DECL T fastAcos(T angle);
+
61 
+
65  template<typename T>
+
66  GLM_FUNC_DECL T fastAtan(T y, T x);
+
67 
+
71  template<typename T>
+
72  GLM_FUNC_DECL T fastAtan(T angle);
+
73 
+
75 }//namespace glm
+
76 
+
77 #include "fast_trigonometry.inl"
+
+
GLM_FUNC_DECL T fastAsin(T angle)
Faster than the common asin function but less accurate.
+
GLM_FUNC_DECL T wrapAngle(T angle)
Wrap an angle to [0 2pi[ From GLM_GTX_fast_trigonometry extension.
+
GLM_FUNC_DECL T fastTan(T angle)
Faster than the common tan function but less accurate.
+
GLM_FUNC_DECL T fastAcos(T angle)
Faster than the common acos function but less accurate.
+
GLM_FUNC_DECL T fastAtan(T angle)
Faster than the common atan function but less accurate.
+
GLM_FUNC_DECL T fastCos(T angle)
Faster than the common cos function but less accurate.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL T fastSin(T angle)
Faster than the common sin function but less accurate.
+ + + + diff --git a/include/glm/doc/api/a00635.html b/include/glm/doc/api/a00635.html new file mode 100644 index 0000000..c0d832a --- /dev/null +++ b/include/glm/doc/api/a00635.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: functions.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
functions.hpp File Reference
+
+
+ +

GLM_GTX_functions +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL T gauss (T x, T ExpectedValue, T StandardDeviation)
 1D gauss function More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T gauss (vec< 2, T, Q > const &Coord, vec< 2, T, Q > const &ExpectedValue, vec< 2, T, Q > const &StandardDeviation)
 2D gauss function More...
 
+

Detailed Description

+

GLM_GTX_functions

+
See also
Core features (dependence)
+
+GLM_GTC_quaternion (dependence)
+ +

Definition in file functions.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00635_source.html b/include/glm/doc/api/a00635_source.html new file mode 100644 index 0000000..2223509 --- /dev/null +++ b/include/glm/doc/api/a00635_source.html @@ -0,0 +1,115 @@ + + + + + + + +1.0.2 API documentation: functions.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
functions.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependencies
+
17 #include "../detail/setup.hpp"
+
18 #include "../detail/qualifier.hpp"
+
19 #include "../detail/type_vec2.hpp"
+
20 
+
21 #ifndef GLM_ENABLE_EXPERIMENTAL
+
22 # error "GLM: GLM_GTX_functions is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
23 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTX_functions extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
35  template<typename T>
+
36  GLM_FUNC_DECL T gauss(
+
37  T x,
+
38  T ExpectedValue,
+
39  T StandardDeviation);
+
40 
+
44  template<typename T, qualifier Q>
+
45  GLM_FUNC_DECL T gauss(
+
46  vec<2, T, Q> const& Coord,
+
47  vec<2, T, Q> const& ExpectedValue,
+
48  vec<2, T, Q> const& StandardDeviation);
+
49 
+
51 }//namespace glm
+
52 
+
53 #include "functions.inl"
+
54 
+
+
GLM_FUNC_DECL T gauss(vec< 2, T, Q > const &Coord, vec< 2, T, Q > const &ExpectedValue, vec< 2, T, Q > const &StandardDeviation)
2D gauss function
+ + + + diff --git a/include/glm/doc/api/a00638.html b/include/glm/doc/api/a00638.html new file mode 100644 index 0000000..e68d2b5 --- /dev/null +++ b/include/glm/doc/api/a00638.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: gradient_paint.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gradient_paint.hpp File Reference
+
+
+ +

GLM_GTX_gradient_paint +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL T linearGradient (vec< 2, T, Q > const &Point0, vec< 2, T, Q > const &Point1, vec< 2, T, Q > const &Position)
 Return a color from a linear gradient. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T radialGradient (vec< 2, T, Q > const &Center, T const &Radius, vec< 2, T, Q > const &Focal, vec< 2, T, Q > const &Position)
 Return a color from a radial gradient. More...
 
+

Detailed Description

+

GLM_GTX_gradient_paint

+
See also
Core features (dependence)
+
+GLM_GTX_optimum_pow (dependence)
+ +

Definition in file gradient_paint.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00638_source.html b/include/glm/doc/api/a00638_source.html new file mode 100644 index 0000000..82a43ba --- /dev/null +++ b/include/glm/doc/api/a00638_source.html @@ -0,0 +1,115 @@ + + + + + + + +1.0.2 API documentation: gradient_paint.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gradient_paint.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 #include "../gtx/optimum_pow.hpp"
+
19 
+
20 #ifndef GLM_ENABLE_EXPERIMENTAL
+
21 # error "GLM: GLM_GTX_gradient_paint is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
22 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTX_gradient_paint extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
33  template<typename T, qualifier Q>
+
34  GLM_FUNC_DECL T radialGradient(
+
35  vec<2, T, Q> const& Center,
+
36  T const& Radius,
+
37  vec<2, T, Q> const& Focal,
+
38  vec<2, T, Q> const& Position);
+
39 
+
42  template<typename T, qualifier Q>
+
43  GLM_FUNC_DECL T linearGradient(
+
44  vec<2, T, Q> const& Point0,
+
45  vec<2, T, Q> const& Point1,
+
46  vec<2, T, Q> const& Position);
+
47 
+
49 }// namespace glm
+
50 
+
51 #include "gradient_paint.inl"
+
+
GLM_FUNC_DECL T radialGradient(vec< 2, T, Q > const &Center, T const &Radius, vec< 2, T, Q > const &Focal, vec< 2, T, Q > const &Position)
Return a color from a radial gradient.
+
GLM_FUNC_DECL T linearGradient(vec< 2, T, Q > const &Point0, vec< 2, T, Q > const &Point1, vec< 2, T, Q > const &Position)
Return a color from a linear gradient.
+ + + + diff --git a/include/glm/doc/api/a00641.html b/include/glm/doc/api/a00641.html new file mode 100644 index 0000000..7da4b2f --- /dev/null +++ b/include/glm/doc/api/a00641.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: handed_coordinate_space.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
handed_coordinate_space.hpp File Reference
+
+
+ +

GLM_GTX_handed_coordinate_space +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL bool leftHanded (vec< 3, T, Q > const &tangent, vec< 3, T, Q > const &binormal, vec< 3, T, Q > const &normal)
 Return if a trihedron left handed or not. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool rightHanded (vec< 3, T, Q > const &tangent, vec< 3, T, Q > const &binormal, vec< 3, T, Q > const &normal)
 Return if a trihedron right handed or not. More...
 
+

Detailed Description

+

GLM_GTX_handed_coordinate_space

+
See also
Core features (dependence)
+ +

Definition in file handed_coordinate_space.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00641_source.html b/include/glm/doc/api/a00641_source.html new file mode 100644 index 0000000..1a82af5 --- /dev/null +++ b/include/glm/doc/api/a00641_source.html @@ -0,0 +1,113 @@ + + + + + + + +1.0.2 API documentation: handed_coordinate_space.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
handed_coordinate_space.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_handed_coordinate_space is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_handed_coordinate_space extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
31  template<typename T, qualifier Q>
+
32  GLM_FUNC_DECL bool rightHanded(
+
33  vec<3, T, Q> const& tangent,
+
34  vec<3, T, Q> const& binormal,
+
35  vec<3, T, Q> const& normal);
+
36 
+
39  template<typename T, qualifier Q>
+
40  GLM_FUNC_DECL bool leftHanded(
+
41  vec<3, T, Q> const& tangent,
+
42  vec<3, T, Q> const& binormal,
+
43  vec<3, T, Q> const& normal);
+
44 
+
46 }// namespace glm
+
47 
+
48 #include "handed_coordinate_space.inl"
+
+
GLM_FUNC_DECL bool leftHanded(vec< 3, T, Q > const &tangent, vec< 3, T, Q > const &binormal, vec< 3, T, Q > const &normal)
Return if a trihedron left handed or not.
+
GLM_FUNC_DECL bool rightHanded(vec< 3, T, Q > const &tangent, vec< 3, T, Q > const &binormal, vec< 3, T, Q > const &normal)
Return if a trihedron right handed or not.
+ + + + diff --git a/include/glm/doc/api/a00644.html b/include/glm/doc/api/a00644.html new file mode 100644 index 0000000..33e7297 --- /dev/null +++ b/include/glm/doc/api/a00644.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: hash.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
hash.hpp File Reference
+
+
+ +

GLM_GTX_hash +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTX_hash

+
See also
Core features (dependence)
+ +

Definition in file hash.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00644_source.html b/include/glm/doc/api/a00644_source.html new file mode 100644 index 0000000..b66adfe --- /dev/null +++ b/include/glm/doc/api/a00644_source.html @@ -0,0 +1,226 @@ + + + + + + + +1.0.2 API documentation: hash.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
hash.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #if defined(GLM_FORCE_MESSAGES) && !defined(GLM_EXT_INCLUDED)
+
16 # ifndef GLM_ENABLE_EXPERIMENTAL
+
17 # pragma message("GLM: GLM_GTX_hash is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it.")
+
18 # else
+
19 # pragma message("GLM: GLM_GTX_hash extension included")
+
20 # endif
+
21 #endif
+
22 
+
23 #include "../vec2.hpp"
+
24 #include "../vec3.hpp"
+
25 #include "../vec4.hpp"
+
26 #include "../gtc/vec1.hpp"
+
27 
+
28 #include "../gtc/quaternion.hpp"
+
29 #include "../gtx/dual_quaternion.hpp"
+
30 
+
31 #include "../mat2x2.hpp"
+
32 #include "../mat2x3.hpp"
+
33 #include "../mat2x4.hpp"
+
34 
+
35 #include "../mat3x2.hpp"
+
36 #include "../mat3x3.hpp"
+
37 #include "../mat3x4.hpp"
+
38 
+
39 #include "../mat4x2.hpp"
+
40 #include "../mat4x3.hpp"
+
41 #include "../mat4x4.hpp"
+
42 
+
43 #if defined(_MSC_VER)
+
44  // MSVC uses _MSVC_LANG instead of __cplusplus
+
45  #if _MSVC_LANG < 201103L
+
46  #pragma message("GLM_GTX_hash requires C++11 standard library support")
+
47  #endif
+
48 #elif defined(__GNUC__) || defined(__clang__)
+
49  // GNU and Clang use __cplusplus
+
50  #if __cplusplus < 201103L
+
51  #pragma message("GLM_GTX_hash requires C++11 standard library support")
+
52  #endif
+
53 #else
+
54  #error "Unknown compiler"
+
55 #endif
+
56 
+
57 #if GLM_LANG & GLM_LANG_CXX11
+
58 #define GLM_GTX_hash 1
+
59 #include <functional>
+
60 
+
61 namespace std
+
62 {
+
63  template<typename T, glm::qualifier Q>
+
64  struct hash<glm::vec<1, T, Q> >
+
65  {
+
66  GLM_FUNC_DECL size_t operator()(glm::vec<1, T, Q> const& v) const GLM_NOEXCEPT;
+
67  };
+
68 
+
69  template<typename T, glm::qualifier Q>
+
70  struct hash<glm::vec<2, T, Q> >
+
71  {
+
72  GLM_FUNC_DECL size_t operator()(glm::vec<2, T, Q> const& v) const GLM_NOEXCEPT;
+
73  };
+
74 
+
75  template<typename T, glm::qualifier Q>
+
76  struct hash<glm::vec<3, T, Q> >
+
77  {
+
78  GLM_FUNC_DECL size_t operator()(glm::vec<3, T, Q> const& v) const GLM_NOEXCEPT;
+
79  };
+
80 
+
81  template<typename T, glm::qualifier Q>
+
82  struct hash<glm::vec<4, T, Q> >
+
83  {
+
84  GLM_FUNC_DECL size_t operator()(glm::vec<4, T, Q> const& v) const GLM_NOEXCEPT;
+
85  };
+
86 
+
87  template<typename T, glm::qualifier Q>
+
88  struct hash<glm::qua<T, Q> >
+
89  {
+
90  GLM_FUNC_DECL size_t operator()(glm::qua<T, Q> const& q) const GLM_NOEXCEPT;
+
91  };
+
92 
+
93  template<typename T, glm::qualifier Q>
+
94  struct hash<glm::tdualquat<T, Q> >
+
95  {
+
96  GLM_FUNC_DECL size_t operator()(glm::tdualquat<T,Q> const& q) const GLM_NOEXCEPT;
+
97  };
+
98 
+
99  template<typename T, glm::qualifier Q>
+
100  struct hash<glm::mat<2, 2, T, Q> >
+
101  {
+
102  GLM_FUNC_DECL size_t operator()(glm::mat<2, 2, T,Q> const& m) const GLM_NOEXCEPT;
+
103  };
+
104 
+
105  template<typename T, glm::qualifier Q>
+
106  struct hash<glm::mat<2, 3, T, Q> >
+
107  {
+
108  GLM_FUNC_DECL size_t operator()(glm::mat<2, 3, T,Q> const& m) const GLM_NOEXCEPT;
+
109  };
+
110 
+
111  template<typename T, glm::qualifier Q>
+
112  struct hash<glm::mat<2, 4, T, Q> >
+
113  {
+
114  GLM_FUNC_DECL size_t operator()(glm::mat<2, 4, T,Q> const& m) const GLM_NOEXCEPT;
+
115  };
+
116 
+
117  template<typename T, glm::qualifier Q>
+
118  struct hash<glm::mat<3, 2, T, Q> >
+
119  {
+
120  GLM_FUNC_DECL size_t operator()(glm::mat<3, 2, T,Q> const& m) const GLM_NOEXCEPT;
+
121  };
+
122 
+
123  template<typename T, glm::qualifier Q>
+
124  struct hash<glm::mat<3, 3, T, Q> >
+
125  {
+
126  GLM_FUNC_DECL size_t operator()(glm::mat<3, 3, T,Q> const& m) const GLM_NOEXCEPT;
+
127  };
+
128 
+
129  template<typename T, glm::qualifier Q>
+
130  struct hash<glm::mat<3, 4, T, Q> >
+
131  {
+
132  GLM_FUNC_DECL size_t operator()(glm::mat<3, 4, T,Q> const& m) const GLM_NOEXCEPT;
+
133  };
+
134 
+
135  template<typename T, glm::qualifier Q>
+
136  struct hash<glm::mat<4, 2, T, Q> >
+
137  {
+
138  GLM_FUNC_DECL size_t operator()(glm::mat<4, 2, T,Q> const& m) const GLM_NOEXCEPT;
+
139  };
+
140 
+
141  template<typename T, glm::qualifier Q>
+
142  struct hash<glm::mat<4, 3, T, Q> >
+
143  {
+
144  GLM_FUNC_DECL size_t operator()(glm::mat<4, 3, T,Q> const& m) const GLM_NOEXCEPT;
+
145  };
+
146 
+
147  template<typename T, glm::qualifier Q>
+
148  struct hash<glm::mat<4, 4, T, Q> >
+
149  {
+
150  GLM_FUNC_DECL size_t operator()(glm::mat<4, 4, T,Q> const& m) const GLM_NOEXCEPT;
+
151  };
+
152 } // namespace std
+
153 
+
154 #include "hash.inl"
+
155 
+
156 #endif //GLM_LANG & GLM_LANG_CXX11
+
+ + + + diff --git a/include/glm/doc/api/a00647.html b/include/glm/doc/api/a00647.html new file mode 100644 index 0000000..262e785 --- /dev/null +++ b/include/glm/doc/api/a00647.html @@ -0,0 +1,123 @@ + + + + + + + +1.0.2 API documentation: intersect.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
intersect.hpp File Reference
+
+
+ +

GLM_GTX_intersect +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL bool intersectLineSphere (genType const &point0, genType const &point1, genType const &sphereCenter, typename genType::value_type sphereRadius, genType &intersectionPosition1, genType &intersectionNormal1, genType &intersectionPosition2=genType(), genType &intersectionNormal2=genType())
 Compute the intersection of a line and a sphere. More...
 
template<typename genType >
GLM_FUNC_DECL bool intersectLineTriangle (genType const &orig, genType const &dir, genType const &vert0, genType const &vert1, genType const &vert2, genType &position)
 Compute the intersection of a line and a triangle. More...
 
template<typename genType >
GLM_FUNC_DECL bool intersectRayPlane (genType const &orig, genType const &dir, genType const &planeOrig, genType const &planeNormal, typename genType::value_type &intersectionDistance)
 Compute the intersection of a ray and a plane. More...
 
template<typename genType >
GLM_FUNC_DECL bool intersectRaySphere (genType const &rayStarting, genType const &rayNormalizedDirection, genType const &sphereCenter, const typename genType::value_type sphereRadius, genType &intersectionPosition, genType &intersectionNormal)
 Compute the intersection of a ray and a sphere. More...
 
template<typename genType >
GLM_FUNC_DECL bool intersectRaySphere (genType const &rayStarting, genType const &rayNormalizedDirection, genType const &sphereCenter, typename genType::value_type const sphereRadiusSquared, typename genType::value_type &intersectionDistance)
 Compute the intersection distance of a ray and a sphere. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool intersectRayTriangle (vec< 3, T, Q > const &orig, vec< 3, T, Q > const &dir, vec< 3, T, Q > const &v0, vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 2, T, Q > &baryPosition, T &distance)
 Compute the intersection of a ray and a triangle. More...
 
+

Detailed Description

+

GLM_GTX_intersect

+
See also
Core features (dependence)
+
+GLM_GTX_closest_point (dependence)
+ +

Definition in file intersect.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00647_source.html b/include/glm/doc/api/a00647_source.html new file mode 100644 index 0000000..41e3136 --- /dev/null +++ b/include/glm/doc/api/a00647_source.html @@ -0,0 +1,147 @@ + + + + + + + +1.0.2 API documentation: intersect.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
intersect.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include <cfloat>
+
18 #include <limits>
+
19 #include "../glm.hpp"
+
20 #include "../geometric.hpp"
+
21 #include "../gtx/closest_point.hpp"
+
22 #include "../gtx/vector_query.hpp"
+
23 
+
24 #ifndef GLM_ENABLE_EXPERIMENTAL
+
25 # error "GLM: GLM_GTX_closest_point is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
26 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
27 # pragma message("GLM: GLM_GTX_closest_point extension included")
+
28 #endif
+
29 
+
30 namespace glm
+
31 {
+
34 
+
38  template<typename genType>
+
39  GLM_FUNC_DECL bool intersectRayPlane(
+
40  genType const& orig, genType const& dir,
+
41  genType const& planeOrig, genType const& planeNormal,
+
42  typename genType::value_type & intersectionDistance);
+
43 
+
47  template<typename T, qualifier Q>
+
48  GLM_FUNC_DECL bool intersectRayTriangle(
+
49  vec<3, T, Q> const& orig, vec<3, T, Q> const& dir,
+
50  vec<3, T, Q> const& v0, vec<3, T, Q> const& v1, vec<3, T, Q> const& v2,
+
51  vec<2, T, Q>& baryPosition, T& distance);
+
52 
+
55  template<typename genType>
+
56  GLM_FUNC_DECL bool intersectLineTriangle(
+
57  genType const& orig, genType const& dir,
+
58  genType const& vert0, genType const& vert1, genType const& vert2,
+
59  genType & position);
+
60 
+
64  template<typename genType>
+
65  GLM_FUNC_DECL bool intersectRaySphere(
+
66  genType const& rayStarting, genType const& rayNormalizedDirection,
+
67  genType const& sphereCenter, typename genType::value_type const sphereRadiusSquared,
+
68  typename genType::value_type & intersectionDistance);
+
69 
+
72  template<typename genType>
+
73  GLM_FUNC_DECL bool intersectRaySphere(
+
74  genType const& rayStarting, genType const& rayNormalizedDirection,
+
75  genType const& sphereCenter, const typename genType::value_type sphereRadius,
+
76  genType & intersectionPosition, genType & intersectionNormal);
+
77 
+
80  template<typename genType>
+
81  GLM_FUNC_DECL bool intersectLineSphere(
+
82  genType const& point0, genType const& point1,
+
83  genType const& sphereCenter, typename genType::value_type sphereRadius,
+
84  genType & intersectionPosition1, genType & intersectionNormal1,
+
85  genType & intersectionPosition2 = genType(), genType & intersectionNormal2 = genType());
+
86 
+
88 }//namespace glm
+
89 
+
90 #include "intersect.inl"
+
+
GLM_FUNC_DECL bool intersectRayPlane(genType const &orig, genType const &dir, genType const &planeOrig, genType const &planeNormal, typename genType::value_type &intersectionDistance)
Compute the intersection of a ray and a plane.
+
GLM_FUNC_DECL bool intersectLineTriangle(genType const &orig, genType const &dir, genType const &vert0, genType const &vert1, genType const &vert2, genType &position)
Compute the intersection of a line and a triangle.
+
GLM_FUNC_DECL T distance(vec< L, T, Q > const &p0, vec< L, T, Q > const &p1)
Returns the distance between p0 and p1, i.e., length(p0 - p1).
+
GLM_FUNC_DECL bool intersectRaySphere(genType const &rayStarting, genType const &rayNormalizedDirection, genType const &sphereCenter, const typename genType::value_type sphereRadius, genType &intersectionPosition, genType &intersectionNormal)
Compute the intersection of a ray and a sphere.
+
GLM_FUNC_DECL bool intersectRayTriangle(vec< 3, T, Q > const &orig, vec< 3, T, Q > const &dir, vec< 3, T, Q > const &v0, vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 2, T, Q > &baryPosition, T &distance)
Compute the intersection of a ray and a triangle.
+
GLM_FUNC_DECL bool intersectLineSphere(genType const &point0, genType const &point1, genType const &sphereCenter, typename genType::value_type sphereRadius, genType &intersectionPosition1, genType &intersectionNormal1, genType &intersectionPosition2=genType(), genType &intersectionNormal2=genType())
Compute the intersection of a line and a sphere.
+ + + + diff --git a/include/glm/doc/api/a00650.html b/include/glm/doc/api/a00650.html new file mode 100644 index 0000000..26673df --- /dev/null +++ b/include/glm/doc/api/a00650.html @@ -0,0 +1,96 @@ + + + + + + + +1.0.2 API documentation: io.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
io.hpp File Reference
+
+
+ +

GLM_GTX_io +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTX_io

+
Author
Jan P Springer (regni.nosp@m.rpsj.nosp@m.@gmai.nosp@m.l.co.nosp@m.m)
+
See also
Core features (dependence)
+
+GLM_GTC_matrix_access (dependence)
+
+GLM_GTC_quaternion (dependence)
+ +

Definition in file io.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00650_source.html b/include/glm/doc/api/a00650_source.html new file mode 100644 index 0000000..ea8cbf6 --- /dev/null +++ b/include/glm/doc/api/a00650_source.html @@ -0,0 +1,270 @@ + + + + + + + +1.0.2 API documentation: io.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
io.hpp
+
+
+Go to the documentation of this file.
1 
+
20 #pragma once
+
21 
+
22 // Dependency:
+
23 #include "../glm.hpp"
+
24 #include "../gtx/quaternion.hpp"
+
25 
+
26 #ifndef GLM_ENABLE_EXPERIMENTAL
+
27 # error "GLM: GLM_GTX_io is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
28 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
29 # pragma message("GLM: GLM_GTX_io extension included")
+
30 #endif
+
31 
+
32 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
33 # pragma clang diagnostic push
+
34 # pragma clang diagnostic ignored "-Wpadded"
+
35 # pragma clang diagnostic ignored "-Wshorten-64-to-32"
+
36 # pragma clang diagnostic ignored "-Wglobal-constructors"
+
37 #endif
+
38 
+
39 #include <iosfwd> // std::basic_ostream<> (fwd)
+
40 #include <locale> // std::locale, std::locale::facet, std::locale::id
+
41 #include <utility> // std::pair<>
+
42 
+
43 namespace glm
+
44 {
+
47 
+
48  namespace io
+
49  {
+
50  enum order_type { column_major, row_major};
+
51 
+
52  template<typename CTy>
+
53  class format_punct : public std::locale::facet
+
54  {
+
55  typedef CTy char_type;
+
56 
+
57  public:
+
58 
+
59  static std::locale::id id;
+
60 
+
61  bool formatted;
+
62  unsigned precision;
+
63  unsigned width;
+
64  char_type separator;
+
65  char_type delim_left;
+
66  char_type delim_right;
+
67  char_type space;
+
68  char_type newline;
+
69  order_type order;
+
70 
+
71  GLM_FUNC_DISCARD_DECL explicit format_punct(size_t a = 0);
+
72  GLM_FUNC_DISCARD_DECL explicit format_punct(format_punct const&);
+
73  };
+
74 
+
75  template<typename CTy, typename CTr = std::char_traits<CTy> >
+
76  class basic_state_saver {
+
77 
+
78  public:
+
79 
+
80  GLM_FUNC_DISCARD_DECL explicit basic_state_saver(std::basic_ios<CTy,CTr>&);
+
81  GLM_FUNC_DISCARD_DECL ~basic_state_saver();
+
82 
+
83  private:
+
84 
+
85  typedef ::std::basic_ios<CTy,CTr> state_type;
+
86  typedef typename state_type::char_type char_type;
+
87  typedef ::std::ios_base::fmtflags flags_type;
+
88  typedef ::std::streamsize streamsize_type;
+
89  typedef ::std::locale const locale_type;
+
90 
+
91  state_type& state_;
+
92  flags_type flags_;
+
93  streamsize_type precision_;
+
94  streamsize_type width_;
+
95  char_type fill_;
+
96  locale_type locale_;
+
97 
+
98  GLM_FUNC_DECL basic_state_saver& operator=(basic_state_saver const&);
+
99  };
+
100 
+
101  typedef basic_state_saver<char> state_saver;
+
102  typedef basic_state_saver<wchar_t> wstate_saver;
+
103 
+
104  template<typename CTy, typename CTr = std::char_traits<CTy> >
+
105  class basic_format_saver
+
106  {
+
107  public:
+
108 
+
109  GLM_FUNC_DISCARD_DECL explicit basic_format_saver(std::basic_ios<CTy,CTr>&);
+
110  GLM_FUNC_DISCARD_DECL ~basic_format_saver();
+
111 
+
112  private:
+
113 
+
114  basic_state_saver<CTy> const bss_;
+
115 
+
116  GLM_FUNC_DECL basic_format_saver& operator=(basic_format_saver const&);
+
117  };
+
118 
+
119  typedef basic_format_saver<char> format_saver;
+
120  typedef basic_format_saver<wchar_t> wformat_saver;
+
121 
+
122  struct precision
+
123  {
+
124  unsigned value;
+
125 
+
126  GLM_FUNC_DISCARD_DECL explicit precision(unsigned);
+
127  };
+
128 
+
129  struct width
+
130  {
+
131  unsigned value;
+
132 
+
133  GLM_FUNC_DISCARD_DECL explicit width(unsigned);
+
134  };
+
135 
+
136  template<typename CTy>
+
137  struct delimeter
+
138  {
+
139  CTy value[3];
+
140 
+
141  GLM_FUNC_DISCARD_DECL explicit delimeter(CTy /* left */, CTy /* right */, CTy /* separator */ = ',');
+
142  };
+
143 
+
144  struct order
+
145  {
+
146  order_type value;
+
147 
+
148  GLM_FUNC_DISCARD_DECL explicit order(order_type);
+
149  };
+
150 
+
151  // functions, inlined (inline)
+
152 
+
153  template<typename FTy, typename CTy, typename CTr>
+
154  FTy const& get_facet(std::basic_ios<CTy,CTr>&);
+
155  template<typename FTy, typename CTy, typename CTr>
+
156  std::basic_ios<CTy,CTr>& formatted(std::basic_ios<CTy,CTr>&);
+
157  template<typename FTy, typename CTy, typename CTr>
+
158  std::basic_ios<CTy,CTr>& unformatted(std::basic_ios<CTy,CTr>&);
+
159 
+
160  template<typename CTy, typename CTr>
+
161  std::basic_ostream<CTy, CTr>& operator<<(std::basic_ostream<CTy, CTr>&, precision const&);
+
162  template<typename CTy, typename CTr>
+
163  std::basic_ostream<CTy, CTr>& operator<<(std::basic_ostream<CTy, CTr>&, width const&);
+
164  template<typename CTy, typename CTr>
+
165  std::basic_ostream<CTy, CTr>& operator<<(std::basic_ostream<CTy, CTr>&, delimeter<CTy> const&);
+
166  template<typename CTy, typename CTr>
+
167  std::basic_ostream<CTy, CTr>& operator<<(std::basic_ostream<CTy, CTr>&, order const&);
+
168  }//namespace io
+
169 
+
170  template<typename CTy, typename CTr, typename T, qualifier Q>
+
171  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, qua<T, Q> const&);
+
172  template<typename CTy, typename CTr, typename T, qualifier Q>
+
173  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, vec<1, T, Q> const&);
+
174  template<typename CTy, typename CTr, typename T, qualifier Q>
+
175  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, vec<2, T, Q> const&);
+
176  template<typename CTy, typename CTr, typename T, qualifier Q>
+
177  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, vec<3, T, Q> const&);
+
178  template<typename CTy, typename CTr, typename T, qualifier Q>
+
179  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, vec<4, T, Q> const&);
+
180  template<typename CTy, typename CTr, typename T, qualifier Q>
+
181  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, mat<2, 2, T, Q> const&);
+
182  template<typename CTy, typename CTr, typename T, qualifier Q>
+
183  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, mat<2, 3, T, Q> const&);
+
184  template<typename CTy, typename CTr, typename T, qualifier Q>
+
185  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, mat<2, 4, T, Q> const&);
+
186  template<typename CTy, typename CTr, typename T, qualifier Q>
+
187  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, mat<3, 2, T, Q> const&);
+
188  template<typename CTy, typename CTr, typename T, qualifier Q>
+
189  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, mat<3, 3, T, Q> const&);
+
190  template<typename CTy, typename CTr, typename T, qualifier Q>
+
191  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, mat<3, 4, T, Q> const&);
+
192  template<typename CTy, typename CTr, typename T, qualifier Q>
+
193  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, mat<4, 2, T, Q> const&);
+
194  template<typename CTy, typename CTr, typename T, qualifier Q>
+
195  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, mat<4, 3, T, Q> const&);
+
196  template<typename CTy, typename CTr, typename T, qualifier Q>
+
197  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr>& operator<<(std::basic_ostream<CTy,CTr>&, mat<4, 4, T, Q> const&);
+
198 
+
199  template<typename CTy, typename CTr, typename T, qualifier Q>
+
200  GLM_FUNC_DISCARD_DECL std::basic_ostream<CTy,CTr> & operator<<(std::basic_ostream<CTy,CTr> &,
+
201  std::pair<mat<4, 4, T, Q> const, mat<4, 4, T, Q> const> const&);
+
202 
+
204 }//namespace glm
+
205 
+
206 #if GLM_COMPILER & GLM_COMPILER_CLANG
+
207 # pragma clang diagnostic pop
+
208 #endif
+
209 
+
210 #include "io.inl"
+
+ + + + diff --git a/include/glm/doc/api/a00653.html b/include/glm/doc/api/a00653.html new file mode 100644 index 0000000..bc42213 --- /dev/null +++ b/include/glm/doc/api/a00653.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: iteration.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
iteration.hpp File Reference
+
+
+ +

GLM_GTX_iteration +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTX_iteration

+ +

Definition in file iteration.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00653_source.html b/include/glm/doc/api/a00653_source.html new file mode 100644 index 0000000..c7b9564 --- /dev/null +++ b/include/glm/doc/api/a00653_source.html @@ -0,0 +1,156 @@ + + + + + + + +1.0.2 API documentation: iteration.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
iteration.hpp
+
+
+Go to the documentation of this file.
1 
+
11 #pragma once
+
12 
+
13 // Dependencies
+
14 #include "../detail/setup.hpp"
+
15 #include "../detail/qualifier.hpp"
+
16 
+
17 #ifndef GLM_ENABLE_EXPERIMENTAL
+
18 # error "GLM: GLM_GTX_iteration is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
19 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_GTX_iteration extension included")
+
21 #endif
+
22 
+
23 #include <iterator>
+
24 
+
25 namespace glm
+
26 {
+
29  template<length_t L,typename T,qualifier Q>
+
30  GLM_FUNC_DECL GLM_CONSTEXPR T* begin(vec<L, T, Q>& v);
+
31  template<length_t C,length_t R,typename T,qualifier Q>
+
32  GLM_FUNC_DECL GLM_CONSTEXPR T* begin(mat<C, R, T, Q>& m);
+
33  template<typename T,qualifier Q>
+
34  GLM_FUNC_DECL GLM_CONSTEXPR T* begin(qua<T, Q>& q);
+
35  template<length_t L,typename T,qualifier Q>
+
36  GLM_FUNC_DECL GLM_CONSTEXPR const T* begin(const vec<L, T, Q>& v);
+
37  template<length_t C,length_t R,typename T,qualifier Q>
+
38  GLM_FUNC_DECL GLM_CONSTEXPR const T* begin(const mat<C, R, T, Q>& m);
+
39  template<typename T,qualifier Q>
+
40  GLM_FUNC_DECL GLM_CONSTEXPR const T* begin(const qua<T, Q>& q);
+
41 
+
42  template<length_t L,typename T,qualifier Q>
+
43  GLM_FUNC_DECL GLM_CONSTEXPR T* end(vec<L, T, Q>& v);
+
44  template<length_t C,length_t R,typename T,qualifier Q>
+
45  GLM_FUNC_DECL GLM_CONSTEXPR T* end(mat<C, R, T, Q>& m);
+
46  template<typename T,qualifier Q>
+
47  GLM_FUNC_DECL GLM_CONSTEXPR T* end(qua<T, Q>& q);
+
48  template<length_t L,typename T,qualifier Q>
+
49  GLM_FUNC_DECL GLM_CONSTEXPR const T* end(const vec<L, T, Q>& v);
+
50  template<length_t C,length_t R,typename T,qualifier Q>
+
51  GLM_FUNC_DECL GLM_CONSTEXPR const T* end(const mat<C, R, T, Q>& m);
+
52  template<typename T,qualifier Q>
+
53  GLM_FUNC_DECL GLM_CONSTEXPR const T* end(const qua<T, Q>& q);
+
54 
+
55  // Reverse iteration
+
56  // rbegin,rend
+
57  template<length_t L,typename T,qualifier Q>
+
58  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<T*> rbegin(vec<L, T, Q>& v);
+
59  template<length_t C,length_t R,typename T,qualifier Q>
+
60  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<T*> rbegin(mat<C, R, T, Q>& m);
+
61  template<typename T,qualifier Q>
+
62  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<T*> rbegin(qua<T, Q>& q);
+
63  template<length_t L,typename T,qualifier Q>
+
64  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<const T*> rbegin(const vec<L, T, Q>& v);
+
65  template<length_t C,length_t R,typename T,qualifier Q>
+
66  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<const T*> rbegin(const mat<C, R, T, Q>& m);
+
67  template<typename T,qualifier Q>
+
68  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<const T*> rbegin(const qua<T, Q>& q);
+
69 
+
70  template<length_t L,typename T,qualifier Q>
+
71  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<T*> rend(vec<L, T, Q>& v);
+
72  template<length_t C,length_t R,typename T,qualifier Q>
+
73  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<T*> rend(mat<C, R, T, Q>& m);
+
74  template<typename T,qualifier Q>
+
75  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<T*> rend(qua<T, Q>& q);
+
76  template<length_t L,typename T,qualifier Q>
+
77  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<const T*> rend(const vec<L, T, Q>& v);
+
78  template<length_t C,length_t R,typename T,qualifier Q>
+
79  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<const T*> rend(const mat<C, R, T, Q>& m);
+
80  template<typename T,qualifier Q>
+
81  GLM_FUNC_DECL GLM_CONSTEXPR std::reverse_iterator<const T*> rend(const qua<T, Q>& q);
+
82 
+
83 
+
85 }//namespace glm
+
86 
+
87 #include "iteration.inl"
+
+ + + + diff --git a/include/glm/doc/api/a00656.html b/include/glm/doc/api/a00656.html new file mode 100644 index 0000000..95bfa20 --- /dev/null +++ b/include/glm/doc/api/a00656.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: log_base.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
log_base.hpp File Reference
+
+
+ +

GLM_GTX_log_base +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType log (genType const &x, genType const &base)
 Logarithm for any base. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > sign (vec< L, T, Q > const &x, vec< L, T, Q > const &base)
 Logarithm for any base. More...
 
+

Detailed Description

+

GLM_GTX_log_base

+
See also
Core features (dependence)
+ +

Definition in file log_base.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00656_source.html b/include/glm/doc/api/a00656_source.html new file mode 100644 index 0000000..e9c9e99 --- /dev/null +++ b/include/glm/doc/api/a00656_source.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: log_base.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
log_base.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_log_base is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_log_base extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
31  template<typename genType>
+
32  GLM_FUNC_DECL genType log(
+
33  genType const& x,
+
34  genType const& base);
+
35 
+
38  template<length_t L, typename T, qualifier Q>
+
39  GLM_FUNC_DECL vec<L, T, Q> sign(
+
40  vec<L, T, Q> const& x,
+
41  vec<L, T, Q> const& base);
+
42 
+
44 }//namespace glm
+
45 
+
46 #include "log_base.inl"
+
+
GLM_FUNC_DECL genType log(genType const &x, genType const &base)
Logarithm for any base.
+
GLM_FUNC_DECL vec< L, T, Q > sign(vec< L, T, Q > const &x, vec< L, T, Q > const &base)
Logarithm for any base.
+ + + + diff --git a/include/glm/doc/api/a00659.html b/include/glm/doc/api/a00659.html new file mode 100644 index 0000000..8799135 --- /dev/null +++ b/include/glm/doc/api/a00659.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: matrix_cross_product.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_cross_product.hpp File Reference
+
+
+ +

GLM_GTX_matrix_cross_product +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > matrixCross3 (vec< 3, T, Q > const &x)
 Build a cross product matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > matrixCross4 (vec< 3, T, Q > const &x)
 Build a cross product matrix. More...
 
+

Detailed Description

+

GLM_GTX_matrix_cross_product

+
See also
Core features (dependence)
+
+gtx_extented_min_max (dependence)
+ +

Definition in file matrix_cross_product.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00659_source.html b/include/glm/doc/api/a00659_source.html new file mode 100644 index 0000000..5d5d2ab --- /dev/null +++ b/include/glm/doc/api/a00659_source.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: matrix_cross_product.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_cross_product.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_matrix_cross_product is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_matrix_cross_product extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
32  template<typename T, qualifier Q>
+
33  GLM_FUNC_DECL mat<3, 3, T, Q> matrixCross3(
+
34  vec<3, T, Q> const& x);
+
35 
+
38  template<typename T, qualifier Q>
+
39  GLM_FUNC_DECL mat<4, 4, T, Q> matrixCross4(
+
40  vec<3, T, Q> const& x);
+
41 
+
43 }//namespace glm
+
44 
+
45 #include "matrix_cross_product.inl"
+
+
GLM_FUNC_DECL mat< 4, 4, T, Q > matrixCross4(vec< 3, T, Q > const &x)
Build a cross product matrix.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > matrixCross3(vec< 3, T, Q > const &x)
Build a cross product matrix.
+ + + + diff --git a/include/glm/doc/api/a00662.html b/include/glm/doc/api/a00662.html new file mode 100644 index 0000000..6e1ed91 --- /dev/null +++ b/include/glm/doc/api/a00662.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: matrix_decompose.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_decompose.hpp File Reference
+
+
+ +

GLM_GTX_matrix_decompose +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL bool decompose (mat< 4, 4, T, Q > const &modelMatrix, vec< 3, T, Q > &scale, qua< T, Q > &orientation, vec< 3, T, Q > &translation, vec< 3, T, Q > &skew, vec< 4, T, Q > &perspective)
 Decomposes a model matrix to translations, rotation and scale components. More...
 
+

Detailed Description

+

GLM_GTX_matrix_decompose

+
See also
Core features (dependence)
+ +

Definition in file matrix_decompose.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00662_source.html b/include/glm/doc/api/a00662_source.html new file mode 100644 index 0000000..9589309 --- /dev/null +++ b/include/glm/doc/api/a00662_source.html @@ -0,0 +1,119 @@ + + + + + + + +1.0.2 API documentation: matrix_decompose.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_decompose.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "../mat4x4.hpp"
+
17 #include "../vec3.hpp"
+
18 #include "../vec4.hpp"
+
19 #include "../geometric.hpp"
+
20 #include "../gtc/quaternion.hpp"
+
21 #include "../gtc/matrix_transform.hpp"
+
22 
+
23 #ifndef GLM_ENABLE_EXPERIMENTAL
+
24 # error "GLM: GLM_GTX_matrix_decompose is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
25 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
26 # pragma message("GLM: GLM_GTX_matrix_decompose extension included")
+
27 #endif
+
28 
+
29 namespace glm
+
30 {
+
33 
+
36  template<typename T, qualifier Q>
+
37  GLM_FUNC_DISCARD_DECL bool decompose(
+
38  mat<4, 4, T, Q> const& modelMatrix,
+
39  vec<3, T, Q> & scale, qua<T, Q> & orientation, vec<3, T, Q> & translation, vec<3, T, Q> & skew, vec<4, T, Q> & perspective);
+
40 
+
41  // Recomposes a model matrix from a previously-decomposed matrix
+
42  template <typename T, qualifier Q>
+
43  GLM_FUNC_DISCARD_DECL mat<4, 4, T, Q> recompose(
+
44  vec<3, T, Q> const& scale, qua<T, Q> const& orientation, vec<3, T, Q> const& translation,
+
45  vec<3, T, Q> const& skew, vec<4, T, Q> const& perspective);
+
46 
+
48 }//namespace glm
+
49 
+
50 #include "matrix_decompose.inl"
+
+
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspective(T fovy, T aspect, T near, T far)
Creates a matrix for a symmetric perspective-view frustum based on the default handedness and default...
+
GLM_FUNC_DECL mat< 4, 4, T, Q > scale(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)
Builds a scale 4 * 4 matrix created from 3 scalars.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > orientation(vec< 3, T, Q > const &Normal, vec< 3, T, Q > const &Up)
Build a rotation matrix from a normal and a up vector.
+
GLM_FUNC_DISCARD_DECL bool decompose(mat< 4, 4, T, Q > const &modelMatrix, vec< 3, T, Q > &scale, qua< T, Q > &orientation, vec< 3, T, Q > &translation, vec< 3, T, Q > &skew, vec< 4, T, Q > &perspective)
Decomposes a model matrix to translations, rotation and scale components.
+ + + + diff --git a/include/glm/doc/api/a00665.html b/include/glm/doc/api/a00665.html new file mode 100644 index 0000000..6f52e01 --- /dev/null +++ b/include/glm/doc/api/a00665.html @@ -0,0 +1,113 @@ + + + + + + + +1.0.2 API documentation: matrix_factorisation.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_factorisation.hpp File Reference
+
+
+ +

GLM_GTX_matrix_factorisation +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > fliplr (mat< C, R, T, Q > const &in)
 Flips the matrix columns right and left. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > flipud (mat< C, R, T, Q > const &in)
 Flips the matrix rows up and down. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void qr_decompose (mat< C, R, T, Q > const &in, mat<(C< R ? C :R), R, T, Q > &q, mat< C,(C< R ? C :R), T, Q > &r)
 Performs QR factorisation of a matrix. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void rq_decompose (mat< C, R, T, Q > const &in, mat<(C< R ? C :R), R, T, Q > &r, mat< C,(C< R ? C :R), T, Q > &q)
 Performs RQ factorisation of a matrix. More...
 
+

Detailed Description

+

GLM_GTX_matrix_factorisation

+
See also
Core features (dependence)
+ +

Definition in file matrix_factorisation.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00665_source.html b/include/glm/doc/api/a00665_source.html new file mode 100644 index 0000000..c3397c8 --- /dev/null +++ b/include/glm/doc/api/a00665_source.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: matrix_factorisation.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_factorisation.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_matrix_factorisation is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_matrix_factorisation extension included")
+
22 #endif
+
23 
+
24 /*
+
25 Suggestions:
+
26  - Move helper functions flipud and fliplr to another file: They may be helpful in more general circumstances.
+
27  - Implement other types of matrix factorisation, such as: QL and LQ, L(D)U, eigendecompositions, etc...
+
28 */
+
29 
+
30 namespace glm
+
31 {
+
34 
+
38  template <length_t C, length_t R, typename T, qualifier Q>
+
39  GLM_FUNC_DECL mat<C, R, T, Q> flipud(mat<C, R, T, Q> const& in);
+
40 
+
44  template <length_t C, length_t R, typename T, qualifier Q>
+
45  GLM_FUNC_DECL mat<C, R, T, Q> fliplr(mat<C, R, T, Q> const& in);
+
46 
+
52  template <length_t C, length_t R, typename T, qualifier Q>
+
53  GLM_FUNC_DISCARD_DECL void qr_decompose(mat<C, R, T, Q> const& in, mat<(C < R ? C : R), R, T, Q>& q, mat<C, (C < R ? C : R), T, Q>& r);
+
54 
+
61  template <length_t C, length_t R, typename T, qualifier Q>
+
62  GLM_FUNC_DISCARD_DECL void rq_decompose(mat<C, R, T, Q> const& in, mat<(C < R ? C : R), R, T, Q>& r, mat<C, (C < R ? C : R), T, Q>& q);
+
63 
+
65 }
+
66 
+
67 #include "matrix_factorisation.inl"
+
+
GLM_FUNC_DECL mat< C, R, T, Q > flipud(mat< C, R, T, Q > const &in)
Flips the matrix rows up and down.
+
GLM_FUNC_DISCARD_DECL void rq_decompose(mat< C, R, T, Q > const &in, mat<(C< R ? C :R), R, T, Q > &r, mat< C,(C< R ? C :R), T, Q > &q)
Performs RQ factorisation of a matrix.
+
GLM_FUNC_DECL mat< C, R, T, Q > fliplr(mat< C, R, T, Q > const &in)
Flips the matrix columns right and left.
+
GLM_FUNC_DISCARD_DECL void qr_decompose(mat< C, R, T, Q > const &in, mat<(C< R ? C :R), R, T, Q > &q, mat< C,(C< R ? C :R), T, Q > &r)
Performs QR factorisation of a matrix.
+ + + + diff --git a/include/glm/doc/api/a00668.html b/include/glm/doc/api/a00668.html new file mode 100644 index 0000000..6b063f0 --- /dev/null +++ b/include/glm/doc/api/a00668.html @@ -0,0 +1,114 @@ + + + + + + + +1.0.2 API documentation: matrix_interpolation.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_interpolation.hpp File Reference
+
+
+ +

GLM_GTX_matrix_interpolation +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void axisAngle (mat< 4, 4, T, Q > const &Mat, vec< 3, T, Q > &Axis, T &Angle)
 Get the axis and angle of the rotation from a matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > axisAngleMatrix (vec< 3, T, Q > const &Axis, T const Angle)
 Build a matrix from axis and angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > extractMatrixRotation (mat< 4, 4, T, Q > const &Mat)
 Extracts the rotation part of a matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > interpolate (mat< 4, 4, T, Q > const &m1, mat< 4, 4, T, Q > const &m2, T const Delta)
 Build a interpolation of 4 * 4 matrixes. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00668_source.html b/include/glm/doc/api/a00668_source.html new file mode 100644 index 0000000..c8a6fcb --- /dev/null +++ b/include/glm/doc/api/a00668_source.html @@ -0,0 +1,119 @@ + + + + + + + +1.0.2 API documentation: matrix_interpolation.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_interpolation.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_matrix_interpolation is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_matrix_interpolation extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
32  template<typename T, qualifier Q>
+
33  GLM_FUNC_DISCARD_DECL void axisAngle(
+
34  mat<4, 4, T, Q> const& Mat, vec<3, T, Q> & Axis, T & Angle);
+
35 
+
38  template<typename T, qualifier Q>
+
39  GLM_FUNC_DECL mat<4, 4, T, Q> axisAngleMatrix(
+
40  vec<3, T, Q> const& Axis, T const Angle);
+
41 
+
44  template<typename T, qualifier Q>
+
45  GLM_FUNC_DECL mat<4, 4, T, Q> extractMatrixRotation(
+
46  mat<4, 4, T, Q> const& Mat);
+
47 
+
51  template<typename T, qualifier Q>
+
52  GLM_FUNC_DECL mat<4, 4, T, Q> interpolate(
+
53  mat<4, 4, T, Q> const& m1, mat<4, 4, T, Q> const& m2, T const Delta);
+
54 
+
56 }//namespace glm
+
57 
+
58 #include "matrix_interpolation.inl"
+
+
GLM_FUNC_DECL mat< 4, 4, T, Q > axisAngleMatrix(vec< 3, T, Q > const &Axis, T const Angle)
Build a matrix from axis and angle.
+
GLM_FUNC_DISCARD_DECL void axisAngle(mat< 4, 4, T, Q > const &Mat, vec< 3, T, Q > &Axis, T &Angle)
Get the axis and angle of the rotation from a matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > extractMatrixRotation(mat< 4, 4, T, Q > const &Mat)
Extracts the rotation part of a matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > interpolate(mat< 4, 4, T, Q > const &m1, mat< 4, 4, T, Q > const &m2, T const Delta)
Build a interpolation of 4 * 4 matrixes.
+ + + + diff --git a/include/glm/doc/api/a00671.html b/include/glm/doc/api/a00671.html new file mode 100644 index 0000000..081a760 --- /dev/null +++ b/include/glm/doc/api/a00671.html @@ -0,0 +1,147 @@ + + + + + + + +1.0.2 API documentation: matrix_major_storage.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_major_storage.hpp File Reference
+
+
+ +

GLM_GTX_matrix_major_storage +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > colMajor2 (mat< 2, 2, T, Q > const &m)
 Build a column major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > colMajor2 (vec< 2, T, Q > const &v1, vec< 2, T, Q > const &v2)
 Build a column major matrix from column vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > colMajor3 (mat< 3, 3, T, Q > const &m)
 Build a column major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > colMajor3 (vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)
 Build a column major matrix from column vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > colMajor4 (mat< 4, 4, T, Q > const &m)
 Build a column major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > colMajor4 (vec< 4, T, Q > const &v1, vec< 4, T, Q > const &v2, vec< 4, T, Q > const &v3, vec< 4, T, Q > const &v4)
 Build a column major matrix from column vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > rowMajor2 (mat< 2, 2, T, Q > const &m)
 Build a row major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > rowMajor2 (vec< 2, T, Q > const &v1, vec< 2, T, Q > const &v2)
 Build a row major matrix from row vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > rowMajor3 (mat< 3, 3, T, Q > const &m)
 Build a row major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > rowMajor3 (vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)
 Build a row major matrix from row vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rowMajor4 (mat< 4, 4, T, Q > const &m)
 Build a row major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rowMajor4 (vec< 4, T, Q > const &v1, vec< 4, T, Q > const &v2, vec< 4, T, Q > const &v3, vec< 4, T, Q > const &v4)
 Build a row major matrix from row vectors. More...
 
+

Detailed Description

+

GLM_GTX_matrix_major_storage

+
See also
Core features (dependence)
+
+gtx_extented_min_max (dependence)
+ +

Definition in file matrix_major_storage.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00671_source.html b/include/glm/doc/api/a00671_source.html new file mode 100644 index 0000000..01e5e2b --- /dev/null +++ b/include/glm/doc/api/a00671_source.html @@ -0,0 +1,165 @@ + + + + + + + +1.0.2 API documentation: matrix_major_storage.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_major_storage.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_matrix_major_storage is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_matrix_major_storage extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
32  template<typename T, qualifier Q>
+
33  GLM_FUNC_DECL mat<2, 2, T, Q> rowMajor2(
+
34  vec<2, T, Q> const& v1,
+
35  vec<2, T, Q> const& v2);
+
36 
+
39  template<typename T, qualifier Q>
+
40  GLM_FUNC_DECL mat<2, 2, T, Q> rowMajor2(
+
41  mat<2, 2, T, Q> const& m);
+
42 
+
45  template<typename T, qualifier Q>
+
46  GLM_FUNC_DECL mat<3, 3, T, Q> rowMajor3(
+
47  vec<3, T, Q> const& v1,
+
48  vec<3, T, Q> const& v2,
+
49  vec<3, T, Q> const& v3);
+
50 
+
53  template<typename T, qualifier Q>
+
54  GLM_FUNC_DECL mat<3, 3, T, Q> rowMajor3(
+
55  mat<3, 3, T, Q> const& m);
+
56 
+
59  template<typename T, qualifier Q>
+
60  GLM_FUNC_DECL mat<4, 4, T, Q> rowMajor4(
+
61  vec<4, T, Q> const& v1,
+
62  vec<4, T, Q> const& v2,
+
63  vec<4, T, Q> const& v3,
+
64  vec<4, T, Q> const& v4);
+
65 
+
68  template<typename T, qualifier Q>
+
69  GLM_FUNC_DECL mat<4, 4, T, Q> rowMajor4(
+
70  mat<4, 4, T, Q> const& m);
+
71 
+
74  template<typename T, qualifier Q>
+
75  GLM_FUNC_DECL mat<2, 2, T, Q> colMajor2(
+
76  vec<2, T, Q> const& v1,
+
77  vec<2, T, Q> const& v2);
+
78 
+
81  template<typename T, qualifier Q>
+
82  GLM_FUNC_DECL mat<2, 2, T, Q> colMajor2(
+
83  mat<2, 2, T, Q> const& m);
+
84 
+
87  template<typename T, qualifier Q>
+
88  GLM_FUNC_DECL mat<3, 3, T, Q> colMajor3(
+
89  vec<3, T, Q> const& v1,
+
90  vec<3, T, Q> const& v2,
+
91  vec<3, T, Q> const& v3);
+
92 
+
95  template<typename T, qualifier Q>
+
96  GLM_FUNC_DECL mat<3, 3, T, Q> colMajor3(
+
97  mat<3, 3, T, Q> const& m);
+
98 
+
101  template<typename T, qualifier Q>
+
102  GLM_FUNC_DECL mat<4, 4, T, Q> colMajor4(
+
103  vec<4, T, Q> const& v1,
+
104  vec<4, T, Q> const& v2,
+
105  vec<4, T, Q> const& v3,
+
106  vec<4, T, Q> const& v4);
+
107 
+
110  template<typename T, qualifier Q>
+
111  GLM_FUNC_DECL mat<4, 4, T, Q> colMajor4(
+
112  mat<4, 4, T, Q> const& m);
+
113 
+
115 }//namespace glm
+
116 
+
117 #include "matrix_major_storage.inl"
+
+
GLM_FUNC_DECL mat< 2, 2, T, Q > colMajor2(mat< 2, 2, T, Q > const &m)
Build a column major matrix from other matrix.
+
GLM_FUNC_DECL mat< 2, 2, T, Q > rowMajor2(mat< 2, 2, T, Q > const &m)
Build a row major matrix from other matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > rowMajor4(mat< 4, 4, T, Q > const &m)
Build a row major matrix from other matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > colMajor4(mat< 4, 4, T, Q > const &m)
Build a column major matrix from other matrix.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > colMajor3(mat< 3, 3, T, Q > const &m)
Build a column major matrix from other matrix.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > rowMajor3(mat< 3, 3, T, Q > const &m)
Build a row major matrix from other matrix.
+ + + + diff --git a/include/glm/doc/api/a00674.html b/include/glm/doc/api/a00674.html new file mode 100644 index 0000000..1c93c4c --- /dev/null +++ b/include/glm/doc/api/a00674.html @@ -0,0 +1,145 @@ + + + + + + + +1.0.2 API documentation: matrix_operation.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_operation.hpp File Reference
+
+
+ +

GLM_GTX_matrix_operation +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > adjugate (mat< 2, 2, T, Q > const &m)
 Build an adjugate matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > adjugate (mat< 3, 3, T, Q > const &m)
 Build an adjugate matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > adjugate (mat< 4, 4, T, Q > const &m)
 Build an adjugate matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > diagonal2x2 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 3, T, Q > diagonal2x3 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 4, T, Q > diagonal2x4 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 2, T, Q > diagonal3x2 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > diagonal3x3 (vec< 3, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 4, T, Q > diagonal3x4 (vec< 3, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 2, T, Q > diagonal4x2 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 3, T, Q > diagonal4x3 (vec< 3, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > diagonal4x4 (vec< 4, T, Q > const &v)
 Build a diagonal matrix. More...
 
+

Detailed Description

+

GLM_GTX_matrix_operation

+
See also
Core features (dependence)
+ +

Definition in file matrix_operation.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00674_source.html b/include/glm/doc/api/a00674_source.html new file mode 100644 index 0000000..f2c6065 --- /dev/null +++ b/include/glm/doc/api/a00674_source.html @@ -0,0 +1,154 @@ + + + + + + + +1.0.2 API documentation: matrix_operation.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_operation.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_matrix_operation is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_matrix_operation extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
31  template<typename T, qualifier Q>
+
32  GLM_FUNC_DECL mat<2, 2, T, Q> diagonal2x2(
+
33  vec<2, T, Q> const& v);
+
34 
+
37  template<typename T, qualifier Q>
+
38  GLM_FUNC_DECL mat<2, 3, T, Q> diagonal2x3(
+
39  vec<2, T, Q> const& v);
+
40 
+
43  template<typename T, qualifier Q>
+
44  GLM_FUNC_DECL mat<2, 4, T, Q> diagonal2x4(
+
45  vec<2, T, Q> const& v);
+
46 
+
49  template<typename T, qualifier Q>
+
50  GLM_FUNC_DECL mat<3, 2, T, Q> diagonal3x2(
+
51  vec<2, T, Q> const& v);
+
52 
+
55  template<typename T, qualifier Q>
+
56  GLM_FUNC_DECL mat<3, 3, T, Q> diagonal3x3(
+
57  vec<3, T, Q> const& v);
+
58 
+
61  template<typename T, qualifier Q>
+
62  GLM_FUNC_DECL mat<3, 4, T, Q> diagonal3x4(
+
63  vec<3, T, Q> const& v);
+
64 
+
67  template<typename T, qualifier Q>
+
68  GLM_FUNC_DECL mat<4, 2, T, Q> diagonal4x2(
+
69  vec<2, T, Q> const& v);
+
70 
+
73  template<typename T, qualifier Q>
+
74  GLM_FUNC_DECL mat<4, 3, T, Q> diagonal4x3(
+
75  vec<3, T, Q> const& v);
+
76 
+
79  template<typename T, qualifier Q>
+
80  GLM_FUNC_DECL mat<4, 4, T, Q> diagonal4x4(
+
81  vec<4, T, Q> const& v);
+
82 
+
85  template<typename T, qualifier Q>
+
86  GLM_FUNC_DECL mat<2, 2, T, Q> adjugate(mat<2, 2, T, Q> const& m);
+
87 
+
90  template<typename T, qualifier Q>
+
91  GLM_FUNC_DECL mat<3, 3, T, Q> adjugate(mat<3, 3, T, Q> const& m);
+
92 
+
95  template<typename T, qualifier Q>
+
96  GLM_FUNC_DECL mat<4, 4, T, Q> adjugate(mat<4, 4, T, Q> const& m);
+
97 
+
99 }//namespace glm
+
100 
+
101 #include "matrix_operation.inl"
+
+
GLM_FUNC_DECL mat< 4, 4, T, Q > diagonal4x4(vec< 4, T, Q > const &v)
Build a diagonal matrix.
+
GLM_FUNC_DECL mat< 2, 2, T, Q > diagonal2x2(vec< 2, T, Q > const &v)
Build a diagonal matrix.
+
GLM_FUNC_DECL mat< 4, 3, T, Q > diagonal4x3(vec< 3, T, Q > const &v)
Build a diagonal matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > adjugate(mat< 4, 4, T, Q > const &m)
Build an adjugate matrix.
+
GLM_FUNC_DECL mat< 3, 2, T, Q > diagonal3x2(vec< 2, T, Q > const &v)
Build a diagonal matrix.
+
GLM_FUNC_DECL mat< 2, 3, T, Q > diagonal2x3(vec< 2, T, Q > const &v)
Build a diagonal matrix.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > diagonal3x3(vec< 3, T, Q > const &v)
Build a diagonal matrix.
+
GLM_FUNC_DECL mat< 4, 2, T, Q > diagonal4x2(vec< 2, T, Q > const &v)
Build a diagonal matrix.
+
GLM_FUNC_DECL mat< 3, 4, T, Q > diagonal3x4(vec< 3, T, Q > const &v)
Build a diagonal matrix.
+
GLM_FUNC_DECL mat< 2, 4, T, Q > diagonal2x4(vec< 2, T, Q > const &v)
Build a diagonal matrix.
+ + + + diff --git a/include/glm/doc/api/a00677.html b/include/glm/doc/api/a00677.html new file mode 100644 index 0000000..38b9a29 --- /dev/null +++ b/include/glm/doc/api/a00677.html @@ -0,0 +1,131 @@ + + + + + + + +1.0.2 API documentation: matrix_query.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_query.hpp File Reference
+
+
+ +

GLM_GTX_matrix_query +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q, template< length_t, length_t, typename, qualifier > class matType>
GLM_FUNC_DECL bool isIdentity (matType< C, R, T, Q > const &m, T const &epsilon)
 Return whether a matrix is an identity matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNormalized (mat< 2, 2, T, Q > const &m, T const &epsilon)
 Return whether a matrix is a normalized matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNormalized (mat< 3, 3, T, Q > const &m, T const &epsilon)
 Return whether a matrix is a normalized matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNormalized (mat< 4, 4, T, Q > const &m, T const &epsilon)
 Return whether a matrix is a normalized matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNull (mat< 2, 2, T, Q > const &m, T const &epsilon)
 Return whether a matrix a null matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNull (mat< 3, 3, T, Q > const &m, T const &epsilon)
 Return whether a matrix a null matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNull (mat< 4, 4, T, Q > const &m, T const &epsilon)
 Return whether a matrix is a null matrix. More...
 
template<length_t C, length_t R, typename T , qualifier Q, template< length_t, length_t, typename, qualifier > class matType>
GLM_FUNC_DECL bool isOrthogonal (matType< C, R, T, Q > const &m, T const &epsilon)
 Return whether a matrix is an orthonormalized matrix. More...
 
+

Detailed Description

+

GLM_GTX_matrix_query

+
See also
Core features (dependence)
+
+GLM_GTX_vector_query (dependence)
+ +

Definition in file matrix_query.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00677_source.html b/include/glm/doc/api/a00677_source.html new file mode 100644 index 0000000..377b65b --- /dev/null +++ b/include/glm/doc/api/a00677_source.html @@ -0,0 +1,130 @@ + + + + + + + +1.0.2 API documentation: matrix_query.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_query.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 #include "../gtx/vector_query.hpp"
+
19 #include <limits>
+
20 
+
21 #ifndef GLM_ENABLE_EXPERIMENTAL
+
22 # error "GLM: GLM_GTX_matrix_query is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
23 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTX_matrix_query extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
34  template<typename T, qualifier Q>
+
35  GLM_FUNC_DECL bool isNull(mat<2, 2, T, Q> const& m, T const& epsilon);
+
36 
+
39  template<typename T, qualifier Q>
+
40  GLM_FUNC_DECL bool isNull(mat<3, 3, T, Q> const& m, T const& epsilon);
+
41 
+
44  template<typename T, qualifier Q>
+
45  GLM_FUNC_DECL bool isNull(mat<4, 4, T, Q> const& m, T const& epsilon);
+
46 
+
49  template<length_t C, length_t R, typename T, qualifier Q, template<length_t, length_t, typename, qualifier> class matType>
+
50  GLM_FUNC_DECL bool isIdentity(matType<C, R, T, Q> const& m, T const& epsilon);
+
51 
+
54  template<typename T, qualifier Q>
+
55  GLM_FUNC_DECL bool isNormalized(mat<2, 2, T, Q> const& m, T const& epsilon);
+
56 
+
59  template<typename T, qualifier Q>
+
60  GLM_FUNC_DECL bool isNormalized(mat<3, 3, T, Q> const& m, T const& epsilon);
+
61 
+
64  template<typename T, qualifier Q>
+
65  GLM_FUNC_DECL bool isNormalized(mat<4, 4, T, Q> const& m, T const& epsilon);
+
66 
+
69  template<length_t C, length_t R, typename T, qualifier Q, template<length_t, length_t, typename, qualifier> class matType>
+
70  GLM_FUNC_DECL bool isOrthogonal(matType<C, R, T, Q> const& m, T const& epsilon);
+
71 
+
73 }//namespace glm
+
74 
+
75 #include "matrix_query.inl"
+
+
GLM_FUNC_DECL bool isIdentity(matType< C, R, T, Q > const &m, T const &epsilon)
Return whether a matrix is an identity matrix.
+
GLM_FUNC_DECL bool isOrthogonal(matType< C, R, T, Q > const &m, T const &epsilon)
Return whether a matrix is an orthonormalized matrix.
+
GLM_FUNC_DECL bool isNormalized(mat< 4, 4, T, Q > const &m, T const &epsilon)
Return whether a matrix is a normalized matrix.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon()
Return the epsilon constant for floating point types.
+
GLM_FUNC_DECL bool isNull(mat< 4, 4, T, Q > const &m, T const &epsilon)
Return whether a matrix is a null matrix.
+ + + + diff --git a/include/glm/doc/api/a00680.html b/include/glm/doc/api/a00680.html new file mode 100644 index 0000000..51c3c4a --- /dev/null +++ b/include/glm/doc/api/a00680.html @@ -0,0 +1,118 @@ + + + + + + + +1.0.2 API documentation: matrix_transform_2d.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix_transform_2d.hpp File Reference
+
+
+ +

GLM_GTX_matrix_transform_2d +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > rotate (mat< 3, 3, T, Q > const &m, T angle)
 Builds a rotation 3 * 3 matrix created from an angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > scale (mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)
 Builds a scale 3 * 3 matrix created from a vector of 2 components. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > shearX (mat< 3, 3, T, Q > const &m, T y)
 Builds an horizontal (parallel to the x axis) shear 3 * 3 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > shearY (mat< 3, 3, T, Q > const &m, T x)
 Builds a vertical (parallel to the y axis) shear 3 * 3 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > translate (mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)
 Builds a translation 3 * 3 matrix created from a vector of 2 components. More...
 
+

Detailed Description

+

GLM_GTX_matrix_transform_2d

+
Author
Miguel Ángel Pérez Martínez
+
See also
Core features (dependence)
+ +

Definition in file matrix_transform_2d.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00680_source.html b/include/glm/doc/api/a00680_source.html new file mode 100644 index 0000000..53e1d86 --- /dev/null +++ b/include/glm/doc/api/a00680_source.html @@ -0,0 +1,131 @@ + + + + + + + +1.0.2 API documentation: matrix_transform_2d.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix_transform_2d.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../mat3x3.hpp"
+
18 #include "../vec2.hpp"
+
19 
+
20 #ifndef GLM_ENABLE_EXPERIMENTAL
+
21 # error "GLM: GLM_GTX_matrix_transform_2d is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
22 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTX_matrix_transform_2d extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
35  template<typename T, qualifier Q>
+
36  GLM_FUNC_QUALIFIER mat<3, 3, T, Q> translate(
+
37  mat<3, 3, T, Q> const& m,
+
38  vec<2, T, Q> const& v);
+
39 
+
44  template<typename T, qualifier Q>
+
45  GLM_FUNC_QUALIFIER mat<3, 3, T, Q> rotate(
+
46  mat<3, 3, T, Q> const& m,
+
47  T angle);
+
48 
+
53  template<typename T, qualifier Q>
+
54  GLM_FUNC_QUALIFIER mat<3, 3, T, Q> scale(
+
55  mat<3, 3, T, Q> const& m,
+
56  vec<2, T, Q> const& v);
+
57 
+
62  template<typename T, qualifier Q>
+
63  GLM_FUNC_QUALIFIER mat<3, 3, T, Q> shearX(
+
64  mat<3, 3, T, Q> const& m,
+
65  T y);
+
66 
+
71  template<typename T, qualifier Q>
+
72  GLM_FUNC_QUALIFIER mat<3, 3, T, Q> shearY(
+
73  mat<3, 3, T, Q> const& m,
+
74  T x);
+
75 
+
77 }//namespace glm
+
78 
+
79 #include "matrix_transform_2d.inl"
+
+
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > scale(mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)
Builds a scale 3 * 3 matrix created from a vector of 2 components.
+
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > shearY(mat< 3, 3, T, Q > const &m, T x)
Builds a vertical (parallel to the y axis) shear 3 * 3 matrix.
+
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > translate(mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)
Builds a translation 3 * 3 matrix created from a vector of 2 components.
+
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > shearX(mat< 3, 3, T, Q > const &m, T y)
Builds an horizontal (parallel to the x axis) shear 3 * 3 matrix.
+
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > rotate(mat< 3, 3, T, Q > const &m, T angle)
Builds a rotation 3 * 3 matrix created from an angle.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+ + + + diff --git a/include/glm/doc/api/a00683.html b/include/glm/doc/api/a00683.html new file mode 100644 index 0000000..ef09226 --- /dev/null +++ b/include/glm/doc/api/a00683.html @@ -0,0 +1,102 @@ + + + + + + + +1.0.2 API documentation: mixed_product.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
mixed_product.hpp File Reference
+
+
+ +

GLM_GTX_mixed_producte +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

+template<typename T , qualifier Q>
GLM_FUNC_DECL T mixedProduct (vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)
 Mixed product of 3 vectors (from GLM_GTX_mixed_product extension)
 
+

Detailed Description

+

GLM_GTX_mixed_producte

+
See also
Core features (dependence)
+ +

Definition in file mixed_product.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00683_source.html b/include/glm/doc/api/a00683_source.html new file mode 100644 index 0000000..414a0c3 --- /dev/null +++ b/include/glm/doc/api/a00683_source.html @@ -0,0 +1,106 @@ + + + + + + + +1.0.2 API documentation: mixed_product.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mixed_product.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_mixed_product is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_mixed_product extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
30  template<typename T, qualifier Q>
+
31  GLM_FUNC_DECL T mixedProduct(
+
32  vec<3, T, Q> const& v1,
+
33  vec<3, T, Q> const& v2,
+
34  vec<3, T, Q> const& v3);
+
35 
+
37 }// namespace glm
+
38 
+
39 #include "mixed_product.inl"
+
+
GLM_FUNC_DECL T mixedProduct(vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)
Mixed product of 3 vectors (from GLM_GTX_mixed_product extension)
+ + + + diff --git a/include/glm/doc/api/a00686.html b/include/glm/doc/api/a00686.html new file mode 100644 index 0000000..99f4e46 --- /dev/null +++ b/include/glm/doc/api/a00686.html @@ -0,0 +1,141 @@ + + + + + + + +1.0.2 API documentation: norm.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
norm.hpp File Reference
+
+
+ +

GLM_GTX_norm +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T distance2 (vec< L, T, Q > const &p0, vec< L, T, Q > const &p1)
 Returns the squared distance between p0 and p1, i.e., length2(p0 - p1). More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T l1Norm (vec< 3, T, Q > const &v)
 Returns the L1 norm of v. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T l1Norm (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Returns the L1 norm between x and y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T l2Norm (vec< 3, T, Q > const &x)
 Returns the L2 norm of v. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T l2Norm (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Returns the L2 norm between x and y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T length2 (vec< L, T, Q > const &x)
 Returns the squared length of x. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T lMaxNorm (vec< 3, T, Q > const &x)
 Returns the LMax norm of v. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T lMaxNorm (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Returns the LMax norm between x and y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T lxNorm (vec< 3, T, Q > const &x, unsigned int Depth)
 Returns the L norm of v. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T lxNorm (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, unsigned int Depth)
 Returns the L norm between x and y. More...
 
+

Detailed Description

+

GLM_GTX_norm

+
See also
Core features (dependence)
+
+GLM_GTX_quaternion (dependence)
+
+GLM_GTX_component_wise (dependence)
+ +

Definition in file norm.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00686_source.html b/include/glm/doc/api/a00686_source.html new file mode 100644 index 0000000..f9c3c3b --- /dev/null +++ b/include/glm/doc/api/a00686_source.html @@ -0,0 +1,136 @@ + + + + + + + +1.0.2 API documentation: norm.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
norm.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependency:
+
18 #include "../geometric.hpp"
+
19 #include "../gtx/component_wise.hpp"
+
20 
+
21 #ifndef GLM_ENABLE_EXPERIMENTAL
+
22 # error "GLM: GLM_GTX_norm is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
23 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTX_norm extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
34  template<length_t L, typename T, qualifier Q>
+
35  GLM_FUNC_DECL T length2(vec<L, T, Q> const& x);
+
36 
+
39  template<length_t L, typename T, qualifier Q>
+
40  GLM_FUNC_DECL T distance2(vec<L, T, Q> const& p0, vec<L, T, Q> const& p1);
+
41 
+
44  template<typename T, qualifier Q>
+
45  GLM_FUNC_DECL T l1Norm(vec<3, T, Q> const& x, vec<3, T, Q> const& y);
+
46 
+
49  template<typename T, qualifier Q>
+
50  GLM_FUNC_DECL T l1Norm(vec<3, T, Q> const& v);
+
51 
+
54  template<typename T, qualifier Q>
+
55  GLM_FUNC_DECL T l2Norm(vec<3, T, Q> const& x, vec<3, T, Q> const& y);
+
56 
+
59  template<typename T, qualifier Q>
+
60  GLM_FUNC_DECL T l2Norm(vec<3, T, Q> const& x);
+
61 
+
64  template<typename T, qualifier Q>
+
65  GLM_FUNC_DECL T lxNorm(vec<3, T, Q> const& x, vec<3, T, Q> const& y, unsigned int Depth);
+
66 
+
69  template<typename T, qualifier Q>
+
70  GLM_FUNC_DECL T lxNorm(vec<3, T, Q> const& x, unsigned int Depth);
+
71 
+
74  template<typename T, qualifier Q>
+
75  GLM_FUNC_DECL T lMaxNorm(vec<3, T, Q> const& x, vec<3, T, Q> const& y);
+
76 
+
79  template<typename T, qualifier Q>
+
80  GLM_FUNC_DECL T lMaxNorm(vec<3, T, Q> const& x);
+
81 
+
83 }//namespace glm
+
84 
+
85 #include "norm.inl"
+
+
GLM_FUNC_DECL T lMaxNorm(vec< 3, T, Q > const &x)
Returns the LMax norm of v.
+
GLM_FUNC_DECL T distance2(vec< L, T, Q > const &p0, vec< L, T, Q > const &p1)
Returns the squared distance between p0 and p1, i.e., length2(p0 - p1).
+
GLM_FUNC_DECL T l1Norm(vec< 3, T, Q > const &v)
Returns the L1 norm of v.
+
GLM_FUNC_DECL T length2(vec< L, T, Q > const &x)
Returns the squared length of x.
+
GLM_FUNC_DECL T l2Norm(vec< 3, T, Q > const &x)
Returns the L2 norm of v.
+
GLM_FUNC_DECL T lxNorm(vec< 3, T, Q > const &x, unsigned int Depth)
Returns the L norm of v.
+ + + + diff --git a/include/glm/doc/api/a00689.html b/include/glm/doc/api/a00689.html new file mode 100644 index 0000000..43b6b2b --- /dev/null +++ b/include/glm/doc/api/a00689.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: normal.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
normal.hpp File Reference
+
+
+ +

GLM_GTX_normal +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > triangleNormal (vec< 3, T, Q > const &p1, vec< 3, T, Q > const &p2, vec< 3, T, Q > const &p3)
 Computes triangle normal from triangle points. More...
 
+

Detailed Description

+

GLM_GTX_normal

+
See also
Core features (dependence)
+
+gtx_extented_min_max (dependence)
+ +

Definition in file normal.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00689_source.html b/include/glm/doc/api/a00689_source.html new file mode 100644 index 0000000..78409da --- /dev/null +++ b/include/glm/doc/api/a00689_source.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: normal.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
normal.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_normal is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_normal extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
33  template<typename T, qualifier Q>
+
34  GLM_FUNC_DECL vec<3, T, Q> triangleNormal(vec<3, T, Q> const& p1, vec<3, T, Q> const& p2, vec<3, T, Q> const& p3);
+
35 
+
37 }//namespace glm
+
38 
+
39 #include "normal.inl"
+
+
GLM_FUNC_DECL vec< 3, T, Q > triangleNormal(vec< 3, T, Q > const &p1, vec< 3, T, Q > const &p2, vec< 3, T, Q > const &p3)
Computes triangle normal from triangle points.
+ + + + diff --git a/include/glm/doc/api/a00692.html b/include/glm/doc/api/a00692.html new file mode 100644 index 0000000..e873fb4 --- /dev/null +++ b/include/glm/doc/api/a00692.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: normalize_dot.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
normalize_dot.hpp File Reference
+
+
+ +

GLM_GTX_normalize_dot +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T fastNormalizeDot (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Normalize parameters and returns the dot product of x and y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T normalizeDot (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Normalize parameters and returns the dot product of x and y. More...
 
+

Detailed Description

+

GLM_GTX_normalize_dot

+
See also
Core features (dependence)
+
+GLM_GTX_fast_square_root (dependence)
+ +

Definition in file normalize_dot.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00692_source.html b/include/glm/doc/api/a00692_source.html new file mode 100644 index 0000000..bc9d5a2 --- /dev/null +++ b/include/glm/doc/api/a00692_source.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: normalize_dot.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
normalize_dot.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../gtx/fast_square_root.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_normalize_dot is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_normalize_dot extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
34  template<length_t L, typename T, qualifier Q>
+
35  GLM_FUNC_DECL T normalizeDot(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
36 
+
41  template<length_t L, typename T, qualifier Q>
+
42  GLM_FUNC_DECL T fastNormalizeDot(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
43 
+
45 }//namespace glm
+
46 
+
47 #include "normalize_dot.inl"
+
+
GLM_FUNC_DECL T fastNormalizeDot(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Normalize parameters and returns the dot product of x and y.
+
GLM_FUNC_DECL T normalizeDot(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Normalize parameters and returns the dot product of x and y.
+ + + + diff --git a/include/glm/doc/api/a00695.html b/include/glm/doc/api/a00695.html new file mode 100644 index 0000000..e1e30a2 --- /dev/null +++ b/include/glm/doc/api/a00695.html @@ -0,0 +1,117 @@ + + + + + + + +1.0.2 API documentation: number_precision.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
number_precision.hpp File Reference
+
+
+ +

GLM_GTX_number_precision +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

+typedef f32 f32mat1
 Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
 
+typedef f32 f32mat1x1
 Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
 
+typedef f64 f64mat1
 Double-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
 
+typedef f64 f64mat1x1
 Double-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
 
+

Detailed Description

+

GLM_GTX_number_precision

+
See also
Core features (dependence)
+
+GLM_GTC_type_precision (dependence)
+
+GLM_GTC_quaternion (dependence)
+ +

Definition in file number_precision.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00695_source.html b/include/glm/doc/api/a00695_source.html new file mode 100644 index 0000000..9dbeb0c --- /dev/null +++ b/include/glm/doc/api/a00695_source.html @@ -0,0 +1,113 @@ + + + + + + + +1.0.2 API documentation: number_precision.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
number_precision.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependency:
+
18 #include "../glm.hpp"
+
19 #include "../gtc/type_precision.hpp"
+
20 
+
21 #ifndef GLM_ENABLE_EXPERIMENTAL
+
22 # error "GLM: GLM_GTX_number_precision is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
23 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTX_number_precision extension included")
+
25 #endif
+
26 
+
27 namespace glm{
+
29  // Unsigned int vector types
+
30 
+
33 
+
35  // Float matrix types
+
36 
+
37  typedef f32 f32mat1;
+
38  typedef f32 f32mat1x1;
+
39  typedef f64 f64mat1;
+
40  typedef f64 f64mat1x1;
+
41 
+
43 }//namespace glm
+
44 
+
+
f64 f64mat1x1
Double-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
+
f32 f32mat1x1
Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
+
float f32
Default 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:152
+
f64 f64mat1
Double-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
+
f32 f32mat1
Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
+
double f64
Default 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:168
+ + + + diff --git a/include/glm/doc/api/a00698.html b/include/glm/doc/api/a00698.html new file mode 100644 index 0000000..fe617c7 --- /dev/null +++ b/include/glm/doc/api/a00698.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: optimum_pow.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
optimum_pow.hpp File Reference
+
+
+ +

GLM_GTX_optimum_pow +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType pow2 (genType const &x)
 Returns x raised to the power of 2. More...
 
template<typename genType >
GLM_FUNC_DECL genType pow3 (genType const &x)
 Returns x raised to the power of 3. More...
 
template<typename genType >
GLM_FUNC_DECL genType pow4 (genType const &x)
 Returns x raised to the power of 4. More...
 
+

Detailed Description

+

GLM_GTX_optimum_pow

+
See also
Core features (dependence)
+ +

Definition in file optimum_pow.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00698_source.html b/include/glm/doc/api/a00698_source.html new file mode 100644 index 0000000..ec49c22 --- /dev/null +++ b/include/glm/doc/api/a00698_source.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: optimum_pow.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
optimum_pow.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_optimum_pow is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_optimum_pow extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
32  template<typename genType>
+
33  GLM_FUNC_DECL genType pow2(genType const& x);
+
34 
+
38  template<typename genType>
+
39  GLM_FUNC_DECL genType pow3(genType const& x);
+
40 
+
44  template<typename genType>
+
45  GLM_FUNC_DECL genType pow4(genType const& x);
+
46 
+
48 }//namespace glm
+
49 
+
50 #include "optimum_pow.inl"
+
+
GLM_FUNC_DECL genType pow4(genType const &x)
Returns x raised to the power of 4.
+
GLM_FUNC_DECL genType pow2(genType const &x)
Returns x raised to the power of 2.
+
GLM_FUNC_DECL genType pow3(genType const &x)
Returns x raised to the power of 3.
+ + + + diff --git a/include/glm/doc/api/a00701.html b/include/glm/doc/api/a00701.html new file mode 100644 index 0000000..4cfb910 --- /dev/null +++ b/include/glm/doc/api/a00701.html @@ -0,0 +1,107 @@ + + + + + + + +1.0.2 API documentation: orthonormalize.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
orthonormalize.hpp File Reference
+
+
+ +

GLM_GTX_orthonormalize +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > orthonormalize (mat< 3, 3, T, Q > const &m)
 Returns the orthonormalized matrix of m. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > orthonormalize (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Orthonormalizes x according y. More...
 
+

Detailed Description

+

GLM_GTX_orthonormalize

+
See also
Core features (dependence)
+
+gtx_extented_min_max (dependence)
+ +

Definition in file orthonormalize.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00701_source.html b/include/glm/doc/api/a00701_source.html new file mode 100644 index 0000000..9497fdf --- /dev/null +++ b/include/glm/doc/api/a00701_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: orthonormalize.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
orthonormalize.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../vec3.hpp"
+
18 #include "../mat3x3.hpp"
+
19 #include "../geometric.hpp"
+
20 
+
21 #ifndef GLM_ENABLE_EXPERIMENTAL
+
22 # error "GLM: GLM_GTX_orthonormalize is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
23 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTX_orthonormalize extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
35  template<typename T, qualifier Q>
+
36  GLM_FUNC_DECL mat<3, 3, T, Q> orthonormalize(mat<3, 3, T, Q> const& m);
+
37 
+
41  template<typename T, qualifier Q>
+
42  GLM_FUNC_DECL vec<3, T, Q> orthonormalize(vec<3, T, Q> const& x, vec<3, T, Q> const& y);
+
43 
+
45 }//namespace glm
+
46 
+
47 #include "orthonormalize.inl"
+
+
GLM_FUNC_DECL vec< 3, T, Q > orthonormalize(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
Orthonormalizes x according y.
+ + + + diff --git a/include/glm/doc/api/a00704.html b/include/glm/doc/api/a00704.html new file mode 100644 index 0000000..137f2a4 --- /dev/null +++ b/include/glm/doc/api/a00704.html @@ -0,0 +1,133 @@ + + + + + + + +1.0.2 API documentation: pca.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
pca.hpp File Reference
+
+
+ +

GLM_GTX_pca +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+template<length_t D, typename T , qualifier Q, typename I >
GLM_FUNC_DECL mat< D, D, T, Q > computeCovarianceMatrix (I const &b, I const &e)
 Compute a covariance matrix form a pair of iterators b (begin) and e (end) of a container with relative coordinates (e.g., relative to the center of gravity of the object) Dereferencing an iterator of type I must yield a vec<D, T, Qgt;
 
+template<length_t D, typename T , qualifier Q, typename I >
GLM_FUNC_DECL mat< D, D, T, Q > computeCovarianceMatrix (I const &b, I const &e, vec< D, T, Q > const &c)
 Compute a covariance matrix form a pair of iterators b (begin) and e (end) of a container with absolute coordinates and a precomputed center of gravity c Dereferencing an iterator of type I must yield a vec<D, T, Qgt;
 
template<length_t D, typename T , qualifier Q>
GLM_INLINE mat< D, D, T, Q > computeCovarianceMatrix (vec< D, T, Q > const *v, size_t n)
 Compute a covariance matrix form an array of relative coordinates v (e.g., relative to the center of gravity of the object) More...
 
template<length_t D, typename T , qualifier Q>
GLM_INLINE mat< D, D, T, Q > computeCovarianceMatrix (vec< D, T, Q > const *v, size_t n, vec< D, T, Q > const &c)
 Compute a covariance matrix form an array of absolute coordinates v and a precomputed center of gravity c More...
 
template<length_t D, typename T , qualifier Q>
GLM_FUNC_DECL unsigned int findEigenvaluesSymReal (mat< D, D, T, Q > const &covarMat, vec< D, T, Q > &outEigenvalues, mat< D, D, T, Q > &outEigenvectors)
 Assuming the provided covariance matrix covarMat is symmetric and real-valued, this function find the D Eigenvalues of the matrix, and also provides the corresponding Eigenvectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void sortEigenvalues (vec< 2, T, Q > &eigenvalues, mat< 2, 2, T, Q > &eigenvectors)
 Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void sortEigenvalues (vec< 3, T, Q > &eigenvalues, mat< 3, 3, T, Q > &eigenvectors)
 Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void sortEigenvalues (vec< 4, T, Q > &eigenvalues, mat< 4, 4, T, Q > &eigenvectors)
 Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue. More...
 
+

Detailed Description

+

GLM_GTX_pca

+
See also
Core features (dependence)
+
+GLM_EXT_scalar_relational (dependence)
+ +

Definition in file pca.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00704_source.html b/include/glm/doc/api/a00704_source.html new file mode 100644 index 0000000..8d045da --- /dev/null +++ b/include/glm/doc/api/a00704_source.html @@ -0,0 +1,132 @@ + + + + + + + +1.0.2 API documentation: pca.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
pca.hpp
+
+
+Go to the documentation of this file.
1 
+
39 #pragma once
+
40 
+
41 // Dependency:
+
42 #include "../glm.hpp"
+
43 #include "../ext/scalar_relational.hpp"
+
44 
+
45 #ifndef GLM_ENABLE_EXPERIMENTAL
+
46 # error "GLM: GLM_GTX_pca is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
47 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
48 # pragma message("GLM: GLM_GTX_pca extension included")
+
49 #endif
+
50 
+
51 namespace glm {
+
54 
+
58  template<length_t D, typename T, qualifier Q>
+
59  GLM_INLINE mat<D, D, T, Q> computeCovarianceMatrix(vec<D, T, Q> const* v, size_t n);
+
60 
+
65  template<length_t D, typename T, qualifier Q>
+
66  GLM_INLINE mat<D, D, T, Q> computeCovarianceMatrix(vec<D, T, Q> const* v, size_t n, vec<D, T, Q> const& c);
+
67 
+
70  template<length_t D, typename T, qualifier Q, typename I>
+
71  GLM_FUNC_DECL mat<D, D, T, Q> computeCovarianceMatrix(I const& b, I const& e);
+
72 
+
75  template<length_t D, typename T, qualifier Q, typename I>
+
76  GLM_FUNC_DECL mat<D, D, T, Q> computeCovarianceMatrix(I const& b, I const& e, vec<D, T, Q> const& c);
+
77 
+
86  template<length_t D, typename T, qualifier Q>
+
87  GLM_FUNC_DECL unsigned int findEigenvaluesSymReal
+
88  (
+
89  mat<D, D, T, Q> const& covarMat,
+
90  vec<D, T, Q>& outEigenvalues,
+
91  mat<D, D, T, Q>& outEigenvectors
+
92  );
+
93 
+
96  template<typename T, qualifier Q>
+
97  GLM_FUNC_DISCARD_DECL void sortEigenvalues(vec<2, T, Q>& eigenvalues, mat<2, 2, T, Q>& eigenvectors);
+
98 
+
101  template<typename T, qualifier Q>
+
102  GLM_FUNC_DISCARD_DECL void sortEigenvalues(vec<3, T, Q>& eigenvalues, mat<3, 3, T, Q>& eigenvectors);
+
103 
+
106  template<typename T, qualifier Q>
+
107  GLM_FUNC_DISCARD_DECL void sortEigenvalues(vec<4, T, Q>& eigenvalues, mat<4, 4, T, Q>& eigenvectors);
+
108 
+
110 }//namespace glm
+
111 
+
112 #include "pca.inl"
+
+
GLM_FUNC_DISCARD_DECL void sortEigenvalues(vec< 4, T, Q > &eigenvalues, mat< 4, 4, T, Q > &eigenvectors)
Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue.
+
GLM_FUNC_DECL mat< D, D, T, Q > computeCovarianceMatrix(I const &b, I const &e, vec< D, T, Q > const &c)
Compute a covariance matrix form a pair of iterators b (begin) and e (end) of a container with absolu...
+
GLM_FUNC_DECL GLM_CONSTEXPR genType e()
Return e constant.
+
GLM_FUNC_DECL unsigned int findEigenvaluesSymReal(mat< D, D, T, Q > const &covarMat, vec< D, T, Q > &outEigenvalues, mat< D, D, T, Q > &outEigenvectors)
Assuming the provided covariance matrix covarMat is symmetric and real-valued, this function find the...
+ + + + diff --git a/include/glm/doc/api/a00707.html b/include/glm/doc/api/a00707.html new file mode 100644 index 0000000..98fbf21 --- /dev/null +++ b/include/glm/doc/api/a00707.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: perpendicular.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
perpendicular.hpp File Reference
+
+
+ +

GLM_GTX_perpendicular +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType perp (genType const &x, genType const &Normal)
 Projects x a perpendicular axis of Normal. More...
 
+

Detailed Description

+

GLM_GTX_perpendicular

+
See also
Core features (dependence)
+
+GLM_GTX_projection (dependence)
+ +

Definition in file perpendicular.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00707_source.html b/include/glm/doc/api/a00707_source.html new file mode 100644 index 0000000..cbcd84b --- /dev/null +++ b/include/glm/doc/api/a00707_source.html @@ -0,0 +1,104 @@ + + + + + + + +1.0.2 API documentation: perpendicular.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
perpendicular.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 #include "../gtx/projection.hpp"
+
19 
+
20 #ifndef GLM_ENABLE_EXPERIMENTAL
+
21 # error "GLM: GLM_GTX_perpendicular is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
22 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTX_perpendicular extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
33  template<typename genType>
+
34  GLM_FUNC_DECL genType perp(genType const& x, genType const& Normal);
+
35 
+
37 }//namespace glm
+
38 
+
39 #include "perpendicular.inl"
+
+
GLM_FUNC_DECL genType perp(genType const &x, genType const &Normal)
Projects x a perpendicular axis of Normal.
+ + + + diff --git a/include/glm/doc/api/a00710.html b/include/glm/doc/api/a00710.html new file mode 100644 index 0000000..c0a32bb --- /dev/null +++ b/include/glm/doc/api/a00710.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: polar_coordinates.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
polar_coordinates.hpp File Reference
+
+
+ +

GLM_GTX_polar_coordinates +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > euclidean (vec< 2, T, Q > const &polar)
 Convert Polar to Euclidean coordinates. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > polar (vec< 3, T, Q > const &euclidean)
 Convert Euclidean to Polar coordinates, x is the latitude, y the longitude and z the xz distance. More...
 
+

Detailed Description

+

GLM_GTX_polar_coordinates

+
See also
Core features (dependence)
+ +

Definition in file polar_coordinates.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00710_source.html b/include/glm/doc/api/a00710_source.html new file mode 100644 index 0000000..6f339e5 --- /dev/null +++ b/include/glm/doc/api/a00710_source.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: polar_coordinates.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
polar_coordinates.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_polar_coordinates is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_polar_coordinates extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
32  template<typename T, qualifier Q>
+
33  GLM_FUNC_DECL vec<3, T, Q> polar(
+
34  vec<3, T, Q> const& euclidean);
+
35 
+
39  template<typename T, qualifier Q>
+
40  GLM_FUNC_DECL vec<3, T, Q> euclidean(
+
41  vec<2, T, Q> const& polar);
+
42 
+
44 }//namespace glm
+
45 
+
46 #include "polar_coordinates.inl"
+
+
GLM_FUNC_DECL vec< 3, T, Q > polar(vec< 3, T, Q > const &euclidean)
Convert Euclidean to Polar coordinates, x is the latitude, y the longitude and z the xz distance.
+
GLM_FUNC_DECL vec< 3, T, Q > euclidean(vec< 2, T, Q > const &polar)
Convert Polar to Euclidean coordinates.
+ + + + diff --git a/include/glm/doc/api/a00713.html b/include/glm/doc/api/a00713.html new file mode 100644 index 0000000..955495b --- /dev/null +++ b/include/glm/doc/api/a00713.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: projection.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
projection.hpp File Reference
+
+
+ +

GLM_GTX_projection +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType proj (genType const &x, genType const &Normal)
 Projects x on Normal. More...
 
+

Detailed Description

+

GLM_GTX_projection

+
See also
Core features (dependence)
+ +

Definition in file projection.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00713_source.html b/include/glm/doc/api/a00713_source.html new file mode 100644 index 0000000..145d285 --- /dev/null +++ b/include/glm/doc/api/a00713_source.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: projection.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
projection.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../geometric.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_projection is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_projection extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
35  template<typename genType>
+
36  GLM_FUNC_DECL genType proj(genType const& x, genType const& Normal);
+
37 
+
39 }//namespace glm
+
40 
+
41 #include "projection.inl"
+
+
GLM_FUNC_DECL genType proj(genType const &x, genType const &Normal)
Projects x on Normal.
+ + + + diff --git a/include/glm/doc/api/a00716.html b/include/glm/doc/api/a00716.html new file mode 100644 index 0000000..52a8609 --- /dev/null +++ b/include/glm/doc/api/a00716.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: range.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
range.hpp File Reference
+
+
+ +

GLM_GTX_range +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTX_range

+
Author
Joshua Moerman
+ +

Definition in file range.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00716_source.html b/include/glm/doc/api/a00716_source.html new file mode 100644 index 0000000..b04d941 --- /dev/null +++ b/include/glm/doc/api/a00716_source.html @@ -0,0 +1,164 @@ + + + + + + + +1.0.2 API documentation: range.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
range.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "../detail/setup.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_range is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_range extension included")
+
22 #endif
+
23 
+
24 #include "../gtc/type_ptr.hpp"
+
25 #include "../gtc/vec1.hpp"
+
26 
+
27 namespace glm
+
28 {
+
31 
+
32 # if GLM_COMPILER & GLM_COMPILER_VC
+
33 # pragma warning(push)
+
34 # pragma warning(disable : 4100) // unreferenced formal parameter
+
35 # endif
+
36 
+
37  template<typename T, qualifier Q>
+
38  inline length_t components(vec<1, T, Q> const& v)
+
39  {
+
40  return v.length();
+
41  }
+
42 
+
43  template<typename T, qualifier Q>
+
44  inline length_t components(vec<2, T, Q> const& v)
+
45  {
+
46  return v.length();
+
47  }
+
48 
+
49  template<typename T, qualifier Q>
+
50  inline length_t components(vec<3, T, Q> const& v)
+
51  {
+
52  return v.length();
+
53  }
+
54 
+
55  template<typename T, qualifier Q>
+
56  inline length_t components(vec<4, T, Q> const& v)
+
57  {
+
58  return v.length();
+
59  }
+
60 
+
61  template<typename genType>
+
62  inline length_t components(genType const& m)
+
63  {
+
64  return m.length() * m[0].length();
+
65  }
+
66 
+
67  template<typename genType>
+
68  inline typename genType::value_type const * begin(genType const& v)
+
69  {
+
70  return value_ptr(v);
+
71  }
+
72 
+
73  template<typename genType>
+
74  inline typename genType::value_type const * end(genType const& v)
+
75  {
+
76  return begin(v) + components(v);
+
77  }
+
78 
+
79  template<typename genType>
+
80  inline typename genType::value_type * begin(genType& v)
+
81  {
+
82  return value_ptr(v);
+
83  }
+
84 
+
85  template<typename genType>
+
86  inline typename genType::value_type * end(genType& v)
+
87  {
+
88  return begin(v) + components(v);
+
89  }
+
90 
+
91 # if GLM_COMPILER & GLM_COMPILER_VC
+
92 # pragma warning(pop)
+
93 # endif
+
94 
+
96 }//namespace glm
+
+
GLM_FUNC_DECL genType::value_type const * value_ptr(genType const &v)
Return the constant address to the data of the input parameter.
+ + + + diff --git a/include/glm/doc/api/a00719.html b/include/glm/doc/api/a00719.html new file mode 100644 index 0000000..701b236 --- /dev/null +++ b/include/glm/doc/api/a00719.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: raw_data.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
raw_data.hpp File Reference
+
+
+ +

GLM_GTX_raw_data +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Typedefs

typedef detail::uint8 byte
 Type for byte numbers. More...
 
typedef detail::uint32 dword
 Type for dword numbers. More...
 
typedef detail::uint64 qword
 Type for qword numbers. More...
 
typedef detail::uint16 word
 Type for word numbers. More...
 
+

Detailed Description

+

GLM_GTX_raw_data

+
See also
Core features (dependence)
+ +

Definition in file raw_data.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00719_source.html b/include/glm/doc/api/a00719_source.html new file mode 100644 index 0000000..218b138 --- /dev/null +++ b/include/glm/doc/api/a00719_source.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: raw_data.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
raw_data.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "../ext/scalar_uint_sized.hpp"
+
17 #include "../detail/setup.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_raw_data is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_raw_data extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
32  typedef detail::uint8 byte;
+
33 
+
36  typedef detail::uint16 word;
+
37 
+
40  typedef detail::uint32 dword;
+
41 
+
44  typedef detail::uint64 qword;
+
45 
+
47 }// namespace glm
+
48 
+
49 #include "raw_data.inl"
+
+
detail::uint8 byte
Type for byte numbers.
Definition: raw_data.hpp:32
+
detail::uint64 qword
Type for qword numbers.
Definition: raw_data.hpp:44
+
detail::uint16 word
Type for word numbers.
Definition: raw_data.hpp:36
+
detail::uint32 dword
Type for dword numbers.
Definition: raw_data.hpp:40
+ + + + diff --git a/include/glm/doc/api/a00722.html b/include/glm/doc/api/a00722.html new file mode 100644 index 0000000..f1fe9d4 --- /dev/null +++ b/include/glm/doc/api/a00722.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: rotate_normalized_axis.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
rotate_normalized_axis.hpp File Reference
+
+
+ +

GLM_GTX_rotate_normalized_axis +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rotateNormalizedAxis (mat< 4, 4, T, Q > const &m, T const &angle, vec< 3, T, Q > const &axis)
 Builds a rotation 4 * 4 matrix created from a normalized axis and an angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > rotateNormalizedAxis (qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)
 Rotates a quaternion from a vector of 3 components normalized axis and an angle. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00722_source.html b/include/glm/doc/api/a00722_source.html new file mode 100644 index 0000000..e5efcaa --- /dev/null +++ b/include/glm/doc/api/a00722_source.html @@ -0,0 +1,116 @@ + + + + + + + +1.0.2 API documentation: rotate_normalized_axis.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
rotate_normalized_axis.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependency:
+
18 #include "../glm.hpp"
+
19 #include "../gtc/epsilon.hpp"
+
20 #include "../gtc/quaternion.hpp"
+
21 
+
22 #ifndef GLM_ENABLE_EXPERIMENTAL
+
23 # error "GLM: GLM_GTX_rotate_normalized_axis is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
24 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
25 # pragma message("GLM: GLM_GTX_rotate_normalized_axis extension included")
+
26 #endif
+
27 
+
28 namespace glm
+
29 {
+
32 
+
44  template<typename T, qualifier Q>
+
45  GLM_FUNC_DECL mat<4, 4, T, Q> rotateNormalizedAxis(
+
46  mat<4, 4, T, Q> const& m,
+
47  T const& angle,
+
48  vec<3, T, Q> const& axis);
+
49 
+
57  template<typename T, qualifier Q>
+
58  GLM_FUNC_DECL qua<T, Q> rotateNormalizedAxis(
+
59  qua<T, Q> const& q,
+
60  T const& angle,
+
61  vec<3, T, Q> const& axis);
+
62 
+
64 }//namespace glm
+
65 
+
66 #include "rotate_normalized_axis.inl"
+
+
GLM_FUNC_DECL qua< T, Q > rotateNormalizedAxis(qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)
Rotates a quaternion from a vector of 3 components normalized axis and an angle.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL vec< 3, T, Q > axis(qua< T, Q > const &x)
Returns the q rotation axis.
+ + + + diff --git a/include/glm/doc/api/a00725.html b/include/glm/doc/api/a00725.html new file mode 100644 index 0000000..13c3f3e --- /dev/null +++ b/include/glm/doc/api/a00725.html @@ -0,0 +1,143 @@ + + + + + + + +1.0.2 API documentation: rotate_vector.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
rotate_vector.hpp File Reference
+
+
+ +

GLM_GTX_rotate_vector +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > orientation (vec< 3, T, Q > const &Normal, vec< 3, T, Q > const &Up)
 Build a rotation matrix from a normal and a up vector. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > rotate (vec< 2, T, Q > const &v, T const &angle)
 Rotate a two dimensional vector. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotate (vec< 3, T, Q > const &v, T const &angle, vec< 3, T, Q > const &normal)
 Rotate a three dimensional vector around an axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotate (vec< 4, T, Q > const &v, T const &angle, vec< 3, T, Q > const &normal)
 Rotate a four dimensional vector around an axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotateX (vec< 3, T, Q > const &v, T const &angle)
 Rotate a three dimensional vector around the X axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotateX (vec< 4, T, Q > const &v, T const &angle)
 Rotate a four dimensional vector around the X axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotateY (vec< 3, T, Q > const &v, T const &angle)
 Rotate a three dimensional vector around the Y axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotateY (vec< 4, T, Q > const &v, T const &angle)
 Rotate a four dimensional vector around the Y axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotateZ (vec< 3, T, Q > const &v, T const &angle)
 Rotate a three dimensional vector around the Z axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotateZ (vec< 4, T, Q > const &v, T const &angle)
 Rotate a four dimensional vector around the Z axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > slerp (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, T const &a)
 Returns Spherical interpolation between two vectors. More...
 
+

Detailed Description

+

GLM_GTX_rotate_vector

+
See also
Core features (dependence)
+
+GLM_GTX_transform (dependence)
+ +

Definition in file rotate_vector.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00725_source.html b/include/glm/doc/api/a00725_source.html new file mode 100644 index 0000000..d4c2dc7 --- /dev/null +++ b/include/glm/doc/api/a00725_source.html @@ -0,0 +1,167 @@ + + + + + + + +1.0.2 API documentation: rotate_vector.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
rotate_vector.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../gtx/transform.hpp"
+
18 #include "../gtc/epsilon.hpp"
+
19 #include "../ext/vector_relational.hpp"
+
20 #include "../glm.hpp"
+
21 
+
22 #ifndef GLM_ENABLE_EXPERIMENTAL
+
23 # error "GLM: GLM_GTX_rotate_vector is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
24 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
25 # pragma message("GLM: GLM_GTX_rotate_vector extension included")
+
26 #endif
+
27 
+
28 namespace glm
+
29 {
+
32 
+
40  template<typename T, qualifier Q>
+
41  GLM_FUNC_DECL vec<3, T, Q> slerp(
+
42  vec<3, T, Q> const& x,
+
43  vec<3, T, Q> const& y,
+
44  T const& a);
+
45 
+
48  template<typename T, qualifier Q>
+
49  GLM_FUNC_DECL vec<2, T, Q> rotate(
+
50  vec<2, T, Q> const& v,
+
51  T const& angle);
+
52 
+
55  template<typename T, qualifier Q>
+
56  GLM_FUNC_DECL vec<3, T, Q> rotate(
+
57  vec<3, T, Q> const& v,
+
58  T const& angle,
+
59  vec<3, T, Q> const& normal);
+
60 
+
63  template<typename T, qualifier Q>
+
64  GLM_FUNC_DECL vec<4, T, Q> rotate(
+
65  vec<4, T, Q> const& v,
+
66  T const& angle,
+
67  vec<3, T, Q> const& normal);
+
68 
+
71  template<typename T, qualifier Q>
+
72  GLM_FUNC_DECL vec<3, T, Q> rotateX(
+
73  vec<3, T, Q> const& v,
+
74  T const& angle);
+
75 
+
78  template<typename T, qualifier Q>
+
79  GLM_FUNC_DECL vec<3, T, Q> rotateY(
+
80  vec<3, T, Q> const& v,
+
81  T const& angle);
+
82 
+
85  template<typename T, qualifier Q>
+
86  GLM_FUNC_DECL vec<3, T, Q> rotateZ(
+
87  vec<3, T, Q> const& v,
+
88  T const& angle);
+
89 
+
92  template<typename T, qualifier Q>
+
93  GLM_FUNC_DECL vec<4, T, Q> rotateX(
+
94  vec<4, T, Q> const& v,
+
95  T const& angle);
+
96 
+
99  template<typename T, qualifier Q>
+
100  GLM_FUNC_DECL vec<4, T, Q> rotateY(
+
101  vec<4, T, Q> const& v,
+
102  T const& angle);
+
103 
+
106  template<typename T, qualifier Q>
+
107  GLM_FUNC_DECL vec<4, T, Q> rotateZ(
+
108  vec<4, T, Q> const& v,
+
109  T const& angle);
+
110 
+
113  template<typename T, qualifier Q>
+
114  GLM_FUNC_DECL mat<4, 4, T, Q> orientation(
+
115  vec<3, T, Q> const& Normal,
+
116  vec<3, T, Q> const& Up);
+
117 
+
119 }//namespace glm
+
120 
+
121 #include "rotate_vector.inl"
+
+
GLM_FUNC_DECL vec< 4, T, Q > rotateY(vec< 4, T, Q > const &v, T const &angle)
Rotate a four dimensional vector around the Y axis.
+
GLM_FUNC_DECL vec< 4, T, Q > rotate(vec< 4, T, Q > const &v, T const &angle, vec< 3, T, Q > const &normal)
Rotate a four dimensional vector around an axis.
+
GLM_FUNC_DECL vec< 4, T, Q > rotateX(vec< 4, T, Q > const &v, T const &angle)
Rotate a four dimensional vector around the X axis.
+
GLM_FUNC_DECL vec< 4, T, Q > rotateZ(vec< 4, T, Q > const &v, T const &angle)
Rotate a four dimensional vector around the Z axis.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > orientation(vec< 3, T, Q > const &Normal, vec< 3, T, Q > const &Up)
Build a rotation matrix from a normal and a up vector.
+
GLM_FUNC_DECL vec< 3, T, Q > slerp(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, T const &a)
Returns Spherical interpolation between two vectors.
+ + + + diff --git a/include/glm/doc/api/a00728.html b/include/glm/doc/api/a00728.html new file mode 100644 index 0000000..5fcc0da --- /dev/null +++ b/include/glm/doc/api/a00728.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: scalar_multiplication.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_multiplication.hpp File Reference
+
+ + + + + diff --git a/include/glm/doc/api/a00728_source.html b/include/glm/doc/api/a00728_source.html new file mode 100644 index 0000000..5927d03 --- /dev/null +++ b/include/glm/doc/api/a00728_source.html @@ -0,0 +1,154 @@ + + + + + + + +1.0.2 API documentation: scalar_multiplication.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
scalar_multiplication.hpp
+
+
+Go to the documentation of this file.
1 
+
18 #pragma once
+
19 
+
20 #include "../detail/setup.hpp"
+
21 
+
22 #ifndef GLM_ENABLE_EXPERIMENTAL
+
23 # error "GLM: GLM_GTX_scalar_multiplication is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
24 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
25 # pragma message("GLM: GLM_GTX_scalar_multiplication extension included")
+
26 #endif
+
27 
+
28 #include "../vec2.hpp"
+
29 #include "../vec3.hpp"
+
30 #include "../vec4.hpp"
+
31 #include "../mat2x2.hpp"
+
32 #include <type_traits>
+
33 
+
34 namespace glm
+
35 {
+
38 
+
39  template<typename T, typename Vec>
+
40  using return_type_scalar_multiplication = typename std::enable_if<
+
41  !std::is_same<T, float>::value // T may not be a float
+
42  && std::is_arithmetic<T>::value, Vec // But it may be an int or double (no vec3 or mat3, ...)
+
43  >::type;
+
44 
+
45 #define GLM_IMPLEMENT_SCAL_MULT(Vec) \
+
46  template<typename T> \
+
47  return_type_scalar_multiplication<T, Vec> \
+
48  operator*(T const& s, Vec rh){ \
+
49  return rh *= static_cast<float>(s); \
+
50  } \
+
51  \
+
52  template<typename T> \
+
53  return_type_scalar_multiplication<T, Vec> \
+
54  operator*(Vec lh, T const& s){ \
+
55  return lh *= static_cast<float>(s); \
+
56  } \
+
57  \
+
58  template<typename T> \
+
59  return_type_scalar_multiplication<T, Vec> \
+
60  operator/(Vec lh, T const& s){ \
+
61  return lh *= 1.0f / static_cast<float>(s); \
+
62  }
+
63 
+
64 GLM_IMPLEMENT_SCAL_MULT(vec2)
+
65 GLM_IMPLEMENT_SCAL_MULT(vec3)
+
66 GLM_IMPLEMENT_SCAL_MULT(vec4)
+
67 
+
68 GLM_IMPLEMENT_SCAL_MULT(mat2)
+
69 GLM_IMPLEMENT_SCAL_MULT(mat2x3)
+
70 GLM_IMPLEMENT_SCAL_MULT(mat2x4)
+
71 GLM_IMPLEMENT_SCAL_MULT(mat3x2)
+
72 GLM_IMPLEMENT_SCAL_MULT(mat3)
+
73 GLM_IMPLEMENT_SCAL_MULT(mat3x4)
+
74 GLM_IMPLEMENT_SCAL_MULT(mat4x2)
+
75 GLM_IMPLEMENT_SCAL_MULT(mat4x3)
+
76 GLM_IMPLEMENT_SCAL_MULT(mat4)
+
77 
+
78 #undef GLM_IMPLEMENT_SCAL_MULT
+
79 } // namespace glm
+
+
mat< 3, 3, float, defaultp > mat3
3 columns of 3 components matrix of single-precision floating-point numbers.
+
mat< 4, 3, float, defaultp > mat4x3
4 columns of 3 components matrix of single-precision floating-point numbers.
+
mat< 3, 2, float, defaultp > mat3x2
3 columns of 2 components matrix of single-precision floating-point numbers.
+
mat< 2, 4, float, defaultp > mat2x4
2 columns of 4 components matrix of single-precision floating-point numbers.
+
mat< 2, 3, float, defaultp > mat2x3
2 columns of 3 components matrix of single-precision floating-point numbers.
+
mat< 4, 4, float, defaultp > mat4
4 columns of 4 components matrix of single-precision floating-point numbers.
+
vec< 2, float, defaultp > vec2
2 components vector of single-precision floating-point numbers.
+
mat< 3, 4, float, defaultp > mat3x4
3 columns of 4 components matrix of single-precision floating-point numbers.
+
mat< 4, 2, float, defaultp > mat4x2
4 columns of 2 components matrix of single-precision floating-point numbers.
+
mat< 2, 2, float, defaultp > mat2
2 columns of 2 components matrix of single-precision floating-point numbers.
+
vec< 3, float, defaultp > vec3
3 components vector of single-precision floating-point numbers.
+
vec< 4, float, defaultp > vec4
4 components vector of single-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00731.html b/include/glm/doc/api/a00731.html new file mode 100644 index 0000000..89cf6d8 --- /dev/null +++ b/include/glm/doc/api/a00731.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: spline.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
spline.hpp File Reference
+
+
+ +

GLM_GTX_spline +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType catmullRom (genType const &v1, genType const &v2, genType const &v3, genType const &v4, typename genType::value_type const &s)
 Return a point from a catmull rom curve. More...
 
template<typename genType >
GLM_FUNC_DECL genType cubic (genType const &v1, genType const &v2, genType const &v3, genType const &v4, typename genType::value_type const &s)
 Return a point from a cubic curve. More...
 
template<typename genType >
GLM_FUNC_DECL genType hermite (genType const &v1, genType const &t1, genType const &v2, genType const &t2, typename genType::value_type const &s)
 Return a point from a hermite curve. More...
 
+

Detailed Description

+

GLM_GTX_spline

+
See also
Core features (dependence)
+ +

Definition in file spline.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00731_source.html b/include/glm/doc/api/a00731_source.html new file mode 100644 index 0000000..ee825e7 --- /dev/null +++ b/include/glm/doc/api/a00731_source.html @@ -0,0 +1,127 @@ + + + + + + + +1.0.2 API documentation: spline.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
spline.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 #include "../gtx/optimum_pow.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_spline is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_spline extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
32  template<typename genType>
+
33  GLM_FUNC_DECL genType catmullRom(
+
34  genType const& v1,
+
35  genType const& v2,
+
36  genType const& v3,
+
37  genType const& v4,
+
38  typename genType::value_type const& s);
+
39 
+
42  template<typename genType>
+
43  GLM_FUNC_DECL genType hermite(
+
44  genType const& v1,
+
45  genType const& t1,
+
46  genType const& v2,
+
47  genType const& t2,
+
48  typename genType::value_type const& s);
+
49 
+
52  template<typename genType>
+
53  GLM_FUNC_DECL genType cubic(
+
54  genType const& v1,
+
55  genType const& v2,
+
56  genType const& v3,
+
57  genType const& v4,
+
58  typename genType::value_type const& s);
+
59 
+
61 }//namespace glm
+
62 
+
63 #include "spline.inl"
+
+
GLM_FUNC_DECL genType cubic(genType const &v1, genType const &v2, genType const &v3, genType const &v4, typename genType::value_type const &s)
Return a point from a cubic curve.
+
GLM_FUNC_DECL genType catmullRom(genType const &v1, genType const &v2, genType const &v3, genType const &v4, typename genType::value_type const &s)
Return a point from a catmull rom curve.
+
GLM_FUNC_DECL genType hermite(genType const &v1, genType const &t1, genType const &v2, genType const &t2, typename genType::value_type const &s)
Return a point from a hermite curve.
+ + + + diff --git a/include/glm/doc/api/a00734.html b/include/glm/doc/api/a00734.html new file mode 100644 index 0000000..0dbb885 --- /dev/null +++ b/include/glm/doc/api/a00734.html @@ -0,0 +1,123 @@ + + + + + + + +1.0.2 API documentation: std_based_type.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
std_based_type.hpp File Reference
+
+
+ +

GLM_GTX_std_based_type +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef vec< 1, std::size_t, defaultp > size1
 Vector type based of one std::size_t component. More...
 
typedef vec< 1, std::size_t, defaultp > size1_t
 Vector type based of one std::size_t component. More...
 
typedef vec< 2, std::size_t, defaultp > size2
 Vector type based of two std::size_t components. More...
 
typedef vec< 2, std::size_t, defaultp > size2_t
 Vector type based of two std::size_t components. More...
 
typedef vec< 3, std::size_t, defaultp > size3
 Vector type based of three std::size_t components. More...
 
typedef vec< 3, std::size_t, defaultp > size3_t
 Vector type based of three std::size_t components. More...
 
typedef vec< 4, std::size_t, defaultp > size4
 Vector type based of four std::size_t components. More...
 
typedef vec< 4, std::size_t, defaultp > size4_t
 Vector type based of four std::size_t components. More...
 
+

Detailed Description

+

GLM_GTX_std_based_type

+
See also
Core features (dependence)
+
+gtx_extented_min_max (dependence)
+ +

Definition in file std_based_type.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00734_source.html b/include/glm/doc/api/a00734_source.html new file mode 100644 index 0000000..a401118 --- /dev/null +++ b/include/glm/doc/api/a00734_source.html @@ -0,0 +1,124 @@ + + + + + + + +1.0.2 API documentation: std_based_type.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
std_based_type.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 #include <cstdlib>
+
19 
+
20 #ifndef GLM_ENABLE_EXPERIMENTAL
+
21 # error "GLM: GLM_GTX_std_based_type is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
22 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTX_std_based_type extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
33  typedef vec<1, std::size_t, defaultp> size1;
+
34 
+
37  typedef vec<2, std::size_t, defaultp> size2;
+
38 
+
41  typedef vec<3, std::size_t, defaultp> size3;
+
42 
+
45  typedef vec<4, std::size_t, defaultp> size4;
+
46 
+
49  typedef vec<1, std::size_t, defaultp> size1_t;
+
50 
+
53  typedef vec<2, std::size_t, defaultp> size2_t;
+
54 
+
57  typedef vec<3, std::size_t, defaultp> size3_t;
+
58 
+
61  typedef vec<4, std::size_t, defaultp> size4_t;
+
62 
+
64 }//namespace glm
+
65 
+
66 #include "std_based_type.inl"
+
+
vec< 3, std::size_t, defaultp > size3_t
Vector type based of three std::size_t components.
+
vec< 3, std::size_t, defaultp > size3
Vector type based of three std::size_t components.
+
vec< 1, std::size_t, defaultp > size1
Vector type based of one std::size_t component.
+
vec< 2, std::size_t, defaultp > size2_t
Vector type based of two std::size_t components.
+
vec< 2, std::size_t, defaultp > size2
Vector type based of two std::size_t components.
+
vec< 4, std::size_t, defaultp > size4
Vector type based of four std::size_t components.
+
vec< 4, std::size_t, defaultp > size4_t
Vector type based of four std::size_t components.
+
vec< 1, std::size_t, defaultp > size1_t
Vector type based of one std::size_t component.
+ + + + diff --git a/include/glm/doc/api/a00737.html b/include/glm/doc/api/a00737.html new file mode 100644 index 0000000..036a237 --- /dev/null +++ b/include/glm/doc/api/a00737.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: string_cast.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
string_cast.hpp File Reference
+
+
+ +

GLM_GTX_string_cast +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL std::string to_string (genType const &x)
 Create a string from a GLM vector or matrix typed variable. More...
 
+

Detailed Description

+

GLM_GTX_string_cast

+
See also
Core features (dependence)
+
+GLM_GTX_integer (dependence)
+
+GLM_GTX_quaternion (dependence)
+ +

Definition in file string_cast.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00737_source.html b/include/glm/doc/api/a00737_source.html new file mode 100644 index 0000000..f15a2fe --- /dev/null +++ b/include/glm/doc/api/a00737_source.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: string_cast.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
string_cast.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependency:
+
18 #include "../glm.hpp"
+
19 #include "../gtc/type_precision.hpp"
+
20 #include "../gtc/quaternion.hpp"
+
21 #include "../gtx/dual_quaternion.hpp"
+
22 #include <string>
+
23 #include <cmath>
+
24 #include <cstring>
+
25 
+
26 #ifndef GLM_ENABLE_EXPERIMENTAL
+
27 # error "GLM: GLM_GTX_string_cast is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
28 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
29 # pragma message("GLM: GLM_GTX_string_cast extension included")
+
30 #endif
+
31 
+
32 namespace glm
+
33 {
+
36 
+
39  template<typename genType>
+
40  GLM_FUNC_DECL std::string to_string(genType const& x);
+
41 
+
43 }//namespace glm
+
44 
+
45 #include "string_cast.inl"
+
+
GLM_FUNC_DECL std::string to_string(genType const &x)
Create a string from a GLM vector or matrix typed variable.
+ + + + diff --git a/include/glm/doc/api/a00740.html b/include/glm/doc/api/a00740.html new file mode 100644 index 0000000..4bd4435 --- /dev/null +++ b/include/glm/doc/api/a00740.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: structured_bindings.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
structured_bindings.hpp File Reference
+
+ + + + + diff --git a/include/glm/doc/api/a00740_source.html b/include/glm/doc/api/a00740_source.html new file mode 100644 index 0000000..0dce005 --- /dev/null +++ b/include/glm/doc/api/a00740_source.html @@ -0,0 +1,163 @@ + + + + + + + +1.0.2 API documentation: structured_bindings.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
structured_bindings.hpp
+
+
+Go to the documentation of this file.
1 
+
9 #pragma once
+
10 
+
11 // Dependency:
+
12 #include "../glm.hpp"
+
13 #include "../gtx/quaternion.hpp"
+
14 
+
15 #ifdef __cpp_structured_bindings
+
16 #if __cpp_structured_bindings >= 201606L
+
17 #include <utility>
+
18 #include <cstddef>
+
19 namespace std {
+
20  template<glm::length_t L,typename T,glm::qualifier Q>
+
21  struct tuple_size<glm::vec<L, T, Q>> {
+
22  static constexpr size_t value = L;
+
23  };
+
24  template<glm::length_t C,glm::length_t R, typename T, glm::qualifier Q>
+
25  struct tuple_size<glm::mat<C,R, T, Q>> {
+
26  static constexpr size_t value = C;
+
27  };
+
28  template<typename T, glm::qualifier Q>
+
29  struct tuple_size<glm::qua<T, Q>> {
+
30  static constexpr size_t value = 4;
+
31  };
+
32  template<std::size_t I,glm::length_t L,typename T,glm::qualifier Q>
+
33  struct tuple_element<I, glm::vec<L,T,Q>>
+
34  {
+
35  GLM_STATIC_ASSERT(I < L,"Index out of bounds");
+
36  typedef T type;
+
37  };
+
38  template<std::size_t I, glm::length_t C, glm::length_t R, typename T, glm::qualifier Q>
+
39  struct tuple_element<I, glm::mat<C,R, T, Q>>
+
40  {
+
41  GLM_STATIC_ASSERT(I < C, "Index out of bounds");
+
42  typedef glm::vec<R,T,Q> type;
+
43  };
+
44  template<std::size_t I, typename T, glm::qualifier Q>
+
45  struct tuple_element<I, glm::qua<T, Q>>
+
46  {
+
47  GLM_STATIC_ASSERT(I < 4, "Index out of bounds");
+
48  typedef T type;
+
49  };
+
50 
+
51 }
+
52 #endif
+
53 #endif
+
54 
+
55 #ifndef GLM_ENABLE_EXPERIMENTAL
+
56 # error "GLM: GLM_GTX_iteration is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
57 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
58 # pragma message("GLM: GLM_GTX_io extension included")
+
59 #endif
+
60 
+
61 namespace glm
+
62 {
+
65 
+
66  template<length_t I, length_t L, typename T, qualifier Q>
+
67  GLM_FUNC_DECL GLM_CONSTEXPR T& get(vec<L, T, Q>& v);
+
68  template<length_t I, length_t L, typename T, qualifier Q>
+
69  GLM_FUNC_DECL GLM_CONSTEXPR T const& get(vec<L, T, Q> const& v);
+
70 
+
71  template<length_t I, length_t C, length_t R, typename T, qualifier Q>
+
72  GLM_FUNC_DECL GLM_CONSTEXPR vec<R, T, Q>& get(mat<C, R, T, Q>& m);
+
73  template<length_t I, length_t C, length_t R, typename T, qualifier Q>
+
74  GLM_FUNC_DECL GLM_CONSTEXPR vec<R, T, Q> const& get(mat<C, R, T, Q> const& m);
+
75 
+
76  template<length_t I, typename T, qualifier Q>
+
77  GLM_FUNC_DECL GLM_CONSTEXPR T& get(qua<T, Q>& q);
+
78  template<length_t I, typename T, qualifier Q>
+
79  GLM_FUNC_DECL GLM_CONSTEXPR T const& get(qua<T, Q> const& q);
+
80 
+
81 #if GLM_HAS_RVALUE_REFERENCES
+
82  template<length_t I, length_t L,typename T, qualifier Q>
+
83  GLM_FUNC_DECL GLM_CONSTEXPR T get(vec<L,T, Q> const&& v);
+
84  template<length_t I,length_t C,length_t R, typename T, qualifier Q>
+
85  GLM_FUNC_DECL GLM_CONSTEXPR vec<R,T,Q> get(mat<C,R,T, Q> const&& m);
+
86  template<length_t I, typename T, qualifier Q>
+
87  GLM_FUNC_DECL GLM_CONSTEXPR T get(qua<T, Q> const&& q);
+
88 #endif
+
89 }//namespace glm
+
91 
+
92 #include "structured_bindings.inl"
+
+ + + + diff --git a/include/glm/doc/api/a00743.html b/include/glm/doc/api/a00743.html new file mode 100644 index 0000000..e95b57f --- /dev/null +++ b/include/glm/doc/api/a00743.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: texture.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
texture.hpp File Reference
+
+
+ +

GLM_GTX_texture +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
levels (vec< L, T, Q > const &Extent)
 Compute the number of mipmaps levels necessary to create a mipmap complete texture. More...
 
+

Detailed Description

+

GLM_GTX_texture

+
See also
Core features (dependence)
+ +

Definition in file texture.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00743_source.html b/include/glm/doc/api/a00743_source.html new file mode 100644 index 0000000..4fa51cc --- /dev/null +++ b/include/glm/doc/api/a00743_source.html @@ -0,0 +1,106 @@ + + + + + + + +1.0.2 API documentation: texture.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
texture.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 #include "../gtc/integer.hpp"
+
18 #include "../gtx/component_wise.hpp"
+
19 
+
20 #ifndef GLM_ENABLE_EXPERIMENTAL
+
21 # error "GLM: GLM_GTX_texture is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
22 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTX_texture extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
37  template <length_t L, typename T, qualifier Q>
+
38  T levels(vec<L, T, Q> const& Extent);
+
39 
+
41 }// namespace glm
+
42 
+
43 #include "texture.inl"
+
44 
+
+
T levels(vec< L, T, Q > const &Extent)
Compute the number of mipmaps levels necessary to create a mipmap complete texture.
+ + + + diff --git a/include/glm/doc/api/a00746.html b/include/glm/doc/api/a00746.html new file mode 100644 index 0000000..f8aed9b --- /dev/null +++ b/include/glm/doc/api/a00746.html @@ -0,0 +1,115 @@ + + + + + + + +1.0.2 API documentation: transform.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
transform.hpp File Reference
+
+
+ +

GLM_GTX_transform +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rotate (T angle, vec< 3, T, Q > const &v)
 Builds a rotation 4 * 4 matrix created from an axis of 3 scalars and an angle expressed in radians. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > scale (vec< 3, T, Q > const &v)
 Transforms a matrix with a scale 4 * 4 matrix created from a vector of 3 components. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > translate (vec< 3, T, Q > const &v)
 Transforms a matrix with a translation 4 * 4 matrix created from 3 scalars. More...
 
+

Detailed Description

+

GLM_GTX_transform

+
See also
Core features (dependence)
+
+GLM_GTC_matrix_transform (dependence)
+
+GLM_GTX_transform
+
+GLM_GTX_transform2
+ +

Definition in file transform.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00746_source.html b/include/glm/doc/api/a00746_source.html new file mode 100644 index 0000000..96c84db --- /dev/null +++ b/include/glm/doc/api/a00746_source.html @@ -0,0 +1,117 @@ + + + + + + + +1.0.2 API documentation: transform.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
transform.hpp
+
+
+Go to the documentation of this file.
1 
+
16 #pragma once
+
17 
+
18 // Dependency:
+
19 #include "../glm.hpp"
+
20 #include "../gtc/matrix_transform.hpp"
+
21 
+
22 #ifndef GLM_ENABLE_EXPERIMENTAL
+
23 # error "GLM: GLM_GTX_transform is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
24 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
25 # pragma message("GLM: GLM_GTX_transform extension included")
+
26 #endif
+
27 
+
28 namespace glm
+
29 {
+
32 
+
36  template<typename T, qualifier Q>
+
37  GLM_FUNC_DECL mat<4, 4, T, Q> translate(
+
38  vec<3, T, Q> const& v);
+
39 
+
43  template<typename T, qualifier Q>
+
44  GLM_FUNC_DECL mat<4, 4, T, Q> rotate(
+
45  T angle,
+
46  vec<3, T, Q> const& v);
+
47 
+
51  template<typename T, qualifier Q>
+
52  GLM_FUNC_DECL mat<4, 4, T, Q> scale(
+
53  vec<3, T, Q> const& v);
+
54 
+
56 }// namespace glm
+
57 
+
58 #include "transform.inl"
+
+
GLM_FUNC_DECL mat< 4, 4, T, Q > rotate(T angle, vec< 3, T, Q > const &v)
Builds a rotation 4 * 4 matrix created from an axis of 3 scalars and an angle expressed in radians.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > translate(vec< 3, T, Q > const &v)
Transforms a matrix with a translation 4 * 4 matrix created from 3 scalars.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > scale(vec< 3, T, Q > const &v)
Transforms a matrix with a scale 4 * 4 matrix created from a vector of 3 components.
+ + + + diff --git a/include/glm/doc/api/a00749.html b/include/glm/doc/api/a00749.html new file mode 100644 index 0000000..6de5ab6 --- /dev/null +++ b/include/glm/doc/api/a00749.html @@ -0,0 +1,136 @@ + + + + + + + +1.0.2 API documentation: transform2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
transform2.hpp File Reference
+
+
+ +

GLM_GTX_transform2 +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > proj2D (mat< 3, 3, T, Q > const &m, vec< 3, T, Q > const &normal)
 Build planar projection matrix along normal axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > proj3D (mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &normal)
 Build planar projection matrix along normal axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > scaleBias (mat< 4, 4, T, Q > const &m, T scale, T bias)
 Build a scale bias matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > scaleBias (T scale, T bias)
 Build a scale bias matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > shearX2D (mat< 3, 3, T, Q > const &m, T y)
 Transforms a matrix with a shearing on X axis. More...
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > shearX3D (mat< 4, 4, T, Q > const &m, T y, T z)
 Transforms a matrix with a shearing on X axis From GLM_GTX_transform2 extension.
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > shearY2D (mat< 3, 3, T, Q > const &m, T x)
 Transforms a matrix with a shearing on Y axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > shearY3D (mat< 4, 4, T, Q > const &m, T x, T z)
 Transforms a matrix with a shearing on Y axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > shearZ3D (mat< 4, 4, T, Q > const &m, T x, T y)
 Transforms a matrix with a shearing on Z axis. More...
 
+

Detailed Description

+

GLM_GTX_transform2

+
See also
Core features (dependence)
+
+GLM_GTX_transform (dependence)
+ +

Definition in file transform2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00749_source.html b/include/glm/doc/api/a00749_source.html new file mode 100644 index 0000000..25174c2 --- /dev/null +++ b/include/glm/doc/api/a00749_source.html @@ -0,0 +1,144 @@ + + + + + + + +1.0.2 API documentation: transform2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
transform2.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 #include "../gtx/transform.hpp"
+
19 
+
20 #ifndef GLM_ENABLE_EXPERIMENTAL
+
21 # error "GLM: GLM_GTX_transform2 is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
22 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTX_transform2 extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
33  template<typename T, qualifier Q>
+
34  GLM_FUNC_DECL mat<3, 3, T, Q> shearX2D(mat<3, 3, T, Q> const& m, T y);
+
35 
+
38  template<typename T, qualifier Q>
+
39  GLM_FUNC_DECL mat<3, 3, T, Q> shearY2D(mat<3, 3, T, Q> const& m, T x);
+
40 
+
43  template<typename T, qualifier Q>
+
44  GLM_FUNC_DECL mat<4, 4, T, Q> shearX3D(mat<4, 4, T, Q> const& m, T y, T z);
+
45 
+
48  template<typename T, qualifier Q>
+
49  GLM_FUNC_DECL mat<4, 4, T, Q> shearY3D(mat<4, 4, T, Q> const& m, T x, T z);
+
50 
+
53  template<typename T, qualifier Q>
+
54  GLM_FUNC_DECL mat<4, 4, T, Q> shearZ3D(mat<4, 4, T, Q> const& m, T x, T y);
+
55 
+
56  //template<typename T> GLM_FUNC_QUALIFIER mat<4, 4, T, Q> shear(const mat<4, 4, T, Q> & m, shearPlane, planePoint, angle)
+
57  // Identity + tan(angle) * cross(Normal, OnPlaneVector) 0
+
58  // - dot(PointOnPlane, normal) * OnPlaneVector 1
+
59 
+
60  // Reflect functions seem to don't work
+
61  //template<typename T> mat<3, 3, T, Q> reflect2D(const mat<3, 3, T, Q> & m, const vec<3, T, Q>& normal){return reflect2DGTX(m, normal);} //!< \brief Build a reflection matrix (from GLM_GTX_transform2 extension)
+
62  //template<typename T> mat<4, 4, T, Q> reflect3D(const mat<4, 4, T, Q> & m, const vec<3, T, Q>& normal){return reflect3DGTX(m, normal);} //!< \brief Build a reflection matrix (from GLM_GTX_transform2 extension)
+
63 
+
66  template<typename T, qualifier Q>
+
67  GLM_FUNC_DECL mat<3, 3, T, Q> proj2D(mat<3, 3, T, Q> const& m, vec<3, T, Q> const& normal);
+
68 
+
71  template<typename T, qualifier Q>
+
72  GLM_FUNC_DECL mat<4, 4, T, Q> proj3D(mat<4, 4, T, Q> const & m, vec<3, T, Q> const& normal);
+
73 
+
76  template<typename T, qualifier Q>
+
77  GLM_FUNC_DECL mat<4, 4, T, Q> scaleBias(T scale, T bias);
+
78 
+
81  template<typename T, qualifier Q>
+
82  GLM_FUNC_DECL mat<4, 4, T, Q> scaleBias(mat<4, 4, T, Q> const& m, T scale, T bias);
+
83 
+
85 }// namespace glm
+
86 
+
87 #include "transform2.inl"
+
+
GLM_FUNC_DECL mat< 4, 4, T, Q > scale(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)
Builds a scale 4 * 4 matrix created from 3 scalars.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > proj3D(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &normal)
Build planar projection matrix along normal axis.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > shearX2D(mat< 3, 3, T, Q > const &m, T y)
Transforms a matrix with a shearing on X axis.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > shearY2D(mat< 3, 3, T, Q > const &m, T x)
Transforms a matrix with a shearing on Y axis.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > shearX3D(mat< 4, 4, T, Q > const &m, T y, T z)
Transforms a matrix with a shearing on X axis From GLM_GTX_transform2 extension.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > proj2D(mat< 3, 3, T, Q > const &m, vec< 3, T, Q > const &normal)
Build planar projection matrix along normal axis.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > scaleBias(mat< 4, 4, T, Q > const &m, T scale, T bias)
Build a scale bias matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > shearZ3D(mat< 4, 4, T, Q > const &m, T x, T y)
Transforms a matrix with a shearing on Z axis.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > shearY3D(mat< 4, 4, T, Q > const &m, T x, T z)
Transforms a matrix with a shearing on Y axis.
+ + + + diff --git a/include/glm/doc/api/a00752.html b/include/glm/doc/api/a00752.html new file mode 100644 index 0000000..4f92f50 --- /dev/null +++ b/include/glm/doc/api/a00752.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: type_trait.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_trait.hpp File Reference
+
+
+ +

GLM_GTX_type_trait +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTX_type_trait

+
See also
Core features (dependence)
+ +

Definition in file type_trait.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00752_source.html b/include/glm/doc/api/a00752_source.html new file mode 100644 index 0000000..983884c --- /dev/null +++ b/include/glm/doc/api/a00752_source.html @@ -0,0 +1,150 @@ + + + + + + + +1.0.2 API documentation: type_trait.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
type_trait.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #ifndef GLM_ENABLE_EXPERIMENTAL
+
16 # error "GLM: GLM_GTX_type_trait is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
17 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
18 # pragma message("GLM: GLM_GTX_type_trait extension included")
+
19 #endif
+
20 
+
21 // Dependency:
+
22 #include "../detail/qualifier.hpp"
+
23 #include "../gtc/quaternion.hpp"
+
24 #include "../gtx/dual_quaternion.hpp"
+
25 
+
26 namespace glm
+
27 {
+
30 
+
31  template<typename T>
+
32  struct type
+
33  {
+
34  static bool const is_vec = false;
+
35  static bool const is_mat = false;
+
36  static bool const is_quat = false;
+
37  static length_t const components = 0;
+
38  static length_t const cols = 0;
+
39  static length_t const rows = 0;
+
40  };
+
41 
+
42  template<length_t L, typename T, qualifier Q>
+
43  struct type<vec<L, T, Q> >
+
44  {
+
45  static bool const is_vec = true;
+
46  static bool const is_mat = false;
+
47  static bool const is_quat = false;
+
48  static length_t const components = L;
+
49  };
+
50 
+
51  template<length_t C, length_t R, typename T, qualifier Q>
+
52  struct type<mat<C, R, T, Q> >
+
53  {
+
54  static bool const is_vec = false;
+
55  static bool const is_mat = true;
+
56  static bool const is_quat = false;
+
57  static length_t const components = C;
+
58  static length_t const cols = C;
+
59  static length_t const rows = R;
+
60  };
+
61 
+
62  template<typename T, qualifier Q>
+
63  struct type<qua<T, Q> >
+
64  {
+
65  static bool const is_vec = false;
+
66  static bool const is_mat = false;
+
67  static bool const is_quat = true;
+
68  static length_t const components = 4;
+
69  };
+
70 
+
71  template<typename T, qualifier Q>
+
72  struct type<tdualquat<T, Q> >
+
73  {
+
74  static bool const is_vec = false;
+
75  static bool const is_mat = false;
+
76  static bool const is_quat = true;
+
77  static length_t const components = 8;
+
78  };
+
79 
+
81 }//namespace glm
+
82 
+
83 #include "type_trait.inl"
+
+ + + + diff --git a/include/glm/doc/api/a00755.html b/include/glm/doc/api/a00755.html new file mode 100644 index 0000000..d3fe0eb --- /dev/null +++ b/include/glm/doc/api/a00755.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: vec_swizzle.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec_swizzle.hpp File Reference
+
+
+ +

GLM_GTX_vec_swizzle +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTX_vec_swizzle

+
See also
Core features (dependence)
+ +

Definition in file vec_swizzle.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00755_source.html b/include/glm/doc/api/a00755_source.html new file mode 100644 index 0000000..4dee2bb --- /dev/null +++ b/include/glm/doc/api/a00755_source.html @@ -0,0 +1,2836 @@ + + + + + + + +1.0.2 API documentation: vec_swizzle.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec_swizzle.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #include "../glm.hpp"
+
16 
+
17 #ifndef GLM_ENABLE_EXPERIMENTAL
+
18 # error "GLM: GLM_GTX_vec_swizzle is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
19 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_GTX_vec_swizzle extension included")
+
21 #endif
+
22 
+
23 namespace glm {
+
26 
+
27  // xx
+
28  template<typename T, qualifier Q>
+
29  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xx(const glm::vec<1, T, Q> &v) {
+
30  return glm::vec<2, T, Q>(v.x, v.x);
+
31  }
+
32 
+
33  template<typename T, qualifier Q>
+
34  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xx(const glm::vec<2, T, Q> &v) {
+
35  return glm::vec<2, T, Q>(v.x, v.x);
+
36  }
+
37 
+
38  template<typename T, qualifier Q>
+
39  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xx(const glm::vec<3, T, Q> &v) {
+
40  return glm::vec<2, T, Q>(v.x, v.x);
+
41  }
+
42 
+
43  template<typename T, qualifier Q>
+
44  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xx(const glm::vec<4, T, Q> &v) {
+
45  return glm::vec<2, T, Q>(v.x, v.x);
+
46  }
+
47 
+
48  // xy
+
49  template<typename T, qualifier Q>
+
50  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xy(const glm::vec<2, T, Q> &v) {
+
51  return glm::vec<2, T, Q>(v.x, v.y);
+
52  }
+
53 
+
54  template<typename T, qualifier Q>
+
55  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xy(const glm::vec<3, T, Q> &v) {
+
56  return glm::vec<2, T, Q>(v.x, v.y);
+
57  }
+
58 
+
59  template<typename T, qualifier Q>
+
60  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xy(const glm::vec<4, T, Q> &v) {
+
61  return glm::vec<2, T, Q>(v.x, v.y);
+
62  }
+
63 
+
64  // xz
+
65  template<typename T, qualifier Q>
+
66  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xz(const glm::vec<3, T, Q> &v) {
+
67  return glm::vec<2, T, Q>(v.x, v.z);
+
68  }
+
69 
+
70  template<typename T, qualifier Q>
+
71  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xz(const glm::vec<4, T, Q> &v) {
+
72  return glm::vec<2, T, Q>(v.x, v.z);
+
73  }
+
74 
+
75  // xw
+
76  template<typename T, qualifier Q>
+
77  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> xw(const glm::vec<4, T, Q> &v) {
+
78  return glm::vec<2, T, Q>(v.x, v.w);
+
79  }
+
80 
+
81  // yx
+
82  template<typename T, qualifier Q>
+
83  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> yx(const glm::vec<2, T, Q> &v) {
+
84  return glm::vec<2, T, Q>(v.y, v.x);
+
85  }
+
86 
+
87  template<typename T, qualifier Q>
+
88  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> yx(const glm::vec<3, T, Q> &v) {
+
89  return glm::vec<2, T, Q>(v.y, v.x);
+
90  }
+
91 
+
92  template<typename T, qualifier Q>
+
93  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> yx(const glm::vec<4, T, Q> &v) {
+
94  return glm::vec<2, T, Q>(v.y, v.x);
+
95  }
+
96 
+
97  // yy
+
98  template<typename T, qualifier Q>
+
99  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> yy(const glm::vec<2, T, Q> &v) {
+
100  return glm::vec<2, T, Q>(v.y, v.y);
+
101  }
+
102 
+
103  template<typename T, qualifier Q>
+
104  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> yy(const glm::vec<3, T, Q> &v) {
+
105  return glm::vec<2, T, Q>(v.y, v.y);
+
106  }
+
107 
+
108  template<typename T, qualifier Q>
+
109  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> yy(const glm::vec<4, T, Q> &v) {
+
110  return glm::vec<2, T, Q>(v.y, v.y);
+
111  }
+
112 
+
113  // yz
+
114  template<typename T, qualifier Q>
+
115  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> yz(const glm::vec<3, T, Q> &v) {
+
116  return glm::vec<2, T, Q>(v.y, v.z);
+
117  }
+
118 
+
119  template<typename T, qualifier Q>
+
120  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> yz(const glm::vec<4, T, Q> &v) {
+
121  return glm::vec<2, T, Q>(v.y, v.z);
+
122  }
+
123 
+
124  // yw
+
125  template<typename T, qualifier Q>
+
126  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> yw(const glm::vec<4, T, Q> &v) {
+
127  return glm::vec<2, T, Q>(v.y, v.w);
+
128  }
+
129 
+
130  // zx
+
131  template<typename T, qualifier Q>
+
132  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> zx(const glm::vec<3, T, Q> &v) {
+
133  return glm::vec<2, T, Q>(v.z, v.x);
+
134  }
+
135 
+
136  template<typename T, qualifier Q>
+
137  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> zx(const glm::vec<4, T, Q> &v) {
+
138  return glm::vec<2, T, Q>(v.z, v.x);
+
139  }
+
140 
+
141  // zy
+
142  template<typename T, qualifier Q>
+
143  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> zy(const glm::vec<3, T, Q> &v) {
+
144  return glm::vec<2, T, Q>(v.z, v.y);
+
145  }
+
146 
+
147  template<typename T, qualifier Q>
+
148  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> zy(const glm::vec<4, T, Q> &v) {
+
149  return glm::vec<2, T, Q>(v.z, v.y);
+
150  }
+
151 
+
152  // zz
+
153  template<typename T, qualifier Q>
+
154  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> zz(const glm::vec<3, T, Q> &v) {
+
155  return glm::vec<2, T, Q>(v.z, v.z);
+
156  }
+
157 
+
158  template<typename T, qualifier Q>
+
159  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> zz(const glm::vec<4, T, Q> &v) {
+
160  return glm::vec<2, T, Q>(v.z, v.z);
+
161  }
+
162 
+
163  // zw
+
164  template<typename T, qualifier Q>
+
165  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> zw(const glm::vec<4, T, Q> &v) {
+
166  return glm::vec<2, T, Q>(v.z, v.w);
+
167  }
+
168 
+
169  // wx
+
170  template<typename T, qualifier Q>
+
171  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> wx(const glm::vec<4, T, Q> &v) {
+
172  return glm::vec<2, T, Q>(v.w, v.x);
+
173  }
+
174 
+
175  // wy
+
176  template<typename T, qualifier Q>
+
177  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> wy(const glm::vec<4, T, Q> &v) {
+
178  return glm::vec<2, T, Q>(v.w, v.y);
+
179  }
+
180 
+
181  // wz
+
182  template<typename T, qualifier Q>
+
183  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> wz(const glm::vec<4, T, Q> &v) {
+
184  return glm::vec<2, T, Q>(v.w, v.z);
+
185  }
+
186 
+
187  // ww
+
188  template<typename T, qualifier Q>
+
189  GLM_FUNC_QUALIFIER glm::vec<2, T, Q> ww(const glm::vec<4, T, Q> &v) {
+
190  return glm::vec<2, T, Q>(v.w, v.w);
+
191  }
+
192 
+
193  // xxx
+
194  template<typename T, qualifier Q>
+
195  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxx(const glm::vec<1, T, Q> &v) {
+
196  return glm::vec<3, T, Q>(v.x, v.x, v.x);
+
197  }
+
198 
+
199  template<typename T, qualifier Q>
+
200  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxx(const glm::vec<2, T, Q> &v) {
+
201  return glm::vec<3, T, Q>(v.x, v.x, v.x);
+
202  }
+
203 
+
204  template<typename T, qualifier Q>
+
205  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxx(const glm::vec<3, T, Q> &v) {
+
206  return glm::vec<3, T, Q>(v.x, v.x, v.x);
+
207  }
+
208 
+
209  template<typename T, qualifier Q>
+
210  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxx(const glm::vec<4, T, Q> &v) {
+
211  return glm::vec<3, T, Q>(v.x, v.x, v.x);
+
212  }
+
213 
+
214  // xxy
+
215  template<typename T, qualifier Q>
+
216  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxy(const glm::vec<2, T, Q> &v) {
+
217  return glm::vec<3, T, Q>(v.x, v.x, v.y);
+
218  }
+
219 
+
220  template<typename T, qualifier Q>
+
221  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxy(const glm::vec<3, T, Q> &v) {
+
222  return glm::vec<3, T, Q>(v.x, v.x, v.y);
+
223  }
+
224 
+
225  template<typename T, qualifier Q>
+
226  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxy(const glm::vec<4, T, Q> &v) {
+
227  return glm::vec<3, T, Q>(v.x, v.x, v.y);
+
228  }
+
229 
+
230  // xxz
+
231  template<typename T, qualifier Q>
+
232  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxz(const glm::vec<3, T, Q> &v) {
+
233  return glm::vec<3, T, Q>(v.x, v.x, v.z);
+
234  }
+
235 
+
236  template<typename T, qualifier Q>
+
237  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxz(const glm::vec<4, T, Q> &v) {
+
238  return glm::vec<3, T, Q>(v.x, v.x, v.z);
+
239  }
+
240 
+
241  // xxw
+
242  template<typename T, qualifier Q>
+
243  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xxw(const glm::vec<4, T, Q> &v) {
+
244  return glm::vec<3, T, Q>(v.x, v.x, v.w);
+
245  }
+
246 
+
247  // xyx
+
248  template<typename T, qualifier Q>
+
249  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xyx(const glm::vec<2, T, Q> &v) {
+
250  return glm::vec<3, T, Q>(v.x, v.y, v.x);
+
251  }
+
252 
+
253  template<typename T, qualifier Q>
+
254  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xyx(const glm::vec<3, T, Q> &v) {
+
255  return glm::vec<3, T, Q>(v.x, v.y, v.x);
+
256  }
+
257 
+
258  template<typename T, qualifier Q>
+
259  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xyx(const glm::vec<4, T, Q> &v) {
+
260  return glm::vec<3, T, Q>(v.x, v.y, v.x);
+
261  }
+
262 
+
263  // xyy
+
264  template<typename T, qualifier Q>
+
265  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xyy(const glm::vec<2, T, Q> &v) {
+
266  return glm::vec<3, T, Q>(v.x, v.y, v.y);
+
267  }
+
268 
+
269  template<typename T, qualifier Q>
+
270  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xyy(const glm::vec<3, T, Q> &v) {
+
271  return glm::vec<3, T, Q>(v.x, v.y, v.y);
+
272  }
+
273 
+
274  template<typename T, qualifier Q>
+
275  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xyy(const glm::vec<4, T, Q> &v) {
+
276  return glm::vec<3, T, Q>(v.x, v.y, v.y);
+
277  }
+
278 
+
279  // xyz
+
280  template<typename T, qualifier Q>
+
281  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xyz(const glm::vec<3, T, Q> &v) {
+
282  return glm::vec<3, T, Q>(v.x, v.y, v.z);
+
283  }
+
284 
+
285  // xyw
+
286  template<typename T, qualifier Q>
+
287  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xyw(const glm::vec<4, T, Q> &v) {
+
288  return glm::vec<3, T, Q>(v.x, v.y, v.w);
+
289  }
+
290 
+
291  // xzx
+
292  template<typename T, qualifier Q>
+
293  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xzx(const glm::vec<3, T, Q> &v) {
+
294  return glm::vec<3, T, Q>(v.x, v.z, v.x);
+
295  }
+
296 
+
297  template<typename T, qualifier Q>
+
298  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xzx(const glm::vec<4, T, Q> &v) {
+
299  return glm::vec<3, T, Q>(v.x, v.z, v.x);
+
300  }
+
301 
+
302  // xzy
+
303  template<typename T, qualifier Q>
+
304  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xzy(const glm::vec<3, T, Q> &v) {
+
305  return glm::vec<3, T, Q>(v.x, v.z, v.y);
+
306  }
+
307 
+
308  template<typename T, qualifier Q>
+
309  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xzy(const glm::vec<4, T, Q> &v) {
+
310  return glm::vec<3, T, Q>(v.x, v.z, v.y);
+
311  }
+
312 
+
313  // xzz
+
314  template<typename T, qualifier Q>
+
315  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xzz(const glm::vec<3, T, Q> &v) {
+
316  return glm::vec<3, T, Q>(v.x, v.z, v.z);
+
317  }
+
318 
+
319  template<typename T, qualifier Q>
+
320  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xzz(const glm::vec<4, T, Q> &v) {
+
321  return glm::vec<3, T, Q>(v.x, v.z, v.z);
+
322  }
+
323 
+
324  // xzw
+
325  template<typename T, qualifier Q>
+
326  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xzw(const glm::vec<4, T, Q> &v) {
+
327  return glm::vec<3, T, Q>(v.x, v.z, v.w);
+
328  }
+
329 
+
330  // xwx
+
331  template<typename T, qualifier Q>
+
332  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xwx(const glm::vec<4, T, Q> &v) {
+
333  return glm::vec<3, T, Q>(v.x, v.w, v.x);
+
334  }
+
335 
+
336  // xwy
+
337  template<typename T, qualifier Q>
+
338  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xwy(const glm::vec<4, T, Q> &v) {
+
339  return glm::vec<3, T, Q>(v.x, v.w, v.y);
+
340  }
+
341 
+
342  // xwz
+
343  template<typename T, qualifier Q>
+
344  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xwz(const glm::vec<4, T, Q> &v) {
+
345  return glm::vec<3, T, Q>(v.x, v.w, v.z);
+
346  }
+
347 
+
348  // xww
+
349  template<typename T, qualifier Q>
+
350  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> xww(const glm::vec<4, T, Q> &v) {
+
351  return glm::vec<3, T, Q>(v.x, v.w, v.w);
+
352  }
+
353 
+
354  // yxx
+
355  template<typename T, qualifier Q>
+
356  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yxx(const glm::vec<2, T, Q> &v) {
+
357  return glm::vec<3, T, Q>(v.y, v.x, v.x);
+
358  }
+
359 
+
360  template<typename T, qualifier Q>
+
361  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yxx(const glm::vec<3, T, Q> &v) {
+
362  return glm::vec<3, T, Q>(v.y, v.x, v.x);
+
363  }
+
364 
+
365  template<typename T, qualifier Q>
+
366  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yxx(const glm::vec<4, T, Q> &v) {
+
367  return glm::vec<3, T, Q>(v.y, v.x, v.x);
+
368  }
+
369 
+
370  // yxy
+
371  template<typename T, qualifier Q>
+
372  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yxy(const glm::vec<2, T, Q> &v) {
+
373  return glm::vec<3, T, Q>(v.y, v.x, v.y);
+
374  }
+
375 
+
376  template<typename T, qualifier Q>
+
377  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yxy(const glm::vec<3, T, Q> &v) {
+
378  return glm::vec<3, T, Q>(v.y, v.x, v.y);
+
379  }
+
380 
+
381  template<typename T, qualifier Q>
+
382  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yxy(const glm::vec<4, T, Q> &v) {
+
383  return glm::vec<3, T, Q>(v.y, v.x, v.y);
+
384  }
+
385 
+
386  // yxz
+
387  template<typename T, qualifier Q>
+
388  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yxz(const glm::vec<3, T, Q> &v) {
+
389  return glm::vec<3, T, Q>(v.y, v.x, v.z);
+
390  }
+
391 
+
392  template<typename T, qualifier Q>
+
393  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yxz(const glm::vec<4, T, Q> &v) {
+
394  return glm::vec<3, T, Q>(v.y, v.x, v.z);
+
395  }
+
396 
+
397  // yxw
+
398  template<typename T, qualifier Q>
+
399  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yxw(const glm::vec<4, T, Q> &v) {
+
400  return glm::vec<3, T, Q>(v.y, v.x, v.w);
+
401  }
+
402 
+
403  // yyx
+
404  template<typename T, qualifier Q>
+
405  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yyx(const glm::vec<2, T, Q> &v) {
+
406  return glm::vec<3, T, Q>(v.y, v.y, v.x);
+
407  }
+
408 
+
409  template<typename T, qualifier Q>
+
410  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yyx(const glm::vec<3, T, Q> &v) {
+
411  return glm::vec<3, T, Q>(v.y, v.y, v.x);
+
412  }
+
413 
+
414  template<typename T, qualifier Q>
+
415  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yyx(const glm::vec<4, T, Q> &v) {
+
416  return glm::vec<3, T, Q>(v.y, v.y, v.x);
+
417  }
+
418 
+
419  // yyy
+
420  template<typename T, qualifier Q>
+
421  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yyy(const glm::vec<2, T, Q> &v) {
+
422  return glm::vec<3, T, Q>(v.y, v.y, v.y);
+
423  }
+
424 
+
425  template<typename T, qualifier Q>
+
426  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yyy(const glm::vec<3, T, Q> &v) {
+
427  return glm::vec<3, T, Q>(v.y, v.y, v.y);
+
428  }
+
429 
+
430  template<typename T, qualifier Q>
+
431  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yyy(const glm::vec<4, T, Q> &v) {
+
432  return glm::vec<3, T, Q>(v.y, v.y, v.y);
+
433  }
+
434 
+
435  // yyz
+
436  template<typename T, qualifier Q>
+
437  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yyz(const glm::vec<3, T, Q> &v) {
+
438  return glm::vec<3, T, Q>(v.y, v.y, v.z);
+
439  }
+
440 
+
441  template<typename T, qualifier Q>
+
442  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yyz(const glm::vec<4, T, Q> &v) {
+
443  return glm::vec<3, T, Q>(v.y, v.y, v.z);
+
444  }
+
445 
+
446  // yyw
+
447  template<typename T, qualifier Q>
+
448  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yyw(const glm::vec<4, T, Q> &v) {
+
449  return glm::vec<3, T, Q>(v.y, v.y, v.w);
+
450  }
+
451 
+
452  // yzx
+
453  template<typename T, qualifier Q>
+
454  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yzx(const glm::vec<3, T, Q> &v) {
+
455  return glm::vec<3, T, Q>(v.y, v.z, v.x);
+
456  }
+
457 
+
458  template<typename T, qualifier Q>
+
459  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yzx(const glm::vec<4, T, Q> &v) {
+
460  return glm::vec<3, T, Q>(v.y, v.z, v.x);
+
461  }
+
462 
+
463  // yzy
+
464  template<typename T, qualifier Q>
+
465  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yzy(const glm::vec<3, T, Q> &v) {
+
466  return glm::vec<3, T, Q>(v.y, v.z, v.y);
+
467  }
+
468 
+
469  template<typename T, qualifier Q>
+
470  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yzy(const glm::vec<4, T, Q> &v) {
+
471  return glm::vec<3, T, Q>(v.y, v.z, v.y);
+
472  }
+
473 
+
474  // yzz
+
475  template<typename T, qualifier Q>
+
476  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yzz(const glm::vec<3, T, Q> &v) {
+
477  return glm::vec<3, T, Q>(v.y, v.z, v.z);
+
478  }
+
479 
+
480  template<typename T, qualifier Q>
+
481  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yzz(const glm::vec<4, T, Q> &v) {
+
482  return glm::vec<3, T, Q>(v.y, v.z, v.z);
+
483  }
+
484 
+
485  // yzw
+
486  template<typename T, qualifier Q>
+
487  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yzw(const glm::vec<4, T, Q> &v) {
+
488  return glm::vec<3, T, Q>(v.y, v.z, v.w);
+
489  }
+
490 
+
491  // ywx
+
492  template<typename T, qualifier Q>
+
493  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> ywx(const glm::vec<4, T, Q> &v) {
+
494  return glm::vec<3, T, Q>(v.y, v.w, v.x);
+
495  }
+
496 
+
497  // ywy
+
498  template<typename T, qualifier Q>
+
499  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> ywy(const glm::vec<4, T, Q> &v) {
+
500  return glm::vec<3, T, Q>(v.y, v.w, v.y);
+
501  }
+
502 
+
503  // ywz
+
504  template<typename T, qualifier Q>
+
505  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> ywz(const glm::vec<4, T, Q> &v) {
+
506  return glm::vec<3, T, Q>(v.y, v.w, v.z);
+
507  }
+
508 
+
509  // yww
+
510  template<typename T, qualifier Q>
+
511  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> yww(const glm::vec<4, T, Q> &v) {
+
512  return glm::vec<3, T, Q>(v.y, v.w, v.w);
+
513  }
+
514 
+
515  // zxx
+
516  template<typename T, qualifier Q>
+
517  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zxx(const glm::vec<3, T, Q> &v) {
+
518  return glm::vec<3, T, Q>(v.z, v.x, v.x);
+
519  }
+
520 
+
521  template<typename T, qualifier Q>
+
522  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zxx(const glm::vec<4, T, Q> &v) {
+
523  return glm::vec<3, T, Q>(v.z, v.x, v.x);
+
524  }
+
525 
+
526  // zxy
+
527  template<typename T, qualifier Q>
+
528  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zxy(const glm::vec<3, T, Q> &v) {
+
529  return glm::vec<3, T, Q>(v.z, v.x, v.y);
+
530  }
+
531 
+
532  template<typename T, qualifier Q>
+
533  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zxy(const glm::vec<4, T, Q> &v) {
+
534  return glm::vec<3, T, Q>(v.z, v.x, v.y);
+
535  }
+
536 
+
537  // zxz
+
538  template<typename T, qualifier Q>
+
539  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zxz(const glm::vec<3, T, Q> &v) {
+
540  return glm::vec<3, T, Q>(v.z, v.x, v.z);
+
541  }
+
542 
+
543  template<typename T, qualifier Q>
+
544  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zxz(const glm::vec<4, T, Q> &v) {
+
545  return glm::vec<3, T, Q>(v.z, v.x, v.z);
+
546  }
+
547 
+
548  // zxw
+
549  template<typename T, qualifier Q>
+
550  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zxw(const glm::vec<4, T, Q> &v) {
+
551  return glm::vec<3, T, Q>(v.z, v.x, v.w);
+
552  }
+
553 
+
554  // zyx
+
555  template<typename T, qualifier Q>
+
556  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zyx(const glm::vec<3, T, Q> &v) {
+
557  return glm::vec<3, T, Q>(v.z, v.y, v.x);
+
558  }
+
559 
+
560  template<typename T, qualifier Q>
+
561  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zyx(const glm::vec<4, T, Q> &v) {
+
562  return glm::vec<3, T, Q>(v.z, v.y, v.x);
+
563  }
+
564 
+
565  // zyy
+
566  template<typename T, qualifier Q>
+
567  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zyy(const glm::vec<3, T, Q> &v) {
+
568  return glm::vec<3, T, Q>(v.z, v.y, v.y);
+
569  }
+
570 
+
571  template<typename T, qualifier Q>
+
572  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zyy(const glm::vec<4, T, Q> &v) {
+
573  return glm::vec<3, T, Q>(v.z, v.y, v.y);
+
574  }
+
575 
+
576  // zyz
+
577  template<typename T, qualifier Q>
+
578  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zyz(const glm::vec<3, T, Q> &v) {
+
579  return glm::vec<3, T, Q>(v.z, v.y, v.z);
+
580  }
+
581 
+
582  template<typename T, qualifier Q>
+
583  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zyz(const glm::vec<4, T, Q> &v) {
+
584  return glm::vec<3, T, Q>(v.z, v.y, v.z);
+
585  }
+
586 
+
587  // zyw
+
588  template<typename T, qualifier Q>
+
589  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zyw(const glm::vec<4, T, Q> &v) {
+
590  return glm::vec<3, T, Q>(v.z, v.y, v.w);
+
591  }
+
592 
+
593  // zzx
+
594  template<typename T, qualifier Q>
+
595  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zzx(const glm::vec<3, T, Q> &v) {
+
596  return glm::vec<3, T, Q>(v.z, v.z, v.x);
+
597  }
+
598 
+
599  template<typename T, qualifier Q>
+
600  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zzx(const glm::vec<4, T, Q> &v) {
+
601  return glm::vec<3, T, Q>(v.z, v.z, v.x);
+
602  }
+
603 
+
604  // zzy
+
605  template<typename T, qualifier Q>
+
606  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zzy(const glm::vec<3, T, Q> &v) {
+
607  return glm::vec<3, T, Q>(v.z, v.z, v.y);
+
608  }
+
609 
+
610  template<typename T, qualifier Q>
+
611  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zzy(const glm::vec<4, T, Q> &v) {
+
612  return glm::vec<3, T, Q>(v.z, v.z, v.y);
+
613  }
+
614 
+
615  // zzz
+
616  template<typename T, qualifier Q>
+
617  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zzz(const glm::vec<3, T, Q> &v) {
+
618  return glm::vec<3, T, Q>(v.z, v.z, v.z);
+
619  }
+
620 
+
621  template<typename T, qualifier Q>
+
622  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zzz(const glm::vec<4, T, Q> &v) {
+
623  return glm::vec<3, T, Q>(v.z, v.z, v.z);
+
624  }
+
625 
+
626  // zzw
+
627  template<typename T, qualifier Q>
+
628  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zzw(const glm::vec<4, T, Q> &v) {
+
629  return glm::vec<3, T, Q>(v.z, v.z, v.w);
+
630  }
+
631 
+
632  // zwx
+
633  template<typename T, qualifier Q>
+
634  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zwx(const glm::vec<4, T, Q> &v) {
+
635  return glm::vec<3, T, Q>(v.z, v.w, v.x);
+
636  }
+
637 
+
638  // zwy
+
639  template<typename T, qualifier Q>
+
640  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zwy(const glm::vec<4, T, Q> &v) {
+
641  return glm::vec<3, T, Q>(v.z, v.w, v.y);
+
642  }
+
643 
+
644  // zwz
+
645  template<typename T, qualifier Q>
+
646  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zwz(const glm::vec<4, T, Q> &v) {
+
647  return glm::vec<3, T, Q>(v.z, v.w, v.z);
+
648  }
+
649 
+
650  // zww
+
651  template<typename T, qualifier Q>
+
652  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> zww(const glm::vec<4, T, Q> &v) {
+
653  return glm::vec<3, T, Q>(v.z, v.w, v.w);
+
654  }
+
655 
+
656  // wxx
+
657  template<typename T, qualifier Q>
+
658  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wxx(const glm::vec<4, T, Q> &v) {
+
659  return glm::vec<3, T, Q>(v.w, v.x, v.x);
+
660  }
+
661 
+
662  // wxy
+
663  template<typename T, qualifier Q>
+
664  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wxy(const glm::vec<4, T, Q> &v) {
+
665  return glm::vec<3, T, Q>(v.w, v.x, v.y);
+
666  }
+
667 
+
668  // wxz
+
669  template<typename T, qualifier Q>
+
670  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wxz(const glm::vec<4, T, Q> &v) {
+
671  return glm::vec<3, T, Q>(v.w, v.x, v.z);
+
672  }
+
673 
+
674  // wxw
+
675  template<typename T, qualifier Q>
+
676  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wxw(const glm::vec<4, T, Q> &v) {
+
677  return glm::vec<3, T, Q>(v.w, v.x, v.w);
+
678  }
+
679 
+
680  // wyx
+
681  template<typename T, qualifier Q>
+
682  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wyx(const glm::vec<4, T, Q> &v) {
+
683  return glm::vec<3, T, Q>(v.w, v.y, v.x);
+
684  }
+
685 
+
686  // wyy
+
687  template<typename T, qualifier Q>
+
688  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wyy(const glm::vec<4, T, Q> &v) {
+
689  return glm::vec<3, T, Q>(v.w, v.y, v.y);
+
690  }
+
691 
+
692  // wyz
+
693  template<typename T, qualifier Q>
+
694  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wyz(const glm::vec<4, T, Q> &v) {
+
695  return glm::vec<3, T, Q>(v.w, v.y, v.z);
+
696  }
+
697 
+
698  // wyw
+
699  template<typename T, qualifier Q>
+
700  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wyw(const glm::vec<4, T, Q> &v) {
+
701  return glm::vec<3, T, Q>(v.w, v.y, v.w);
+
702  }
+
703 
+
704  // wzx
+
705  template<typename T, qualifier Q>
+
706  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wzx(const glm::vec<4, T, Q> &v) {
+
707  return glm::vec<3, T, Q>(v.w, v.z, v.x);
+
708  }
+
709 
+
710  // wzy
+
711  template<typename T, qualifier Q>
+
712  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wzy(const glm::vec<4, T, Q> &v) {
+
713  return glm::vec<3, T, Q>(v.w, v.z, v.y);
+
714  }
+
715 
+
716  // wzz
+
717  template<typename T, qualifier Q>
+
718  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wzz(const glm::vec<4, T, Q> &v) {
+
719  return glm::vec<3, T, Q>(v.w, v.z, v.z);
+
720  }
+
721 
+
722  // wzw
+
723  template<typename T, qualifier Q>
+
724  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wzw(const glm::vec<4, T, Q> &v) {
+
725  return glm::vec<3, T, Q>(v.w, v.z, v.w);
+
726  }
+
727 
+
728  // wwx
+
729  template<typename T, qualifier Q>
+
730  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wwx(const glm::vec<4, T, Q> &v) {
+
731  return glm::vec<3, T, Q>(v.w, v.w, v.x);
+
732  }
+
733 
+
734  // wwy
+
735  template<typename T, qualifier Q>
+
736  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wwy(const glm::vec<4, T, Q> &v) {
+
737  return glm::vec<3, T, Q>(v.w, v.w, v.y);
+
738  }
+
739 
+
740  // wwz
+
741  template<typename T, qualifier Q>
+
742  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> wwz(const glm::vec<4, T, Q> &v) {
+
743  return glm::vec<3, T, Q>(v.w, v.w, v.z);
+
744  }
+
745 
+
746  // www
+
747  template<typename T, qualifier Q>
+
748  GLM_FUNC_QUALIFIER glm::vec<3, T, Q> www(const glm::vec<4, T, Q> &v) {
+
749  return glm::vec<3, T, Q>(v.w, v.w, v.w);
+
750  }
+
751 
+
752  // xxxx
+
753  template<typename T, qualifier Q>
+
754  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxx(const glm::vec<1, T, Q> &v) {
+
755  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.x);
+
756  }
+
757 
+
758  template<typename T, qualifier Q>
+
759  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxx(const glm::vec<2, T, Q> &v) {
+
760  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.x);
+
761  }
+
762 
+
763  template<typename T, qualifier Q>
+
764  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxx(const glm::vec<3, T, Q> &v) {
+
765  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.x);
+
766  }
+
767 
+
768  template<typename T, qualifier Q>
+
769  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxx(const glm::vec<4, T, Q> &v) {
+
770  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.x);
+
771  }
+
772 
+
773  // xxxy
+
774  template<typename T, qualifier Q>
+
775  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxy(const glm::vec<2, T, Q> &v) {
+
776  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.y);
+
777  }
+
778 
+
779  template<typename T, qualifier Q>
+
780  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxy(const glm::vec<3, T, Q> &v) {
+
781  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.y);
+
782  }
+
783 
+
784  template<typename T, qualifier Q>
+
785  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxy(const glm::vec<4, T, Q> &v) {
+
786  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.y);
+
787  }
+
788 
+
789  // xxxz
+
790  template<typename T, qualifier Q>
+
791  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxz(const glm::vec<3, T, Q> &v) {
+
792  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.z);
+
793  }
+
794 
+
795  template<typename T, qualifier Q>
+
796  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxz(const glm::vec<4, T, Q> &v) {
+
797  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.z);
+
798  }
+
799 
+
800  // xxxw
+
801  template<typename T, qualifier Q>
+
802  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxxw(const glm::vec<4, T, Q> &v) {
+
803  return glm::vec<4, T, Q>(v.x, v.x, v.x, v.w);
+
804  }
+
805 
+
806  // xxyx
+
807  template<typename T, qualifier Q>
+
808  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxyx(const glm::vec<2, T, Q> &v) {
+
809  return glm::vec<4, T, Q>(v.x, v.x, v.y, v.x);
+
810  }
+
811 
+
812  template<typename T, qualifier Q>
+
813  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxyx(const glm::vec<3, T, Q> &v) {
+
814  return glm::vec<4, T, Q>(v.x, v.x, v.y, v.x);
+
815  }
+
816 
+
817  template<typename T, qualifier Q>
+
818  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxyx(const glm::vec<4, T, Q> &v) {
+
819  return glm::vec<4, T, Q>(v.x, v.x, v.y, v.x);
+
820  }
+
821 
+
822  // xxyy
+
823  template<typename T, qualifier Q>
+
824  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxyy(const glm::vec<2, T, Q> &v) {
+
825  return glm::vec<4, T, Q>(v.x, v.x, v.y, v.y);
+
826  }
+
827 
+
828  template<typename T, qualifier Q>
+
829  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxyy(const glm::vec<3, T, Q> &v) {
+
830  return glm::vec<4, T, Q>(v.x, v.x, v.y, v.y);
+
831  }
+
832 
+
833  template<typename T, qualifier Q>
+
834  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxyy(const glm::vec<4, T, Q> &v) {
+
835  return glm::vec<4, T, Q>(v.x, v.x, v.y, v.y);
+
836  }
+
837 
+
838  // xxyz
+
839  template<typename T, qualifier Q>
+
840  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxyz(const glm::vec<3, T, Q> &v) {
+
841  return glm::vec<4, T, Q>(v.x, v.x, v.y, v.z);
+
842  }
+
843 
+
844  template<typename T, qualifier Q>
+
845  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxyz(const glm::vec<4, T, Q> &v) {
+
846  return glm::vec<4, T, Q>(v.x, v.x, v.y, v.z);
+
847  }
+
848 
+
849  // xxyw
+
850  template<typename T, qualifier Q>
+
851  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxyw(const glm::vec<4, T, Q> &v) {
+
852  return glm::vec<4, T, Q>(v.x, v.x, v.y, v.w);
+
853  }
+
854 
+
855  // xxzx
+
856  template<typename T, qualifier Q>
+
857  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxzx(const glm::vec<3, T, Q> &v) {
+
858  return glm::vec<4, T, Q>(v.x, v.x, v.z, v.x);
+
859  }
+
860 
+
861  template<typename T, qualifier Q>
+
862  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxzx(const glm::vec<4, T, Q> &v) {
+
863  return glm::vec<4, T, Q>(v.x, v.x, v.z, v.x);
+
864  }
+
865 
+
866  // xxzy
+
867  template<typename T, qualifier Q>
+
868  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxzy(const glm::vec<3, T, Q> &v) {
+
869  return glm::vec<4, T, Q>(v.x, v.x, v.z, v.y);
+
870  }
+
871 
+
872  template<typename T, qualifier Q>
+
873  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxzy(const glm::vec<4, T, Q> &v) {
+
874  return glm::vec<4, T, Q>(v.x, v.x, v.z, v.y);
+
875  }
+
876 
+
877  // xxzz
+
878  template<typename T, qualifier Q>
+
879  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxzz(const glm::vec<3, T, Q> &v) {
+
880  return glm::vec<4, T, Q>(v.x, v.x, v.z, v.z);
+
881  }
+
882 
+
883  template<typename T, qualifier Q>
+
884  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxzz(const glm::vec<4, T, Q> &v) {
+
885  return glm::vec<4, T, Q>(v.x, v.x, v.z, v.z);
+
886  }
+
887 
+
888  // xxzw
+
889  template<typename T, qualifier Q>
+
890  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxzw(const glm::vec<4, T, Q> &v) {
+
891  return glm::vec<4, T, Q>(v.x, v.x, v.z, v.w);
+
892  }
+
893 
+
894  // xxwx
+
895  template<typename T, qualifier Q>
+
896  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxwx(const glm::vec<4, T, Q> &v) {
+
897  return glm::vec<4, T, Q>(v.x, v.x, v.w, v.x);
+
898  }
+
899 
+
900  // xxwy
+
901  template<typename T, qualifier Q>
+
902  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxwy(const glm::vec<4, T, Q> &v) {
+
903  return glm::vec<4, T, Q>(v.x, v.x, v.w, v.y);
+
904  }
+
905 
+
906  // xxwz
+
907  template<typename T, qualifier Q>
+
908  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxwz(const glm::vec<4, T, Q> &v) {
+
909  return glm::vec<4, T, Q>(v.x, v.x, v.w, v.z);
+
910  }
+
911 
+
912  // xxww
+
913  template<typename T, qualifier Q>
+
914  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xxww(const glm::vec<4, T, Q> &v) {
+
915  return glm::vec<4, T, Q>(v.x, v.x, v.w, v.w);
+
916  }
+
917 
+
918  // xyxx
+
919  template<typename T, qualifier Q>
+
920  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyxx(const glm::vec<2, T, Q> &v) {
+
921  return glm::vec<4, T, Q>(v.x, v.y, v.x, v.x);
+
922  }
+
923 
+
924  template<typename T, qualifier Q>
+
925  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyxx(const glm::vec<3, T, Q> &v) {
+
926  return glm::vec<4, T, Q>(v.x, v.y, v.x, v.x);
+
927  }
+
928 
+
929  template<typename T, qualifier Q>
+
930  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyxx(const glm::vec<4, T, Q> &v) {
+
931  return glm::vec<4, T, Q>(v.x, v.y, v.x, v.x);
+
932  }
+
933 
+
934  // xyxy
+
935  template<typename T, qualifier Q>
+
936  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyxy(const glm::vec<2, T, Q> &v) {
+
937  return glm::vec<4, T, Q>(v.x, v.y, v.x, v.y);
+
938  }
+
939 
+
940  template<typename T, qualifier Q>
+
941  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyxy(const glm::vec<3, T, Q> &v) {
+
942  return glm::vec<4, T, Q>(v.x, v.y, v.x, v.y);
+
943  }
+
944 
+
945  template<typename T, qualifier Q>
+
946  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyxy(const glm::vec<4, T, Q> &v) {
+
947  return glm::vec<4, T, Q>(v.x, v.y, v.x, v.y);
+
948  }
+
949 
+
950  // xyxz
+
951  template<typename T, qualifier Q>
+
952  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyxz(const glm::vec<3, T, Q> &v) {
+
953  return glm::vec<4, T, Q>(v.x, v.y, v.x, v.z);
+
954  }
+
955 
+
956  template<typename T, qualifier Q>
+
957  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyxz(const glm::vec<4, T, Q> &v) {
+
958  return glm::vec<4, T, Q>(v.x, v.y, v.x, v.z);
+
959  }
+
960 
+
961  // xyxw
+
962  template<typename T, qualifier Q>
+
963  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyxw(const glm::vec<4, T, Q> &v) {
+
964  return glm::vec<4, T, Q>(v.x, v.y, v.x, v.w);
+
965  }
+
966 
+
967  // xyyx
+
968  template<typename T, qualifier Q>
+
969  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyyx(const glm::vec<2, T, Q> &v) {
+
970  return glm::vec<4, T, Q>(v.x, v.y, v.y, v.x);
+
971  }
+
972 
+
973  template<typename T, qualifier Q>
+
974  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyyx(const glm::vec<3, T, Q> &v) {
+
975  return glm::vec<4, T, Q>(v.x, v.y, v.y, v.x);
+
976  }
+
977 
+
978  template<typename T, qualifier Q>
+
979  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyyx(const glm::vec<4, T, Q> &v) {
+
980  return glm::vec<4, T, Q>(v.x, v.y, v.y, v.x);
+
981  }
+
982 
+
983  // xyyy
+
984  template<typename T, qualifier Q>
+
985  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyyy(const glm::vec<2, T, Q> &v) {
+
986  return glm::vec<4, T, Q>(v.x, v.y, v.y, v.y);
+
987  }
+
988 
+
989  template<typename T, qualifier Q>
+
990  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyyy(const glm::vec<3, T, Q> &v) {
+
991  return glm::vec<4, T, Q>(v.x, v.y, v.y, v.y);
+
992  }
+
993 
+
994  template<typename T, qualifier Q>
+
995  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyyy(const glm::vec<4, T, Q> &v) {
+
996  return glm::vec<4, T, Q>(v.x, v.y, v.y, v.y);
+
997  }
+
998 
+
999  // xyyz
+
1000  template<typename T, qualifier Q>
+
1001  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyyz(const glm::vec<3, T, Q> &v) {
+
1002  return glm::vec<4, T, Q>(v.x, v.y, v.y, v.z);
+
1003  }
+
1004 
+
1005  template<typename T, qualifier Q>
+
1006  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyyz(const glm::vec<4, T, Q> &v) {
+
1007  return glm::vec<4, T, Q>(v.x, v.y, v.y, v.z);
+
1008  }
+
1009 
+
1010  // xyyw
+
1011  template<typename T, qualifier Q>
+
1012  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyyw(const glm::vec<4, T, Q> &v) {
+
1013  return glm::vec<4, T, Q>(v.x, v.y, v.y, v.w);
+
1014  }
+
1015 
+
1016  // xyzx
+
1017  template<typename T, qualifier Q>
+
1018  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyzx(const glm::vec<3, T, Q> &v) {
+
1019  return glm::vec<4, T, Q>(v.x, v.y, v.z, v.x);
+
1020  }
+
1021 
+
1022  template<typename T, qualifier Q>
+
1023  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyzx(const glm::vec<4, T, Q> &v) {
+
1024  return glm::vec<4, T, Q>(v.x, v.y, v.z, v.x);
+
1025  }
+
1026 
+
1027  // xyzy
+
1028  template<typename T, qualifier Q>
+
1029  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyzy(const glm::vec<3, T, Q> &v) {
+
1030  return glm::vec<4, T, Q>(v.x, v.y, v.z, v.y);
+
1031  }
+
1032 
+
1033  template<typename T, qualifier Q>
+
1034  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyzy(const glm::vec<4, T, Q> &v) {
+
1035  return glm::vec<4, T, Q>(v.x, v.y, v.z, v.y);
+
1036  }
+
1037 
+
1038 
+
1039  // xyzw
+
1040  template<typename T, qualifier Q>
+
1041  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyzw(const glm::vec<4, T, Q> &v) {
+
1042  return glm::vec<4, T, Q>(v.x, v.y, v.z, v.w);
+
1043  }
+
1044 
+
1045  // xywx
+
1046  template<typename T, qualifier Q>
+
1047  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xywx(const glm::vec<4, T, Q> &v) {
+
1048  return glm::vec<4, T, Q>(v.x, v.y, v.w, v.x);
+
1049  }
+
1050 
+
1051  // xywy
+
1052  template<typename T, qualifier Q>
+
1053  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xywy(const glm::vec<4, T, Q> &v) {
+
1054  return glm::vec<4, T, Q>(v.x, v.y, v.w, v.y);
+
1055  }
+
1056 
+
1057  // xywz
+
1058  template<typename T, qualifier Q>
+
1059  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xywz(const glm::vec<4, T, Q> &v) {
+
1060  return glm::vec<4, T, Q>(v.x, v.y, v.w, v.z);
+
1061  }
+
1062 
+
1063  // xyww
+
1064  template<typename T, qualifier Q>
+
1065  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xyww(const glm::vec<4, T, Q> &v) {
+
1066  return glm::vec<4, T, Q>(v.x, v.y, v.w, v.w);
+
1067  }
+
1068 
+
1069  // xzxx
+
1070  template<typename T, qualifier Q>
+
1071  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzxx(const glm::vec<3, T, Q> &v) {
+
1072  return glm::vec<4, T, Q>(v.x, v.z, v.x, v.x);
+
1073  }
+
1074 
+
1075  template<typename T, qualifier Q>
+
1076  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzxx(const glm::vec<4, T, Q> &v) {
+
1077  return glm::vec<4, T, Q>(v.x, v.z, v.x, v.x);
+
1078  }
+
1079 
+
1080  // xzxy
+
1081  template<typename T, qualifier Q>
+
1082  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzxy(const glm::vec<3, T, Q> &v) {
+
1083  return glm::vec<4, T, Q>(v.x, v.z, v.x, v.y);
+
1084  }
+
1085 
+
1086  template<typename T, qualifier Q>
+
1087  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzxy(const glm::vec<4, T, Q> &v) {
+
1088  return glm::vec<4, T, Q>(v.x, v.z, v.x, v.y);
+
1089  }
+
1090 
+
1091  // xzxz
+
1092  template<typename T, qualifier Q>
+
1093  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzxz(const glm::vec<3, T, Q> &v) {
+
1094  return glm::vec<4, T, Q>(v.x, v.z, v.x, v.z);
+
1095  }
+
1096 
+
1097  template<typename T, qualifier Q>
+
1098  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzxz(const glm::vec<4, T, Q> &v) {
+
1099  return glm::vec<4, T, Q>(v.x, v.z, v.x, v.z);
+
1100  }
+
1101 
+
1102  // xzxw
+
1103  template<typename T, qualifier Q>
+
1104  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzxw(const glm::vec<4, T, Q> &v) {
+
1105  return glm::vec<4, T, Q>(v.x, v.z, v.x, v.w);
+
1106  }
+
1107 
+
1108  // xzyx
+
1109  template<typename T, qualifier Q>
+
1110  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzyx(const glm::vec<3, T, Q> &v) {
+
1111  return glm::vec<4, T, Q>(v.x, v.z, v.y, v.x);
+
1112  }
+
1113 
+
1114  template<typename T, qualifier Q>
+
1115  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzyx(const glm::vec<4, T, Q> &v) {
+
1116  return glm::vec<4, T, Q>(v.x, v.z, v.y, v.x);
+
1117  }
+
1118 
+
1119  // xzyy
+
1120  template<typename T, qualifier Q>
+
1121  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzyy(const glm::vec<3, T, Q> &v) {
+
1122  return glm::vec<4, T, Q>(v.x, v.z, v.y, v.y);
+
1123  }
+
1124 
+
1125  template<typename T, qualifier Q>
+
1126  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzyy(const glm::vec<4, T, Q> &v) {
+
1127  return glm::vec<4, T, Q>(v.x, v.z, v.y, v.y);
+
1128  }
+
1129 
+
1130  // xzyz
+
1131  template<typename T, qualifier Q>
+
1132  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzyz(const glm::vec<3, T, Q> &v) {
+
1133  return glm::vec<4, T, Q>(v.x, v.z, v.y, v.z);
+
1134  }
+
1135 
+
1136  template<typename T, qualifier Q>
+
1137  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzyz(const glm::vec<4, T, Q> &v) {
+
1138  return glm::vec<4, T, Q>(v.x, v.z, v.y, v.z);
+
1139  }
+
1140 
+
1141  // xzyw
+
1142  template<typename T, qualifier Q>
+
1143  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzyw(const glm::vec<4, T, Q> &v) {
+
1144  return glm::vec<4, T, Q>(v.x, v.z, v.y, v.w);
+
1145  }
+
1146 
+
1147  // xzzx
+
1148  template<typename T, qualifier Q>
+
1149  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzzx(const glm::vec<3, T, Q> &v) {
+
1150  return glm::vec<4, T, Q>(v.x, v.z, v.z, v.x);
+
1151  }
+
1152 
+
1153  template<typename T, qualifier Q>
+
1154  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzzx(const glm::vec<4, T, Q> &v) {
+
1155  return glm::vec<4, T, Q>(v.x, v.z, v.z, v.x);
+
1156  }
+
1157 
+
1158  // xzzy
+
1159  template<typename T, qualifier Q>
+
1160  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzzy(const glm::vec<3, T, Q> &v) {
+
1161  return glm::vec<4, T, Q>(v.x, v.z, v.z, v.y);
+
1162  }
+
1163 
+
1164  template<typename T, qualifier Q>
+
1165  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzzy(const glm::vec<4, T, Q> &v) {
+
1166  return glm::vec<4, T, Q>(v.x, v.z, v.z, v.y);
+
1167  }
+
1168 
+
1169  // xzzz
+
1170  template<typename T, qualifier Q>
+
1171  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzzz(const glm::vec<3, T, Q> &v) {
+
1172  return glm::vec<4, T, Q>(v.x, v.z, v.z, v.z);
+
1173  }
+
1174 
+
1175  template<typename T, qualifier Q>
+
1176  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzzz(const glm::vec<4, T, Q> &v) {
+
1177  return glm::vec<4, T, Q>(v.x, v.z, v.z, v.z);
+
1178  }
+
1179 
+
1180  // xzzw
+
1181  template<typename T, qualifier Q>
+
1182  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzzw(const glm::vec<4, T, Q> &v) {
+
1183  return glm::vec<4, T, Q>(v.x, v.z, v.z, v.w);
+
1184  }
+
1185 
+
1186  // xzwx
+
1187  template<typename T, qualifier Q>
+
1188  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzwx(const glm::vec<4, T, Q> &v) {
+
1189  return glm::vec<4, T, Q>(v.x, v.z, v.w, v.x);
+
1190  }
+
1191 
+
1192  // xzwy
+
1193  template<typename T, qualifier Q>
+
1194  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzwy(const glm::vec<4, T, Q> &v) {
+
1195  return glm::vec<4, T, Q>(v.x, v.z, v.w, v.y);
+
1196  }
+
1197 
+
1198  // xzwz
+
1199  template<typename T, qualifier Q>
+
1200  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzwz(const glm::vec<4, T, Q> &v) {
+
1201  return glm::vec<4, T, Q>(v.x, v.z, v.w, v.z);
+
1202  }
+
1203 
+
1204  // xzww
+
1205  template<typename T, qualifier Q>
+
1206  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xzww(const glm::vec<4, T, Q> &v) {
+
1207  return glm::vec<4, T, Q>(v.x, v.z, v.w, v.w);
+
1208  }
+
1209 
+
1210  // xwxx
+
1211  template<typename T, qualifier Q>
+
1212  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwxx(const glm::vec<4, T, Q> &v) {
+
1213  return glm::vec<4, T, Q>(v.x, v.w, v.x, v.x);
+
1214  }
+
1215 
+
1216  // xwxy
+
1217  template<typename T, qualifier Q>
+
1218  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwxy(const glm::vec<4, T, Q> &v) {
+
1219  return glm::vec<4, T, Q>(v.x, v.w, v.x, v.y);
+
1220  }
+
1221 
+
1222  // xwxz
+
1223  template<typename T, qualifier Q>
+
1224  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwxz(const glm::vec<4, T, Q> &v) {
+
1225  return glm::vec<4, T, Q>(v.x, v.w, v.x, v.z);
+
1226  }
+
1227 
+
1228  // xwxw
+
1229  template<typename T, qualifier Q>
+
1230  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwxw(const glm::vec<4, T, Q> &v) {
+
1231  return glm::vec<4, T, Q>(v.x, v.w, v.x, v.w);
+
1232  }
+
1233 
+
1234  // xwyx
+
1235  template<typename T, qualifier Q>
+
1236  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwyx(const glm::vec<4, T, Q> &v) {
+
1237  return glm::vec<4, T, Q>(v.x, v.w, v.y, v.x);
+
1238  }
+
1239 
+
1240  // xwyy
+
1241  template<typename T, qualifier Q>
+
1242  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwyy(const glm::vec<4, T, Q> &v) {
+
1243  return glm::vec<4, T, Q>(v.x, v.w, v.y, v.y);
+
1244  }
+
1245 
+
1246  // xwyz
+
1247  template<typename T, qualifier Q>
+
1248  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwyz(const glm::vec<4, T, Q> &v) {
+
1249  return glm::vec<4, T, Q>(v.x, v.w, v.y, v.z);
+
1250  }
+
1251 
+
1252  // xwyw
+
1253  template<typename T, qualifier Q>
+
1254  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwyw(const glm::vec<4, T, Q> &v) {
+
1255  return glm::vec<4, T, Q>(v.x, v.w, v.y, v.w);
+
1256  }
+
1257 
+
1258  // xwzx
+
1259  template<typename T, qualifier Q>
+
1260  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwzx(const glm::vec<4, T, Q> &v) {
+
1261  return glm::vec<4, T, Q>(v.x, v.w, v.z, v.x);
+
1262  }
+
1263 
+
1264  // xwzy
+
1265  template<typename T, qualifier Q>
+
1266  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwzy(const glm::vec<4, T, Q> &v) {
+
1267  return glm::vec<4, T, Q>(v.x, v.w, v.z, v.y);
+
1268  }
+
1269 
+
1270  // xwzz
+
1271  template<typename T, qualifier Q>
+
1272  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwzz(const glm::vec<4, T, Q> &v) {
+
1273  return glm::vec<4, T, Q>(v.x, v.w, v.z, v.z);
+
1274  }
+
1275 
+
1276  // xwzw
+
1277  template<typename T, qualifier Q>
+
1278  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwzw(const glm::vec<4, T, Q> &v) {
+
1279  return glm::vec<4, T, Q>(v.x, v.w, v.z, v.w);
+
1280  }
+
1281 
+
1282  // xwwx
+
1283  template<typename T, qualifier Q>
+
1284  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwwx(const glm::vec<4, T, Q> &v) {
+
1285  return glm::vec<4, T, Q>(v.x, v.w, v.w, v.x);
+
1286  }
+
1287 
+
1288  // xwwy
+
1289  template<typename T, qualifier Q>
+
1290  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwwy(const glm::vec<4, T, Q> &v) {
+
1291  return glm::vec<4, T, Q>(v.x, v.w, v.w, v.y);
+
1292  }
+
1293 
+
1294  // xwwz
+
1295  template<typename T, qualifier Q>
+
1296  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwwz(const glm::vec<4, T, Q> &v) {
+
1297  return glm::vec<4, T, Q>(v.x, v.w, v.w, v.z);
+
1298  }
+
1299 
+
1300  // xwww
+
1301  template<typename T, qualifier Q>
+
1302  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> xwww(const glm::vec<4, T, Q> &v) {
+
1303  return glm::vec<4, T, Q>(v.x, v.w, v.w, v.w);
+
1304  }
+
1305 
+
1306  // yxxx
+
1307  template<typename T, qualifier Q>
+
1308  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxxx(const glm::vec<2, T, Q> &v) {
+
1309  return glm::vec<4, T, Q>(v.y, v.x, v.x, v.x);
+
1310  }
+
1311 
+
1312  template<typename T, qualifier Q>
+
1313  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxxx(const glm::vec<3, T, Q> &v) {
+
1314  return glm::vec<4, T, Q>(v.y, v.x, v.x, v.x);
+
1315  }
+
1316 
+
1317  template<typename T, qualifier Q>
+
1318  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxxx(const glm::vec<4, T, Q> &v) {
+
1319  return glm::vec<4, T, Q>(v.y, v.x, v.x, v.x);
+
1320  }
+
1321 
+
1322  // yxxy
+
1323  template<typename T, qualifier Q>
+
1324  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxxy(const glm::vec<2, T, Q> &v) {
+
1325  return glm::vec<4, T, Q>(v.y, v.x, v.x, v.y);
+
1326  }
+
1327 
+
1328  template<typename T, qualifier Q>
+
1329  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxxy(const glm::vec<3, T, Q> &v) {
+
1330  return glm::vec<4, T, Q>(v.y, v.x, v.x, v.y);
+
1331  }
+
1332 
+
1333  template<typename T, qualifier Q>
+
1334  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxxy(const glm::vec<4, T, Q> &v) {
+
1335  return glm::vec<4, T, Q>(v.y, v.x, v.x, v.y);
+
1336  }
+
1337 
+
1338  // yxxz
+
1339  template<typename T, qualifier Q>
+
1340  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxxz(const glm::vec<3, T, Q> &v) {
+
1341  return glm::vec<4, T, Q>(v.y, v.x, v.x, v.z);
+
1342  }
+
1343 
+
1344  template<typename T, qualifier Q>
+
1345  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxxz(const glm::vec<4, T, Q> &v) {
+
1346  return glm::vec<4, T, Q>(v.y, v.x, v.x, v.z);
+
1347  }
+
1348 
+
1349  // yxxw
+
1350  template<typename T, qualifier Q>
+
1351  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxxw(const glm::vec<4, T, Q> &v) {
+
1352  return glm::vec<4, T, Q>(v.y, v.x, v.x, v.w);
+
1353  }
+
1354 
+
1355  // yxyx
+
1356  template<typename T, qualifier Q>
+
1357  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxyx(const glm::vec<2, T, Q> &v) {
+
1358  return glm::vec<4, T, Q>(v.y, v.x, v.y, v.x);
+
1359  }
+
1360 
+
1361  template<typename T, qualifier Q>
+
1362  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxyx(const glm::vec<3, T, Q> &v) {
+
1363  return glm::vec<4, T, Q>(v.y, v.x, v.y, v.x);
+
1364  }
+
1365 
+
1366  template<typename T, qualifier Q>
+
1367  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxyx(const glm::vec<4, T, Q> &v) {
+
1368  return glm::vec<4, T, Q>(v.y, v.x, v.y, v.x);
+
1369  }
+
1370 
+
1371  // yxyy
+
1372  template<typename T, qualifier Q>
+
1373  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxyy(const glm::vec<2, T, Q> &v) {
+
1374  return glm::vec<4, T, Q>(v.y, v.x, v.y, v.y);
+
1375  }
+
1376 
+
1377  template<typename T, qualifier Q>
+
1378  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxyy(const glm::vec<3, T, Q> &v) {
+
1379  return glm::vec<4, T, Q>(v.y, v.x, v.y, v.y);
+
1380  }
+
1381 
+
1382  template<typename T, qualifier Q>
+
1383  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxyy(const glm::vec<4, T, Q> &v) {
+
1384  return glm::vec<4, T, Q>(v.y, v.x, v.y, v.y);
+
1385  }
+
1386 
+
1387  // yxyz
+
1388  template<typename T, qualifier Q>
+
1389  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxyz(const glm::vec<3, T, Q> &v) {
+
1390  return glm::vec<4, T, Q>(v.y, v.x, v.y, v.z);
+
1391  }
+
1392 
+
1393  template<typename T, qualifier Q>
+
1394  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxyz(const glm::vec<4, T, Q> &v) {
+
1395  return glm::vec<4, T, Q>(v.y, v.x, v.y, v.z);
+
1396  }
+
1397 
+
1398  // yxyw
+
1399  template<typename T, qualifier Q>
+
1400  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxyw(const glm::vec<4, T, Q> &v) {
+
1401  return glm::vec<4, T, Q>(v.y, v.x, v.y, v.w);
+
1402  }
+
1403 
+
1404  // yxzx
+
1405  template<typename T, qualifier Q>
+
1406  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxzx(const glm::vec<3, T, Q> &v) {
+
1407  return glm::vec<4, T, Q>(v.y, v.x, v.z, v.x);
+
1408  }
+
1409 
+
1410  template<typename T, qualifier Q>
+
1411  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxzx(const glm::vec<4, T, Q> &v) {
+
1412  return glm::vec<4, T, Q>(v.y, v.x, v.z, v.x);
+
1413  }
+
1414 
+
1415  // yxzy
+
1416  template<typename T, qualifier Q>
+
1417  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxzy(const glm::vec<3, T, Q> &v) {
+
1418  return glm::vec<4, T, Q>(v.y, v.x, v.z, v.y);
+
1419  }
+
1420 
+
1421  template<typename T, qualifier Q>
+
1422  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxzy(const glm::vec<4, T, Q> &v) {
+
1423  return glm::vec<4, T, Q>(v.y, v.x, v.z, v.y);
+
1424  }
+
1425 
+
1426  // yxzz
+
1427  template<typename T, qualifier Q>
+
1428  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxzz(const glm::vec<3, T, Q> &v) {
+
1429  return glm::vec<4, T, Q>(v.y, v.x, v.z, v.z);
+
1430  }
+
1431 
+
1432  template<typename T, qualifier Q>
+
1433  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxzz(const glm::vec<4, T, Q> &v) {
+
1434  return glm::vec<4, T, Q>(v.y, v.x, v.z, v.z);
+
1435  }
+
1436 
+
1437  // yxzw
+
1438  template<typename T, qualifier Q>
+
1439  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxzw(const glm::vec<4, T, Q> &v) {
+
1440  return glm::vec<4, T, Q>(v.y, v.x, v.z, v.w);
+
1441  }
+
1442 
+
1443  // yxwx
+
1444  template<typename T, qualifier Q>
+
1445  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxwx(const glm::vec<4, T, Q> &v) {
+
1446  return glm::vec<4, T, Q>(v.y, v.x, v.w, v.x);
+
1447  }
+
1448 
+
1449  // yxwy
+
1450  template<typename T, qualifier Q>
+
1451  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxwy(const glm::vec<4, T, Q> &v) {
+
1452  return glm::vec<4, T, Q>(v.y, v.x, v.w, v.y);
+
1453  }
+
1454 
+
1455  // yxwz
+
1456  template<typename T, qualifier Q>
+
1457  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxwz(const glm::vec<4, T, Q> &v) {
+
1458  return glm::vec<4, T, Q>(v.y, v.x, v.w, v.z);
+
1459  }
+
1460 
+
1461  // yxww
+
1462  template<typename T, qualifier Q>
+
1463  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yxww(const glm::vec<4, T, Q> &v) {
+
1464  return glm::vec<4, T, Q>(v.y, v.x, v.w, v.w);
+
1465  }
+
1466 
+
1467  // yyxx
+
1468  template<typename T, qualifier Q>
+
1469  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyxx(const glm::vec<2, T, Q> &v) {
+
1470  return glm::vec<4, T, Q>(v.y, v.y, v.x, v.x);
+
1471  }
+
1472 
+
1473  template<typename T, qualifier Q>
+
1474  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyxx(const glm::vec<3, T, Q> &v) {
+
1475  return glm::vec<4, T, Q>(v.y, v.y, v.x, v.x);
+
1476  }
+
1477 
+
1478  template<typename T, qualifier Q>
+
1479  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyxx(const glm::vec<4, T, Q> &v) {
+
1480  return glm::vec<4, T, Q>(v.y, v.y, v.x, v.x);
+
1481  }
+
1482 
+
1483  // yyxy
+
1484  template<typename T, qualifier Q>
+
1485  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyxy(const glm::vec<2, T, Q> &v) {
+
1486  return glm::vec<4, T, Q>(v.y, v.y, v.x, v.y);
+
1487  }
+
1488 
+
1489  template<typename T, qualifier Q>
+
1490  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyxy(const glm::vec<3, T, Q> &v) {
+
1491  return glm::vec<4, T, Q>(v.y, v.y, v.x, v.y);
+
1492  }
+
1493 
+
1494  template<typename T, qualifier Q>
+
1495  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyxy(const glm::vec<4, T, Q> &v) {
+
1496  return glm::vec<4, T, Q>(v.y, v.y, v.x, v.y);
+
1497  }
+
1498 
+
1499  // yyxz
+
1500  template<typename T, qualifier Q>
+
1501  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyxz(const glm::vec<3, T, Q> &v) {
+
1502  return glm::vec<4, T, Q>(v.y, v.y, v.x, v.z);
+
1503  }
+
1504 
+
1505  template<typename T, qualifier Q>
+
1506  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyxz(const glm::vec<4, T, Q> &v) {
+
1507  return glm::vec<4, T, Q>(v.y, v.y, v.x, v.z);
+
1508  }
+
1509 
+
1510  // yyxw
+
1511  template<typename T, qualifier Q>
+
1512  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyxw(const glm::vec<4, T, Q> &v) {
+
1513  return glm::vec<4, T, Q>(v.y, v.y, v.x, v.w);
+
1514  }
+
1515 
+
1516  // yyyx
+
1517  template<typename T, qualifier Q>
+
1518  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyyx(const glm::vec<2, T, Q> &v) {
+
1519  return glm::vec<4, T, Q>(v.y, v.y, v.y, v.x);
+
1520  }
+
1521 
+
1522  template<typename T, qualifier Q>
+
1523  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyyx(const glm::vec<3, T, Q> &v) {
+
1524  return glm::vec<4, T, Q>(v.y, v.y, v.y, v.x);
+
1525  }
+
1526 
+
1527  template<typename T, qualifier Q>
+
1528  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyyx(const glm::vec<4, T, Q> &v) {
+
1529  return glm::vec<4, T, Q>(v.y, v.y, v.y, v.x);
+
1530  }
+
1531 
+
1532  // yyyy
+
1533  template<typename T, qualifier Q>
+
1534  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyyy(const glm::vec<2, T, Q> &v) {
+
1535  return glm::vec<4, T, Q>(v.y, v.y, v.y, v.y);
+
1536  }
+
1537 
+
1538  template<typename T, qualifier Q>
+
1539  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyyy(const glm::vec<3, T, Q> &v) {
+
1540  return glm::vec<4, T, Q>(v.y, v.y, v.y, v.y);
+
1541  }
+
1542 
+
1543  template<typename T, qualifier Q>
+
1544  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyyy(const glm::vec<4, T, Q> &v) {
+
1545  return glm::vec<4, T, Q>(v.y, v.y, v.y, v.y);
+
1546  }
+
1547 
+
1548  // yyyz
+
1549  template<typename T, qualifier Q>
+
1550  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyyz(const glm::vec<3, T, Q> &v) {
+
1551  return glm::vec<4, T, Q>(v.y, v.y, v.y, v.z);
+
1552  }
+
1553 
+
1554  template<typename T, qualifier Q>
+
1555  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyyz(const glm::vec<4, T, Q> &v) {
+
1556  return glm::vec<4, T, Q>(v.y, v.y, v.y, v.z);
+
1557  }
+
1558 
+
1559  // yyyw
+
1560  template<typename T, qualifier Q>
+
1561  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyyw(const glm::vec<4, T, Q> &v) {
+
1562  return glm::vec<4, T, Q>(v.y, v.y, v.y, v.w);
+
1563  }
+
1564 
+
1565  // yyzx
+
1566  template<typename T, qualifier Q>
+
1567  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyzx(const glm::vec<3, T, Q> &v) {
+
1568  return glm::vec<4, T, Q>(v.y, v.y, v.z, v.x);
+
1569  }
+
1570 
+
1571  template<typename T, qualifier Q>
+
1572  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyzx(const glm::vec<4, T, Q> &v) {
+
1573  return glm::vec<4, T, Q>(v.y, v.y, v.z, v.x);
+
1574  }
+
1575 
+
1576  // yyzy
+
1577  template<typename T, qualifier Q>
+
1578  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyzy(const glm::vec<3, T, Q> &v) {
+
1579  return glm::vec<4, T, Q>(v.y, v.y, v.z, v.y);
+
1580  }
+
1581 
+
1582  template<typename T, qualifier Q>
+
1583  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyzy(const glm::vec<4, T, Q> &v) {
+
1584  return glm::vec<4, T, Q>(v.y, v.y, v.z, v.y);
+
1585  }
+
1586 
+
1587  // yyzz
+
1588  template<typename T, qualifier Q>
+
1589  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyzz(const glm::vec<3, T, Q> &v) {
+
1590  return glm::vec<4, T, Q>(v.y, v.y, v.z, v.z);
+
1591  }
+
1592 
+
1593  template<typename T, qualifier Q>
+
1594  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyzz(const glm::vec<4, T, Q> &v) {
+
1595  return glm::vec<4, T, Q>(v.y, v.y, v.z, v.z);
+
1596  }
+
1597 
+
1598  // yyzw
+
1599  template<typename T, qualifier Q>
+
1600  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyzw(const glm::vec<4, T, Q> &v) {
+
1601  return glm::vec<4, T, Q>(v.y, v.y, v.z, v.w);
+
1602  }
+
1603 
+
1604  // yywx
+
1605  template<typename T, qualifier Q>
+
1606  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yywx(const glm::vec<4, T, Q> &v) {
+
1607  return glm::vec<4, T, Q>(v.y, v.y, v.w, v.x);
+
1608  }
+
1609 
+
1610  // yywy
+
1611  template<typename T, qualifier Q>
+
1612  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yywy(const glm::vec<4, T, Q> &v) {
+
1613  return glm::vec<4, T, Q>(v.y, v.y, v.w, v.y);
+
1614  }
+
1615 
+
1616  // yywz
+
1617  template<typename T, qualifier Q>
+
1618  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yywz(const glm::vec<4, T, Q> &v) {
+
1619  return glm::vec<4, T, Q>(v.y, v.y, v.w, v.z);
+
1620  }
+
1621 
+
1622  // yyww
+
1623  template<typename T, qualifier Q>
+
1624  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yyww(const glm::vec<4, T, Q> &v) {
+
1625  return glm::vec<4, T, Q>(v.y, v.y, v.w, v.w);
+
1626  }
+
1627 
+
1628  // yzxx
+
1629  template<typename T, qualifier Q>
+
1630  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzxx(const glm::vec<3, T, Q> &v) {
+
1631  return glm::vec<4, T, Q>(v.y, v.z, v.x, v.x);
+
1632  }
+
1633 
+
1634  template<typename T, qualifier Q>
+
1635  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzxx(const glm::vec<4, T, Q> &v) {
+
1636  return glm::vec<4, T, Q>(v.y, v.z, v.x, v.x);
+
1637  }
+
1638 
+
1639  // yzxy
+
1640  template<typename T, qualifier Q>
+
1641  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzxy(const glm::vec<3, T, Q> &v) {
+
1642  return glm::vec<4, T, Q>(v.y, v.z, v.x, v.y);
+
1643  }
+
1644 
+
1645  template<typename T, qualifier Q>
+
1646  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzxy(const glm::vec<4, T, Q> &v) {
+
1647  return glm::vec<4, T, Q>(v.y, v.z, v.x, v.y);
+
1648  }
+
1649 
+
1650  // yzxz
+
1651  template<typename T, qualifier Q>
+
1652  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzxz(const glm::vec<3, T, Q> &v) {
+
1653  return glm::vec<4, T, Q>(v.y, v.z, v.x, v.z);
+
1654  }
+
1655 
+
1656  template<typename T, qualifier Q>
+
1657  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzxz(const glm::vec<4, T, Q> &v) {
+
1658  return glm::vec<4, T, Q>(v.y, v.z, v.x, v.z);
+
1659  }
+
1660 
+
1661  // yzxw
+
1662  template<typename T, qualifier Q>
+
1663  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzxw(const glm::vec<4, T, Q> &v) {
+
1664  return glm::vec<4, T, Q>(v.y, v.z, v.x, v.w);
+
1665  }
+
1666 
+
1667  // yzyx
+
1668  template<typename T, qualifier Q>
+
1669  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzyx(const glm::vec<3, T, Q> &v) {
+
1670  return glm::vec<4, T, Q>(v.y, v.z, v.y, v.x);
+
1671  }
+
1672 
+
1673  template<typename T, qualifier Q>
+
1674  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzyx(const glm::vec<4, T, Q> &v) {
+
1675  return glm::vec<4, T, Q>(v.y, v.z, v.y, v.x);
+
1676  }
+
1677 
+
1678  // yzyy
+
1679  template<typename T, qualifier Q>
+
1680  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzyy(const glm::vec<3, T, Q> &v) {
+
1681  return glm::vec<4, T, Q>(v.y, v.z, v.y, v.y);
+
1682  }
+
1683 
+
1684  template<typename T, qualifier Q>
+
1685  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzyy(const glm::vec<4, T, Q> &v) {
+
1686  return glm::vec<4, T, Q>(v.y, v.z, v.y, v.y);
+
1687  }
+
1688 
+
1689  // yzyz
+
1690  template<typename T, qualifier Q>
+
1691  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzyz(const glm::vec<3, T, Q> &v) {
+
1692  return glm::vec<4, T, Q>(v.y, v.z, v.y, v.z);
+
1693  }
+
1694 
+
1695  template<typename T, qualifier Q>
+
1696  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzyz(const glm::vec<4, T, Q> &v) {
+
1697  return glm::vec<4, T, Q>(v.y, v.z, v.y, v.z);
+
1698  }
+
1699 
+
1700  // yzyw
+
1701  template<typename T, qualifier Q>
+
1702  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzyw(const glm::vec<4, T, Q> &v) {
+
1703  return glm::vec<4, T, Q>(v.y, v.z, v.y, v.w);
+
1704  }
+
1705 
+
1706  // yzzx
+
1707  template<typename T, qualifier Q>
+
1708  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzzx(const glm::vec<3, T, Q> &v) {
+
1709  return glm::vec<4, T, Q>(v.y, v.z, v.z, v.x);
+
1710  }
+
1711 
+
1712  template<typename T, qualifier Q>
+
1713  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzzx(const glm::vec<4, T, Q> &v) {
+
1714  return glm::vec<4, T, Q>(v.y, v.z, v.z, v.x);
+
1715  }
+
1716 
+
1717  // yzzy
+
1718  template<typename T, qualifier Q>
+
1719  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzzy(const glm::vec<3, T, Q> &v) {
+
1720  return glm::vec<4, T, Q>(v.y, v.z, v.z, v.y);
+
1721  }
+
1722 
+
1723  template<typename T, qualifier Q>
+
1724  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzzy(const glm::vec<4, T, Q> &v) {
+
1725  return glm::vec<4, T, Q>(v.y, v.z, v.z, v.y);
+
1726  }
+
1727 
+
1728  // yzzz
+
1729  template<typename T, qualifier Q>
+
1730  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzzz(const glm::vec<3, T, Q> &v) {
+
1731  return glm::vec<4, T, Q>(v.y, v.z, v.z, v.z);
+
1732  }
+
1733 
+
1734  template<typename T, qualifier Q>
+
1735  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzzz(const glm::vec<4, T, Q> &v) {
+
1736  return glm::vec<4, T, Q>(v.y, v.z, v.z, v.z);
+
1737  }
+
1738 
+
1739  // yzzw
+
1740  template<typename T, qualifier Q>
+
1741  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzzw(const glm::vec<4, T, Q> &v) {
+
1742  return glm::vec<4, T, Q>(v.y, v.z, v.z, v.w);
+
1743  }
+
1744 
+
1745  // yzwx
+
1746  template<typename T, qualifier Q>
+
1747  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzwx(const glm::vec<4, T, Q> &v) {
+
1748  return glm::vec<4, T, Q>(v.y, v.z, v.w, v.x);
+
1749  }
+
1750 
+
1751  // yzwy
+
1752  template<typename T, qualifier Q>
+
1753  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzwy(const glm::vec<4, T, Q> &v) {
+
1754  return glm::vec<4, T, Q>(v.y, v.z, v.w, v.y);
+
1755  }
+
1756 
+
1757  // yzwz
+
1758  template<typename T, qualifier Q>
+
1759  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzwz(const glm::vec<4, T, Q> &v) {
+
1760  return glm::vec<4, T, Q>(v.y, v.z, v.w, v.z);
+
1761  }
+
1762 
+
1763  // yzww
+
1764  template<typename T, qualifier Q>
+
1765  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> yzww(const glm::vec<4, T, Q> &v) {
+
1766  return glm::vec<4, T, Q>(v.y, v.z, v.w, v.w);
+
1767  }
+
1768 
+
1769  // ywxx
+
1770  template<typename T, qualifier Q>
+
1771  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywxx(const glm::vec<4, T, Q> &v) {
+
1772  return glm::vec<4, T, Q>(v.y, v.w, v.x, v.x);
+
1773  }
+
1774 
+
1775  // ywxy
+
1776  template<typename T, qualifier Q>
+
1777  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywxy(const glm::vec<4, T, Q> &v) {
+
1778  return glm::vec<4, T, Q>(v.y, v.w, v.x, v.y);
+
1779  }
+
1780 
+
1781  // ywxz
+
1782  template<typename T, qualifier Q>
+
1783  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywxz(const glm::vec<4, T, Q> &v) {
+
1784  return glm::vec<4, T, Q>(v.y, v.w, v.x, v.z);
+
1785  }
+
1786 
+
1787  // ywxw
+
1788  template<typename T, qualifier Q>
+
1789  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywxw(const glm::vec<4, T, Q> &v) {
+
1790  return glm::vec<4, T, Q>(v.y, v.w, v.x, v.w);
+
1791  }
+
1792 
+
1793  // ywyx
+
1794  template<typename T, qualifier Q>
+
1795  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywyx(const glm::vec<4, T, Q> &v) {
+
1796  return glm::vec<4, T, Q>(v.y, v.w, v.y, v.x);
+
1797  }
+
1798 
+
1799  // ywyy
+
1800  template<typename T, qualifier Q>
+
1801  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywyy(const glm::vec<4, T, Q> &v) {
+
1802  return glm::vec<4, T, Q>(v.y, v.w, v.y, v.y);
+
1803  }
+
1804 
+
1805  // ywyz
+
1806  template<typename T, qualifier Q>
+
1807  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywyz(const glm::vec<4, T, Q> &v) {
+
1808  return glm::vec<4, T, Q>(v.y, v.w, v.y, v.z);
+
1809  }
+
1810 
+
1811  // ywyw
+
1812  template<typename T, qualifier Q>
+
1813  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywyw(const glm::vec<4, T, Q> &v) {
+
1814  return glm::vec<4, T, Q>(v.y, v.w, v.y, v.w);
+
1815  }
+
1816 
+
1817  // ywzx
+
1818  template<typename T, qualifier Q>
+
1819  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywzx(const glm::vec<4, T, Q> &v) {
+
1820  return glm::vec<4, T, Q>(v.y, v.w, v.z, v.x);
+
1821  }
+
1822 
+
1823  // ywzy
+
1824  template<typename T, qualifier Q>
+
1825  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywzy(const glm::vec<4, T, Q> &v) {
+
1826  return glm::vec<4, T, Q>(v.y, v.w, v.z, v.y);
+
1827  }
+
1828 
+
1829  // ywzz
+
1830  template<typename T, qualifier Q>
+
1831  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywzz(const glm::vec<4, T, Q> &v) {
+
1832  return glm::vec<4, T, Q>(v.y, v.w, v.z, v.z);
+
1833  }
+
1834 
+
1835  // ywzw
+
1836  template<typename T, qualifier Q>
+
1837  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywzw(const glm::vec<4, T, Q> &v) {
+
1838  return glm::vec<4, T, Q>(v.y, v.w, v.z, v.w);
+
1839  }
+
1840 
+
1841  // ywwx
+
1842  template<typename T, qualifier Q>
+
1843  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywwx(const glm::vec<4, T, Q> &v) {
+
1844  return glm::vec<4, T, Q>(v.y, v.w, v.w, v.x);
+
1845  }
+
1846 
+
1847  // ywwy
+
1848  template<typename T, qualifier Q>
+
1849  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywwy(const glm::vec<4, T, Q> &v) {
+
1850  return glm::vec<4, T, Q>(v.y, v.w, v.w, v.y);
+
1851  }
+
1852 
+
1853  // ywwz
+
1854  template<typename T, qualifier Q>
+
1855  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywwz(const glm::vec<4, T, Q> &v) {
+
1856  return glm::vec<4, T, Q>(v.y, v.w, v.w, v.z);
+
1857  }
+
1858 
+
1859  // ywww
+
1860  template<typename T, qualifier Q>
+
1861  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> ywww(const glm::vec<4, T, Q> &v) {
+
1862  return glm::vec<4, T, Q>(v.y, v.w, v.w, v.w);
+
1863  }
+
1864 
+
1865  // zxxx
+
1866  template<typename T, qualifier Q>
+
1867  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxxx(const glm::vec<3, T, Q> &v) {
+
1868  return glm::vec<4, T, Q>(v.z, v.x, v.x, v.x);
+
1869  }
+
1870 
+
1871  template<typename T, qualifier Q>
+
1872  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxxx(const glm::vec<4, T, Q> &v) {
+
1873  return glm::vec<4, T, Q>(v.z, v.x, v.x, v.x);
+
1874  }
+
1875 
+
1876  // zxxy
+
1877  template<typename T, qualifier Q>
+
1878  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxxy(const glm::vec<3, T, Q> &v) {
+
1879  return glm::vec<4, T, Q>(v.z, v.x, v.x, v.y);
+
1880  }
+
1881 
+
1882  template<typename T, qualifier Q>
+
1883  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxxy(const glm::vec<4, T, Q> &v) {
+
1884  return glm::vec<4, T, Q>(v.z, v.x, v.x, v.y);
+
1885  }
+
1886 
+
1887  // zxxz
+
1888  template<typename T, qualifier Q>
+
1889  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxxz(const glm::vec<3, T, Q> &v) {
+
1890  return glm::vec<4, T, Q>(v.z, v.x, v.x, v.z);
+
1891  }
+
1892 
+
1893  template<typename T, qualifier Q>
+
1894  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxxz(const glm::vec<4, T, Q> &v) {
+
1895  return glm::vec<4, T, Q>(v.z, v.x, v.x, v.z);
+
1896  }
+
1897 
+
1898  // zxxw
+
1899  template<typename T, qualifier Q>
+
1900  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxxw(const glm::vec<4, T, Q> &v) {
+
1901  return glm::vec<4, T, Q>(v.z, v.x, v.x, v.w);
+
1902  }
+
1903 
+
1904  // zxyx
+
1905  template<typename T, qualifier Q>
+
1906  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxyx(const glm::vec<3, T, Q> &v) {
+
1907  return glm::vec<4, T, Q>(v.z, v.x, v.y, v.x);
+
1908  }
+
1909 
+
1910  template<typename T, qualifier Q>
+
1911  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxyx(const glm::vec<4, T, Q> &v) {
+
1912  return glm::vec<4, T, Q>(v.z, v.x, v.y, v.x);
+
1913  }
+
1914 
+
1915  // zxyy
+
1916  template<typename T, qualifier Q>
+
1917  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxyy(const glm::vec<3, T, Q> &v) {
+
1918  return glm::vec<4, T, Q>(v.z, v.x, v.y, v.y);
+
1919  }
+
1920 
+
1921  template<typename T, qualifier Q>
+
1922  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxyy(const glm::vec<4, T, Q> &v) {
+
1923  return glm::vec<4, T, Q>(v.z, v.x, v.y, v.y);
+
1924  }
+
1925 
+
1926  // zxyz
+
1927  template<typename T, qualifier Q>
+
1928  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxyz(const glm::vec<3, T, Q> &v) {
+
1929  return glm::vec<4, T, Q>(v.z, v.x, v.y, v.z);
+
1930  }
+
1931 
+
1932  template<typename T, qualifier Q>
+
1933  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxyz(const glm::vec<4, T, Q> &v) {
+
1934  return glm::vec<4, T, Q>(v.z, v.x, v.y, v.z);
+
1935  }
+
1936 
+
1937  // zxyw
+
1938  template<typename T, qualifier Q>
+
1939  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxyw(const glm::vec<4, T, Q> &v) {
+
1940  return glm::vec<4, T, Q>(v.z, v.x, v.y, v.w);
+
1941  }
+
1942 
+
1943  // zxzx
+
1944  template<typename T, qualifier Q>
+
1945  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxzx(const glm::vec<3, T, Q> &v) {
+
1946  return glm::vec<4, T, Q>(v.z, v.x, v.z, v.x);
+
1947  }
+
1948 
+
1949  template<typename T, qualifier Q>
+
1950  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxzx(const glm::vec<4, T, Q> &v) {
+
1951  return glm::vec<4, T, Q>(v.z, v.x, v.z, v.x);
+
1952  }
+
1953 
+
1954  // zxzy
+
1955  template<typename T, qualifier Q>
+
1956  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxzy(const glm::vec<3, T, Q> &v) {
+
1957  return glm::vec<4, T, Q>(v.z, v.x, v.z, v.y);
+
1958  }
+
1959 
+
1960  template<typename T, qualifier Q>
+
1961  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxzy(const glm::vec<4, T, Q> &v) {
+
1962  return glm::vec<4, T, Q>(v.z, v.x, v.z, v.y);
+
1963  }
+
1964 
+
1965  // zxzz
+
1966  template<typename T, qualifier Q>
+
1967  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxzz(const glm::vec<3, T, Q> &v) {
+
1968  return glm::vec<4, T, Q>(v.z, v.x, v.z, v.z);
+
1969  }
+
1970 
+
1971  template<typename T, qualifier Q>
+
1972  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxzz(const glm::vec<4, T, Q> &v) {
+
1973  return glm::vec<4, T, Q>(v.z, v.x, v.z, v.z);
+
1974  }
+
1975 
+
1976  // zxzw
+
1977  template<typename T, qualifier Q>
+
1978  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxzw(const glm::vec<4, T, Q> &v) {
+
1979  return glm::vec<4, T, Q>(v.z, v.x, v.z, v.w);
+
1980  }
+
1981 
+
1982  // zxwx
+
1983  template<typename T, qualifier Q>
+
1984  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxwx(const glm::vec<4, T, Q> &v) {
+
1985  return glm::vec<4, T, Q>(v.z, v.x, v.w, v.x);
+
1986  }
+
1987 
+
1988  // zxwy
+
1989  template<typename T, qualifier Q>
+
1990  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxwy(const glm::vec<4, T, Q> &v) {
+
1991  return glm::vec<4, T, Q>(v.z, v.x, v.w, v.y);
+
1992  }
+
1993 
+
1994  // zxwz
+
1995  template<typename T, qualifier Q>
+
1996  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxwz(const glm::vec<4, T, Q> &v) {
+
1997  return glm::vec<4, T, Q>(v.z, v.x, v.w, v.z);
+
1998  }
+
1999 
+
2000  // zxww
+
2001  template<typename T, qualifier Q>
+
2002  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zxww(const glm::vec<4, T, Q> &v) {
+
2003  return glm::vec<4, T, Q>(v.z, v.x, v.w, v.w);
+
2004  }
+
2005 
+
2006  // zyxx
+
2007  template<typename T, qualifier Q>
+
2008  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyxx(const glm::vec<3, T, Q> &v) {
+
2009  return glm::vec<4, T, Q>(v.z, v.y, v.x, v.x);
+
2010  }
+
2011 
+
2012  template<typename T, qualifier Q>
+
2013  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyxx(const glm::vec<4, T, Q> &v) {
+
2014  return glm::vec<4, T, Q>(v.z, v.y, v.x, v.x);
+
2015  }
+
2016 
+
2017  // zyxy
+
2018  template<typename T, qualifier Q>
+
2019  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyxy(const glm::vec<3, T, Q> &v) {
+
2020  return glm::vec<4, T, Q>(v.z, v.y, v.x, v.y);
+
2021  }
+
2022 
+
2023  template<typename T, qualifier Q>
+
2024  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyxy(const glm::vec<4, T, Q> &v) {
+
2025  return glm::vec<4, T, Q>(v.z, v.y, v.x, v.y);
+
2026  }
+
2027 
+
2028  // zyxz
+
2029  template<typename T, qualifier Q>
+
2030  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyxz(const glm::vec<3, T, Q> &v) {
+
2031  return glm::vec<4, T, Q>(v.z, v.y, v.x, v.z);
+
2032  }
+
2033 
+
2034  template<typename T, qualifier Q>
+
2035  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyxz(const glm::vec<4, T, Q> &v) {
+
2036  return glm::vec<4, T, Q>(v.z, v.y, v.x, v.z);
+
2037  }
+
2038 
+
2039  // zyxw
+
2040  template<typename T, qualifier Q>
+
2041  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyxw(const glm::vec<4, T, Q> &v) {
+
2042  return glm::vec<4, T, Q>(v.z, v.y, v.x, v.w);
+
2043  }
+
2044 
+
2045  // zyyx
+
2046  template<typename T, qualifier Q>
+
2047  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyyx(const glm::vec<3, T, Q> &v) {
+
2048  return glm::vec<4, T, Q>(v.z, v.y, v.y, v.x);
+
2049  }
+
2050 
+
2051  template<typename T, qualifier Q>
+
2052  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyyx(const glm::vec<4, T, Q> &v) {
+
2053  return glm::vec<4, T, Q>(v.z, v.y, v.y, v.x);
+
2054  }
+
2055 
+
2056  // zyyy
+
2057  template<typename T, qualifier Q>
+
2058  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyyy(const glm::vec<3, T, Q> &v) {
+
2059  return glm::vec<4, T, Q>(v.z, v.y, v.y, v.y);
+
2060  }
+
2061 
+
2062  template<typename T, qualifier Q>
+
2063  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyyy(const glm::vec<4, T, Q> &v) {
+
2064  return glm::vec<4, T, Q>(v.z, v.y, v.y, v.y);
+
2065  }
+
2066 
+
2067  // zyyz
+
2068  template<typename T, qualifier Q>
+
2069  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyyz(const glm::vec<3, T, Q> &v) {
+
2070  return glm::vec<4, T, Q>(v.z, v.y, v.y, v.z);
+
2071  }
+
2072 
+
2073  template<typename T, qualifier Q>
+
2074  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyyz(const glm::vec<4, T, Q> &v) {
+
2075  return glm::vec<4, T, Q>(v.z, v.y, v.y, v.z);
+
2076  }
+
2077 
+
2078  // zyyw
+
2079  template<typename T, qualifier Q>
+
2080  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyyw(const glm::vec<4, T, Q> &v) {
+
2081  return glm::vec<4, T, Q>(v.z, v.y, v.y, v.w);
+
2082  }
+
2083 
+
2084  // zyzx
+
2085  template<typename T, qualifier Q>
+
2086  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyzx(const glm::vec<3, T, Q> &v) {
+
2087  return glm::vec<4, T, Q>(v.z, v.y, v.z, v.x);
+
2088  }
+
2089 
+
2090  template<typename T, qualifier Q>
+
2091  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyzx(const glm::vec<4, T, Q> &v) {
+
2092  return glm::vec<4, T, Q>(v.z, v.y, v.z, v.x);
+
2093  }
+
2094 
+
2095  // zyzy
+
2096  template<typename T, qualifier Q>
+
2097  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyzy(const glm::vec<3, T, Q> &v) {
+
2098  return glm::vec<4, T, Q>(v.z, v.y, v.z, v.y);
+
2099  }
+
2100 
+
2101  template<typename T, qualifier Q>
+
2102  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyzy(const glm::vec<4, T, Q> &v) {
+
2103  return glm::vec<4, T, Q>(v.z, v.y, v.z, v.y);
+
2104  }
+
2105 
+
2106  // zyzz
+
2107  template<typename T, qualifier Q>
+
2108  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyzz(const glm::vec<3, T, Q> &v) {
+
2109  return glm::vec<4, T, Q>(v.z, v.y, v.z, v.z);
+
2110  }
+
2111 
+
2112  template<typename T, qualifier Q>
+
2113  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyzz(const glm::vec<4, T, Q> &v) {
+
2114  return glm::vec<4, T, Q>(v.z, v.y, v.z, v.z);
+
2115  }
+
2116 
+
2117  // zyzw
+
2118  template<typename T, qualifier Q>
+
2119  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyzw(const glm::vec<4, T, Q> &v) {
+
2120  return glm::vec<4, T, Q>(v.z, v.y, v.z, v.w);
+
2121  }
+
2122 
+
2123  // zywx
+
2124  template<typename T, qualifier Q>
+
2125  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zywx(const glm::vec<4, T, Q> &v) {
+
2126  return glm::vec<4, T, Q>(v.z, v.y, v.w, v.x);
+
2127  }
+
2128 
+
2129  // zywy
+
2130  template<typename T, qualifier Q>
+
2131  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zywy(const glm::vec<4, T, Q> &v) {
+
2132  return glm::vec<4, T, Q>(v.z, v.y, v.w, v.y);
+
2133  }
+
2134 
+
2135  // zywz
+
2136  template<typename T, qualifier Q>
+
2137  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zywz(const glm::vec<4, T, Q> &v) {
+
2138  return glm::vec<4, T, Q>(v.z, v.y, v.w, v.z);
+
2139  }
+
2140 
+
2141  // zyww
+
2142  template<typename T, qualifier Q>
+
2143  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zyww(const glm::vec<4, T, Q> &v) {
+
2144  return glm::vec<4, T, Q>(v.z, v.y, v.w, v.w);
+
2145  }
+
2146 
+
2147  // zzxx
+
2148  template<typename T, qualifier Q>
+
2149  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzxx(const glm::vec<3, T, Q> &v) {
+
2150  return glm::vec<4, T, Q>(v.z, v.z, v.x, v.x);
+
2151  }
+
2152 
+
2153  template<typename T, qualifier Q>
+
2154  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzxx(const glm::vec<4, T, Q> &v) {
+
2155  return glm::vec<4, T, Q>(v.z, v.z, v.x, v.x);
+
2156  }
+
2157 
+
2158  // zzxy
+
2159  template<typename T, qualifier Q>
+
2160  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzxy(const glm::vec<3, T, Q> &v) {
+
2161  return glm::vec<4, T, Q>(v.z, v.z, v.x, v.y);
+
2162  }
+
2163 
+
2164  template<typename T, qualifier Q>
+
2165  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzxy(const glm::vec<4, T, Q> &v) {
+
2166  return glm::vec<4, T, Q>(v.z, v.z, v.x, v.y);
+
2167  }
+
2168 
+
2169  // zzxz
+
2170  template<typename T, qualifier Q>
+
2171  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzxz(const glm::vec<3, T, Q> &v) {
+
2172  return glm::vec<4, T, Q>(v.z, v.z, v.x, v.z);
+
2173  }
+
2174 
+
2175  template<typename T, qualifier Q>
+
2176  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzxz(const glm::vec<4, T, Q> &v) {
+
2177  return glm::vec<4, T, Q>(v.z, v.z, v.x, v.z);
+
2178  }
+
2179 
+
2180  // zzxw
+
2181  template<typename T, qualifier Q>
+
2182  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzxw(const glm::vec<4, T, Q> &v) {
+
2183  return glm::vec<4, T, Q>(v.z, v.z, v.x, v.w);
+
2184  }
+
2185 
+
2186  // zzyx
+
2187  template<typename T, qualifier Q>
+
2188  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzyx(const glm::vec<3, T, Q> &v) {
+
2189  return glm::vec<4, T, Q>(v.z, v.z, v.y, v.x);
+
2190  }
+
2191 
+
2192  template<typename T, qualifier Q>
+
2193  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzyx(const glm::vec<4, T, Q> &v) {
+
2194  return glm::vec<4, T, Q>(v.z, v.z, v.y, v.x);
+
2195  }
+
2196 
+
2197  // zzyy
+
2198  template<typename T, qualifier Q>
+
2199  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzyy(const glm::vec<3, T, Q> &v) {
+
2200  return glm::vec<4, T, Q>(v.z, v.z, v.y, v.y);
+
2201  }
+
2202 
+
2203  template<typename T, qualifier Q>
+
2204  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzyy(const glm::vec<4, T, Q> &v) {
+
2205  return glm::vec<4, T, Q>(v.z, v.z, v.y, v.y);
+
2206  }
+
2207 
+
2208  // zzyz
+
2209  template<typename T, qualifier Q>
+
2210  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzyz(const glm::vec<3, T, Q> &v) {
+
2211  return glm::vec<4, T, Q>(v.z, v.z, v.y, v.z);
+
2212  }
+
2213 
+
2214  template<typename T, qualifier Q>
+
2215  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzyz(const glm::vec<4, T, Q> &v) {
+
2216  return glm::vec<4, T, Q>(v.z, v.z, v.y, v.z);
+
2217  }
+
2218 
+
2219  // zzyw
+
2220  template<typename T, qualifier Q>
+
2221  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzyw(const glm::vec<4, T, Q> &v) {
+
2222  return glm::vec<4, T, Q>(v.z, v.z, v.y, v.w);
+
2223  }
+
2224 
+
2225  // zzzx
+
2226  template<typename T, qualifier Q>
+
2227  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzzx(const glm::vec<3, T, Q> &v) {
+
2228  return glm::vec<4, T, Q>(v.z, v.z, v.z, v.x);
+
2229  }
+
2230 
+
2231  template<typename T, qualifier Q>
+
2232  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzzx(const glm::vec<4, T, Q> &v) {
+
2233  return glm::vec<4, T, Q>(v.z, v.z, v.z, v.x);
+
2234  }
+
2235 
+
2236  // zzzy
+
2237  template<typename T, qualifier Q>
+
2238  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzzy(const glm::vec<3, T, Q> &v) {
+
2239  return glm::vec<4, T, Q>(v.z, v.z, v.z, v.y);
+
2240  }
+
2241 
+
2242  template<typename T, qualifier Q>
+
2243  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzzy(const glm::vec<4, T, Q> &v) {
+
2244  return glm::vec<4, T, Q>(v.z, v.z, v.z, v.y);
+
2245  }
+
2246 
+
2247  // zzzz
+
2248  template<typename T, qualifier Q>
+
2249  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzzz(const glm::vec<3, T, Q> &v) {
+
2250  return glm::vec<4, T, Q>(v.z, v.z, v.z, v.z);
+
2251  }
+
2252 
+
2253  template<typename T, qualifier Q>
+
2254  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzzz(const glm::vec<4, T, Q> &v) {
+
2255  return glm::vec<4, T, Q>(v.z, v.z, v.z, v.z);
+
2256  }
+
2257 
+
2258  // zzzw
+
2259  template<typename T, qualifier Q>
+
2260  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzzw(const glm::vec<4, T, Q> &v) {
+
2261  return glm::vec<4, T, Q>(v.z, v.z, v.z, v.w);
+
2262  }
+
2263 
+
2264  // zzwx
+
2265  template<typename T, qualifier Q>
+
2266  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzwx(const glm::vec<4, T, Q> &v) {
+
2267  return glm::vec<4, T, Q>(v.z, v.z, v.w, v.x);
+
2268  }
+
2269 
+
2270  // zzwy
+
2271  template<typename T, qualifier Q>
+
2272  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzwy(const glm::vec<4, T, Q> &v) {
+
2273  return glm::vec<4, T, Q>(v.z, v.z, v.w, v.y);
+
2274  }
+
2275 
+
2276  // zzwz
+
2277  template<typename T, qualifier Q>
+
2278  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzwz(const glm::vec<4, T, Q> &v) {
+
2279  return glm::vec<4, T, Q>(v.z, v.z, v.w, v.z);
+
2280  }
+
2281 
+
2282  // zzww
+
2283  template<typename T, qualifier Q>
+
2284  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zzww(const glm::vec<4, T, Q> &v) {
+
2285  return glm::vec<4, T, Q>(v.z, v.z, v.w, v.w);
+
2286  }
+
2287 
+
2288  // zwxx
+
2289  template<typename T, qualifier Q>
+
2290  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwxx(const glm::vec<4, T, Q> &v) {
+
2291  return glm::vec<4, T, Q>(v.z, v.w, v.x, v.x);
+
2292  }
+
2293 
+
2294  // zwxy
+
2295  template<typename T, qualifier Q>
+
2296  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwxy(const glm::vec<4, T, Q> &v) {
+
2297  return glm::vec<4, T, Q>(v.z, v.w, v.x, v.y);
+
2298  }
+
2299 
+
2300  // zwxz
+
2301  template<typename T, qualifier Q>
+
2302  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwxz(const glm::vec<4, T, Q> &v) {
+
2303  return glm::vec<4, T, Q>(v.z, v.w, v.x, v.z);
+
2304  }
+
2305 
+
2306  // zwxw
+
2307  template<typename T, qualifier Q>
+
2308  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwxw(const glm::vec<4, T, Q> &v) {
+
2309  return glm::vec<4, T, Q>(v.z, v.w, v.x, v.w);
+
2310  }
+
2311 
+
2312  // zwyx
+
2313  template<typename T, qualifier Q>
+
2314  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwyx(const glm::vec<4, T, Q> &v) {
+
2315  return glm::vec<4, T, Q>(v.z, v.w, v.y, v.x);
+
2316  }
+
2317 
+
2318  // zwyy
+
2319  template<typename T, qualifier Q>
+
2320  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwyy(const glm::vec<4, T, Q> &v) {
+
2321  return glm::vec<4, T, Q>(v.z, v.w, v.y, v.y);
+
2322  }
+
2323 
+
2324  // zwyz
+
2325  template<typename T, qualifier Q>
+
2326  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwyz(const glm::vec<4, T, Q> &v) {
+
2327  return glm::vec<4, T, Q>(v.z, v.w, v.y, v.z);
+
2328  }
+
2329 
+
2330  // zwyw
+
2331  template<typename T, qualifier Q>
+
2332  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwyw(const glm::vec<4, T, Q> &v) {
+
2333  return glm::vec<4, T, Q>(v.z, v.w, v.y, v.w);
+
2334  }
+
2335 
+
2336  // zwzx
+
2337  template<typename T, qualifier Q>
+
2338  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwzx(const glm::vec<4, T, Q> &v) {
+
2339  return glm::vec<4, T, Q>(v.z, v.w, v.z, v.x);
+
2340  }
+
2341 
+
2342  // zwzy
+
2343  template<typename T, qualifier Q>
+
2344  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwzy(const glm::vec<4, T, Q> &v) {
+
2345  return glm::vec<4, T, Q>(v.z, v.w, v.z, v.y);
+
2346  }
+
2347 
+
2348  // zwzz
+
2349  template<typename T, qualifier Q>
+
2350  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwzz(const glm::vec<4, T, Q> &v) {
+
2351  return glm::vec<4, T, Q>(v.z, v.w, v.z, v.z);
+
2352  }
+
2353 
+
2354  // zwzw
+
2355  template<typename T, qualifier Q>
+
2356  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwzw(const glm::vec<4, T, Q> &v) {
+
2357  return glm::vec<4, T, Q>(v.z, v.w, v.z, v.w);
+
2358  }
+
2359 
+
2360  // zwwx
+
2361  template<typename T, qualifier Q>
+
2362  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwwx(const glm::vec<4, T, Q> &v) {
+
2363  return glm::vec<4, T, Q>(v.z, v.w, v.w, v.x);
+
2364  }
+
2365 
+
2366  // zwwy
+
2367  template<typename T, qualifier Q>
+
2368  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwwy(const glm::vec<4, T, Q> &v) {
+
2369  return glm::vec<4, T, Q>(v.z, v.w, v.w, v.y);
+
2370  }
+
2371 
+
2372  // zwwz
+
2373  template<typename T, qualifier Q>
+
2374  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwwz(const glm::vec<4, T, Q> &v) {
+
2375  return glm::vec<4, T, Q>(v.z, v.w, v.w, v.z);
+
2376  }
+
2377 
+
2378  // zwww
+
2379  template<typename T, qualifier Q>
+
2380  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> zwww(const glm::vec<4, T, Q> &v) {
+
2381  return glm::vec<4, T, Q>(v.z, v.w, v.w, v.w);
+
2382  }
+
2383 
+
2384  // wxxx
+
2385  template<typename T, qualifier Q>
+
2386  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxxx(const glm::vec<4, T, Q> &v) {
+
2387  return glm::vec<4, T, Q>(v.w, v.x, v.x, v.x);
+
2388  }
+
2389 
+
2390  // wxxy
+
2391  template<typename T, qualifier Q>
+
2392  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxxy(const glm::vec<4, T, Q> &v) {
+
2393  return glm::vec<4, T, Q>(v.w, v.x, v.x, v.y);
+
2394  }
+
2395 
+
2396  // wxxz
+
2397  template<typename T, qualifier Q>
+
2398  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxxz(const glm::vec<4, T, Q> &v) {
+
2399  return glm::vec<4, T, Q>(v.w, v.x, v.x, v.z);
+
2400  }
+
2401 
+
2402  // wxxw
+
2403  template<typename T, qualifier Q>
+
2404  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxxw(const glm::vec<4, T, Q> &v) {
+
2405  return glm::vec<4, T, Q>(v.w, v.x, v.x, v.w);
+
2406  }
+
2407 
+
2408  // wxyx
+
2409  template<typename T, qualifier Q>
+
2410  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxyx(const glm::vec<4, T, Q> &v) {
+
2411  return glm::vec<4, T, Q>(v.w, v.x, v.y, v.x);
+
2412  }
+
2413 
+
2414  // wxyy
+
2415  template<typename T, qualifier Q>
+
2416  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxyy(const glm::vec<4, T, Q> &v) {
+
2417  return glm::vec<4, T, Q>(v.w, v.x, v.y, v.y);
+
2418  }
+
2419 
+
2420  // wxyz
+
2421  template<typename T, qualifier Q>
+
2422  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxyz(const glm::vec<4, T, Q> &v) {
+
2423  return glm::vec<4, T, Q>(v.w, v.x, v.y, v.z);
+
2424  }
+
2425 
+
2426  // wxyw
+
2427  template<typename T, qualifier Q>
+
2428  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxyw(const glm::vec<4, T, Q> &v) {
+
2429  return glm::vec<4, T, Q>(v.w, v.x, v.y, v.w);
+
2430  }
+
2431 
+
2432  // wxzx
+
2433  template<typename T, qualifier Q>
+
2434  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxzx(const glm::vec<4, T, Q> &v) {
+
2435  return glm::vec<4, T, Q>(v.w, v.x, v.z, v.x);
+
2436  }
+
2437 
+
2438  // wxzy
+
2439  template<typename T, qualifier Q>
+
2440  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxzy(const glm::vec<4, T, Q> &v) {
+
2441  return glm::vec<4, T, Q>(v.w, v.x, v.z, v.y);
+
2442  }
+
2443 
+
2444  // wxzz
+
2445  template<typename T, qualifier Q>
+
2446  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxzz(const glm::vec<4, T, Q> &v) {
+
2447  return glm::vec<4, T, Q>(v.w, v.x, v.z, v.z);
+
2448  }
+
2449 
+
2450  // wxzw
+
2451  template<typename T, qualifier Q>
+
2452  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxzw(const glm::vec<4, T, Q> &v) {
+
2453  return glm::vec<4, T, Q>(v.w, v.x, v.z, v.w);
+
2454  }
+
2455 
+
2456  // wxwx
+
2457  template<typename T, qualifier Q>
+
2458  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxwx(const glm::vec<4, T, Q> &v) {
+
2459  return glm::vec<4, T, Q>(v.w, v.x, v.w, v.x);
+
2460  }
+
2461 
+
2462  // wxwy
+
2463  template<typename T, qualifier Q>
+
2464  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxwy(const glm::vec<4, T, Q> &v) {
+
2465  return glm::vec<4, T, Q>(v.w, v.x, v.w, v.y);
+
2466  }
+
2467 
+
2468  // wxwz
+
2469  template<typename T, qualifier Q>
+
2470  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxwz(const glm::vec<4, T, Q> &v) {
+
2471  return glm::vec<4, T, Q>(v.w, v.x, v.w, v.z);
+
2472  }
+
2473 
+
2474  // wxww
+
2475  template<typename T, qualifier Q>
+
2476  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wxww(const glm::vec<4, T, Q> &v) {
+
2477  return glm::vec<4, T, Q>(v.w, v.x, v.w, v.w);
+
2478  }
+
2479 
+
2480  // wyxx
+
2481  template<typename T, qualifier Q>
+
2482  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyxx(const glm::vec<4, T, Q> &v) {
+
2483  return glm::vec<4, T, Q>(v.w, v.y, v.x, v.x);
+
2484  }
+
2485 
+
2486  // wyxy
+
2487  template<typename T, qualifier Q>
+
2488  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyxy(const glm::vec<4, T, Q> &v) {
+
2489  return glm::vec<4, T, Q>(v.w, v.y, v.x, v.y);
+
2490  }
+
2491 
+
2492  // wyxz
+
2493  template<typename T, qualifier Q>
+
2494  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyxz(const glm::vec<4, T, Q> &v) {
+
2495  return glm::vec<4, T, Q>(v.w, v.y, v.x, v.z);
+
2496  }
+
2497 
+
2498  // wyxw
+
2499  template<typename T, qualifier Q>
+
2500  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyxw(const glm::vec<4, T, Q> &v) {
+
2501  return glm::vec<4, T, Q>(v.w, v.y, v.x, v.w);
+
2502  }
+
2503 
+
2504  // wyyx
+
2505  template<typename T, qualifier Q>
+
2506  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyyx(const glm::vec<4, T, Q> &v) {
+
2507  return glm::vec<4, T, Q>(v.w, v.y, v.y, v.x);
+
2508  }
+
2509 
+
2510  // wyyy
+
2511  template<typename T, qualifier Q>
+
2512  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyyy(const glm::vec<4, T, Q> &v) {
+
2513  return glm::vec<4, T, Q>(v.w, v.y, v.y, v.y);
+
2514  }
+
2515 
+
2516  // wyyz
+
2517  template<typename T, qualifier Q>
+
2518  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyyz(const glm::vec<4, T, Q> &v) {
+
2519  return glm::vec<4, T, Q>(v.w, v.y, v.y, v.z);
+
2520  }
+
2521 
+
2522  // wyyw
+
2523  template<typename T, qualifier Q>
+
2524  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyyw(const glm::vec<4, T, Q> &v) {
+
2525  return glm::vec<4, T, Q>(v.w, v.y, v.y, v.w);
+
2526  }
+
2527 
+
2528  // wyzx
+
2529  template<typename T, qualifier Q>
+
2530  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyzx(const glm::vec<4, T, Q> &v) {
+
2531  return glm::vec<4, T, Q>(v.w, v.y, v.z, v.x);
+
2532  }
+
2533 
+
2534  // wyzy
+
2535  template<typename T, qualifier Q>
+
2536  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyzy(const glm::vec<4, T, Q> &v) {
+
2537  return glm::vec<4, T, Q>(v.w, v.y, v.z, v.y);
+
2538  }
+
2539 
+
2540  // wyzz
+
2541  template<typename T, qualifier Q>
+
2542  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyzz(const glm::vec<4, T, Q> &v) {
+
2543  return glm::vec<4, T, Q>(v.w, v.y, v.z, v.z);
+
2544  }
+
2545 
+
2546  // wyzw
+
2547  template<typename T, qualifier Q>
+
2548  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyzw(const glm::vec<4, T, Q> &v) {
+
2549  return glm::vec<4, T, Q>(v.w, v.y, v.z, v.w);
+
2550  }
+
2551 
+
2552  // wywx
+
2553  template<typename T, qualifier Q>
+
2554  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wywx(const glm::vec<4, T, Q> &v) {
+
2555  return glm::vec<4, T, Q>(v.w, v.y, v.w, v.x);
+
2556  }
+
2557 
+
2558  // wywy
+
2559  template<typename T, qualifier Q>
+
2560  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wywy(const glm::vec<4, T, Q> &v) {
+
2561  return glm::vec<4, T, Q>(v.w, v.y, v.w, v.y);
+
2562  }
+
2563 
+
2564  // wywz
+
2565  template<typename T, qualifier Q>
+
2566  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wywz(const glm::vec<4, T, Q> &v) {
+
2567  return glm::vec<4, T, Q>(v.w, v.y, v.w, v.z);
+
2568  }
+
2569 
+
2570  // wyww
+
2571  template<typename T, qualifier Q>
+
2572  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wyww(const glm::vec<4, T, Q> &v) {
+
2573  return glm::vec<4, T, Q>(v.w, v.y, v.w, v.w);
+
2574  }
+
2575 
+
2576  // wzxx
+
2577  template<typename T, qualifier Q>
+
2578  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzxx(const glm::vec<4, T, Q> &v) {
+
2579  return glm::vec<4, T, Q>(v.w, v.z, v.x, v.x);
+
2580  }
+
2581 
+
2582  // wzxy
+
2583  template<typename T, qualifier Q>
+
2584  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzxy(const glm::vec<4, T, Q> &v) {
+
2585  return glm::vec<4, T, Q>(v.w, v.z, v.x, v.y);
+
2586  }
+
2587 
+
2588  // wzxz
+
2589  template<typename T, qualifier Q>
+
2590  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzxz(const glm::vec<4, T, Q> &v) {
+
2591  return glm::vec<4, T, Q>(v.w, v.z, v.x, v.z);
+
2592  }
+
2593 
+
2594  // wzxw
+
2595  template<typename T, qualifier Q>
+
2596  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzxw(const glm::vec<4, T, Q> &v) {
+
2597  return glm::vec<4, T, Q>(v.w, v.z, v.x, v.w);
+
2598  }
+
2599 
+
2600  // wzyx
+
2601  template<typename T, qualifier Q>
+
2602  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzyx(const glm::vec<4, T, Q> &v) {
+
2603  return glm::vec<4, T, Q>(v.w, v.z, v.y, v.x);
+
2604  }
+
2605 
+
2606  // wzyy
+
2607  template<typename T, qualifier Q>
+
2608  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzyy(const glm::vec<4, T, Q> &v) {
+
2609  return glm::vec<4, T, Q>(v.w, v.z, v.y, v.y);
+
2610  }
+
2611 
+
2612  // wzyz
+
2613  template<typename T, qualifier Q>
+
2614  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzyz(const glm::vec<4, T, Q> &v) {
+
2615  return glm::vec<4, T, Q>(v.w, v.z, v.y, v.z);
+
2616  }
+
2617 
+
2618  // wzyw
+
2619  template<typename T, qualifier Q>
+
2620  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzyw(const glm::vec<4, T, Q> &v) {
+
2621  return glm::vec<4, T, Q>(v.w, v.z, v.y, v.w);
+
2622  }
+
2623 
+
2624  // wzzx
+
2625  template<typename T, qualifier Q>
+
2626  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzzx(const glm::vec<4, T, Q> &v) {
+
2627  return glm::vec<4, T, Q>(v.w, v.z, v.z, v.x);
+
2628  }
+
2629 
+
2630  // wzzy
+
2631  template<typename T, qualifier Q>
+
2632  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzzy(const glm::vec<4, T, Q> &v) {
+
2633  return glm::vec<4, T, Q>(v.w, v.z, v.z, v.y);
+
2634  }
+
2635 
+
2636  // wzzz
+
2637  template<typename T, qualifier Q>
+
2638  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzzz(const glm::vec<4, T, Q> &v) {
+
2639  return glm::vec<4, T, Q>(v.w, v.z, v.z, v.z);
+
2640  }
+
2641 
+
2642  // wzzw
+
2643  template<typename T, qualifier Q>
+
2644  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzzw(const glm::vec<4, T, Q> &v) {
+
2645  return glm::vec<4, T, Q>(v.w, v.z, v.z, v.w);
+
2646  }
+
2647 
+
2648  // wzwx
+
2649  template<typename T, qualifier Q>
+
2650  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzwx(const glm::vec<4, T, Q> &v) {
+
2651  return glm::vec<4, T, Q>(v.w, v.z, v.w, v.x);
+
2652  }
+
2653 
+
2654  // wzwy
+
2655  template<typename T, qualifier Q>
+
2656  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzwy(const glm::vec<4, T, Q> &v) {
+
2657  return glm::vec<4, T, Q>(v.w, v.z, v.w, v.y);
+
2658  }
+
2659 
+
2660  // wzwz
+
2661  template<typename T, qualifier Q>
+
2662  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzwz(const glm::vec<4, T, Q> &v) {
+
2663  return glm::vec<4, T, Q>(v.w, v.z, v.w, v.z);
+
2664  }
+
2665 
+
2666  // wzww
+
2667  template<typename T, qualifier Q>
+
2668  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wzww(const glm::vec<4, T, Q> &v) {
+
2669  return glm::vec<4, T, Q>(v.w, v.z, v.w, v.w);
+
2670  }
+
2671 
+
2672  // wwxx
+
2673  template<typename T, qualifier Q>
+
2674  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwxx(const glm::vec<4, T, Q> &v) {
+
2675  return glm::vec<4, T, Q>(v.w, v.w, v.x, v.x);
+
2676  }
+
2677 
+
2678  // wwxy
+
2679  template<typename T, qualifier Q>
+
2680  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwxy(const glm::vec<4, T, Q> &v) {
+
2681  return glm::vec<4, T, Q>(v.w, v.w, v.x, v.y);
+
2682  }
+
2683 
+
2684  // wwxz
+
2685  template<typename T, qualifier Q>
+
2686  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwxz(const glm::vec<4, T, Q> &v) {
+
2687  return glm::vec<4, T, Q>(v.w, v.w, v.x, v.z);
+
2688  }
+
2689 
+
2690  // wwxw
+
2691  template<typename T, qualifier Q>
+
2692  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwxw(const glm::vec<4, T, Q> &v) {
+
2693  return glm::vec<4, T, Q>(v.w, v.w, v.x, v.w);
+
2694  }
+
2695 
+
2696  // wwyx
+
2697  template<typename T, qualifier Q>
+
2698  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwyx(const glm::vec<4, T, Q> &v) {
+
2699  return glm::vec<4, T, Q>(v.w, v.w, v.y, v.x);
+
2700  }
+
2701 
+
2702  // wwyy
+
2703  template<typename T, qualifier Q>
+
2704  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwyy(const glm::vec<4, T, Q> &v) {
+
2705  return glm::vec<4, T, Q>(v.w, v.w, v.y, v.y);
+
2706  }
+
2707 
+
2708  // wwyz
+
2709  template<typename T, qualifier Q>
+
2710  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwyz(const glm::vec<4, T, Q> &v) {
+
2711  return glm::vec<4, T, Q>(v.w, v.w, v.y, v.z);
+
2712  }
+
2713 
+
2714  // wwyw
+
2715  template<typename T, qualifier Q>
+
2716  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwyw(const glm::vec<4, T, Q> &v) {
+
2717  return glm::vec<4, T, Q>(v.w, v.w, v.y, v.w);
+
2718  }
+
2719 
+
2720  // wwzx
+
2721  template<typename T, qualifier Q>
+
2722  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwzx(const glm::vec<4, T, Q> &v) {
+
2723  return glm::vec<4, T, Q>(v.w, v.w, v.z, v.x);
+
2724  }
+
2725 
+
2726  // wwzy
+
2727  template<typename T, qualifier Q>
+
2728  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwzy(const glm::vec<4, T, Q> &v) {
+
2729  return glm::vec<4, T, Q>(v.w, v.w, v.z, v.y);
+
2730  }
+
2731 
+
2732  // wwzz
+
2733  template<typename T, qualifier Q>
+
2734  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwzz(const glm::vec<4, T, Q> &v) {
+
2735  return glm::vec<4, T, Q>(v.w, v.w, v.z, v.z);
+
2736  }
+
2737 
+
2738  // wwzw
+
2739  template<typename T, qualifier Q>
+
2740  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwzw(const glm::vec<4, T, Q> &v) {
+
2741  return glm::vec<4, T, Q>(v.w, v.w, v.z, v.w);
+
2742  }
+
2743 
+
2744  // wwwx
+
2745  template<typename T, qualifier Q>
+
2746  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwwx(const glm::vec<4, T, Q> &v) {
+
2747  return glm::vec<4, T, Q>(v.w, v.w, v.w, v.x);
+
2748  }
+
2749 
+
2750  // wwwy
+
2751  template<typename T, qualifier Q>
+
2752  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwwy(const glm::vec<4, T, Q> &v) {
+
2753  return glm::vec<4, T, Q>(v.w, v.w, v.w, v.y);
+
2754  }
+
2755 
+
2756  // wwwz
+
2757  template<typename T, qualifier Q>
+
2758  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwwz(const glm::vec<4, T, Q> &v) {
+
2759  return glm::vec<4, T, Q>(v.w, v.w, v.w, v.z);
+
2760  }
+
2761 
+
2762  // wwww
+
2763  template<typename T, qualifier Q>
+
2764  GLM_FUNC_QUALIFIER glm::vec<4, T, Q> wwww(const glm::vec<4, T, Q> &v) {
+
2765  return glm::vec<4, T, Q>(v.w, v.w, v.w, v.w);
+
2766  }
+
2767 
+
2769 }//namespace glm
+
+ + + + diff --git a/include/glm/doc/api/a00758.html b/include/glm/doc/api/a00758.html new file mode 100644 index 0000000..d3bd89d --- /dev/null +++ b/include/glm/doc/api/a00758.html @@ -0,0 +1,113 @@ + + + + + + + +1.0.2 API documentation: vector_angle.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_angle.hpp File Reference
+
+
+ +

GLM_GTX_vector_angle +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T angle (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the absolute angle between two vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T orientedAngle (vec< 2, T, Q > const &x, vec< 2, T, Q > const &y)
 Returns the oriented angle between two 2d vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T orientedAngle (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, vec< 3, T, Q > const &ref)
 Returns the oriented angle between two 3d vectors based from a reference axis. More...
 
+

Detailed Description

+

GLM_GTX_vector_angle

+
See also
Core features (dependence)
+
+GLM_GTX_quaternion (dependence)
+
+gtx_epsilon (dependence)
+ +

Definition in file vector_angle.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00758_source.html b/include/glm/doc/api/a00758_source.html new file mode 100644 index 0000000..d13ad2d --- /dev/null +++ b/include/glm/doc/api/a00758_source.html @@ -0,0 +1,113 @@ + + + + + + + +1.0.2 API documentation: vector_angle.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_angle.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependency:
+
18 #include "../glm.hpp"
+
19 #include "../gtc/epsilon.hpp"
+
20 #include "../gtx/quaternion.hpp"
+
21 #include "../gtx/rotate_vector.hpp"
+
22 
+
23 #ifndef GLM_ENABLE_EXPERIMENTAL
+
24 # error "GLM: GLM_GTX_vector_angle is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
25 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
26 # pragma message("GLM: GLM_GTX_vector_angle extension included")
+
27 #endif
+
28 
+
29 namespace glm
+
30 {
+
33 
+
37  template<length_t L, typename T, qualifier Q>
+
38  GLM_FUNC_DECL T angle(vec<L, T, Q> const& x, vec<L, T, Q> const& y);
+
39 
+
43  template<typename T, qualifier Q>
+
44  GLM_FUNC_DECL T orientedAngle(vec<2, T, Q> const& x, vec<2, T, Q> const& y);
+
45 
+
49  template<typename T, qualifier Q>
+
50  GLM_FUNC_DECL T orientedAngle(vec<3, T, Q> const& x, vec<3, T, Q> const& y, vec<3, T, Q> const& ref);
+
51 
+
53 }// namespace glm
+
54 
+
55 #include "vector_angle.inl"
+
+
GLM_FUNC_DECL T angle(vec< L, T, Q > const &x, vec< L, T, Q > const &y)
Returns the absolute angle between two vectors.
+
GLM_FUNC_DECL T orientedAngle(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, vec< 3, T, Q > const &ref)
Returns the oriented angle between two 3d vectors based from a reference axis.
+ + + + diff --git a/include/glm/doc/api/a00761.html b/include/glm/doc/api/a00761.html new file mode 100644 index 0000000..997d8d4 --- /dev/null +++ b/include/glm/doc/api/a00761.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: vector_query.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
vector_query.hpp File Reference
+
+
+ +

GLM_GTX_vector_query +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool areCollinear (vec< L, T, Q > const &v0, vec< L, T, Q > const &v1, T const &epsilon)
 Check whether two vectors are collinears. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool areOrthogonal (vec< L, T, Q > const &v0, vec< L, T, Q > const &v1, T const &epsilon)
 Check whether two vectors are orthogonals. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool areOrthonormal (vec< L, T, Q > const &v0, vec< L, T, Q > const &v1, T const &epsilon)
 Check whether two vectors are orthonormal. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isCompNull (vec< L, T, Q > const &v, T const &epsilon)
 Check whether a each component of a vector is null. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool isNormalized (vec< L, T, Q > const &v, T const &epsilon)
 Check whether a vector is normalized. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool isNull (vec< L, T, Q > const &v, T const &epsilon)
 Check whether a vector is null. More...
 
+

Detailed Description

+

GLM_GTX_vector_query

+
See also
Core features (dependence)
+ +

Definition in file vector_query.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00761_source.html b/include/glm/doc/api/a00761_source.html new file mode 100644 index 0000000..9a58473 --- /dev/null +++ b/include/glm/doc/api/a00761_source.html @@ -0,0 +1,126 @@ + + + + + + + +1.0.2 API documentation: vector_query.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vector_query.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 #include <cfloat>
+
18 #include <limits>
+
19 
+
20 #ifndef GLM_ENABLE_EXPERIMENTAL
+
21 # error "GLM: GLM_GTX_vector_query is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
22 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTX_vector_query extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
30 
+
33  template<length_t L, typename T, qualifier Q>
+
34  GLM_FUNC_DECL bool areCollinear(vec<L, T, Q> const& v0, vec<L, T, Q> const& v1, T const& epsilon);
+
35 
+
38  template<length_t L, typename T, qualifier Q>
+
39  GLM_FUNC_DECL bool areOrthogonal(vec<L, T, Q> const& v0, vec<L, T, Q> const& v1, T const& epsilon);
+
40 
+
43  template<length_t L, typename T, qualifier Q>
+
44  GLM_FUNC_DECL bool isNormalized(vec<L, T, Q> const& v, T const& epsilon);
+
45 
+
48  template<length_t L, typename T, qualifier Q>
+
49  GLM_FUNC_DECL bool isNull(vec<L, T, Q> const& v, T const& epsilon);
+
50 
+
53  template<length_t L, typename T, qualifier Q>
+
54  GLM_FUNC_DECL vec<L, bool, Q> isCompNull(vec<L, T, Q> const& v, T const& epsilon);
+
55 
+
58  template<length_t L, typename T, qualifier Q>
+
59  GLM_FUNC_DECL bool areOrthonormal(vec<L, T, Q> const& v0, vec<L, T, Q> const& v1, T const& epsilon);
+
60 
+
62 }// namespace glm
+
63 
+
64 #include "vector_query.inl"
+
+
GLM_FUNC_DECL bool isNull(vec< L, T, Q > const &v, T const &epsilon)
Check whether a vector is null.
+
GLM_FUNC_DECL bool areOrthonormal(vec< L, T, Q > const &v0, vec< L, T, Q > const &v1, T const &epsilon)
Check whether two vectors are orthonormal.
+
GLM_FUNC_DECL bool areOrthogonal(vec< L, T, Q > const &v0, vec< L, T, Q > const &v1, T const &epsilon)
Check whether two vectors are orthogonals.
+
GLM_FUNC_DECL bool areCollinear(vec< L, T, Q > const &v0, vec< L, T, Q > const &v1, T const &epsilon)
Check whether two vectors are collinears.
+
GLM_FUNC_DECL vec< L, bool, Q > isCompNull(vec< L, T, Q > const &v, T const &epsilon)
Check whether a each component of a vector is null.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon()
Return the epsilon constant for floating point types.
+
GLM_FUNC_DECL bool isNormalized(vec< L, T, Q > const &v, T const &epsilon)
Check whether a vector is normalized.
+ + + + diff --git a/include/glm/doc/api/a00764.html b/include/glm/doc/api/a00764.html new file mode 100644 index 0000000..eae0f96 --- /dev/null +++ b/include/glm/doc/api/a00764.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: wrap.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
wrap.hpp File Reference
+
+
+ +

GLM_GTX_wrap +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

GLM_GTX_wrap

+
See also
Core features (dependence)
+ +

Definition in file wrap.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00764_source.html b/include/glm/doc/api/a00764_source.html new file mode 100644 index 0000000..d305541 --- /dev/null +++ b/include/glm/doc/api/a00764_source.html @@ -0,0 +1,102 @@ + + + + + + + +1.0.2 API documentation: wrap.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
wrap.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 #include "../ext/scalar_common.hpp"
+
18 #include "../ext/vector_common.hpp"
+
19 #include "../gtc/vec1.hpp"
+
20 
+
21 #ifndef GLM_ENABLE_EXPERIMENTAL
+
22 # error "GLM: GLM_GTX_wrap is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
23 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTX_wrap extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
33 }// namespace glm
+
34 
+
35 #include "wrap.inl"
+
+ + + + diff --git a/include/glm/doc/api/a00767.html b/include/glm/doc/api/a00767.html new file mode 100644 index 0000000..4161adc --- /dev/null +++ b/include/glm/doc/api/a00767.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: mat2x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat2x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file mat2x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00767_source.html b/include/glm/doc/api/a00767_source.html new file mode 100644 index 0000000..6653732 --- /dev/null +++ b/include/glm/doc/api/a00767_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: mat2x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat2x2.hpp
+
+ + +
Core features
+ + + + + + diff --git a/include/glm/doc/api/a00770.html b/include/glm/doc/api/a00770.html new file mode 100644 index 0000000..0ea8fd7 --- /dev/null +++ b/include/glm/doc/api/a00770.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: mat2x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat2x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file mat2x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00770_source.html b/include/glm/doc/api/a00770_source.html new file mode 100644 index 0000000..5dd50d2 --- /dev/null +++ b/include/glm/doc/api/a00770_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: mat2x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat2x3.hpp
+
+ +
Core features
+ + + + + + + diff --git a/include/glm/doc/api/a00773.html b/include/glm/doc/api/a00773.html new file mode 100644 index 0000000..6b566b4 --- /dev/null +++ b/include/glm/doc/api/a00773.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: mat2x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat2x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file mat2x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00773_source.html b/include/glm/doc/api/a00773_source.html new file mode 100644 index 0000000..ec8e44f --- /dev/null +++ b/include/glm/doc/api/a00773_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: mat2x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat2x4.hpp
+
+ + + + +
Core features
+ + + + diff --git a/include/glm/doc/api/a00776.html b/include/glm/doc/api/a00776.html new file mode 100644 index 0000000..4d3a164 --- /dev/null +++ b/include/glm/doc/api/a00776.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: mat3x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat3x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file mat3x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00776_source.html b/include/glm/doc/api/a00776_source.html new file mode 100644 index 0000000..d6eca24 --- /dev/null +++ b/include/glm/doc/api/a00776_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: mat3x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat3x2.hpp
+
+ + +
Core features
+ + + + + + diff --git a/include/glm/doc/api/a00779.html b/include/glm/doc/api/a00779.html new file mode 100644 index 0000000..e1b2891 --- /dev/null +++ b/include/glm/doc/api/a00779.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: mat3x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat3x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file mat3x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00779_source.html b/include/glm/doc/api/a00779_source.html new file mode 100644 index 0000000..6d9d9ee --- /dev/null +++ b/include/glm/doc/api/a00779_source.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: mat3x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat3x3.hpp
+
+ + + + +
Core features
+ + + + diff --git a/include/glm/doc/api/a00782.html b/include/glm/doc/api/a00782.html new file mode 100644 index 0000000..0c66e47 --- /dev/null +++ b/include/glm/doc/api/a00782.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: mat3x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat3x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file mat3x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00782_source.html b/include/glm/doc/api/a00782_source.html new file mode 100644 index 0000000..7c28dc1 --- /dev/null +++ b/include/glm/doc/api/a00782_source.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: mat3x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat3x4.hpp
+
+ + +
Core features
+ + + + + + diff --git a/include/glm/doc/api/a00785.html b/include/glm/doc/api/a00785.html new file mode 100644 index 0000000..a239e0a --- /dev/null +++ b/include/glm/doc/api/a00785.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: mat4x2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat4x2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file mat4x2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00785_source.html b/include/glm/doc/api/a00785_source.html new file mode 100644 index 0000000..c1d3a2b --- /dev/null +++ b/include/glm/doc/api/a00785_source.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: mat4x2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat4x2.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+ + + +
8 #include "./ext/matrix_float4x2_precision.hpp"
+
9 
+
+ +
Core features
+ + + + + diff --git a/include/glm/doc/api/a00788.html b/include/glm/doc/api/a00788.html new file mode 100644 index 0000000..3fbf2e4 --- /dev/null +++ b/include/glm/doc/api/a00788.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: mat4x3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat4x3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file mat4x3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00788_source.html b/include/glm/doc/api/a00788_source.html new file mode 100644 index 0000000..8099ad9 --- /dev/null +++ b/include/glm/doc/api/a00788_source.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: mat4x3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat4x3.hpp
+
+ + + + +
Core features
+ + + + diff --git a/include/glm/doc/api/a00791.html b/include/glm/doc/api/a00791.html new file mode 100644 index 0000000..4f07218 --- /dev/null +++ b/include/glm/doc/api/a00791.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: mat4x4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat4x4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file mat4x4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00791_source.html b/include/glm/doc/api/a00791_source.html new file mode 100644 index 0000000..9560812 --- /dev/null +++ b/include/glm/doc/api/a00791_source.html @@ -0,0 +1,92 @@ + + + + + + + +1.0.2 API documentation: mat4x4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
mat4x4.hpp
+
+ + + + +
Core features
+ + + + diff --git a/include/glm/doc/api/a00794.html b/include/glm/doc/api/a00794.html new file mode 100644 index 0000000..eaf8eb5 --- /dev/null +++ b/include/glm/doc/api/a00794.html @@ -0,0 +1,117 @@ + + + + + + + +1.0.2 API documentation: matrix.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
matrix.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL T determinant (mat< C, R, T, Q > const &m)
 Return the determinant of a squared matrix. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > inverse (mat< C, R, T, Q > const &m)
 Return the inverse of a squared matrix. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > matrixCompMult (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
 Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and y[i][j]. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL detail::outerProduct_trait< C, R, T, Q >::type outerProduct (vec< C, T, Q > const &c, vec< R, T, Q > const &r)
 Treats the first parameter c as a column vector and the second parameter r as a row vector and does a linear algebraic matrix multiply c * r. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q >::transpose_type transpose (mat< C, R, T, Q > const &x)
 Returns the transposed matrix of x. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00794_source.html b/include/glm/doc/api/a00794_source.html new file mode 100644 index 0000000..08670a0 --- /dev/null +++ b/include/glm/doc/api/a00794_source.html @@ -0,0 +1,197 @@ + + + + + + + +1.0.2 API documentation: matrix.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
matrix.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies
+
16 #include "detail/qualifier.hpp"
+
17 #include "detail/setup.hpp"
+
18 #include "vec2.hpp"
+
19 #include "vec3.hpp"
+
20 #include "vec4.hpp"
+
21 #include "mat2x2.hpp"
+
22 #include "mat2x3.hpp"
+
23 #include "mat2x4.hpp"
+
24 #include "mat3x2.hpp"
+
25 #include "mat3x3.hpp"
+
26 #include "mat3x4.hpp"
+
27 #include "mat4x2.hpp"
+
28 #include "mat4x3.hpp"
+
29 #include "mat4x4.hpp"
+
30 
+
31 namespace glm {
+
32 namespace detail
+
33 {
+
34  template<length_t C, length_t R, typename T, qualifier Q>
+
35  struct outerProduct_trait{};
+
36 
+
37  template<typename T, qualifier Q>
+
38  struct outerProduct_trait<2, 2, T, Q>
+
39  {
+
40  typedef mat<2, 2, T, Q> type;
+
41  };
+
42 
+
43  template<typename T, qualifier Q>
+
44  struct outerProduct_trait<2, 3, T, Q>
+
45  {
+
46  typedef mat<3, 2, T, Q> type;
+
47  };
+
48 
+
49  template<typename T, qualifier Q>
+
50  struct outerProduct_trait<2, 4, T, Q>
+
51  {
+
52  typedef mat<4, 2, T, Q> type;
+
53  };
+
54 
+
55  template<typename T, qualifier Q>
+
56  struct outerProduct_trait<3, 2, T, Q>
+
57  {
+
58  typedef mat<2, 3, T, Q> type;
+
59  };
+
60 
+
61  template<typename T, qualifier Q>
+
62  struct outerProduct_trait<3, 3, T, Q>
+
63  {
+
64  typedef mat<3, 3, T, Q> type;
+
65  };
+
66 
+
67  template<typename T, qualifier Q>
+
68  struct outerProduct_trait<3, 4, T, Q>
+
69  {
+
70  typedef mat<4, 3, T, Q> type;
+
71  };
+
72 
+
73  template<typename T, qualifier Q>
+
74  struct outerProduct_trait<4, 2, T, Q>
+
75  {
+
76  typedef mat<2, 4, T, Q> type;
+
77  };
+
78 
+
79  template<typename T, qualifier Q>
+
80  struct outerProduct_trait<4, 3, T, Q>
+
81  {
+
82  typedef mat<3, 4, T, Q> type;
+
83  };
+
84 
+
85  template<typename T, qualifier Q>
+
86  struct outerProduct_trait<4, 4, T, Q>
+
87  {
+
88  typedef mat<4, 4, T, Q> type;
+
89  };
+
90 }//namespace detail
+
91 
+
94 
+
105  template<length_t C, length_t R, typename T, qualifier Q>
+
106  GLM_FUNC_DECL mat<C, R, T, Q> matrixCompMult(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y);
+
107 
+
119  template<length_t C, length_t R, typename T, qualifier Q>
+
120  GLM_FUNC_DECL typename detail::outerProduct_trait<C, R, T, Q>::type outerProduct(vec<C, T, Q> const& c, vec<R, T, Q> const& r);
+
121 
+
131  template<length_t C, length_t R, typename T, qualifier Q>
+
132  GLM_FUNC_DECL typename mat<C, R, T, Q>::transpose_type transpose(mat<C, R, T, Q> const& x);
+
133 
+
143  template<length_t C, length_t R, typename T, qualifier Q>
+
144  GLM_FUNC_DECL T determinant(mat<C, R, T, Q> const& m);
+
145 
+
155  template<length_t C, length_t R, typename T, qualifier Q>
+
156  GLM_FUNC_DECL mat<C, R, T, Q> inverse(mat<C, R, T, Q> const& m);
+
157 
+
159 }//namespace glm
+
160 
+
161 #include "detail/func_matrix.inl"
+
+
GLM_FUNC_DECL T determinant(mat< C, R, T, Q > const &m)
Return the determinant of a squared matrix.
+
Core features
+
GLM_FUNC_DECL mat< C, R, T, Q > inverse(mat< C, R, T, Q > const &m)
Return the inverse of a squared matrix.
+
Core features
+
Core features
+
GLM_FUNC_DECL detail::outerProduct_trait< C, R, T, Q >::type outerProduct(vec< C, T, Q > const &c, vec< R, T, Q > const &r)
Treats the first parameter c as a column vector and the second parameter r as a row vector and does a...
+
Core features
+
Core features
+
Core features
+
GLM_FUNC_DECL mat< C, R, T, Q >::transpose_type transpose(mat< C, R, T, Q > const &x)
Returns the transposed matrix of x.
+
Core features
+
Core features
+
GLM_FUNC_DECL mat< C, R, T, Q > matrixCompMult(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and...
+
Core features
+
Core features
+
Core features
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00797.html b/include/glm/doc/api/a00797.html new file mode 100644 index 0000000..74c6e4a --- /dev/null +++ b/include/glm/doc/api/a00797.html @@ -0,0 +1,157 @@ + + + + + + + +1.0.2 API documentation: trigonometric.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
trigonometric.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > acos (vec< L, T, Q > const &x)
 Arc cosine. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > acosh (vec< L, T, Q > const &x)
 Arc hyperbolic cosine; returns the non-negative inverse of cosh. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > asin (vec< L, T, Q > const &x)
 Arc sine. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > asinh (vec< L, T, Q > const &x)
 Arc hyperbolic sine; returns the inverse of sinh. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > atan (vec< L, T, Q > const &y, vec< L, T, Q > const &x)
 Arc tangent. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > atan (vec< L, T, Q > const &y_over_x)
 Arc tangent. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > atanh (vec< L, T, Q > const &x)
 Arc hyperbolic tangent; returns the inverse of tanh. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > cos (vec< L, T, Q > const &angle)
 The standard trigonometric cosine function. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > cosh (vec< L, T, Q > const &angle)
 Returns the hyperbolic cosine function, (exp(x) + exp(-x)) / 2. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > degrees (vec< L, T, Q > const &radians)
 Converts radians to degrees and returns the result. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > radians (vec< L, T, Q > const &degrees)
 Converts degrees to radians and returns the result. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > sin (vec< L, T, Q > const &angle)
 The standard trigonometric sine function. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > sinh (vec< L, T, Q > const &angle)
 Returns the hyperbolic sine function, (exp(x) - exp(-x)) / 2. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > tan (vec< L, T, Q > const &angle)
 The standard trigonometric tangent function. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > tanh (vec< L, T, Q > const &angle)
 Returns the hyperbolic tangent function, sinh(angle) / cosh(angle) More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a00797_source.html b/include/glm/doc/api/a00797_source.html new file mode 100644 index 0000000..d8c4c07 --- /dev/null +++ b/include/glm/doc/api/a00797_source.html @@ -0,0 +1,153 @@ + + + + + + + +1.0.2 API documentation: trigonometric.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
trigonometric.hpp
+
+
+Go to the documentation of this file.
1 
+
19 #pragma once
+
20 
+
21 #include "detail/setup.hpp"
+
22 #include "detail/qualifier.hpp"
+
23 
+
24 namespace glm
+
25 {
+
28 
+
37  template<length_t L, typename T, qualifier Q>
+
38  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> radians(vec<L, T, Q> const& degrees);
+
39 
+
48  template<length_t L, typename T, qualifier Q>
+
49  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> degrees(vec<L, T, Q> const& radians);
+
50 
+
60  template<length_t L, typename T, qualifier Q>
+
61  GLM_FUNC_DECL vec<L, T, Q> sin(vec<L, T, Q> const& angle);
+
62 
+
72  template<length_t L, typename T, qualifier Q>
+
73  GLM_FUNC_DECL vec<L, T, Q> cos(vec<L, T, Q> const& angle);
+
74 
+
83  template<length_t L, typename T, qualifier Q>
+
84  GLM_FUNC_DECL vec<L, T, Q> tan(vec<L, T, Q> const& angle);
+
85 
+
96  template<length_t L, typename T, qualifier Q>
+
97  GLM_FUNC_DECL vec<L, T, Q> asin(vec<L, T, Q> const& x);
+
98 
+
109  template<length_t L, typename T, qualifier Q>
+
110  GLM_FUNC_DECL vec<L, T, Q> acos(vec<L, T, Q> const& x);
+
111 
+
124  template<length_t L, typename T, qualifier Q>
+
125  GLM_FUNC_DECL vec<L, T, Q> atan(vec<L, T, Q> const& y, vec<L, T, Q> const& x);
+
126 
+
136  template<length_t L, typename T, qualifier Q>
+
137  GLM_FUNC_DECL vec<L, T, Q> atan(vec<L, T, Q> const& y_over_x);
+
138 
+
147  template<length_t L, typename T, qualifier Q>
+
148  GLM_FUNC_DECL vec<L, T, Q> sinh(vec<L, T, Q> const& angle);
+
149 
+
158  template<length_t L, typename T, qualifier Q>
+
159  GLM_FUNC_DECL vec<L, T, Q> cosh(vec<L, T, Q> const& angle);
+
160 
+
169  template<length_t L, typename T, qualifier Q>
+
170  GLM_FUNC_DECL vec<L, T, Q> tanh(vec<L, T, Q> const& angle);
+
171 
+
180  template<length_t L, typename T, qualifier Q>
+
181  GLM_FUNC_DECL vec<L, T, Q> asinh(vec<L, T, Q> const& x);
+
182 
+
192  template<length_t L, typename T, qualifier Q>
+
193  GLM_FUNC_DECL vec<L, T, Q> acosh(vec<L, T, Q> const& x);
+
194 
+
204  template<length_t L, typename T, qualifier Q>
+
205  GLM_FUNC_DECL vec<L, T, Q> atanh(vec<L, T, Q> const& x);
+
206 
+
208 }//namespace glm
+
209 
+
210 #include "detail/func_trigonometric.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > sinh(vec< L, T, Q > const &angle)
Returns the hyperbolic sine function, (exp(x) - exp(-x)) / 2.
+
GLM_FUNC_DECL vec< L, T, Q > cosh(vec< L, T, Q > const &angle)
Returns the hyperbolic cosine function, (exp(x) + exp(-x)) / 2.
+
GLM_FUNC_DECL vec< L, T, Q > cos(vec< L, T, Q > const &angle)
The standard trigonometric cosine function.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > radians(vec< L, T, Q > const &degrees)
Converts degrees to radians and returns the result.
+
GLM_FUNC_DECL vec< L, T, Q > acosh(vec< L, T, Q > const &x)
Arc hyperbolic cosine; returns the non-negative inverse of cosh.
+
GLM_FUNC_DECL vec< L, T, Q > atan(vec< L, T, Q > const &y_over_x)
Arc tangent.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL vec< L, T, Q > asinh(vec< L, T, Q > const &x)
Arc hyperbolic sine; returns the inverse of sinh.
+
GLM_FUNC_DECL vec< L, T, Q > tanh(vec< L, T, Q > const &angle)
Returns the hyperbolic tangent function, sinh(angle) / cosh(angle)
+
GLM_FUNC_DECL vec< L, T, Q > sin(vec< L, T, Q > const &angle)
The standard trigonometric sine function.
+
GLM_FUNC_DECL vec< L, T, Q > atanh(vec< L, T, Q > const &x)
Arc hyperbolic tangent; returns the inverse of tanh.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > degrees(vec< L, T, Q > const &radians)
Converts radians to degrees and returns the result.
+
GLM_FUNC_DECL vec< L, T, Q > asin(vec< L, T, Q > const &x)
Arc sine.
+
GLM_FUNC_DECL vec< L, T, Q > acos(vec< L, T, Q > const &x)
Arc cosine.
+
GLM_FUNC_DECL vec< L, T, Q > tan(vec< L, T, Q > const &angle)
The standard trigonometric tangent function.
+ + + + diff --git a/include/glm/doc/api/a00800.html b/include/glm/doc/api/a00800.html new file mode 100644 index 0000000..30b2cd2 --- /dev/null +++ b/include/glm/doc/api/a00800.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: vec2.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec2.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file vec2.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00800_source.html b/include/glm/doc/api/a00800_source.html new file mode 100644 index 0000000..3618edf --- /dev/null +++ b/include/glm/doc/api/a00800_source.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: vec2.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec2.hpp
+
+ +
Core features
+
GLM_EXT_vector_uint2_sized
+
GLM_EXT_vector_int2_sized
+
Core features
+ +
Core features
+
Core features
+ +
Core features
+ + + + + diff --git a/include/glm/doc/api/a00803.html b/include/glm/doc/api/a00803.html new file mode 100644 index 0000000..3c32f50 --- /dev/null +++ b/include/glm/doc/api/a00803.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: vec3.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec3.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file vec3.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00803_source.html b/include/glm/doc/api/a00803_source.html new file mode 100644 index 0000000..0e0e538 --- /dev/null +++ b/include/glm/doc/api/a00803_source.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: vec3.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec3.hpp
+
+ + +
Core features
+
Core features
+
GLM_EXT_vector_uint3_sized
+ +
Core features
+
Core features
+
Core features
+ +
GLM_EXT_vector_int3_sized
+ + + + diff --git a/include/glm/doc/api/a00806.html b/include/glm/doc/api/a00806.html new file mode 100644 index 0000000..519865b --- /dev/null +++ b/include/glm/doc/api/a00806.html @@ -0,0 +1,90 @@ + + + + + + + +1.0.2 API documentation: vec4.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec4.hpp File Reference
+
+
+ +

Core features +More...

+ +

Go to the source code of this file.

+

Detailed Description

+

Core features

+ +

Definition in file vec4.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a00806_source.html b/include/glm/doc/api/a00806_source.html new file mode 100644 index 0000000..f39666f --- /dev/null +++ b/include/glm/doc/api/a00806_source.html @@ -0,0 +1,104 @@ + + + + + + + +1.0.2 API documentation: vec4.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
vec4.hpp
+
+
+Go to the documentation of this file.
1 
+
4 #pragma once
+
5 #include "./ext/vector_bool4.hpp"
+ + + + + +
11 #include "./ext/vector_int4.hpp"
+ +
13 #include "./ext/vector_uint4.hpp"
+ +
15 
+
+
Core features
+
GLM_EXT_vector_int4_sized
+
Core features
+ + + +
Core features
+
Core features
+
GLM_EXT_vector_uint4_sized
+
Core features
+ + + + diff --git a/include/glm/doc/api/a00809_source.html b/include/glm/doc/api/a00809_source.html new file mode 100644 index 0000000..c1624b8 --- /dev/null +++ b/include/glm/doc/api/a00809_source.html @@ -0,0 +1,2619 @@ + + + + + + + +1.0.2 API documentation: man.doxy Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
man.doxy
+
+
+
1 # Doxyfile 1.8.18
+
2 
+
3 # This file describes the settings to be used by the documentation system
+
4 # doxygen (www.doxygen.org) for a project.
+
5 #
+
6 # All text after a double hash (##) is considered a comment and is placed in
+
7 # front of the TAG it is preceding.
+
8 #
+
9 # All text after a single hash (#) is considered a comment and will be ignored.
+
10 # The format is:
+
11 # TAG = value [value, ...]
+
12 # For lists, items can also be appended using:
+
13 # TAG += value [value, ...]
+
14 # Values that contain spaces should be placed between quotes (\" \").
+
15 
+
16 #---------------------------------------------------------------------------
+
17 # Project related configuration options
+
18 #---------------------------------------------------------------------------
+
19 
+
20 # This tag specifies the encoding used for all characters in the configuration
+
21 # file that follow. The default is UTF-8 which is also the encoding used for all
+
22 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
+
23 # iconv built into libc) for the transcoding. See
+
24 # https://www.gnu.org/software/libiconv/ for the list of possible encodings.
+
25 # The default value is: UTF-8.
+
26 
+
27 DOXYFILE_ENCODING = UTF-8
+
28 
+
29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
+
30 # double-quotes, unless you are using Doxywizard) that should identify the
+
31 # project for which the documentation is generated. This name is used in the
+
32 # title of most generated pages and in a few other places.
+
33 # The default value is: My Project.
+
34 
+
35 PROJECT_NAME = "1.0.0 API documentation"
+
36 
+
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
+
38 # could be handy for archiving the generated documentation or if some version
+
39 # control system is used.
+
40 
+
41 PROJECT_NUMBER =
+
42 
+
43 # Using the PROJECT_BRIEF tag one can provide an optional one line description
+
44 # for a project that appears at the top of each page and should give viewer a
+
45 # quick idea about the purpose of the project. Keep the description short.
+
46 
+
47 PROJECT_BRIEF =
+
48 
+
49 # With the PROJECT_LOGO tag one can specify a logo or an icon that is included
+
50 # in the documentation. The maximum height of the logo should not exceed 55
+
51 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
+
52 # the logo to the output directory.
+
53 
+
54 PROJECT_LOGO = theme/logo-mini.png
+
55 
+
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
+
57 # into which the generated documentation will be written. If a relative path is
+
58 # entered, it will be relative to the location where doxygen was started. If
+
59 # left blank the current directory will be used.
+
60 
+
61 OUTPUT_DIRECTORY = .
+
62 
+
63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
+
64 # directories (in 2 levels) under the output directory of each output format and
+
65 # will distribute the generated files over these directories. Enabling this
+
66 # option can be useful when feeding doxygen a huge amount of source files, where
+
67 # putting all generated files in the same directory would otherwise causes
+
68 # performance problems for the file system.
+
69 # The default value is: NO.
+
70 
+
71 CREATE_SUBDIRS = NO
+
72 
+
73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
+
74 # characters to appear in the names of generated files. If set to NO, non-ASCII
+
75 # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
+
76 # U+3044.
+
77 # The default value is: NO.
+
78 
+
79 ALLOW_UNICODE_NAMES = NO
+
80 
+
81 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
+
82 # documentation generated by doxygen is written. Doxygen will use this
+
83 # information to generate all constant output in the proper language.
+
84 # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
+
85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
+
86 # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
+
87 # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
+
88 # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
+
89 # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
+
90 # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
+
91 # Ukrainian and Vietnamese.
+
92 # The default value is: English.
+
93 
+
94 OUTPUT_LANGUAGE = English
+
95 
+
96 # The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all
+
97 # documentation generated by doxygen is written. Doxygen will use this
+
98 # information to generate all generated output in the proper direction.
+
99 # Possible values are: None, LTR, RTL and Context.
+
100 # The default value is: None.
+
101 
+
102 OUTPUT_TEXT_DIRECTION = None
+
103 
+
104 # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
+
105 # descriptions after the members that are listed in the file and class
+
106 # documentation (similar to Javadoc). Set to NO to disable this.
+
107 # The default value is: YES.
+
108 
+
109 BRIEF_MEMBER_DESC = YES
+
110 
+
111 # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
+
112 # description of a member or function before the detailed description
+
113 #
+
114 # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
+
115 # brief descriptions will be completely suppressed.
+
116 # The default value is: YES.
+
117 
+
118 REPEAT_BRIEF = YES
+
119 
+
120 # This tag implements a quasi-intelligent brief description abbreviator that is
+
121 # used to form the text in various listings. Each string in this list, if found
+
122 # as the leading text of the brief description, will be stripped from the text
+
123 # and the result, after processing the whole list, is used as the annotated
+
124 # text. Otherwise, the brief description is used as-is. If left blank, the
+
125 # following values are used ($name is automatically replaced with the name of
+
126 # the entity):The $name class, The $name widget, The $name file, is, provides,
+
127 # specifies, contains, represents, a, an and the.
+
128 
+
129 ABBREVIATE_BRIEF = "The $name class " \
+
130  "The $name widget " \
+
131  "The $name file " \
+
132  is \
+
133  provides \
+
134  specifies \
+
135  contains \
+
136  represents \
+
137  a \
+
138  an \
+
139  the
+
140 
+
141 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
+
142 # doxygen will generate a detailed section even if there is only a brief
+
143 # description.
+
144 # The default value is: NO.
+
145 
+
146 ALWAYS_DETAILED_SEC = NO
+
147 
+
148 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
+
149 # inherited members of a class in the documentation of that class as if those
+
150 # members were ordinary class members. Constructors, destructors and assignment
+
151 # operators of the base classes will not be shown.
+
152 # The default value is: NO.
+
153 
+
154 INLINE_INHERITED_MEMB = NO
+
155 
+
156 # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
+
157 # before files name in the file list and in the header files. If set to NO the
+
158 # shortest path that makes the file name unique will be used
+
159 # The default value is: YES.
+
160 
+
161 FULL_PATH_NAMES = NO
+
162 
+
163 # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
+
164 # Stripping is only done if one of the specified strings matches the left-hand
+
165 # part of the path. The tag can be used to show relative paths in the file list.
+
166 # If left blank the directory from which doxygen is run is used as the path to
+
167 # strip.
+
168 #
+
169 # Note that you can specify absolute paths here, but also relative paths, which
+
170 # will be relative from the directory where doxygen is started.
+
171 # This tag requires that the tag FULL_PATH_NAMES is set to YES.
+
172 
+
173 STRIP_FROM_PATH = "C:/Documents and Settings/Groove/ "
+
174 
+
175 # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
+
176 # path mentioned in the documentation of a class, which tells the reader which
+
177 # header file to include in order to use a class. If left blank only the name of
+
178 # the header file containing the class definition is used. Otherwise one should
+
179 # specify the list of include paths that are normally passed to the compiler
+
180 # using the -I flag.
+
181 
+
182 STRIP_FROM_INC_PATH =
+
183 
+
184 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
+
185 # less readable) file names. This can be useful is your file systems doesn't
+
186 # support long names like on DOS, Mac, or CD-ROM.
+
187 # The default value is: NO.
+
188 
+
189 SHORT_NAMES = YES
+
190 
+
191 # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
+
192 # first line (until the first dot) of a Javadoc-style comment as the brief
+
193 # description. If set to NO, the Javadoc-style will behave just like regular Qt-
+
194 # style comments (thus requiring an explicit @brief command for a brief
+
195 # description.)
+
196 # The default value is: NO.
+
197 
+
198 JAVADOC_AUTOBRIEF = YES
+
199 
+
200 # If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line
+
201 # such as
+
202 # /***************
+
203 # as being the beginning of a Javadoc-style comment "banner". If set to NO, the
+
204 # Javadoc-style will behave just like regular comments and it will not be
+
205 # interpreted by doxygen.
+
206 # The default value is: NO.
+
207 
+
208 JAVADOC_BANNER = NO
+
209 
+
210 # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
+
211 # line (until the first dot) of a Qt-style comment as the brief description. If
+
212 # set to NO, the Qt-style will behave just like regular Qt-style comments (thus
+
213 # requiring an explicit \brief command for a brief description.)
+
214 # The default value is: NO.
+
215 
+
216 QT_AUTOBRIEF = NO
+
217 
+
218 # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
+
219 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
+
220 # a brief description. This used to be the default behavior. The new default is
+
221 # to treat a multi-line C++ comment block as a detailed description. Set this
+
222 # tag to YES if you prefer the old behavior instead.
+
223 #
+
224 # Note that setting this tag to YES also means that rational rose comments are
+
225 # not recognized any more.
+
226 # The default value is: NO.
+
227 
+
228 MULTILINE_CPP_IS_BRIEF = NO
+
229 
+
230 # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
+
231 # documentation from any documented member that it re-implements.
+
232 # The default value is: YES.
+
233 
+
234 INHERIT_DOCS = YES
+
235 
+
236 # If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
+
237 # page for each member. If set to NO, the documentation of a member will be part
+
238 # of the file/class/namespace that contains it.
+
239 # The default value is: NO.
+
240 
+
241 SEPARATE_MEMBER_PAGES = NO
+
242 
+
243 # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
+
244 # uses this value to replace tabs by spaces in code fragments.
+
245 # Minimum value: 1, maximum value: 16, default value: 4.
+
246 
+
247 TAB_SIZE = 8
+
248 
+
249 # This tag can be used to specify a number of aliases that act as commands in
+
250 # the documentation. An alias has the form:
+
251 # name=value
+
252 # For example adding
+
253 # "sideeffect=@par Side Effects:\n"
+
254 # will allow you to put the command \sideeffect (or @sideeffect) in the
+
255 # documentation, which will result in a user-defined paragraph with heading
+
256 # "Side Effects:". You can put \n's in the value part of an alias to insert
+
257 # newlines (in the resulting output). You can put ^^ in the value part of an
+
258 # alias to insert a newline as if a physical newline was in the original file.
+
259 # When you need a literal { or } or , in the value part of an alias you have to
+
260 # escape them by means of a backslash (\‍), this can lead to conflicts with the
+
261 # commands \{ and \} for these it is advised to use the version @{ and @} or use
+
262 # a double escape (\\{ and \\})
+
263 
+
264 ALIASES =
+
265 
+
266 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
+
267 # only. Doxygen will then generate output that is more tailored for C. For
+
268 # instance, some of the names that are used will be different. The list of all
+
269 # members will be omitted, etc.
+
270 # The default value is: NO.
+
271 
+
272 OPTIMIZE_OUTPUT_FOR_C = NO
+
273 
+
274 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
+
275 # Python sources only. Doxygen will then generate output that is more tailored
+
276 # for that language. For instance, namespaces will be presented as packages,
+
277 # qualified scopes will look different, etc.
+
278 # The default value is: NO.
+
279 
+
280 OPTIMIZE_OUTPUT_JAVA = NO
+
281 
+
282 # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
+
283 # sources. Doxygen will then generate output that is tailored for Fortran.
+
284 # The default value is: NO.
+
285 
+
286 OPTIMIZE_FOR_FORTRAN = NO
+
287 
+
288 # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
+
289 # sources. Doxygen will then generate output that is tailored for VHDL.
+
290 # The default value is: NO.
+
291 
+
292 OPTIMIZE_OUTPUT_VHDL = NO
+
293 
+
294 # Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice
+
295 # sources only. Doxygen will then generate output that is more tailored for that
+
296 # language. For instance, namespaces will be presented as modules, types will be
+
297 # separated into more groups, etc.
+
298 # The default value is: NO.
+
299 
+
300 OPTIMIZE_OUTPUT_SLICE = NO
+
301 
+
302 # Doxygen selects the parser to use depending on the extension of the files it
+
303 # parses. With this tag you can assign which parser to use for a given
+
304 # extension. Doxygen has a built-in mapping, but you can override or extend it
+
305 # using this tag. The format is ext=language, where ext is a file extension, and
+
306 # language is one of the parsers supported by doxygen: IDL, Java, JavaScript,
+
307 # Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL,
+
308 # Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:
+
309 # FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
+
310 # tries to guess whether the code is fixed or free formatted code, this is the
+
311 # default for Fortran type files). For instance to make doxygen treat .inc files
+
312 # as Fortran files (default is PHP), and .f files as C (default is Fortran),
+
313 # use: inc=Fortran f=C.
+
314 #
+
315 # Note: For files without extension you can use no_extension as a placeholder.
+
316 #
+
317 # Note that for custom extensions you also need to set FILE_PATTERNS otherwise
+
318 # the files are not read by doxygen.
+
319 
+
320 EXTENSION_MAPPING =
+
321 
+
322 # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
+
323 # according to the Markdown format, which allows for more readable
+
324 # documentation. See https://daringfireball.net/projects/markdown/ for details.
+
325 # The output of markdown processing is further processed by doxygen, so you can
+
326 # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
+
327 # case of backward compatibilities issues.
+
328 # The default value is: YES.
+
329 
+
330 MARKDOWN_SUPPORT = YES
+
331 
+
332 # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
+
333 # to that level are automatically included in the table of contents, even if
+
334 # they do not have an id attribute.
+
335 # Note: This feature currently applies only to Markdown headings.
+
336 # Minimum value: 0, maximum value: 99, default value: 5.
+
337 # This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
+
338 
+
339 TOC_INCLUDE_HEADINGS = 5
+
340 
+
341 # When enabled doxygen tries to link words that correspond to documented
+
342 # classes, or namespaces to their corresponding documentation. Such a link can
+
343 # be prevented in individual cases by putting a % sign in front of the word or
+
344 # globally by setting AUTOLINK_SUPPORT to NO.
+
345 # The default value is: YES.
+
346 
+
347 AUTOLINK_SUPPORT = YES
+
348 
+
349 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
+
350 # to include (a tag file for) the STL sources as input, then you should set this
+
351 # tag to YES in order to let doxygen match functions declarations and
+
352 # definitions whose arguments contain STL classes (e.g. func(std::string);
+
353 # versus func(std::string) {}). This also make the inheritance and collaboration
+
354 # diagrams that involve STL classes more complete and accurate.
+
355 # The default value is: NO.
+
356 
+
357 BUILTIN_STL_SUPPORT = NO
+
358 
+
359 # If you use Microsoft's C++/CLI language, you should set this option to YES to
+
360 # enable parsing support.
+
361 # The default value is: NO.
+
362 
+
363 CPP_CLI_SUPPORT = NO
+
364 
+
365 # Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
+
366 # https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen
+
367 # will parse them like normal C++ but will assume all classes use public instead
+
368 # of private inheritance when no explicit protection keyword is present.
+
369 # The default value is: NO.
+
370 
+
371 SIP_SUPPORT = NO
+
372 
+
373 # For Microsoft's IDL there are propget and propput attributes to indicate
+
374 # getter and setter methods for a property. Setting this option to YES will make
+
375 # doxygen to replace the get and set methods by a property in the documentation.
+
376 # This will only work if the methods are indeed getting or setting a simple
+
377 # type. If this is not the case, or you want to show the methods anyway, you
+
378 # should set this option to NO.
+
379 # The default value is: YES.
+
380 
+
381 IDL_PROPERTY_SUPPORT = YES
+
382 
+
383 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
+
384 # tag is set to YES then doxygen will reuse the documentation of the first
+
385 # member in the group (if any) for the other members of the group. By default
+
386 # all members of a group must be documented explicitly.
+
387 # The default value is: NO.
+
388 
+
389 DISTRIBUTE_GROUP_DOC = NO
+
390 
+
391 # If one adds a struct or class to a group and this option is enabled, then also
+
392 # any nested class or struct is added to the same group. By default this option
+
393 # is disabled and one has to add nested compounds explicitly via \ingroup.
+
394 # The default value is: NO.
+
395 
+
396 GROUP_NESTED_COMPOUNDS = NO
+
397 
+
398 # Set the SUBGROUPING tag to YES to allow class member groups of the same type
+
399 # (for instance a group of public functions) to be put as a subgroup of that
+
400 # type (e.g. under the Public Functions section). Set it to NO to prevent
+
401 # subgrouping. Alternatively, this can be done per class using the
+
402 # \nosubgrouping command.
+
403 # The default value is: YES.
+
404 
+
405 SUBGROUPING = NO
+
406 
+
407 # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
+
408 # are shown inside the group in which they are included (e.g. using \ingroup)
+
409 # instead of on a separate page (for HTML and Man pages) or section (for LaTeX
+
410 # and RTF).
+
411 #
+
412 # Note that this feature does not work in combination with
+
413 # SEPARATE_MEMBER_PAGES.
+
414 # The default value is: NO.
+
415 
+
416 INLINE_GROUPED_CLASSES = NO
+
417 
+
418 # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
+
419 # with only public data fields or simple typedef fields will be shown inline in
+
420 # the documentation of the scope in which they are defined (i.e. file,
+
421 # namespace, or group documentation), provided this scope is documented. If set
+
422 # to NO, structs, classes, and unions are shown on a separate page (for HTML and
+
423 # Man pages) or section (for LaTeX and RTF).
+
424 # The default value is: NO.
+
425 
+
426 INLINE_SIMPLE_STRUCTS = NO
+
427 
+
428 # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
+
429 # enum is documented as struct, union, or enum with the name of the typedef. So
+
430 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
+
431 # with name TypeT. When disabled the typedef will appear as a member of a file,
+
432 # namespace, or class. And the struct will be named TypeS. This can typically be
+
433 # useful for C code in case the coding convention dictates that all compound
+
434 # types are typedef'ed and only the typedef is referenced, never the tag name.
+
435 # The default value is: NO.
+
436 
+
437 TYPEDEF_HIDES_STRUCT = NO
+
438 
+
439 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
+
440 # cache is used to resolve symbols given their name and scope. Since this can be
+
441 # an expensive process and often the same symbol appears multiple times in the
+
442 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
+
443 # doxygen will become slower. If the cache is too large, memory is wasted. The
+
444 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
+
445 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
+
446 # symbols. At the end of a run doxygen will report the cache usage and suggest
+
447 # the optimal cache size from a speed point of view.
+
448 # Minimum value: 0, maximum value: 9, default value: 0.
+
449 
+
450 LOOKUP_CACHE_SIZE = 0
+
451 
+
452 #---------------------------------------------------------------------------
+
453 # Build related configuration options
+
454 #---------------------------------------------------------------------------
+
455 
+
456 # If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
+
457 # documentation are documented, even if no documentation was available. Private
+
458 # class members and static file members will be hidden unless the
+
459 # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
+
460 # Note: This will also disable the warnings about undocumented members that are
+
461 # normally produced when WARNINGS is set to YES.
+
462 # The default value is: NO.
+
463 
+
464 EXTRACT_ALL = NO
+
465 
+
466 # If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
+
467 # be included in the documentation.
+
468 # The default value is: NO.
+
469 
+
470 EXTRACT_PRIVATE = NO
+
471 
+
472 # If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual
+
473 # methods of a class will be included in the documentation.
+
474 # The default value is: NO.
+
475 
+
476 EXTRACT_PRIV_VIRTUAL = NO
+
477 
+
478 # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
+
479 # scope will be included in the documentation.
+
480 # The default value is: NO.
+
481 
+
482 EXTRACT_PACKAGE = NO
+
483 
+
484 # If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
+
485 # included in the documentation.
+
486 # The default value is: NO.
+
487 
+
488 EXTRACT_STATIC = YES
+
489 
+
490 # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
+
491 # locally in source files will be included in the documentation. If set to NO,
+
492 # only classes defined in header files are included. Does not have any effect
+
493 # for Java sources.
+
494 # The default value is: YES.
+
495 
+
496 EXTRACT_LOCAL_CLASSES = NO
+
497 
+
498 # This flag is only useful for Objective-C code. If set to YES, local methods,
+
499 # which are defined in the implementation section but not in the interface are
+
500 # included in the documentation. If set to NO, only methods in the interface are
+
501 # included.
+
502 # The default value is: NO.
+
503 
+
504 EXTRACT_LOCAL_METHODS = NO
+
505 
+
506 # If this flag is set to YES, the members of anonymous namespaces will be
+
507 # extracted and appear in the documentation as a namespace called
+
508 # 'anonymous_namespace{file}', where file will be replaced with the base name of
+
509 # the file that contains the anonymous namespace. By default anonymous namespace
+
510 # are hidden.
+
511 # The default value is: NO.
+
512 
+
513 EXTRACT_ANON_NSPACES = NO
+
514 
+
515 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
+
516 # undocumented members inside documented classes or files. If set to NO these
+
517 # members will be included in the various overviews, but no documentation
+
518 # section is generated. This option has no effect if EXTRACT_ALL is enabled.
+
519 # The default value is: NO.
+
520 
+
521 HIDE_UNDOC_MEMBERS = YES
+
522 
+
523 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
+
524 # undocumented classes that are normally visible in the class hierarchy. If set
+
525 # to NO, these classes will be included in the various overviews. This option
+
526 # has no effect if EXTRACT_ALL is enabled.
+
527 # The default value is: NO.
+
528 
+
529 HIDE_UNDOC_CLASSES = YES
+
530 
+
531 # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
+
532 # declarations. If set to NO, these declarations will be included in the
+
533 # documentation.
+
534 # The default value is: NO.
+
535 
+
536 HIDE_FRIEND_COMPOUNDS = YES
+
537 
+
538 # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
+
539 # documentation blocks found inside the body of a function. If set to NO, these
+
540 # blocks will be appended to the function's detailed documentation block.
+
541 # The default value is: NO.
+
542 
+
543 HIDE_IN_BODY_DOCS = YES
+
544 
+
545 # The INTERNAL_DOCS tag determines if documentation that is typed after a
+
546 # \internal command is included. If the tag is set to NO then the documentation
+
547 # will be excluded. Set it to YES to include the internal documentation.
+
548 # The default value is: NO.
+
549 
+
550 INTERNAL_DOCS = NO
+
551 
+
552 # If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
+
553 # names in lower-case letters. If set to YES, upper-case letters are also
+
554 # allowed. This is useful if you have classes or files whose names only differ
+
555 # in case and if your file system supports case sensitive file names. Windows
+
556 # (including Cygwin) ands Mac users are advised to set this option to NO.
+
557 # The default value is: system dependent.
+
558 
+
559 CASE_SENSE_NAMES = YES
+
560 
+
561 # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
+
562 # their full class and namespace scopes in the documentation. If set to YES, the
+
563 # scope will be hidden.
+
564 # The default value is: NO.
+
565 
+
566 HIDE_SCOPE_NAMES = YES
+
567 
+
568 # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
+
569 # append additional text to a page's title, such as Class Reference. If set to
+
570 # YES the compound reference will be hidden.
+
571 # The default value is: NO.
+
572 
+
573 HIDE_COMPOUND_REFERENCE= NO
+
574 
+
575 # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
+
576 # the files that are included by a file in the documentation of that file.
+
577 # The default value is: YES.
+
578 
+
579 SHOW_INCLUDE_FILES = NO
+
580 
+
581 # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
+
582 # grouped member an include statement to the documentation, telling the reader
+
583 # which file to include in order to use the member.
+
584 # The default value is: NO.
+
585 
+
586 SHOW_GROUPED_MEMB_INC = NO
+
587 
+
588 # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
+
589 # files with double quotes in the documentation rather than with sharp brackets.
+
590 # The default value is: NO.
+
591 
+
592 FORCE_LOCAL_INCLUDES = NO
+
593 
+
594 # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
+
595 # documentation for inline members.
+
596 # The default value is: YES.
+
597 
+
598 INLINE_INFO = NO
+
599 
+
600 # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
+
601 # (detailed) documentation of file and class members alphabetically by member
+
602 # name. If set to NO, the members will appear in declaration order.
+
603 # The default value is: YES.
+
604 
+
605 SORT_MEMBER_DOCS = YES
+
606 
+
607 # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
+
608 # descriptions of file, namespace and class members alphabetically by member
+
609 # name. If set to NO, the members will appear in declaration order. Note that
+
610 # this will also influence the order of the classes in the class list.
+
611 # The default value is: NO.
+
612 
+
613 SORT_BRIEF_DOCS = YES
+
614 
+
615 # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
+
616 # (brief and detailed) documentation of class members so that constructors and
+
617 # destructors are listed first. If set to NO the constructors will appear in the
+
618 # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
+
619 # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
+
620 # member documentation.
+
621 # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
+
622 # detailed member documentation.
+
623 # The default value is: NO.
+
624 
+
625 SORT_MEMBERS_CTORS_1ST = NO
+
626 
+
627 # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
+
628 # of group names into alphabetical order. If set to NO the group names will
+
629 # appear in their defined order.
+
630 # The default value is: NO.
+
631 
+
632 SORT_GROUP_NAMES = NO
+
633 
+
634 # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
+
635 # fully-qualified names, including namespaces. If set to NO, the class list will
+
636 # be sorted only by class name, not including the namespace part.
+
637 # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
+
638 # Note: This option applies only to the class list, not to the alphabetical
+
639 # list.
+
640 # The default value is: NO.
+
641 
+
642 SORT_BY_SCOPE_NAME = YES
+
643 
+
644 # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
+
645 # type resolution of all parameters of a function it will reject a match between
+
646 # the prototype and the implementation of a member function even if there is
+
647 # only one candidate or it is obvious which candidate to choose by doing a
+
648 # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
+
649 # accept a match between prototype and implementation in such cases.
+
650 # The default value is: NO.
+
651 
+
652 STRICT_PROTO_MATCHING = NO
+
653 
+
654 # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
+
655 # list. This list is created by putting \todo commands in the documentation.
+
656 # The default value is: YES.
+
657 
+
658 GENERATE_TODOLIST = YES
+
659 
+
660 # The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
+
661 # list. This list is created by putting \test commands in the documentation.
+
662 # The default value is: YES.
+
663 
+
664 GENERATE_TESTLIST = YES
+
665 
+
666 # The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
+
667 # list. This list is created by putting \bug commands in the documentation.
+
668 # The default value is: YES.
+
669 
+
670 GENERATE_BUGLIST = YES
+
671 
+
672 # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
+
673 # the deprecated list. This list is created by putting \deprecated commands in
+
674 # the documentation.
+
675 # The default value is: YES.
+
676 
+
677 GENERATE_DEPRECATEDLIST= YES
+
678 
+
679 # The ENABLED_SECTIONS tag can be used to enable conditional documentation
+
680 # sections, marked by \if <section_label> ... \endif and \cond <section_label>
+
681 # ... \endcond blocks.
+
682 
+
683 ENABLED_SECTIONS =
+
684 
+
685 # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
+
686 # initial value of a variable or macro / define can have for it to appear in the
+
687 # documentation. If the initializer consists of more lines than specified here
+
688 # it will be hidden. Use a value of 0 to hide initializers completely. The
+
689 # appearance of the value of individual variables and macros / defines can be
+
690 # controlled using \showinitializer or \hideinitializer command in the
+
691 # documentation regardless of this setting.
+
692 # Minimum value: 0, maximum value: 10000, default value: 30.
+
693 
+
694 MAX_INITIALIZER_LINES = 30
+
695 
+
696 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
+
697 # the bottom of the documentation of classes and structs. If set to YES, the
+
698 # list will mention the files that were used to generate the documentation.
+
699 # The default value is: YES.
+
700 
+
701 SHOW_USED_FILES = NO
+
702 
+
703 # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
+
704 # will remove the Files entry from the Quick Index and from the Folder Tree View
+
705 # (if specified).
+
706 # The default value is: YES.
+
707 
+
708 SHOW_FILES = YES
+
709 
+
710 # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
+
711 # page. This will remove the Namespaces entry from the Quick Index and from the
+
712 # Folder Tree View (if specified).
+
713 # The default value is: YES.
+
714 
+
715 SHOW_NAMESPACES = YES
+
716 
+
717 # The FILE_VERSION_FILTER tag can be used to specify a program or script that
+
718 # doxygen should invoke to get the current version for each file (typically from
+
719 # the version control system). Doxygen will invoke the program by executing (via
+
720 # popen()) the command command input-file, where command is the value of the
+
721 # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
+
722 # by doxygen. Whatever the program writes to standard output is used as the file
+
723 # version. For an example see the documentation.
+
724 
+
725 FILE_VERSION_FILTER =
+
726 
+
727 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
+
728 # by doxygen. The layout file controls the global structure of the generated
+
729 # output files in an output format independent way. To create the layout file
+
730 # that represents doxygen's defaults, run doxygen with the -l option. You can
+
731 # optionally specify a file name after the option, if omitted DoxygenLayout.xml
+
732 # will be used as the name of the layout file.
+
733 #
+
734 # Note that if you run doxygen from a directory containing a file called
+
735 # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
+
736 # tag is left empty.
+
737 
+
738 LAYOUT_FILE =
+
739 
+
740 # The CITE_BIB_FILES tag can be used to specify one or more bib files containing
+
741 # the reference definitions. This must be a list of .bib files. The .bib
+
742 # extension is automatically appended if omitted. This requires the bibtex tool
+
743 # to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.
+
744 # For LaTeX the style of the bibliography can be controlled using
+
745 # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
+
746 # search path. See also \cite for info how to create references.
+
747 
+
748 CITE_BIB_FILES =
+
749 
+
750 #---------------------------------------------------------------------------
+
751 # Configuration options related to warning and progress messages
+
752 #---------------------------------------------------------------------------
+
753 
+
754 # The QUIET tag can be used to turn on/off the messages that are generated to
+
755 # standard output by doxygen. If QUIET is set to YES this implies that the
+
756 # messages are off.
+
757 # The default value is: NO.
+
758 
+
759 QUIET = NO
+
760 
+
761 # The WARNINGS tag can be used to turn on/off the warning messages that are
+
762 # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
+
763 # this implies that the warnings are on.
+
764 #
+
765 # Tip: Turn warnings on while writing the documentation.
+
766 # The default value is: YES.
+
767 
+
768 WARNINGS = YES
+
769 
+
770 # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
+
771 # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
+
772 # will automatically be disabled.
+
773 # The default value is: YES.
+
774 
+
775 WARN_IF_UNDOCUMENTED = YES
+
776 
+
777 # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
+
778 # potential errors in the documentation, such as not documenting some parameters
+
779 # in a documented function, or documenting parameters that don't exist or using
+
780 # markup commands wrongly.
+
781 # The default value is: YES.
+
782 
+
783 WARN_IF_DOC_ERROR = YES
+
784 
+
785 # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
+
786 # are documented, but have no documentation for their parameters or return
+
787 # value. If set to NO, doxygen will only warn about wrong or incomplete
+
788 # parameter documentation, but not about the absence of documentation. If
+
789 # EXTRACT_ALL is set to YES then this flag will automatically be disabled.
+
790 # The default value is: NO.
+
791 
+
792 WARN_NO_PARAMDOC = NO
+
793 
+
794 # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
+
795 # a warning is encountered.
+
796 # The default value is: NO.
+
797 
+
798 WARN_AS_ERROR = NO
+
799 
+
800 # The WARN_FORMAT tag determines the format of the warning messages that doxygen
+
801 # can produce. The string should contain the $file, $line, and $text tags, which
+
802 # will be replaced by the file and line number from which the warning originated
+
803 # and the warning text. Optionally the format may contain $version, which will
+
804 # be replaced by the version of the file (if it could be obtained via
+
805 # FILE_VERSION_FILTER)
+
806 # The default value is: $file:$line: $text.
+
807 
+
808 WARN_FORMAT = "$file:$line: $text"
+
809 
+
810 # The WARN_LOGFILE tag can be used to specify a file to which warning and error
+
811 # messages should be written. If left blank the output is written to standard
+
812 # error (stderr).
+
813 
+
814 WARN_LOGFILE =
+
815 
+
816 #---------------------------------------------------------------------------
+
817 # Configuration options related to the input files
+
818 #---------------------------------------------------------------------------
+
819 
+
820 # The INPUT tag is used to specify the files and/or directories that contain
+
821 # documented source files. You may enter file names like myfile.cpp or
+
822 # directories like /usr/src/myproject. Separate the files or directories with
+
823 # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
+
824 # Note: If this tag is empty the current directory is searched.
+
825 
+
826 INPUT = ../glm \
+
827  .
+
828 
+
829 # This tag can be used to specify the character encoding of the source files
+
830 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
+
831 # libiconv (or the iconv built into libc) for the transcoding. See the libiconv
+
832 # documentation (see: https://www.gnu.org/software/libiconv/) for the list of
+
833 # possible encodings.
+
834 # The default value is: UTF-8.
+
835 
+
836 INPUT_ENCODING = UTF-8
+
837 
+
838 # If the value of the INPUT tag contains directories, you can use the
+
839 # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
+
840 # *.h) to filter out the source-files in the directories.
+
841 #
+
842 # Note that for custom extensions or not directly supported extensions you also
+
843 # need to set EXTENSION_MAPPING for the extension otherwise the files are not
+
844 # read by doxygen.
+
845 #
+
846 # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
+
847 # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
+
848 # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
+
849 # *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment),
+
850 # *.doc (to be provided as doxygen C comment), *.txt (to be provided as doxygen
+
851 # C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd,
+
852 # *.vhdl, *.ucf, *.qsf and *.ice.
+
853 
+
854 FILE_PATTERNS = *.hpp \
+
855  *.doxy
+
856 
+
857 # The RECURSIVE tag can be used to specify whether or not subdirectories should
+
858 # be searched for input files as well.
+
859 # The default value is: NO.
+
860 
+
861 RECURSIVE = YES
+
862 
+
863 # The EXCLUDE tag can be used to specify files and/or directories that should be
+
864 # excluded from the INPUT source files. This way you can easily exclude a
+
865 # subdirectory from a directory tree whose root is specified with the INPUT tag.
+
866 #
+
867 # Note that relative paths are relative to the directory from which doxygen is
+
868 # run.
+
869 
+
870 EXCLUDE =
+
871 
+
872 # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
+
873 # directories that are symbolic links (a Unix file system feature) are excluded
+
874 # from the input.
+
875 # The default value is: NO.
+
876 
+
877 EXCLUDE_SYMLINKS = NO
+
878 
+
879 # If the value of the INPUT tag contains directories, you can use the
+
880 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
+
881 # certain files from those directories.
+
882 #
+
883 # Note that the wildcards are matched against the file with absolute path, so to
+
884 # exclude all test directories for example use the pattern */test/*
+
885 
+
886 EXCLUDE_PATTERNS =
+
887 
+
888 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
+
889 # (namespaces, classes, functions, etc.) that should be excluded from the
+
890 # output. The symbol name can be a fully qualified name, a word, or if the
+
891 # wildcard * is used, a substring. Examples: ANamespace, AClass,
+
892 # AClass::ANamespace, ANamespace::*Test
+
893 #
+
894 # Note that the wildcards are matched against the file with absolute path, so to
+
895 # exclude all test directories use the pattern */test/*
+
896 
+
897 EXCLUDE_SYMBOLS =
+
898 
+
899 # The EXAMPLE_PATH tag can be used to specify one or more files or directories
+
900 # that contain example code fragments that are included (see the \include
+
901 # command).
+
902 
+
903 EXAMPLE_PATH =
+
904 
+
905 # If the value of the EXAMPLE_PATH tag contains directories, you can use the
+
906 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
+
907 # *.h) to filter out the source-files in the directories. If left blank all
+
908 # files are included.
+
909 
+
910 EXAMPLE_PATTERNS = *
+
911 
+
912 # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
+
913 # searched for input files to be used with the \include or \dontinclude commands
+
914 # irrespective of the value of the RECURSIVE tag.
+
915 # The default value is: NO.
+
916 
+
917 EXAMPLE_RECURSIVE = NO
+
918 
+
919 # The IMAGE_PATH tag can be used to specify one or more files or directories
+
920 # that contain images that are to be included in the documentation (see the
+
921 # \image command).
+
922 
+
923 IMAGE_PATH =
+
924 
+
925 # The INPUT_FILTER tag can be used to specify a program that doxygen should
+
926 # invoke to filter for each input file. Doxygen will invoke the filter program
+
927 # by executing (via popen()) the command:
+
928 #
+
929 # <filter> <input-file>
+
930 #
+
931 # where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
+
932 # name of an input file. Doxygen will then use the output that the filter
+
933 # program writes to standard output. If FILTER_PATTERNS is specified, this tag
+
934 # will be ignored.
+
935 #
+
936 # Note that the filter must not add or remove lines; it is applied before the
+
937 # code is scanned, but not when the output code is generated. If lines are added
+
938 # or removed, the anchors will not be placed correctly.
+
939 #
+
940 # Note that for custom extensions or not directly supported extensions you also
+
941 # need to set EXTENSION_MAPPING for the extension otherwise the files are not
+
942 # properly processed by doxygen.
+
943 
+
944 INPUT_FILTER =
+
945 
+
946 # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
+
947 # basis. Doxygen will compare the file name with each pattern and apply the
+
948 # filter if there is a match. The filters are a list of the form: pattern=filter
+
949 # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
+
950 # filters are used. If the FILTER_PATTERNS tag is empty or if none of the
+
951 # patterns match the file name, INPUT_FILTER is applied.
+
952 #
+
953 # Note that for custom extensions or not directly supported extensions you also
+
954 # need to set EXTENSION_MAPPING for the extension otherwise the files are not
+
955 # properly processed by doxygen.
+
956 
+
957 FILTER_PATTERNS =
+
958 
+
959 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
+
960 # INPUT_FILTER) will also be used to filter the input files that are used for
+
961 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
+
962 # The default value is: NO.
+
963 
+
964 FILTER_SOURCE_FILES = NO
+
965 
+
966 # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
+
967 # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
+
968 # it is also possible to disable source filtering for a specific pattern using
+
969 # *.ext= (so without naming a filter).
+
970 # This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
+
971 
+
972 FILTER_SOURCE_PATTERNS =
+
973 
+
974 # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
+
975 # is part of the input, its contents will be placed on the main page
+
976 # (index.html). This can be useful if you have a project on for instance GitHub
+
977 # and want to reuse the introduction page also for the doxygen output.
+
978 
+
979 USE_MDFILE_AS_MAINPAGE =
+
980 
+
981 #---------------------------------------------------------------------------
+
982 # Configuration options related to source browsing
+
983 #---------------------------------------------------------------------------
+
984 
+
985 # If the SOURCE_BROWSER tag is set to YES then a list of source files will be
+
986 # generated. Documented entities will be cross-referenced with these sources.
+
987 #
+
988 # Note: To get rid of all source code in the generated output, make sure that
+
989 # also VERBATIM_HEADERS is set to NO.
+
990 # The default value is: NO.
+
991 
+
992 SOURCE_BROWSER = YES
+
993 
+
994 # Setting the INLINE_SOURCES tag to YES will include the body of functions,
+
995 # classes and enums directly into the documentation.
+
996 # The default value is: NO.
+
997 
+
998 INLINE_SOURCES = NO
+
999 
+
1000 # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
+
1001 # special comment blocks from generated source code fragments. Normal C, C++ and
+
1002 # Fortran comments will always remain visible.
+
1003 # The default value is: YES.
+
1004 
+
1005 STRIP_CODE_COMMENTS = YES
+
1006 
+
1007 # If the REFERENCED_BY_RELATION tag is set to YES then for each documented
+
1008 # entity all documented functions referencing it will be listed.
+
1009 # The default value is: NO.
+
1010 
+
1011 REFERENCED_BY_RELATION = YES
+
1012 
+
1013 # If the REFERENCES_RELATION tag is set to YES then for each documented function
+
1014 # all documented entities called/used by that function will be listed.
+
1015 # The default value is: NO.
+
1016 
+
1017 REFERENCES_RELATION = YES
+
1018 
+
1019 # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
+
1020 # to YES then the hyperlinks from functions in REFERENCES_RELATION and
+
1021 # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
+
1022 # link to the documentation.
+
1023 # The default value is: YES.
+
1024 
+
1025 REFERENCES_LINK_SOURCE = YES
+
1026 
+
1027 # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
+
1028 # source code will show a tooltip with additional information such as prototype,
+
1029 # brief description and links to the definition and documentation. Since this
+
1030 # will make the HTML file larger and loading of large files a bit slower, you
+
1031 # can opt to disable this feature.
+
1032 # The default value is: YES.
+
1033 # This tag requires that the tag SOURCE_BROWSER is set to YES.
+
1034 
+
1035 SOURCE_TOOLTIPS = YES
+
1036 
+
1037 # If the USE_HTAGS tag is set to YES then the references to source code will
+
1038 # point to the HTML generated by the htags(1) tool instead of doxygen built-in
+
1039 # source browser. The htags tool is part of GNU's global source tagging system
+
1040 # (see https://www.gnu.org/software/global/global.html). You will need version
+
1041 # 4.8.6 or higher.
+
1042 #
+
1043 # To use it do the following:
+
1044 # - Install the latest version of global
+
1045 # - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file
+
1046 # - Make sure the INPUT points to the root of the source tree
+
1047 # - Run doxygen as normal
+
1048 #
+
1049 # Doxygen will invoke htags (and that will in turn invoke gtags), so these
+
1050 # tools must be available from the command line (i.e. in the search path).
+
1051 #
+
1052 # The result: instead of the source browser generated by doxygen, the links to
+
1053 # source code will now point to the output of htags.
+
1054 # The default value is: NO.
+
1055 # This tag requires that the tag SOURCE_BROWSER is set to YES.
+
1056 
+
1057 USE_HTAGS = NO
+
1058 
+
1059 # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
+
1060 # verbatim copy of the header file for each class for which an include is
+
1061 # specified. Set to NO to disable this.
+
1062 # See also: Section \class.
+
1063 # The default value is: YES.
+
1064 
+
1065 VERBATIM_HEADERS = YES
+
1066 
+
1067 # If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
+
1068 # clang parser (see: http://clang.llvm.org/) for more accurate parsing at the
+
1069 # cost of reduced performance. This can be particularly helpful with template
+
1070 # rich C++ code for which doxygen's built-in parser lacks the necessary type
+
1071 # information.
+
1072 # Note: The availability of this option depends on whether or not doxygen was
+
1073 # generated with the -Duse_libclang=ON option for CMake.
+
1074 # The default value is: NO.
+
1075 
+
1076 CLANG_ASSISTED_PARSING = NO
+
1077 
+
1078 # If clang assisted parsing is enabled you can provide the compiler with command
+
1079 # line options that you would normally use when invoking the compiler. Note that
+
1080 # the include paths will already be set by doxygen for the files and directories
+
1081 # specified with INPUT and INCLUDE_PATH.
+
1082 # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
+
1083 
+
1084 CLANG_OPTIONS =
+
1085 
+
1086 # If clang assisted parsing is enabled you can provide the clang parser with the
+
1087 # path to the compilation database (see:
+
1088 # http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) used when the files
+
1089 # were built. This is equivalent to specifying the "-p" option to a clang tool,
+
1090 # such as clang-check. These options will then be passed to the parser.
+
1091 # Note: The availability of this option depends on whether or not doxygen was
+
1092 # generated with the -Duse_libclang=ON option for CMake.
+
1093 
+
1094 CLANG_DATABASE_PATH =
+
1095 
+
1096 #---------------------------------------------------------------------------
+
1097 # Configuration options related to the alphabetical class index
+
1098 #---------------------------------------------------------------------------
+
1099 
+
1100 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
+
1101 # compounds will be generated. Enable this if the project contains a lot of
+
1102 # classes, structs, unions or interfaces.
+
1103 # The default value is: YES.
+
1104 
+
1105 ALPHABETICAL_INDEX = NO
+
1106 
+
1107 # The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
+
1108 # which the alphabetical index list will be split.
+
1109 # Minimum value: 1, maximum value: 20, default value: 5.
+
1110 # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
+
1111 
+
1112 COLS_IN_ALPHA_INDEX = 5
+
1113 
+
1114 # In case all classes in a project start with a common prefix, all classes will
+
1115 # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
+
1116 # can be used to specify a prefix (or a list of prefixes) that should be ignored
+
1117 # while generating the index headers.
+
1118 # This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
+
1119 
+
1120 IGNORE_PREFIX =
+
1121 
+
1122 #---------------------------------------------------------------------------
+
1123 # Configuration options related to the HTML output
+
1124 #---------------------------------------------------------------------------
+
1125 
+
1126 # If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
+
1127 # The default value is: YES.
+
1128 
+
1129 GENERATE_HTML = YES
+
1130 
+
1131 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
+
1132 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+
1133 # it.
+
1134 # The default directory is: html.
+
1135 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1136 
+
1137 HTML_OUTPUT = html
+
1138 
+
1139 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
+
1140 # generated HTML page (for example: .htm, .php, .asp).
+
1141 # The default value is: .html.
+
1142 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1143 
+
1144 HTML_FILE_EXTENSION = .html
+
1145 
+
1146 # The HTML_HEADER tag can be used to specify a user-defined HTML header file for
+
1147 # each generated HTML page. If the tag is left blank doxygen will generate a
+
1148 # standard header.
+
1149 #
+
1150 # To get valid HTML the header file that includes any scripts and style sheets
+
1151 # that doxygen needs, which is dependent on the configuration options used (e.g.
+
1152 # the setting GENERATE_TREEVIEW). It is highly recommended to start with a
+
1153 # default header using
+
1154 # doxygen -w html new_header.html new_footer.html new_stylesheet.css
+
1155 # YourConfigFile
+
1156 # and then modify the file new_header.html. See also section "Doxygen usage"
+
1157 # for information on how to generate the default header that doxygen normally
+
1158 # uses.
+
1159 # Note: The header is subject to change so you typically have to regenerate the
+
1160 # default header when upgrading to a newer version of doxygen. For a description
+
1161 # of the possible markers and block names see the documentation.
+
1162 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1163 
+
1164 HTML_HEADER =
+
1165 
+
1166 # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
+
1167 # generated HTML page. If the tag is left blank doxygen will generate a standard
+
1168 # footer. See HTML_HEADER for more information on how to generate a default
+
1169 # footer and what special commands can be used inside the footer. See also
+
1170 # section "Doxygen usage" for information on how to generate the default footer
+
1171 # that doxygen normally uses.
+
1172 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1173 
+
1174 HTML_FOOTER =
+
1175 
+
1176 # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
+
1177 # sheet that is used by each HTML page. It can be used to fine-tune the look of
+
1178 # the HTML output. If left blank doxygen will generate a default style sheet.
+
1179 # See also section "Doxygen usage" for information on how to generate the style
+
1180 # sheet that doxygen normally uses.
+
1181 # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
+
1182 # it is more robust and this tag (HTML_STYLESHEET) will in the future become
+
1183 # obsolete.
+
1184 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1185 
+
1186 HTML_STYLESHEET =
+
1187 
+
1188 # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
+
1189 # cascading style sheets that are included after the standard style sheets
+
1190 # created by doxygen. Using this option one can overrule certain style aspects.
+
1191 # This is preferred over using HTML_STYLESHEET since it does not replace the
+
1192 # standard style sheet and is therefore more robust against future updates.
+
1193 # Doxygen will copy the style sheet files to the output directory.
+
1194 # Note: The order of the extra style sheet files is of importance (e.g. the last
+
1195 # style sheet in the list overrules the setting of the previous ones in the
+
1196 # list). For an example see the documentation.
+
1197 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1198 
+
1199 HTML_EXTRA_STYLESHEET =
+
1200 
+
1201 # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
+
1202 # other source files which should be copied to the HTML output directory. Note
+
1203 # that these files will be copied to the base HTML output directory. Use the
+
1204 # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
+
1205 # files. In the HTML_STYLESHEET file, use the file name only. Also note that the
+
1206 # files will be copied as-is; there are no commands or markers available.
+
1207 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1208 
+
1209 HTML_EXTRA_FILES =
+
1210 
+
1211 # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
+
1212 # will adjust the colors in the style sheet and background images according to
+
1213 # this color. Hue is specified as an angle on a colorwheel, see
+
1214 # https://en.wikipedia.org/wiki/Hue for more information. For instance the value
+
1215 # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
+
1216 # purple, and 360 is red again.
+
1217 # Minimum value: 0, maximum value: 359, default value: 220.
+
1218 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1219 
+
1220 HTML_COLORSTYLE_HUE = 220
+
1221 
+
1222 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
+
1223 # in the HTML output. For a value of 0 the output will use grayscales only. A
+
1224 # value of 255 will produce the most vivid colors.
+
1225 # Minimum value: 0, maximum value: 255, default value: 100.
+
1226 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1227 
+
1228 HTML_COLORSTYLE_SAT = 100
+
1229 
+
1230 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
+
1231 # luminance component of the colors in the HTML output. Values below 100
+
1232 # gradually make the output lighter, whereas values above 100 make the output
+
1233 # darker. The value divided by 100 is the actual gamma applied, so 80 represents
+
1234 # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
+
1235 # change the gamma.
+
1236 # Minimum value: 40, maximum value: 240, default value: 80.
+
1237 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1238 
+
1239 HTML_COLORSTYLE_GAMMA = 80
+
1240 
+
1241 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
+
1242 # page will contain the date and time when the page was generated. Setting this
+
1243 # to YES can help to show when doxygen was last run and thus if the
+
1244 # documentation is up to date.
+
1245 # The default value is: NO.
+
1246 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1247 
+
1248 HTML_TIMESTAMP = NO
+
1249 
+
1250 # If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
+
1251 # documentation will contain a main index with vertical navigation menus that
+
1252 # are dynamically created via JavaScript. If disabled, the navigation index will
+
1253 # consists of multiple levels of tabs that are statically embedded in every HTML
+
1254 # page. Disable this option to support browsers that do not have JavaScript,
+
1255 # like the Qt help browser.
+
1256 # The default value is: YES.
+
1257 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1258 
+
1259 HTML_DYNAMIC_MENUS = YES
+
1260 
+
1261 # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
+
1262 # documentation will contain sections that can be hidden and shown after the
+
1263 # page has loaded.
+
1264 # The default value is: NO.
+
1265 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1266 
+
1267 HTML_DYNAMIC_SECTIONS = NO
+
1268 
+
1269 # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
+
1270 # shown in the various tree structured indices initially; the user can expand
+
1271 # and collapse entries dynamically later on. Doxygen will expand the tree to
+
1272 # such a level that at most the specified number of entries are visible (unless
+
1273 # a fully collapsed tree already exceeds this amount). So setting the number of
+
1274 # entries 1 will produce a full collapsed tree by default. 0 is a special value
+
1275 # representing an infinite number of entries and will result in a full expanded
+
1276 # tree by default.
+
1277 # Minimum value: 0, maximum value: 9999, default value: 100.
+
1278 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1279 
+
1280 HTML_INDEX_NUM_ENTRIES = 100
+
1281 
+
1282 # If the GENERATE_DOCSET tag is set to YES, additional index files will be
+
1283 # generated that can be used as input for Apple's Xcode 3 integrated development
+
1284 # environment (see: https://developer.apple.com/xcode/), introduced with OSX
+
1285 # 10.5 (Leopard). To create a documentation set, doxygen will generate a
+
1286 # Makefile in the HTML output directory. Running make will produce the docset in
+
1287 # that directory and running make install will install the docset in
+
1288 # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
+
1289 # startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
+
1290 # genXcode/_index.html for more information.
+
1291 # The default value is: NO.
+
1292 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1293 
+
1294 GENERATE_DOCSET = NO
+
1295 
+
1296 # This tag determines the name of the docset feed. A documentation feed provides
+
1297 # an umbrella under which multiple documentation sets from a single provider
+
1298 # (such as a company or product suite) can be grouped.
+
1299 # The default value is: Doxygen generated docs.
+
1300 # This tag requires that the tag GENERATE_DOCSET is set to YES.
+
1301 
+
1302 DOCSET_FEEDNAME = "Doxygen generated docs"
+
1303 
+
1304 # This tag specifies a string that should uniquely identify the documentation
+
1305 # set bundle. This should be a reverse domain-name style string, e.g.
+
1306 # com.mycompany.MyDocSet. Doxygen will append .docset to the name.
+
1307 # The default value is: org.doxygen.Project.
+
1308 # This tag requires that the tag GENERATE_DOCSET is set to YES.
+
1309 
+
1310 DOCSET_BUNDLE_ID = org.doxygen.Project
+
1311 
+
1312 # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
+
1313 # the documentation publisher. This should be a reverse domain-name style
+
1314 # string, e.g. com.mycompany.MyDocSet.documentation.
+
1315 # The default value is: org.doxygen.Publisher.
+
1316 # This tag requires that the tag GENERATE_DOCSET is set to YES.
+
1317 
+
1318 DOCSET_PUBLISHER_ID = org.doxygen.Publisher
+
1319 
+
1320 # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
+
1321 # The default value is: Publisher.
+
1322 # This tag requires that the tag GENERATE_DOCSET is set to YES.
+
1323 
+
1324 DOCSET_PUBLISHER_NAME = Publisher
+
1325 
+
1326 # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
+
1327 # additional HTML index files: index.hhp, index.hhc, and index.hhk. The
+
1328 # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
+
1329 # (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on
+
1330 # Windows.
+
1331 #
+
1332 # The HTML Help Workshop contains a compiler that can convert all HTML output
+
1333 # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
+
1334 # files are now used as the Windows 98 help format, and will replace the old
+
1335 # Windows help format (.hlp) on all Windows platforms in the future. Compressed
+
1336 # HTML files also contain an index, a table of contents, and you can search for
+
1337 # words in the documentation. The HTML workshop also contains a viewer for
+
1338 # compressed HTML files.
+
1339 # The default value is: NO.
+
1340 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1341 
+
1342 GENERATE_HTMLHELP = NO
+
1343 
+
1344 # The CHM_FILE tag can be used to specify the file name of the resulting .chm
+
1345 # file. You can add a path in front of the file if the result should not be
+
1346 # written to the html output directory.
+
1347 # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
1348 
+
1349 CHM_FILE =
+
1350 
+
1351 # The HHC_LOCATION tag can be used to specify the location (absolute path
+
1352 # including file name) of the HTML help compiler (hhc.exe). If non-empty,
+
1353 # doxygen will try to run the HTML help compiler on the generated index.hhp.
+
1354 # The file has to be specified with full path.
+
1355 # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
1356 
+
1357 HHC_LOCATION =
+
1358 
+
1359 # The GENERATE_CHI flag controls if a separate .chi index file is generated
+
1360 # (YES) or that it should be included in the master .chm file (NO).
+
1361 # The default value is: NO.
+
1362 # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
1363 
+
1364 GENERATE_CHI = NO
+
1365 
+
1366 # The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
+
1367 # and project file content.
+
1368 # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
1369 
+
1370 CHM_INDEX_ENCODING =
+
1371 
+
1372 # The BINARY_TOC flag controls whether a binary table of contents is generated
+
1373 # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
+
1374 # enables the Previous and Next buttons.
+
1375 # The default value is: NO.
+
1376 # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
1377 
+
1378 BINARY_TOC = NO
+
1379 
+
1380 # The TOC_EXPAND flag can be set to YES to add extra items for group members to
+
1381 # the table of contents of the HTML help documentation and to the tree view.
+
1382 # The default value is: NO.
+
1383 # This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
1384 
+
1385 TOC_EXPAND = NO
+
1386 
+
1387 # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
+
1388 # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
+
1389 # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
+
1390 # (.qch) of the generated HTML documentation.
+
1391 # The default value is: NO.
+
1392 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1393 
+
1394 GENERATE_QHP = NO
+
1395 
+
1396 # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
+
1397 # the file name of the resulting .qch file. The path specified is relative to
+
1398 # the HTML output folder.
+
1399 # This tag requires that the tag GENERATE_QHP is set to YES.
+
1400 
+
1401 QCH_FILE =
+
1402 
+
1403 # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
+
1404 # Project output. For more information please see Qt Help Project / Namespace
+
1405 # (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
+
1406 # The default value is: org.doxygen.Project.
+
1407 # This tag requires that the tag GENERATE_QHP is set to YES.
+
1408 
+
1409 QHP_NAMESPACE = org.doxygen.Project
+
1410 
+
1411 # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
+
1412 # Help Project output. For more information please see Qt Help Project / Virtual
+
1413 # Folders (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-
+
1414 # folders).
+
1415 # The default value is: doc.
+
1416 # This tag requires that the tag GENERATE_QHP is set to YES.
+
1417 
+
1418 QHP_VIRTUAL_FOLDER = doc
+
1419 
+
1420 # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
+
1421 # filter to add. For more information please see Qt Help Project / Custom
+
1422 # Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-
+
1423 # filters).
+
1424 # This tag requires that the tag GENERATE_QHP is set to YES.
+
1425 
+
1426 QHP_CUST_FILTER_NAME =
+
1427 
+
1428 # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
+
1429 # custom filter to add. For more information please see Qt Help Project / Custom
+
1430 # Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-
+
1431 # filters).
+
1432 # This tag requires that the tag GENERATE_QHP is set to YES.
+
1433 
+
1434 QHP_CUST_FILTER_ATTRS =
+
1435 
+
1436 # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
+
1437 # project's filter section matches. Qt Help Project / Filter Attributes (see:
+
1438 # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes).
+
1439 # This tag requires that the tag GENERATE_QHP is set to YES.
+
1440 
+
1441 QHP_SECT_FILTER_ATTRS =
+
1442 
+
1443 # The QHG_LOCATION tag can be used to specify the location of Qt's
+
1444 # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
+
1445 # generated .qhp file.
+
1446 # This tag requires that the tag GENERATE_QHP is set to YES.
+
1447 
+
1448 QHG_LOCATION =
+
1449 
+
1450 # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
+
1451 # generated, together with the HTML files, they form an Eclipse help plugin. To
+
1452 # install this plugin and make it available under the help contents menu in
+
1453 # Eclipse, the contents of the directory containing the HTML and XML files needs
+
1454 # to be copied into the plugins directory of eclipse. The name of the directory
+
1455 # within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
+
1456 # After copying Eclipse needs to be restarted before the help appears.
+
1457 # The default value is: NO.
+
1458 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1459 
+
1460 GENERATE_ECLIPSEHELP = NO
+
1461 
+
1462 # A unique identifier for the Eclipse help plugin. When installing the plugin
+
1463 # the directory name containing the HTML and XML files should also have this
+
1464 # name. Each documentation set should have its own identifier.
+
1465 # The default value is: org.doxygen.Project.
+
1466 # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
+
1467 
+
1468 ECLIPSE_DOC_ID = org.doxygen.Project
+
1469 
+
1470 # If you want full control over the layout of the generated HTML pages it might
+
1471 # be necessary to disable the index and replace it with your own. The
+
1472 # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
+
1473 # of each HTML page. A value of NO enables the index and the value YES disables
+
1474 # it. Since the tabs in the index contain the same information as the navigation
+
1475 # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
+
1476 # The default value is: NO.
+
1477 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1478 
+
1479 DISABLE_INDEX = NO
+
1480 
+
1481 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
+
1482 # structure should be generated to display hierarchical information. If the tag
+
1483 # value is set to YES, a side panel will be generated containing a tree-like
+
1484 # index structure (just like the one that is generated for HTML Help). For this
+
1485 # to work a browser that supports JavaScript, DHTML, CSS and frames is required
+
1486 # (i.e. any modern browser). Windows users are probably better off using the
+
1487 # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
+
1488 # further fine-tune the look of the index. As an example, the default style
+
1489 # sheet generated by doxygen has an example that shows how to put an image at
+
1490 # the root of the tree instead of the PROJECT_NAME. Since the tree basically has
+
1491 # the same information as the tab index, you could consider setting
+
1492 # DISABLE_INDEX to YES when enabling this option.
+
1493 # The default value is: NO.
+
1494 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1495 
+
1496 GENERATE_TREEVIEW = NO
+
1497 
+
1498 # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
+
1499 # doxygen will group on one line in the generated HTML documentation.
+
1500 #
+
1501 # Note that a value of 0 will completely suppress the enum values from appearing
+
1502 # in the overview section.
+
1503 # Minimum value: 0, maximum value: 20, default value: 4.
+
1504 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1505 
+
1506 ENUM_VALUES_PER_LINE = 4
+
1507 
+
1508 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
+
1509 # to set the initial width (in pixels) of the frame in which the tree is shown.
+
1510 # Minimum value: 0, maximum value: 1500, default value: 250.
+
1511 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1512 
+
1513 TREEVIEW_WIDTH = 250
+
1514 
+
1515 # If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
+
1516 # external symbols imported via tag files in a separate window.
+
1517 # The default value is: NO.
+
1518 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1519 
+
1520 EXT_LINKS_IN_WINDOW = NO
+
1521 
+
1522 # If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg
+
1523 # tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see
+
1524 # https://inkscape.org) to generate formulas as SVG images instead of PNGs for
+
1525 # the HTML output. These images will generally look nicer at scaled resolutions.
+
1526 # Possible values are: png The default and svg Looks nicer but requires the
+
1527 # pdf2svg tool.
+
1528 # The default value is: png.
+
1529 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1530 
+
1531 HTML_FORMULA_FORMAT = png
+
1532 
+
1533 # Use this tag to change the font size of LaTeX formulas included as images in
+
1534 # the HTML documentation. When you change the font size after a successful
+
1535 # doxygen run you need to manually remove any form_*.png images from the HTML
+
1536 # output directory to force them to be regenerated.
+
1537 # Minimum value: 8, maximum value: 50, default value: 10.
+
1538 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1539 
+
1540 FORMULA_FONTSIZE = 10
+
1541 
+
1542 # Use the FORMULA_TRANSPARENT tag to determine whether or not the images
+
1543 # generated for formulas are transparent PNGs. Transparent PNGs are not
+
1544 # supported properly for IE 6.0, but are supported on all modern browsers.
+
1545 #
+
1546 # Note that when changing this option you need to delete any form_*.png files in
+
1547 # the HTML output directory before the changes have effect.
+
1548 # The default value is: YES.
+
1549 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1550 
+
1551 FORMULA_TRANSPARENT = YES
+
1552 
+
1553 # The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands
+
1554 # to create new LaTeX commands to be used in formulas as building blocks. See
+
1555 # the section "Including formulas" for details.
+
1556 
+
1557 FORMULA_MACROFILE =
+
1558 
+
1559 # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
+
1560 # https://www.mathjax.org) which uses client side JavaScript for the rendering
+
1561 # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
+
1562 # installed or if you want to formulas look prettier in the HTML output. When
+
1563 # enabled you may also need to install MathJax separately and configure the path
+
1564 # to it using the MATHJAX_RELPATH option.
+
1565 # The default value is: NO.
+
1566 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1567 
+
1568 USE_MATHJAX = NO
+
1569 
+
1570 # When MathJax is enabled you can set the default output format to be used for
+
1571 # the MathJax output. See the MathJax site (see:
+
1572 # http://docs.mathjax.org/en/latest/output.html) for more details.
+
1573 # Possible values are: HTML-CSS (which is slower, but has the best
+
1574 # compatibility), NativeMML (i.e. MathML) and SVG.
+
1575 # The default value is: HTML-CSS.
+
1576 # This tag requires that the tag USE_MATHJAX is set to YES.
+
1577 
+
1578 MATHJAX_FORMAT = HTML-CSS
+
1579 
+
1580 # When MathJax is enabled you need to specify the location relative to the HTML
+
1581 # output directory using the MATHJAX_RELPATH option. The destination directory
+
1582 # should contain the MathJax.js script. For instance, if the mathjax directory
+
1583 # is located at the same level as the HTML output directory, then
+
1584 # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
+
1585 # Content Delivery Network so you can quickly see the result without installing
+
1586 # MathJax. However, it is strongly recommended to install a local copy of
+
1587 # MathJax from https://www.mathjax.org before deployment.
+
1588 # The default value is: https://cdn.jsdelivr.net/npm/mathjax@2.
+
1589 # This tag requires that the tag USE_MATHJAX is set to YES.
+
1590 
+
1591 MATHJAX_RELPATH = http://www.mathjax.org/mathjax
+
1592 
+
1593 # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
+
1594 # extension names that should be enabled during MathJax rendering. For example
+
1595 # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
+
1596 # This tag requires that the tag USE_MATHJAX is set to YES.
+
1597 
+
1598 MATHJAX_EXTENSIONS =
+
1599 
+
1600 # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
+
1601 # of code that will be used on startup of the MathJax code. See the MathJax site
+
1602 # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
+
1603 # example see the documentation.
+
1604 # This tag requires that the tag USE_MATHJAX is set to YES.
+
1605 
+
1606 MATHJAX_CODEFILE =
+
1607 
+
1608 # When the SEARCHENGINE tag is enabled doxygen will generate a search box for
+
1609 # the HTML output. The underlying search engine uses javascript and DHTML and
+
1610 # should work on any modern browser. Note that when using HTML help
+
1611 # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
+
1612 # there is already a search function so this one should typically be disabled.
+
1613 # For large projects the javascript based search engine can be slow, then
+
1614 # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
+
1615 # search using the keyboard; to jump to the search box use <access key> + S
+
1616 # (what the <access key> is depends on the OS and browser, but it is typically
+
1617 # <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
+
1618 # key> to jump into the search results window, the results can be navigated
+
1619 # using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
+
1620 # the search. The filter options can be selected when the cursor is inside the
+
1621 # search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
+
1622 # to select a filter and <Enter> or <escape> to activate or cancel the filter
+
1623 # option.
+
1624 # The default value is: YES.
+
1625 # This tag requires that the tag GENERATE_HTML is set to YES.
+
1626 
+
1627 SEARCHENGINE = YES
+
1628 
+
1629 # When the SERVER_BASED_SEARCH tag is enabled the search engine will be
+
1630 # implemented using a web server instead of a web client using JavaScript. There
+
1631 # are two flavors of web server based searching depending on the EXTERNAL_SEARCH
+
1632 # setting. When disabled, doxygen will generate a PHP script for searching and
+
1633 # an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
+
1634 # and searching needs to be provided by external tools. See the section
+
1635 # "External Indexing and Searching" for details.
+
1636 # The default value is: NO.
+
1637 # This tag requires that the tag SEARCHENGINE is set to YES.
+
1638 
+
1639 SERVER_BASED_SEARCH = NO
+
1640 
+
1641 # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
+
1642 # script for searching. Instead the search results are written to an XML file
+
1643 # which needs to be processed by an external indexer. Doxygen will invoke an
+
1644 # external search engine pointed to by the SEARCHENGINE_URL option to obtain the
+
1645 # search results.
+
1646 #
+
1647 # Doxygen ships with an example indexer (doxyindexer) and search engine
+
1648 # (doxysearch.cgi) which are based on the open source search engine library
+
1649 # Xapian (see: https://xapian.org/).
+
1650 #
+
1651 # See the section "External Indexing and Searching" for details.
+
1652 # The default value is: NO.
+
1653 # This tag requires that the tag SEARCHENGINE is set to YES.
+
1654 
+
1655 EXTERNAL_SEARCH = NO
+
1656 
+
1657 # The SEARCHENGINE_URL should point to a search engine hosted by a web server
+
1658 # which will return the search results when EXTERNAL_SEARCH is enabled.
+
1659 #
+
1660 # Doxygen ships with an example indexer (doxyindexer) and search engine
+
1661 # (doxysearch.cgi) which are based on the open source search engine library
+
1662 # Xapian (see: https://xapian.org/). See the section "External Indexing and
+
1663 # Searching" for details.
+
1664 # This tag requires that the tag SEARCHENGINE is set to YES.
+
1665 
+
1666 SEARCHENGINE_URL =
+
1667 
+
1668 # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
+
1669 # search data is written to a file for indexing by an external tool. With the
+
1670 # SEARCHDATA_FILE tag the name of this file can be specified.
+
1671 # The default file is: searchdata.xml.
+
1672 # This tag requires that the tag SEARCHENGINE is set to YES.
+
1673 
+
1674 SEARCHDATA_FILE = searchdata.xml
+
1675 
+
1676 # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
+
1677 # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
+
1678 # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
+
1679 # projects and redirect the results back to the right project.
+
1680 # This tag requires that the tag SEARCHENGINE is set to YES.
+
1681 
+
1682 EXTERNAL_SEARCH_ID =
+
1683 
+
1684 # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
+
1685 # projects other than the one defined by this configuration file, but that are
+
1686 # all added to the same external search index. Each project needs to have a
+
1687 # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
+
1688 # to a relative location where the documentation can be found. The format is:
+
1689 # EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
+
1690 # This tag requires that the tag SEARCHENGINE is set to YES.
+
1691 
+
1692 EXTRA_SEARCH_MAPPINGS =
+
1693 
+
1694 #---------------------------------------------------------------------------
+
1695 # Configuration options related to the LaTeX output
+
1696 #---------------------------------------------------------------------------
+
1697 
+
1698 # If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
+
1699 # The default value is: YES.
+
1700 
+
1701 GENERATE_LATEX = NO
+
1702 
+
1703 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
+
1704 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+
1705 # it.
+
1706 # The default directory is: latex.
+
1707 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1708 
+
1709 LATEX_OUTPUT = latex
+
1710 
+
1711 # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
+
1712 # invoked.
+
1713 #
+
1714 # Note that when not enabling USE_PDFLATEX the default is latex when enabling
+
1715 # USE_PDFLATEX the default is pdflatex and when in the later case latex is
+
1716 # chosen this is overwritten by pdflatex. For specific output languages the
+
1717 # default can have been set differently, this depends on the implementation of
+
1718 # the output language.
+
1719 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1720 
+
1721 LATEX_CMD_NAME = latex
+
1722 
+
1723 # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
+
1724 # index for LaTeX.
+
1725 # Note: This tag is used in the Makefile / make.bat.
+
1726 # See also: LATEX_MAKEINDEX_CMD for the part in the generated output file
+
1727 # (.tex).
+
1728 # The default file is: makeindex.
+
1729 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1730 
+
1731 MAKEINDEX_CMD_NAME = makeindex
+
1732 
+
1733 # The LATEX_MAKEINDEX_CMD tag can be used to specify the command name to
+
1734 # generate index for LaTeX. In case there is no backslash (\‍) as first character
+
1735 # it will be automatically added in the LaTeX code.
+
1736 # Note: This tag is used in the generated output file (.tex).
+
1737 # See also: MAKEINDEX_CMD_NAME for the part in the Makefile / make.bat.
+
1738 # The default value is: makeindex.
+
1739 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1740 
+
1741 LATEX_MAKEINDEX_CMD = makeindex
+
1742 
+
1743 # If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
+
1744 # documents. This may be useful for small projects and may help to save some
+
1745 # trees in general.
+
1746 # The default value is: NO.
+
1747 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1748 
+
1749 COMPACT_LATEX = NO
+
1750 
+
1751 # The PAPER_TYPE tag can be used to set the paper type that is used by the
+
1752 # printer.
+
1753 # Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
+
1754 # 14 inches) and executive (7.25 x 10.5 inches).
+
1755 # The default value is: a4.
+
1756 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1757 
+
1758 PAPER_TYPE = a4
+
1759 
+
1760 # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
+
1761 # that should be included in the LaTeX output. The package can be specified just
+
1762 # by its name or with the correct syntax as to be used with the LaTeX
+
1763 # \usepackage command. To get the times font for instance you can specify :
+
1764 # EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
+
1765 # To use the option intlimits with the amsmath package you can specify:
+
1766 # EXTRA_PACKAGES=[intlimits]{amsmath}
+
1767 # If left blank no extra packages will be included.
+
1768 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1769 
+
1770 EXTRA_PACKAGES =
+
1771 
+
1772 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
+
1773 # generated LaTeX document. The header should contain everything until the first
+
1774 # chapter. If it is left blank doxygen will generate a standard header. See
+
1775 # section "Doxygen usage" for information on how to let doxygen write the
+
1776 # default header to a separate file.
+
1777 #
+
1778 # Note: Only use a user-defined header if you know what you are doing! The
+
1779 # following commands have a special meaning inside the header: $title,
+
1780 # $datetime, $date, $doxygenversion, $projectname, $projectnumber,
+
1781 # $projectbrief, $projectlogo. Doxygen will replace $title with the empty
+
1782 # string, for the replacement values of the other commands the user is referred
+
1783 # to HTML_HEADER.
+
1784 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1785 
+
1786 LATEX_HEADER =
+
1787 
+
1788 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
+
1789 # generated LaTeX document. The footer should contain everything after the last
+
1790 # chapter. If it is left blank doxygen will generate a standard footer. See
+
1791 # LATEX_HEADER for more information on how to generate a default footer and what
+
1792 # special commands can be used inside the footer.
+
1793 #
+
1794 # Note: Only use a user-defined footer if you know what you are doing!
+
1795 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1796 
+
1797 LATEX_FOOTER =
+
1798 
+
1799 # The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
+
1800 # LaTeX style sheets that are included after the standard style sheets created
+
1801 # by doxygen. Using this option one can overrule certain style aspects. Doxygen
+
1802 # will copy the style sheet files to the output directory.
+
1803 # Note: The order of the extra style sheet files is of importance (e.g. the last
+
1804 # style sheet in the list overrules the setting of the previous ones in the
+
1805 # list).
+
1806 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1807 
+
1808 LATEX_EXTRA_STYLESHEET =
+
1809 
+
1810 # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
+
1811 # other source files which should be copied to the LATEX_OUTPUT output
+
1812 # directory. Note that the files will be copied as-is; there are no commands or
+
1813 # markers available.
+
1814 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1815 
+
1816 LATEX_EXTRA_FILES =
+
1817 
+
1818 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
+
1819 # prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
+
1820 # contain links (just like the HTML output) instead of page references. This
+
1821 # makes the output suitable for online browsing using a PDF viewer.
+
1822 # The default value is: YES.
+
1823 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1824 
+
1825 PDF_HYPERLINKS = NO
+
1826 
+
1827 # If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
+
1828 # the PDF file directly from the LaTeX files. Set this option to YES, to get a
+
1829 # higher quality PDF documentation.
+
1830 # The default value is: YES.
+
1831 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1832 
+
1833 USE_PDFLATEX = YES
+
1834 
+
1835 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
+
1836 # command to the generated LaTeX files. This will instruct LaTeX to keep running
+
1837 # if errors occur, instead of asking the user for help. This option is also used
+
1838 # when generating formulas in HTML.
+
1839 # The default value is: NO.
+
1840 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1841 
+
1842 LATEX_BATCHMODE = NO
+
1843 
+
1844 # If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
+
1845 # index chapters (such as File Index, Compound Index, etc.) in the output.
+
1846 # The default value is: NO.
+
1847 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1848 
+
1849 LATEX_HIDE_INDICES = NO
+
1850 
+
1851 # If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
+
1852 # code with syntax highlighting in the LaTeX output.
+
1853 #
+
1854 # Note that which sources are shown also depends on other settings such as
+
1855 # SOURCE_BROWSER.
+
1856 # The default value is: NO.
+
1857 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1858 
+
1859 LATEX_SOURCE_CODE = NO
+
1860 
+
1861 # The LATEX_BIB_STYLE tag can be used to specify the style to use for the
+
1862 # bibliography, e.g. plainnat, or ieeetr. See
+
1863 # https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
+
1864 # The default value is: plain.
+
1865 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1866 
+
1867 LATEX_BIB_STYLE = plain
+
1868 
+
1869 # If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
+
1870 # page will contain the date and time when the page was generated. Setting this
+
1871 # to NO can help when comparing the output of multiple runs.
+
1872 # The default value is: NO.
+
1873 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1874 
+
1875 LATEX_TIMESTAMP = NO
+
1876 
+
1877 # The LATEX_EMOJI_DIRECTORY tag is used to specify the (relative or absolute)
+
1878 # path from which the emoji images will be read. If a relative path is entered,
+
1879 # it will be relative to the LATEX_OUTPUT directory. If left blank the
+
1880 # LATEX_OUTPUT directory will be used.
+
1881 # This tag requires that the tag GENERATE_LATEX is set to YES.
+
1882 
+
1883 LATEX_EMOJI_DIRECTORY =
+
1884 
+
1885 #---------------------------------------------------------------------------
+
1886 # Configuration options related to the RTF output
+
1887 #---------------------------------------------------------------------------
+
1888 
+
1889 # If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
+
1890 # RTF output is optimized for Word 97 and may not look too pretty with other RTF
+
1891 # readers/editors.
+
1892 # The default value is: NO.
+
1893 
+
1894 GENERATE_RTF = NO
+
1895 
+
1896 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
+
1897 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+
1898 # it.
+
1899 # The default directory is: rtf.
+
1900 # This tag requires that the tag GENERATE_RTF is set to YES.
+
1901 
+
1902 RTF_OUTPUT = glm.rtf
+
1903 
+
1904 # If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
+
1905 # documents. This may be useful for small projects and may help to save some
+
1906 # trees in general.
+
1907 # The default value is: NO.
+
1908 # This tag requires that the tag GENERATE_RTF is set to YES.
+
1909 
+
1910 COMPACT_RTF = NO
+
1911 
+
1912 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
+
1913 # contain hyperlink fields. The RTF file will contain links (just like the HTML
+
1914 # output) instead of page references. This makes the output suitable for online
+
1915 # browsing using Word or some other Word compatible readers that support those
+
1916 # fields.
+
1917 #
+
1918 # Note: WordPad (write) and others do not support links.
+
1919 # The default value is: NO.
+
1920 # This tag requires that the tag GENERATE_RTF is set to YES.
+
1921 
+
1922 RTF_HYPERLINKS = YES
+
1923 
+
1924 # Load stylesheet definitions from file. Syntax is similar to doxygen's
+
1925 # configuration file, i.e. a series of assignments. You only have to provide
+
1926 # replacements, missing definitions are set to their default value.
+
1927 #
+
1928 # See also section "Doxygen usage" for information on how to generate the
+
1929 # default style sheet that doxygen normally uses.
+
1930 # This tag requires that the tag GENERATE_RTF is set to YES.
+
1931 
+
1932 RTF_STYLESHEET_FILE =
+
1933 
+
1934 # Set optional variables used in the generation of an RTF document. Syntax is
+
1935 # similar to doxygen's configuration file. A template extensions file can be
+
1936 # generated using doxygen -e rtf extensionFile.
+
1937 # This tag requires that the tag GENERATE_RTF is set to YES.
+
1938 
+
1939 RTF_EXTENSIONS_FILE =
+
1940 
+
1941 # If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code
+
1942 # with syntax highlighting in the RTF output.
+
1943 #
+
1944 # Note that which sources are shown also depends on other settings such as
+
1945 # SOURCE_BROWSER.
+
1946 # The default value is: NO.
+
1947 # This tag requires that the tag GENERATE_RTF is set to YES.
+
1948 
+
1949 RTF_SOURCE_CODE = NO
+
1950 
+
1951 #---------------------------------------------------------------------------
+
1952 # Configuration options related to the man page output
+
1953 #---------------------------------------------------------------------------
+
1954 
+
1955 # If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
+
1956 # classes and files.
+
1957 # The default value is: NO.
+
1958 
+
1959 GENERATE_MAN = NO
+
1960 
+
1961 # The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
+
1962 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+
1963 # it. A directory man3 will be created inside the directory specified by
+
1964 # MAN_OUTPUT.
+
1965 # The default directory is: man.
+
1966 # This tag requires that the tag GENERATE_MAN is set to YES.
+
1967 
+
1968 MAN_OUTPUT = man
+
1969 
+
1970 # The MAN_EXTENSION tag determines the extension that is added to the generated
+
1971 # man pages. In case the manual section does not start with a number, the number
+
1972 # 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
+
1973 # optional.
+
1974 # The default value is: .3.
+
1975 # This tag requires that the tag GENERATE_MAN is set to YES.
+
1976 
+
1977 MAN_EXTENSION = .3
+
1978 
+
1979 # The MAN_SUBDIR tag determines the name of the directory created within
+
1980 # MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
+
1981 # MAN_EXTENSION with the initial . removed.
+
1982 # This tag requires that the tag GENERATE_MAN is set to YES.
+
1983 
+
1984 MAN_SUBDIR =
+
1985 
+
1986 # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
+
1987 # will generate one additional man file for each entity documented in the real
+
1988 # man page(s). These additional files only source the real man page, but without
+
1989 # them the man command would be unable to find the correct page.
+
1990 # The default value is: NO.
+
1991 # This tag requires that the tag GENERATE_MAN is set to YES.
+
1992 
+
1993 MAN_LINKS = NO
+
1994 
+
1995 #---------------------------------------------------------------------------
+
1996 # Configuration options related to the XML output
+
1997 #---------------------------------------------------------------------------
+
1998 
+
1999 # If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
+
2000 # captures the structure of the code including all documentation.
+
2001 # The default value is: NO.
+
2002 
+
2003 GENERATE_XML = NO
+
2004 
+
2005 # The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
+
2006 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+
2007 # it.
+
2008 # The default directory is: xml.
+
2009 # This tag requires that the tag GENERATE_XML is set to YES.
+
2010 
+
2011 XML_OUTPUT = xml
+
2012 
+
2013 # If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
+
2014 # listings (including syntax highlighting and cross-referencing information) to
+
2015 # the XML output. Note that enabling this will significantly increase the size
+
2016 # of the XML output.
+
2017 # The default value is: YES.
+
2018 # This tag requires that the tag GENERATE_XML is set to YES.
+
2019 
+
2020 XML_PROGRAMLISTING = YES
+
2021 
+
2022 # If the XML_NS_MEMB_FILE_SCOPE tag is set to YES, doxygen will include
+
2023 # namespace members in file scope as well, matching the HTML output.
+
2024 # The default value is: NO.
+
2025 # This tag requires that the tag GENERATE_XML is set to YES.
+
2026 
+
2027 XML_NS_MEMB_FILE_SCOPE = NO
+
2028 
+
2029 #---------------------------------------------------------------------------
+
2030 # Configuration options related to the DOCBOOK output
+
2031 #---------------------------------------------------------------------------
+
2032 
+
2033 # If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
+
2034 # that can be used to generate PDF.
+
2035 # The default value is: NO.
+
2036 
+
2037 GENERATE_DOCBOOK = NO
+
2038 
+
2039 # The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
+
2040 # If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
+
2041 # front of it.
+
2042 # The default directory is: docbook.
+
2043 # This tag requires that the tag GENERATE_DOCBOOK is set to YES.
+
2044 
+
2045 DOCBOOK_OUTPUT = docbook
+
2046 
+
2047 # If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the
+
2048 # program listings (including syntax highlighting and cross-referencing
+
2049 # information) to the DOCBOOK output. Note that enabling this will significantly
+
2050 # increase the size of the DOCBOOK output.
+
2051 # The default value is: NO.
+
2052 # This tag requires that the tag GENERATE_DOCBOOK is set to YES.
+
2053 
+
2054 DOCBOOK_PROGRAMLISTING = NO
+
2055 
+
2056 #---------------------------------------------------------------------------
+
2057 # Configuration options for the AutoGen Definitions output
+
2058 #---------------------------------------------------------------------------
+
2059 
+
2060 # If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
+
2061 # AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures
+
2062 # the structure of the code including all documentation. Note that this feature
+
2063 # is still experimental and incomplete at the moment.
+
2064 # The default value is: NO.
+
2065 
+
2066 GENERATE_AUTOGEN_DEF = NO
+
2067 
+
2068 #---------------------------------------------------------------------------
+
2069 # Configuration options related to the Perl module output
+
2070 #---------------------------------------------------------------------------
+
2071 
+
2072 # If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
+
2073 # file that captures the structure of the code including all documentation.
+
2074 #
+
2075 # Note that this feature is still experimental and incomplete at the moment.
+
2076 # The default value is: NO.
+
2077 
+
2078 GENERATE_PERLMOD = NO
+
2079 
+
2080 # If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
+
2081 # Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
+
2082 # output from the Perl module output.
+
2083 # The default value is: NO.
+
2084 # This tag requires that the tag GENERATE_PERLMOD is set to YES.
+
2085 
+
2086 PERLMOD_LATEX = NO
+
2087 
+
2088 # If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
+
2089 # formatted so it can be parsed by a human reader. This is useful if you want to
+
2090 # understand what is going on. On the other hand, if this tag is set to NO, the
+
2091 # size of the Perl module output will be much smaller and Perl will parse it
+
2092 # just the same.
+
2093 # The default value is: YES.
+
2094 # This tag requires that the tag GENERATE_PERLMOD is set to YES.
+
2095 
+
2096 PERLMOD_PRETTY = YES
+
2097 
+
2098 # The names of the make variables in the generated doxyrules.make file are
+
2099 # prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
+
2100 # so different doxyrules.make files included by the same Makefile don't
+
2101 # overwrite each other's variables.
+
2102 # This tag requires that the tag GENERATE_PERLMOD is set to YES.
+
2103 
+
2104 PERLMOD_MAKEVAR_PREFIX =
+
2105 
+
2106 #---------------------------------------------------------------------------
+
2107 # Configuration options related to the preprocessor
+
2108 #---------------------------------------------------------------------------
+
2109 
+
2110 # If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all
+
2111 # C-preprocessor directives found in the sources and include files.
+
2112 # The default value is: YES.
+
2113 
+
2114 ENABLE_PREPROCESSING = YES
+
2115 
+
2116 # If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
+
2117 # in the source code. If set to NO, only conditional compilation will be
+
2118 # performed. Macro expansion can be done in a controlled way by setting
+
2119 # EXPAND_ONLY_PREDEF to YES.
+
2120 # The default value is: NO.
+
2121 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
2122 
+
2123 MACRO_EXPANSION = NO
+
2124 
+
2125 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
+
2126 # the macro expansion is limited to the macros specified with the PREDEFINED and
+
2127 # EXPAND_AS_DEFINED tags.
+
2128 # The default value is: NO.
+
2129 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
2130 
+
2131 EXPAND_ONLY_PREDEF = NO
+
2132 
+
2133 # If the SEARCH_INCLUDES tag is set to YES, the include files in the
+
2134 # INCLUDE_PATH will be searched if a #include is found.
+
2135 # The default value is: YES.
+
2136 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
2137 
+
2138 SEARCH_INCLUDES = YES
+
2139 
+
2140 # The INCLUDE_PATH tag can be used to specify one or more directories that
+
2141 # contain include files that are not input files but should be processed by the
+
2142 # preprocessor.
+
2143 # This tag requires that the tag SEARCH_INCLUDES is set to YES.
+
2144 
+
2145 INCLUDE_PATH =
+
2146 
+
2147 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
+
2148 # patterns (like *.h and *.hpp) to filter out the header-files in the
+
2149 # directories. If left blank, the patterns specified with FILE_PATTERNS will be
+
2150 # used.
+
2151 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
2152 
+
2153 INCLUDE_FILE_PATTERNS =
+
2154 
+
2155 # The PREDEFINED tag can be used to specify one or more macro names that are
+
2156 # defined before the preprocessor is started (similar to the -D option of e.g.
+
2157 # gcc). The argument of the tag is a list of macros of the form: name or
+
2158 # name=definition (no spaces). If the definition and the "=" are omitted, "=1"
+
2159 # is assumed. To prevent a macro definition from being undefined via #undef or
+
2160 # recursively expanded use the := operator instead of the = operator.
+
2161 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
2162 
+
2163 PREDEFINED =
+
2164 
+
2165 # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
+
2166 # tag can be used to specify a list of macro names that should be expanded. The
+
2167 # macro definition that is found in the sources will be used. Use the PREDEFINED
+
2168 # tag if you want to use a different macro definition that overrules the
+
2169 # definition found in the source code.
+
2170 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
2171 
+
2172 EXPAND_AS_DEFINED =
+
2173 
+
2174 # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
+
2175 # remove all references to function-like macros that are alone on a line, have
+
2176 # an all uppercase name, and do not end with a semicolon. Such function macros
+
2177 # are typically used for boiler-plate code, and will confuse the parser if not
+
2178 # removed.
+
2179 # The default value is: YES.
+
2180 # This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
2181 
+
2182 SKIP_FUNCTION_MACROS = YES
+
2183 
+
2184 #---------------------------------------------------------------------------
+
2185 # Configuration options related to external references
+
2186 #---------------------------------------------------------------------------
+
2187 
+
2188 # The TAGFILES tag can be used to specify one or more tag files. For each tag
+
2189 # file the location of the external documentation should be added. The format of
+
2190 # a tag file without this location is as follows:
+
2191 # TAGFILES = file1 file2 ...
+
2192 # Adding location for the tag files is done as follows:
+
2193 # TAGFILES = file1=loc1 "file2 = loc2" ...
+
2194 # where loc1 and loc2 can be relative or absolute paths or URLs. See the
+
2195 # section "Linking to external documentation" for more information about the use
+
2196 # of tag files.
+
2197 # Note: Each tag file must have a unique name (where the name does NOT include
+
2198 # the path). If a tag file is not located in the directory in which doxygen is
+
2199 # run, you must also specify the path to the tagfile here.
+
2200 
+
2201 TAGFILES =
+
2202 
+
2203 # When a file name is specified after GENERATE_TAGFILE, doxygen will create a
+
2204 # tag file that is based on the input files it reads. See section "Linking to
+
2205 # external documentation" for more information about the usage of tag files.
+
2206 
+
2207 GENERATE_TAGFILE =
+
2208 
+
2209 # If the ALLEXTERNALS tag is set to YES, all external class will be listed in
+
2210 # the class index. If set to NO, only the inherited external classes will be
+
2211 # listed.
+
2212 # The default value is: NO.
+
2213 
+
2214 ALLEXTERNALS = NO
+
2215 
+
2216 # If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
+
2217 # in the modules index. If set to NO, only the current project's groups will be
+
2218 # listed.
+
2219 # The default value is: YES.
+
2220 
+
2221 EXTERNAL_GROUPS = YES
+
2222 
+
2223 # If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
+
2224 # the related pages index. If set to NO, only the current project's pages will
+
2225 # be listed.
+
2226 # The default value is: YES.
+
2227 
+
2228 EXTERNAL_PAGES = YES
+
2229 
+
2230 #---------------------------------------------------------------------------
+
2231 # Configuration options related to the dot tool
+
2232 #---------------------------------------------------------------------------
+
2233 
+
2234 # If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram
+
2235 # (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
+
2236 # NO turns the diagrams off. Note that this option also works with HAVE_DOT
+
2237 # disabled, but it is recommended to install and use dot, since it yields more
+
2238 # powerful graphs.
+
2239 # The default value is: YES.
+
2240 
+
2241 CLASS_DIAGRAMS = YES
+
2242 
+
2243 # You can include diagrams made with dia in doxygen documentation. Doxygen will
+
2244 # then run dia to produce the diagram and insert it in the documentation. The
+
2245 # DIA_PATH tag allows you to specify the directory where the dia binary resides.
+
2246 # If left empty dia is assumed to be found in the default search path.
+
2247 
+
2248 DIA_PATH =
+
2249 
+
2250 # If set to YES the inheritance and collaboration graphs will hide inheritance
+
2251 # and usage relations if the target is undocumented or is not a class.
+
2252 # The default value is: YES.
+
2253 
+
2254 HIDE_UNDOC_RELATIONS = YES
+
2255 
+
2256 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
+
2257 # available from the path. This tool is part of Graphviz (see:
+
2258 # http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
+
2259 # Bell Labs. The other options in this section have no effect if this option is
+
2260 # set to NO
+
2261 # The default value is: NO.
+
2262 
+
2263 HAVE_DOT = NO
+
2264 
+
2265 # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
+
2266 # to run in parallel. When set to 0 doxygen will base this on the number of
+
2267 # processors available in the system. You can set it explicitly to a value
+
2268 # larger than 0 to get control over the balance between CPU load and processing
+
2269 # speed.
+
2270 # Minimum value: 0, maximum value: 32, default value: 0.
+
2271 # This tag requires that the tag HAVE_DOT is set to YES.
+
2272 
+
2273 DOT_NUM_THREADS = 0
+
2274 
+
2275 # When you want a differently looking font in the dot files that doxygen
+
2276 # generates you can specify the font name using DOT_FONTNAME. You need to make
+
2277 # sure dot is able to find the font, which can be done by putting it in a
+
2278 # standard location or by setting the DOTFONTPATH environment variable or by
+
2279 # setting DOT_FONTPATH to the directory containing the font.
+
2280 # The default value is: Helvetica.
+
2281 # This tag requires that the tag HAVE_DOT is set to YES.
+
2282 
+
2283 DOT_FONTNAME = Helvetica
+
2284 
+
2285 # The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
+
2286 # dot graphs.
+
2287 # Minimum value: 4, maximum value: 24, default value: 10.
+
2288 # This tag requires that the tag HAVE_DOT is set to YES.
+
2289 
+
2290 DOT_FONTSIZE = 10
+
2291 
+
2292 # By default doxygen will tell dot to use the default font as specified with
+
2293 # DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
+
2294 # the path where dot can find it using this tag.
+
2295 # This tag requires that the tag HAVE_DOT is set to YES.
+
2296 
+
2297 DOT_FONTPATH =
+
2298 
+
2299 # If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
+
2300 # each documented class showing the direct and indirect inheritance relations.
+
2301 # Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
+
2302 # The default value is: YES.
+
2303 # This tag requires that the tag HAVE_DOT is set to YES.
+
2304 
+
2305 CLASS_GRAPH = YES
+
2306 
+
2307 # If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
+
2308 # graph for each documented class showing the direct and indirect implementation
+
2309 # dependencies (inheritance, containment, and class references variables) of the
+
2310 # class with other documented classes.
+
2311 # The default value is: YES.
+
2312 # This tag requires that the tag HAVE_DOT is set to YES.
+
2313 
+
2314 COLLABORATION_GRAPH = YES
+
2315 
+
2316 # If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
+
2317 # groups, showing the direct groups dependencies.
+
2318 # The default value is: YES.
+
2319 # This tag requires that the tag HAVE_DOT is set to YES.
+
2320 
+
2321 GROUP_GRAPHS = YES
+
2322 
+
2323 # If the UML_LOOK tag is set to YES, doxygen will generate inheritance and
+
2324 # collaboration diagrams in a style similar to the OMG's Unified Modeling
+
2325 # Language.
+
2326 # The default value is: NO.
+
2327 # This tag requires that the tag HAVE_DOT is set to YES.
+
2328 
+
2329 UML_LOOK = NO
+
2330 
+
2331 # If the UML_LOOK tag is enabled, the fields and methods are shown inside the
+
2332 # class node. If there are many fields or methods and many nodes the graph may
+
2333 # become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
+
2334 # number of items for each type to make the size more manageable. Set this to 0
+
2335 # for no limit. Note that the threshold may be exceeded by 50% before the limit
+
2336 # is enforced. So when you set the threshold to 10, up to 15 fields may appear,
+
2337 # but if the number exceeds 15, the total amount of fields shown is limited to
+
2338 # 10.
+
2339 # Minimum value: 0, maximum value: 100, default value: 10.
+
2340 # This tag requires that the tag HAVE_DOT is set to YES.
+
2341 
+
2342 UML_LIMIT_NUM_FIELDS = 10
+
2343 
+
2344 # If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
+
2345 # collaboration graphs will show the relations between templates and their
+
2346 # instances.
+
2347 # The default value is: NO.
+
2348 # This tag requires that the tag HAVE_DOT is set to YES.
+
2349 
+
2350 TEMPLATE_RELATIONS = NO
+
2351 
+
2352 # If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
+
2353 # YES then doxygen will generate a graph for each documented file showing the
+
2354 # direct and indirect include dependencies of the file with other documented
+
2355 # files.
+
2356 # The default value is: YES.
+
2357 # This tag requires that the tag HAVE_DOT is set to YES.
+
2358 
+
2359 INCLUDE_GRAPH = YES
+
2360 
+
2361 # If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
+
2362 # set to YES then doxygen will generate a graph for each documented file showing
+
2363 # the direct and indirect include dependencies of the file with other documented
+
2364 # files.
+
2365 # The default value is: YES.
+
2366 # This tag requires that the tag HAVE_DOT is set to YES.
+
2367 
+
2368 INCLUDED_BY_GRAPH = YES
+
2369 
+
2370 # If the CALL_GRAPH tag is set to YES then doxygen will generate a call
+
2371 # dependency graph for every global function or class method.
+
2372 #
+
2373 # Note that enabling this option will significantly increase the time of a run.
+
2374 # So in most cases it will be better to enable call graphs for selected
+
2375 # functions only using the \callgraph command. Disabling a call graph can be
+
2376 # accomplished by means of the command \hidecallgraph.
+
2377 # The default value is: NO.
+
2378 # This tag requires that the tag HAVE_DOT is set to YES.
+
2379 
+
2380 CALL_GRAPH = YES
+
2381 
+
2382 # If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
+
2383 # dependency graph for every global function or class method.
+
2384 #
+
2385 # Note that enabling this option will significantly increase the time of a run.
+
2386 # So in most cases it will be better to enable caller graphs for selected
+
2387 # functions only using the \callergraph command. Disabling a caller graph can be
+
2388 # accomplished by means of the command \hidecallergraph.
+
2389 # The default value is: NO.
+
2390 # This tag requires that the tag HAVE_DOT is set to YES.
+
2391 
+
2392 CALLER_GRAPH = YES
+
2393 
+
2394 # If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
+
2395 # hierarchy of all classes instead of a textual one.
+
2396 # The default value is: YES.
+
2397 # This tag requires that the tag HAVE_DOT is set to YES.
+
2398 
+
2399 GRAPHICAL_HIERARCHY = YES
+
2400 
+
2401 # If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
+
2402 # dependencies a directory has on other directories in a graphical way. The
+
2403 # dependency relations are determined by the #include relations between the
+
2404 # files in the directories.
+
2405 # The default value is: YES.
+
2406 # This tag requires that the tag HAVE_DOT is set to YES.
+
2407 
+
2408 DIRECTORY_GRAPH = YES
+
2409 
+
2410 # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
+
2411 # generated by dot. For an explanation of the image formats see the section
+
2412 # output formats in the documentation of the dot tool (Graphviz (see:
+
2413 # http://www.graphviz.org/)).
+
2414 # Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
+
2415 # to make the SVG files visible in IE 9+ (other browsers do not have this
+
2416 # requirement).
+
2417 # Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
+
2418 # png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
+
2419 # png:gdiplus:gdiplus.
+
2420 # The default value is: png.
+
2421 # This tag requires that the tag HAVE_DOT is set to YES.
+
2422 
+
2423 DOT_IMAGE_FORMAT = png
+
2424 
+
2425 # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
+
2426 # enable generation of interactive SVG images that allow zooming and panning.
+
2427 #
+
2428 # Note that this requires a modern browser other than Internet Explorer. Tested
+
2429 # and working are Firefox, Chrome, Safari, and Opera.
+
2430 # Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
+
2431 # the SVG files visible. Older versions of IE do not have SVG support.
+
2432 # The default value is: NO.
+
2433 # This tag requires that the tag HAVE_DOT is set to YES.
+
2434 
+
2435 INTERACTIVE_SVG = NO
+
2436 
+
2437 # The DOT_PATH tag can be used to specify the path where the dot tool can be
+
2438 # found. If left blank, it is assumed the dot tool can be found in the path.
+
2439 # This tag requires that the tag HAVE_DOT is set to YES.
+
2440 
+
2441 DOT_PATH =
+
2442 
+
2443 # The DOTFILE_DIRS tag can be used to specify one or more directories that
+
2444 # contain dot files that are included in the documentation (see the \dotfile
+
2445 # command).
+
2446 # This tag requires that the tag HAVE_DOT is set to YES.
+
2447 
+
2448 DOTFILE_DIRS =
+
2449 
+
2450 # The MSCFILE_DIRS tag can be used to specify one or more directories that
+
2451 # contain msc files that are included in the documentation (see the \mscfile
+
2452 # command).
+
2453 
+
2454 MSCFILE_DIRS =
+
2455 
+
2456 # The DIAFILE_DIRS tag can be used to specify one or more directories that
+
2457 # contain dia files that are included in the documentation (see the \diafile
+
2458 # command).
+
2459 
+
2460 DIAFILE_DIRS =
+
2461 
+
2462 # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the
+
2463 # path where java can find the plantuml.jar file. If left blank, it is assumed
+
2464 # PlantUML is not used or called during a preprocessing step. Doxygen will
+
2465 # generate a warning when it encounters a \startuml command in this case and
+
2466 # will not generate output for the diagram.
+
2467 
+
2468 PLANTUML_JAR_PATH =
+
2469 
+
2470 # When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
+
2471 # configuration file for plantuml.
+
2472 
+
2473 PLANTUML_CFG_FILE =
+
2474 
+
2475 # When using plantuml, the specified paths are searched for files specified by
+
2476 # the !include statement in a plantuml block.
+
2477 
+
2478 PLANTUML_INCLUDE_PATH =
+
2479 
+
2480 # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
+
2481 # that will be shown in the graph. If the number of nodes in a graph becomes
+
2482 # larger than this value, doxygen will truncate the graph, which is visualized
+
2483 # by representing a node as a red box. Note that doxygen if the number of direct
+
2484 # children of the root node in a graph is already larger than
+
2485 # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
+
2486 # the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
+
2487 # Minimum value: 0, maximum value: 10000, default value: 50.
+
2488 # This tag requires that the tag HAVE_DOT is set to YES.
+
2489 
+
2490 DOT_GRAPH_MAX_NODES = 50
+
2491 
+
2492 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
+
2493 # generated by dot. A depth value of 3 means that only nodes reachable from the
+
2494 # root by following a path via at most 3 edges will be shown. Nodes that lay
+
2495 # further from the root node will be omitted. Note that setting this option to 1
+
2496 # or 2 may greatly reduce the computation time needed for large code bases. Also
+
2497 # note that the size of a graph can be further restricted by
+
2498 # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
+
2499 # Minimum value: 0, maximum value: 1000, default value: 0.
+
2500 # This tag requires that the tag HAVE_DOT is set to YES.
+
2501 
+
2502 MAX_DOT_GRAPH_DEPTH = 1000
+
2503 
+
2504 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
+
2505 # background. This is disabled by default, because dot on Windows does not seem
+
2506 # to support this out of the box.
+
2507 #
+
2508 # Warning: Depending on the platform used, enabling this option may lead to
+
2509 # badly anti-aliased labels on the edges of a graph (i.e. they become hard to
+
2510 # read).
+
2511 # The default value is: NO.
+
2512 # This tag requires that the tag HAVE_DOT is set to YES.
+
2513 
+
2514 DOT_TRANSPARENT = NO
+
2515 
+
2516 # Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
+
2517 # files in one run (i.e. multiple -o and -T options on the command line). This
+
2518 # makes dot run faster, but since only newer versions of dot (>1.8.10) support
+
2519 # this, this feature is disabled by default.
+
2520 # The default value is: NO.
+
2521 # This tag requires that the tag HAVE_DOT is set to YES.
+
2522 
+
2523 DOT_MULTI_TARGETS = NO
+
2524 
+
2525 # If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
+
2526 # explaining the meaning of the various boxes and arrows in the dot generated
+
2527 # graphs.
+
2528 # The default value is: YES.
+
2529 # This tag requires that the tag HAVE_DOT is set to YES.
+
2530 
+
2531 GENERATE_LEGEND = YES
+
2532 
+
2533 # If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot
+
2534 # files that are used to generate the various graphs.
+
2535 # The default value is: YES.
+
2536 # This tag requires that the tag HAVE_DOT is set to YES.
+
2537 
+
2538 DOT_CLEANUP = YES
+
+ + + + diff --git a/include/glm/doc/api/a00812.html b/include/glm/doc/api/a00812.html new file mode 100644 index 0000000..e620aa7 --- /dev/null +++ b/include/glm/doc/api/a00812.html @@ -0,0 +1,1661 @@ + + + + + + + +1.0.2 API documentation: Common functions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Common functions
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType abs (genType x)
 Returns x if x >= 0; otherwise, it returns -x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > abs (vec< L, T, Q > const &x)
 Returns x if x >= 0; otherwise, it returns -x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > ceil (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer that is greater than or equal to x. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType clamp (genType x, genType minVal, genType maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > clamp (vec< L, T, Q > const &x, T minVal, T maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > clamp (vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal. More...
 
GLM_FUNC_DECL int floatBitsToInt (float v)
 Returns a signed integer value representing the encoding of a floating-point value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > floatBitsToInt (vec< L, float, Q > const &v)
 Returns a signed integer value representing the encoding of a floating-point value. More...
 
GLM_FUNC_DECL uint floatBitsToUint (float v)
 Returns a unsigned integer value representing the encoding of a floating-point value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, uint, Q > floatBitsToUint (vec< L, float, Q > const &v)
 Returns a unsigned integer value representing the encoding of a floating-point value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > floor (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer that is less then or equal to x. More...
 
template<typename genType >
GLM_FUNC_DECL genType fma (genType const &a, genType const &b, genType const &c)
 Computes and returns a * b + c. More...
 
template<typename genType >
GLM_FUNC_DECL genType fract (genType x)
 Return x - floor(x). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fract (vec< L, T, Q > const &x)
 Return x - floor(x). More...
 
template<typename genType >
GLM_FUNC_DECL genType frexp (genType x, int &exp)
 Splits x into a floating-point significand in the range [0.5, 1.0) and an integral exponent of two, such that: x = significand * exp(2, exponent) More...
 
GLM_FUNC_DECL float intBitsToFloat (int v)
 Returns a floating-point value corresponding to a signed integer encoding of a floating-point value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, float, Q > intBitsToFloat (vec< L, int, Q > const &v)
 Returns a floating-point value corresponding to a signed integer encoding of a floating-point value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isinf (vec< L, T, Q > const &x)
 Returns true if x holds a positive infinity or negative infinity representation in the underlying implementation's set of floating point representations. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isnan (vec< L, T, Q > const &x)
 Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of floating point representations. More...
 
template<typename genType >
GLM_FUNC_DECL genType ldexp (genType const &x, int const &exp)
 Builds a floating-point number from x and the corresponding integral exponent of two in exp, returning: significand * exp(2, exponent) More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType max (genType x, genType y)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max (vec< L, T, Q > const &x, T y)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns y if x < y; otherwise, it returns x. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType min (genType x, genType y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min (vec< L, T, Q > const &x, T y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<typename genTypeT , typename genTypeU >
GLM_FUNC_DECL GLM_CONSTEXPR genTypeT mix (genTypeT x, genTypeT y, genTypeU a)
 If genTypeU is a floating scalar or vector: Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > mod (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Modulus. More...
 
template<typename genType >
GLM_FUNC_DECL genType modf (genType x, genType &i)
 Returns the fractional part of x and sets i to the integer part (as a whole number floating point value). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > round (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > roundEven (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > sign (vec< L, T, Q > const &x)
 Returns 1.0 if x > 0, 0.0 if x == 0, or -1.0 if x < 0. More...
 
template<typename genType >
GLM_FUNC_DECL genType smoothstep (genType edge0, genType edge1, genType x)
 Returns 0.0 if x <= edge0 and 1.0 if x >= edge1 and performs smooth Hermite interpolation between 0 and 1 when edge0 < x < edge1. More...
 
template<typename genType >
GLM_FUNC_DECL genType step (genType edge, genType x)
 Returns 0.0 if x < edge, otherwise it returns 1.0 for each component of a genType. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > step (T edge, vec< L, T, Q > const &x)
 Returns 0.0 if x < edge, otherwise it returns 1.0. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > step (vec< L, T, Q > const &edge, vec< L, T, Q > const &x)
 Returns 0.0 if x < edge, otherwise it returns 1.0. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > trunc (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x whose absolute value is not larger than the absolute value of x. More...
 
GLM_FUNC_DECL float uintBitsToFloat (uint v)
 Returns a floating-point value corresponding to a unsigned integer encoding of a floating-point value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, float, Q > uintBitsToFloat (vec< L, uint, Q > const &v)
 Returns a floating-point value corresponding to a unsigned integer encoding of a floating-point value. More...
 
+

Detailed Description

+

Provides GLSL common functions

+

These all operate component-wise. The description is per component.

+

Include <glm/common.hpp> to use these core features.

+

Function Documentation

+ +

◆ abs() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::abs (genType x)
+
+ +

Returns x if x >= 0; otherwise, it returns -x.

+
Template Parameters
+ + +
genTypefloating-point or signed integer; scalar or vector types.
+
+
+
See also
GLSL abs man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ abs() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::abs (vec< L, T, Q > const & x)
+
+ +

Returns x if x >= 0; otherwise, it returns -x.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or signed integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL abs man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ ceil()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::ceil (vec< L, T, Q > const & x)
+
+ +

Returns a value equal to the nearest integer that is greater than or equal to x.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL ceil man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ clamp() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::clamp (genType x,
genType minVal,
genType maxVal 
)
+
+ +

Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal.

+
Template Parameters
+ + +
genTypeFloating-point or integer; scalar or vector types.
+
+
+
See also
GLSL clamp man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +

Referenced by glm::saturate().

+ +
+
+ +

◆ clamp() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::clamp (vec< L, T, Q > const & x,
minVal,
maxVal 
)
+
+ +

Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL clamp man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ clamp() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::clamp (vec< L, T, Q > const & x,
vec< L, T, Q > const & minVal,
vec< L, T, Q > const & maxVal 
)
+
+ +

Returns min(max(x, minVal), maxVal) for each component in x using the floating-point values minVal and maxVal.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL clamp man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ floatBitsToInt() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int glm::floatBitsToInt (float v)
+
+ +

Returns a signed integer value representing the encoding of a floating-point value.

+

The floating-point value's bit-level representation is preserved.

+
See also
GLSL floatBitsToInt man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ floatBitsToInt() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, int, Q> glm::floatBitsToInt (vec< L, float, Q > const & v)
+
+ +

Returns a signed integer value representing the encoding of a floating-point value.

+

The floatingpoint value's bit-level representation is preserved.

+
Template Parameters
+ + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
QValue from qualifier enum
+
+
+
See also
GLSL floatBitsToInt man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ floatBitsToUint() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::floatBitsToUint (float v)
+
+ +

Returns a unsigned integer value representing the encoding of a floating-point value.

+

The floatingpoint value's bit-level representation is preserved.

+
See also
GLSL floatBitsToUint man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ floatBitsToUint() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, uint, Q> glm::floatBitsToUint (vec< L, float, Q > const & v)
+
+ +

Returns a unsigned integer value representing the encoding of a floating-point value.

+

The floatingpoint value's bit-level representation is preserved.

+
Template Parameters
+ + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
QValue from qualifier enum
+
+
+
See also
GLSL floatBitsToUint man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ floor()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::floor (vec< L, T, Q > const & x)
+
+ +

Returns a value equal to the nearest integer that is less then or equal to x.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL floor man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ fma()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::fma (genType const & a,
genType const & b,
genType const & c 
)
+
+ +

Computes and returns a * b + c.

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLSL fma man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ fract() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::fract (genType x)
+
+ +

Return x - floor(x).

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLSL fract man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ fract() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fract (vec< L, T, Q > const & x)
+
+ +

Return x - floor(x).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL fract man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ frexp()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::frexp (genType x,
int & exp 
)
+
+ +

Splits x into a floating-point significand in the range [0.5, 1.0) and an integral exponent of two, such that: x = significand * exp(2, exponent)

+

The significand is returned by the function and the exponent is returned in the parameter exp. For a floating-point value of zero, the significant and exponent are both zero. For a floating-point value that is an infinity or is not a number, the results are undefined.

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLSL frexp man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ intBitsToFloat() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL float glm::intBitsToFloat (int v)
+
+ +

Returns a floating-point value corresponding to a signed integer encoding of a floating-point value.

+

If an inf or NaN is passed in, it will not signal, and the resulting floating point value is unspecified. Otherwise, the bit-level representation is preserved.

+
See also
GLSL intBitsToFloat man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ intBitsToFloat() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, float, Q> glm::intBitsToFloat (vec< L, int, Q > const & v)
+
+ +

Returns a floating-point value corresponding to a signed integer encoding of a floating-point value.

+

If an inf or NaN is passed in, it will not signal, and the resulting floating point value is unspecified. Otherwise, the bit-level representation is preserved.

+
Template Parameters
+ + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
QValue from qualifier enum
+
+
+
See also
GLSL intBitsToFloat man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ isinf()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::isinf (vec< L, T, Q > const & x)
+
+ +

Returns true if x holds a positive infinity or negative infinity representation in the underlying implementation's set of floating point representations.

+

Returns false otherwise, including for implementations with no infinity representations.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL isinf man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ isnan()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::isnan (vec< L, T, Q > const & x)
+
+ +

Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of floating point representations.

+

Returns false otherwise, including for implementations with no NaN representations.

+

/!\ When using compiler fast math, this function may fail.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL isnan man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ ldexp()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::ldexp (genType const & x,
int const & exp 
)
+
+ +

Builds a floating-point number from x and the corresponding integral exponent of two in exp, returning: significand * exp(2, exponent)

+

If this product is too large to be represented in the floating-point type, the result is undefined.

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLSL ldexp man page;
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ max() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::max (genType x,
genType y 
)
+
+ +

Returns y if x < y; otherwise, it returns x.

+
Template Parameters
+ + +
genTypeFloating-point or integer; scalar or vector types.
+
+
+
See also
GLSL max man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ max() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::max (vec< L, T, Q > const & x,
y 
)
+
+ +

Returns y if x < y; otherwise, it returns x.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL max man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ max() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::max (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns y if x < y; otherwise, it returns x.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL max man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ min() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::min (genType x,
genType y 
)
+
+ +

Returns y if y < x; otherwise, it returns x.

+
Template Parameters
+ + +
genTypeFloating-point or integer; scalar or vector types.
+
+
+
See also
GLSL min man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ min() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::min (vec< L, T, Q > const & x,
y 
)
+
+ +

Returns y if y < x; otherwise, it returns x.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL min man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ min() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::min (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns y if y < x; otherwise, it returns x.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL min man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ mix()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genTypeT glm::mix (genTypeT x,
genTypeT y,
genTypeU a 
)
+
+ +

If genTypeU is a floating scalar or vector: Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a.

+

The value for a is not restricted to the range [0, 1].

+

If genTypeU is a boolean scalar or vector: Selects which vector each returned component comes from. For a component of 'a' that is false, the corresponding component of 'x' is returned. For a component of 'a' that is true, the corresponding component of 'y' is returned. Components of 'x' and 'y' that are not selected are allowed to be invalid floating point values and will have no effect on the results. Thus, this provides different functionality than genType mix(genType x, genType y, genType(a)) where a is a Boolean vector.

+
See also
GLSL mix man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+
Parameters
+ + + + +
[in]xValue to interpolate.
[in]yValue to interpolate.
[in]aInterpolant.
+
+
+
Template Parameters
+ + + +
genTypeTFloating point scalar or vector.
genTypeUFloating point or boolean scalar or vector. It can't be a vector if it is the length of genTypeT.
+
+
+
#include <glm/glm.hpp>
+
...
+
float a;
+
bool b;
+ + + + +
...
+
glm::vec4 r = glm::mix(g, h, a); // Interpolate with a floating-point scalar two vectors.
+
glm::vec4 s = glm::mix(g, h, b); // Returns g or h;
+
glm::dvec3 t = glm::mix(e, f, a); // Types of the third parameter is not required to match with the first and the second.
+
glm::vec4 u = glm::mix(g, h, r); // Interpolations can be perform per component with a vector for the last parameter.
+
+

Referenced by glm::lerp().

+ +
+
+ +

◆ mod()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::mod (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Modulus.

+

Returns x - y * floor(x / y) for each component in x using the floating point value y.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types, include glm/gtc/integer for integer scalar types support
QValue from qualifier enum
+
+
+
See also
GLSL mod man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ modf()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::modf (genType x,
genType & i 
)
+
+ +

Returns the fractional part of x and sets i to the integer part (as a whole number floating point value).

+

Both the return value and the output parameter will have the same sign as x.

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLSL modf man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ round()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::round (vec< L, T, Q > const & x)
+
+ +

Returns a value equal to the nearest integer to x.

+

The fraction 0.5 will round in a direction chosen by the implementation, presumably the direction that is fastest. This includes the possibility that round(x) returns the same value as roundEven(x) for all values of x.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL round man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ roundEven()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::roundEven (vec< L, T, Q > const & x)
+
+ +

Returns a value equal to the nearest integer to x.

+

A fractional part of 0.5 will round toward the nearest even integer. (Both 3.5 and 4.5 for x will return 4.0.)

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL roundEven man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+
+New round to even technique
+ +
+
+ +

◆ sign()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::sign (vec< L, T, Q > const & x)
+
+ +

Returns 1.0 if x > 0, 0.0 if x == 0, or -1.0 if x < 0.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL sign man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ smoothstep()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::smoothstep (genType edge0,
genType edge1,
genType x 
)
+
+ +

Returns 0.0 if x <= edge0 and 1.0 if x >= edge1 and performs smooth Hermite interpolation between 0 and 1 when edge0 < x < edge1.

+

This is useful in cases where you would want a threshold function with a smooth transition. This is equivalent to: genType t; t = clamp ((x - edge0) / (edge1 - edge0), 0, 1); return t * t * (3 - 2 * t); Results are undefined if edge0 >= edge1.

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLSL smoothstep man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ step() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::step (genType edge,
genType x 
)
+
+ +

Returns 0.0 if x < edge, otherwise it returns 1.0 for each component of a genType.

+
See also
GLSL step man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ step() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::step (edge,
vec< L, T, Q > const & x 
)
+
+ +

Returns 0.0 if x < edge, otherwise it returns 1.0.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL step man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ step() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::step (vec< L, T, Q > const & edge,
vec< L, T, Q > const & x 
)
+
+ +

Returns 0.0 if x < edge, otherwise it returns 1.0.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL step man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ trunc()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::trunc (vec< L, T, Q > const & x)
+
+ +

Returns a value equal to the nearest integer to x whose absolute value is not larger than the absolute value of x.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL trunc man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ uintBitsToFloat() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL float glm::uintBitsToFloat (uint v)
+
+ +

Returns a floating-point value corresponding to a unsigned integer encoding of a floating-point value.

+

If an inf or NaN is passed in, it will not signal, and the resulting floating point value is unspecified. Otherwise, the bit-level representation is preserved.

+
See also
GLSL uintBitsToFloat man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ uintBitsToFloat() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, float, Q> glm::uintBitsToFloat (vec< L, uint, Q > const & v)
+
+ +

Returns a floating-point value corresponding to a unsigned integer encoding of a floating-point value.

+

If an inf or NaN is passed in, it will not signal, and the resulting floating point value is unspecified. Otherwise, the bit-level representation is preserved.

+
Template Parameters
+ + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
QValue from qualifier enum
+
+
+
See also
GLSL uintBitsToFloat man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+
+
GLM_FUNC_DECL GLM_CONSTEXPR genType e()
Return e constant.
+
GLM_FUNC_DECL GLM_CONSTEXPR genTypeT mix(genTypeT x, genTypeT y, genTypeU a)
If genTypeU is a floating scalar or vector: Returns x * (1.0 - a) + y * a, i.e., the linear blend of ...
+
vec< 4, float, defaultp > vec4
4 components vector of single-precision floating-point numbers.
+
vec< 3, double, defaultp > dvec3
3 components vector of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a00813.html b/include/glm/doc/api/a00813.html new file mode 100644 index 0000000..8189820 --- /dev/null +++ b/include/glm/doc/api/a00813.html @@ -0,0 +1,375 @@ + + + + + + + +1.0.2 API documentation: Exponential functions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Exponential functions
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > exp (vec< L, T, Q > const &v)
 Returns the natural exponentiation of v, i.e., e^v. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > exp2 (vec< L, T, Q > const &v)
 Returns 2 raised to the v power. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > inversesqrt (vec< L, T, Q > const &v)
 Returns the reciprocal of the positive square root of v. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > log (vec< L, T, Q > const &v)
 Returns the natural logarithm of v, i.e., returns the value y which satisfies the equation x = e^y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > log2 (vec< L, T, Q > const &v)
 Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > pow (vec< L, T, Q > const &base, vec< L, T, Q > const &exponent)
 Returns 'base' raised to the power 'exponent'. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > sqrt (vec< L, T, Q > const &v)
 Returns the positive square root of v. More...
 
+

Detailed Description

+

Provides GLSL exponential functions

+

These all operate component-wise. The description is per component.

+

Include <glm/exponential.hpp> to use these core features.

+

Function Documentation

+ +

◆ exp()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::exp (vec< L, T, Q > const & v)
+
+ +

Returns the natural exponentiation of v, i.e., e^v.

+
Parameters
+ + +
vexp function is defined for input values of v defined in the range (inf-, inf+) in the limit of the type qualifier.
+
+
+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL exp man page
+
+GLSL 4.20.8 specification, section 8.2 Exponential Functions
+ +
+
+ +

◆ exp2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::exp2 (vec< L, T, Q > const & v)
+
+ +

Returns 2 raised to the v power.

+
Parameters
+ + +
vexp2 function is defined for input values of v defined in the range (inf-, inf+) in the limit of the type qualifier.
+
+
+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL exp2 man page
+
+GLSL 4.20.8 specification, section 8.2 Exponential Functions
+ +
+
+ +

◆ inversesqrt()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::inversesqrt (vec< L, T, Q > const & v)
+
+ +

Returns the reciprocal of the positive square root of v.

+
Parameters
+ + +
vinversesqrt function is defined for input values of v defined in the range [0, inf+) in the limit of the type qualifier.
+
+
+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL inversesqrt man page
+
+GLSL 4.20.8 specification, section 8.2 Exponential Functions
+ +
+
+ +

◆ log()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::log (vec< L, T, Q > const & v)
+
+ +

Returns the natural logarithm of v, i.e., returns the value y which satisfies the equation x = e^y.

+

Results are undefined if v <= 0.

+
Parameters
+ + +
vlog function is defined for input values of v defined in the range (0, inf+) in the limit of the type qualifier.
+
+
+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL log man page
+
+GLSL 4.20.8 specification, section 8.2 Exponential Functions
+ +
+
+ +

◆ log2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec< L, T, Q > log2 (vec< L, T, Q > const & v)
+
+ +

Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y.

+

Returns the log2 of x for integer values.

+
Parameters
+ + +
vlog2 function is defined for input values of v defined in the range (0, inf+) in the limit of the type qualifier.
+
+
+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL log2 man page
+
+GLSL 4.20.8 specification, section 8.2 Exponential Functions
+

Useful to compute mipmap count from the texture size.

See also
GLM_GTC_integer
+ +
+
+ +

◆ pow()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::pow (vec< L, T, Q > const & base,
vec< L, T, Q > const & exponent 
)
+
+ +

Returns 'base' raised to the power 'exponent'.

+
Parameters
+ + + +
baseFloating point value. pow function is defined for input values of 'base' defined in the range (inf-, inf+) in the limit of the type qualifier.
exponentFloating point value representing the 'exponent'.
+
+
+
See also
GLSL pow man page
+
+GLSL 4.20.8 specification, section 8.2 Exponential Functions
+ +
+
+ +

◆ sqrt()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::sqrt (vec< L, T, Q > const & v)
+
+ +

Returns the positive square root of v.

+
Parameters
+ + +
vsqrt function is defined for input values of v defined in the range [0, inf+) in the limit of the type qualifier.
+
+
+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL sqrt man page
+
+GLSL 4.20.8 specification, section 8.2 Exponential Functions
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00814.html b/include/glm/doc/api/a00814.html new file mode 100644 index 0000000..72e54ce --- /dev/null +++ b/include/glm/doc/api/a00814.html @@ -0,0 +1,3008 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_clip_space + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_clip_space
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustum (T left, T right, T bottom, T top, T near, T far)
 Creates a frustum matrix with default handedness, using the default handedness and default near and far clip planes definition. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumLH (T left, T right, T bottom, T top, T near, T far)
 Creates a left-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumLH_NO (T left, T right, T bottom, T top, T near, T far)
 Creates a left-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumLH_ZO (T left, T right, T bottom, T top, T near, T far)
 Creates a left-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumNO (T left, T right, T bottom, T top, T near, T far)
 Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumRH (T left, T right, T bottom, T top, T near, T far)
 Creates a right-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumRH_NO (T left, T right, T bottom, T top, T near, T far)
 Creates a right-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumRH_ZO (T left, T right, T bottom, T top, T near, T far)
 Creates a right-handed frustum matrix. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > frustumZO (T left, T right, T bottom, T top, T near, T far)
 Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspective (T fovy, T aspect, T near)
 Creates a matrix for a symmetric perspective-view frustum with far plane at infinite with default handedness. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveLH (T fovy, T aspect, T near)
 Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveLH_NO (T fovy, T aspect, T near)
 Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveLH_ZO (T fovy, T aspect, T near)
 Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveRH (T fovy, T aspect, T near)
 Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveRH_NO (T fovy, T aspect, T near)
 Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > infinitePerspectiveRH_ZO (T fovy, T aspect, T near)
 Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > ortho (T left, T right, T bottom, T top)
 Creates a matrix for projecting two-dimensional coordinates onto the screen. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > ortho (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using the default handedness and default near and far clip planes definition. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoLH (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoLH_NO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoLH_ZO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoNO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoRH (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoRH_NO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoRH_ZO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > orthoZO (T left, T right, T bottom, T top, T zNear, T zFar)
 Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspective (T fovy, T aspect, T near, T far)
 Creates a matrix for a symmetric perspective-view frustum based on the default handedness and default near and far clip planes definition. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFov (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view and the default handedness and default near and far clip planes definition. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovLH (T fov, T width, T height, T near, T far)
 Builds a left-handed perspective projection matrix based on a field of view. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovLH_NO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovLH_ZO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using left-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovNO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovRH (T fov, T width, T height, T near, T far)
 Builds a right-handed perspective projection matrix based on a field of view. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovRH_NO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovRH_ZO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using right-handed coordinates. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveFovZO (T fov, T width, T height, T near, T far)
 Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveLH (T fovy, T aspect, T near, T far)
 Creates a matrix for a left-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveLH_NO (T fovy, T aspect, T near, T far)
 Creates a matrix for a left-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveLH_ZO (T fovy, T aspect, T near, T far)
 Creates a matrix for a left-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveNO (T fovy, T aspect, T near, T far)
 Creates a matrix for a symmetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveRH (T fovy, T aspect, T near, T far)
 Creates a matrix for a right-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveRH_NO (T fovy, T aspect, T near, T far)
 Creates a matrix for a right-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveRH_ZO (T fovy, T aspect, T near, T far)
 Creates a matrix for a right-handed, symmetric perspective-view frustum. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > perspectiveZO (T fovy, T aspect, T near, T far)
 Creates a matrix for a symmetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > tweakedInfinitePerspective (T fovy, T aspect, T near)
 Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > tweakedInfinitePerspective (T fovy, T aspect, T near, T ep)
 Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping. More...
 
+

Detailed Description

+

Defines functions that generate clip space transformation matrices.

+

The matrices generated by this extension use standard OpenGL fixed-function conventions. For example, the lookAt function generates a transform from world space into the specific eye space that the projective matrix functions (perspective, ortho, etc) are designed to expect. The OpenGL compatibility specifications defines the particular layout of this eye space.

+

Include <glm/ext/matrix_clip_space.hpp> to use the features of this extension.

+
See also
GLM_EXT_matrix_transform
+
+GLM_EXT_matrix_projection
+

Function Documentation

+ +

◆ frustum()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustum (left,
right,
bottom,
top,
near,
far 
)
+
+ +

Creates a frustum matrix with default handedness, using the default handedness and default near and far clip planes definition.

+

To change default handedness use GLM_FORCE_LEFT_HANDED. To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
glFrustum man page
+ +
+
+ +

◆ frustumLH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumLH (left,
right,
bottom,
top,
near,
far 
)
+
+ +

Creates a left-handed frustum matrix.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ frustumLH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumLH_NO (left,
right,
bottom,
top,
near,
far 
)
+
+ +

Creates a left-handed frustum matrix.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ frustumLH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumLH_ZO (left,
right,
bottom,
top,
near,
far 
)
+
+ +

Creates a left-handed frustum matrix.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ frustumNO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumNO (left,
right,
bottom,
top,
near,
far 
)
+
+ +

Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ frustumRH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumRH (left,
right,
bottom,
top,
near,
far 
)
+
+ +

Creates a right-handed frustum matrix.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ frustumRH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumRH_NO (left,
right,
bottom,
top,
near,
far 
)
+
+ +

Creates a right-handed frustum matrix.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ frustumRH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumRH_ZO (left,
right,
bottom,
top,
near,
far 
)
+
+ +

Creates a right-handed frustum matrix.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ frustumZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::frustumZO (left,
right,
bottom,
top,
near,
far 
)
+
+ +

Creates a frustum matrix using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ infinitePerspective()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspective (fovy,
aspect,
near 
)
+
+ +

Creates a matrix for a symmetric perspective-view frustum with far plane at infinite with default handedness.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ infinitePerspectiveLH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspectiveLH (fovy,
aspect,
near 
)
+
+ +

Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ infinitePerspectiveLH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspectiveLH_NO (fovy,
aspect,
near 
)
+
+ +

Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ infinitePerspectiveLH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspectiveLH_ZO (fovy,
aspect,
near 
)
+
+ +

Creates a matrix for a left-handed, symmetric perspective-view frustum with far plane at infinite.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ infinitePerspectiveRH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspectiveRH (fovy,
aspect,
near 
)
+
+ +

Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ infinitePerspectiveRH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspectiveRH_NO (fovy,
aspect,
near 
)
+
+ +

Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ infinitePerspectiveRH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::infinitePerspectiveRH_ZO (fovy,
aspect,
near 
)
+
+ +

Creates a matrix for a right-handed, symmetric perspective-view frustum with far plane at infinite.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ ortho() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::ortho (left,
right,
bottom,
top 
)
+
+ +

Creates a matrix for projecting two-dimensional coordinates onto the screen.

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top, T const& zNear, T const& zFar)
+
+gluOrtho2D man page
+ +
+
+ +

◆ ortho() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::ortho (left,
right,
bottom,
top,
zNear,
zFar 
)
+
+ +

Creates a matrix for an orthographic parallel viewing volume, using the default handedness and default near and far clip planes definition.

+

To change default handedness use GLM_FORCE_LEFT_HANDED. To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top)
+
+glOrtho man page
+ +
+
+ +

◆ orthoLH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoLH (left,
right,
bottom,
top,
zNear,
zFar 
)
+
+ +

Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top)
+ +
+
+ +

◆ orthoLH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoLH_NO (left,
right,
bottom,
top,
zNear,
zFar 
)
+
+ +

Creates a matrix for an orthographic parallel viewing volume using left-handed coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top)
+ +
+
+ +

◆ orthoLH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoLH_ZO (left,
right,
bottom,
top,
zNear,
zFar 
)
+
+ +

Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top)
+ +
+
+ +

◆ orthoNO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoNO (left,
right,
bottom,
top,
zNear,
zFar 
)
+
+ +

Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top)
+ +
+
+ +

◆ orthoRH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoRH (left,
right,
bottom,
top,
zNear,
zFar 
)
+
+ +

Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top)
+ +
+
+ +

◆ orthoRH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoRH_NO (left,
right,
bottom,
top,
zNear,
zFar 
)
+
+ +

Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top)
+ +
+
+ +

◆ orthoRH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoRH_ZO (left,
right,
bottom,
top,
zNear,
zFar 
)
+
+ +

Creates a matrix for an orthographic parallel viewing volume, using right-handed coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top)
+ +
+
+ +

◆ orthoZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::orthoZO (left,
right,
bottom,
top,
zNear,
zFar 
)
+
+ +

Creates a matrix for an orthographic parallel viewing volume, using left-handed coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
- glm::ortho(T const& left, T const& right, T const& bottom, T const& top)
+ +
+
+ +

◆ perspective()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspective (fovy,
aspect,
near,
far 
)
+
+ +

Creates a matrix for a symmetric perspective-view frustum based on the default handedness and default near and far clip planes definition.

+

To change default handedness use GLM_FORCE_LEFT_HANDED. To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.

+
Parameters
+ + + + + +
fovySpecifies the field of view angle in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+
See also
gluPerspective man page
+ +
+
+ +

◆ perspectiveFov()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFov (fov,
width,
height,
near,
far 
)
+
+ +

Builds a perspective projection matrix based on a field of view and the default handedness and default near and far clip planes definition.

+

To change default handedness use GLM_FORCE_LEFT_HANDED. To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.

+
Parameters
+ + + + + + +
fovExpressed in radians.
widthWidth of the viewport
heightHeight of the viewport
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveFovLH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovLH (fov,
width,
height,
near,
far 
)
+
+ +

Builds a left-handed perspective projection matrix based on a field of view.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + + +
fovExpressed in radians.
widthWidth of the viewport
heightHeight of the viewport
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveFovLH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovLH_NO (fov,
width,
height,
near,
far 
)
+
+ +

Builds a perspective projection matrix based on a field of view using left-handed coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + + +
fovExpressed in radians.
widthWidth of the viewport
heightHeight of the viewport
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveFovLH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovLH_ZO (fov,
width,
height,
near,
far 
)
+
+ +

Builds a perspective projection matrix based on a field of view using left-handed coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + + + +
fovExpressed in radians.
widthWidth of the viewport
heightHeight of the viewport
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveFovNO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovNO (fov,
width,
height,
near,
far 
)
+
+ +

Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + + +
fovExpressed in radians.
widthWidth of the viewport
heightHeight of the viewport
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveFovRH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovRH (fov,
width,
height,
near,
far 
)
+
+ +

Builds a right-handed perspective projection matrix based on a field of view.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + + +
fovExpressed in radians.
widthWidth of the viewport
heightHeight of the viewport
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveFovRH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovRH_NO (fov,
width,
height,
near,
far 
)
+
+ +

Builds a perspective projection matrix based on a field of view using right-handed coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + + +
fovExpressed in radians.
widthWidth of the viewport
heightHeight of the viewport
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveFovRH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovRH_ZO (fov,
width,
height,
near,
far 
)
+
+ +

Builds a perspective projection matrix based on a field of view using right-handed coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + + + +
fovExpressed in radians.
widthWidth of the viewport
heightHeight of the viewport
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveFovZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveFovZO (fov,
width,
height,
near,
far 
)
+
+ +

Builds a perspective projection matrix based on a field of view using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + + + +
fovExpressed in radians.
widthWidth of the viewport
heightHeight of the viewport
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveLH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveLH (fovy,
aspect,
near,
far 
)
+
+ +

Creates a matrix for a left-handed, symmetric perspective-view frustum.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveLH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveLH_NO (fovy,
aspect,
near,
far 
)
+
+ +

Creates a matrix for a left-handed, symmetric perspective-view frustum.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveLH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveLH_ZO (fovy,
aspect,
near,
far 
)
+
+ +

Creates a matrix for a left-handed, symmetric perspective-view frustum.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveNO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveNO (fovy,
aspect,
near,
far 
)
+
+ +

Creates a matrix for a symmetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveRH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveRH (fovy,
aspect,
near,
far 
)
+
+ +

Creates a matrix for a right-handed, symmetric perspective-view frustum.

+

If GLM_FORCE_DEPTH_ZERO_TO_ONE is defined, the near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition) Otherwise, the near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveRH_NO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveRH_NO (fovy,
aspect,
near,
far 
)
+
+ +

Creates a matrix for a right-handed, symmetric perspective-view frustum.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveRH_ZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveRH_ZO (fovy,
aspect,
near,
far 
)
+
+ +

Creates a matrix for a right-handed, symmetric perspective-view frustum.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ perspectiveZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::perspectiveZO (fovy,
aspect,
near,
far 
)
+
+ +

Creates a matrix for a symmetric perspective-view frustum using left-handed coordinates if GLM_FORCE_LEFT_HANDED if defined or right-handed coordinates otherwise.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
farSpecifies the distance from the viewer to the far clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ tweakedInfinitePerspective() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::tweakedInfinitePerspective (fovy,
aspect,
near 
)
+
+ +

Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping.

+
Parameters
+ + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+ +

◆ tweakedInfinitePerspective() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::tweakedInfinitePerspective (fovy,
aspect,
near,
ep 
)
+
+ +

Creates a matrix for a symmetric perspective-view frustum with far plane at infinite for graphics hardware that doesn't support depth clamping.

+
Parameters
+ + + + + +
fovySpecifies the field of view angle, in degrees, in the y direction. Expressed in radians.
aspectSpecifies the aspect ratio that determines the field of view in the x direction. The aspect ratio is the ratio of x (width) to y (height).
nearSpecifies the distance from the viewer to the near clipping plane (always positive).
epEpsilon
+
+
+
Template Parameters
+ + +
TA floating-point scalar type
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00815.html b/include/glm/doc/api/a00815.html new file mode 100644 index 0000000..84ea25f --- /dev/null +++ b/include/glm/doc/api/a00815.html @@ -0,0 +1,81 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_common + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_EXT_matrix_common
+
+
+

Detailed Description

+

Defines functions for common matrix operations.

+

Include <glm/ext/matrix_common.hpp> to use the features of this extension.

+
See also
GLM_EXT_matrix_common
+
+ + + + diff --git a/include/glm/doc/api/a00816.html b/include/glm/doc/api/a00816.html new file mode 100644 index 0000000..29805dd --- /dev/null +++ b/include/glm/doc/api/a00816.html @@ -0,0 +1,135 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int2x2 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int2x2
+
+
+ + + + + + + + +

+Typedefs

typedef mat< 2, 2, int, defaultp > imat2
 Signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int, defaultp > imat2x2
 Signed integer 2x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int2x2.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ imat2

+ +
+
+ + + + +
typedef mat< 2, 2, int, defaultp > imat2
+
+ +

Signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2
+
+GLM_GTC_matrix_integer
+ +

Definition at line 35 of file matrix_int2x2.hpp.

+ +
+
+ +

◆ imat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, int, defaultp > imat2x2
+
+ +

Signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_int2x2.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00817.html b/include/glm/doc/api/a00817.html new file mode 100644 index 0000000..fb1e7af --- /dev/null +++ b/include/glm/doc/api/a00817.html @@ -0,0 +1,263 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int2x2_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int2x2_sized
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, int16, defaultp > i16mat2
 16 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int16, defaultp > i16mat2x2
 16 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int32, defaultp > i32mat2
 32 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int32, defaultp > i32mat2x2
 32 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int64, defaultp > i64mat2
 64 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int64, defaultp > i64mat2x2
 64 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int8, defaultp > i8mat2
 8 bit signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int8, defaultp > i8mat2x2
 8 bit signed integer 2x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int2x2_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ i16mat2

+ +
+
+ + + + +
typedef mat<2, 2, int16, defaultp> i16mat2
+
+ +

16 bit signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2_sized
+ +

Definition at line 57 of file matrix_int2x2_sized.hpp.

+ +
+
+ +

◆ i16mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, int16, defaultp > i16mat2x2
+
+ +

16 bit signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2_sized
+ +

Definition at line 36 of file matrix_int2x2_sized.hpp.

+ +
+
+ +

◆ i32mat2

+ +
+
+ + + + +
typedef mat<2, 2, int32, defaultp> i32mat2
+
+ +

32 bit signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2_sized
+ +

Definition at line 62 of file matrix_int2x2_sized.hpp.

+ +
+
+ +

◆ i32mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, int32, defaultp > i32mat2x2
+
+ +

32 bit signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2_sized
+ +

Definition at line 41 of file matrix_int2x2_sized.hpp.

+ +
+
+ +

◆ i64mat2

+ +
+
+ + + + +
typedef mat<2, 2, int64, defaultp> i64mat2
+
+ +

64 bit signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2_sized
+ +

Definition at line 67 of file matrix_int2x2_sized.hpp.

+ +
+
+ +

◆ i64mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, int64, defaultp > i64mat2x2
+
+ +

64 bit signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2_sized
+ +

Definition at line 46 of file matrix_int2x2_sized.hpp.

+ +
+
+ +

◆ i8mat2

+ +
+
+ + + + +
typedef mat<2, 2, int8, defaultp> i8mat2
+
+ +

8 bit signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2_sized
+ +

Definition at line 52 of file matrix_int2x2_sized.hpp.

+ +
+
+ +

◆ i8mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, int8, defaultp > i8mat2x2
+
+ +

8 bit signed integer 2x2 matrix.

+
See also
GLM_EXT_matrix_int2x2_sized
+ +

Definition at line 31 of file matrix_int2x2_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00818.html b/include/glm/doc/api/a00818.html new file mode 100644 index 0000000..f82b7e4 --- /dev/null +++ b/include/glm/doc/api/a00818.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int2x3 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int2x3
+
+
+ + + + + +

+Typedefs

typedef mat< 2, 3, int, defaultp > imat2x3
 Signed integer 2x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int2x3.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ imat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, int, defaultp > imat2x3
+
+ +

Signed integer 2x3 matrix.

+
See also
GLM_EXT_matrix_int2x3
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_int2x3.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00819.html b/include/glm/doc/api/a00819.html new file mode 100644 index 0000000..5818827 --- /dev/null +++ b/include/glm/doc/api/a00819.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int2x3_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int2x3_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 3, int16, defaultp > i16mat2x3
 16 bit signed integer 2x3 matrix. More...
 
typedef mat< 2, 3, int32, defaultp > i32mat2x3
 32 bit signed integer 2x3 matrix. More...
 
typedef mat< 2, 3, int64, defaultp > i64mat2x3
 64 bit signed integer 2x3 matrix. More...
 
typedef mat< 2, 3, int8, defaultp > i8mat2x3
 8 bit signed integer 2x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int2x3_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ i16mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, int16, defaultp > i16mat2x3
+
+ +

16 bit signed integer 2x3 matrix.

+
See also
GLM_EXT_matrix_int2x3_sized
+ +

Definition at line 36 of file matrix_int2x3_sized.hpp.

+ +
+
+ +

◆ i32mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, int32, defaultp > i32mat2x3
+
+ +

32 bit signed integer 2x3 matrix.

+
See also
GLM_EXT_matrix_int2x3_sized
+ +

Definition at line 41 of file matrix_int2x3_sized.hpp.

+ +
+
+ +

◆ i64mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, int64, defaultp > i64mat2x3
+
+ +

64 bit signed integer 2x3 matrix.

+
See also
GLM_EXT_matrix_int2x3_sized
+ +

Definition at line 46 of file matrix_int2x3_sized.hpp.

+ +
+
+ +

◆ i8mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, int8, defaultp > i8mat2x3
+
+ +

8 bit signed integer 2x3 matrix.

+
See also
GLM_EXT_matrix_int2x3_sized
+ +

Definition at line 31 of file matrix_int2x3_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00820.html b/include/glm/doc/api/a00820.html new file mode 100644 index 0000000..764f656 --- /dev/null +++ b/include/glm/doc/api/a00820.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int2x4 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int2x4
+
+
+ + + + + +

+Typedefs

typedef mat< 2, 4, int, defaultp > imat2x4
 Signed integer 2x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int2x4.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ imat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, int, defaultp > imat2x4
+
+ +

Signed integer 2x4 matrix.

+
See also
GLM_EXT_matrix_int2x4
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_int2x4.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00821.html b/include/glm/doc/api/a00821.html new file mode 100644 index 0000000..8818b95 --- /dev/null +++ b/include/glm/doc/api/a00821.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int2x4_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int2x4_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 4, int16, defaultp > i16mat2x4
 16 bit signed integer 2x4 matrix. More...
 
typedef mat< 2, 4, int32, defaultp > i32mat2x4
 32 bit signed integer 2x4 matrix. More...
 
typedef mat< 2, 4, int64, defaultp > i64mat2x4
 64 bit signed integer 2x4 matrix. More...
 
typedef mat< 2, 4, int8, defaultp > i8mat2x4
 8 bit signed integer 2x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int2x4_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ i16mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, int16, defaultp > i16mat2x4
+
+ +

16 bit signed integer 2x4 matrix.

+
See also
GLM_EXT_matrix_int2x4_sized
+ +

Definition at line 36 of file matrix_int2x4_sized.hpp.

+ +
+
+ +

◆ i32mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, int32, defaultp > i32mat2x4
+
+ +

32 bit signed integer 2x4 matrix.

+
See also
GLM_EXT_matrix_int2x4_sized
+ +

Definition at line 41 of file matrix_int2x4_sized.hpp.

+ +
+
+ +

◆ i64mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, int64, defaultp > i64mat2x4
+
+ +

64 bit signed integer 2x4 matrix.

+
See also
GLM_EXT_matrix_int2x4_sized
+ +

Definition at line 46 of file matrix_int2x4_sized.hpp.

+ +
+
+ +

◆ i8mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, int8, defaultp > i8mat2x4
+
+ +

8 bit signed integer 2x4 matrix.

+
See also
GLM_EXT_matrix_int2x4_sized
+ +

Definition at line 31 of file matrix_int2x4_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00822.html b/include/glm/doc/api/a00822.html new file mode 100644 index 0000000..512c10c --- /dev/null +++ b/include/glm/doc/api/a00822.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int3x2 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int3x2
+
+
+ + + + + +

+Typedefs

typedef mat< 3, 2, int, defaultp > imat3x2
 Signed integer 3x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int3x2.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ imat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, int, defaultp > imat3x2
+
+ +

Signed integer 3x2 matrix.

+
See also
GLM_EXT_matrix_int3x2
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_int3x2.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00823.html b/include/glm/doc/api/a00823.html new file mode 100644 index 0000000..a6bba71 --- /dev/null +++ b/include/glm/doc/api/a00823.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int3x2_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int3x2_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 2, int16, defaultp > i16mat3x2
 16 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, int32, defaultp > i32mat3x2
 32 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, int64, defaultp > i64mat3x2
 64 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, int8, defaultp > i8mat3x2
 8 bit signed integer 3x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int3x2_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ i16mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, int16, defaultp > i16mat3x2
+
+ +

16 bit signed integer 3x2 matrix.

+
See also
GLM_EXT_matrix_int3x2_sized
+ +

Definition at line 36 of file matrix_int3x2_sized.hpp.

+ +
+
+ +

◆ i32mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, int32, defaultp > i32mat3x2
+
+ +

32 bit signed integer 3x2 matrix.

+
See also
GLM_EXT_matrix_int3x2_sized
+ +

Definition at line 41 of file matrix_int3x2_sized.hpp.

+ +
+
+ +

◆ i64mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, int64, defaultp > i64mat3x2
+
+ +

64 bit signed integer 3x2 matrix.

+
See also
GLM_EXT_matrix_int3x2_sized
+ +

Definition at line 46 of file matrix_int3x2_sized.hpp.

+ +
+
+ +

◆ i8mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, int8, defaultp > i8mat3x2
+
+ +

8 bit signed integer 3x2 matrix.

+
See also
GLM_EXT_matrix_int3x2_sized
+ +

Definition at line 31 of file matrix_int3x2_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00824.html b/include/glm/doc/api/a00824.html new file mode 100644 index 0000000..9ed8104 --- /dev/null +++ b/include/glm/doc/api/a00824.html @@ -0,0 +1,135 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int3x3 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int3x3
+
+
+ + + + + + + + +

+Typedefs

typedef mat< 3, 3, int, defaultp > imat3
 Signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int, defaultp > imat3x3
 Signed integer 3x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int3x3.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ imat3

+ +
+
+ + + + +
typedef mat< 3, 3, int, defaultp > imat3
+
+ +

Signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3
+
+GLM_GTC_matrix_integer
+ +

Definition at line 35 of file matrix_int3x3.hpp.

+ +
+
+ +

◆ imat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, int, defaultp > imat3x3
+
+ +

Signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_int3x3.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00825.html b/include/glm/doc/api/a00825.html new file mode 100644 index 0000000..3948422 --- /dev/null +++ b/include/glm/doc/api/a00825.html @@ -0,0 +1,263 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int3x3_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int3x3_sized
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 3, int16, defaultp > i16mat3
 16 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int16, defaultp > i16mat3x3
 16 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int32, defaultp > i32mat3
 32 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int32, defaultp > i32mat3x3
 32 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int64, defaultp > i64mat3
 64 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int64, defaultp > i64mat3x3
 64 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int8, defaultp > i8mat3
 8 bit signed integer 3x3 matrix. More...
 
typedef mat< 3, 3, int8, defaultp > i8mat3x3
 8 bit signed integer 3x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int3x3_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ i16mat3

+ +
+
+ + + + +
typedef mat<3, 3, int16, defaultp> i16mat3
+
+ +

16 bit signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3_sized
+ +

Definition at line 57 of file matrix_int3x3_sized.hpp.

+ +
+
+ +

◆ i16mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, int16, defaultp > i16mat3x3
+
+ +

16 bit signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3_sized
+ +

Definition at line 36 of file matrix_int3x3_sized.hpp.

+ +
+
+ +

◆ i32mat3

+ +
+
+ + + + +
typedef mat<3, 3, int32, defaultp> i32mat3
+
+ +

32 bit signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3_sized
+ +

Definition at line 62 of file matrix_int3x3_sized.hpp.

+ +
+
+ +

◆ i32mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, int32, defaultp > i32mat3x3
+
+ +

32 bit signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3_sized
+ +

Definition at line 41 of file matrix_int3x3_sized.hpp.

+ +
+
+ +

◆ i64mat3

+ +
+
+ + + + +
typedef mat<3, 3, int64, defaultp> i64mat3
+
+ +

64 bit signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3_sized
+ +

Definition at line 67 of file matrix_int3x3_sized.hpp.

+ +
+
+ +

◆ i64mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, int64, defaultp > i64mat3x3
+
+ +

64 bit signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3_sized
+ +

Definition at line 46 of file matrix_int3x3_sized.hpp.

+ +
+
+ +

◆ i8mat3

+ +
+
+ + + + +
typedef mat<3, 3, int8, defaultp> i8mat3
+
+ +

8 bit signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3_sized
+ +

Definition at line 52 of file matrix_int3x3_sized.hpp.

+ +
+
+ +

◆ i8mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, int8, defaultp > i8mat3x3
+
+ +

8 bit signed integer 3x3 matrix.

+
See also
GLM_EXT_matrix_int3x3_sized
+ +

Definition at line 31 of file matrix_int3x3_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00826.html b/include/glm/doc/api/a00826.html new file mode 100644 index 0000000..fd444e0 --- /dev/null +++ b/include/glm/doc/api/a00826.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int3x4 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int3x4
+
+
+ + + + + +

+Typedefs

typedef mat< 3, 4, int, defaultp > imat3x4
 Signed integer 3x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int3x4.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ imat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, int, defaultp > imat3x4
+
+ +

Signed integer 3x4 matrix.

+
See also
GLM_EXT_matrix_int3x4
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_int3x4.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00827.html b/include/glm/doc/api/a00827.html new file mode 100644 index 0000000..4f79245 --- /dev/null +++ b/include/glm/doc/api/a00827.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int3x4_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int3x4_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 4, int16, defaultp > i16mat3x4
 16 bit signed integer 3x4 matrix. More...
 
typedef mat< 3, 4, int32, defaultp > i32mat3x4
 32 bit signed integer 3x4 matrix. More...
 
typedef mat< 3, 4, int64, defaultp > i64mat3x4
 64 bit signed integer 3x4 matrix. More...
 
typedef mat< 3, 4, int8, defaultp > i8mat3x4
 8 bit signed integer 3x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int3x4_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ i16mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, int16, defaultp > i16mat3x4
+
+ +

16 bit signed integer 3x4 matrix.

+
See also
GLM_EXT_matrix_int3x4_sized
+ +

Definition at line 36 of file matrix_int3x4_sized.hpp.

+ +
+
+ +

◆ i32mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, int32, defaultp > i32mat3x4
+
+ +

32 bit signed integer 3x4 matrix.

+
See also
GLM_EXT_matrix_int3x4_sized
+ +

Definition at line 41 of file matrix_int3x4_sized.hpp.

+ +
+
+ +

◆ i64mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, int64, defaultp > i64mat3x4
+
+ +

64 bit signed integer 3x4 matrix.

+
See also
GLM_EXT_matrix_int3x4_sized
+ +

Definition at line 46 of file matrix_int3x4_sized.hpp.

+ +
+
+ +

◆ i8mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, int8, defaultp > i8mat3x4
+
+ +

8 bit signed integer 3x4 matrix.

+
See also
GLM_EXT_matrix_int3x4_sized
+ +

Definition at line 31 of file matrix_int3x4_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00828.html b/include/glm/doc/api/a00828.html new file mode 100644 index 0000000..94bed52 --- /dev/null +++ b/include/glm/doc/api/a00828.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int4x2 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int4x2
+
+
+ + + + + +

+Typedefs

typedef mat< 4, 2, int, defaultp > imat4x2
 Signed integer 4x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int4x2.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ imat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, int, defaultp > imat4x2
+
+ +

Signed integer 4x2 matrix.

+
See also
GLM_EXT_matrix_int4x2
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_int4x2.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00829.html b/include/glm/doc/api/a00829.html new file mode 100644 index 0000000..ae3f7b5 --- /dev/null +++ b/include/glm/doc/api/a00829.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int4x2_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int4x2_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 2, int16, defaultp > i16mat4x2
 16 bit signed integer 4x2 matrix. More...
 
typedef mat< 4, 2, int32, defaultp > i32mat4x2
 32 bit signed integer 4x2 matrix. More...
 
typedef mat< 4, 2, int64, defaultp > i64mat4x2
 64 bit signed integer 4x2 matrix. More...
 
typedef mat< 4, 2, int8, defaultp > i8mat4x2
 8 bit signed integer 4x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int4x2_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ i16mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, int16, defaultp > i16mat4x2
+
+ +

16 bit signed integer 4x2 matrix.

+
See also
GLM_EXT_matrix_int4x2_sized
+ +

Definition at line 36 of file matrix_int4x2_sized.hpp.

+ +
+
+ +

◆ i32mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, int32, defaultp > i32mat4x2
+
+ +

32 bit signed integer 4x2 matrix.

+
See also
GLM_EXT_matrix_int4x2_sized
+ +

Definition at line 41 of file matrix_int4x2_sized.hpp.

+ +
+
+ +

◆ i64mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, int64, defaultp > i64mat4x2
+
+ +

64 bit signed integer 4x2 matrix.

+
See also
GLM_EXT_matrix_int4x2_sized
+ +

Definition at line 46 of file matrix_int4x2_sized.hpp.

+ +
+
+ +

◆ i8mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, int8, defaultp > i8mat4x2
+
+ +

8 bit signed integer 4x2 matrix.

+
See also
GLM_EXT_matrix_int4x2_sized
+ +

Definition at line 31 of file matrix_int4x2_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00830.html b/include/glm/doc/api/a00830.html new file mode 100644 index 0000000..b031f9d --- /dev/null +++ b/include/glm/doc/api/a00830.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int4x3 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int4x3
+
+
+ + + + + +

+Typedefs

typedef mat< 4, 3, int, defaultp > imat4x3
 Signed integer 4x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int4x3.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ imat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, int, defaultp > imat4x3
+
+ +

Signed integer 4x3 matrix.

+
See also
GLM_EXT_matrix_int4x3
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_int4x3.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00831.html b/include/glm/doc/api/a00831.html new file mode 100644 index 0000000..f4dd7cf --- /dev/null +++ b/include/glm/doc/api/a00831.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int4x3_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int4x3_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 3, int16, defaultp > i16mat4x3
 16 bit signed integer 4x3 matrix. More...
 
typedef mat< 4, 3, int32, defaultp > i32mat4x3
 32 bit signed integer 4x3 matrix. More...
 
typedef mat< 4, 3, int64, defaultp > i64mat4x3
 64 bit signed integer 4x3 matrix. More...
 
typedef mat< 4, 3, int8, defaultp > i8mat4x3
 8 bit signed integer 4x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int4x3_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ i16mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, int16, defaultp > i16mat4x3
+
+ +

16 bit signed integer 4x3 matrix.

+
See also
GLM_EXT_matrix_int4x3_sized
+ +

Definition at line 36 of file matrix_int4x3_sized.hpp.

+ +
+
+ +

◆ i32mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, int32, defaultp > i32mat4x3
+
+ +

32 bit signed integer 4x3 matrix.

+
See also
GLM_EXT_matrix_int4x3_sized
+ +

Definition at line 41 of file matrix_int4x3_sized.hpp.

+ +
+
+ +

◆ i64mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, int64, defaultp > i64mat4x3
+
+ +

64 bit signed integer 4x3 matrix.

+
See also
GLM_EXT_matrix_int4x3_sized
+ +

Definition at line 46 of file matrix_int4x3_sized.hpp.

+ +
+
+ +

◆ i8mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, int8, defaultp > i8mat4x3
+
+ +

8 bit signed integer 4x3 matrix.

+
See also
GLM_EXT_matrix_int4x3_sized
+ +

Definition at line 31 of file matrix_int4x3_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00832.html b/include/glm/doc/api/a00832.html new file mode 100644 index 0000000..9996d1b --- /dev/null +++ b/include/glm/doc/api/a00832.html @@ -0,0 +1,135 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int4x4 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int4x4
+
+
+ + + + + + + + +

+Typedefs

typedef mat< 4, 4, int, defaultp > imat4
 Signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int, defaultp > imat4x4
 Signed integer 4x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int4x4.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ imat4

+ +
+
+ + + + +
typedef mat< 4, 4, int, defaultp > imat4
+
+ +

Signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4
+
+GLM_GTC_matrix_integer
+ +

Definition at line 35 of file matrix_int4x4.hpp.

+ +
+
+ +

◆ imat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, int, defaultp > imat4x4
+
+ +

Signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_int4x4.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00833.html b/include/glm/doc/api/a00833.html new file mode 100644 index 0000000..2a93a4b --- /dev/null +++ b/include/glm/doc/api/a00833.html @@ -0,0 +1,263 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int4x4_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int4x4_sized
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 4, int16, defaultp > i16mat4
 16 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int16, defaultp > i16mat4x4
 16 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int32, defaultp > i32mat4
 32 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int32, defaultp > i32mat4x4
 32 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int64, defaultp > i64mat4
 64 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int64, defaultp > i64mat4x4
 64 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int8, defaultp > i8mat4
 8 bit signed integer 4x4 matrix. More...
 
typedef mat< 4, 4, int8, defaultp > i8mat4x4
 8 bit signed integer 4x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_int4x4_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ i16mat4

+ +
+
+ + + + +
typedef mat<4, 4, int16, defaultp> i16mat4
+
+ +

16 bit signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4_sized
+ +

Definition at line 57 of file matrix_int4x4_sized.hpp.

+ +
+
+ +

◆ i16mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, int16, defaultp > i16mat4x4
+
+ +

16 bit signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4_sized
+ +

Definition at line 36 of file matrix_int4x4_sized.hpp.

+ +
+
+ +

◆ i32mat4

+ +
+
+ + + + +
typedef mat<4, 4, int32, defaultp> i32mat4
+
+ +

32 bit signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4_sized
+ +

Definition at line 62 of file matrix_int4x4_sized.hpp.

+ +
+
+ +

◆ i32mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, int32, defaultp > i32mat4x4
+
+ +

32 bit signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4_sized
+ +

Definition at line 41 of file matrix_int4x4_sized.hpp.

+ +
+
+ +

◆ i64mat4

+ +
+
+ + + + +
typedef mat<4, 4, int64, defaultp> i64mat4
+
+ +

64 bit signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4_sized
+ +

Definition at line 67 of file matrix_int4x4_sized.hpp.

+ +
+
+ +

◆ i64mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, int64, defaultp > i64mat4x4
+
+ +

64 bit signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4_sized
+ +

Definition at line 46 of file matrix_int4x4_sized.hpp.

+ +
+
+ +

◆ i8mat4

+ +
+
+ + + + +
typedef mat<4, 4, int8, defaultp> i8mat4
+
+ +

8 bit signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4_sized
+ +

Definition at line 52 of file matrix_int4x4_sized.hpp.

+ +
+
+ +

◆ i8mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, int8, defaultp > i8mat4x4
+
+ +

8 bit signed integer 4x4 matrix.

+
See also
GLM_EXT_matrix_int4x4_sized
+ +

Definition at line 31 of file matrix_int4x4_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00834.html b/include/glm/doc/api/a00834.html new file mode 100644 index 0000000..9982b0a --- /dev/null +++ b/include/glm/doc/api/a00834.html @@ -0,0 +1,303 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_integer + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_integer
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL T determinant (mat< C, R, T, Q > const &m)
 Return the determinant of a squared matrix. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > matrixCompMult (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
 Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and y[i][j]. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL detail::outerProduct_trait< C, R, T, Q >::type outerProduct (vec< C, T, Q > const &c, vec< R, T, Q > const &r)
 Treats the first parameter c as a column vector and the second parameter r as a row vector and does a linear algebraic matrix multiply c * r. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q >::transpose_type transpose (mat< C, R, T, Q > const &x)
 Returns the transposed matrix of x. More...
 
+

Detailed Description

+

Defines functions that generate common transformation matrices.

+

The matrices generated by this extension use standard OpenGL fixed-function conventions. For example, the lookAt function generates a transform from world space into the specific eye space that the projective matrix functions (perspective, ortho, etc) are designed to expect. The OpenGL compatibility specifications defines the particular layout of this eye space.

+

Include <glm/ext/matrix_integer.hpp> to use the features of this extension.

+
See also
GLM_EXT_matrix_projection
+
+GLM_EXT_matrix_clip_space
+

Function Documentation

+ +

◆ determinant()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T determinant (mat< C, R, T, Q > const & m)
+
+ +

Return the determinant of a squared matrix.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number a column
RInteger between 1 and 4 included that qualify the number a row
TFloating-point or signed integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL determinant man page
+
+GLSL 4.20.8 specification, section 8.6 Matrix Functions
+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number a column
RInteger between 1 and 4 included that qualify the number a row
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL determinant man page
+
+GLSL 4.20.8 specification, section 8.6 Matrix Functions
+ +
+
+ +

◆ matrixCompMult()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat< C, R, T, Q > matrixCompMult (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y 
)
+
+ +

Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and y[i][j].

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number a column
RInteger between 1 and 4 included that qualify the number a row
TFloating-point or signed integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL matrixCompMult man page
+
+GLSL 4.20.8 specification, section 8.6 Matrix Functions
+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number a column
RInteger between 1 and 4 included that qualify the number a row
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL matrixCompMult man page
+
+GLSL 4.20.8 specification, section 8.6 Matrix Functions
+ +
+
+ +

◆ outerProduct()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL detail::outerProduct_trait< C, R, T, Q >::type outerProduct (vec< C, T, Q > const & c,
vec< R, T, Q > const & r 
)
+
+ +

Treats the first parameter c as a column vector and the second parameter r as a row vector and does a linear algebraic matrix multiply c * r.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number a column
RInteger between 1 and 4 included that qualify the number a row
TFloating-point or signed integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL outerProduct man page
+
+GLSL 4.20.8 specification, section 8.6 Matrix Functions
+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number a column
RInteger between 1 and 4 included that qualify the number a row
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL outerProduct man page
+
+GLSL 4.20.8 specification, section 8.6 Matrix Functions
+ +
+
+ +

◆ transpose()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat< C, R, T, Q >::transpose_type transpose (mat< C, R, T, Q > const & x)
+
+ +

Returns the transposed matrix of x.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number a column
RInteger between 1 and 4 included that qualify the number a row
TFloating-point or signed integer scalar types
QValue from qualifier enum
+
+
+
See also
GLSL transpose man page
+
+GLSL 4.20.8 specification, section 8.6 Matrix Functions
+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number a column
RInteger between 1 and 4 included that qualify the number a row
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL transpose man page
+
+GLSL 4.20.8 specification, section 8.6 Matrix Functions
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00835.html b/include/glm/doc/api/a00835.html new file mode 100644 index 0000000..c5406ab --- /dev/null +++ b/include/glm/doc/api/a00835.html @@ -0,0 +1,537 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_projection + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_projection
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q, typename U >
GLM_FUNC_DECL mat< 4, 4, T, Q > pickMatrix (vec< 2, T, Q > const &center, vec< 2, T, Q > const &delta, vec< 4, U, Q > const &viewport)
 Define a picking region. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > project (vec< 3, T, Q > const &obj, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates using default near and far clip planes definition. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > projectNO (vec< 3, T, Q > const &obj, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > projectZO (vec< 3, T, Q > const &obj, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > unProject (vec< 3, T, Q > const &win, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified window coordinates (win.x, win.y, win.z) into object coordinates using default near and far clip planes definition. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > unProjectNO (vec< 3, T, Q > const &win, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified window coordinates (win.x, win.y, win.z) into object coordinates. More...
 
template<typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > unProjectZO (vec< 3, T, Q > const &win, mat< 4, 4, T, Q > const &model, mat< 4, 4, T, Q > const &proj, vec< 4, U, Q > const &viewport)
 Map the specified window coordinates (win.x, win.y, win.z) into object coordinates. More...
 
+

Detailed Description

+

Functions that generate common projection transformation matrices.

+

The matrices generated by this extension use standard OpenGL fixed-function conventions. For example, the lookAt function generates a transform from world space into the specific eye space that the projective matrix functions (perspective, ortho, etc) are designed to expect. The OpenGL compatibility specifications defines the particular layout of this eye space.

+

Include <glm/ext/matrix_projection.hpp> to use the features of this extension.

+
See also
GLM_EXT_matrix_transform
+
+GLM_EXT_matrix_clip_space
+

Function Documentation

+ +

◆ pickMatrix()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::pickMatrix (vec< 2, T, Q > const & center,
vec< 2, T, Q > const & delta,
vec< 4, U, Q > const & viewport 
)
+
+ +

Define a picking region.

+
Parameters
+ + + + +
centerSpecify the center of a picking region in window coordinates.
deltaSpecify the width and height, respectively, of the picking region in window coordinates.
viewportRendering viewport
+
+
+
Template Parameters
+ + + +
TNative type used for the computation. Currently supported: half (not recommended), float or double.
UCurrently supported: Floating-point types and integer types.
+
+
+
See also
gluPickMatrix man page
+ +
+
+ +

◆ project()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::project (vec< 3, T, Q > const & obj,
mat< 4, 4, T, Q > const & model,
mat< 4, 4, T, Q > const & proj,
vec< 4, U, Q > const & viewport 
)
+
+ +

Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates using default near and far clip planes definition.

+

To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.

+
Parameters
+ + + + + +
objSpecify the object coordinates.
modelSpecifies the current modelview matrix
projSpecifies the current projection matrix
viewportSpecifies the current viewport
+
+
+
Returns
Return the computed window coordinates.
+
Template Parameters
+ + + +
TNative type used for the computation. Currently supported: half (not recommended), float or double.
UCurrently supported: Floating-point types and integer types.
+
+
+
See also
gluProject man page
+ +
+
+ +

◆ projectNO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::projectNO (vec< 3, T, Q > const & obj,
mat< 4, 4, T, Q > const & model,
mat< 4, 4, T, Q > const & proj,
vec< 4, U, Q > const & viewport 
)
+
+ +

Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + +
objSpecify the object coordinates.
modelSpecifies the current modelview matrix
projSpecifies the current projection matrix
viewportSpecifies the current viewport
+
+
+
Returns
Return the computed window coordinates.
+
Template Parameters
+ + + +
TNative type used for the computation. Currently supported: half (not recommended), float or double.
UCurrently supported: Floating-point types and integer types.
+
+
+
See also
gluProject man page
+ +
+
+ +

◆ projectZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::projectZO (vec< 3, T, Q > const & obj,
mat< 4, 4, T, Q > const & model,
mat< 4, 4, T, Q > const & proj,
vec< 4, U, Q > const & viewport 
)
+
+ +

Map the specified object coordinates (obj.x, obj.y, obj.z) into window coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + + +
objSpecify the object coordinates.
modelSpecifies the current modelview matrix
projSpecifies the current projection matrix
viewportSpecifies the current viewport
+
+
+
Returns
Return the computed window coordinates.
+
Template Parameters
+ + + +
TNative type used for the computation. Currently supported: half (not recommended), float or double.
UCurrently supported: Floating-point types and integer types.
+
+
+
See also
gluProject man page
+ +
+
+ +

◆ unProject()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::unProject (vec< 3, T, Q > const & win,
mat< 4, 4, T, Q > const & model,
mat< 4, 4, T, Q > const & proj,
vec< 4, U, Q > const & viewport 
)
+
+ +

Map the specified window coordinates (win.x, win.y, win.z) into object coordinates using default near and far clip planes definition.

+

To change default near and far clip planes definition use GLM_FORCE_DEPTH_ZERO_TO_ONE.

+
Parameters
+ + + + + +
winSpecify the window coordinates to be mapped.
modelSpecifies the modelview matrix
projSpecifies the projection matrix
viewportSpecifies the viewport
+
+
+
Returns
Returns the computed object coordinates.
+
Template Parameters
+ + + +
TNative type used for the computation. Currently supported: half (not recommended), float or double.
UCurrently supported: Floating-point types and integer types.
+
+
+
See also
gluUnProject man page
+ +
+
+ +

◆ unProjectNO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::unProjectNO (vec< 3, T, Q > const & win,
mat< 4, 4, T, Q > const & model,
mat< 4, 4, T, Q > const & proj,
vec< 4, U, Q > const & viewport 
)
+
+ +

Map the specified window coordinates (win.x, win.y, win.z) into object coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of -1 and +1 respectively. (OpenGL clip volume definition)

+
Parameters
+ + + + + +
winSpecify the window coordinates to be mapped.
modelSpecifies the modelview matrix
projSpecifies the projection matrix
viewportSpecifies the viewport
+
+
+
Returns
Returns the computed object coordinates.
+
Template Parameters
+ + + +
TNative type used for the computation. Currently supported: half (not recommended), float or double.
UCurrently supported: Floating-point types and integer types.
+
+
+
See also
gluUnProject man page
+ +
+
+ +

◆ unProjectZO()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::unProjectZO (vec< 3, T, Q > const & win,
mat< 4, 4, T, Q > const & model,
mat< 4, 4, T, Q > const & proj,
vec< 4, U, Q > const & viewport 
)
+
+ +

Map the specified window coordinates (win.x, win.y, win.z) into object coordinates.

+

The near and far clip planes correspond to z normalized device coordinates of 0 and +1 respectively. (Direct3D clip volume definition)

+
Parameters
+ + + + + +
winSpecify the window coordinates to be mapped.
modelSpecifies the modelview matrix
projSpecifies the projection matrix
viewportSpecifies the viewport
+
+
+
Returns
Returns the computed object coordinates.
+
Template Parameters
+ + + +
TNative type used for the computation. Currently supported: half (not recommended), float or double.
UCurrently supported: Floating-point types and integer types.
+
+
+
See also
gluUnProject man page
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00836.html b/include/glm/doc/api/a00836.html new file mode 100644 index 0000000..4dcb13a --- /dev/null +++ b/include/glm/doc/api/a00836.html @@ -0,0 +1,580 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_relational + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_relational
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
 Perform a component-wise equal-to comparison of two matrices. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > equal (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
 Perform a component-wise not-equal-to comparison of two matrices. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< C, bool, Q > notEqual (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
+

Detailed Description

+

Exposes comparison functions for matrix types that take a user defined epsilon values.

+

Include <glm/ext/matrix_relational.hpp> to use the features of this extension.

+
See also
GLM_EXT_vector_relational
+
+GLM_EXT_scalar_relational
+
+GLM_EXT_quaternion_relational
+

Function Documentation

+ +

◆ equal() [1/5]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::equal (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y 
)
+
+ +

Perform a component-wise equal-to comparison of two matrices.

+

Return a boolean vector which components value is True if this expression is satisfied per column of the matrices.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ equal() [2/5]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::equal (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y,
int ULPs 
)
+
+ +

Returns the component-wise comparison between two vectors in term of ULPs.

+

True if this expression is satisfied.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point
QValue from qualifier enum
+
+
+ +
+
+ +

◆ equal() [3/5]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::equal (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y,
epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+

True if this expression is satisfied.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ equal() [4/5]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::equal (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y,
vec< C, int, Q > const & ULPs 
)
+
+ +

Returns the component-wise comparison between two vectors in term of ULPs.

+

True if this expression is satisfied.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point
QValue from qualifier enum
+
+
+ +
+
+ +

◆ equal() [5/5]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::equal (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y,
vec< C, T, Q > const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+

True if this expression is satisfied.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [1/5]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::notEqual (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y 
)
+
+ +

Perform a component-wise not-equal-to comparison of two matrices.

+

Return a boolean vector which components value is True if this expression is satisfied per column of the matrices.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [2/5]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::notEqual (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y,
int ULPs 
)
+
+ +

Returns the component-wise comparison between two vectors in term of ULPs.

+

True if this expression is not satisfied.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [3/5]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::notEqual (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y,
epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+

True if this expression is not satisfied.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [4/5]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::notEqual (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y,
vec< C, int, Q > const & ULPs 
)
+
+ +

Returns the component-wise comparison between two vectors in term of ULPs.

+

True if this expression is not satisfied.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [5/5]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<C, bool, Q> glm::notEqual (mat< C, R, T, Q > const & x,
mat< C, R, T, Q > const & y,
vec< C, T, Q > const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| >= epsilon.

+

True if this expression is not satisfied.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number of columns of the matrix
RInteger between 1 and 4 included that qualify the number of rows of the matrix
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00837.html b/include/glm/doc/api/a00837.html new file mode 100644 index 0000000..505c3ce --- /dev/null +++ b/include/glm/doc/api/a00837.html @@ -0,0 +1,525 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_transform + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_transform
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType identity ()
 Builds an identity matrix.
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > lookAt (vec< 3, T, Q > const &eye, vec< 3, T, Q > const &center, vec< 3, T, Q > const &up)
 Build a look at view matrix based on the default handedness. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > lookAtLH (vec< 3, T, Q > const &eye, vec< 3, T, Q > const &center, vec< 3, T, Q > const &up)
 Build a left handed look at view matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > lookAtRH (vec< 3, T, Q > const &eye, vec< 3, T, Q > const &center, vec< 3, T, Q > const &up)
 Build a right handed look at view matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rotate (mat< 4, 4, T, Q > const &m, T angle, vec< 3, T, Q > const &axis)
 Builds a rotation 4 * 4 matrix created from an axis vector and an angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > scale (mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)
 Builds a scale 4 * 4 matrix created from 3 scalars. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 4, 4, T, Q > shear (mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &p, vec< 2, T, Q > const &l_x, vec< 2, T, Q > const &l_y, vec< 2, T, Q > const &l_z)
 Builds a scale 4 * 4 matrix created from point referent 3 shearers. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR mat< 4, 4, T, Q > translate (mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)
 Builds a translation 4 * 4 matrix created from a vector of 3 components. More...
 
+

Detailed Description

+

Defines functions that generate common transformation matrices.

+

The matrices generated by this extension use standard OpenGL fixed-function conventions. For example, the lookAt function generates a transform from world space into the specific eye space that the projective matrix functions (perspective, ortho, etc) are designed to expect. The OpenGL compatibility specifications defines the particular layout of this eye space.

+

Include <glm/ext/matrix_transform.hpp> to use the features of this extension.

+
See also
GLM_EXT_matrix_projection
+
+GLM_EXT_matrix_clip_space
+

Function Documentation

+ +

◆ lookAt()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::lookAt (vec< 3, T, Q > const & eye,
vec< 3, T, Q > const & center,
vec< 3, T, Q > const & up 
)
+
+ +

Build a look at view matrix based on the default handedness.

+
Parameters
+ + + + +
eyePosition of the camera
centerPosition where the camera is looking at
upNormalized up vector, how the camera is oriented. Typically (0, 0, 1)
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+
See also
- frustum(T const& left, T const& right, T const& bottom, T const& top, T const& nearVal, T const& farVal) frustum(T const& left, T const& right, T const& bottom, T const& top, T const& nearVal, T const& farVal)
+
+gluLookAt man page
+ +
+
+ +

◆ lookAtLH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::lookAtLH (vec< 3, T, Q > const & eye,
vec< 3, T, Q > const & center,
vec< 3, T, Q > const & up 
)
+
+ +

Build a left handed look at view matrix.

+
Parameters
+ + + + +
eyePosition of the camera
centerPosition where the camera is looking at
upNormalized up vector, how the camera is oriented. Typically (0, 0, 1)
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+
See also
- frustum(T const& left, T const& right, T const& bottom, T const& top, T const& nearVal, T const& farVal) frustum(T const& left, T const& right, T const& bottom, T const& top, T const& nearVal, T const& farVal)
+ +
+
+ +

◆ lookAtRH()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::lookAtRH (vec< 3, T, Q > const & eye,
vec< 3, T, Q > const & center,
vec< 3, T, Q > const & up 
)
+
+ +

Build a right handed look at view matrix.

+
Parameters
+ + + + +
eyePosition of the camera
centerPosition where the camera is looking at
upNormalized up vector, how the camera is oriented. Typically (0, 0, 1)
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+
See also
- frustum(T const& left, T const& right, T const& bottom, T const& top, T const& nearVal, T const& farVal) frustum(T const& left, T const& right, T const& bottom, T const& top, T const& nearVal, T const& farVal)
+ +
+
+ +

◆ rotate()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::rotate (mat< 4, 4, T, Q > const & m,
angle,
vec< 3, T, Q > const & axis 
)
+
+ +

Builds a rotation 4 * 4 matrix created from an axis vector and an angle.

+
Parameters
+ + + + +
mInput matrix multiplied by this rotation matrix.
angleRotation angle expressed in radians.
axisRotation axis, recommended to be normalized.
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+
See also
- rotate(mat<4, 4, T, Q> const& m, T angle, T x, T y, T z)
+
+- rotate(T angle, vec<3, T, Q> const& v)
+
+glRotate man page
+ +
+
+ +

◆ scale()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::scale (mat< 4, 4, T, Q > const & m,
vec< 3, T, Q > const & v 
)
+
+ +

Builds a scale 4 * 4 matrix created from 3 scalars.

+
Parameters
+ + + +
mInput matrix multiplied by this scale matrix.
vRatio of scaling for each axis.
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+
See also
- scale(mat<4, 4, T, Q> const& m, T x, T y, T z)
+
+- scale(vec<3, T, Q> const& v)
+
+glScale man page
+ +
+
+ +

◆ shear()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_QUALIFIER mat<4, 4, T, Q> glm::shear (mat< 4, 4, T, Q > const & m,
vec< 3, T, Q > const & p,
vec< 2, T, Q > const & l_x,
vec< 2, T, Q > const & l_y,
vec< 2, T, Q > const & l_z 
)
+
+ +

Builds a scale 4 * 4 matrix created from point referent 3 shearers.

+
Parameters
+ + + + + + +
mInput matrix multiplied by this shear matrix.
pPoint of shearing as reference.
l_xRatio of matrix.x projection in YZ plane relative to the y-axis/z-axis.
l_yRatio of matrix.y projection in XZ plane relative to the x-axis/z-axis.
l_zRatio of matrix.z projection in XY plane relative to the x-axis/y-axis.
+
+
+

as example: [1 , l_xy, l_xz, -(l_xy+l_xz) * p_x] [x] T [x, y, z, w] = [x, y, z, w] * [l_yx, 1 , l_yz, -(l_yx+l_yz) * p_y] [y] [l_zx, l_zy, 1 , -(l_zx+l_zy) * p_z] [z] [0 , 0 , 0 , 1 ] [w]

+
Template Parameters
+ + + +
TA floating-point shear type
QA value from qualifier enum
+
+
+
See also
- shear(mat<4, 4, T, Q> const& m, T x, T y, T z)
+
+- shear(vec<3, T, Q> const& p)
+
+- shear(vec<2, T, Q> const& l_x)
+
+- shear(vec<2, T, Q> const& l_y)
+
+- shear(vec<2, T, Q> const& l_z)
+
+no resource...
+ +
+
+ +

◆ translate()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> glm::translate (mat< 4, 4, T, Q > const & m,
vec< 3, T, Q > const & v 
)
+
+ +

Builds a translation 4 * 4 matrix created from a vector of 3 components.

+
Parameters
+ + + +
mInput matrix multiplied by this translation matrix.
vCoordinates of a translation vector.
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+
#include <glm/glm.hpp>
+ +
...
+
glm::mat4 m = glm::translate(glm::mat4(1.0f), glm::vec3(1.0f));
+
// m[0][0] == 1.0f, m[0][1] == 0.0f, m[0][2] == 0.0f, m[0][3] == 0.0f
+
// m[1][0] == 0.0f, m[1][1] == 1.0f, m[1][2] == 0.0f, m[1][3] == 0.0f
+
// m[2][0] == 0.0f, m[2][1] == 0.0f, m[2][2] == 1.0f, m[2][3] == 0.0f
+
// m[3][0] == 1.0f, m[3][1] == 1.0f, m[3][2] == 1.0f, m[3][3] == 1.0f
+
See also
- translate(mat<4, 4, T, Q> const& m, T x, T y, T z)
+
+- translate(vec<3, T, Q> const& v)
+
+glTranslate man page
+ +
+
+
+
mat< 4, 4, float, defaultp > mat4
4 columns of 4 components matrix of single-precision floating-point numbers.
+
GLM_GTC_matrix_transform
+
vec< 3, float, defaultp > vec3
3 components vector of single-precision floating-point numbers.
+
GLM_FUNC_DECL GLM_CONSTEXPR mat< 4, 4, T, Q > translate(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)
Builds a translation 4 * 4 matrix created from a vector of 3 components.
+ + + + diff --git a/include/glm/doc/api/a00838.html b/include/glm/doc/api/a00838.html new file mode 100644 index 0000000..41607d2 --- /dev/null +++ b/include/glm/doc/api/a00838.html @@ -0,0 +1,135 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint2x2 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint2x2
+
+
+ + + + + + + + +

+Typedefs

typedef mat< 2, 2, uint, defaultp > umat2
 Unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint, defaultp > umat2x2
 Unsigned integer 2x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint2x2.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ umat2

+ +
+
+ + + + +
typedef mat< 2, 2, uint, defaultp > umat2
+
+ +

Unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2
+
+GLM_GTC_matrix_integer
+ +

Definition at line 35 of file matrix_uint2x2.hpp.

+ +
+
+ +

◆ umat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, uint, defaultp > umat2x2
+
+ +

Unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_uint2x2.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00839.html b/include/glm/doc/api/a00839.html new file mode 100644 index 0000000..e7b5efc --- /dev/null +++ b/include/glm/doc/api/a00839.html @@ -0,0 +1,263 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint2x2_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint2x2_sized
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, uint16, defaultp > u16mat2
 16 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint16, defaultp > u16mat2x2
 16 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint32, defaultp > u32mat2
 32 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint32, defaultp > u32mat2x2
 32 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint64, defaultp > u64mat2
 64 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint64, defaultp > u64mat2x2
 64 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint8, defaultp > u8mat2
 8 bit unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint8, defaultp > u8mat2x2
 8 bit unsigned integer 2x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint2x2_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ u16mat2

+ +
+
+ + + + +
typedef mat<2, 2, uint16, defaultp> u16mat2
+
+ +

16 bit unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2_sized
+ +

Definition at line 57 of file matrix_uint2x2_sized.hpp.

+ +
+
+ +

◆ u16mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, uint16, defaultp > u16mat2x2
+
+ +

16 bit unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2_sized
+ +

Definition at line 36 of file matrix_uint2x2_sized.hpp.

+ +
+
+ +

◆ u32mat2

+ +
+
+ + + + +
typedef mat<2, 2, uint32, defaultp> u32mat2
+
+ +

32 bit unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2_sized
+ +

Definition at line 62 of file matrix_uint2x2_sized.hpp.

+ +
+
+ +

◆ u32mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, uint32, defaultp > u32mat2x2
+
+ +

32 bit unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2_sized
+ +

Definition at line 41 of file matrix_uint2x2_sized.hpp.

+ +
+
+ +

◆ u64mat2

+ +
+
+ + + + +
typedef mat<2, 2, uint64, defaultp> u64mat2
+
+ +

64 bit unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2_sized
+ +

Definition at line 67 of file matrix_uint2x2_sized.hpp.

+ +
+
+ +

◆ u64mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, uint64, defaultp > u64mat2x2
+
+ +

64 bit unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2_sized
+ +

Definition at line 46 of file matrix_uint2x2_sized.hpp.

+ +
+
+ +

◆ u8mat2

+ +
+
+ + + + +
typedef mat<2, 2, uint8, defaultp> u8mat2
+
+ +

8 bit unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2_sized
+ +

Definition at line 52 of file matrix_uint2x2_sized.hpp.

+ +
+
+ +

◆ u8mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, uint8, defaultp > u8mat2x2
+
+ +

8 bit unsigned integer 2x2 matrix.

+
See also
GLM_EXT_matrix_uint2x2_sized
+ +

Definition at line 31 of file matrix_uint2x2_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00840.html b/include/glm/doc/api/a00840.html new file mode 100644 index 0000000..067d6f8 --- /dev/null +++ b/include/glm/doc/api/a00840.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint2x3 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint2x3
+
+
+ + + + + +

+Typedefs

typedef mat< 2, 3, uint, defaultp > umat2x3
 Unsigned integer 2x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint2x3.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ umat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, uint, defaultp > umat2x3
+
+ +

Unsigned integer 2x3 matrix.

+
See also
GLM_EXT_matrix_uint2x3
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_uint2x3.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00841.html b/include/glm/doc/api/a00841.html new file mode 100644 index 0000000..4b08c0a --- /dev/null +++ b/include/glm/doc/api/a00841.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint2x3_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint2x3_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 3, uint16, defaultp > u16mat2x3
 16 bit unsigned integer 2x3 matrix. More...
 
typedef mat< 2, 3, uint32, defaultp > u32mat2x3
 32 bit unsigned integer 2x3 matrix. More...
 
typedef mat< 2, 3, uint64, defaultp > u64mat2x3
 64 bit unsigned integer 2x3 matrix. More...
 
typedef mat< 2, 3, uint8, defaultp > u8mat2x3
 8 bit unsigned integer 2x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint2x3_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ u16mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, uint16, defaultp > u16mat2x3
+
+ +

16 bit unsigned integer 2x3 matrix.

+
See also
GLM_EXT_matrix_uint2x3_sized
+ +

Definition at line 36 of file matrix_uint2x3_sized.hpp.

+ +
+
+ +

◆ u32mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, uint32, defaultp > u32mat2x3
+
+ +

32 bit unsigned integer 2x3 matrix.

+
See also
GLM_EXT_matrix_uint2x3_sized
+ +

Definition at line 41 of file matrix_uint2x3_sized.hpp.

+ +
+
+ +

◆ u64mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, uint64, defaultp > u64mat2x3
+
+ +

64 bit unsigned integer 2x3 matrix.

+
See also
GLM_EXT_matrix_uint2x3_sized
+ +

Definition at line 46 of file matrix_uint2x3_sized.hpp.

+ +
+
+ +

◆ u8mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, uint8, defaultp > u8mat2x3
+
+ +

8 bit unsigned integer 2x3 matrix.

+
See also
GLM_EXT_matrix_uint2x3_sized
+ +

Definition at line 31 of file matrix_uint2x3_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00842.html b/include/glm/doc/api/a00842.html new file mode 100644 index 0000000..8bee09a --- /dev/null +++ b/include/glm/doc/api/a00842.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_int2x4 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_int2x4
+
+
+ + + + + +

+Typedefs

typedef mat< 2, 4, uint, defaultp > umat2x4
 Unsigned integer 2x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint2x4.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ umat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, uint, defaultp > umat2x4
+
+ +

Unsigned integer 2x4 matrix.

+
See also
GLM_EXT_matrix_int2x4
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_uint2x4.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00843.html b/include/glm/doc/api/a00843.html new file mode 100644 index 0000000..24c92fa --- /dev/null +++ b/include/glm/doc/api/a00843.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint2x4_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint2x4_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 4, uint16, defaultp > u16mat2x4
 16 bit unsigned integer 2x4 matrix. More...
 
typedef mat< 2, 4, uint32, defaultp > u32mat2x4
 32 bit unsigned integer 2x4 matrix. More...
 
typedef mat< 2, 4, uint64, defaultp > u64mat2x4
 64 bit unsigned integer 2x4 matrix. More...
 
typedef mat< 2, 4, uint8, defaultp > u8mat2x4
 8 bit unsigned integer 2x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint2x4_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ u16mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, uint16, defaultp > u16mat2x4
+
+ +

16 bit unsigned integer 2x4 matrix.

+
See also
GLM_EXT_matrix_uint2x4_sized
+ +

Definition at line 36 of file matrix_uint2x4_sized.hpp.

+ +
+
+ +

◆ u32mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, uint32, defaultp > u32mat2x4
+
+ +

32 bit unsigned integer 2x4 matrix.

+
See also
GLM_EXT_matrix_uint2x4_sized
+ +

Definition at line 41 of file matrix_uint2x4_sized.hpp.

+ +
+
+ +

◆ u64mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, uint64, defaultp > u64mat2x4
+
+ +

64 bit unsigned integer 2x4 matrix.

+
See also
GLM_EXT_matrix_uint2x4_sized
+ +

Definition at line 46 of file matrix_uint2x4_sized.hpp.

+ +
+
+ +

◆ u8mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, uint8, defaultp > u8mat2x4
+
+ +

8 bit unsigned integer 2x4 matrix.

+
See also
GLM_EXT_matrix_uint2x4_sized
+ +

Definition at line 31 of file matrix_uint2x4_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00844.html b/include/glm/doc/api/a00844.html new file mode 100644 index 0000000..5aa43ca --- /dev/null +++ b/include/glm/doc/api/a00844.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint3x2 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint3x2
+
+
+ + + + + +

+Typedefs

typedef mat< 3, 2, uint, defaultp > umat3x2
 Unsigned integer 3x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint3x2.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ umat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, uint, defaultp > umat3x2
+
+ +

Unsigned integer 3x2 matrix.

+
See also
GLM_EXT_matrix_uint3x2
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_uint3x2.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00845.html b/include/glm/doc/api/a00845.html new file mode 100644 index 0000000..bcc9f67 --- /dev/null +++ b/include/glm/doc/api/a00845.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint3x2_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint3x2_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 2, uint16, defaultp > u16mat3x2
 16 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, uint32, defaultp > u32mat3x2
 32 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, uint64, defaultp > u64mat3x2
 64 bit signed integer 3x2 matrix. More...
 
typedef mat< 3, 2, uint8, defaultp > u8mat3x2
 8 bit signed integer 3x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint3x2_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ u16mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, uint16, defaultp > u16mat3x2
+
+ +

16 bit signed integer 3x2 matrix.

+
See also
GLM_EXT_matrix_uint3x2_sized
+ +

Definition at line 36 of file matrix_uint3x2_sized.hpp.

+ +
+
+ +

◆ u32mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, uint32, defaultp > u32mat3x2
+
+ +

32 bit signed integer 3x2 matrix.

+
See also
GLM_EXT_matrix_uint3x2_sized
+ +

Definition at line 41 of file matrix_uint3x2_sized.hpp.

+ +
+
+ +

◆ u64mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, uint64, defaultp > u64mat3x2
+
+ +

64 bit signed integer 3x2 matrix.

+
See also
GLM_EXT_matrix_uint3x2_sized
+ +

Definition at line 46 of file matrix_uint3x2_sized.hpp.

+ +
+
+ +

◆ u8mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, uint8, defaultp > u8mat3x2
+
+ +

8 bit signed integer 3x2 matrix.

+
See also
GLM_EXT_matrix_uint3x2_sized
+ +

Definition at line 31 of file matrix_uint3x2_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00846.html b/include/glm/doc/api/a00846.html new file mode 100644 index 0000000..790bb98 --- /dev/null +++ b/include/glm/doc/api/a00846.html @@ -0,0 +1,135 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint3x3 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint3x3
+
+
+ + + + + + + + +

+Typedefs

typedef mat< 3, 3, uint, defaultp > umat3
 Unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint, defaultp > umat3x3
 Unsigned integer 3x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint3x3.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ umat3

+ +
+
+ + + + +
typedef mat< 3, 3, uint, defaultp > umat3
+
+ +

Unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3
+
+GLM_GTC_matrix_integer
+ +

Definition at line 35 of file matrix_uint3x3.hpp.

+ +
+
+ +

◆ umat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, uint, defaultp > umat3x3
+
+ +

Unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_uint3x3.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00847.html b/include/glm/doc/api/a00847.html new file mode 100644 index 0000000..2cfbaad --- /dev/null +++ b/include/glm/doc/api/a00847.html @@ -0,0 +1,263 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint3x3_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint3x3_sized
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 3, uint16, defaultp > u16mat3
 16 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint16, defaultp > u16mat3x3
 16 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint32, defaultp > u32mat3
 32 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint32, defaultp > u32mat3x3
 32 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint64, defaultp > u64mat3
 64 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint64, defaultp > u64mat3x3
 64 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint8, defaultp > u8mat3
 8 bit unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 3, uint8, defaultp > u8mat3x3
 8 bit unsigned integer 3x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint3x3_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ u16mat3

+ +
+
+ + + + +
typedef mat<3, 3, uint16, defaultp> u16mat3
+
+ +

16 bit unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3_sized
+ +

Definition at line 57 of file matrix_uint3x3_sized.hpp.

+ +
+
+ +

◆ u16mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, uint16, defaultp > u16mat3x3
+
+ +

16 bit unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3_sized
+ +

Definition at line 36 of file matrix_uint3x3_sized.hpp.

+ +
+
+ +

◆ u32mat3

+ +
+
+ + + + +
typedef mat<3, 3, uint32, defaultp> u32mat3
+
+ +

32 bit unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3_sized
+ +

Definition at line 62 of file matrix_uint3x3_sized.hpp.

+ +
+
+ +

◆ u32mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, uint32, defaultp > u32mat3x3
+
+ +

32 bit unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3_sized
+ +

Definition at line 41 of file matrix_uint3x3_sized.hpp.

+ +
+
+ +

◆ u64mat3

+ +
+
+ + + + +
typedef mat<3, 3, uint64, defaultp> u64mat3
+
+ +

64 bit unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3_sized
+ +

Definition at line 67 of file matrix_uint3x3_sized.hpp.

+ +
+
+ +

◆ u64mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, uint64, defaultp > u64mat3x3
+
+ +

64 bit unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3_sized
+ +

Definition at line 46 of file matrix_uint3x3_sized.hpp.

+ +
+
+ +

◆ u8mat3

+ +
+
+ + + + +
typedef mat<3, 3, uint8, defaultp> u8mat3
+
+ +

8 bit unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3_sized
+ +

Definition at line 52 of file matrix_uint3x3_sized.hpp.

+ +
+
+ +

◆ u8mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, uint8, defaultp > u8mat3x3
+
+ +

8 bit unsigned integer 3x3 matrix.

+
See also
GLM_EXT_matrix_uint3x3_sized
+ +

Definition at line 31 of file matrix_uint3x3_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00848.html b/include/glm/doc/api/a00848.html new file mode 100644 index 0000000..98695dd --- /dev/null +++ b/include/glm/doc/api/a00848.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint3x4 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint3x4
+
+
+ + + + + +

+Typedefs

typedef mat< 3, 4, uint, defaultp > umat3x4
 Signed integer 3x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint3x4.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ umat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, uint, defaultp > umat3x4
+
+ +

Signed integer 3x4 matrix.

+

Unsigned integer 3x4 matrix.

+
See also
GLM_EXT_matrix_uint3x4
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_uint3x4.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00849.html b/include/glm/doc/api/a00849.html new file mode 100644 index 0000000..62fce1c --- /dev/null +++ b/include/glm/doc/api/a00849.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint3x4_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint3x4_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 3, 4, uint16, defaultp > u16mat3x4
 16 bit unsigned integer 3x4 matrix. More...
 
typedef mat< 3, 4, uint32, defaultp > u32mat3x4
 32 bit unsigned integer 3x4 matrix. More...
 
typedef mat< 3, 4, uint64, defaultp > u64mat3x4
 64 bit unsigned integer 3x4 matrix. More...
 
typedef mat< 3, 4, uint8, defaultp > u8mat3x4
 8 bit unsigned integer 3x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint3x4_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ u16mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, uint16, defaultp > u16mat3x4
+
+ +

16 bit unsigned integer 3x4 matrix.

+
See also
GLM_EXT_matrix_uint3x4_sized
+ +

Definition at line 36 of file matrix_uint3x4_sized.hpp.

+ +
+
+ +

◆ u32mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, uint32, defaultp > u32mat3x4
+
+ +

32 bit unsigned integer 3x4 matrix.

+
See also
GLM_EXT_matrix_uint3x4_sized
+ +

Definition at line 41 of file matrix_uint3x4_sized.hpp.

+ +
+
+ +

◆ u64mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, uint64, defaultp > u64mat3x4
+
+ +

64 bit unsigned integer 3x4 matrix.

+
See also
GLM_EXT_matrix_uint3x4_sized
+ +

Definition at line 46 of file matrix_uint3x4_sized.hpp.

+ +
+
+ +

◆ u8mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, uint8, defaultp > u8mat3x4
+
+ +

8 bit unsigned integer 3x4 matrix.

+
See also
GLM_EXT_matrix_uint3x4_sized
+ +

Definition at line 31 of file matrix_uint3x4_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00850.html b/include/glm/doc/api/a00850.html new file mode 100644 index 0000000..45ae65d --- /dev/null +++ b/include/glm/doc/api/a00850.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint4x2 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint4x2
+
+
+ + + + + +

+Typedefs

typedef mat< 4, 2, uint, defaultp > umat4x2
 Unsigned integer 4x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint4x2.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ umat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, uint, defaultp > umat4x2
+
+ +

Unsigned integer 4x2 matrix.

+
See also
GLM_EXT_matrix_uint4x2
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_uint4x2.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00851.html b/include/glm/doc/api/a00851.html new file mode 100644 index 0000000..f1103cf --- /dev/null +++ b/include/glm/doc/api/a00851.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint4x2_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint4x2_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 2, uint16, defaultp > u16mat4x2
 16 bit unsigned integer 4x2 matrix. More...
 
typedef mat< 4, 2, uint32, defaultp > u32mat4x2
 32 bit unsigned integer 4x2 matrix. More...
 
typedef mat< 4, 2, uint64, defaultp > u64mat4x2
 64 bit unsigned integer 4x2 matrix. More...
 
typedef mat< 4, 2, uint8, defaultp > u8mat4x2
 8 bit unsigned integer 4x2 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint4x2_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ u16mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, uint16, defaultp > u16mat4x2
+
+ +

16 bit unsigned integer 4x2 matrix.

+
See also
GLM_EXT_matrix_uint4x2_sized
+ +

Definition at line 36 of file matrix_uint4x2_sized.hpp.

+ +
+
+ +

◆ u32mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, uint32, defaultp > u32mat4x2
+
+ +

32 bit unsigned integer 4x2 matrix.

+
See also
GLM_EXT_matrix_uint4x2_sized
+ +

Definition at line 41 of file matrix_uint4x2_sized.hpp.

+ +
+
+ +

◆ u64mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, uint64, defaultp > u64mat4x2
+
+ +

64 bit unsigned integer 4x2 matrix.

+
See also
GLM_EXT_matrix_uint4x2_sized
+ +

Definition at line 46 of file matrix_uint4x2_sized.hpp.

+ +
+
+ +

◆ u8mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, uint8, defaultp > u8mat4x2
+
+ +

8 bit unsigned integer 4x2 matrix.

+
See also
GLM_EXT_matrix_uint4x2_sized
+ +

Definition at line 31 of file matrix_uint4x2_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00852.html b/include/glm/doc/api/a00852.html new file mode 100644 index 0000000..42403f8 --- /dev/null +++ b/include/glm/doc/api/a00852.html @@ -0,0 +1,111 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint4x3 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint4x3
+
+
+ + + + + +

+Typedefs

typedef mat< 4, 3, uint, defaultp > umat4x3
 Unsigned integer 4x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint4x3.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ umat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, uint, defaultp > umat4x3
+
+ +

Unsigned integer 4x3 matrix.

+
See also
GLM_EXT_matrix_uint4x3
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_uint4x3.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00853.html b/include/glm/doc/api/a00853.html new file mode 100644 index 0000000..11ff6d0 --- /dev/null +++ b/include/glm/doc/api/a00853.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint4x3_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint4x3_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 3, uint16, defaultp > u16mat4x3
 16 bit unsigned integer 4x3 matrix. More...
 
typedef mat< 4, 3, uint32, defaultp > u32mat4x3
 32 bit unsigned integer 4x3 matrix. More...
 
typedef mat< 4, 3, uint64, defaultp > u64mat4x3
 64 bit unsigned integer 4x3 matrix. More...
 
typedef mat< 4, 3, uint8, defaultp > u8mat4x3
 8 bit unsigned integer 4x3 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint4x3_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ u16mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, uint16, defaultp > u16mat4x3
+
+ +

16 bit unsigned integer 4x3 matrix.

+
See also
GLM_EXT_matrix_uint4x3_sized
+ +

Definition at line 36 of file matrix_uint4x3_sized.hpp.

+ +
+
+ +

◆ u32mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, uint32, defaultp > u32mat4x3
+
+ +

32 bit unsigned integer 4x3 matrix.

+
See also
GLM_EXT_matrix_uint4x3_sized
+ +

Definition at line 41 of file matrix_uint4x3_sized.hpp.

+ +
+
+ +

◆ u64mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, uint64, defaultp > u64mat4x3
+
+ +

64 bit unsigned integer 4x3 matrix.

+
See also
GLM_EXT_matrix_uint4x3_sized
+ +

Definition at line 46 of file matrix_uint4x3_sized.hpp.

+ +
+
+ +

◆ u8mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, uint8, defaultp > u8mat4x3
+
+ +

8 bit unsigned integer 4x3 matrix.

+
See also
GLM_EXT_matrix_uint4x3_sized
+ +

Definition at line 31 of file matrix_uint4x3_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00854.html b/include/glm/doc/api/a00854.html new file mode 100644 index 0000000..0aeef62 --- /dev/null +++ b/include/glm/doc/api/a00854.html @@ -0,0 +1,135 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint4x4 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint4x4
+
+
+ + + + + + + + +

+Typedefs

typedef mat< 4, 4, uint, defaultp > umat4
 Unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint, defaultp > umat4x4
 Unsigned integer 4x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint4x4.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ umat4

+ +
+
+ + + + +
typedef mat< 4, 4, uint, defaultp > umat4
+
+ +

Unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4
+
+GLM_GTC_matrix_integer
+ +

Definition at line 35 of file matrix_uint4x4.hpp.

+ +
+
+ +

◆ umat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, uint, defaultp > umat4x4
+
+ +

Unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4
+
+GLM_GTC_matrix_integer
+ +

Definition at line 30 of file matrix_uint4x4.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00855.html b/include/glm/doc/api/a00855.html new file mode 100644 index 0000000..78b127c --- /dev/null +++ b/include/glm/doc/api/a00855.html @@ -0,0 +1,263 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_matrix_uint4x4_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_matrix_uint4x4_sized
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 4, 4, uint16, defaultp > u16mat4
 16 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint16, defaultp > u16mat4x4
 16 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint32, defaultp > u32mat4
 32 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint32, defaultp > u32mat4x4
 32 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint64, defaultp > u64mat4
 64 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint64, defaultp > u64mat4x4
 64 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint8, defaultp > u8mat4
 8 bit unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 4, uint8, defaultp > u8mat4x4
 8 bit unsigned integer 4x4 matrix. More...
 
+

Detailed Description

+

Include <glm/ext/matrix_uint4x4_sized.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ u16mat4

+ +
+
+ + + + +
typedef mat<4, 4, uint16, defaultp> u16mat4
+
+ +

16 bit unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4_sized
+ +

Definition at line 57 of file matrix_uint4x4_sized.hpp.

+ +
+
+ +

◆ u16mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, uint16, defaultp > u16mat4x4
+
+ +

16 bit unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4_sized
+ +

Definition at line 36 of file matrix_uint4x4_sized.hpp.

+ +
+
+ +

◆ u32mat4

+ +
+
+ + + + +
typedef mat<4, 4, uint32, defaultp> u32mat4
+
+ +

32 bit unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4_sized
+ +

Definition at line 62 of file matrix_uint4x4_sized.hpp.

+ +
+
+ +

◆ u32mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, uint32, defaultp > u32mat4x4
+
+ +

32 bit unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4_sized
+ +

Definition at line 41 of file matrix_uint4x4_sized.hpp.

+ +
+
+ +

◆ u64mat4

+ +
+
+ + + + +
typedef mat<4, 4, uint64, defaultp> u64mat4
+
+ +

64 bit unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4_sized
+ +

Definition at line 67 of file matrix_uint4x4_sized.hpp.

+ +
+
+ +

◆ u64mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, uint64, defaultp > u64mat4x4
+
+ +

64 bit unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4_sized
+ +

Definition at line 46 of file matrix_uint4x4_sized.hpp.

+ +
+
+ +

◆ u8mat4

+ +
+
+ + + + +
typedef mat<4, 4, uint8, defaultp> u8mat4
+
+ +

8 bit unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4_sized
+ +

Definition at line 52 of file matrix_uint4x4_sized.hpp.

+ +
+
+ +

◆ u8mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, uint8, defaultp > u8mat4x4
+
+ +

8 bit unsigned integer 4x4 matrix.

+
See also
GLM_EXT_matrix_uint4x4_sized
+ +

Definition at line 31 of file matrix_uint4x4_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00856.html b/include/glm/doc/api/a00856.html new file mode 100644 index 0000000..5de2575 --- /dev/null +++ b/include/glm/doc/api/a00856.html @@ -0,0 +1,464 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_common + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_quaternion_common
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > conjugate (qua< T, Q > const &q)
 Returns the q conjugate. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > inverse (qua< T, Q > const &q)
 Returns the q inverse. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > isinf (qua< T, Q > const &x)
 Returns true if x holds a positive infinity or negative infinity representation in the underlying implementation's set of floating point representations. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > isnan (qua< T, Q > const &x)
 Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of floating point representations. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > lerp (qua< T, Q > const &x, qua< T, Q > const &y, T a)
 Linear interpolation of two quaternions. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > mix (qua< T, Q > const &x, qua< T, Q > const &y, T a)
 Spherical linear interpolation of two quaternions. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > slerp (qua< T, Q > const &x, qua< T, Q > const &y, T a)
 Spherical linear interpolation of two quaternions. More...
 
template<typename T , typename S , qualifier Q>
GLM_FUNC_DECL qua< T, Q > slerp (qua< T, Q > const &x, qua< T, Q > const &y, T a, S k)
 Spherical linear interpolation of two quaternions with multiple spins over rotation axis. More...
 
+

Detailed Description

+

Provides common functions for quaternion types

+

Include <glm/ext/quaternion_common.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_common
+
+GLM_EXT_vector_common
+
+GLM_EXT_quaternion_float
+
+GLM_EXT_quaternion_double
+
+GLM_EXT_quaternion_exponential
+
+GLM_EXT_quaternion_geometric
+
+GLM_EXT_quaternion_relational
+
+GLM_EXT_quaternion_trigonometric
+
+GLM_EXT_quaternion_transform
+

Function Documentation

+ +

◆ conjugate()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> glm::conjugate (qua< T, Q > const & q)
+
+ +

Returns the q conjugate.

+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ inverse()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> glm::inverse (qua< T, Q > const & q)
+
+ +

Returns the q inverse.

+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ isinf()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<4, bool, Q> glm::isinf (qua< T, Q > const & x)
+
+ +

Returns true if x holds a positive infinity or negative infinity representation in the underlying implementation's set of floating point representations.

+

Returns false otherwise, including for implementations with no infinity representations.

+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ isnan()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<4, bool, Q> glm::isnan (qua< T, Q > const & x)
+
+ +

Returns true if x holds a NaN (not a number) representation in the underlying implementation's set of floating point representations.

+

Returns false otherwise, including for implementations with no NaN representations.

+

/!\ When using compiler fast math, this function may fail.

+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ lerp()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> glm::lerp (qua< T, Q > const & x,
qua< T, Q > const & y,
a 
)
+
+ +

Linear interpolation of two quaternions.

+

The interpolation is oriented.

+
Parameters
+ + + + +
xA quaternion
yA quaternion
aInterpolation factor. The interpolation is defined in the range [0, 1].
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ mix()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::mix (qua< T, Q > const & x,
qua< T, Q > const & y,
a 
)
+
+ +

Spherical linear interpolation of two quaternions.

+

The interpolation is oriented and the rotation is performed at constant speed. For short path spherical linear interpolation, use the slerp function.

+
Parameters
+ + + + +
xA quaternion
yA quaternion
aInterpolation factor. The interpolation is defined beyond the range [0, 1].
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+
See also
- slerp(qua<T, Q> const& x, qua<T, Q> const& y, T const& a)
+ +
+
+ +

◆ slerp() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::slerp (qua< T, Q > const & x,
qua< T, Q > const & y,
a 
)
+
+ +

Spherical linear interpolation of two quaternions.

+

The interpolation always take the short path and the rotation is performed at constant speed.

+
Parameters
+ + + + +
xA quaternion
yA quaternion
aInterpolation factor. The interpolation is defined beyond the range [0, 1].
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ slerp() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::slerp (qua< T, Q > const & x,
qua< T, Q > const & y,
a,
k 
)
+
+ +

Spherical linear interpolation of two quaternions with multiple spins over rotation axis.

+

The interpolation always take the short path when the spin count is positive and long path when count is negative. Rotation is performed at constant speed.

+
Parameters
+ + + + + +
xA quaternion
yA quaternion
aInterpolation factor. The interpolation is defined beyond the range [0, 1].
kAdditional spin count. If Value is negative interpolation will be on "long" path.
+
+
+
Template Parameters
+ + + + +
TA floating-point scalar type
SAn integer scalar type
QA value from qualifier enum
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00857.html b/include/glm/doc/api/a00857.html new file mode 100644 index 0000000..ad0e1c6 --- /dev/null +++ b/include/glm/doc/api/a00857.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_double + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_quaternion_double
+
+
+ + + + + +

+Typedefs

+typedef qua< double, defaultp > dquat
 Quaternion of double-precision floating-point numbers.
 
+

Detailed Description

+

Exposes double-precision floating point quaternion type.

+

Include <glm/ext/quaternion_double.hpp> to use the features of this extension.

+
See also
GLM_EXT_quaternion_float
+
+GLM_EXT_quaternion_double_precision
+
+GLM_EXT_quaternion_common
+
+GLM_EXT_quaternion_exponential
+
+GLM_EXT_quaternion_geometric
+
+GLM_EXT_quaternion_relational
+
+GLM_EXT_quaternion_transform
+
+GLM_EXT_quaternion_trigonometric
+
+ + + + diff --git a/include/glm/doc/api/a00858.html b/include/glm/doc/api/a00858.html new file mode 100644 index 0000000..f4e10b2 --- /dev/null +++ b/include/glm/doc/api/a00858.html @@ -0,0 +1,153 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_double_precision + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_quaternion_double_precision
+
+
+ + + + + + + + + + + +

+Typedefs

typedef qua< double, highp > highp_dquat
 Quaternion of high double-qualifier floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef qua< double, lowp > lowp_dquat
 Quaternion of double-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef qua< double, mediump > mediump_dquat
 Quaternion of medium double-qualifier floating-point numbers using high precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+

Exposes double-precision floating point quaternion type with various precision in term of ULPs.

+

Include <glm/ext/quaternion_double_precision.hpp> to use the features of this extension.

+

Typedef Documentation

+ +

◆ highp_dquat

+ +
+
+ + + + +
typedef qua< double, highp > highp_dquat
+
+ +

Quaternion of high double-qualifier floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLM_EXT_quaternion_double_precision
+ +

Definition at line 38 of file quaternion_double_precision.hpp.

+ +
+
+ +

◆ lowp_dquat

+ +
+
+ + + + +
typedef qua< double, lowp > lowp_dquat
+
+ +

Quaternion of double-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLM_EXT_quaternion_double_precision
+ +

Definition at line 28 of file quaternion_double_precision.hpp.

+ +
+
+ +

◆ mediump_dquat

+ +
+
+ + + + +
typedef qua< double, mediump > mediump_dquat
+
+ +

Quaternion of medium double-qualifier floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLM_EXT_quaternion_double_precision
+ +

Definition at line 33 of file quaternion_double_precision.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00859.html b/include/glm/doc/api/a00859.html new file mode 100644 index 0000000..3b0b555 --- /dev/null +++ b/include/glm/doc/api/a00859.html @@ -0,0 +1,84 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_exponential + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_EXT_quaternion_exponential
+
+
+

Provides exponential functions for quaternion types

+

Include <glm/ext/quaternion_exponential.hpp> to use the features of this extension.

+
See also
core_exponential
+
+GLM_EXT_quaternion_float
+
+GLM_EXT_quaternion_double
+
+ + + + diff --git a/include/glm/doc/api/a00860.html b/include/glm/doc/api/a00860.html new file mode 100644 index 0000000..a4f1e85 --- /dev/null +++ b/include/glm/doc/api/a00860.html @@ -0,0 +1,105 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_float + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_quaternion_float
+
+
+ + + + + +

+Typedefs

+typedef qua< float, defaultp > quat
 Quaternion of single-precision floating-point numbers.
 
+

Detailed Description

+

Exposes single-precision floating point quaternion type.

+

Include <glm/ext/quaternion_float.hpp> to use the features of this extension.

+
See also
GLM_EXT_quaternion_double
+
+GLM_EXT_quaternion_float_precision
+
+GLM_EXT_quaternion_common
+
+GLM_EXT_quaternion_exponential
+
+GLM_EXT_quaternion_geometric
+
+GLM_EXT_quaternion_relational
+
+GLM_EXT_quaternion_transform
+
+GLM_EXT_quaternion_trigonometric
+
+ + + + diff --git a/include/glm/doc/api/a00861.html b/include/glm/doc/api/a00861.html new file mode 100644 index 0000000..06ec512 --- /dev/null +++ b/include/glm/doc/api/a00861.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_float_precision + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_quaternion_float_precision
+
+
+ + + + + + + + + + + +

+Typedefs

+typedef qua< float, highp > highp_quat
 Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< float, lowp > lowp_quat
 Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< float, mediump > mediump_quat
 Quaternion of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+

Detailed Description

+

Exposes single-precision floating point quaternion type with various precision in term of ULPs.

+

Include <glm/ext/quaternion_float_precision.hpp> to use the features of this extension.

+
+ + + + diff --git a/include/glm/doc/api/a00862.html b/include/glm/doc/api/a00862.html new file mode 100644 index 0000000..93318e8 --- /dev/null +++ b/include/glm/doc/api/a00862.html @@ -0,0 +1,240 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_geometric + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_quaternion_geometric
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua< T, Q > cross (qua< T, Q > const &q1, qua< T, Q > const &q2)
 Compute a cross product. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR T dot (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns dot product of q1 and q2, i.e., q1[0] * q2[0] + q1[1] * q2[1] + ... More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T length (qua< T, Q > const &q)
 Returns the norm of a quaternions. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > normalize (qua< T, Q > const &q)
 Returns the normalized quaternion. More...
 
+

Detailed Description

+

Provides geometric functions for quaternion types

+

Include <glm/ext/quaternion_geometric.hpp> to use the features of this extension.

+
See also
Geometric functions
+
+GLM_EXT_quaternion_float
+
+GLM_EXT_quaternion_double
+

Function Documentation

+ +

◆ cross()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua<T, Q> glm::cross (qua< T, Q > const & q1,
qua< T, Q > const & q2 
)
+
+ +

Compute a cross product.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_quaternion_geometric
+ +
+
+ +

◆ dot()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR T glm::dot (qua< T, Q > const & x,
qua< T, Q > const & y 
)
+
+ +

Returns dot product of q1 and q2, i.e., q1[0] * q2[0] + q1[1] * q2[1] + ...

+
Template Parameters
+ + + +
TFloating-point scalar types.
QValue from qualifier enum
+
+
+
See also
GLM_EXT_quaternion_geometric
+ +
+
+ +

◆ length()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::length (qua< T, Q > const & q)
+
+ +

Returns the norm of a quaternions.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_quaternion_geometric
+ +
+
+ +

◆ normalize()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> glm::normalize (qua< T, Q > const & q)
+
+ +

Returns the normalized quaternion.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_quaternion_geometric
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00863.html b/include/glm/doc/api/a00863.html new file mode 100644 index 0000000..17a9f56 --- /dev/null +++ b/include/glm/doc/api/a00863.html @@ -0,0 +1,272 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_relational + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_quaternion_relational
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > equal (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x == y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > equal (qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > notEqual (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x != y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > notEqual (qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
+

Detailed Description

+

Exposes comparison functions for quaternion types that take a user defined epsilon values.

+

Include <glm/ext/quaternion_relational.hpp> to use the features of this extension.

+
See also
core_vector_relational
+
+GLM_EXT_vector_relational
+
+GLM_EXT_matrix_relational
+
+GLM_EXT_quaternion_float
+
+GLM_EXT_quaternion_double
+

Function Documentation

+ +

◆ equal() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, bool, Q> glm::equal (qua< T, Q > const & x,
qua< T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x == y.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ equal() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, bool, Q> glm::equal (qua< T, Q > const & x,
qua< T, Q > const & y,
epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, bool, Q> glm::notEqual (qua< T, Q > const & x,
qua< T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x != y.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, bool, Q> glm::notEqual (qua< T, Q > const & x,
qua< T, Q > const & y,
epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| >= epsilon.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00864.html b/include/glm/doc/api/a00864.html new file mode 100644 index 0000000..d531c7d --- /dev/null +++ b/include/glm/doc/api/a00864.html @@ -0,0 +1,287 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_transform + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_quaternion_transform
+
+
+ + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > exp (qua< T, Q > const &q)
 Returns a exponential of a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > log (qua< T, Q > const &q)
 Returns a logarithm of a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > pow (qua< T, Q > const &q, T y)
 Returns a quaternion raised to a power. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > rotate (qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)
 Rotates a quaternion from a vector of 3 components axis and an angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > sqrt (qua< T, Q > const &q)
 Returns the square root of a quaternion. More...
 
+

Detailed Description

+

Provides transformation functions for quaternion types

+

Include <glm/ext/quaternion_transform.hpp> to use the features of this extension.

+
See also
GLM_EXT_quaternion_float
+
+GLM_EXT_quaternion_double
+
+GLM_EXT_quaternion_exponential
+
+GLM_EXT_quaternion_geometric
+
+GLM_EXT_quaternion_relational
+
+GLM_EXT_quaternion_trigonometric
+

Function Documentation

+ +

◆ exp()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::exp (qua< T, Q > const & q)
+
+ +

Returns a exponential of a quaternion.

+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ log()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::log (qua< T, Q > const & q)
+
+ +

Returns a logarithm of a quaternion.

+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ pow()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::pow (qua< T, Q > const & q,
y 
)
+
+ +

Returns a quaternion raised to a power.

+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ rotate()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::rotate (qua< T, Q > const & q,
T const & angle,
vec< 3, T, Q > const & axis 
)
+
+ +

Rotates a quaternion from a vector of 3 components axis and an angle.

+
Parameters
+ + + + +
qSource orientation
angleAngle expressed in radians.
axisAxis of the rotation
+
+
+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ sqrt()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::sqrt (qua< T, Q > const & q)
+
+ +

Returns the square root of a quaternion.

+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00865.html b/include/glm/doc/api/a00865.html new file mode 100644 index 0000000..95c2624 --- /dev/null +++ b/include/glm/doc/api/a00865.html @@ -0,0 +1,214 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_quaternion_trigonometric + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_quaternion_trigonometric
+
+
+ + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL T angle (qua< T, Q > const &x)
 Returns the quaternion rotation angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > angleAxis (T const &angle, vec< 3, T, Q > const &axis)
 Build a quaternion from an angle and a normalized axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > axis (qua< T, Q > const &x)
 Returns the q rotation axis. More...
 
+

Detailed Description

+

Provides trigonometric functions for quaternion types

+

Include <glm/ext/quaternion_trigonometric.hpp> to use the features of this extension.

+
See also
GLM_EXT_quaternion_float
+
+GLM_EXT_quaternion_double
+
+GLM_EXT_quaternion_exponential
+
+GLM_EXT_quaternion_geometric
+
+GLM_EXT_quaternion_relational
+
+GLM_EXT_quaternion_transform
+

Function Documentation

+ +

◆ angle()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::angle (qua< T, Q > const & x)
+
+ +

Returns the quaternion rotation angle.

+
Parameters
+ + +
xA normalized quaternion.
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ angleAxis()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::angleAxis (T const & angle,
vec< 3, T, Q > const & axis 
)
+
+ +

Build a quaternion from an angle and a normalized axis.

+
Parameters
+ + + +
angleAngle expressed in radians.
axisAxis of the quaternion, must be normalized.
+
+
+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+ +

◆ axis()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::axis (qua< T, Q > const & x)
+
+ +

Returns the q rotation axis.

+
Template Parameters
+ + + +
TA floating-point scalar type
QA value from qualifier enum
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00866.html b/include/glm/doc/api/a00866.html new file mode 100644 index 0000000..0a98167 --- /dev/null +++ b/include/glm/doc/api/a00866.html @@ -0,0 +1,842 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_scalar_common + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_scalar_common
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType clamp (genType const &Texcoord)
 Simulate GL_CLAMP OpenGL wrap mode. More...
 
template<typename genType >
GLM_FUNC_DECL genType fclamp (genType x, genType minVal, genType maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x. More...
 
template<typename T >
GLM_FUNC_DECL T() fmax (T a, T b)
 Returns the maximum component-wise values of 2 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmax (T a, T b, T C)
 Returns the maximum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmax (T a, T b, T C, T D)
 Returns the maximum component-wise values of 4 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmin (T a, T b)
 Returns the minimum component-wise values of 2 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmin (T a, T b, T c)
 Returns the minimum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() fmin (T a, T b, T c, T d)
 Returns the minimum component-wise values of 4 inputs. More...
 
template<typename genType >
GLM_FUNC_DECL int iround (genType const &x)
 Returns a value equal to the nearest integer to x. More...
 
template<typename T >
GLM_FUNC_DECL T() max (T a, T b, T c)
 Returns the maximum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() max (T a, T b, T c, T d)
 Returns the maximum component-wise values of 4 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() min (T a, T b, T c)
 Returns the minimum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T() min (T a, T b, T c, T d)
 Returns the minimum component-wise values of 4 inputs. More...
 
template<typename genType >
GLM_FUNC_DECL genType mirrorClamp (genType const &Texcoord)
 Simulate GL_MIRRORED_REPEAT OpenGL wrap mode. More...
 
template<typename genType >
GLM_FUNC_DECL genType mirrorRepeat (genType const &Texcoord)
 Simulate GL_MIRROR_REPEAT OpenGL wrap mode. More...
 
template<typename genType >
GLM_FUNC_DECL genType repeat (genType const &Texcoord)
 Simulate GL_REPEAT OpenGL wrap mode. More...
 
template<typename genType >
GLM_FUNC_DECL uint uround (genType const &x)
 Returns a value equal to the nearest integer to x. More...
 
+

Detailed Description

+

Exposes min and max functions for 3 to 4 scalar parameters.

+

Include <glm/ext/scalar_common.hpp> to use the features of this extension.

+
See also
Common functions
+
+GLM_EXT_vector_common
+

Function Documentation

+ +

◆ clamp()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::clamp (genType const & Texcoord)
+
+ +

Simulate GL_CLAMP OpenGL wrap mode.

+
Template Parameters
+ + +
genTypeFloating-point scalar types.
+
+
+
See also
GLM_EXT_scalar_common extension.
+ +
+
+ +

◆ fclamp()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::fclamp (genType x,
genType minVal,
genType maxVal 
)
+
+ +

Returns min(max(x, minVal), maxVal) for each component in x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + +
genTypeFloating-point scalar types.
+
+
+
See also
GLM_EXT_scalar_common
+ +
+
+ +

◆ fmax() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::fmax (a,
b 
)
+
+ +

Returns the maximum component-wise values of 2 inputs.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
std::fmax documentation
+
+GLM_EXT_scalar_common
+ +
+
+ +

◆ fmax() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::fmax (a,
b,
C 
)
+
+ +

Returns the maximum component-wise values of 3 inputs.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
std::fmax documentation
+
+GLM_EXT_scalar_common
+ +
+
+ +

◆ fmax() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::fmax (a,
b,
C,
D 
)
+
+ +

Returns the maximum component-wise values of 4 inputs.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
std::fmax documentation
+
+GLM_EXT_scalar_common
+ +
+
+ +

◆ fmin() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::fmin (a,
b 
)
+
+ +

Returns the minimum component-wise values of 2 inputs.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
std::fmin documentation
+
+GLM_EXT_scalar_common
+ +
+
+ +

◆ fmin() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::fmin (a,
b,
c 
)
+
+ +

Returns the minimum component-wise values of 3 inputs.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
std::fmin documentation
+
+GLM_EXT_scalar_common
+ +
+
+ +

◆ fmin() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::fmin (a,
b,
c,
d 
)
+
+ +

Returns the minimum component-wise values of 4 inputs.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
std::fmin documentation
+
+GLM_EXT_scalar_common
+ +
+
+ +

◆ iround()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int glm::iround (genType const & x)
+
+ +

Returns a value equal to the nearest integer to x.

+

The fraction 0.5 will round in a direction chosen by the implementation, presumably the direction that is fastest.

+
Parameters
+ + +
xThe values of the argument must be greater or equal to zero.
+
+
+
Template Parameters
+ + +
genTypefloating point scalar types.
+
+
+
See also
GLSL round man page
+
+GLM_EXT_scalar_common extension.
+ +
+
+ +

◆ max() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::max (a,
b,
c 
)
+
+ +

Returns the maximum component-wise values of 3 inputs.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
GLM_EXT_scalar_common
+ +
+
+ +

◆ max() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::max (a,
b,
c,
d 
)
+
+ +

Returns the maximum component-wise values of 4 inputs.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
GLM_EXT_scalar_common
+ +
+
+ +

◆ min() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::min (a,
b,
c 
)
+
+ +

Returns the minimum component-wise values of 3 inputs.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
GLM_EXT_scalar_common
+ +
+
+ +

◆ min() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T() glm::min (a,
b,
c,
d 
)
+
+ +

Returns the minimum component-wise values of 4 inputs.

+
Template Parameters
+ + +
TA floating-point scalar type.
+
+
+
See also
GLM_EXT_scalar_common
+ +
+
+ +

◆ mirrorClamp()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::mirrorClamp (genType const & Texcoord)
+
+ +

Simulate GL_MIRRORED_REPEAT OpenGL wrap mode.

+
Template Parameters
+ + +
genTypeFloating-point scalar types.
+
+
+
See also
GLM_EXT_scalar_common extension.
+ +
+
+ +

◆ mirrorRepeat()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::mirrorRepeat (genType const & Texcoord)
+
+ +

Simulate GL_MIRROR_REPEAT OpenGL wrap mode.

+
Template Parameters
+ + +
genTypeFloating-point scalar types.
+
+
+
See also
GLM_EXT_scalar_common extension.
+ +
+
+ +

◆ repeat()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::repeat (genType const & Texcoord)
+
+ +

Simulate GL_REPEAT OpenGL wrap mode.

+
Template Parameters
+ + +
genTypeFloating-point scalar types.
+
+
+
See also
GLM_EXT_scalar_common extension.
+ +
+
+ +

◆ uround()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::uround (genType const & x)
+
+ +

Returns a value equal to the nearest integer to x.

+

The fraction 0.5 will round in a direction chosen by the implementation, presumably the direction that is fastest.

+
Parameters
+ + +
xThe values of the argument must be greater or equal to zero.
+
+
+
Template Parameters
+ + +
genTypefloating point scalar types.
+
+
+
See also
GLSL round man page
+
+GLM_EXT_scalar_common extension.
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00867.html b/include/glm/doc/api/a00867.html new file mode 100644 index 0000000..57df805 --- /dev/null +++ b/include/glm/doc/api/a00867.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_scalar_constants + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_scalar_constants
+
+
+ + + + + + + + + + + + + + +

+Functions

+template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType cos_one_over_two ()
 Return the value of cos(1 / 2) for floating point types.
 
+template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon ()
 Return the epsilon constant for floating point types.
 
+template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType pi ()
 Return the pi constant for floating point types.
 
+

Detailed Description

+

Provides a list of constants and precomputed useful values.

+

Include <glm/ext/scalar_constants.hpp> to use the features of this extension.

+
+ + + + diff --git a/include/glm/doc/api/a00868.html b/include/glm/doc/api/a00868.html new file mode 100644 index 0000000..5967480 --- /dev/null +++ b/include/glm/doc/api/a00868.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_scalar_int_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_scalar_int_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

+typedef detail::int16 int16
 16 bit signed integer type.
 
+typedef detail::int32 int32
 32 bit signed integer type.
 
+typedef detail::int64 int64
 64 bit signed integer type.
 
+typedef detail::int8 int8
 8 bit signed integer type.
 
+

Detailed Description

+

Exposes sized signed integer scalar types.

+

Include <glm/ext/scalar_int_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_uint_sized
+
+ + + + diff --git a/include/glm/doc/api/a00869.html b/include/glm/doc/api/a00869.html new file mode 100644 index 0000000..6ad9b9c --- /dev/null +++ b/include/glm/doc/api/a00869.html @@ -0,0 +1,334 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_scalar_integer + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_scalar_integer
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genIUType >
GLM_FUNC_DECL int findNSB (genIUType x, int significantBitCount)
 Returns the bit number of the Nth significant bit set to 1 in the binary representation of value. More...
 
template<typename genIUType >
GLM_FUNC_DECL bool isMultiple (genIUType v, genIUType Multiple)
 Return true if the 'Value' is a multiple of 'Multiple'. More...
 
template<typename genIUType >
GLM_FUNC_DECL bool isPowerOfTwo (genIUType v)
 Return true if the value is a power of two number. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType nextMultiple (genIUType v, genIUType Multiple)
 Higher multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType nextPowerOfTwo (genIUType v)
 Return the power of two number which value is just higher the input value, round up to a power of two. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType prevMultiple (genIUType v, genIUType Multiple)
 Lower multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType prevPowerOfTwo (genIUType v)
 Return the power of two number which value is just lower the input value, round down to a power of two. More...
 
+

Detailed Description

+

Include <glm/ext/scalar_integer.hpp> to use the features of this extension.

+

Function Documentation

+ +

◆ findNSB()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int glm::findNSB (genIUType x,
int significantBitCount 
)
+
+ +

Returns the bit number of the Nth significant bit set to 1 in the binary representation of value.

+

If value bitcount is less than the Nth significant bit, -1 will be returned.

+
Template Parameters
+ + +
genIUTypeSigned or unsigned integer scalar types.
+
+
+
See also
GLM_EXT_scalar_integer
+ +
+
+ +

◆ isMultiple()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isMultiple (genIUType v,
genIUType Multiple 
)
+
+ +

Return true if the 'Value' is a multiple of 'Multiple'.

+
See also
GLM_EXT_scalar_integer
+ +
+
+ +

◆ isPowerOfTwo()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL bool glm::isPowerOfTwo (genIUType v)
+
+ +

Return true if the value is a power of two number.

+
See also
GLM_EXT_scalar_integer
+ +
+
+ +

◆ nextMultiple()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genIUType glm::nextMultiple (genIUType v,
genIUType Multiple 
)
+
+ +

Higher multiple number of Source.

+
Template Parameters
+ + +
genIUTypeInteger scalar or vector types.
+
+
+
Parameters
+ + + +
vSource value to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_EXT_scalar_integer
+ +
+
+ +

◆ nextPowerOfTwo()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genIUType glm::nextPowerOfTwo (genIUType v)
+
+ +

Return the power of two number which value is just higher the input value, round up to a power of two.

+
See also
GLM_EXT_scalar_integer
+ +
+
+ +

◆ prevMultiple()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genIUType glm::prevMultiple (genIUType v,
genIUType Multiple 
)
+
+ +

Lower multiple number of Source.

+
Template Parameters
+ + +
genIUTypeInteger scalar or vector types.
+
+
+
Parameters
+ + + +
vSource value to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_EXT_scalar_integer
+ +
+
+ +

◆ prevPowerOfTwo()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genIUType glm::prevPowerOfTwo (genIUType v)
+
+ +

Return the power of two number which value is just lower the input value, round down to a power of two.

+
See also
GLM_EXT_scalar_integer
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00870.html b/include/glm/doc/api/a00870.html new file mode 100644 index 0000000..12fe45b --- /dev/null +++ b/include/glm/doc/api/a00870.html @@ -0,0 +1,79 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_scalar_packing + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_EXT_scalar_packing
+
+
+

Include <glm/ext/scalar_packing.hpp> to use the features of this extension.

+

This extension provides a set of function to convert scalar values to packed formats.

+
+ + + + diff --git a/include/glm/doc/api/a00871.html b/include/glm/doc/api/a00871.html new file mode 100644 index 0000000..8e60d0b --- /dev/null +++ b/include/glm/doc/api/a00871.html @@ -0,0 +1,561 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_scalar_reciprocal + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_scalar_reciprocal
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType acot (genType x)
 Inverse cotangent function. More...
 
template<typename genType >
GLM_FUNC_DECL genType acoth (genType x)
 Inverse cotangent hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType acsc (genType x)
 Inverse cosecant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType acsch (genType x)
 Inverse cosecant hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType asec (genType x)
 Inverse secant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType asech (genType x)
 Inverse secant hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType cot (genType angle)
 Cotangent function. More...
 
template<typename genType >
GLM_FUNC_DECL genType coth (genType angle)
 Cotangent hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType csc (genType angle)
 Cosecant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType csch (genType angle)
 Cosecant hyperbolic function. More...
 
template<typename genType >
GLM_FUNC_DECL genType sec (genType angle)
 Secant function. More...
 
template<typename genType >
GLM_FUNC_DECL genType sech (genType angle)
 Secant hyperbolic function. More...
 
+

Detailed Description

+

Include <glm/ext/scalar_reciprocal.hpp> to use the features of this extension.

+

Define secant, cosecant and cotangent functions.

+

Function Documentation

+ +

◆ acot()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType acot (genType x)
+
+ +

Inverse cotangent function.

+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ acoth()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType acoth (genType x)
+
+ +

Inverse cotangent hyperbolic function.

+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ acsc()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType acsc (genType x)
+
+ +

Inverse cosecant function.

+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ acsch()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType acsch (genType x)
+
+ +

Inverse cosecant hyperbolic function.

+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ asec()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType asec (genType x)
+
+ +

Inverse secant function.

+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ asech()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType asech (genType x)
+
+ +

Inverse secant hyperbolic function.

+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+
Returns
Return an angle expressed in radians.
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ cot()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType cot (genType angle)
+
+ +

Cotangent function.

+

adjacent / opposite or 1 / tan(x)

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+

adjacent / opposite or 1 / tan(x)

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ coth()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType coth (genType angle)
+
+ +

Cotangent hyperbolic function.

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ csc()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType csc (genType angle)
+
+ +

Cosecant function.

+

hypotenuse / opposite or 1 / sin(x)

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+

hypotenuse / opposite or 1 / sin(x)

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ csch()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType csch (genType angle)
+
+ +

Cosecant hyperbolic function.

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ sec()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType sec (genType angle)
+
+ +

Secant function.

+

hypotenuse / adjacent or 1 / cos(x)

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+

hypotenuse / adjacent or 1 / cos(x)

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+ +

◆ sech()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType sech (genType angle)
+
+ +

Secant hyperbolic function.

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_scalar_reciprocal
+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLM_EXT_vector_reciprocal
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00872.html b/include/glm/doc/api/a00872.html new file mode 100644 index 0000000..c1a7e04 --- /dev/null +++ b/include/glm/doc/api/a00872.html @@ -0,0 +1,296 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_scalar_relational + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_scalar_relational
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR bool equal (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR bool equal (genType const &x, genType const &y, int ULPs)
 Returns the component-wise comparison between two scalars in term of ULPs. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR bool notEqual (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR bool notEqual (genType const &x, genType const &y, int ULPs)
 Returns the component-wise comparison between two scalars in term of ULPs. More...
 
+

Detailed Description

+

Exposes comparison functions for scalar types that take a user defined epsilon values.

+

Include <glm/ext/scalar_relational.hpp> to use the features of this extension.

+
See also
core_vector_relational
+
+GLM_EXT_vector_relational
+
+GLM_EXT_matrix_relational
+

Function Documentation

+ +

◆ equal() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR bool glm::equal (genType const & x,
genType const & y,
genType const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+

True if this expression is satisfied.

+
Template Parameters
+ + +
genTypeFloating-point or integer scalar types
+
+
+ +
+
+ +

◆ equal() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR bool glm::equal (genType const & x,
genType const & y,
int ULPs 
)
+
+ +

Returns the component-wise comparison between two scalars in term of ULPs.

+

True if this expression is satisfied.

+
Parameters
+ + + + +
xFirst operand.
ySecond operand.
ULPsMaximum difference in ULPs between the two operators to consider them equal.
+
+
+
Template Parameters
+ + +
genTypeFloating-point or integer scalar types
+
+
+ +
+
+ +

◆ notEqual() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR bool glm::notEqual (genType const & x,
genType const & y,
genType const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| >= epsilon.

+

True if this expression is not satisfied.

+
Template Parameters
+ + +
genTypeFloating-point or integer scalar types
+
+
+ +
+
+ +

◆ notEqual() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR bool glm::notEqual (genType const & x,
genType const & y,
int ULPs 
)
+
+ +

Returns the component-wise comparison between two scalars in term of ULPs.

+

True if this expression is not satisfied.

+
Parameters
+ + + + +
xFirst operand.
ySecond operand.
ULPsMaximum difference in ULPs between the two operators to consider them not equal.
+
+
+
Template Parameters
+ + +
genTypeFloating-point or integer scalar types
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00873.html b/include/glm/doc/api/a00873.html new file mode 100644 index 0000000..8272bb6 --- /dev/null +++ b/include/glm/doc/api/a00873.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_scalar_uint_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_scalar_uint_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

+typedef detail::uint16 uint16
 16 bit unsigned integer type.
 
+typedef detail::uint32 uint32
 32 bit unsigned integer type.
 
+typedef detail::uint64 uint64
 64 bit unsigned integer type.
 
+typedef detail::uint8 uint8
 8 bit unsigned integer type.
 
+

Detailed Description

+

Exposes sized unsigned integer scalar types.

+

Include <glm/ext/scalar_uint_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_int_sized
+
+ + + + diff --git a/include/glm/doc/api/a00874.html b/include/glm/doc/api/a00874.html new file mode 100644 index 0000000..444fc38 --- /dev/null +++ b/include/glm/doc/api/a00874.html @@ -0,0 +1,302 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_scalar_ulp + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_scalar_ulp
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

GLM_FUNC_DECL int64 floatDistance (double x, double y)
 Return the distance in the number of ULP between 2 double-precision floating-point scalars. More...
 
GLM_FUNC_DECL int floatDistance (float x, float y)
 Return the distance in the number of ULP between 2 single-precision floating-point scalars. More...
 
template<typename genType >
GLM_FUNC_DECL genType nextFloat (genType x)
 Return the next ULP value(s) after the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType nextFloat (genType x, int ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType prevFloat (genType x)
 Return the previous ULP value(s) before the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType prevFloat (genType x, int ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
+

Detailed Description

+

Allow the measurement of the accuracy of a function against a reference implementation. This extension works on floating-point data and provide results in ULP.

+

Include <glm/ext/scalar_ulp.hpp> to use the features of this extension.

+
See also
GLM_EXT_vector_ulp
+
+GLM_EXT_scalar_relational
+

Function Documentation

+ +

◆ floatDistance() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int64 glm::floatDistance (double x,
double y 
)
+
+ +

Return the distance in the number of ULP between 2 double-precision floating-point scalars.

+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ floatDistance() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int glm::floatDistance (float x,
float y 
)
+
+ +

Return the distance in the number of ULP between 2 single-precision floating-point scalars.

+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ nextFloat() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::nextFloat (genType x)
+
+ +

Return the next ULP value(s) after the input value(s).

+
Template Parameters
+ + +
genTypeA floating-point scalar type.
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ nextFloat() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::nextFloat (genType x,
int ULPs 
)
+
+ +

Return the value(s) ULP distance after the input value(s).

+
Template Parameters
+ + +
genTypeA floating-point scalar type.
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ prevFloat() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::prevFloat (genType x)
+
+ +

Return the previous ULP value(s) before the input value(s).

+
Template Parameters
+ + +
genTypeA floating-point scalar type.
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ prevFloat() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::prevFloat (genType x,
int ULPs 
)
+
+ +

Return the value(s) ULP distance before the input value(s).

+
Template Parameters
+ + +
genTypeA floating-point scalar type.
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00875.html b/include/glm/doc/api/a00875.html new file mode 100644 index 0000000..1eeea83 --- /dev/null +++ b/include/glm/doc/api/a00875.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_bool1 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_bool1
+
+
+ + + + + +

+Typedefs

+typedef vec< 1, bool, defaultp > bvec1
 1 components vector of boolean.
 
+

Detailed Description

+

Exposes bvec1 vector type.

+

Include <glm/ext/vector_bool1.hpp> to use the features of this extension.

+
See also
GLM_EXT_vector_bool1_precision extension.
+
+ + + + diff --git a/include/glm/doc/api/a00876.html b/include/glm/doc/api/a00876.html new file mode 100644 index 0000000..f3b7c96 --- /dev/null +++ b/include/glm/doc/api/a00876.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_bool1_precision + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_bool1_precision
+
+
+ + + + + + + + + + + +

+Typedefs

+typedef vec< 1, bool, highp > highp_bvec1
 1 component vector of bool values.
 
+typedef vec< 1, bool, lowp > lowp_bvec1
 1 component vector of bool values.
 
+typedef vec< 1, bool, mediump > mediump_bvec1
 1 component vector of bool values.
 
+

Detailed Description

+

Exposes highp_bvec1, mediump_bvec1 and lowp_bvec1 types.

+

Include <glm/ext/vector_bool1_precision.hpp> to use the features of this extension.

+
+ + + + diff --git a/include/glm/doc/api/a00877.html b/include/glm/doc/api/a00877.html new file mode 100644 index 0000000..eeb9547 --- /dev/null +++ b/include/glm/doc/api/a00877.html @@ -0,0 +1,994 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_common + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_common
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > clamp (vec< L, T, Q > const &Texcoord)
 Simulate GL_CLAMP OpenGL wrap mode. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fclamp (vec< L, T, Q > const &x, T minVal, T maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fclamp (vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)
 Returns min(max(x, minVal), maxVal) for each component in x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmax (vec< L, T, Q > const &a, T b)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmax (vec< L, T, Q > const &a, vec< L, T, Q > const &b)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmax (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmax (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)
 Returns y if x < y; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmin (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmin (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmin (vec< L, T, Q > const &x, T y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmin (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns y if y < x; otherwise, it returns x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > iround (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &z)
 Return the maximum component-wise values of 3 inputs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > max (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &z, vec< L, T, Q > const &w)
 Return the maximum component-wise values of 4 inputs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)
 Return the minimum component-wise values of 3 inputs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > min (vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)
 Return the minimum component-wise values of 4 inputs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > mirrorClamp (vec< L, T, Q > const &Texcoord)
 Simulate GL_MIRRORED_REPEAT OpenGL wrap mode. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > mirrorRepeat (vec< L, T, Q > const &Texcoord)
 Simulate GL_MIRROR_REPEAT OpenGL wrap mode. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > repeat (vec< L, T, Q > const &Texcoord)
 Simulate GL_REPEAT OpenGL wrap mode. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, uint, Q > uround (vec< L, T, Q > const &x)
 Returns a value equal to the nearest integer to x. More...
 
+

Detailed Description

+

Exposes min and max functions for 3 to 4 vector parameters.

+

Include <glm/ext/vector_common.hpp> to use the features of this extension.

+
See also
core_common
+
+GLM_EXT_scalar_common
+

Function Documentation

+ +

◆ clamp()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::clamp (vec< L, T, Q > const & Texcoord)
+
+ +

Simulate GL_CLAMP OpenGL wrap mode.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_common extension.
+ +
+
+ +

◆ fclamp() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fclamp (vec< L, T, Q > const & x,
minVal,
maxVal 
)
+
+ +

Returns min(max(x, minVal), maxVal) for each component in x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_common
+ +
+
+ +

◆ fclamp() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fclamp (vec< L, T, Q > const & x,
vec< L, T, Q > const & minVal,
vec< L, T, Q > const & maxVal 
)
+
+ +

Returns min(max(x, minVal), maxVal) for each component in x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_common
+ +
+
+ +

◆ fmax() [1/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fmax (vec< L, T, Q > const & a,
b 
)
+
+ +

Returns y if x < y; otherwise, it returns x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
std::fmax documentation
+ +
+
+ +

◆ fmax() [2/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fmax (vec< L, T, Q > const & a,
vec< L, T, Q > const & b 
)
+
+ +

Returns y if x < y; otherwise, it returns x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
std::fmax documentation
+ +
+
+ +

◆ fmax() [3/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fmax (vec< L, T, Q > const & a,
vec< L, T, Q > const & b,
vec< L, T, Q > const & c 
)
+
+ +

Returns y if x < y; otherwise, it returns x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
std::fmax documentation
+ +
+
+ +

◆ fmax() [4/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fmax (vec< L, T, Q > const & a,
vec< L, T, Q > const & b,
vec< L, T, Q > const & c,
vec< L, T, Q > const & d 
)
+
+ +

Returns y if x < y; otherwise, it returns x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
std::fmax documentation
+ +
+
+ +

◆ fmin() [1/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fmin (vec< L, T, Q > const & a,
vec< L, T, Q > const & b,
vec< L, T, Q > const & c 
)
+
+ +

Returns y if y < x; otherwise, it returns x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
std::fmin documentation
+ +
+
+ +

◆ fmin() [2/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fmin (vec< L, T, Q > const & a,
vec< L, T, Q > const & b,
vec< L, T, Q > const & c,
vec< L, T, Q > const & d 
)
+
+ +

Returns y if y < x; otherwise, it returns x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
std::fmin documentation
+ +
+
+ +

◆ fmin() [3/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fmin (vec< L, T, Q > const & x,
y 
)
+
+ +

Returns y if y < x; otherwise, it returns x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
std::fmin documentation
+ +
+
+ +

◆ fmin() [4/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fmin (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns y if y < x; otherwise, it returns x.

+

If one of the two arguments is NaN, the value of the other argument is returned.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
std::fmin documentation
+ +
+
+ +

◆ iround()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, int, Q> glm::iround (vec< L, T, Q > const & x)
+
+ +

Returns a value equal to the nearest integer to x.

+

The fraction 0.5 will round in a direction chosen by the implementation, presumably the direction that is fastest.

+
Parameters
+ + +
xThe values of the argument must be greater or equal to zero.
+
+
+
Template Parameters
+ + +
Tfloating point scalar types.
+
+
+
See also
GLSL round man page
+
+GLM_EXT_vector_common extension.
+ +
+
+ +

◆ max() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::max (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
vec< L, T, Q > const & z 
)
+
+ +

Return the maximum component-wise values of 3 inputs.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ max() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::max (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
vec< L, T, Q > const & z,
vec< L, T, Q > const & w 
)
+
+ +

Return the maximum component-wise values of 4 inputs.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ min() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::min (vec< L, T, Q > const & a,
vec< L, T, Q > const & b,
vec< L, T, Q > const & c 
)
+
+ +

Return the minimum component-wise values of 3 inputs.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ min() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::min (vec< L, T, Q > const & a,
vec< L, T, Q > const & b,
vec< L, T, Q > const & c,
vec< L, T, Q > const & d 
)
+
+ +

Return the minimum component-wise values of 4 inputs.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ mirrorClamp()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::mirrorClamp (vec< L, T, Q > const & Texcoord)
+
+ +

Simulate GL_MIRRORED_REPEAT OpenGL wrap mode.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_common extension.
+ +
+
+ +

◆ mirrorRepeat()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::mirrorRepeat (vec< L, T, Q > const & Texcoord)
+
+ +

Simulate GL_MIRROR_REPEAT OpenGL wrap mode.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_common extension.
+ +
+
+ +

◆ repeat()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::repeat (vec< L, T, Q > const & Texcoord)
+
+ +

Simulate GL_REPEAT OpenGL wrap mode.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_common extension.
+ +
+
+ +

◆ uround()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, uint, Q> glm::uround (vec< L, T, Q > const & x)
+
+ +

Returns a value equal to the nearest integer to x.

+

The fraction 0.5 will round in a direction chosen by the implementation, presumably the direction that is fastest.

+
Parameters
+ + +
xThe values of the argument must be greater or equal to zero.
+
+
+
Template Parameters
+ + +
Tfloating point scalar types.
+
+
+
See also
GLSL round man page
+
+GLM_EXT_vector_common extension.
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00878.html b/include/glm/doc/api/a00878.html new file mode 100644 index 0000000..25ff4ef --- /dev/null +++ b/include/glm/doc/api/a00878.html @@ -0,0 +1,93 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_double1 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_double1
+
+
+ + + + + +

+Typedefs

+typedef vec< 1, double, defaultp > dvec1
 1 components vector of double-precision floating-point numbers.
 
+

Detailed Description

+

Exposes double-precision floating point vector type with one component.

+

Include <glm/ext/vector_double1.hpp> to use the features of this extension.

+
See also
GLM_EXT_vector_double1_precision extension.
+
+GLM_EXT_vector_float1 extension.
+
+ + + + diff --git a/include/glm/doc/api/a00879.html b/include/glm/doc/api/a00879.html new file mode 100644 index 0000000..6b7eb35 --- /dev/null +++ b/include/glm/doc/api/a00879.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_double1_precision + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_double1_precision
+
+
+ + + + + + + + + + + +

+Typedefs

+typedef vec< 1, double, highp > highp_dvec1
 1 component vector of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, lowp > lowp_dvec1
 1 component vector of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, mediump > mediump_dvec1
 1 component vector of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+

Detailed Description

+

Exposes highp_dvec1, mediump_dvec1 and lowp_dvec1 types.

+

Include <glm/ext/vector_double1_precision.hpp> to use the features of this extension.

+
See also
GLM_EXT_vector_double1
+
+ + + + diff --git a/include/glm/doc/api/a00880.html b/include/glm/doc/api/a00880.html new file mode 100644 index 0000000..9dc20d9 --- /dev/null +++ b/include/glm/doc/api/a00880.html @@ -0,0 +1,93 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_float1 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_float1
+
+
+ + + + + +

+Typedefs

+typedef vec< 1, float, defaultp > vec1
 1 components vector of single-precision floating-point numbers.
 
+

Detailed Description

+

Exposes single-precision floating point vector type with one component.

+

Include <glm/ext/vector_float1.hpp> to use the features of this extension.

+
See also
GLM_EXT_vector_float1_precision extension.
+
+GLM_EXT_vector_double1 extension.
+
+ + + + diff --git a/include/glm/doc/api/a00881.html b/include/glm/doc/api/a00881.html new file mode 100644 index 0000000..b065aff --- /dev/null +++ b/include/glm/doc/api/a00881.html @@ -0,0 +1,99 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_float1_precision + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_float1_precision
+
+
+ + + + + + + + + + + +

+Typedefs

+typedef vec< 1, float, highp > highp_vec1
 1 component vector of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, float, lowp > lowp_vec1
 1 component vector of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, float, mediump > mediump_vec1
 1 component vector of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+

Detailed Description

+

Exposes highp_vec1, mediump_vec1 and lowp_vec1 types.

+

Include <glm/ext/vector_float1_precision.hpp> to use the features of this extension.

+
See also
GLM_EXT_vector_float1 extension.
+
+ + + + diff --git a/include/glm/doc/api/a00882.html b/include/glm/doc/api/a00882.html new file mode 100644 index 0000000..a7c1714 --- /dev/null +++ b/include/glm/doc/api/a00882.html @@ -0,0 +1,93 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_int1 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_int1
+
+
+ + + + + +

+Typedefs

+typedef vec< 1, int, defaultp > ivec1
 1 component vector of signed integer numbers.
 
+

Detailed Description

+

Exposes ivec1 vector type.

+

Include <glm/ext/vector_int1.hpp> to use the features of this extension.

+
See also
GLM_EXT_vector_uint1 extension.
+
+ext_vector_int1_precision extension.
+
+ + + + diff --git a/include/glm/doc/api/a00883.html b/include/glm/doc/api/a00883.html new file mode 100644 index 0000000..85f209b --- /dev/null +++ b/include/glm/doc/api/a00883.html @@ -0,0 +1,178 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_int1_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_int1_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 1, int16, defaultp > i16vec1
 16 bit signed integer vector of 1 component type. More...
 
typedef vec< 1, int32, defaultp > i32vec1
 32 bit signed integer vector of 1 component type. More...
 
typedef vec< 1, int64, defaultp > i64vec1
 64 bit signed integer vector of 1 component type. More...
 
typedef vec< 1, int8, defaultp > i8vec1
 8 bit signed integer vector of 1 component type. More...
 
+

Detailed Description

+

Exposes sized signed integer vector types.

+

Include <glm/ext/vector_int1_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_int_sized
+
+GLM_EXT_vector_uint1_sized
+

Typedef Documentation

+ +

◆ i16vec1

+ +
+
+ + + + +
typedef vec< 1, i16, defaultp > i16vec1
+
+ +

16 bit signed integer vector of 1 component type.

+
See also
GLM_EXT_vector_int1_sized
+ +

Definition at line 36 of file vector_int1_sized.hpp.

+ +
+
+ +

◆ i32vec1

+ +
+
+ + + + +
typedef vec< 1, i32, defaultp > i32vec1
+
+ +

32 bit signed integer vector of 1 component type.

+
See also
GLM_EXT_vector_int1_sized
+ +

Definition at line 41 of file vector_int1_sized.hpp.

+ +
+
+ +

◆ i64vec1

+ +
+
+ + + + +
typedef vec< 1, i64, defaultp > i64vec1
+
+ +

64 bit signed integer vector of 1 component type.

+
See also
GLM_EXT_vector_int1_sized
+ +

Definition at line 46 of file vector_int1_sized.hpp.

+ +
+
+ +

◆ i8vec1

+ +
+
+ + + + +
typedef vec< 1, i8, defaultp > i8vec1
+
+ +

8 bit signed integer vector of 1 component type.

+
See also
GLM_EXT_vector_int1_sized
+ +

Definition at line 31 of file vector_int1_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00884.html b/include/glm/doc/api/a00884.html new file mode 100644 index 0000000..4967604 --- /dev/null +++ b/include/glm/doc/api/a00884.html @@ -0,0 +1,178 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_int2_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_int2_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 2, int16, defaultp > i16vec2
 16 bit signed integer vector of 2 components type. More...
 
typedef vec< 2, int32, defaultp > i32vec2
 32 bit signed integer vector of 2 components type. More...
 
typedef vec< 2, int64, defaultp > i64vec2
 64 bit signed integer vector of 2 components type. More...
 
typedef vec< 2, int8, defaultp > i8vec2
 8 bit signed integer vector of 2 components type. More...
 
+

Detailed Description

+

Exposes sized signed integer vector of 2 components type.

+

Include <glm/ext/vector_int2_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_int_sized
+
+GLM_EXT_vector_uint2_sized
+

Typedef Documentation

+ +

◆ i16vec2

+ +
+
+ + + + +
typedef vec< 2, i16, defaultp > i16vec2
+
+ +

16 bit signed integer vector of 2 components type.

+
See also
GLM_EXT_vector_int2_sized
+ +

Definition at line 36 of file vector_int2_sized.hpp.

+ +
+
+ +

◆ i32vec2

+ +
+
+ + + + +
typedef vec< 2, i32, defaultp > i32vec2
+
+ +

32 bit signed integer vector of 2 components type.

+
See also
GLM_EXT_vector_int2_sized
+ +

Definition at line 41 of file vector_int2_sized.hpp.

+ +
+
+ +

◆ i64vec2

+ +
+
+ + + + +
typedef vec< 2, i64, defaultp > i64vec2
+
+ +

64 bit signed integer vector of 2 components type.

+
See also
GLM_EXT_vector_int2_sized
+ +

Definition at line 46 of file vector_int2_sized.hpp.

+ +
+
+ +

◆ i8vec2

+ +
+
+ + + + +
typedef vec< 2, i8, defaultp > i8vec2
+
+ +

8 bit signed integer vector of 2 components type.

+
See also
GLM_EXT_vector_int2_sized
+ +

Definition at line 31 of file vector_int2_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00885.html b/include/glm/doc/api/a00885.html new file mode 100644 index 0000000..b447bf4 --- /dev/null +++ b/include/glm/doc/api/a00885.html @@ -0,0 +1,178 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_int3_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_int3_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 3, int16, defaultp > i16vec3
 16 bit signed integer vector of 3 components type. More...
 
typedef vec< 3, int32, defaultp > i32vec3
 32 bit signed integer vector of 3 components type. More...
 
typedef vec< 3, int64, defaultp > i64vec3
 64 bit signed integer vector of 3 components type. More...
 
typedef vec< 3, int8, defaultp > i8vec3
 8 bit signed integer vector of 3 components type. More...
 
+

Detailed Description

+

Exposes sized signed integer vector of 3 components type.

+

Include <glm/ext/vector_int3_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_int_sized
+
+GLM_EXT_vector_uint3_sized
+

Typedef Documentation

+ +

◆ i16vec3

+ +
+
+ + + + +
typedef vec< 3, i16, defaultp > i16vec3
+
+ +

16 bit signed integer vector of 3 components type.

+
See also
GLM_EXT_vector_int3_sized
+ +

Definition at line 36 of file vector_int3_sized.hpp.

+ +
+
+ +

◆ i32vec3

+ +
+
+ + + + +
typedef vec< 3, i32, defaultp > i32vec3
+
+ +

32 bit signed integer vector of 3 components type.

+
See also
GLM_EXT_vector_int3_sized
+ +

Definition at line 41 of file vector_int3_sized.hpp.

+ +
+
+ +

◆ i64vec3

+ +
+
+ + + + +
typedef vec< 3, i64, defaultp > i64vec3
+
+ +

64 bit signed integer vector of 3 components type.

+
See also
GLM_EXT_vector_int3_sized
+ +

Definition at line 46 of file vector_int3_sized.hpp.

+ +
+
+ +

◆ i8vec3

+ +
+
+ + + + +
typedef vec< 3, i8, defaultp > i8vec3
+
+ +

8 bit signed integer vector of 3 components type.

+
See also
GLM_EXT_vector_int3_sized
+ +

Definition at line 31 of file vector_int3_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00886.html b/include/glm/doc/api/a00886.html new file mode 100644 index 0000000..3bc4fd5 --- /dev/null +++ b/include/glm/doc/api/a00886.html @@ -0,0 +1,178 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_int4_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_int4_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 4, int16, defaultp > i16vec4
 16 bit signed integer vector of 4 components type. More...
 
typedef vec< 4, int32, defaultp > i32vec4
 32 bit signed integer vector of 4 components type. More...
 
typedef vec< 4, int64, defaultp > i64vec4
 64 bit signed integer vector of 4 components type. More...
 
typedef vec< 4, int8, defaultp > i8vec4
 8 bit signed integer vector of 4 components type. More...
 
+

Detailed Description

+

Exposes sized signed integer vector of 4 components type.

+

Include <glm/ext/vector_int4_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_int_sized
+
+GLM_EXT_vector_uint4_sized
+

Typedef Documentation

+ +

◆ i16vec4

+ +
+
+ + + + +
typedef vec< 4, i16, defaultp > i16vec4
+
+ +

16 bit signed integer vector of 4 components type.

+
See also
GLM_EXT_vector_int4_sized
+ +

Definition at line 36 of file vector_int4_sized.hpp.

+ +
+
+ +

◆ i32vec4

+ +
+
+ + + + +
typedef vec< 4, i32, defaultp > i32vec4
+
+ +

32 bit signed integer vector of 4 components type.

+
See also
GLM_EXT_vector_int4_sized
+ +

Definition at line 41 of file vector_int4_sized.hpp.

+ +
+
+ +

◆ i64vec4

+ +
+
+ + + + +
typedef vec< 4, i64, defaultp > i64vec4
+
+ +

64 bit signed integer vector of 4 components type.

+
See also
GLM_EXT_vector_int4_sized
+ +

Definition at line 46 of file vector_int4_sized.hpp.

+ +
+
+ +

◆ i8vec4

+ +
+
+ + + + +
typedef vec< 4, i8, defaultp > i8vec4
+
+ +

8 bit signed integer vector of 4 components type.

+
See also
GLM_EXT_vector_int4_sized
+ +

Definition at line 31 of file vector_int4_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00887.html b/include/glm/doc/api/a00887.html new file mode 100644 index 0000000..e51f78d --- /dev/null +++ b/include/glm/doc/api/a00887.html @@ -0,0 +1,514 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_integer + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_integer
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > findNSB (vec< L, T, Q > const &Source, vec< L, int, Q > SignificantBitCount)
 Returns the bit number of the Nth significant bit set to 1 in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isMultiple (vec< L, T, Q > const &v, T Multiple)
 Return true if the 'Value' is a multiple of 'Multiple'. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Return true if the 'Value' is a multiple of 'Multiple'. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isPowerOfTwo (vec< L, T, Q > const &v)
 Return true if the value is a power of two number. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextMultiple (vec< L, T, Q > const &v, T Multiple)
 Higher multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Higher multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is just higher the input value, round up to a power of two. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevMultiple (vec< L, T, Q > const &v, T Multiple)
 Lower multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Lower multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is just lower the input value, round down to a power of two. More...
 
+

Detailed Description

+

Include <glm/ext/vector_integer.hpp> to use the features of this extension.

+

Function Documentation

+ +

◆ findNSB()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, int, Q> glm::findNSB (vec< L, T, Q > const & Source,
vec< L, int, Q > SignificantBitCount 
)
+
+ +

Returns the bit number of the Nth significant bit set to 1 in the binary representation of value.

+

If value bitcount is less than the Nth significant bit, -1 will be returned.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TSigned or unsigned integer scalar types.
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+ +

◆ isMultiple() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::isMultiple (vec< L, T, Q > const & v,
Multiple 
)
+
+ +

Return true if the 'Value' is a multiple of 'Multiple'.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned or unsigned integer scalar types.
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+ +

◆ isMultiple() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::isMultiple (vec< L, T, Q > const & v,
vec< L, T, Q > const & Multiple 
)
+
+ +

Return true if the 'Value' is a multiple of 'Multiple'.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned or unsigned integer scalar types.
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+ +

◆ isPowerOfTwo()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::isPowerOfTwo (vec< L, T, Q > const & v)
+
+ +

Return true if the value is a power of two number.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned or unsigned integer scalar types.
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+ +

◆ nextMultiple() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::nextMultiple (vec< L, T, Q > const & v,
Multiple 
)
+
+ +

Higher multiple number of Source.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned or unsigned integer scalar types.
QValue from qualifier enum
+
+
+
Parameters
+ + + +
vSource values to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+ +

◆ nextMultiple() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::nextMultiple (vec< L, T, Q > const & v,
vec< L, T, Q > const & Multiple 
)
+
+ +

Higher multiple number of Source.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned or unsigned integer scalar types.
QValue from qualifier enum
+
+
+
Parameters
+ + + +
vSource values to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+ +

◆ nextPowerOfTwo()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::nextPowerOfTwo (vec< L, T, Q > const & v)
+
+ +

Return the power of two number which value is just higher the input value, round up to a power of two.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned or unsigned integer scalar types.
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+ +

◆ prevMultiple() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::prevMultiple (vec< L, T, Q > const & v,
Multiple 
)
+
+ +

Lower multiple number of Source.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned or unsigned integer scalar types.
QValue from qualifier enum
+
+
+
Parameters
+ + + +
vSource values to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+ +

◆ prevMultiple() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::prevMultiple (vec< L, T, Q > const & v,
vec< L, T, Q > const & Multiple 
)
+
+ +

Lower multiple number of Source.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned or unsigned integer scalar types.
QValue from qualifier enum
+
+
+
Parameters
+ + + +
vSource values to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+ +

◆ prevPowerOfTwo()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::prevPowerOfTwo (vec< L, T, Q > const & v)
+
+ +

Return the power of two number which value is just lower the input value, round down to a power of two.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned or unsigned integer scalar types.
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_integer
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00888.html b/include/glm/doc/api/a00888.html new file mode 100644 index 0000000..058400a --- /dev/null +++ b/include/glm/doc/api/a00888.html @@ -0,0 +1,79 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_packing + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_EXT_vector_packing
+
+
+

Include <glm/ext/vector_packing.hpp> to use the features of this extension.

+

This extension provides a set of function to convert vectors to packed formats.

+
+ + + + diff --git a/include/glm/doc/api/a00889.html b/include/glm/doc/api/a00889.html new file mode 100644 index 0000000..cc2d186 --- /dev/null +++ b/include/glm/doc/api/a00889.html @@ -0,0 +1,79 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_reciprocal + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_EXT_vector_reciprocal
+
+
+

Include <glm/ext/vector_reciprocal.hpp> to use the features of this extension.

+

Define secant, cosecant and cotangent functions.

+
+ + + + diff --git a/include/glm/doc/api/a00890.html b/include/glm/doc/api/a00890.html new file mode 100644 index 0000000..9779c84 --- /dev/null +++ b/include/glm/doc/api/a00890.html @@ -0,0 +1,484 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_relational + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_relational
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
+

Detailed Description

+

Exposes comparison functions for vector types that take a user defined epsilon values.

+

Include <glm/ext/vector_relational.hpp> to use the features of this extension.

+
See also
core_vector_relational
+
+GLM_EXT_scalar_relational
+
+GLM_EXT_matrix_relational
+

Function Documentation

+ +

◆ equal() [1/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::equal (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
int ULPs 
)
+
+ +

Returns the component-wise comparison between two vectors in term of ULPs.

+

True if this expression is satisfied.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+ +
+
+ +

◆ equal() [2/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::equal (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+

True if this expression is satisfied.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ equal() [3/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::equal (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
vec< L, int, Q > const & ULPs 
)
+
+ +

Returns the component-wise comparison between two vectors in term of ULPs.

+

True if this expression is satisfied.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+ +
+
+ +

◆ equal() [4/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::equal (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
vec< L, T, Q > const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+

True if this expression is satisfied.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [1/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::notEqual (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
int ULPs 
)
+
+ +

Returns the component-wise comparison between two vectors in term of ULPs.

+

True if this expression is not satisfied.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [2/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::notEqual (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| >= epsilon.

+

True if this expression is not satisfied.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [3/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::notEqual (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
vec< L, int, Q > const & ULPs 
)
+
+ +

Returns the component-wise comparison between two vectors in term of ULPs.

+

True if this expression is not satisfied.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+ +
+
+ +

◆ notEqual() [4/4]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::notEqual (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
vec< L, T, Q > const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| >= epsilon.

+

True if this expression is not satisfied.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00891.html b/include/glm/doc/api/a00891.html new file mode 100644 index 0000000..2ebbc29 --- /dev/null +++ b/include/glm/doc/api/a00891.html @@ -0,0 +1,93 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_uint1 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_uint1
+
+
+ + + + + +

+Typedefs

+typedef vec< 1, unsigned int, defaultp > uvec1
 1 component vector of unsigned integer numbers.
 
+

Detailed Description

+

Exposes uvec1 vector type.

+

Include <glm/ext/vector_uvec1.hpp> to use the features of this extension.

+
See also
GLM_EXT_vector_int1 extension.
+
+ext_vector_uint1_precision extension.
+
+ + + + diff --git a/include/glm/doc/api/a00892.html b/include/glm/doc/api/a00892.html new file mode 100644 index 0000000..b63c480 --- /dev/null +++ b/include/glm/doc/api/a00892.html @@ -0,0 +1,178 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_uint1_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_uint1_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 1, uint16, defaultp > u16vec1
 16 bit unsigned integer vector of 1 component type. More...
 
typedef vec< 1, uint32, defaultp > u32vec1
 32 bit unsigned integer vector of 1 component type. More...
 
typedef vec< 1, uint64, defaultp > u64vec1
 64 bit unsigned integer vector of 1 component type. More...
 
typedef vec< 1, uint8, defaultp > u8vec1
 8 bit unsigned integer vector of 1 component type. More...
 
+

Detailed Description

+

Exposes sized unsigned integer vector types.

+

Include <glm/ext/vector_uint1_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_uint_sized
+
+GLM_EXT_vector_int1_sized
+

Typedef Documentation

+ +

◆ u16vec1

+ +
+
+ + + + +
typedef vec< 1, u16, defaultp > u16vec1
+
+ +

16 bit unsigned integer vector of 1 component type.

+
See also
GLM_EXT_vector_uint1_sized
+ +

Definition at line 36 of file vector_uint1_sized.hpp.

+ +
+
+ +

◆ u32vec1

+ +
+
+ + + + +
typedef vec< 1, u32, defaultp > u32vec1
+
+ +

32 bit unsigned integer vector of 1 component type.

+
See also
GLM_EXT_vector_uint1_sized
+ +

Definition at line 41 of file vector_uint1_sized.hpp.

+ +
+
+ +

◆ u64vec1

+ +
+
+ + + + +
typedef vec< 1, u64, defaultp > u64vec1
+
+ +

64 bit unsigned integer vector of 1 component type.

+
See also
GLM_EXT_vector_uint1_sized
+ +

Definition at line 46 of file vector_uint1_sized.hpp.

+ +
+
+ +

◆ u8vec1

+ +
+
+ + + + +
typedef vec< 1, u8, defaultp > u8vec1
+
+ +

8 bit unsigned integer vector of 1 component type.

+
See also
GLM_EXT_vector_uint1_sized
+ +

Definition at line 31 of file vector_uint1_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00893.html b/include/glm/doc/api/a00893.html new file mode 100644 index 0000000..6b7d027 --- /dev/null +++ b/include/glm/doc/api/a00893.html @@ -0,0 +1,178 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_uint2_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_uint2_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 2, uint16, defaultp > u16vec2
 16 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 2, uint32, defaultp > u32vec2
 32 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 2, uint64, defaultp > u64vec2
 64 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 2, uint8, defaultp > u8vec2
 8 bit unsigned integer vector of 2 components type. More...
 
+

Detailed Description

+

Exposes sized unsigned integer vector of 2 components type.

+

Include <glm/ext/vector_uint2_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_uint_sized
+
+GLM_EXT_vector_int2_sized
+

Typedef Documentation

+ +

◆ u16vec2

+ +
+
+ + + + +
typedef vec< 2, u16, defaultp > u16vec2
+
+ +

16 bit unsigned integer vector of 2 components type.

+
See also
GLM_EXT_vector_uint2_sized
+ +

Definition at line 36 of file vector_uint2_sized.hpp.

+ +
+
+ +

◆ u32vec2

+ +
+
+ + + + +
typedef vec< 2, u32, defaultp > u32vec2
+
+ +

32 bit unsigned integer vector of 2 components type.

+
See also
GLM_EXT_vector_uint2_sized
+ +

Definition at line 41 of file vector_uint2_sized.hpp.

+ +
+
+ +

◆ u64vec2

+ +
+
+ + + + +
typedef vec< 2, u64, defaultp > u64vec2
+
+ +

64 bit unsigned integer vector of 2 components type.

+
See also
GLM_EXT_vector_uint2_sized
+ +

Definition at line 46 of file vector_uint2_sized.hpp.

+ +
+
+ +

◆ u8vec2

+ +
+
+ + + + +
typedef vec< 2, u8, defaultp > u8vec2
+
+ +

8 bit unsigned integer vector of 2 components type.

+
See also
GLM_EXT_vector_uint2_sized
+ +

Definition at line 31 of file vector_uint2_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00894.html b/include/glm/doc/api/a00894.html new file mode 100644 index 0000000..519d5cc --- /dev/null +++ b/include/glm/doc/api/a00894.html @@ -0,0 +1,178 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_uint3_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_uint3_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 3, uint16, defaultp > u16vec3
 16 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 3, uint32, defaultp > u32vec3
 32 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 3, uint64, defaultp > u64vec3
 64 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 3, uint8, defaultp > u8vec3
 8 bit unsigned integer vector of 3 components type. More...
 
+

Detailed Description

+

Exposes sized unsigned integer vector of 3 components type.

+

Include <glm/ext/vector_uint3_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_uint_sized
+
+GLM_EXT_vector_int3_sized
+

Typedef Documentation

+ +

◆ u16vec3

+ +
+
+ + + + +
typedef vec< 3, u16, defaultp > u16vec3
+
+ +

16 bit unsigned integer vector of 3 components type.

+
See also
GLM_EXT_vector_uint3_sized
+ +

Definition at line 36 of file vector_uint3_sized.hpp.

+ +
+
+ +

◆ u32vec3

+ +
+
+ + + + +
typedef vec< 3, u32, defaultp > u32vec3
+
+ +

32 bit unsigned integer vector of 3 components type.

+
See also
GLM_EXT_vector_uint3_sized
+ +

Definition at line 41 of file vector_uint3_sized.hpp.

+ +
+
+ +

◆ u64vec3

+ +
+
+ + + + +
typedef vec< 3, u64, defaultp > u64vec3
+
+ +

64 bit unsigned integer vector of 3 components type.

+
See also
GLM_EXT_vector_uint3_sized
+ +

Definition at line 46 of file vector_uint3_sized.hpp.

+ +
+
+ +

◆ u8vec3

+ +
+
+ + + + +
typedef vec< 3, u8, defaultp > u8vec3
+
+ +

8 bit unsigned integer vector of 3 components type.

+
See also
GLM_EXT_vector_uint3_sized
+ +

Definition at line 31 of file vector_uint3_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00895.html b/include/glm/doc/api/a00895.html new file mode 100644 index 0000000..a1cd8c0 --- /dev/null +++ b/include/glm/doc/api/a00895.html @@ -0,0 +1,178 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_uint4_sized + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_uint4_sized
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef vec< 4, uint16, defaultp > u16vec4
 16 bit unsigned integer vector of 4 components type. More...
 
typedef vec< 4, uint32, defaultp > u32vec4
 32 bit unsigned integer vector of 4 components type. More...
 
typedef vec< 4, uint64, defaultp > u64vec4
 64 bit unsigned integer vector of 4 components type. More...
 
typedef vec< 4, uint8, defaultp > u8vec4
 8 bit unsigned integer vector of 4 components type. More...
 
+

Detailed Description

+

Exposes sized unsigned integer vector of 4 components type.

+

Include <glm/ext/vector_uint4_sized.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_uint_sized
+
+GLM_EXT_vector_int4_sized
+

Typedef Documentation

+ +

◆ u16vec4

+ +
+
+ + + + +
typedef vec< 4, u16, defaultp > u16vec4
+
+ +

16 bit unsigned integer vector of 4 components type.

+
See also
GLM_EXT_vector_uint4_sized
+ +

Definition at line 36 of file vector_uint4_sized.hpp.

+ +
+
+ +

◆ u32vec4

+ +
+
+ + + + +
typedef vec< 4, u32, defaultp > u32vec4
+
+ +

32 bit unsigned integer vector of 4 components type.

+
See also
GLM_EXT_vector_uint4_sized
+ +

Definition at line 41 of file vector_uint4_sized.hpp.

+ +
+
+ +

◆ u64vec4

+ +
+
+ + + + +
typedef vec< 4, u64, defaultp > u64vec4
+
+ +

64 bit unsigned integer vector of 4 components type.

+
See also
GLM_EXT_vector_uint4_sized
+ +

Definition at line 46 of file vector_uint4_sized.hpp.

+ +
+
+ +

◆ u8vec4

+ +
+
+ + + + +
typedef vec< 4, u8, defaultp > u8vec4
+
+ +

8 bit unsigned integer vector of 4 components type.

+
See also
GLM_EXT_vector_uint4_sized
+ +

Definition at line 31 of file vector_uint4_sized.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00896.html b/include/glm/doc/api/a00896.html new file mode 100644 index 0000000..68535f8 --- /dev/null +++ b/include/glm/doc/api/a00896.html @@ -0,0 +1,414 @@ + + + + + + + +1.0.2 API documentation: GLM_EXT_vector_ulp + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_EXT_vector_ulp
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int64, Q > floatDistance (vec< L, double, Q > const &x, vec< L, double, Q > const &y)
 Return the distance in the number of ULP between 2 double-precision floating-point scalars. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > floatDistance (vec< L, float, Q > const &x, vec< L, float, Q > const &y)
 Return the distance in the number of ULP between 2 single-precision floating-point scalars. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextFloat (vec< L, T, Q > const &x)
 Return the next ULP value(s) after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextFloat (vec< L, T, Q > const &x, int ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > nextFloat (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevFloat (vec< L, T, Q > const &x)
 Return the previous ULP value(s) before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevFloat (vec< L, T, Q > const &x, int ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prevFloat (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
+

Detailed Description

+

Allow the measurement of the accuracy of a function against a reference implementation. This extension works on floating-point data and provide results in ULP.

+

Include <glm/ext/vector_ulp.hpp> to use the features of this extension.

+
See also
GLM_EXT_scalar_ulp
+
+GLM_EXT_scalar_relational
+
+GLM_EXT_vector_relational
+

Function Documentation

+ +

◆ floatDistance() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, int64, Q> glm::floatDistance (vec< L, double, Q > const & x,
vec< L, double, Q > const & y 
)
+
+ +

Return the distance in the number of ULP between 2 double-precision floating-point scalars.

+
Template Parameters
+ + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
QValue from qualifier enum
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ floatDistance() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, int, Q> glm::floatDistance (vec< L, float, Q > const & x,
vec< L, float, Q > const & y 
)
+
+ +

Return the distance in the number of ULP between 2 single-precision floating-point scalars.

+
Template Parameters
+ + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
QValue from qualifier enum
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ nextFloat() [1/3]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::nextFloat (vec< L, T, Q > const & x)
+
+ +

Return the next ULP value(s) after the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ nextFloat() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::nextFloat (vec< L, T, Q > const & x,
int ULPs 
)
+
+ +

Return the value(s) ULP distance after the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ nextFloat() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::nextFloat (vec< L, T, Q > const & x,
vec< L, int, Q > const & ULPs 
)
+
+ +

Return the value(s) ULP distance after the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ prevFloat() [1/3]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::prevFloat (vec< L, T, Q > const & x)
+
+ +

Return the previous ULP value(s) before the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ prevFloat() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::prevFloat (vec< L, T, Q > const & x,
int ULPs 
)
+
+ +

Return the value(s) ULP distance before the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+ +

◆ prevFloat() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::prevFloat (vec< L, T, Q > const & x,
vec< L, int, Q > const & ULPs 
)
+
+ +

Return the value(s) ULP distance before the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_EXT_scalar_ulp
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00897.html b/include/glm/doc/api/a00897.html new file mode 100644 index 0000000..607b027 --- /dev/null +++ b/include/glm/doc/api/a00897.html @@ -0,0 +1,431 @@ + + + + + + + +1.0.2 API documentation: Geometric functions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Geometric functions
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 3, T, Q > cross (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Returns the cross product of x and y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T distance (vec< L, T, Q > const &p0, vec< L, T, Q > const &p1)
 Returns the distance between p0 and p1, i.e., length(p0 - p1). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR T dot (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the dot product of x and y, i.e., result = x * y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > faceforward (vec< L, T, Q > const &N, vec< L, T, Q > const &I, vec< L, T, Q > const &Nref)
 If dot(Nref, I) < 0.0, return N, otherwise, return -N. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T length (vec< L, T, Q > const &x)
 Returns the length of x, i.e., sqrt(x * x). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > normalize (vec< L, T, Q > const &x)
 Returns a vector in the same direction as x but with length of 1. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > reflect (vec< L, T, Q > const &I, vec< L, T, Q > const &N)
 For the incident vector I and surface orientation N, returns the reflection direction : result = I - 2.0 * dot(N, I) * N. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > refract (vec< L, T, Q > const &I, vec< L, T, Q > const &N, T eta)
 For the incident vector I and surface normal N, and the ratio of indices of refraction eta, return the refraction vector. More...
 
+

Detailed Description

+

These operate on vectors as vectors, not component-wise.

+

Include <glm/geometric.hpp> to use these core features.

+

Function Documentation

+ +

◆ cross()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> glm::cross (vec< 3, T, Q > const & x,
vec< 3, T, Q > const & y 
)
+
+ +

Returns the cross product of x and y.

+
Template Parameters
+ + +
TFloating-point scalar types.
+
+
+
See also
GLSL cross man page
+
+GLSL 4.20.8 specification, section 8.5 Geometric Functions
+ +
+
+ +

◆ distance()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::distance (vec< L, T, Q > const & p0,
vec< L, T, Q > const & p1 
)
+
+ +

Returns the distance between p0 and p1, i.e., length(p0 - p1).

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL distance man page
+
+GLSL 4.20.8 specification, section 8.5 Geometric Functions
+ +
+
+ +

◆ dot()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR T glm::dot (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns the dot product of x and y, i.e., result = x * y.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL dot man page
+
+GLSL 4.20.8 specification, section 8.5 Geometric Functions
+ +
+
+ +

◆ faceforward()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::faceforward (vec< L, T, Q > const & N,
vec< L, T, Q > const & I,
vec< L, T, Q > const & Nref 
)
+
+ +

If dot(Nref, I) < 0.0, return N, otherwise, return -N.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL faceforward man page
+
+GLSL 4.20.8 specification, section 8.5 Geometric Functions
+ +
+
+ +

◆ length()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::length (vec< L, T, Q > const & x)
+
+ +

Returns the length of x, i.e., sqrt(x * x).

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL length man page
+
+GLSL 4.20.8 specification, section 8.5 Geometric Functions
+ +
+
+ +

◆ normalize()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::normalize (vec< L, T, Q > const & x)
+
+ +

Returns a vector in the same direction as x but with length of 1.

+

According to issue 10 GLSL 1.10 specification, if length(x) == 0 then result is undefined and generate an error.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL normalize man page
+
+GLSL 4.20.8 specification, section 8.5 Geometric Functions
+ +
+
+ +

◆ reflect()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::reflect (vec< L, T, Q > const & I,
vec< L, T, Q > const & N 
)
+
+ +

For the incident vector I and surface orientation N, returns the reflection direction : result = I - 2.0 * dot(N, I) * N.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL reflect man page
+
+GLSL 4.20.8 specification, section 8.5 Geometric Functions
+ +
+
+ +

◆ refract()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::refract (vec< L, T, Q > const & I,
vec< L, T, Q > const & N,
eta 
)
+
+ +

For the incident vector I and surface normal N, and the ratio of indices of refraction eta, return the refraction vector.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TFloating-point scalar types.
+
+
+
See also
GLSL refract man page
+
+GLSL 4.20.8 specification, section 8.5 Geometric Functions
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00898.html b/include/glm/doc/api/a00898.html new file mode 100644 index 0000000..86da0fc --- /dev/null +++ b/include/glm/doc/api/a00898.html @@ -0,0 +1,119 @@ + + + + + + + +1.0.2 API documentation: Core features + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Core features
+
+
+ +

Features that implement in C++ the GLSL specification as closely as possible. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Modules

 Common functions
 
 Exponential functions
 
 Geometric functions
 
 Vector types
 Vector types of two to four components with an exhaustive set of operators.
 
 Vector types with precision qualifiers
 Vector types with precision qualifiers which may result in various precision in term of ULPs.
 
 Matrix types
 Matrix types of with C columns and R rows where C and R are values between 2 to 4 included. These types have exhaustive sets of operators.
 
 Matrix types with precision qualifiers
 Matrix types with precision qualifiers which may result in various precision in term of ULPs.
 
 Integer functions
 
 Matrix functions
 
 Floating-Point Pack and Unpack Functions
 
 Angle and Trigonometry Functions
 
 Vector Relational Functions
 
+

Detailed Description

+

Features that implement in C++ the GLSL specification as closely as possible.

+

The GLM core consists of C++ types that mirror GLSL types and C++ functions that mirror the GLSL functions.

+

The best documentation for GLM Core is the current GLSL specification, version 4.2 (pdf file).

+

GLM core functionalities require <glm/glm.hpp> to be included to be used.

+
+ + + + diff --git a/include/glm/doc/api/a00899.html b/include/glm/doc/api/a00899.html new file mode 100644 index 0000000..5e3cc23 --- /dev/null +++ b/include/glm/doc/api/a00899.html @@ -0,0 +1,419 @@ + + + + + + + +1.0.2 API documentation: Vector types + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Vector types
+
+
+ +

Vector types of two to four components with an exhaustive set of operators. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef vec< 2, bool, defaultp > bvec2
 2 components vector of boolean. More...
 
typedef vec< 3, bool, defaultp > bvec3
 3 components vector of boolean. More...
 
typedef vec< 4, bool, defaultp > bvec4
 4 components vector of boolean. More...
 
typedef vec< 2, double, defaultp > dvec2
 2 components vector of double-precision floating-point numbers. More...
 
typedef vec< 3, double, defaultp > dvec3
 3 components vector of double-precision floating-point numbers. More...
 
typedef vec< 4, double, defaultp > dvec4
 4 components vector of double-precision floating-point numbers. More...
 
typedef vec< 2, int, defaultp > ivec2
 2 components vector of signed integer numbers. More...
 
typedef vec< 3, int, defaultp > ivec3
 3 components vector of signed integer numbers. More...
 
typedef vec< 4, int, defaultp > ivec4
 4 components vector of signed integer numbers. More...
 
typedef vec< 2, unsigned int, defaultp > uvec2
 2 components vector of unsigned integer numbers. More...
 
typedef vec< 3, unsigned int, defaultp > uvec3
 3 components vector of unsigned integer numbers. More...
 
typedef vec< 4, unsigned int, defaultp > uvec4
 4 components vector of unsigned integer numbers. More...
 
typedef vec< 2, float, defaultp > vec2
 2 components vector of single-precision floating-point numbers. More...
 
typedef vec< 3, float, defaultp > vec3
 3 components vector of single-precision floating-point numbers. More...
 
typedef vec< 4, float, defaultp > vec4
 4 components vector of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Vector types of two to four components with an exhaustive set of operators.

+

Typedef Documentation

+ +

◆ bvec2

+ +
+
+ + + + +
typedef vec< 2, bool, defaultp > bvec2
+
+ +

2 components vector of boolean.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_bool2.hpp.

+ +
+
+ +

◆ bvec3

+ +
+
+ + + + +
typedef vec< 3, bool, defaultp > bvec3
+
+ +

3 components vector of boolean.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_bool3.hpp.

+ +
+
+ +

◆ bvec4

+ +
+
+ + + + +
typedef vec< 4, bool, defaultp > bvec4
+
+ +

4 components vector of boolean.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_bool4.hpp.

+ +
+
+ +

◆ dvec2

+ +
+
+ + + + +
typedef vec< 2, f64, defaultp > dvec2
+
+ +

2 components vector of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_double2.hpp.

+ +
+
+ +

◆ dvec3

+ +
+
+ + + + +
typedef vec< 3, f64, defaultp > dvec3
+
+ +

3 components vector of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_double3.hpp.

+ +
+
+ +

◆ dvec4

+ +
+
+ + + + +
typedef vec< 4, f64, defaultp > dvec4
+
+ +

4 components vector of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_double4.hpp.

+ +
+
+ +

◆ ivec2

+ +
+
+ + + + +
typedef vec< 2, int, defaultp > ivec2
+
+ +

2 components vector of signed integer numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_int2.hpp.

+ +
+
+ +

◆ ivec3

+ +
+
+ + + + +
typedef vec< 3, int, defaultp > ivec3
+
+ +

3 components vector of signed integer numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_int3.hpp.

+ +
+
+ +

◆ ivec4

+ +
+
+ + + + +
typedef vec< 4, int, defaultp > ivec4
+
+ +

4 components vector of signed integer numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_int4.hpp.

+ +
+
+ +

◆ uvec2

+ +
+
+ + + + +
typedef vec< 2, uint, defaultp > uvec2
+
+ +

2 components vector of unsigned integer numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_uint2.hpp.

+ +
+
+ +

◆ uvec3

+ +
+
+ + + + +
typedef vec< 3, uint, defaultp > uvec3
+
+ +

3 components vector of unsigned integer numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_uint3.hpp.

+ +
+
+ +

◆ uvec4

+ +
+
+ + + + +
typedef vec< 4, uint, defaultp > uvec4
+
+ +

4 components vector of unsigned integer numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_uint4.hpp.

+ +
+
+ +

◆ vec2

+ +
+
+ + + + +
typedef vec< 2, float, defaultp > vec2
+
+ +

2 components vector of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_float2.hpp.

+ +
+
+ +

◆ vec3

+ +
+
+ + + + +
typedef vec< 3, float, defaultp > vec3
+
+ +

3 components vector of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_float3.hpp.

+ +
+
+ +

◆ vec4

+ +
+
+ + + + +
typedef vec< 4, float, defaultp > vec4
+
+ +

4 components vector of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+ +

Definition at line 15 of file vector_float4.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00900.html b/include/glm/doc/api/a00900.html new file mode 100644 index 0000000..8230c2b --- /dev/null +++ b/include/glm/doc/api/a00900.html @@ -0,0 +1,746 @@ + + + + + + + +1.0.2 API documentation: Vector types with precision qualifiers + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Vector types with precision qualifiers
+
+
+ +

Vector types with precision qualifiers which may result in various precision in term of ULPs. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef vec< 2, bool, highp > highp_bvec2
 2 components vector of high qualifier bool numbers. More...
 
typedef vec< 3, bool, highp > highp_bvec3
 3 components vector of high qualifier bool numbers. More...
 
typedef vec< 4, bool, highp > highp_bvec4
 4 components vector of high qualifier bool numbers. More...
 
typedef vec< 2, double, highp > highp_dvec2
 2 components vector of high double-qualifier floating-point numbers. More...
 
typedef vec< 3, double, highp > highp_dvec3
 3 components vector of high double-qualifier floating-point numbers. More...
 
typedef vec< 4, double, highp > highp_dvec4
 4 components vector of high double-qualifier floating-point numbers. More...
 
typedef vec< 2, float, highp > highp_vec2
 2 components vector of high single-qualifier floating-point numbers. More...
 
typedef vec< 3, float, highp > highp_vec3
 3 components vector of high single-qualifier floating-point numbers. More...
 
typedef vec< 4, float, highp > highp_vec4
 4 components vector of high single-qualifier floating-point numbers. More...
 
typedef vec< 2, bool, lowp > lowp_bvec2
 2 components vector of low qualifier bool numbers. More...
 
typedef vec< 3, bool, lowp > lowp_bvec3
 3 components vector of low qualifier bool numbers. More...
 
typedef vec< 4, bool, lowp > lowp_bvec4
 4 components vector of low qualifier bool numbers. More...
 
typedef vec< 2, double, lowp > lowp_dvec2
 2 components vector of low double-qualifier floating-point numbers. More...
 
typedef vec< 3, double, lowp > lowp_dvec3
 3 components vector of low double-qualifier floating-point numbers. More...
 
typedef vec< 4, double, lowp > lowp_dvec4
 4 components vector of low double-qualifier floating-point numbers. More...
 
typedef vec< 2, float, lowp > lowp_vec2
 2 components vector of low single-qualifier floating-point numbers. More...
 
typedef vec< 3, float, lowp > lowp_vec3
 3 components vector of low single-qualifier floating-point numbers. More...
 
typedef vec< 4, float, lowp > lowp_vec4
 4 components vector of low single-qualifier floating-point numbers. More...
 
typedef vec< 2, bool, mediump > mediump_bvec2
 2 components vector of medium qualifier bool numbers. More...
 
typedef vec< 3, bool, mediump > mediump_bvec3
 3 components vector of medium qualifier bool numbers. More...
 
typedef vec< 4, bool, mediump > mediump_bvec4
 4 components vector of medium qualifier bool numbers. More...
 
typedef vec< 2, double, mediump > mediump_dvec2
 2 components vector of medium double-qualifier floating-point numbers. More...
 
typedef vec< 3, double, mediump > mediump_dvec3
 3 components vector of medium double-qualifier floating-point numbers. More...
 
typedef vec< 4, double, mediump > mediump_dvec4
 4 components vector of medium double-qualifier floating-point numbers. More...
 
typedef vec< 2, float, mediump > mediump_vec2
 2 components vector of medium single-qualifier floating-point numbers. More...
 
typedef vec< 3, float, mediump > mediump_vec3
 3 components vector of medium single-qualifier floating-point numbers. More...
 
typedef vec< 4, float, mediump > mediump_vec4
 4 components vector of medium single-qualifier floating-point numbers. More...
 
+

Detailed Description

+

Vector types with precision qualifiers which may result in various precision in term of ULPs.

+

GLSL allows defining qualifiers for particular variables. With OpenGL's GLSL, these qualifiers have no effect; they are there for compatibility, with OpenGL ES's GLSL, these qualifiers do have an effect.

+

C++ has no language equivalent to qualifier qualifiers. So GLM provides the next-best thing: a number of typedefs that use a particular qualifier.

+

None of these types make any guarantees about the actual qualifier used.

+

Typedef Documentation

+ +

◆ highp_bvec2

+ +
+
+ + + + +
typedef vec< 2, bool, highp > highp_bvec2
+
+ +

2 components vector of high qualifier bool numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file vector_bool2_precision.hpp.

+ +
+
+ +

◆ highp_bvec3

+ +
+
+ + + + +
typedef vec< 3, bool, highp > highp_bvec3
+
+ +

3 components vector of high qualifier bool numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file vector_bool3_precision.hpp.

+ +
+
+ +

◆ highp_bvec4

+ +
+
+ + + + +
typedef vec< 4, bool, highp > highp_bvec4
+
+ +

4 components vector of high qualifier bool numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file vector_bool4_precision.hpp.

+ +
+
+ +

◆ highp_dvec2

+ +
+
+ + + + +
typedef vec< 2, f64, highp > highp_dvec2
+
+ +

2 components vector of high double-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file vector_double2_precision.hpp.

+ +
+
+ +

◆ highp_dvec3

+ +
+
+ + + + +
typedef vec< 3, f64, highp > highp_dvec3
+
+ +

3 components vector of high double-qualifier floating-point numbers.

+

There is no guarantee on the actual qualifier.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 17 of file vector_double3_precision.hpp.

+ +
+
+ +

◆ highp_dvec4

+ +
+
+ + + + +
typedef vec< 4, f64, highp > highp_dvec4
+
+ +

4 components vector of high double-qualifier floating-point numbers.

+

There is no guarantee on the actual qualifier.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 18 of file vector_double4_precision.hpp.

+ +
+
+ +

◆ highp_vec2

+ +
+
+ + + + +
typedef vec< 2, float, highp > highp_vec2
+
+ +

2 components vector of high single-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file vector_float2_precision.hpp.

+ +
+
+ +

◆ highp_vec3

+ +
+
+ + + + +
typedef vec< 3, float, highp > highp_vec3
+
+ +

3 components vector of high single-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file vector_float3_precision.hpp.

+ +
+
+ +

◆ highp_vec4

+ +
+
+ + + + +
typedef vec< 4, float, highp > highp_vec4
+
+ +

4 components vector of high single-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file vector_float4_precision.hpp.

+ +
+
+ +

◆ lowp_bvec2

+ +
+
+ + + + +
typedef vec< 2, bool, lowp > lowp_bvec2
+
+ +

2 components vector of low qualifier bool numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file vector_bool2_precision.hpp.

+ +
+
+ +

◆ lowp_bvec3

+ +
+
+ + + + +
typedef vec< 3, bool, lowp > lowp_bvec3
+
+ +

3 components vector of low qualifier bool numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file vector_bool3_precision.hpp.

+ +
+
+ +

◆ lowp_bvec4

+ +
+
+ + + + +
typedef vec< 4, bool, lowp > lowp_bvec4
+
+ +

4 components vector of low qualifier bool numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file vector_bool4_precision.hpp.

+ +
+
+ +

◆ lowp_dvec2

+ +
+
+ + + + +
typedef vec< 2, f64, lowp > lowp_dvec2
+
+ +

2 components vector of low double-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file vector_double2_precision.hpp.

+ +
+
+ +

◆ lowp_dvec3

+ +
+
+ + + + +
typedef vec< 3, f64, lowp > lowp_dvec3
+
+ +

3 components vector of low double-qualifier floating-point numbers.

+

There is no guarantee on the actual qualifier.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 31 of file vector_double3_precision.hpp.

+ +
+
+ +

◆ lowp_dvec4

+ +
+
+ + + + +
typedef vec< 4, f64, lowp > lowp_dvec4
+
+ +

4 components vector of low double-qualifier floating-point numbers.

+

There is no guarantee on the actual qualifier.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 32 of file vector_double4_precision.hpp.

+ +
+
+ +

◆ lowp_vec2

+ +
+
+ + + + +
typedef vec< 2, float, lowp > lowp_vec2
+
+ +

2 components vector of low single-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file vector_float2_precision.hpp.

+ +
+
+ +

◆ lowp_vec3

+ +
+
+ + + + +
typedef vec< 3, float, lowp > lowp_vec3
+
+ +

3 components vector of low single-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file vector_float3_precision.hpp.

+ +
+
+ +

◆ lowp_vec4

+ +
+
+ + + + +
typedef vec< 4, float, lowp > lowp_vec4
+
+ +

4 components vector of low single-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file vector_float4_precision.hpp.

+ +
+
+ +

◆ mediump_bvec2

+ +
+
+ + + + +
typedef vec< 2, bool, mediump > mediump_bvec2
+
+ +

2 components vector of medium qualifier bool numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file vector_bool2_precision.hpp.

+ +
+
+ +

◆ mediump_bvec3

+ +
+
+ + + + +
typedef vec< 3, bool, mediump > mediump_bvec3
+
+ +

3 components vector of medium qualifier bool numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file vector_bool3_precision.hpp.

+ +
+
+ +

◆ mediump_bvec4

+ +
+
+ + + + +
typedef vec< 4, bool, mediump > mediump_bvec4
+
+ +

4 components vector of medium qualifier bool numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file vector_bool4_precision.hpp.

+ +
+
+ +

◆ mediump_dvec2

+ +
+
+ + + + +
typedef vec< 2, f64, mediump > mediump_dvec2
+
+ +

2 components vector of medium double-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file vector_double2_precision.hpp.

+ +
+
+ +

◆ mediump_dvec3

+ +
+
+ + + + +
typedef vec< 3, f64, mediump > mediump_dvec3
+
+ +

3 components vector of medium double-qualifier floating-point numbers.

+

There is no guarantee on the actual qualifier.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 24 of file vector_double3_precision.hpp.

+ +
+
+ +

◆ mediump_dvec4

+ +
+
+ + + + +
typedef vec< 4, f64, mediump > mediump_dvec4
+
+ +

4 components vector of medium double-qualifier floating-point numbers.

+

There is no guarantee on the actual qualifier.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 25 of file vector_double4_precision.hpp.

+ +
+
+ +

◆ mediump_vec2

+ +
+
+ + + + +
typedef vec< 2, float, mediump > mediump_vec2
+
+ +

2 components vector of medium single-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file vector_float2_precision.hpp.

+ +
+
+ +

◆ mediump_vec3

+ +
+
+ + + + +
typedef vec< 3, float, mediump > mediump_vec3
+
+ +

3 components vector of medium single-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file vector_float3_precision.hpp.

+ +
+
+ +

◆ mediump_vec4

+ +
+
+ + + + +
typedef vec< 4, float, mediump > mediump_vec4
+
+ +

4 components vector of medium single-qualifier floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.5 Vectors
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file vector_float4_precision.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00901.html b/include/glm/doc/api/a00901.html new file mode 100644 index 0000000..74657a2 --- /dev/null +++ b/include/glm/doc/api/a00901.html @@ -0,0 +1,617 @@ + + + + + + + +1.0.2 API documentation: Matrix types + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Matrix types
+
+
+ +

Matrix types of with C columns and R rows where C and R are values between 2 to 4 included. These types have exhaustive sets of operators. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, double, defaultp > dmat2
 2 columns of 2 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 2, 2, double, defaultp > dmat2x2
 2 columns of 2 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 2, 3, double, defaultp > dmat2x3
 2 columns of 3 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 2, 4, double, defaultp > dmat2x4
 2 columns of 4 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 3, 3, double, defaultp > dmat3
 3 columns of 3 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 3, 2, double, defaultp > dmat3x2
 3 columns of 2 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 3, 3, double, defaultp > dmat3x3
 3 columns of 3 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 3, 4, double, defaultp > dmat3x4
 3 columns of 4 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 4, 4, double, defaultp > dmat4
 4 columns of 4 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 4, 2, double, defaultp > dmat4x2
 4 columns of 2 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 4, 3, double, defaultp > dmat4x3
 4 columns of 3 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 4, 4, double, defaultp > dmat4x4
 4 columns of 4 components matrix of double-precision floating-point numbers. More...
 
typedef mat< 2, 2, float, defaultp > mat2
 2 columns of 2 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 2, 2, float, defaultp > mat2x2
 2 columns of 2 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 2, 3, float, defaultp > mat2x3
 2 columns of 3 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 2, 4, float, defaultp > mat2x4
 2 columns of 4 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 3, 3, float, defaultp > mat3
 3 columns of 3 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 3, 2, float, defaultp > mat3x2
 3 columns of 2 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 3, 3, float, defaultp > mat3x3
 3 columns of 3 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 3, 4, float, defaultp > mat3x4
 3 columns of 4 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 4, 2, float, defaultp > mat4x2
 4 columns of 2 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 4, 3, float, defaultp > mat4x3
 4 columns of 3 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 4, 4, float, defaultp > mat4x4
 4 columns of 4 components matrix of single-precision floating-point numbers. More...
 
typedef mat< 4, 4, float, defaultp > mat4
 4 columns of 4 components matrix of single-precision floating-point numbers. More...
 
+

Detailed Description

+

Matrix types of with C columns and R rows where C and R are values between 2 to 4 included. These types have exhaustive sets of operators.

+

Typedef Documentation

+ +

◆ dmat2

+ +
+
+ + + + +
typedef mat< 2, 2, f64, defaultp > dmat2
+
+ +

2 columns of 2 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 20 of file matrix_double2x2.hpp.

+ +
+
+ +

◆ dmat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, double, defaultp > dmat2x2
+
+ +

2 columns of 2 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_double2x2.hpp.

+ +
+
+ +

◆ dmat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, double, defaultp > dmat2x3
+
+ +

2 columns of 3 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_double2x3.hpp.

+ +
+
+ +

◆ dmat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, double, defaultp > dmat2x4
+
+ +

2 columns of 4 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_double2x4.hpp.

+ +
+
+ +

◆ dmat3

+ +
+
+ + + + +
typedef mat< 3, 3, f64, defaultp > dmat3
+
+ +

3 columns of 3 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 20 of file matrix_double3x3.hpp.

+ +
+
+ +

◆ dmat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, double, defaultp > dmat3x2
+
+ +

3 columns of 2 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_double3x2.hpp.

+ +
+
+ +

◆ dmat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, double, defaultp > dmat3x3
+
+ +

3 columns of 3 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_double3x3.hpp.

+ +
+
+ +

◆ dmat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, double, defaultp > dmat3x4
+
+ +

3 columns of 4 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_double3x4.hpp.

+ +
+
+ +

◆ dmat4

+ +
+
+ + + + +
typedef mat< 4, 4, f64, defaultp > dmat4
+
+ +

4 columns of 4 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 20 of file matrix_double4x4.hpp.

+ +
+
+ +

◆ dmat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, double, defaultp > dmat4x2
+
+ +

4 columns of 2 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_double4x2.hpp.

+ +
+
+ +

◆ dmat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, double, defaultp > dmat4x3
+
+ +

4 columns of 3 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_double4x3.hpp.

+ +
+
+ +

◆ dmat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, double, defaultp > dmat4x4
+
+ +

4 columns of 4 components matrix of double-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_double4x4.hpp.

+ +
+
+ +

◆ mat2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, defaultp > mat2
+
+ +

2 columns of 2 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 20 of file matrix_float2x2.hpp.

+ +
+
+ +

◆ mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, defaultp > mat2x2
+
+ +

2 columns of 2 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_float2x2.hpp.

+ +
+
+ +

◆ mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, defaultp > mat2x3
+
+ +

2 columns of 3 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_float2x3.hpp.

+ +
+
+ +

◆ mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, defaultp > mat2x4
+
+ +

2 columns of 4 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_float2x4.hpp.

+ +
+
+ +

◆ mat3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, defaultp > mat3
+
+ +

3 columns of 3 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 20 of file matrix_float3x3.hpp.

+ +
+
+ +

◆ mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, defaultp > mat3x2
+
+ +

3 columns of 2 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_float3x2.hpp.

+ +
+
+ +

◆ mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, defaultp > mat3x3
+
+ +

3 columns of 3 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_float3x3.hpp.

+ +
+
+ +

◆ mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, defaultp > mat3x4
+
+ +

3 columns of 4 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_float3x4.hpp.

+ +
+
+ +

◆ mat4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, defaultp > mat4
+
+ +

4 columns of 4 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 20 of file matrix_float4x4.hpp.

+ +
+
+ +

◆ mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, defaultp > mat4x2
+
+ +

4 columns of 2 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_float4x2.hpp.

+ +
+
+ +

◆ mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, defaultp > mat4x3
+
+ +

4 columns of 3 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_float4x3.hpp.

+ +
+
+ +

◆ mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, defaultp > mat4x4
+
+ +

4 columns of 4 components matrix of single-precision floating-point numbers.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+ +

Definition at line 15 of file matrix_float4x4.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00902.html b/include/glm/doc/api/a00902.html new file mode 100644 index 0000000..8bf24bd --- /dev/null +++ b/include/glm/doc/api/a00902.html @@ -0,0 +1,1820 @@ + + + + + + + +1.0.2 API documentation: Matrix types with precision qualifiers + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Matrix types with precision qualifiers
+
+
+ +

Matrix types with precision qualifiers which may result in various precision in term of ULPs. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, double, highp > highp_dmat2
 2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, highp > highp_dmat2x2
 2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, double, highp > highp_dmat2x3
 2 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, double, highp > highp_dmat2x4
 2 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, highp > highp_dmat3
 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, double, highp > highp_dmat3x2
 3 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, highp > highp_dmat3x3
 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, double, highp > highp_dmat3x4
 3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, highp > highp_dmat4
 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 2, double, highp > highp_dmat4x2
 4 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, double, highp > highp_dmat4x3
 4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, highp > highp_dmat4x4
 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, highp > highp_mat2
 2 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, highp > highp_mat2x2
 2 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, float, highp > highp_mat2x3
 2 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, float, highp > highp_mat2x4
 2 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, highp > highp_mat3
 3 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, float, highp > highp_mat3x2
 3 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, highp > highp_mat3x3
 3 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, float, highp > highp_mat3x4
 3 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, highp > highp_mat4
 4 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 2, float, highp > highp_mat4x2
 4 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, float, highp > highp_mat4x3
 4 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, highp > highp_mat4x4
 4 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, lowp > lowp_dmat2
 2 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, lowp > lowp_dmat2x2
 2 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, double, lowp > lowp_dmat2x3
 2 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, double, lowp > lowp_dmat2x4
 2 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, lowp > lowp_dmat3
 3 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, double, lowp > lowp_dmat3x2
 3 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, lowp > lowp_dmat3x3
 3 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, double, lowp > lowp_dmat3x4
 3 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, lowp > lowp_dmat4
 4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 2, double, lowp > lowp_dmat4x2
 4 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, double, lowp > lowp_dmat4x3
 4 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, lowp > lowp_dmat4x4
 4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, lowp > lowp_mat2
 2 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, lowp > lowp_mat2x2
 2 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, float, lowp > lowp_mat2x3
 2 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, float, lowp > lowp_mat2x4
 2 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, lowp > lowp_mat3
 3 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, float, lowp > lowp_mat3x2
 3 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, lowp > lowp_mat3x3
 3 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, float, lowp > lowp_mat3x4
 3 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, lowp > lowp_mat4
 4 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 2, float, lowp > lowp_mat4x2
 4 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, float, lowp > lowp_mat4x3
 4 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, lowp > lowp_mat4x4
 4 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, mediump > mediump_dmat2
 2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, double, mediump > mediump_dmat2x2
 2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, double, mediump > mediump_dmat2x3
 2 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, double, mediump > mediump_dmat2x4
 2 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, mediump > mediump_dmat3
 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, double, mediump > mediump_dmat3x2
 3 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, double, mediump > mediump_dmat3x3
 3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, double, mediump > mediump_dmat3x4
 3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, mediump > mediump_dmat4
 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 2, double, mediump > mediump_dmat4x2
 4 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, double, mediump > mediump_dmat4x3
 4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, double, mediump > mediump_dmat4x4
 4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, mediump > mediump_mat2
 2 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 2, float, mediump > mediump_mat2x2
 2 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 3, float, mediump > mediump_mat2x3
 2 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 2, 4, float, mediump > mediump_mat2x4
 2 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, mediump > mediump_mat3
 3 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 2, float, mediump > mediump_mat3x2
 3 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 3, float, mediump > mediump_mat3x3
 3 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 3, 4, float, mediump > mediump_mat3x4
 3 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, mediump > mediump_mat4
 4 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 2, float, mediump > mediump_mat4x2
 4 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 3, float, mediump > mediump_mat4x3
 4 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
typedef mat< 4, 4, float, mediump > mediump_mat4x4
 4 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs. More...
 
+

Detailed Description

+

Matrix types with precision qualifiers which may result in various precision in term of ULPs.

+

GLSL allows defining qualifiers for particular variables. With OpenGL's GLSL, these qualifiers have no effect; they are there for compatibility, with OpenGL ES's GLSL, these qualifiers do have an effect.

+

C++ has no language equivalent to qualifier qualifiers. So GLM provides the next-best thing: a number of typedefs that use a particular qualifier.

+

None of these types make any guarantees about the actual qualifier used.

+

Typedef Documentation

+ +

◆ highp_dmat2

+ +
+
+ + + + +
typedef mat< 2, 2, f64, highp > highp_dmat2
+
+ +

2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_double2x2_precision.hpp.

+ +
+
+ +

◆ highp_dmat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, double, highp > highp_dmat2x2
+
+ +

2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 46 of file matrix_double2x2_precision.hpp.

+ +
+
+ +

◆ highp_dmat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, double, highp > highp_dmat2x3
+
+ +

2 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_double2x3_precision.hpp.

+ +
+
+ +

◆ highp_dmat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, double, highp > highp_dmat2x4
+
+ +

2 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_double2x4_precision.hpp.

+ +
+
+ +

◆ highp_dmat3

+ +
+
+ + + + +
typedef mat< 3, 3, f64, highp > highp_dmat3
+
+ +

3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_double3x3_precision.hpp.

+ +
+
+ +

◆ highp_dmat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, double, highp > highp_dmat3x2
+
+ +

3 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_double3x2_precision.hpp.

+ +
+
+ +

◆ highp_dmat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, double, highp > highp_dmat3x3
+
+ +

3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 46 of file matrix_double3x3_precision.hpp.

+ +
+
+ +

◆ highp_dmat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, double, highp > highp_dmat3x4
+
+ +

3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_double3x4_precision.hpp.

+ +
+
+ +

◆ highp_dmat4

+ +
+
+ + + + +
typedef mat< 4, 4, f64, highp > highp_dmat4
+
+ +

4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_double4x4_precision.hpp.

+ +
+
+ +

◆ highp_dmat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, double, highp > highp_dmat4x2
+
+ +

4 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_double4x2_precision.hpp.

+ +
+
+ +

◆ highp_dmat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, double, highp > highp_dmat4x3
+
+ +

4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_double4x3_precision.hpp.

+ +
+
+ +

◆ highp_dmat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, double, highp > highp_dmat4x4
+
+ +

4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 46 of file matrix_double4x4_precision.hpp.

+ +
+
+ +

◆ highp_mat2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, highp > highp_mat2
+
+ +

2 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_float2x2_precision.hpp.

+ +
+
+ +

◆ highp_mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, highp > highp_mat2x2
+
+ +

2 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 46 of file matrix_float2x2_precision.hpp.

+ +
+
+ +

◆ highp_mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, highp > highp_mat2x3
+
+ +

2 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_float2x3_precision.hpp.

+ +
+
+ +

◆ highp_mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, highp > highp_mat2x4
+
+ +

2 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_float2x4_precision.hpp.

+ +
+
+ +

◆ highp_mat3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, highp > highp_mat3
+
+ +

3 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_float3x3_precision.hpp.

+ +
+
+ +

◆ highp_mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, highp > highp_mat3x2
+
+ +

3 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_float3x2_precision.hpp.

+ +
+
+ +

◆ highp_mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, highp > highp_mat3x3
+
+ +

3 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 46 of file matrix_float3x3_precision.hpp.

+ +
+
+ +

◆ highp_mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, highp > highp_mat3x4
+
+ +

3 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_float3x4_precision.hpp.

+ +
+
+ +

◆ highp_mat4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, highp > highp_mat4
+
+ +

4 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_float4x4_precision.hpp.

+ +
+
+ +

◆ highp_mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, highp > highp_mat4x2
+
+ +

4 columns of 2 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_float4x2_precision.hpp.

+ +
+
+ +

◆ highp_mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, highp > highp_mat4x3
+
+ +

4 columns of 3 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 28 of file matrix_float4x3_precision.hpp.

+ +
+
+ +

◆ highp_mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, highp > highp_mat4x4
+
+ +

4 columns of 4 components matrix of single-precision floating-point numbers using high precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 46 of file matrix_float4x4_precision.hpp.

+ +
+
+ +

◆ lowp_dmat2

+ +
+
+ + + + +
typedef mat< 2, 2, f64, lowp > lowp_dmat2
+
+ +

2 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_double2x2_precision.hpp.

+ +
+
+ +

◆ lowp_dmat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, double, lowp > lowp_dmat2x2
+
+ +

2 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 34 of file matrix_double2x2_precision.hpp.

+ +
+
+ +

◆ lowp_dmat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, double, lowp > lowp_dmat2x3
+
+ +

2 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_double2x3_precision.hpp.

+ +
+
+ +

◆ lowp_dmat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, double, lowp > lowp_dmat2x4
+
+ +

2 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_double2x4_precision.hpp.

+ +
+
+ +

◆ lowp_dmat3

+ +
+
+ + + + +
typedef mat< 3, 3, f64, lowp > lowp_dmat3
+
+ +

3 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_double3x3_precision.hpp.

+ +
+
+ +

◆ lowp_dmat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, double, lowp > lowp_dmat3x2
+
+ +

3 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_double3x2_precision.hpp.

+ +
+
+ +

◆ lowp_dmat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, double, lowp > lowp_dmat3x3
+
+ +

3 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 34 of file matrix_double3x3_precision.hpp.

+ +
+
+ +

◆ lowp_dmat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, double, lowp > lowp_dmat3x4
+
+ +

3 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_double3x4_precision.hpp.

+ +
+
+ +

◆ lowp_dmat4

+ +
+
+ + + + +
typedef mat< 4, 4, f64, lowp > lowp_dmat4
+
+ +

4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_double4x4_precision.hpp.

+ +
+
+ +

◆ lowp_dmat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, double, lowp > lowp_dmat4x2
+
+ +

4 columns of 2 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_double4x2_precision.hpp.

+ +
+
+ +

◆ lowp_dmat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, double, lowp > lowp_dmat4x3
+
+ +

4 columns of 3 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_double4x3_precision.hpp.

+ +
+
+ +

◆ lowp_dmat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, double, lowp > lowp_dmat4x4
+
+ +

4 columns of 4 components matrix of double-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 34 of file matrix_double4x4_precision.hpp.

+ +
+
+ +

◆ lowp_mat2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, lowp > lowp_mat2
+
+ +

2 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_float2x2_precision.hpp.

+ +
+
+ +

◆ lowp_mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, lowp > lowp_mat2x2
+
+ +

2 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 34 of file matrix_float2x2_precision.hpp.

+ +
+
+ +

◆ lowp_mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, lowp > lowp_mat2x3
+
+ +

2 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_float2x3_precision.hpp.

+ +
+
+ +

◆ lowp_mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, lowp > lowp_mat2x4
+
+ +

2 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_float2x4_precision.hpp.

+ +
+
+ +

◆ lowp_mat3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, lowp > lowp_mat3
+
+ +

3 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_float3x3_precision.hpp.

+ +
+
+ +

◆ lowp_mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, lowp > lowp_mat3x2
+
+ +

3 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_float3x2_precision.hpp.

+ +
+
+ +

◆ lowp_mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, lowp > lowp_mat3x3
+
+ +

3 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 34 of file matrix_float3x3_precision.hpp.

+ +
+
+ +

◆ lowp_mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, lowp > lowp_mat3x4
+
+ +

3 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_float3x4_precision.hpp.

+ +
+
+ +

◆ lowp_mat4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, lowp > lowp_mat4
+
+ +

4 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_float4x4_precision.hpp.

+ +
+
+ +

◆ lowp_mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, lowp > lowp_mat4x2
+
+ +

4 columns of 2 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_float4x2_precision.hpp.

+ +
+
+ +

◆ lowp_mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, lowp > lowp_mat4x3
+
+ +

4 columns of 3 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 16 of file matrix_float4x3_precision.hpp.

+ +
+
+ +

◆ lowp_mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, lowp > lowp_mat4x4
+
+ +

4 columns of 4 components matrix of single-precision floating-point numbers using low precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 34 of file matrix_float4x4_precision.hpp.

+ +
+
+ +

◆ mediump_dmat2

+ +
+
+ + + + +
typedef mat< 2, 2, f64, mediump > mediump_dmat2
+
+ +

2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_double2x2_precision.hpp.

+ +
+
+ +

◆ mediump_dmat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, double, mediump > mediump_dmat2x2
+
+ +

2 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 40 of file matrix_double2x2_precision.hpp.

+ +
+
+ +

◆ mediump_dmat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, double, mediump > mediump_dmat2x3
+
+ +

2 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_double2x3_precision.hpp.

+ +
+
+ +

◆ mediump_dmat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, double, mediump > mediump_dmat2x4
+
+ +

2 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_double2x4_precision.hpp.

+ +
+
+ +

◆ mediump_dmat3

+ +
+
+ + + + +
typedef mat< 3, 3, f64, mediump > mediump_dmat3
+
+ +

3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_double3x3_precision.hpp.

+ +
+
+ +

◆ mediump_dmat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, double, mediump > mediump_dmat3x2
+
+ +

3 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_double3x2_precision.hpp.

+ +
+
+ +

◆ mediump_dmat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, double, mediump > mediump_dmat3x3
+
+ +

3 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 40 of file matrix_double3x3_precision.hpp.

+ +
+
+ +

◆ mediump_dmat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, double, mediump > mediump_dmat3x4
+
+ +

3 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_double3x4_precision.hpp.

+ +
+
+ +

◆ mediump_dmat4

+ +
+
+ + + + +
typedef mat< 4, 4, f64, mediump > mediump_dmat4
+
+ +

4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_double4x4_precision.hpp.

+ +
+
+ +

◆ mediump_dmat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, double, mediump > mediump_dmat4x2
+
+ +

4 columns of 2 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_double4x2_precision.hpp.

+ +
+
+ +

◆ mediump_dmat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, double, mediump > mediump_dmat4x3
+
+ +

4 columns of 3 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_double4x3_precision.hpp.

+ +
+
+ +

◆ mediump_dmat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, double, mediump > mediump_dmat4x4
+
+ +

4 columns of 4 components matrix of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 40 of file matrix_double4x4_precision.hpp.

+ +
+
+ +

◆ mediump_mat2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, mediump > mediump_mat2
+
+ +

2 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_float2x2_precision.hpp.

+ +
+
+ +

◆ mediump_mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, mediump > mediump_mat2x2
+
+ +

2 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 40 of file matrix_float2x2_precision.hpp.

+ +
+
+ +

◆ mediump_mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, mediump > mediump_mat2x3
+
+ +

2 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_float2x3_precision.hpp.

+ +
+
+ +

◆ mediump_mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, mediump > mediump_mat2x4
+
+ +

2 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_float2x4_precision.hpp.

+ +
+
+ +

◆ mediump_mat3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, mediump > mediump_mat3
+
+ +

3 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_float3x3_precision.hpp.

+ +
+
+ +

◆ mediump_mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, mediump > mediump_mat3x2
+
+ +

3 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_float3x2_precision.hpp.

+ +
+
+ +

◆ mediump_mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, mediump > mediump_mat3x3
+
+ +

3 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 40 of file matrix_float3x3_precision.hpp.

+ +
+
+ +

◆ mediump_mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, mediump > mediump_mat3x4
+
+ +

3 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_float3x4_precision.hpp.

+ +
+
+ +

◆ mediump_mat4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, mediump > mediump_mat4
+
+ +

4 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_float4x4_precision.hpp.

+ +
+
+ +

◆ mediump_mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, mediump > mediump_mat4x2
+
+ +

4 columns of 2 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_float4x2_precision.hpp.

+ +
+
+ +

◆ mediump_mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, mediump > mediump_mat4x3
+
+ +

4 columns of 3 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 22 of file matrix_float4x3_precision.hpp.

+ +
+
+ +

◆ mediump_mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, mediump > mediump_mat4x4
+
+ +

4 columns of 4 components matrix of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.

+
See also
GLSL 4.20.8 specification, section 4.1.6 Matrices
+
+GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier
+ +

Definition at line 40 of file matrix_float4x4_precision.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00903.html b/include/glm/doc/api/a00903.html new file mode 100644 index 0000000..0c1e47c --- /dev/null +++ b/include/glm/doc/api/a00903.html @@ -0,0 +1,256 @@ + + + + + + + +1.0.2 API documentation: Stable extensions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Stable extensions
+
+
+ +

Additional features not specified by GLSL specification. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Modules

 GLM_EXT_matrix_clip_space
 
 GLM_EXT_matrix_common
 
 GLM_EXT_matrix_int2x2
 
 GLM_EXT_matrix_int2x2_sized
 
 GLM_EXT_matrix_int2x3
 
 GLM_EXT_matrix_int2x3_sized
 
 GLM_EXT_matrix_int2x4
 
 GLM_EXT_matrix_int2x4_sized
 
 GLM_EXT_matrix_int3x2
 
 GLM_EXT_matrix_int3x2_sized
 
 GLM_EXT_matrix_int3x3
 
 GLM_EXT_matrix_int3x3_sized
 
 GLM_EXT_matrix_int3x4
 
 GLM_EXT_matrix_int3x4_sized
 
 GLM_EXT_matrix_int4x2
 
 GLM_EXT_matrix_int4x2_sized
 
 GLM_EXT_matrix_int4x3
 
 GLM_EXT_matrix_int4x3_sized
 
 GLM_EXT_matrix_int4x4
 
 GLM_EXT_matrix_int4x4_sized
 
 GLM_EXT_matrix_integer
 
 GLM_EXT_matrix_projection
 
 GLM_EXT_matrix_relational
 
 GLM_EXT_matrix_transform
 
 GLM_EXT_matrix_uint2x2
 
 GLM_EXT_matrix_uint2x2_sized
 
 GLM_EXT_matrix_uint2x3
 
 GLM_EXT_matrix_uint2x3_sized
 
 GLM_EXT_matrix_int2x4
 
 GLM_EXT_matrix_uint2x4_sized
 
 GLM_EXT_matrix_uint3x2
 
 GLM_EXT_matrix_uint3x2_sized
 
 GLM_EXT_matrix_uint3x3
 
 GLM_EXT_matrix_uint3x3_sized
 
 GLM_EXT_matrix_uint3x4
 
 GLM_EXT_matrix_uint3x4_sized
 
 GLM_EXT_matrix_uint4x2
 
 GLM_EXT_matrix_uint4x2_sized
 
 GLM_EXT_matrix_uint4x3
 
 GLM_EXT_matrix_uint4x3_sized
 
 GLM_EXT_matrix_uint4x4
 
 GLM_EXT_matrix_uint4x4_sized
 
 GLM_EXT_quaternion_common
 
 GLM_EXT_quaternion_double
 
 GLM_EXT_quaternion_double_precision
 
 GLM_EXT_quaternion_exponential
 
 GLM_EXT_quaternion_float
 
 GLM_EXT_quaternion_float_precision
 
 GLM_EXT_quaternion_geometric
 
 GLM_EXT_quaternion_relational
 
 GLM_EXT_quaternion_transform
 
 GLM_EXT_quaternion_trigonometric
 
 GLM_EXT_scalar_common
 
 GLM_EXT_scalar_constants
 
 GLM_EXT_scalar_int_sized
 
 GLM_EXT_scalar_integer
 
 GLM_EXT_scalar_packing
 
 GLM_EXT_scalar_reciprocal
 
 GLM_EXT_scalar_relational
 
 GLM_EXT_scalar_uint_sized
 
 GLM_EXT_scalar_ulp
 
 GLM_EXT_vector_bool1
 
 GLM_EXT_vector_bool1_precision
 
 GLM_EXT_vector_common
 
 GLM_EXT_vector_double1
 
 GLM_EXT_vector_double1_precision
 
 GLM_EXT_vector_float1
 
 GLM_EXT_vector_float1_precision
 
 GLM_EXT_vector_int1
 
 GLM_EXT_vector_int1_sized
 
 GLM_EXT_vector_int2_sized
 
 GLM_EXT_vector_int3_sized
 
 GLM_EXT_vector_int4_sized
 
 GLM_EXT_vector_integer
 
 GLM_EXT_vector_packing
 
 GLM_EXT_vector_reciprocal
 
 GLM_EXT_vector_relational
 
 GLM_EXT_vector_uint1
 
 GLM_EXT_vector_uint1_sized
 
 GLM_EXT_vector_uint2_sized
 
 GLM_EXT_vector_uint3_sized
 
 GLM_EXT_vector_uint4_sized
 
 GLM_EXT_vector_ulp
 
+

Detailed Description

+

Additional features not specified by GLSL specification.

+

EXT extensions are fully tested and documented.

+

Even if it's highly unrecommended, it's possible to include all the extensions at once by including <glm/ext.hpp>. Otherwise, each extension needs to be included a specific file.

+
+ + + + diff --git a/include/glm/doc/api/a00904.html b/include/glm/doc/api/a00904.html new file mode 100644 index 0000000..50da3c7 --- /dev/null +++ b/include/glm/doc/api/a00904.html @@ -0,0 +1,131 @@ + + + + + + + +1.0.2 API documentation: Recommended extensions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Recommended extensions
+
+
+ +

Additional features not specified by GLSL specification. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Modules

 GLM_GTC_bitfield
 
 GLM_GTC_color_space
 
 GLM_GTC_constants
 
 GLM_GTC_epsilon
 
 GLM_GTC_integer
 Allow to perform bit operations on integer values.
 
 GLM_GTC_matrix_access
 
 GLM_GTC_matrix_integer
 
 GLM_GTC_matrix_inverse
 
 GLM_GTC_matrix_transform
 
 GLM_GTC_noise
 
 GLM_GTC_packing
 
 GLM_GTC_quaternion
 
 GLM_GTC_random
 
 GLM_GTC_reciprocal
 
 GLM_GTC_round
 
 GLM_GTC_type_aligned
 
 GLM_GTC_type_precision
 
 GLM_GTC_type_ptr
 
 GLM_GTC_ulp
 
 GLM_GTC_vec1
 
+

Detailed Description

+

Additional features not specified by GLSL specification.

+

GTC extensions aim to be stable with tests and documentation.

+

Even if it's highly unrecommended, it's possible to include all the extensions at once by including <glm/ext.hpp>. Otherwise, each extension needs to be included a specific file.

+
+ + + + diff --git a/include/glm/doc/api/a00905.html b/include/glm/doc/api/a00905.html new file mode 100644 index 0000000..94abe75 --- /dev/null +++ b/include/glm/doc/api/a00905.html @@ -0,0 +1,226 @@ + + + + + + + +1.0.2 API documentation: Experimental extensions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Experimental extensions
+
+
+ +

Experimental features not specified by GLSL specification. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Modules

 GLM_GTX_associated_min_max
 Min and max functions that return associated values not the compared ones.
 
 GLM_GTX_bit
 
 GLM_GTX_closest_point
 
 GLM_GTX_color_encoding
 Allow to perform bit operations on integer values.
 
 GLM_GTX_color_space
 
 GLM_GTX_color_space_YCoCg
 
 GLM_GTX_common
 Provide functions to increase the compatibility with Cg and HLSL languages.
 
 GLM_GTX_compatibility
 
 GLM_GTX_component_wise
 
 GLM_GTX_dual_quaternion
 
 GLM_GTX_easing
 
 GLM_GTX_euler_angles
 
 GLM_GTX_extend
 
 GLM_GTX_extended_min_max
 
 GLM_GTX_exterior_product
 Allow to perform bit operations on integer values.
 
 GLM_GTX_fast_exponential
 
 GLM_GTX_fast_square_root
 
 GLM_GTX_fast_trigonometry
 
 GLM_GTX_functions
 
 GLM_GTX_gradient_paint
 
 GLM_GTX_handed_coordinate_space
 
 GLM_GTX_hash
 
 GLM_GTX_integer
 
 GLM_GTX_intersect
 
 GLM_GTX_io
 
 GLM_GTX_iteration
 
 GLM_GTX_log_base
 
 GLM_GTX_matrix_cross_product
 
 GLM_GTX_matrix_decompose
 
 GLM_GTX_matrix_factorisation
 
 GLM_GTX_matrix_interpolation
 
 GLM_GTX_matrix_major_storage
 
 GLM_GTX_matrix_operation
 
 GLM_GTX_matrix_query
 
 GLM_GTX_matrix_transform_2d
 
 GLM_GTX_mixed_producte
 
 GLM_GTX_norm
 
 GLM_GTX_normal
 
 GLM_GTX_normalize_dot
 
 GLM_GTX_number_precision
 
 GLM_GTX_optimum_pow
 
 GLM_GTX_orthonormalize
 
 GLM_GTX_pca
 
 GLM_GTX_perpendicular
 
 GLM_GTX_polar_coordinates
 
 GLM_GTX_projection
 
 GLM_GTX_quaternion
 
 GLM_GTX_range
 
 GLM_GTX_raw_data
 
 GLM_GTX_rotate_normalized_axis
 
 GLM_GTX_rotate_vector
 
 GLM_GTX_scalar_multiplication
 
 GLM_GTX_scalar_relational
 
 GLM_GTX_spline
 
 GLM_GTX_std_based_type
 
 GLM_GTX_string_cast
 
 GLM_GTX_structured_bindings
 
 GLM_GTX_texture
 
 GLM_GTX_transform
 
 GLM_GTX_transform2
 
 GLM_GTX_type_aligned
 
 GLM_GTX_type_trait
 
 GLM_GTX_vec_swizzle
 
 GLM_GTX_vector_angle
 
 GLM_GTX_vector_query
 
 GLM_GTX_wrap
 
+

Detailed Description

+

Experimental features not specified by GLSL specification.

+

Experimental extensions are useful functions and types, but the development of their API and functionality is not necessarily stable. They can change substantially between versions. Backwards compatibility is not much of an issue for them.

+

Even if it's highly unrecommended, it's possible to include all the extensions at once by including <glm/ext.hpp>. Otherwise, each extension needs to be included a specific file.

+
+ + + + diff --git a/include/glm/doc/api/a00906.html b/include/glm/doc/api/a00906.html new file mode 100644 index 0000000..46c5bd3 --- /dev/null +++ b/include/glm/doc/api/a00906.html @@ -0,0 +1,1276 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_bitfield + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_bitfield
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

GLM_FUNC_DECL glm::u8vec2 bitfieldDeinterleave (glm::uint16 x)
 Deinterleaves the bits of x. More...
 
GLM_FUNC_DECL glm::u16vec2 bitfieldDeinterleave (glm::uint32 x)
 Deinterleaves the bits of x. More...
 
GLM_FUNC_DECL glm::u32vec2 bitfieldDeinterleave (glm::uint64 x)
 Deinterleaves the bits of x. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType bitfieldFillOne (genIUType Value, int FirstBit, int BitCount)
 Set to 1 a range of bits. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldFillOne (vec< L, T, Q > const &Value, int FirstBit, int BitCount)
 Set to 1 a range of bits. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType bitfieldFillZero (genIUType Value, int FirstBit, int BitCount)
 Set to 0 a range of bits. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldFillZero (vec< L, T, Q > const &Value, int FirstBit, int BitCount)
 Set to 0 a range of bits. More...
 
GLM_FUNC_DECL int32 bitfieldInterleave (int16 x, int16 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL int64 bitfieldInterleave (int16 x, int16 y, int16 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL int64 bitfieldInterleave (int16 x, int16 y, int16 z, int16 w)
 Interleaves the bits of x, y, z and w. More...
 
GLM_FUNC_DECL int64 bitfieldInterleave (int32 x, int32 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL int64 bitfieldInterleave (int32 x, int32 y, int32 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL int16 bitfieldInterleave (int8 x, int8 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL int32 bitfieldInterleave (int8 x, int8 y, int8 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL int32 bitfieldInterleave (int8 x, int8 y, int8 z, int8 w)
 Interleaves the bits of x, y, z and w. More...
 
GLM_FUNC_DECL uint32 bitfieldInterleave (u16vec2 const &v)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (u32vec2 const &v)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint16 bitfieldInterleave (u8vec2 const &v)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint32 bitfieldInterleave (uint16 x, uint16 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (uint16 x, uint16 y, uint16 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (uint16 x, uint16 y, uint16 z, uint16 w)
 Interleaves the bits of x, y, z and w. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (uint32 x, uint32 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint64 bitfieldInterleave (uint32 x, uint32 y, uint32 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL uint16 bitfieldInterleave (uint8 x, uint8 y)
 Interleaves the bits of x and y. More...
 
GLM_FUNC_DECL uint32 bitfieldInterleave (uint8 x, uint8 y, uint8 z)
 Interleaves the bits of x, y and z. More...
 
GLM_FUNC_DECL uint32 bitfieldInterleave (uint8 x, uint8 y, uint8 z, uint8 w)
 Interleaves the bits of x, y, z and w. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType bitfieldRotateLeft (genIUType In, int Shift)
 Rotate all bits to the left. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldRotateLeft (vec< L, T, Q > const &In, int Shift)
 Rotate all bits to the left. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType bitfieldRotateRight (genIUType In, int Shift)
 Rotate all bits to the right. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldRotateRight (vec< L, T, Q > const &In, int Shift)
 Rotate all bits to the right. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType mask (genIUType Bits)
 Build a mask of 'count' bits. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > mask (vec< L, T, Q > const &v)
 Build a mask of 'count' bits. More...
 
+

Detailed Description

+

Include <glm/gtc/bitfield.hpp> to use the features of this extension.

+

Allow to perform bit operations on integer values

+

Function Documentation

+ +

◆ bitfieldDeinterleave() [1/3]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL glm::u8vec2 glm::bitfieldDeinterleave (glm::uint16 x)
+
+ +

Deinterleaves the bits of x.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldDeinterleave() [2/3]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL glm::u16vec2 glm::bitfieldDeinterleave (glm::uint32 x)
+
+ +

Deinterleaves the bits of x.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldDeinterleave() [3/3]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL glm::u32vec2 glm::bitfieldDeinterleave (glm::uint64 x)
+
+ +

Deinterleaves the bits of x.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldFillOne() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genIUType glm::bitfieldFillOne (genIUType Value,
int FirstBit,
int BitCount 
)
+
+ +

Set to 1 a range of bits.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldFillOne() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::bitfieldFillOne (vec< L, T, Q > const & Value,
int FirstBit,
int BitCount 
)
+
+ +

Set to 1 a range of bits.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned and unsigned integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldFillZero() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genIUType glm::bitfieldFillZero (genIUType Value,
int FirstBit,
int BitCount 
)
+
+ +

Set to 0 a range of bits.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldFillZero() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::bitfieldFillZero (vec< L, T, Q > const & Value,
int FirstBit,
int BitCount 
)
+
+ +

Set to 0 a range of bits.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned and unsigned integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [1/19]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int32 glm::bitfieldInterleave (int16 x,
int16 y 
)
+
+ +

Interleaves the bits of x and y.

+

The first bit is the first bit of x followed by the first bit of y. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [2/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int64 glm::bitfieldInterleave (int16 x,
int16 y,
int16 z 
)
+
+ +

Interleaves the bits of x, y and z.

+

The first bit is the first bit of x followed by the first bit of y and the first bit of z. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [3/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int64 glm::bitfieldInterleave (int16 x,
int16 y,
int16 z,
int16 w 
)
+
+ +

Interleaves the bits of x, y, z and w.

+

The first bit is the first bit of x followed by the first bit of y, the first bit of z and finally the first bit of w. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [4/19]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int64 glm::bitfieldInterleave (int32 x,
int32 y 
)
+
+ +

Interleaves the bits of x and y.

+

The first bit is the first bit of x followed by the first bit of y. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [5/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int64 glm::bitfieldInterleave (int32 x,
int32 y,
int32 z 
)
+
+ +

Interleaves the bits of x, y and z.

+

The first bit is the first bit of x followed by the first bit of y and the first bit of z. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [6/19]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int16 glm::bitfieldInterleave (int8 x,
int8 y 
)
+
+ +

Interleaves the bits of x and y.

+

The first bit is the first bit of x followed by the first bit of y. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [7/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int32 glm::bitfieldInterleave (int8 x,
int8 y,
int8 z 
)
+
+ +

Interleaves the bits of x, y and z.

+

The first bit is the first bit of x followed by the first bit of y and the first bit of z. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [8/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int32 glm::bitfieldInterleave (int8 x,
int8 y,
int8 z,
int8 w 
)
+
+ +

Interleaves the bits of x, y, z and w.

+

The first bit is the first bit of x followed by the first bit of y, the first bit of z and finally the first bit of w. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [9/19]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint32 glm::bitfieldInterleave (u16vec2 const & v)
+
+ +

Interleaves the bits of x and y.

+

The first bit is the first bit of v.x followed by the first bit of v.y. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [10/19]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint64 glm::bitfieldInterleave (u32vec2 const & v)
+
+ +

Interleaves the bits of x and y.

+

The first bit is the first bit of v.x followed by the first bit of v.y. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [11/19]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::bitfieldInterleave (u8vec2 const & v)
+
+ +

Interleaves the bits of x and y.

+

The first bit is the first bit of v.x followed by the first bit of v.y. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [12/19]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint32 glm::bitfieldInterleave (uint16 x,
uint16 y 
)
+
+ +

Interleaves the bits of x and y.

+

The first bit is the first bit of x followed by the first bit of y. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [13/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint64 glm::bitfieldInterleave (uint16 x,
uint16 y,
uint16 z 
)
+
+ +

Interleaves the bits of x, y and z.

+

The first bit is the first bit of x followed by the first bit of y and the first bit of z. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [14/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint64 glm::bitfieldInterleave (uint16 x,
uint16 y,
uint16 z,
uint16 w 
)
+
+ +

Interleaves the bits of x, y, z and w.

+

The first bit is the first bit of x followed by the first bit of y, the first bit of z and finally the first bit of w. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [15/19]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint64 glm::bitfieldInterleave (uint32 x,
uint32 y 
)
+
+ +

Interleaves the bits of x and y.

+

The first bit is the first bit of x followed by the first bit of y. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [16/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint64 glm::bitfieldInterleave (uint32 x,
uint32 y,
uint32 z 
)
+
+ +

Interleaves the bits of x, y and z.

+

The first bit is the first bit of x followed by the first bit of y and the first bit of z. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [17/19]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint16 glm::bitfieldInterleave (uint8 x,
uint8 y 
)
+
+ +

Interleaves the bits of x and y.

+

The first bit is the first bit of x followed by the first bit of y. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [18/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint32 glm::bitfieldInterleave (uint8 x,
uint8 y,
uint8 z 
)
+
+ +

Interleaves the bits of x, y and z.

+

The first bit is the first bit of x followed by the first bit of y and the first bit of z. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldInterleave() [19/19]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint32 glm::bitfieldInterleave (uint8 x,
uint8 y,
uint8 z,
uint8 w 
)
+
+ +

Interleaves the bits of x, y, z and w.

+

The first bit is the first bit of x followed by the first bit of y, the first bit of z and finally the first bit of w. The other bits are interleaved following the previous sequence.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldRotateLeft() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genIUType glm::bitfieldRotateLeft (genIUType In,
int Shift 
)
+
+ +

Rotate all bits to the left.

+

All the bits dropped in the left side are inserted back on the right side.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldRotateLeft() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::bitfieldRotateLeft (vec< L, T, Q > const & In,
int Shift 
)
+
+ +

Rotate all bits to the left.

+

All the bits dropped in the left side are inserted back on the right side.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned and unsigned integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldRotateRight() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genIUType glm::bitfieldRotateRight (genIUType In,
int Shift 
)
+
+ +

Rotate all bits to the right.

+

All the bits dropped in the right side are inserted back on the left side.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ bitfieldRotateRight() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::bitfieldRotateRight (vec< L, T, Q > const & In,
int Shift 
)
+
+ +

Rotate all bits to the right.

+

All the bits dropped in the right side are inserted back on the left side.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned and unsigned integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ mask() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genIUType glm::mask (genIUType Bits)
+
+ +

Build a mask of 'count' bits.

+
See also
GLM_GTC_bitfield
+ +
+
+ +

◆ mask() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::mask (vec< L, T, Q > const & v)
+
+ +

Build a mask of 'count' bits.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TSigned and unsigned integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_GTC_bitfield
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00907.html b/include/glm/doc/api/a00907.html new file mode 100644 index 0000000..41ad3fb --- /dev/null +++ b/include/glm/doc/api/a00907.html @@ -0,0 +1,177 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_color_space + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_color_space
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > convertLinearToSRGB (vec< L, T, Q > const &ColorLinear)
 Convert a linear color to sRGB color using a standard gamma correction. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > convertLinearToSRGB (vec< L, T, Q > const &ColorLinear, T Gamma)
 Convert a linear color to sRGB color using a custom gamma correction. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > convertSRGBToLinear (vec< L, T, Q > const &ColorSRGB)
 Convert a sRGB color to linear color using a standard gamma correction. More...
 
+template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > convertSRGBToLinear (vec< L, T, Q > const &ColorSRGB, T Gamma)
 Convert a sRGB color to linear color using a custom gamma correction.
 
+

Detailed Description

+

Include <glm/gtc/color_space.hpp> to use the features of this extension.

+

Allow to perform bit operations on integer values

+

Function Documentation

+ +

◆ convertLinearToSRGB() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::convertLinearToSRGB (vec< L, T, Q > const & ColorLinear)
+
+ +

Convert a linear color to sRGB color using a standard gamma correction.

+

IEC 61966-2-1:1999 / Rec. 709 specification https://www.w3.org/Graphics/Color/srgb

+ +
+
+ +

◆ convertLinearToSRGB() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::convertLinearToSRGB (vec< L, T, Q > const & ColorLinear,
Gamma 
)
+
+ +

Convert a linear color to sRGB color using a custom gamma correction.

+

IEC 61966-2-1:1999 / Rec. 709 specification https://www.w3.org/Graphics/Color/srgb

+ +
+
+ +

◆ convertSRGBToLinear()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::convertSRGBToLinear (vec< L, T, Q > const & ColorSRGB)
+
+ +

Convert a sRGB color to linear color using a standard gamma correction.

+

IEC 61966-2-1:1999 / Rec. 709 specification https://www.w3.org/Graphics/Color/srgb

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00908.html b/include/glm/doc/api/a00908.html new file mode 100644 index 0000000..e78f2f9 --- /dev/null +++ b/include/glm/doc/api/a00908.html @@ -0,0 +1,759 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_constants + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_constants
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType e ()
 Return e constant. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType euler ()
 Return Euler's constant. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType four_over_pi ()
 Return 4 / pi. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType golden_ratio ()
 Return the golden ratio constant. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType half_pi ()
 Return pi / 2. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType ln_ln_two ()
 Return ln(ln(2)). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType ln_ten ()
 Return ln(10). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType ln_two ()
 Return ln(2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType one ()
 Return 1. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_pi ()
 Return 1 / pi. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_root_two ()
 Return 1 / sqrt(2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType one_over_two_pi ()
 Return 1 / (pi * 2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType quarter_pi ()
 Return pi / 4. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_five ()
 Return sqrt(5). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_half_pi ()
 Return sqrt(pi / 2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_ln_four ()
 Return sqrt(ln(4)). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_pi ()
 Return square root of pi. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_three ()
 Return sqrt(3). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_two ()
 Return sqrt(2). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType root_two_pi ()
 Return sqrt(2 * pi). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType tau ()
 Return unit-circle circumference, or pi * 2. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType third ()
 Return 1 / 3. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType three_over_two_pi ()
 Return pi / 2 * 3. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType two_over_pi ()
 Return 2 / pi. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType two_over_root_pi ()
 Return 2 / sqrt(pi). More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType two_pi ()
 Return pi * 2. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType two_thirds ()
 Return 2 / 3. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType zero ()
 Return 0. More...
 
+

Detailed Description

+

Include <glm/gtc/constants.hpp> to use the features of this extension.

+

Provide a list of constants and precomputed useful values.

+

Function Documentation

+ +

◆ e()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::e ()
+
+ +

Return e constant.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ euler()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::euler ()
+
+ +

Return Euler's constant.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ four_over_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::four_over_pi ()
+
+ +

Return 4 / pi.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ golden_ratio()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::golden_ratio ()
+
+ +

Return the golden ratio constant.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ half_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::half_pi ()
+
+ +

Return pi / 2.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ ln_ln_two()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::ln_ln_two ()
+
+ +

Return ln(ln(2)).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ ln_ten()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::ln_ten ()
+
+ +

Return ln(10).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ ln_two()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::ln_two ()
+
+ +

Return ln(2).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ one()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::one ()
+
+ +

Return 1.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ one_over_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::one_over_pi ()
+
+ +

Return 1 / pi.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ one_over_root_two()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::one_over_root_two ()
+
+ +

Return 1 / sqrt(2).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ one_over_two_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::one_over_two_pi ()
+
+ +

Return 1 / (pi * 2).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ quarter_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::quarter_pi ()
+
+ +

Return pi / 4.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ root_five()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::root_five ()
+
+ +

Return sqrt(5).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ root_half_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::root_half_pi ()
+
+ +

Return sqrt(pi / 2).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ root_ln_four()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::root_ln_four ()
+
+ +

Return sqrt(ln(4)).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ root_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::root_pi ()
+
+ +

Return square root of pi.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ root_three()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::root_three ()
+
+ +

Return sqrt(3).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ root_two()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::root_two ()
+
+ +

Return sqrt(2).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ root_two_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::root_two_pi ()
+
+ +

Return sqrt(2 * pi).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ tau()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::tau ()
+
+ +

Return unit-circle circumference, or pi * 2.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ third()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::third ()
+
+ +

Return 1 / 3.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ three_over_two_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::three_over_two_pi ()
+
+ +

Return pi / 2 * 3.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ two_over_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::two_over_pi ()
+
+ +

Return 2 / pi.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ two_over_root_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::two_over_root_pi ()
+
+ +

Return 2 / sqrt(pi).

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ two_pi()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::two_pi ()
+
+ +

Return pi * 2.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ two_thirds()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::two_thirds ()
+
+ +

Return 2 / 3.

+
See also
GLM_GTC_constants
+ +
+
+ +

◆ zero()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR genType glm::zero ()
+
+ +

Return 0.

+
See also
GLM_GTC_constants
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00909.html b/include/glm/doc/api/a00909.html new file mode 100644 index 0000000..de9c3e7 --- /dev/null +++ b/include/glm/doc/api/a00909.html @@ -0,0 +1,255 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_epsilon + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_epsilon
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL bool epsilonEqual (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > epsilonEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<typename genType >
GLM_FUNC_DECL bool epsilonNotEqual (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > epsilonNotEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
+

Detailed Description

+

Include <glm/gtc/epsilon.hpp> to use the features of this extension.

+

Comparison functions for a user defined epsilon values.

+

Function Documentation

+ +

◆ epsilonEqual() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::epsilonEqual (genType const & x,
genType const & y,
genType const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+

True if this expression is satisfied.

+
See also
GLM_GTC_epsilon
+ +
+
+ +

◆ epsilonEqual() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::epsilonEqual (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
T const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+

True if this expression is satisfied.

+
See also
GLM_GTC_epsilon
+ +
+
+ +

◆ epsilonNotEqual() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::epsilonNotEqual (genType const & x,
genType const & y,
genType const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| >= epsilon.

+

True if this expression is not satisfied.

+
See also
GLM_GTC_epsilon
+ +
+
+ +

◆ epsilonNotEqual() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::epsilonNotEqual (vec< L, T, Q > const & x,
vec< L, T, Q > const & y,
T const & epsilon 
)
+
+ +

Returns the component-wise comparison of |x - y| < epsilon.

+

True if this expression is not satisfied.

+
See also
GLM_GTC_epsilon
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00910.html b/include/glm/doc/api/a00910.html new file mode 100644 index 0000000..132ef84 --- /dev/null +++ b/include/glm/doc/api/a00910.html @@ -0,0 +1,82 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_integer + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_GTC_integer
+
+
+ +

Allow to perform bit operations on integer values. +More...

+

Allow to perform bit operations on integer values.

+

Include <glm/gtc/integer.hpp> to use the features of this extension.

+
+ + + + diff --git a/include/glm/doc/api/a00911.html b/include/glm/doc/api/a00911.html new file mode 100644 index 0000000..b673545 --- /dev/null +++ b/include/glm/doc/api/a00911.html @@ -0,0 +1,239 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_matrix_access + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_matrix_access
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType::col_type column (genType const &m, length_t index)
 Get a specific column of a matrix. More...
 
template<typename genType >
GLM_FUNC_DECL genType column (genType const &m, length_t index, typename genType::col_type const &x)
 Set a specific column to a matrix. More...
 
template<typename genType >
GLM_FUNC_DECL genType::row_type row (genType const &m, length_t index)
 Get a specific row of a matrix. More...
 
template<typename genType >
GLM_FUNC_DECL genType row (genType const &m, length_t index, typename genType::row_type const &x)
 Set a specific row to a matrix. More...
 
+

Detailed Description

+

Include <glm/gtc/matrix_access.hpp> to use the features of this extension.

+

Defines functions to access rows or columns of a matrix easily.

+

Function Documentation

+ +

◆ column() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType::col_type glm::column (genType const & m,
length_t index 
)
+
+ +

Get a specific column of a matrix.

+
See also
GLM_GTC_matrix_access
+ +
+
+ +

◆ column() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::column (genType const & m,
length_t index,
typename genType::col_type const & x 
)
+
+ +

Set a specific column to a matrix.

+
See also
GLM_GTC_matrix_access
+ +
+
+ +

◆ row() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType::row_type glm::row (genType const & m,
length_t index 
)
+
+ +

Get a specific row of a matrix.

+
See also
GLM_GTC_matrix_access
+ +
+
+ +

◆ row() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::row (genType const & m,
length_t index,
typename genType::row_type const & x 
)
+
+ +

Set a specific row to a matrix.

+
See also
GLM_GTC_matrix_access
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00912.html b/include/glm/doc/api/a00912.html new file mode 100644 index 0000000..b4e9f95 --- /dev/null +++ b/include/glm/doc/api/a00912.html @@ -0,0 +1,1671 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_matrix_integer + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_matrix_integer
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, int, highp > highp_imat2
 High-qualifier signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int, highp > highp_imat2x2
 High-qualifier signed integer 2x2 matrix. More...
 
typedef mat< 2, 3, int, highp > highp_imat2x3
 High-qualifier signed integer 2x3 matrix. More...
 
typedef mat< 2, 4, int, highp > highp_imat2x4
 High-qualifier signed integer 2x4 matrix. More...
 
typedef mat< 3, 3, int, highp > highp_imat3
 High-qualifier signed integer 3x3 matrix. More...
 
typedef mat< 3, 2, int, highp > highp_imat3x2
 High-qualifier signed integer 3x2 matrix. More...
 
typedef mat< 3, 3, int, highp > highp_imat3x3
 High-qualifier signed integer 3x3 matrix. More...
 
typedef mat< 3, 4, int, highp > highp_imat3x4
 High-qualifier signed integer 3x4 matrix. More...
 
typedef mat< 4, 4, int, highp > highp_imat4
 High-qualifier signed integer 4x4 matrix. More...
 
typedef mat< 4, 2, int, highp > highp_imat4x2
 High-qualifier signed integer 4x2 matrix. More...
 
typedef mat< 4, 3, int, highp > highp_imat4x3
 High-qualifier signed integer 4x3 matrix. More...
 
typedef mat< 4, 4, int, highp > highp_imat4x4
 High-qualifier signed integer 4x4 matrix. More...
 
typedef mat< 2, 2, uint, highp > highp_umat2
 High-qualifier unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint, highp > highp_umat2x2
 High-qualifier unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 3, uint, highp > highp_umat2x3
 High-qualifier unsigned integer 2x3 matrix. More...
 
typedef mat< 2, 4, uint, highp > highp_umat2x4
 High-qualifier unsigned integer 2x4 matrix. More...
 
typedef mat< 3, 3, uint, highp > highp_umat3
 High-qualifier unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 2, uint, highp > highp_umat3x2
 High-qualifier unsigned integer 3x2 matrix. More...
 
typedef mat< 3, 3, uint, highp > highp_umat3x3
 High-qualifier unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 4, uint, highp > highp_umat3x4
 High-qualifier unsigned integer 3x4 matrix. More...
 
typedef mat< 4, 4, uint, highp > highp_umat4
 High-qualifier unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 2, uint, highp > highp_umat4x2
 High-qualifier unsigned integer 4x2 matrix. More...
 
typedef mat< 4, 3, uint, highp > highp_umat4x3
 High-qualifier unsigned integer 4x3 matrix. More...
 
typedef mat< 4, 4, uint, highp > highp_umat4x4
 High-qualifier unsigned integer 4x4 matrix. More...
 
typedef mat< 2, 2, int, lowp > lowp_imat2
 Low-qualifier signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int, lowp > lowp_imat2x2
 Low-qualifier signed integer 2x2 matrix. More...
 
typedef mat< 2, 3, int, lowp > lowp_imat2x3
 Low-qualifier signed integer 2x3 matrix. More...
 
typedef mat< 2, 4, int, lowp > lowp_imat2x4
 Low-qualifier signed integer 2x4 matrix. More...
 
typedef mat< 3, 3, int, lowp > lowp_imat3
 Low-qualifier signed integer 3x3 matrix. More...
 
typedef mat< 3, 2, int, lowp > lowp_imat3x2
 Low-qualifier signed integer 3x2 matrix. More...
 
typedef mat< 3, 3, int, lowp > lowp_imat3x3
 Low-qualifier signed integer 3x3 matrix. More...
 
typedef mat< 3, 4, int, lowp > lowp_imat3x4
 Low-qualifier signed integer 3x4 matrix. More...
 
typedef mat< 4, 4, int, lowp > lowp_imat4
 Low-qualifier signed integer 4x4 matrix. More...
 
typedef mat< 4, 2, int, lowp > lowp_imat4x2
 Low-qualifier signed integer 4x2 matrix. More...
 
typedef mat< 4, 3, int, lowp > lowp_imat4x3
 Low-qualifier signed integer 4x3 matrix. More...
 
typedef mat< 4, 4, int, lowp > lowp_imat4x4
 Low-qualifier signed integer 4x4 matrix. More...
 
typedef mat< 2, 2, uint, lowp > lowp_umat2
 Low-qualifier unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint, lowp > lowp_umat2x2
 Low-qualifier unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 3, uint, lowp > lowp_umat2x3
 Low-qualifier unsigned integer 2x3 matrix. More...
 
typedef mat< 2, 4, uint, lowp > lowp_umat2x4
 Low-qualifier unsigned integer 2x4 matrix. More...
 
typedef mat< 3, 3, uint, lowp > lowp_umat3
 Low-qualifier unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 2, uint, lowp > lowp_umat3x2
 Low-qualifier unsigned integer 3x2 matrix. More...
 
typedef mat< 3, 3, uint, lowp > lowp_umat3x3
 Low-qualifier unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 4, uint, lowp > lowp_umat3x4
 Low-qualifier unsigned integer 3x4 matrix. More...
 
typedef mat< 4, 4, uint, lowp > lowp_umat4
 Low-qualifier unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 2, uint, lowp > lowp_umat4x2
 Low-qualifier unsigned integer 4x2 matrix. More...
 
typedef mat< 4, 3, uint, lowp > lowp_umat4x3
 Low-qualifier unsigned integer 4x3 matrix. More...
 
typedef mat< 4, 4, uint, lowp > lowp_umat4x4
 Low-qualifier unsigned integer 4x4 matrix. More...
 
typedef mat< 2, 2, int, mediump > mediump_imat2
 Medium-qualifier signed integer 2x2 matrix. More...
 
typedef mat< 2, 2, int, mediump > mediump_imat2x2
 Medium-qualifier signed integer 2x2 matrix. More...
 
typedef mat< 2, 3, int, mediump > mediump_imat2x3
 Medium-qualifier signed integer 2x3 matrix. More...
 
typedef mat< 2, 4, int, mediump > mediump_imat2x4
 Medium-qualifier signed integer 2x4 matrix. More...
 
typedef mat< 3, 3, int, mediump > mediump_imat3
 Medium-qualifier signed integer 3x3 matrix. More...
 
typedef mat< 3, 2, int, mediump > mediump_imat3x2
 Medium-qualifier signed integer 3x2 matrix. More...
 
typedef mat< 3, 3, int, mediump > mediump_imat3x3
 Medium-qualifier signed integer 3x3 matrix. More...
 
typedef mat< 3, 4, int, mediump > mediump_imat3x4
 Medium-qualifier signed integer 3x4 matrix. More...
 
typedef mat< 4, 4, int, mediump > mediump_imat4
 Medium-qualifier signed integer 4x4 matrix. More...
 
typedef mat< 4, 2, int, mediump > mediump_imat4x2
 Medium-qualifier signed integer 4x2 matrix. More...
 
typedef mat< 4, 3, int, mediump > mediump_imat4x3
 Medium-qualifier signed integer 4x3 matrix. More...
 
typedef mat< 4, 4, int, mediump > mediump_imat4x4
 Medium-qualifier signed integer 4x4 matrix. More...
 
typedef mat< 2, 2, uint, mediump > mediump_umat2
 Medium-qualifier unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 2, uint, mediump > mediump_umat2x2
 Medium-qualifier unsigned integer 2x2 matrix. More...
 
typedef mat< 2, 3, uint, mediump > mediump_umat2x3
 Medium-qualifier unsigned integer 2x3 matrix. More...
 
typedef mat< 2, 4, uint, mediump > mediump_umat2x4
 Medium-qualifier unsigned integer 2x4 matrix. More...
 
typedef mat< 3, 3, uint, mediump > mediump_umat3
 Medium-qualifier unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 2, uint, mediump > mediump_umat3x2
 Medium-qualifier unsigned integer 3x2 matrix. More...
 
typedef mat< 3, 3, uint, mediump > mediump_umat3x3
 Medium-qualifier unsigned integer 3x3 matrix. More...
 
typedef mat< 3, 4, uint, mediump > mediump_umat3x4
 Medium-qualifier unsigned integer 3x4 matrix. More...
 
typedef mat< 4, 4, uint, mediump > mediump_umat4
 Medium-qualifier unsigned integer 4x4 matrix. More...
 
typedef mat< 4, 2, uint, mediump > mediump_umat4x2
 Medium-qualifier unsigned integer 4x2 matrix. More...
 
typedef mat< 4, 3, uint, mediump > mediump_umat4x3
 Medium-qualifier unsigned integer 4x3 matrix. More...
 
typedef mat< 4, 4, uint, mediump > mediump_umat4x4
 Medium-qualifier unsigned integer 4x4 matrix. More...
 
+

Detailed Description

+

Include <glm/gtc/matrix_integer.hpp> to use the features of this extension.

+

Defines a number of matrices with integer types.

+

Typedef Documentation

+ +

◆ highp_imat2

+ +
+
+ + + + +
typedef mat<2, 2, int, highp> highp_imat2
+
+ +

High-qualifier signed integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 37 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ highp_imat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, int, highp > highp_imat2x2
+
+ +

High-qualifier signed integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 814 of file fwd.hpp.

+ +
+
+ +

◆ highp_imat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, int, highp > highp_imat2x3
+
+ +

High-qualifier signed integer 2x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 815 of file fwd.hpp.

+ +
+
+ +

◆ highp_imat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, int, highp > highp_imat2x4
+
+ +

High-qualifier signed integer 2x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 816 of file fwd.hpp.

+ +
+
+ +

◆ highp_imat3

+ +
+
+ + + + +
typedef mat<3, 3, int, highp> highp_imat3
+
+ +

High-qualifier signed integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 41 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ highp_imat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, int, highp > highp_imat3x2
+
+ +

High-qualifier signed integer 3x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 817 of file fwd.hpp.

+ +
+
+ +

◆ highp_imat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, int, highp > highp_imat3x3
+
+ +

High-qualifier signed integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 818 of file fwd.hpp.

+ +
+
+ +

◆ highp_imat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, int, highp > highp_imat3x4
+
+ +

High-qualifier signed integer 3x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 819 of file fwd.hpp.

+ +
+
+ +

◆ highp_imat4

+ +
+
+ + + + +
typedef mat<4, 4, int, highp> highp_imat4
+
+ +

High-qualifier signed integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 45 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ highp_imat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, int, highp > highp_imat4x2
+
+ +

High-qualifier signed integer 4x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 820 of file fwd.hpp.

+ +
+
+ +

◆ highp_imat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, int, highp > highp_imat4x3
+
+ +

High-qualifier signed integer 4x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 821 of file fwd.hpp.

+ +
+
+ +

◆ highp_imat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, int, highp > highp_imat4x4
+
+ +

High-qualifier signed integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 822 of file fwd.hpp.

+ +
+
+ +

◆ highp_umat2

+ +
+
+ + + + +
typedef mat<2, 2, uint, highp> highp_umat2
+
+ +

High-qualifier unsigned integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 186 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ highp_umat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, uint, highp > highp_umat2x2
+
+ +

High-qualifier unsigned integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1021 of file fwd.hpp.

+ +
+
+ +

◆ highp_umat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, uint, highp > highp_umat2x3
+
+ +

High-qualifier unsigned integer 2x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1022 of file fwd.hpp.

+ +
+
+ +

◆ highp_umat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, uint, highp > highp_umat2x4
+
+ +

High-qualifier unsigned integer 2x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1023 of file fwd.hpp.

+ +
+
+ +

◆ highp_umat3

+ +
+
+ + + + +
typedef mat<3, 3, uint, highp> highp_umat3
+
+ +

High-qualifier unsigned integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 190 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ highp_umat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, uint, highp > highp_umat3x2
+
+ +

High-qualifier unsigned integer 3x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1024 of file fwd.hpp.

+ +
+
+ +

◆ highp_umat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, uint, highp > highp_umat3x3
+
+ +

High-qualifier unsigned integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1025 of file fwd.hpp.

+ +
+
+ +

◆ highp_umat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, uint, highp > highp_umat3x4
+
+ +

High-qualifier unsigned integer 3x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1026 of file fwd.hpp.

+ +
+
+ +

◆ highp_umat4

+ +
+
+ + + + +
typedef mat<4, 4, uint, highp> highp_umat4
+
+ +

High-qualifier unsigned integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 194 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ highp_umat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, uint, highp > highp_umat4x2
+
+ +

High-qualifier unsigned integer 4x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1027 of file fwd.hpp.

+ +
+
+ +

◆ highp_umat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, uint, highp > highp_umat4x3
+
+ +

High-qualifier unsigned integer 4x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1028 of file fwd.hpp.

+ +
+
+ +

◆ highp_umat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, uint, highp > highp_umat4x4
+
+ +

High-qualifier unsigned integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1029 of file fwd.hpp.

+ +
+
+ +

◆ lowp_imat2

+ +
+
+ + + + +
typedef mat<2, 2, int, lowp> lowp_imat2
+
+ +

Low-qualifier signed integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 136 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ lowp_imat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, int, lowp > lowp_imat2x2
+
+ +

Low-qualifier signed integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 794 of file fwd.hpp.

+ +
+
+ +

◆ lowp_imat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, int, lowp > lowp_imat2x3
+
+ +

Low-qualifier signed integer 2x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 795 of file fwd.hpp.

+ +
+
+ +

◆ lowp_imat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, int, lowp > lowp_imat2x4
+
+ +

Low-qualifier signed integer 2x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 796 of file fwd.hpp.

+ +
+
+ +

◆ lowp_imat3

+ +
+
+ + + + +
typedef mat<3, 3, int, lowp> lowp_imat3
+
+ +

Low-qualifier signed integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 140 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ lowp_imat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, int, lowp > lowp_imat3x2
+
+ +

Low-qualifier signed integer 3x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 797 of file fwd.hpp.

+ +
+
+ +

◆ lowp_imat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, int, lowp > lowp_imat3x3
+
+ +

Low-qualifier signed integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 798 of file fwd.hpp.

+ +
+
+ +

◆ lowp_imat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, int, lowp > lowp_imat3x4
+
+ +

Low-qualifier signed integer 3x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 799 of file fwd.hpp.

+ +
+
+ +

◆ lowp_imat4

+ +
+
+ + + + +
typedef mat<4, 4, int, lowp> lowp_imat4
+
+ +

Low-qualifier signed integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 144 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ lowp_imat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, int, lowp > lowp_imat4x2
+
+ +

Low-qualifier signed integer 4x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 800 of file fwd.hpp.

+ +
+
+ +

◆ lowp_imat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, int, lowp > lowp_imat4x3
+
+ +

Low-qualifier signed integer 4x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 801 of file fwd.hpp.

+ +
+
+ +

◆ lowp_imat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, int, lowp > lowp_imat4x4
+
+ +

Low-qualifier signed integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 802 of file fwd.hpp.

+ +
+
+ +

◆ lowp_umat2

+ +
+
+ + + + +
typedef mat<2, 2, uint, lowp> lowp_umat2
+
+ +

Low-qualifier unsigned integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 285 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ lowp_umat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, uint, lowp > lowp_umat2x2
+
+ +

Low-qualifier unsigned integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1001 of file fwd.hpp.

+ +
+
+ +

◆ lowp_umat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, uint, lowp > lowp_umat2x3
+
+ +

Low-qualifier unsigned integer 2x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1002 of file fwd.hpp.

+ +
+
+ +

◆ lowp_umat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, uint, lowp > lowp_umat2x4
+
+ +

Low-qualifier unsigned integer 2x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1003 of file fwd.hpp.

+ +
+
+ +

◆ lowp_umat3

+ +
+
+ + + + +
typedef mat<3, 3, uint, lowp> lowp_umat3
+
+ +

Low-qualifier unsigned integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 289 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ lowp_umat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, uint, lowp > lowp_umat3x2
+
+ +

Low-qualifier unsigned integer 3x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1004 of file fwd.hpp.

+ +
+
+ +

◆ lowp_umat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, uint, lowp > lowp_umat3x3
+
+ +

Low-qualifier unsigned integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1005 of file fwd.hpp.

+ +
+
+ +

◆ lowp_umat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, uint, lowp > lowp_umat3x4
+
+ +

Low-qualifier unsigned integer 3x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1006 of file fwd.hpp.

+ +
+
+ +

◆ lowp_umat4

+ +
+
+ + + + +
typedef mat<4, 4, uint, lowp> lowp_umat4
+
+ +

Low-qualifier unsigned integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 293 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ lowp_umat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, uint, lowp > lowp_umat4x2
+
+ +

Low-qualifier unsigned integer 4x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1007 of file fwd.hpp.

+ +
+
+ +

◆ lowp_umat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, uint, lowp > lowp_umat4x3
+
+ +

Low-qualifier unsigned integer 4x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1008 of file fwd.hpp.

+ +
+
+ +

◆ lowp_umat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, uint, lowp > lowp_umat4x4
+
+ +

Low-qualifier unsigned integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1009 of file fwd.hpp.

+ +
+
+ +

◆ mediump_imat2

+ +
+
+ + + + +
typedef mat<2, 2, int, mediump> mediump_imat2
+
+ +

Medium-qualifier signed integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 86 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ mediump_imat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, int, mediump > mediump_imat2x2
+
+ +

Medium-qualifier signed integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 804 of file fwd.hpp.

+ +
+
+ +

◆ mediump_imat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, int, mediump > mediump_imat2x3
+
+ +

Medium-qualifier signed integer 2x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 805 of file fwd.hpp.

+ +
+
+ +

◆ mediump_imat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, int, mediump > mediump_imat2x4
+
+ +

Medium-qualifier signed integer 2x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 806 of file fwd.hpp.

+ +
+
+ +

◆ mediump_imat3

+ +
+
+ + + + +
typedef mat<3, 3, int, mediump> mediump_imat3
+
+ +

Medium-qualifier signed integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 90 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ mediump_imat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, int, mediump > mediump_imat3x2
+
+ +

Medium-qualifier signed integer 3x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 807 of file fwd.hpp.

+ +
+
+ +

◆ mediump_imat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, int, mediump > mediump_imat3x3
+
+ +

Medium-qualifier signed integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 808 of file fwd.hpp.

+ +
+
+ +

◆ mediump_imat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, int, mediump > mediump_imat3x4
+
+ +

Medium-qualifier signed integer 3x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 809 of file fwd.hpp.

+ +
+
+ +

◆ mediump_imat4

+ +
+
+ + + + +
typedef mat<4, 4, int, mediump> mediump_imat4
+
+ +

Medium-qualifier signed integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 94 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ mediump_imat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, int, mediump > mediump_imat4x2
+
+ +

Medium-qualifier signed integer 4x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 810 of file fwd.hpp.

+ +
+
+ +

◆ mediump_imat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, int, mediump > mediump_imat4x3
+
+ +

Medium-qualifier signed integer 4x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 811 of file fwd.hpp.

+ +
+
+ +

◆ mediump_imat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, int, mediump > mediump_imat4x4
+
+ +

Medium-qualifier signed integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 812 of file fwd.hpp.

+ +
+
+ +

◆ mediump_umat2

+ +
+
+ + + + +
typedef mat<2, 2, uint, mediump> mediump_umat2
+
+ +

Medium-qualifier unsigned integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 235 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ mediump_umat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, uint, mediump > mediump_umat2x2
+
+ +

Medium-qualifier unsigned integer 2x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1011 of file fwd.hpp.

+ +
+
+ +

◆ mediump_umat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, uint, mediump > mediump_umat2x3
+
+ +

Medium-qualifier unsigned integer 2x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1012 of file fwd.hpp.

+ +
+
+ +

◆ mediump_umat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, uint, mediump > mediump_umat2x4
+
+ +

Medium-qualifier unsigned integer 2x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1013 of file fwd.hpp.

+ +
+
+ +

◆ mediump_umat3

+ +
+
+ + + + +
typedef mat<3, 3, uint, mediump> mediump_umat3
+
+ +

Medium-qualifier unsigned integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 239 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ mediump_umat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, uint, mediump > mediump_umat3x2
+
+ +

Medium-qualifier unsigned integer 3x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1014 of file fwd.hpp.

+ +
+
+ +

◆ mediump_umat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, uint, mediump > mediump_umat3x3
+
+ +

Medium-qualifier unsigned integer 3x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1015 of file fwd.hpp.

+ +
+
+ +

◆ mediump_umat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, uint, mediump > mediump_umat3x4
+
+ +

Medium-qualifier unsigned integer 3x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1016 of file fwd.hpp.

+ +
+
+ +

◆ mediump_umat4

+ +
+
+ + + + +
typedef mat<4, 4, uint, mediump> mediump_umat4
+
+ +

Medium-qualifier unsigned integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 243 of file gtc/matrix_integer.hpp.

+ +
+
+ +

◆ mediump_umat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, uint, mediump > mediump_umat4x2
+
+ +

Medium-qualifier unsigned integer 4x2 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1017 of file fwd.hpp.

+ +
+
+ +

◆ mediump_umat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, uint, mediump > mediump_umat4x3
+
+ +

Medium-qualifier unsigned integer 4x3 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1018 of file fwd.hpp.

+ +
+
+ +

◆ mediump_umat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, uint, mediump > mediump_umat4x4
+
+ +

Medium-qualifier unsigned integer 4x4 matrix.

+
See also
GLM_GTC_matrix_integer
+ +

Definition at line 1019 of file fwd.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00913.html b/include/glm/doc/api/a00913.html new file mode 100644 index 0000000..0d77df7 --- /dev/null +++ b/include/glm/doc/api/a00913.html @@ -0,0 +1,161 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_matrix_inverse + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_matrix_inverse
+
+
+ + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType affineInverse (genType const &m)
 Fast matrix inverse for affine matrix. More...
 
template<typename genType >
GLM_FUNC_DECL genType inverseTranspose (genType const &m)
 Compute the inverse transpose of a matrix. More...
 
+

Detailed Description

+

Include <glm/gtc/matrix_inverse.hpp> to use the features of this extension.

+

Defines additional matrix inverting functions.

+

Function Documentation

+ +

◆ affineInverse()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::affineInverse (genType const & m)
+
+ +

Fast matrix inverse for affine matrix.

+
Parameters
+ + +
mInput matrix to invert.
+
+
+
Template Parameters
+ + +
genTypeSquared floating-point matrix: half, float or double. Inverse of matrix based of half-qualifier floating point value is highly inaccurate.
+
+
+
See also
GLM_GTC_matrix_inverse
+ +
+
+ +

◆ inverseTranspose()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::inverseTranspose (genType const & m)
+
+ +

Compute the inverse transpose of a matrix.

+
Parameters
+ + +
mInput matrix to invert transpose.
+
+
+
Template Parameters
+ + +
genTypeSquared floating-point matrix: half, float or double. Inverse of matrix based of half-qualifier floating point value is highly inaccurate.
+
+
+
See also
GLM_GTC_matrix_inverse
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00914.html b/include/glm/doc/api/a00914.html new file mode 100644 index 0000000..17a5ffd --- /dev/null +++ b/include/glm/doc/api/a00914.html @@ -0,0 +1,80 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_matrix_transform + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_GTC_matrix_transform
+
+
+

Include <glm/gtc/matrix_transform.hpp> to use the features of this extension.

+

Defines functions that generate common transformation matrices.

+

The matrices generated by this extension use standard OpenGL fixed-function conventions. For example, the lookAt function generates a transform from world space into the specific eye space that the projective matrix functions (perspective, ortho, etc) are designed to expect. The OpenGL compatibility specifications defines the particular layout of this eye space.

+
+ + + + diff --git a/include/glm/doc/api/a00915.html b/include/glm/doc/api/a00915.html new file mode 100644 index 0000000..8467ca3 --- /dev/null +++ b/include/glm/doc/api/a00915.html @@ -0,0 +1,172 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_noise + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T perlin (vec< L, T, Q > const &p)
 Classic perlin noise. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T perlin (vec< L, T, Q > const &p, vec< L, T, Q > const &rep)
 Periodic perlin noise. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T simplex (vec< L, T, Q > const &p)
 Simplex noise. More...
 
+

Detailed Description

+

Include <glm/gtc/noise.hpp> to use the features of this extension.

+

Defines 2D, 3D and 4D procedural noise functions Based on the work of Stefan Gustavson and Ashima Arts on "webgl-noise": https://github.com/ashima/webgl-noise Following Stefan Gustavson's paper "Simplex noise demystified": http://www.itn.liu.se/~stegu/simplexnoise/simplexnoise.pdf

+

Function Documentation

+ +

◆ perlin() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::perlin (vec< L, T, Q > const & p)
+
+ +

Classic perlin noise.

+
See also
GLM_GTC_noise
+ +
+
+ +

◆ perlin() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::perlin (vec< L, T, Q > const & p,
vec< L, T, Q > const & rep 
)
+
+ +

Periodic perlin noise.

+
See also
GLM_GTC_noise
+ +
+
+ +

◆ simplex()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::simplex (vec< L, T, Q > const & p)
+
+ +

Simplex noise.

+
See also
GLM_GTC_noise
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00916.html b/include/glm/doc/api/a00916.html new file mode 100644 index 0000000..579d71d --- /dev/null +++ b/include/glm/doc/api/a00916.html @@ -0,0 +1,2158 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_packing + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_packing
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

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 signless floating-point values. More...
 
GLM_FUNC_DECL uint32 packF3x9_E1x5 (vec3 const &v)
 First, converts the first two components of the normalized floating-point value v into 11-bit signless floating-point values. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, uint16, Q > packHalf (vec< L, float, Q > const &v)
 Returns an unsigned integer vector obtained by converting the components of a floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification. More...
 
GLM_FUNC_DECL uint16 packHalf1x16 (float v)
 Returns an unsigned integer obtained by converting the components of a floating-point scalar to the 16-bit floating-point representation found in the OpenGL Specification, and then packing this 16-bit value into a 16-bit unsigned integer. More...
 
GLM_FUNC_DECL uint64 packHalf4x16 (vec4 const &v)
 Returns an unsigned integer obtained by converting the components of a four-component floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification, and then packing these four 16-bit values into a 64-bit unsigned integer. More...
 
GLM_FUNC_DECL uint32 packI3x10_1x2 (ivec4 const &v)
 Returns an unsigned integer obtained by converting the components of a four-component signed integer vector to the 10-10-10-2-bit signed integer representation found in the OpenGL Specification, and then packing these four values into a 32-bit unsigned integer. More...
 
GLM_FUNC_DECL int packInt2x16 (i16vec2 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
GLM_FUNC_DECL int64 packInt2x32 (i32vec2 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
GLM_FUNC_DECL int16 packInt2x8 (i8vec2 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
GLM_FUNC_DECL int64 packInt4x16 (i16vec4 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
GLM_FUNC_DECL int32 packInt4x8 (i8vec4 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > packRGBM (vec< 3, T, Q > const &rgb)
 Returns an unsigned integer vector obtained by converting the components of a floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification. More...
 
template<typename intType , length_t L, typename floatType , qualifier Q>
GLM_FUNC_DECL vec< L, intType, Q > packSnorm (vec< L, floatType, Q > const &v)
 Convert each component of the normalized floating-point vector into signed integer values. More...
 
GLM_FUNC_DECL uint16 packSnorm1x16 (float v)
 First, converts the normalized floating-point value v into 16-bit integer value. More...
 
GLM_FUNC_DECL uint8 packSnorm1x8 (float s)
 First, converts the normalized floating-point value v into 8-bit integer value. More...
 
GLM_FUNC_DECL uint16 packSnorm2x8 (vec2 const &v)
 First, converts each component of the normalized floating-point value v into 8-bit integer values. More...
 
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 signed integer values. More...
 
GLM_FUNC_DECL uint64 packSnorm4x16 (vec4 const &v)
 First, converts each component of the normalized floating-point value v into 16-bit integer values. More...
 
GLM_FUNC_DECL uint32 packU3x10_1x2 (uvec4 const &v)
 Returns an unsigned integer obtained by converting the components of a four-component unsigned integer vector to the 10-10-10-2-bit unsigned integer representation found in the OpenGL Specification, and then packing these four values into a 32-bit unsigned integer. More...
 
GLM_FUNC_DECL uint packUint2x16 (u16vec2 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
GLM_FUNC_DECL uint64 packUint2x32 (u32vec2 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
GLM_FUNC_DECL uint16 packUint2x8 (u8vec2 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
GLM_FUNC_DECL uint64 packUint4x16 (u16vec4 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
GLM_FUNC_DECL uint32 packUint4x8 (u8vec4 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
template<typename uintType , length_t L, typename floatType , qualifier Q>
GLM_FUNC_DECL vec< L, uintType, Q > packUnorm (vec< L, floatType, Q > const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint16 packUnorm1x16 (float v)
 First, converts the normalized floating-point value v into a 16-bit integer value. More...
 
GLM_FUNC_DECL uint16 packUnorm1x5_1x6_1x5 (vec3 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint8 packUnorm1x8 (float v)
 First, converts the normalized floating-point value v into a 8-bit integer value. More...
 
GLM_FUNC_DECL uint8 packUnorm2x3_1x2 (vec3 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint8 packUnorm2x4 (vec2 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint16 packUnorm2x8 (vec2 const &v)
 First, converts each component of the normalized floating-point value v into 8-bit integer values. More...
 
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 unsigned integer values. More...
 
GLM_FUNC_DECL uint16 packUnorm3x5_1x1 (vec4 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint64 packUnorm4x16 (vec4 const &v)
 First, converts each component of the normalized floating-point value v into 16-bit integer values. More...
 
GLM_FUNC_DECL uint16 packUnorm4x4 (vec4 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
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 one 10-bit signless floating-point value . More...
 
GLM_FUNC_DECL vec3 unpackF3x9_E1x5 (uint32 p)
 First, unpacks a single 32-bit unsigned integer p into two 11-bit signless floating-point values and one 10-bit signless floating-point value . More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, float, Q > unpackHalf (vec< L, uint16, Q > const &p)
 Returns a floating-point vector with components obtained by reinterpreting an integer vector as 16-bit floating-point numbers and converting them to 32-bit floating-point values. More...
 
GLM_FUNC_DECL float unpackHalf1x16 (uint16 v)
 Returns a floating-point scalar with components obtained by unpacking a 16-bit unsigned integer into a 16-bit value, interpreted as a 16-bit floating-point number according to the OpenGL Specification, and converting it to 32-bit floating-point values. More...
 
GLM_FUNC_DECL vec4 unpackHalf4x16 (uint64 p)
 Returns a four-component floating-point vector with components obtained by unpacking a 64-bit unsigned integer into four 16-bit values, interpreting those values as 16-bit floating-point numbers according to the OpenGL Specification, and converting them to 32-bit floating-point values. More...
 
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. More...
 
GLM_FUNC_DECL i16vec2 unpackInt2x16 (int p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL i32vec2 unpackInt2x32 (int64 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL i8vec2 unpackInt2x8 (int16 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL i16vec4 unpackInt4x16 (int64 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL i8vec4 unpackInt4x8 (int32 p)
 Convert a packed integer into an integer vector. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > unpackRGBM (vec< 4, T, Q > const &rgbm)
 Returns a floating-point vector with components obtained by reinterpreting an integer vector as 16-bit floating-point numbers and converting them to 32-bit floating-point values. More...
 
template<typename floatType , length_t L, typename intType , qualifier Q>
GLM_FUNC_DECL vec< L, floatType, Q > unpackSnorm (vec< L, intType, Q > const &v)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL float unpackSnorm1x16 (uint16 p)
 First, unpacks a single 16-bit unsigned integer p into a single 16-bit signed integers. More...
 
GLM_FUNC_DECL float unpackSnorm1x8 (uint8 p)
 First, unpacks a single 8-bit unsigned integer p into a single 8-bit signed integers. More...
 
GLM_FUNC_DECL vec2 unpackSnorm2x8 (uint16 p)
 First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackSnorm3x10_1x2 (uint32 p)
 First, unpacks a single 32-bit unsigned integer p into four 16-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackSnorm4x16 (uint64 p)
 First, unpacks a single 64-bit unsigned integer p into four 16-bit signed integers. More...
 
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. More...
 
GLM_FUNC_DECL u16vec2 unpackUint2x16 (uint p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL u32vec2 unpackUint2x32 (uint64 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL u8vec2 unpackUint2x8 (uint16 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL u16vec4 unpackUint4x16 (uint64 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL u8vec4 unpackUint4x8 (uint32 p)
 Convert a packed integer into an integer vector. More...
 
template<typename floatType , length_t L, typename uintType , qualifier Q>
GLM_FUNC_DECL vec< L, floatType, Q > unpackUnorm (vec< L, uintType, Q > const &v)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL float unpackUnorm1x16 (uint16 p)
 First, unpacks a single 16-bit unsigned integer p into a of 16-bit unsigned integers. More...
 
GLM_FUNC_DECL vec3 unpackUnorm1x5_1x6_1x5 (uint16 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL float unpackUnorm1x8 (uint8 p)
 Convert a single 8-bit integer to a normalized floating-point value. More...
 
GLM_FUNC_DECL vec3 unpackUnorm2x3_1x2 (uint8 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL vec2 unpackUnorm2x4 (uint8 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL vec2 unpackUnorm2x8 (uint16 p)
 First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit unsigned integers. More...
 
GLM_FUNC_DECL vec4 unpackUnorm3x10_1x2 (uint32 p)
 First, unpacks a single 32-bit unsigned integer p into four 16-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackUnorm3x5_1x1 (uint16 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL vec4 unpackUnorm4x16 (uint64 p)
 First, unpacks a single 64-bit unsigned integer p into four 16-bit unsigned integers. More...
 
GLM_FUNC_DECL vec4 unpackUnorm4x4 (uint16 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
+

Detailed Description

+

Include <glm/gtc/packing.hpp> to use the features of this extension.

+

This extension provides a set of function to convert vertors to packed formats.

+

Function Documentation

+ +

◆ packF2x11_1x10()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint32 glm::packF2x11_1x10 (vec3 const & v)
+
+ +

First, converts the first two components of the normalized floating-point value v into 11-bit signless floating-point values.

+

Then, converts the third component of the normalized floating-point value v into a 10-bit signless floating-point value. Then, the results are packed into the returned 32-bit unsigned integer.

+

The first vector component specifies the 11 least-significant bits of the result; the last component specifies the 10 most-significant bits.

+
See also
GLM_GTC_packing
+
+vec3 unpackF2x11_1x10(uint32 const& p)
+ +
+
+ +

◆ packF3x9_E1x5()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint32 glm::packF3x9_E1x5 (vec3 const & v)
+
+ +

First, converts the first two components of the normalized floating-point value v into 11-bit signless floating-point values.

+

Then, converts the third component of the normalized floating-point value v into a 10-bit signless floating-point value. Then, the results are packed into the returned 32-bit unsigned integer.

+

The first vector component specifies the 11 least-significant bits of the result; the last component specifies the 10 most-significant bits.

+

packF3x9_E1x5 allows encoding into RGBE / RGB9E5 format

+
See also
GLM_GTC_packing
+
+vec3 unpackF3x9_E1x5(uint32 const& p)
+ +
+
+ +

◆ packHalf()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, uint16, Q> glm::packHalf (vec< L, float, Q > const & v)
+
+ +

Returns an unsigned integer vector obtained by converting the components of a floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification.

+

The first vector component specifies the 16 least-significant bits of the result; the forth component specifies the 16 most-significant bits.

+
See also
GLM_GTC_packing
+
+vec<L, float, Q> unpackHalf(vec<L, uint16, Q> const& p)
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packHalf1x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::packHalf1x16 (float v)
+
+ +

Returns an unsigned integer obtained by converting the components of a floating-point scalar to the 16-bit floating-point representation found in the OpenGL Specification, and then packing this 16-bit value into a 16-bit unsigned integer.

+
See also
GLM_GTC_packing
+
+uint32 packHalf2x16(vec2 const& v)
+
+uint64 packHalf4x16(vec4 const& v)
+
+GLSL packHalf2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packHalf4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint64 glm::packHalf4x16 (vec4 const & v)
+
+ +

Returns an unsigned integer obtained by converting the components of a four-component floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification, and then packing these four 16-bit values into a 64-bit unsigned integer.

+

The first vector component specifies the 16 least-significant bits of the result; the forth component specifies the 16 most-significant bits.

+
See also
GLM_GTC_packing
+
+uint16 packHalf1x16(float const& v)
+
+uint32 packHalf2x16(vec2 const& v)
+
+GLSL packHalf2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packI3x10_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint32 glm::packI3x10_1x2 (ivec4 const & v)
+
+ +

Returns an unsigned integer obtained by converting the components of a four-component signed integer vector to the 10-10-10-2-bit signed integer representation found in the OpenGL Specification, and then packing these four values into a 32-bit unsigned integer.

+

The first vector component specifies the 10 least-significant bits of the result; the forth component specifies the 2 most-significant bits.

+
See also
GLM_GTC_packing
+
+uint32 packI3x10_1x2(uvec4 const& v)
+
+uint32 packSnorm3x10_1x2(vec4 const& v)
+
+uint32 packUnorm3x10_1x2(vec4 const& v)
+
+ivec4 unpackI3x10_1x2(uint32 const& p)
+ +
+
+ +

◆ packInt2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int glm::packInt2x16 (i16vec2 const & v)
+
+ +

Convert each component from an integer vector into a packed integer.

+
See also
GLM_GTC_packing
+
+i16vec2 unpackInt2x16(int p)
+ +
+
+ +

◆ packInt2x32()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int64 glm::packInt2x32 (i32vec2 const & v)
+
+ +

Convert each component from an integer vector into a packed integer.

+
See also
GLM_GTC_packing
+
+i32vec2 unpackInt2x32(int p)
+ +
+
+ +

◆ packInt2x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int16 glm::packInt2x8 (i8vec2 const & v)
+
+ +

Convert each component from an integer vector into a packed integer.

+
See also
GLM_GTC_packing
+
+i8vec2 unpackInt2x8(int16 p)
+ +
+
+ +

◆ packInt4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int64 glm::packInt4x16 (i16vec4 const & v)
+
+ +

Convert each component from an integer vector into a packed integer.

+
See also
GLM_GTC_packing
+
+i16vec4 unpackInt4x16(int64 p)
+ +
+
+ +

◆ packInt4x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int32 glm::packInt4x8 (i8vec4 const & v)
+
+ +

Convert each component from an integer vector into a packed integer.

+
See also
GLM_GTC_packing
+
+i8vec4 unpackInt4x8(int32 p)
+ +
+
+ +

◆ packRGBM()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::packRGBM (vec< 3, T, Q > const & rgb)
+
+ +

Returns an unsigned integer vector obtained by converting the components of a floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification.

+

The first vector component specifies the 16 least-significant bits of the result; the forth component specifies the 16 most-significant bits.

+
See also
GLM_GTC_packing
+
+vec<3, T, Q> unpackRGBM(vec<4, T, Q> const& p)
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packSnorm()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, intType, Q> glm::packSnorm (vec< L, floatType, Q > const & v)
+
+ +

Convert each component of the normalized floating-point vector into signed integer values.

+
See also
GLM_GTC_packing
+
+vec<L, floatType, Q> unpackSnorm(vec<L, intType, Q> const& p);
+ +
+
+ +

◆ packSnorm1x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::packSnorm1x16 (float v)
+
+ +

First, converts the normalized floating-point value v into 16-bit integer value.

+

Then, the results are packed into the returned 16-bit unsigned integer.

+

The conversion to fixed point is done as follows: packSnorm1x8: round(clamp(s, -1, +1) * 32767.0)

+
See also
GLM_GTC_packing
+
+uint32 packSnorm2x16(vec2 const& v)
+
+uint64 packSnorm4x16(vec4 const& v)
+
+GLSL packSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packSnorm1x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint8 glm::packSnorm1x8 (float s)
+
+ +

First, converts the normalized floating-point value v into 8-bit integer value.

+

Then, the results are packed into the returned 8-bit unsigned integer.

+

The conversion to fixed point is done as follows: packSnorm1x8: round(clamp(s, -1, +1) * 127.0)

+
See also
GLM_GTC_packing
+
+uint16 packSnorm2x8(vec2 const& v)
+
+uint32 packSnorm4x8(vec4 const& v)
+
+GLSL packSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packSnorm2x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::packSnorm2x8 (vec2 const & v)
+
+ +

First, converts each component of the normalized floating-point value v into 8-bit integer values.

+

Then, the results are packed into the returned 16-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packSnorm2x8: round(clamp(c, -1, +1) * 127.0)

+

The first component of the vector will be written to the least significant bits of the output; the last component will be written to the most significant bits.

+
See also
GLM_GTC_packing
+
+uint8 packSnorm1x8(float const& v)
+
+uint32 packSnorm4x8(vec4 const& v)
+
+GLSL packSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packSnorm3x10_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint32 glm::packSnorm3x10_1x2 (vec4 const & v)
+
+ +

First, converts the first three components of the normalized floating-point value v into 10-bit signed integer values.

+

Then, converts the forth component of the normalized floating-point value v into 2-bit signed integer values. Then, the results are packed into the returned 32-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packSnorm3x10_1x2(xyz): round(clamp(c, -1, +1) * 511.0) packSnorm3x10_1x2(w): round(clamp(c, -1, +1) * 1.0)

+

The first vector component specifies the 10 least-significant bits of the result; the forth component specifies the 2 most-significant bits.

+
See also
GLM_GTC_packing
+
+vec4 unpackSnorm3x10_1x2(uint32 const& p)
+
+uint32 packUnorm3x10_1x2(vec4 const& v)
+
+uint32 packU3x10_1x2(uvec4 const& v)
+
+uint32 packI3x10_1x2(ivec4 const& v)
+ +
+
+ +

◆ packSnorm4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint64 glm::packSnorm4x16 (vec4 const & v)
+
+ +

First, converts each component of the normalized floating-point value v into 16-bit integer values.

+

Then, the results are packed into the returned 64-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packSnorm2x8: round(clamp(c, -1, +1) * 32767.0)

+

The first component of the vector will be written to the least significant bits of the output; the last component will be written to the most significant bits.

+
See also
GLM_GTC_packing
+
+uint16 packSnorm1x16(float const& v)
+
+uint32 packSnorm2x16(vec2 const& v)
+
+GLSL packSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packU3x10_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint32 glm::packU3x10_1x2 (uvec4 const & v)
+
+ +

Returns an unsigned integer obtained by converting the components of a four-component unsigned integer vector to the 10-10-10-2-bit unsigned integer representation found in the OpenGL Specification, and then packing these four values into a 32-bit unsigned integer.

+

The first vector component specifies the 10 least-significant bits of the result; the forth component specifies the 2 most-significant bits.

+
See also
GLM_GTC_packing
+
+uint32 packI3x10_1x2(ivec4 const& v)
+
+uint32 packSnorm3x10_1x2(vec4 const& v)
+
+uint32 packUnorm3x10_1x2(vec4 const& v)
+
+ivec4 unpackU3x10_1x2(uint32 const& p)
+ +
+
+ +

◆ packUint2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::packUint2x16 (u16vec2 const & v)
+
+ +

Convert each component from an integer vector into a packed unsigned integer.

+
See also
GLM_GTC_packing
+
+u16vec2 unpackUint2x16(uint p)
+ +
+
+ +

◆ packUint2x32()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint64 glm::packUint2x32 (u32vec2 const & v)
+
+ +

Convert each component from an integer vector into a packed unsigned integer.

+
See also
GLM_GTC_packing
+
+u32vec2 unpackUint2x32(int p)
+ +
+
+ +

◆ packUint2x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::packUint2x8 (u8vec2 const & v)
+
+ +

Convert each component from an integer vector into a packed unsigned integer.

+
See also
GLM_GTC_packing
+
+u8vec2 unpackInt2x8(uint16 p)
+ +
+
+ +

◆ packUint4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint64 glm::packUint4x16 (u16vec4 const & v)
+
+ +

Convert each component from an integer vector into a packed unsigned integer.

+
See also
GLM_GTC_packing
+
+u16vec4 unpackUint4x16(uint64 p)
+ +
+
+ +

◆ packUint4x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint32 glm::packUint4x8 (u8vec4 const & v)
+
+ +

Convert each component from an integer vector into a packed unsigned integer.

+
See also
GLM_GTC_packing
+
+u8vec4 unpackUint4x8(uint32 p)
+ +
+
+ +

◆ packUnorm()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, uintType, Q> glm::packUnorm (vec< L, floatType, Q > const & v)
+
+ +

Convert each component of the normalized floating-point vector into unsigned integer values.

+
See also
GLM_GTC_packing
+
+vec<L, floatType, Q> unpackUnorm(vec<L, intType, Q> const& p);
+ +
+
+ +

◆ packUnorm1x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::packUnorm1x16 (float v)
+
+ +

First, converts the normalized floating-point value v into a 16-bit integer value.

+

Then, the results are packed into the returned 16-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packUnorm1x16: round(clamp(c, 0, +1) * 65535.0)

+
See also
GLM_GTC_packing
+
+uint16 packSnorm1x16(float const& v)
+
+uint64 packSnorm4x16(vec4 const& v)
+
+GLSL packUnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packUnorm1x5_1x6_1x5()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::packUnorm1x5_1x6_1x5 (vec3 const & v)
+
+ +

Convert each component of the normalized floating-point vector into unsigned integer values.

+
See also
GLM_GTC_packing
+
+vec3 unpackUnorm1x5_1x6_1x5(uint16 p)
+ +
+
+ +

◆ packUnorm1x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint8 glm::packUnorm1x8 (float v)
+
+ +

First, converts the normalized floating-point value v into a 8-bit integer value.

+

Then, the results are packed into the returned 8-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packUnorm1x8: round(clamp(c, 0, +1) * 255.0)

+
See also
GLM_GTC_packing
+
+uint16 packUnorm2x8(vec2 const& v)
+
+uint32 packUnorm4x8(vec4 const& v)
+
+GLSL packUnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packUnorm2x3_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint8 glm::packUnorm2x3_1x2 (vec3 const & v)
+
+ +

Convert each component of the normalized floating-point vector into unsigned integer values.

+
See also
GLM_GTC_packing
+
+vec3 unpackUnorm2x3_1x2(uint8 p)
+ +
+
+ +

◆ packUnorm2x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint8 glm::packUnorm2x4 (vec2 const & v)
+
+ +

Convert each component of the normalized floating-point vector into unsigned integer values.

+
See also
GLM_GTC_packing
+
+vec2 unpackUnorm2x4(uint8 p)
+ +
+
+ +

◆ packUnorm2x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::packUnorm2x8 (vec2 const & v)
+
+ +

First, converts each component of the normalized floating-point value v into 8-bit integer values.

+

Then, the results are packed into the returned 16-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packUnorm2x8: round(clamp(c, 0, +1) * 255.0)

+

The first component of the vector will be written to the least significant bits of the output; the last component will be written to the most significant bits.

+
See also
GLM_GTC_packing
+
+uint8 packUnorm1x8(float const& v)
+
+uint32 packUnorm4x8(vec4 const& v)
+
+GLSL packUnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packUnorm3x10_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint32 glm::packUnorm3x10_1x2 (vec4 const & v)
+
+ +

First, converts the first three components of the normalized floating-point value v into 10-bit unsigned integer values.

+

Then, converts the forth component of the normalized floating-point value v into 2-bit signed uninteger values. Then, the results are packed into the returned 32-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packUnorm3x10_1x2(xyz): round(clamp(c, 0, +1) * 1023.0) packUnorm3x10_1x2(w): round(clamp(c, 0, +1) * 3.0)

+

The first vector component specifies the 10 least-significant bits of the result; the forth component specifies the 2 most-significant bits.

+
See also
GLM_GTC_packing
+
+vec4 unpackUnorm3x10_1x2(uint32 const& p)
+
+uint32 packUnorm3x10_1x2(vec4 const& v)
+
+uint32 packU3x10_1x2(uvec4 const& v)
+
+uint32 packI3x10_1x2(ivec4 const& v)
+ +
+
+ +

◆ packUnorm3x5_1x1()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::packUnorm3x5_1x1 (vec4 const & v)
+
+ +

Convert each component of the normalized floating-point vector into unsigned integer values.

+
See also
GLM_GTC_packing
+
+vec4 unpackUnorm3x5_1x1(uint16 p)
+ +
+
+ +

◆ packUnorm4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint64 glm::packUnorm4x16 (vec4 const & v)
+
+ +

First, converts each component of the normalized floating-point value v into 16-bit integer values.

+

Then, the results are packed into the returned 64-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packUnorm4x16: round(clamp(c, 0, +1) * 65535.0)

+

The first component of the vector will be written to the least significant bits of the output; the last component will be written to the most significant bits.

+
See also
GLM_GTC_packing
+
+uint16 packUnorm1x16(float const& v)
+
+uint32 packUnorm2x16(vec2 const& v)
+
+GLSL packUnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packUnorm4x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint16 glm::packUnorm4x4 (vec4 const & v)
+
+ +

Convert each component of the normalized floating-point vector into unsigned integer values.

+
See also
GLM_GTC_packing
+
+vec4 unpackUnorm4x4(uint16 p)
+ +
+
+ +

◆ unpackF2x11_1x10()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec3 glm::unpackF2x11_1x10 (uint32 p)
+
+ +

First, unpacks a single 32-bit unsigned integer p into two 11-bit signless floating-point values and one 10-bit signless floating-point value .

+

Then, each component is converted to a normalized floating-point value to generate the returned three-component vector.

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLM_GTC_packing
+
+uint32 packF2x11_1x10(vec3 const& v)
+ +
+
+ +

◆ unpackF3x9_E1x5()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec3 glm::unpackF3x9_E1x5 (uint32 p)
+
+ +

First, unpacks a single 32-bit unsigned integer p into two 11-bit signless floating-point values and one 10-bit signless floating-point value .

+

Then, each component is converted to a normalized floating-point value to generate the returned three-component vector.

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+

unpackF3x9_E1x5 allows decoding RGBE / RGB9E5 data

+
See also
GLM_GTC_packing
+
+uint32 packF3x9_E1x5(vec3 const& v)
+ +
+
+ +

◆ unpackHalf()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, float, Q> glm::unpackHalf (vec< L, uint16, Q > const & p)
+
+ +

Returns a floating-point vector with components obtained by reinterpreting an integer vector as 16-bit floating-point numbers and converting them to 32-bit floating-point values.

+

The first component of the vector is obtained from the 16 least-significant bits of v; the forth component is obtained from the 16 most-significant bits of v.

+
See also
GLM_GTC_packing
+
+vec<L, uint16, Q> packHalf(vec<L, float, Q> const& v)
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackHalf1x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL float glm::unpackHalf1x16 (uint16 v)
+
+ +

Returns a floating-point scalar with components obtained by unpacking a 16-bit unsigned integer into a 16-bit value, interpreted as a 16-bit floating-point number according to the OpenGL Specification, and converting it to 32-bit floating-point values.

+
See also
GLM_GTC_packing
+
+vec2 unpackHalf2x16(uint32 const& v)
+
+vec4 unpackHalf4x16(uint64 const& v)
+
+GLSL unpackHalf2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackHalf4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec4 glm::unpackHalf4x16 (uint64 p)
+
+ +

Returns a four-component floating-point vector with components obtained by unpacking a 64-bit unsigned integer into four 16-bit values, interpreting those values as 16-bit floating-point numbers according to the OpenGL Specification, and converting them to 32-bit floating-point values.

+

The first component of the vector is obtained from the 16 least-significant bits of v; the forth component is obtained from the 16 most-significant bits of v.

+
See also
GLM_GTC_packing
+
+float unpackHalf1x16(uint16 const& v)
+
+vec2 unpackHalf2x16(uint32 const& v)
+
+GLSL unpackHalf2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackI3x10_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL ivec4 glm::unpackI3x10_1x2 (uint32 p)
+
+ +

Unpacks a single 32-bit unsigned integer p into three 10-bit and one 2-bit signed integers.

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLM_GTC_packing
+
+uint32 packU3x10_1x2(uvec4 const& v)
+
+vec4 unpackSnorm3x10_1x2(uint32 const& p);
+
+uvec4 unpackI3x10_1x2(uint32 const& p);
+ +
+
+ +

◆ unpackInt2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL i16vec2 glm::unpackInt2x16 (int p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+int packInt2x16(i16vec2 const& v)
+ +
+
+ +

◆ unpackInt2x32()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL i32vec2 glm::unpackInt2x32 (int64 p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+int packInt2x16(i32vec2 const& v)
+ +
+
+ +

◆ unpackInt2x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL i8vec2 glm::unpackInt2x8 (int16 p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+int16 packInt2x8(i8vec2 const& v)
+ +
+
+ +

◆ unpackInt4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL i16vec4 glm::unpackInt4x16 (int64 p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+int64 packInt4x16(i16vec4 const& v)
+ +
+
+ +

◆ unpackInt4x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL i8vec4 glm::unpackInt4x8 (int32 p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+int32 packInt2x8(i8vec4 const& v)
+ +
+
+ +

◆ unpackRGBM()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::unpackRGBM (vec< 4, T, Q > const & rgbm)
+
+ +

Returns a floating-point vector with components obtained by reinterpreting an integer vector as 16-bit floating-point numbers and converting them to 32-bit floating-point values.

+

The first component of the vector is obtained from the 16 least-significant bits of v; the forth component is obtained from the 16 most-significant bits of v.

+
See also
GLM_GTC_packing
+
+vec<4, T, Q> packRGBM(vec<3, float, Q> const& v)
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackSnorm()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, floatType, Q> glm::unpackSnorm (vec< L, intType, Q > const & v)
+
+ +

Convert a packed integer to a normalized floating-point vector.

+
See also
GLM_GTC_packing
+
+vec<L, intType, Q> packSnorm(vec<L, floatType, Q> const& v)
+ +
+
+ +

◆ unpackSnorm1x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL float glm::unpackSnorm1x16 (uint16 p)
+
+ +

First, unpacks a single 16-bit unsigned integer p into a single 16-bit signed integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned scalar.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackSnorm1x16: clamp(f / 32767.0, -1, +1)

+
See also
GLM_GTC_packing
+
+vec2 unpackSnorm2x16(uint32 p)
+
+vec4 unpackSnorm4x16(uint64 p)
+
+GLSL unpackSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackSnorm1x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL float glm::unpackSnorm1x8 (uint8 p)
+
+ +

First, unpacks a single 8-bit unsigned integer p into a single 8-bit signed integers.

+

Then, the value is converted to a normalized floating-point value to generate the returned scalar.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackSnorm1x8: clamp(f / 127.0, -1, +1)

+
See also
GLM_GTC_packing
+
+vec2 unpackSnorm2x8(uint16 p)
+
+vec4 unpackSnorm4x8(uint32 p)
+
+GLSL unpackSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackSnorm2x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec2 glm::unpackSnorm2x8 (uint16 p)
+
+ +

First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit signed integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned two-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackSnorm2x8: clamp(f / 127.0, -1, +1)

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLM_GTC_packing
+
+float unpackSnorm1x8(uint8 p)
+
+vec4 unpackSnorm4x8(uint32 p)
+
+GLSL unpackSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackSnorm3x10_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec4 glm::unpackSnorm3x10_1x2 (uint32 p)
+
+ +

First, unpacks a single 32-bit unsigned integer p into four 16-bit signed integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned four-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackSnorm3x10_1x2(xyz): clamp(f / 511.0, -1, +1) unpackSnorm3x10_1x2(w): clamp(f / 511.0, -1, +1)

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLM_GTC_packing
+
+uint32 packSnorm3x10_1x2(vec4 const& v)
+
+vec4 unpackUnorm3x10_1x2(uint32 const& p))
+
+uvec4 unpackI3x10_1x2(uint32 const& p)
+
+uvec4 unpackU3x10_1x2(uint32 const& p)
+ +
+
+ +

◆ unpackSnorm4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec4 glm::unpackSnorm4x16 (uint64 p)
+
+ +

First, unpacks a single 64-bit unsigned integer p into four 16-bit signed integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned four-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackSnorm4x16: clamp(f / 32767.0, -1, +1)

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLM_GTC_packing
+
+float unpackSnorm1x16(uint16 p)
+
+vec2 unpackSnorm2x16(uint32 p)
+
+GLSL unpackSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackU3x10_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uvec4 glm::unpackU3x10_1x2 (uint32 p)
+
+ +

Unpacks a single 32-bit unsigned integer p into three 10-bit and one 2-bit unsigned integers.

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLM_GTC_packing
+
+uint32 packU3x10_1x2(uvec4 const& v)
+
+vec4 unpackSnorm3x10_1x2(uint32 const& p);
+
+uvec4 unpackI3x10_1x2(uint32 const& p);
+ +
+
+ +

◆ unpackUint2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL u16vec2 glm::unpackUint2x16 (uint p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+uint packUint2x16(u16vec2 const& v)
+ +
+
+ +

◆ unpackUint2x32()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL u32vec2 glm::unpackUint2x32 (uint64 p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+int packUint2x16(u32vec2 const& v)
+ +
+
+ +

◆ unpackUint2x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL u8vec2 glm::unpackUint2x8 (uint16 p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+uint16 packInt2x8(u8vec2 const& v)
+ +
+
+ +

◆ unpackUint4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL u16vec4 glm::unpackUint4x16 (uint64 p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+uint64 packUint4x16(u16vec4 const& v)
+ +
+
+ +

◆ unpackUint4x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL u8vec4 glm::unpackUint4x8 (uint32 p)
+
+ +

Convert a packed integer into an integer vector.

+
See also
GLM_GTC_packing
+
+uint32 packUint4x8(u8vec2 const& v)
+ +
+
+ +

◆ unpackUnorm()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, floatType, Q> glm::unpackUnorm (vec< L, uintType, Q > const & v)
+
+ +

Convert a packed integer to a normalized floating-point vector.

+
See also
GLM_GTC_packing
+
+vec<L, intType, Q> packUnorm(vec<L, floatType, Q> const& v)
+ +
+
+ +

◆ unpackUnorm1x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL float glm::unpackUnorm1x16 (uint16 p)
+
+ +

First, unpacks a single 16-bit unsigned integer p into a of 16-bit unsigned integers.

+

Then, the value is converted to a normalized floating-point value to generate the returned scalar.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackUnorm1x16: f / 65535.0

+
See also
GLM_GTC_packing
+
+vec2 unpackUnorm2x16(uint32 p)
+
+vec4 unpackUnorm4x16(uint64 p)
+
+GLSL unpackUnorm2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackUnorm1x5_1x6_1x5()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec3 glm::unpackUnorm1x5_1x6_1x5 (uint16 p)
+
+ +

Convert a packed integer to a normalized floating-point vector.

+
See also
GLM_GTC_packing
+
+uint16 packUnorm1x5_1x6_1x5(vec3 const& v)
+ +
+
+ +

◆ unpackUnorm1x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL float glm::unpackUnorm1x8 (uint8 p)
+
+ +

Convert a single 8-bit integer to a normalized floating-point value.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackUnorm4x8: f / 255.0

+
See also
GLM_GTC_packing
+
+vec2 unpackUnorm2x8(uint16 p)
+
+vec4 unpackUnorm4x8(uint32 p)
+
+GLSL unpackUnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackUnorm2x3_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec3 glm::unpackUnorm2x3_1x2 (uint8 p)
+
+ +

Convert a packed integer to a normalized floating-point vector.

+
See also
GLM_GTC_packing
+
+uint8 packUnorm2x3_1x2(vec3 const& v)
+ +
+
+ +

◆ unpackUnorm2x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec2 glm::unpackUnorm2x4 (uint8 p)
+
+ +

Convert a packed integer to a normalized floating-point vector.

+
See also
GLM_GTC_packing
+
+uint8 packUnorm2x4(vec2 const& v)
+ +
+
+ +

◆ unpackUnorm2x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec2 glm::unpackUnorm2x8 (uint16 p)
+
+ +

First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit unsigned integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned two-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackUnorm4x8: f / 255.0

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLM_GTC_packing
+
+float unpackUnorm1x8(uint8 v)
+
+vec4 unpackUnorm4x8(uint32 p)
+
+GLSL unpackUnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackUnorm3x10_1x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec4 glm::unpackUnorm3x10_1x2 (uint32 p)
+
+ +

First, unpacks a single 32-bit unsigned integer p into four 16-bit signed integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned four-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackSnorm3x10_1x2(xyz): clamp(f / 1023.0, 0, +1) unpackSnorm3x10_1x2(w): clamp(f / 3.0, 0, +1)

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLM_GTC_packing
+
+uint32 packSnorm3x10_1x2(vec4 const& v)
+
+vec4 unpackInorm3x10_1x2(uint32 const& p))
+
+uvec4 unpackI3x10_1x2(uint32 const& p)
+
+uvec4 unpackU3x10_1x2(uint32 const& p)
+ +
+
+ +

◆ unpackUnorm3x5_1x1()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec4 glm::unpackUnorm3x5_1x1 (uint16 p)
+
+ +

Convert a packed integer to a normalized floating-point vector.

+
See also
GLM_GTC_packing
+
+uint16 packUnorm3x5_1x1(vec4 const& v)
+ +
+
+ +

◆ unpackUnorm4x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec4 glm::unpackUnorm4x16 (uint64 p)
+
+ +

First, unpacks a single 64-bit unsigned integer p into four 16-bit unsigned integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned four-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackUnormx4x16: f / 65535.0

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLM_GTC_packing
+
+float unpackUnorm1x16(uint16 p)
+
+vec2 unpackUnorm2x16(uint32 p)
+
+GLSL unpackUnorm2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackUnorm4x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec4 glm::unpackUnorm4x4 (uint16 p)
+
+ +

Convert a packed integer to a normalized floating-point vector.

+
See also
GLM_GTC_packing
+
+uint16 packUnorm4x4(vec4 const& v)
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00917.html b/include/glm/doc/api/a00917.html new file mode 100644 index 0000000..34291b8 --- /dev/null +++ b/include/glm/doc/api/a00917.html @@ -0,0 +1,633 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_quaternion + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_quaternion
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > eulerAngles (qua< T, Q > const &x)
 Returns euler angles, pitch as x, yaw as y, roll as z. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > greaterThan (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x > y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > greaterThanEqual (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x >= y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > lessThan (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison result of x < y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > lessThanEqual (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x <= y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > mat3_cast (qua< T, Q > const &x)
 Converts a quaternion to a 3 * 3 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > mat4_cast (qua< T, Q > const &x)
 Converts a quaternion to a 4 * 4 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T pitch (qua< T, Q > const &x)
 Returns pitch value of euler angles expressed in radians. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quat_cast (mat< 3, 3, T, Q > const &x)
 Converts a pure rotation 3 * 3 matrix to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quat_cast (mat< 4, 4, T, Q > const &x)
 Converts a pure rotation 4 * 4 matrix to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quatLookAt (vec< 3, T, Q > const &direction, vec< 3, T, Q > const &up)
 Build a look at quaternion based on the default handedness. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quatLookAtLH (vec< 3, T, Q > const &direction, vec< 3, T, Q > const &up)
 Build a left-handed look at quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quatLookAtRH (vec< 3, T, Q > const &direction, vec< 3, T, Q > const &up)
 Build a right-handed look at quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T roll (qua< T, Q > const &x)
 Returns roll value of euler angles expressed in radians. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T yaw (qua< T, Q > const &x)
 Returns yaw value of euler angles expressed in radians. More...
 
+

Detailed Description

+

Include <glm/gtc/quaternion.hpp> to use the features of this extension.

+

Defines a templated quaternion type and several quaternion operations.

+

Function Documentation

+ +

◆ eulerAngles()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::eulerAngles (qua< T, Q > const & x)
+
+ +

Returns euler angles, pitch as x, yaw as y, roll as z.

+

The result is expressed in radians.

+
Template Parameters
+ + +
TFloating-point scalar types.
+
+
+
See also
GLM_GTC_quaternion
+ +
+
+ +

◆ greaterThan()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> glm::greaterThan (qua< T, Q > const & x,
qua< T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x > y.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_quaternion_relational
+ +
+
+ +

◆ greaterThanEqual()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> glm::greaterThanEqual (qua< T, Q > const & x,
qua< T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x >= y.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_quaternion_relational
+ +
+
+ +

◆ lessThan()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> glm::lessThan (qua< T, Q > const & x,
qua< T, Q > const & y 
)
+
+ +

Returns the component-wise comparison result of x < y.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_quaternion_relational
+ +
+
+ +

◆ lessThanEqual()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> glm::lessThanEqual (qua< T, Q > const & x,
qua< T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x <= y.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_quaternion_relational
+ +
+
+ +

◆ mat3_cast()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::mat3_cast (qua< T, Q > const & x)
+
+ +

Converts a quaternion to a 3 * 3 matrix.

+
Template Parameters
+ + +
TFloating-point scalar types.
+
+
+
See also
GLM_GTC_quaternion
+ +

Referenced by glm::toMat3().

+ +
+
+ +

◆ mat4_cast()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::mat4_cast (qua< T, Q > const & x)
+
+ +

Converts a quaternion to a 4 * 4 matrix.

+
Template Parameters
+ + +
TFloating-point scalar types.
+
+
+
See also
GLM_GTC_quaternion
+ +

Referenced by glm::toMat4().

+ +
+
+ +

◆ pitch()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::pitch (qua< T, Q > const & x)
+
+ +

Returns pitch value of euler angles expressed in radians.

+
Template Parameters
+ + +
TFloating-point scalar types.
+
+
+
See also
GLM_GTC_quaternion
+ +
+
+ +

◆ quat_cast() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::quat_cast (mat< 3, 3, T, Q > const & x)
+
+ +

Converts a pure rotation 3 * 3 matrix to a quaternion.

+
Template Parameters
+ + +
TFloating-point scalar types.
+
+
+
See also
GLM_GTC_quaternion
+ +

Referenced by glm::toQuat().

+ +
+
+ +

◆ quat_cast() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::quat_cast (mat< 4, 4, T, Q > const & x)
+
+ +

Converts a pure rotation 4 * 4 matrix to a quaternion.

+
Template Parameters
+ + +
TFloating-point scalar types.
+
+
+
See also
GLM_GTC_quaternion
+ +
+
+ +

◆ quatLookAt()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::quatLookAt (vec< 3, T, Q > const & direction,
vec< 3, T, Q > const & up 
)
+
+ +

Build a look at quaternion based on the default handedness.

+
Parameters
+ + + +
directionDesired forward direction. Needs to be normalized.
upUp vector, how the camera is oriented. Typically (0, 1, 0).
+
+
+ +
+
+ +

◆ quatLookAtLH()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::quatLookAtLH (vec< 3, T, Q > const & direction,
vec< 3, T, Q > const & up 
)
+
+ +

Build a left-handed look at quaternion.

+
Parameters
+ + + +
directionDesired forward direction onto which the +z-axis gets mapped. Needs to be normalized.
upUp vector, how the camera is oriented. Typically (0, 1, 0).
+
+
+ +
+
+ +

◆ quatLookAtRH()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::quatLookAtRH (vec< 3, T, Q > const & direction,
vec< 3, T, Q > const & up 
)
+
+ +

Build a right-handed look at quaternion.

+
Parameters
+ + + +
directionDesired forward direction onto which the -z-axis gets mapped. Needs to be normalized.
upUp vector, how the camera is oriented. Typically (0, 1, 0).
+
+
+ +
+
+ +

◆ roll()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::roll (qua< T, Q > const & x)
+
+ +

Returns roll value of euler angles expressed in radians.

+
Template Parameters
+ + +
TFloating-point scalar types.
+
+
+
See also
GLM_GTC_quaternion
+ +
+
+ +

◆ yaw()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::yaw (qua< T, Q > const & x)
+
+ +

Returns yaw value of euler angles expressed in radians.

+
Template Parameters
+ + +
TFloating-point scalar types.
+
+
+
See also
GLM_GTC_quaternion
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00918.html b/include/glm/doc/api/a00918.html new file mode 100644 index 0000000..79a6905 --- /dev/null +++ b/include/glm/doc/api/a00918.html @@ -0,0 +1,318 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_random + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL vec< 3, T, defaultp > ballRand (T Radius)
 Generate a random 3D vector which coordinates are regularly distributed within the volume of a ball of a given radius. More...
 
template<typename T >
GLM_FUNC_DECL vec< 2, T, defaultp > circularRand (T Radius)
 Generate a random 2D vector which coordinates are regularly distributed on a circle of a given radius. More...
 
template<typename T >
GLM_FUNC_DECL vec< 2, T, defaultp > diskRand (T Radius)
 Generate a random 2D vector which coordinates are regularly distributed within the area of a disk of a given radius. More...
 
template<typename genType >
GLM_FUNC_DECL genType gaussRand (genType Mean, genType Deviation)
 Generate random numbers in the interval [Min, Max], according a gaussian distribution. More...
 
template<typename genType >
GLM_FUNC_DECL genType linearRand (genType Min, genType Max)
 Generate random numbers in the interval [Min, Max], according a linear distribution. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > linearRand (vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
 Generate random numbers in the interval [Min, Max], according a linear distribution. More...
 
template<typename T >
GLM_FUNC_DECL vec< 3, T, defaultp > sphericalRand (T Radius)
 Generate a random 3D vector which coordinates are regularly distributed on a sphere of a given radius. More...
 
+

Detailed Description

+

Include <glm/gtc/random.hpp> to use the features of this extension.

+

Generate random number from various distribution methods.

+

Function Documentation

+ +

◆ ballRand()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, defaultp> glm::ballRand (Radius)
+
+ +

Generate a random 3D vector which coordinates are regularly distributed within the volume of a ball of a given radius.

+
See also
GLM_GTC_random
+ +
+
+ +

◆ circularRand()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<2, T, defaultp> glm::circularRand (Radius)
+
+ +

Generate a random 2D vector which coordinates are regularly distributed on a circle of a given radius.

+
See also
GLM_GTC_random
+ +
+
+ +

◆ diskRand()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<2, T, defaultp> glm::diskRand (Radius)
+
+ +

Generate a random 2D vector which coordinates are regularly distributed within the area of a disk of a given radius.

+
See also
GLM_GTC_random
+ +
+
+ +

◆ gaussRand()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::gaussRand (genType Mean,
genType Deviation 
)
+
+ +

Generate random numbers in the interval [Min, Max], according a gaussian distribution.

+
See also
GLM_GTC_random
+ +
+
+ +

◆ linearRand() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::linearRand (genType Min,
genType Max 
)
+
+ +

Generate random numbers in the interval [Min, Max], according a linear distribution.

+
Parameters
+ + + +
MinMinimum value included in the sampling
MaxMaximum value included in the sampling
+
+
+
Template Parameters
+ + +
genTypeValue type. Currently supported: float or double scalars.
+
+
+
See also
GLM_GTC_random
+ +
+
+ +

◆ linearRand() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::linearRand (vec< L, T, Q > const & Min,
vec< L, T, Q > const & Max 
)
+
+ +

Generate random numbers in the interval [Min, Max], according a linear distribution.

+
Parameters
+ + + +
MinMinimum value included in the sampling
MaxMaximum value included in the sampling
+
+
+
Template Parameters
+ + +
TValue type. Currently supported: float or double.
+
+
+
See also
GLM_GTC_random
+ +
+
+ +

◆ sphericalRand()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, defaultp> glm::sphericalRand (Radius)
+
+ +

Generate a random 3D vector which coordinates are regularly distributed on a sphere of a given radius.

+
See also
GLM_GTC_random
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00919.html b/include/glm/doc/api/a00919.html new file mode 100644 index 0000000..24097e5 --- /dev/null +++ b/include/glm/doc/api/a00919.html @@ -0,0 +1,79 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_reciprocal + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_GTC_reciprocal
+
+
+

Include <glm/gtc/reciprocal.hpp> to use the features of this extension.

+

Define secant, cosecant and cotangent functions.

+
+ + + + diff --git a/include/glm/doc/api/a00920.html b/include/glm/doc/api/a00920.html new file mode 100644 index 0000000..1e0381d --- /dev/null +++ b/include/glm/doc/api/a00920.html @@ -0,0 +1,555 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_round + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType ceilMultiple (genType v, genType Multiple)
 Higher multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > ceilMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Higher multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType ceilPowerOfTwo (genIUType v)
 Return the power of two number which value is just higher the input value, round up to a power of two. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > ceilPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is just higher the input value, round up to a power of two. More...
 
template<typename genType >
GLM_FUNC_DECL genType floorMultiple (genType v, genType Multiple)
 Lower multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > floorMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Lower multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType floorPowerOfTwo (genIUType v)
 Return the power of two number which value is just lower the input value, round down to a power of two. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > floorPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is just lower the input value, round down to a power of two. More...
 
template<typename genType >
GLM_FUNC_DECL genType roundMultiple (genType v, genType Multiple)
 Lower multiple number of Source. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > roundMultiple (vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)
 Lower multiple number of Source. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType roundPowerOfTwo (genIUType v)
 Return the power of two number which value is the closet to the input value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > roundPowerOfTwo (vec< L, T, Q > const &v)
 Return the power of two number which value is the closet to the input value. More...
 
+

Detailed Description

+

Include <glm/gtc/round.hpp> to use the features of this extension.

+

Rounding value to specific boundings

+

Function Documentation

+ +

◆ ceilMultiple() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::ceilMultiple (genType v,
genType Multiple 
)
+
+ +

Higher multiple number of Source.

+
Template Parameters
+ + +
genTypeFloating-point or integer scalar or vector types.
+
+
+
Parameters
+ + + +
vSource value to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_GTC_round
+ +
+
+ +

◆ ceilMultiple() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::ceilMultiple (vec< L, T, Q > const & v,
vec< L, T, Q > const & Multiple 
)
+
+ +

Higher multiple number of Source.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
Parameters
+ + + +
vSource values to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_GTC_round
+ +
+
+ +

◆ ceilPowerOfTwo() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genIUType glm::ceilPowerOfTwo (genIUType v)
+
+ +

Return the power of two number which value is just higher the input value, round up to a power of two.

+
See also
GLM_GTC_round
+ +
+
+ +

◆ ceilPowerOfTwo() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::ceilPowerOfTwo (vec< L, T, Q > const & v)
+
+ +

Return the power of two number which value is just higher the input value, round up to a power of two.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_GTC_round
+ +
+
+ +

◆ floorMultiple() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::floorMultiple (genType v,
genType Multiple 
)
+
+ +

Lower multiple number of Source.

+
Template Parameters
+ + +
genTypeFloating-point or integer scalar or vector types.
+
+
+
Parameters
+ + + +
vSource value to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_GTC_round
+ +
+
+ +

◆ floorMultiple() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::floorMultiple (vec< L, T, Q > const & v,
vec< L, T, Q > const & Multiple 
)
+
+ +

Lower multiple number of Source.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
Parameters
+ + + +
vSource values to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_GTC_round
+ +
+
+ +

◆ floorPowerOfTwo() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genIUType glm::floorPowerOfTwo (genIUType v)
+
+ +

Return the power of two number which value is just lower the input value, round down to a power of two.

+
See also
GLM_GTC_round
+ +
+
+ +

◆ floorPowerOfTwo() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::floorPowerOfTwo (vec< L, T, Q > const & v)
+
+ +

Return the power of two number which value is just lower the input value, round down to a power of two.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_GTC_round
+ +
+
+ +

◆ roundMultiple() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::roundMultiple (genType v,
genType Multiple 
)
+
+ +

Lower multiple number of Source.

+
Template Parameters
+ + +
genTypeFloating-point or integer scalar or vector types.
+
+
+
Parameters
+ + + +
vSource value to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_GTC_round
+ +
+
+ +

◆ roundMultiple() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::roundMultiple (vec< L, T, Q > const & v,
vec< L, T, Q > const & Multiple 
)
+
+ +

Lower multiple number of Source.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
Parameters
+ + + +
vSource values to which is applied the function
MultipleMust be a null or positive value
+
+
+
See also
GLM_GTC_round
+ +
+
+ +

◆ roundPowerOfTwo() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genIUType glm::roundPowerOfTwo (genIUType v)
+
+ +

Return the power of two number which value is the closet to the input value.

+
See also
GLM_GTC_round
+ +
+
+ +

◆ roundPowerOfTwo() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::roundPowerOfTwo (vec< L, T, Q > const & v)
+
+ +

Return the power of two number which value is the closet to the input value.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_GTC_round
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00921.html b/include/glm/doc/api/a00921.html new file mode 100644 index 0000000..d4f9a6b --- /dev/null +++ b/include/glm/doc/api/a00921.html @@ -0,0 +1,1558 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_type_aligned + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_type_aligned
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

+typedef aligned_highp_bvec1 aligned_bvec1
 1 component vector aligned in memory of bool values.
 
+typedef aligned_highp_bvec2 aligned_bvec2
 2 components vector aligned in memory of bool values.
 
+typedef aligned_highp_bvec3 aligned_bvec3
 3 components vector aligned in memory of bool values.
 
+typedef aligned_highp_bvec4 aligned_bvec4
 4 components vector aligned in memory of bool values.
 
+typedef aligned_highp_dmat2 aligned_dmat2
 2 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat2x2 aligned_dmat2x2
 2 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat2x3 aligned_dmat2x3
 2 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat2x4 aligned_dmat2x4
 2 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat3 aligned_dmat3
 3 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat3x2 aligned_dmat3x2
 3 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat3x3 aligned_dmat3x3
 3 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat3x4 aligned_dmat3x4
 3 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat4 aligned_dmat4
 4 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat4x2 aligned_dmat4x2
 4 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat4x3 aligned_dmat4x3
 4 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat4x4 aligned_dmat4x4
 4 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dquat aligned_dquat
 quaternion tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dvec1 aligned_dvec1
 1 component vector aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dvec2 aligned_dvec2
 2 components vector aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dvec3 aligned_dvec3
 3 components vector aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dvec4 aligned_dvec4
 4 components vector aligned in memory of double-precision floating-point numbers.
 
+typedef vec< 1, bool, aligned_highp > aligned_highp_bvec1
 1 component vector aligned in memory of bool values.
 
+typedef vec< 2, bool, aligned_highp > aligned_highp_bvec2
 2 components vector aligned in memory of bool values.
 
+typedef vec< 3, bool, aligned_highp > aligned_highp_bvec3
 3 components vector aligned in memory of bool values.
 
+typedef vec< 4, bool, aligned_highp > aligned_highp_bvec4
 4 components vector aligned in memory of bool values.
 
+typedef mat< 2, 2, double, aligned_highp > aligned_highp_dmat2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, aligned_highp > aligned_highp_dmat2x2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, aligned_highp > aligned_highp_dmat2x3
 2 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, aligned_highp > aligned_highp_dmat2x4
 2 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_highp > aligned_highp_dmat3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, aligned_highp > aligned_highp_dmat3x2
 3 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_highp > aligned_highp_dmat3x3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, aligned_highp > aligned_highp_dmat3x4
 3 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_highp > aligned_highp_dmat4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, aligned_highp > aligned_highp_dmat4x2
 4 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, aligned_highp > aligned_highp_dmat4x3
 4 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_highp > aligned_highp_dmat4x4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< double, aligned_highp > aligned_highp_dquat
 quaternion aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, aligned_highp > aligned_highp_dvec1
 1 component vector aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, aligned_highp > aligned_highp_dvec2
 2 components vector aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, aligned_highp > aligned_highp_dvec3
 3 components vector aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, aligned_highp > aligned_highp_dvec4
 4 components vector aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, aligned_highp > aligned_highp_ivec1
 1 component vector aligned in memory of signed integer numbers.
 
+typedef vec< 2, int, aligned_highp > aligned_highp_ivec2
 2 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 3, int, aligned_highp > aligned_highp_ivec3
 3 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 4, int, aligned_highp > aligned_highp_ivec4
 4 components vector aligned in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, aligned_highp > aligned_highp_mat2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, aligned_highp > aligned_highp_mat2x2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, aligned_highp > aligned_highp_mat2x3
 2 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, aligned_highp > aligned_highp_mat2x4
 2 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_highp > aligned_highp_mat3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, aligned_highp > aligned_highp_mat3x2
 3 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_highp > aligned_highp_mat3x3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, aligned_highp > aligned_highp_mat3x4
 3 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_highp > aligned_highp_mat4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, aligned_highp > aligned_highp_mat4x2
 4 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, aligned_highp > aligned_highp_mat4x3
 4 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_highp > aligned_highp_mat4x4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< float, aligned_highp > aligned_highp_quat
 quaternion aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, aligned_highp > aligned_highp_uvec1
 1 component vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, aligned_highp > aligned_highp_uvec2
 2 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, aligned_highp > aligned_highp_uvec3
 3 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, aligned_highp > aligned_highp_uvec4
 4 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 1, float, aligned_highp > aligned_highp_vec1
 1 component vector aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, aligned_highp > aligned_highp_vec2
 2 components vector aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, aligned_highp > aligned_highp_vec3
 3 components vector aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, aligned_highp > aligned_highp_vec4
 4 components vector aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef aligned_highp_ivec1 aligned_ivec1
 1 component vector aligned in memory of signed integer numbers.
 
+typedef aligned_highp_ivec2 aligned_ivec2
 2 components vector aligned in memory of signed integer numbers.
 
+typedef aligned_highp_ivec3 aligned_ivec3
 3 components vector aligned in memory of signed integer numbers.
 
+typedef aligned_highp_ivec4 aligned_ivec4
 4 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 1, bool, aligned_lowp > aligned_lowp_bvec1
 1 component vector aligned in memory of bool values.
 
+typedef vec< 2, bool, aligned_lowp > aligned_lowp_bvec2
 2 components vector aligned in memory of bool values.
 
+typedef vec< 3, bool, aligned_lowp > aligned_lowp_bvec3
 3 components vector aligned in memory of bool values.
 
+typedef vec< 4, bool, aligned_lowp > aligned_lowp_bvec4
 4 components vector aligned in memory of bool values.
 
+typedef mat< 2, 2, double, aligned_lowp > aligned_lowp_dmat2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, aligned_lowp > aligned_lowp_dmat2x2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, aligned_lowp > aligned_lowp_dmat2x3
 2 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, aligned_lowp > aligned_lowp_dmat2x4
 2 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_lowp > aligned_lowp_dmat3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, aligned_lowp > aligned_lowp_dmat3x2
 3 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_lowp > aligned_lowp_dmat3x3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, aligned_lowp > aligned_lowp_dmat3x4
 3 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_lowp > aligned_lowp_dmat4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, aligned_lowp > aligned_lowp_dmat4x2
 4 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, aligned_lowp > aligned_lowp_dmat4x3
 4 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_lowp > aligned_lowp_dmat4x4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef qua< double, aligned_lowp > aligned_lowp_dquat
 quaternion aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, aligned_lowp > aligned_lowp_dvec1
 1 component vector aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, aligned_lowp > aligned_lowp_dvec2
 2 components vector aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, aligned_lowp > aligned_lowp_dvec3
 3 components vector aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, aligned_lowp > aligned_lowp_dvec4
 4 components vector aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, aligned_lowp > aligned_lowp_ivec1
 1 component vector aligned in memory of signed integer numbers.
 
+typedef vec< 2, int, aligned_lowp > aligned_lowp_ivec2
 2 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 3, int, aligned_lowp > aligned_lowp_ivec3
 3 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 4, int, aligned_lowp > aligned_lowp_ivec4
 4 components vector aligned in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, aligned_lowp > aligned_lowp_mat2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, aligned_lowp > aligned_lowp_mat2x2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, aligned_lowp > aligned_lowp_mat2x3
 2 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, aligned_lowp > aligned_lowp_mat2x4
 2 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_lowp > aligned_lowp_mat3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, aligned_lowp > aligned_lowp_mat3x2
 3 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_lowp > aligned_lowp_mat3x3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, aligned_lowp > aligned_lowp_mat3x4
 3 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_lowp > aligned_lowp_mat4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, aligned_lowp > aligned_lowp_mat4x2
 4 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, aligned_lowp > aligned_lowp_mat4x3
 4 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_lowp > aligned_lowp_mat4x4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef qua< float, aligned_lowp > aligned_lowp_quat
 quaternion aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, aligned_lowp > aligned_lowp_uvec1
 1 component vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, aligned_lowp > aligned_lowp_uvec2
 2 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, aligned_lowp > aligned_lowp_uvec3
 3 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, aligned_lowp > aligned_lowp_uvec4
 4 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 1, float, aligned_lowp > aligned_lowp_vec1
 1 component vector aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, aligned_lowp > aligned_lowp_vec2
 2 components vector aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, aligned_lowp > aligned_lowp_vec3
 3 components vector aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, aligned_lowp > aligned_lowp_vec4
 4 components vector aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef aligned_highp_mat2 aligned_mat2
 2 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat2x2 aligned_mat2x2
 2 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat2x3 aligned_mat2x3
 2 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat2x4 aligned_mat2x4
 2 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat3 aligned_mat3
 3 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat3x2 aligned_mat3x2
 3 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat3x3 aligned_mat3x3
 3 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat3x4 aligned_mat3x4
 3 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat4 aligned_mat4
 4 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat4x2 aligned_mat4x2
 4 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat4x3 aligned_mat4x3
 4 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat4x4 aligned_mat4x4
 4 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef vec< 1, bool, aligned_mediump > aligned_mediump_bvec1
 1 component vector aligned in memory of bool values.
 
+typedef vec< 2, bool, aligned_mediump > aligned_mediump_bvec2
 2 components vector aligned in memory of bool values.
 
+typedef vec< 3, bool, aligned_mediump > aligned_mediump_bvec3
 3 components vector aligned in memory of bool values.
 
+typedef vec< 4, bool, aligned_mediump > aligned_mediump_bvec4
 4 components vector aligned in memory of bool values.
 
+typedef mat< 2, 2, double, aligned_mediump > aligned_mediump_dmat2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, aligned_mediump > aligned_mediump_dmat2x2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, aligned_mediump > aligned_mediump_dmat2x3
 2 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, aligned_mediump > aligned_mediump_dmat2x4
 2 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_mediump > aligned_mediump_dmat3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, aligned_mediump > aligned_mediump_dmat3x2
 3 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_mediump > aligned_mediump_dmat3x3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, aligned_mediump > aligned_mediump_dmat3x4
 3 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_mediump > aligned_mediump_dmat4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, aligned_mediump > aligned_mediump_dmat4x2
 4 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, aligned_mediump > aligned_mediump_dmat4x3
 4 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_mediump > aligned_mediump_dmat4x4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef qua< double, aligned_mediump > aligned_mediump_dquat
 quaternion aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, aligned_mediump > aligned_mediump_dvec1
 1 component vector aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, aligned_mediump > aligned_mediump_dvec2
 2 components vector aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, aligned_mediump > aligned_mediump_dvec3
 3 components vector aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, aligned_mediump > aligned_mediump_dvec4
 4 components vector aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, aligned_mediump > aligned_mediump_ivec1
 1 component vector aligned in memory of signed integer numbers.
 
+typedef vec< 2, int, aligned_mediump > aligned_mediump_ivec2
 2 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 3, int, aligned_mediump > aligned_mediump_ivec3
 3 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 4, int, aligned_mediump > aligned_mediump_ivec4
 4 components vector aligned in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, aligned_mediump > aligned_mediump_mat2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, aligned_mediump > aligned_mediump_mat2x2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, aligned_mediump > aligned_mediump_mat2x3
 2 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, aligned_mediump > aligned_mediump_mat2x4
 2 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_mediump > aligned_mediump_mat3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, aligned_mediump > aligned_mediump_mat3x2
 3 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_mediump > aligned_mediump_mat3x3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, aligned_mediump > aligned_mediump_mat3x4
 3 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_mediump > aligned_mediump_mat4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, aligned_mediump > aligned_mediump_mat4x2
 4 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, aligned_mediump > aligned_mediump_mat4x3
 4 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_mediump > aligned_mediump_mat4x4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef qua< float, aligned_mediump > aligned_mediump_quat
 quaternion aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, aligned_mediump > aligned_mediump_uvec1
 1 component vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, aligned_mediump > aligned_mediump_uvec2
 2 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, aligned_mediump > aligned_mediump_uvec3
 3 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, aligned_mediump > aligned_mediump_uvec4
 4 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 1, float, aligned_mediump > aligned_mediump_vec1
 1 component vector aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, aligned_mediump > aligned_mediump_vec2
 2 components vector aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, aligned_mediump > aligned_mediump_vec3
 3 components vector aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, aligned_mediump > aligned_mediump_vec4
 4 components vector aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef aligned_highp_quat aligned_quat
 quaternion tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_uvec1 aligned_uvec1
 1 component vector aligned in memory of unsigned integer numbers.
 
+typedef aligned_highp_uvec2 aligned_uvec2
 2 components vector aligned in memory of unsigned integer numbers.
 
+typedef aligned_highp_uvec3 aligned_uvec3
 3 components vector aligned in memory of unsigned integer numbers.
 
+typedef aligned_highp_uvec4 aligned_uvec4
 4 components vector aligned in memory of unsigned integer numbers.
 
+typedef aligned_highp_vec1 aligned_vec1
 1 component vector aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_vec2 aligned_vec2
 2 components vector aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_vec3 aligned_vec3
 3 components vector aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_vec4 aligned_vec4
 4 components vector aligned in memory of single-precision floating-point numbers.
 
+typedef packed_highp_bvec1 packed_bvec1
 1 components vector tightly packed in memory of bool values.
 
+typedef packed_highp_bvec2 packed_bvec2
 2 components vector tightly packed in memory of bool values.
 
+typedef packed_highp_bvec3 packed_bvec3
 3 components vector tightly packed in memory of bool values.
 
+typedef packed_highp_bvec4 packed_bvec4
 4 components vector tightly packed in memory of bool values.
 
+typedef packed_highp_dmat2 packed_dmat2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat2x2 packed_dmat2x2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat2x3 packed_dmat2x3
 2 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat2x4 packed_dmat2x4
 2 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat3 packed_dmat3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat3x2 packed_dmat3x2
 3 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat3x3 packed_dmat3x3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat3x4 packed_dmat3x4
 3 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat4 packed_dmat4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat4x2 packed_dmat4x2
 4 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat4x3 packed_dmat4x3
 4 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat4x4 packed_dmat4x4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dquat packed_dquat
 quaternion tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dvec1 packed_dvec1
 1 component vector tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dvec2 packed_dvec2
 2 components vector tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dvec3 packed_dvec3
 3 components vector tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dvec4 packed_dvec4
 4 components vector tightly packed in memory of double-precision floating-point numbers.
 
+typedef vec< 1, bool, packed_highp > packed_highp_bvec1
 1 component vector tightly packed in memory of bool values.
 
+typedef vec< 2, bool, packed_highp > packed_highp_bvec2
 2 components vector tightly packed in memory of bool values.
 
+typedef vec< 3, bool, packed_highp > packed_highp_bvec3
 3 components vector tightly packed in memory of bool values.
 
+typedef vec< 4, bool, packed_highp > packed_highp_bvec4
 4 components vector tightly packed in memory of bool values.
 
+typedef mat< 2, 2, double, packed_highp > packed_highp_dmat2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, packed_highp > packed_highp_dmat2x2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, packed_highp > packed_highp_dmat2x3
 2 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, packed_highp > packed_highp_dmat2x4
 2 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_highp > packed_highp_dmat3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, packed_highp > packed_highp_dmat3x2
 3 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_highp > packed_highp_dmat3x3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, packed_highp > packed_highp_dmat3x4
 3 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_highp > packed_highp_dmat4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, packed_highp > packed_highp_dmat4x2
 4 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, packed_highp > packed_highp_dmat4x3
 4 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_highp > packed_highp_dmat4x4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< double, packed_highp > packed_highp_dquat
 quaternion tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, packed_highp > packed_highp_dvec1
 1 component vector tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, packed_highp > packed_highp_dvec2
 2 components vector tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, packed_highp > packed_highp_dvec3
 3 components vector tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, packed_highp > packed_highp_dvec4
 4 components vector tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, packed_highp > packed_highp_ivec1
 1 component vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 2, int, packed_highp > packed_highp_ivec2
 2 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 3, int, packed_highp > packed_highp_ivec3
 3 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 4, int, packed_highp > packed_highp_ivec4
 4 components vector tightly packed in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, packed_highp > packed_highp_mat2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, packed_highp > packed_highp_mat2x2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, packed_highp > packed_highp_mat2x3
 2 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, packed_highp > packed_highp_mat2x4
 2 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_highp > packed_highp_mat3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, packed_highp > packed_highp_mat3x2
 3 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_highp > packed_highp_mat3x3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, packed_highp > packed_highp_mat3x4
 3 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_highp > packed_highp_mat4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, packed_highp > packed_highp_mat4x2
 4 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, packed_highp > packed_highp_mat4x3
 4 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_highp > packed_highp_mat4x4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< float, packed_highp > packed_highp_quat
 quaternion tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, packed_highp > packed_highp_uvec1
 1 component vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, packed_highp > packed_highp_uvec2
 2 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, packed_highp > packed_highp_uvec3
 3 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, packed_highp > packed_highp_uvec4
 4 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 1, float, packed_highp > packed_highp_vec1
 1 component vector tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, packed_highp > packed_highp_vec2
 2 components vector tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, packed_highp > packed_highp_vec3
 3 components vector tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, packed_highp > packed_highp_vec4
 4 components vector tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef packed_highp_ivec1 packed_ivec1
 1 component vector tightly packed in memory of signed integer numbers.
 
+typedef packed_highp_ivec2 packed_ivec2
 2 components vector tightly packed in memory of signed integer numbers.
 
+typedef packed_highp_ivec3 packed_ivec3
 3 components vector tightly packed in memory of signed integer numbers.
 
+typedef packed_highp_ivec4 packed_ivec4
 4 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 1, bool, packed_lowp > packed_lowp_bvec1
 1 component vector tightly packed in memory of bool values.
 
+typedef vec< 2, bool, packed_lowp > packed_lowp_bvec2
 2 components vector tightly packed in memory of bool values.
 
+typedef vec< 3, bool, packed_lowp > packed_lowp_bvec3
 3 components vector tightly packed in memory of bool values.
 
+typedef vec< 4, bool, packed_lowp > packed_lowp_bvec4
 4 components vector tightly packed in memory of bool values.
 
+typedef mat< 2, 2, double, packed_lowp > packed_lowp_dmat2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, packed_lowp > packed_lowp_dmat2x2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, packed_lowp > packed_lowp_dmat2x3
 2 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, packed_lowp > packed_lowp_dmat2x4
 2 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_lowp > packed_lowp_dmat3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, packed_lowp > packed_lowp_dmat3x2
 3 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_lowp > packed_lowp_dmat3x3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, packed_lowp > packed_lowp_dmat3x4
 3 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_lowp > packed_lowp_dmat4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, packed_lowp > packed_lowp_dmat4x2
 4 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, packed_lowp > packed_lowp_dmat4x3
 4 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_lowp > packed_lowp_dmat4x4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef qua< double, packed_lowp > packed_lowp_dquat
 quaternion tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, packed_lowp > packed_lowp_dvec1
 1 component vector tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, packed_lowp > packed_lowp_dvec2
 2 components vector tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, packed_lowp > packed_lowp_dvec3
 3 components vector tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, packed_lowp > packed_lowp_dvec4
 4 components vector tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, packed_lowp > packed_lowp_ivec1
 1 component vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 2, int, packed_lowp > packed_lowp_ivec2
 2 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 3, int, packed_lowp > packed_lowp_ivec3
 3 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 4, int, packed_lowp > packed_lowp_ivec4
 4 components vector tightly packed in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, packed_lowp > packed_lowp_mat2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, packed_lowp > packed_lowp_mat2x2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, packed_lowp > packed_lowp_mat2x3
 2 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, packed_lowp > packed_lowp_mat2x4
 2 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_lowp > packed_lowp_mat3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, packed_lowp > packed_lowp_mat3x2
 3 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_lowp > packed_lowp_mat3x3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, packed_lowp > packed_lowp_mat3x4
 3 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_lowp > packed_lowp_mat4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, packed_lowp > packed_lowp_mat4x2
 4 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, packed_lowp > packed_lowp_mat4x3
 4 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_lowp > packed_lowp_mat4x4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef qua< float, packed_lowp > packed_lowp_quat
 quaternion tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, packed_lowp > packed_lowp_uvec1
 1 component vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, packed_lowp > packed_lowp_uvec2
 2 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, packed_lowp > packed_lowp_uvec3
 3 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, packed_lowp > packed_lowp_uvec4
 4 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 1, float, packed_lowp > packed_lowp_vec1
 1 component vector tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, packed_lowp > packed_lowp_vec2
 2 components vector tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, packed_lowp > packed_lowp_vec3
 3 components vector tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, packed_lowp > packed_lowp_vec4
 4 components vector tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef packed_highp_mat2 packed_mat2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat2x2 packed_mat2x2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat2x3 packed_mat2x3
 2 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat2x4 packed_mat2x4
 2 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat3 packed_mat3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat3x2 packed_mat3x2
 3 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat3x3 packed_mat3x3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat3x4 packed_mat3x4
 3 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat4 packed_mat4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat4x2 packed_mat4x2
 4 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat4x3 packed_mat4x3
 4 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat4x4 packed_mat4x4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef vec< 1, bool, packed_mediump > packed_mediump_bvec1
 1 component vector tightly packed in memory of bool values.
 
+typedef vec< 2, bool, packed_mediump > packed_mediump_bvec2
 2 components vector tightly packed in memory of bool values.
 
+typedef vec< 3, bool, packed_mediump > packed_mediump_bvec3
 3 components vector tightly packed in memory of bool values.
 
+typedef vec< 4, bool, packed_mediump > packed_mediump_bvec4
 4 components vector tightly packed in memory of bool values.
 
+typedef mat< 2, 2, double, packed_mediump > packed_mediump_dmat2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, packed_mediump > packed_mediump_dmat2x2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, packed_mediump > packed_mediump_dmat2x3
 2 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, packed_mediump > packed_mediump_dmat2x4
 2 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_mediump > packed_mediump_dmat3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, packed_mediump > packed_mediump_dmat3x2
 3 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_mediump > packed_mediump_dmat3x3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, packed_mediump > packed_mediump_dmat3x4
 3 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_mediump > packed_mediump_dmat4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, packed_mediump > packed_mediump_dmat4x2
 4 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, packed_mediump > packed_mediump_dmat4x3
 4 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_mediump > packed_mediump_dmat4x4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef qua< double, packed_mediump > packed_mediump_dquat
 quaternion tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, packed_mediump > packed_mediump_dvec1
 1 component vector tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, packed_mediump > packed_mediump_dvec2
 2 components vector tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, packed_mediump > packed_mediump_dvec3
 3 components vector tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, packed_mediump > packed_mediump_dvec4
 4 components vector tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, packed_mediump > packed_mediump_ivec1
 1 component vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 2, int, packed_mediump > packed_mediump_ivec2
 2 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 3, int, packed_mediump > packed_mediump_ivec3
 3 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 4, int, packed_mediump > packed_mediump_ivec4
 4 components vector tightly packed in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, packed_mediump > packed_mediump_mat2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, packed_mediump > packed_mediump_mat2x2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, packed_mediump > packed_mediump_mat2x3
 2 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, packed_mediump > packed_mediump_mat2x4
 2 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_mediump > packed_mediump_mat3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, packed_mediump > packed_mediump_mat3x2
 3 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_mediump > packed_mediump_mat3x3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, packed_mediump > packed_mediump_mat3x4
 3 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_mediump > packed_mediump_mat4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, packed_mediump > packed_mediump_mat4x2
 4 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, packed_mediump > packed_mediump_mat4x3
 4 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_mediump > packed_mediump_mat4x4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef qua< float, packed_mediump > packed_mediump_quat
 quaternion tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, packed_mediump > packed_mediump_uvec1
 1 component vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, packed_mediump > packed_mediump_uvec2
 2 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, packed_mediump > packed_mediump_uvec3
 3 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, packed_mediump > packed_mediump_uvec4
 4 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 1, float, packed_mediump > packed_mediump_vec1
 1 component vector tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, packed_mediump > packed_mediump_vec2
 2 components vector tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, packed_mediump > packed_mediump_vec3
 3 components vector tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, packed_mediump > packed_mediump_vec4
 4 components vector tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef packed_highp_quat packed_quat
 quaternion tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_uvec1 packed_uvec1
 1 component vector tightly packed in memory of unsigned integer numbers.
 
+typedef packed_highp_uvec2 packed_uvec2
 2 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef packed_highp_uvec3 packed_uvec3
 3 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef packed_highp_uvec4 packed_uvec4
 4 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef packed_highp_vec1 packed_vec1
 1 component vector tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_vec2 packed_vec2
 2 components vector tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_vec3 packed_vec3
 3 components vector tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_vec4 packed_vec4
 4 components vector tightly packed in memory of single-precision floating-point numbers.
 
+

Detailed Description

+

Include <glm/gtc/type_aligned.hpp> to use the features of this extension.

+

Aligned types allowing SIMD optimizations of vectors and matrices types

+
+ + + + diff --git a/include/glm/doc/api/a00922.html b/include/glm/doc/api/a00922.html new file mode 100644 index 0000000..1d6d4fc --- /dev/null +++ b/include/glm/doc/api/a00922.html @@ -0,0 +1,9643 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_type_precision + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_type_precision
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef float f32
 Default 32 bit single-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f32, defaultp > f32mat2
 Single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f32, defaultp > f32mat2x2
 Single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f32, defaultp > f32mat2x3
 Single-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f32, defaultp > f32mat2x4
 Single-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f32, defaultp > f32mat3
 Single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f32, defaultp > f32mat3x2
 Single-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f32, defaultp > f32mat3x3
 Single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f32, defaultp > f32mat3x4
 Single-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f32, defaultp > f32mat4
 Single-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f32, defaultp > f32mat4x2
 Single-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f32, defaultp > f32mat4x3
 Single-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f32, defaultp > f32mat4x4
 Single-qualifier floating-point 4x4 matrix. More...
 
typedef qua< f32, defaultp > f32quat
 Single-qualifier floating-point quaternion. More...
 
typedef vec< 1, f32, defaultp > f32vec1
 Single-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, f32, defaultp > f32vec2
 Single-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, f32, defaultp > f32vec3
 Single-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, f32, defaultp > f32vec4
 Single-qualifier floating-point vector of 4 components. More...
 
typedef double f64
 Default 64 bit double-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f64, defaultp > f64mat2
 Double-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f64, defaultp > f64mat2x2
 Double-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f64, defaultp > f64mat2x3
 Double-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f64, defaultp > f64mat2x4
 Double-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f64, defaultp > f64mat3
 Double-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f64, defaultp > f64mat3x2
 Double-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f64, defaultp > f64mat3x3
 Double-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f64, defaultp > f64mat3x4
 Double-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f64, defaultp > f64mat4
 Double-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f64, defaultp > f64mat4x2
 Double-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f64, defaultp > f64mat4x3
 Double-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f64, defaultp > f64mat4x4
 Double-qualifier floating-point 4x4 matrix. More...
 
typedef qua< f64, defaultp > f64quat
 Double-qualifier floating-point quaternion. More...
 
typedef vec< 1, f64, defaultp > f64vec1
 Double-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, f64, defaultp > f64vec2
 Double-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, f64, defaultp > f64vec3
 Double-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, f64, defaultp > f64vec4
 Double-qualifier floating-point vector of 4 components. More...
 
typedef float float32
 Single-qualifier floating-point scalar. More...
 
typedef float float32_t
 Default 32 bit single-qualifier floating-point scalar. More...
 
typedef double float64
 Double-qualifier floating-point scalar. More...
 
typedef double float64_t
 Default 64 bit double-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f32, defaultp > fmat2
 Single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f32, defaultp > fmat2x2
 Single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f32, defaultp > fmat2x3
 Single-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f32, defaultp > fmat2x4
 Single-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f32, defaultp > fmat3
 Single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f32, defaultp > fmat3x2
 Single-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f32, defaultp > fmat3x3
 Single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f32, defaultp > fmat3x4
 Single-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f32, defaultp > fmat4
 Single-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f32, defaultp > fmat4x2
 Single-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f32, defaultp > fmat4x3
 Single-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f32, defaultp > fmat4x4
 Single-qualifier floating-point 4x4 matrix. More...
 
typedef vec< 1, f32, defaultp > fvec1
 Single-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, f32, defaultp > fvec2
 Single-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, f32, defaultp > fvec3
 Single-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, f32, defaultp > fvec4
 Single-qualifier floating-point vector of 4 components. More...
 
typedef float highp_f32
 High 32 bit single-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f32, highp > highp_f32mat2
 High single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f32, highp > highp_f32mat2x2
 High single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f32, highp > highp_f32mat2x3
 High single-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f32, highp > highp_f32mat2x4
 High single-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f32, highp > highp_f32mat3
 High single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f32, highp > highp_f32mat3x2
 High single-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f32, highp > highp_f32mat3x3
 High single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f32, highp > highp_f32mat3x4
 High single-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f32, highp > highp_f32mat4
 High single-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f32, highp > highp_f32mat4x2
 High single-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f32, highp > highp_f32mat4x3
 High single-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f32, highp > highp_f32mat4x4
 High single-qualifier floating-point 4x4 matrix. More...
 
typedef qua< f32, highp > highp_f32quat
 High single-qualifier floating-point quaternion. More...
 
typedef vec< 1, f32, highp > highp_f32vec1
 High single-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, f32, highp > highp_f32vec2
 High single-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, f32, highp > highp_f32vec3
 High single-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, f32, highp > highp_f32vec4
 High single-qualifier floating-point vector of 4 components. More...
 
typedef double highp_f64
 High 64 bit double-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f64, highp > highp_f64mat2
 High double-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f64, highp > highp_f64mat2x2
 High double-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f64, highp > highp_f64mat2x3
 High double-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f64, highp > highp_f64mat2x4
 High double-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f64, highp > highp_f64mat3
 High double-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f64, highp > highp_f64mat3x2
 High double-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f64, highp > highp_f64mat3x3
 High double-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f64, highp > highp_f64mat3x4
 High double-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f64, highp > highp_f64mat4
 High double-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f64, highp > highp_f64mat4x2
 High double-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f64, highp > highp_f64mat4x3
 High double-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f64, highp > highp_f64mat4x4
 High double-qualifier floating-point 4x4 matrix. More...
 
typedef qua< f64, highp > highp_f64quat
 High double-qualifier floating-point quaternion. More...
 
typedef vec< 1, f64, highp > highp_f64vec1
 High double-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, f64, highp > highp_f64vec2
 High double-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, f64, highp > highp_f64vec3
 High double-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, f64, highp > highp_f64vec4
 High double-qualifier floating-point vector of 4 components. More...
 
typedef float highp_float32
 High 32 bit single-qualifier floating-point scalar. More...
 
typedef float highp_float32_t
 High 32 bit single-qualifier floating-point scalar. More...
 
typedef double highp_float64
 High 64 bit double-qualifier floating-point scalar. More...
 
typedef double highp_float64_t
 High 64 bit double-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f32, highp > highp_fmat2
 High single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f32, highp > highp_fmat2x2
 High single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f32, highp > highp_fmat2x3
 High single-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f32, highp > highp_fmat2x4
 High single-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f32, highp > highp_fmat3
 High single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f32, highp > highp_fmat3x2
 High single-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f32, highp > highp_fmat3x3
 High single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f32, highp > highp_fmat3x4
 High single-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f32, highp > highp_fmat4
 High single-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f32, highp > highp_fmat4x2
 High single-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f32, highp > highp_fmat4x3
 High single-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f32, highp > highp_fmat4x4
 High single-qualifier floating-point 4x4 matrix. More...
 
typedef vec< 1, float, highp > highp_fvec1
 High single-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, float, highp > highp_fvec2
 High Single-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, float, highp > highp_fvec3
 High Single-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, float, highp > highp_fvec4
 High Single-qualifier floating-point vector of 4 components. More...
 
typedef int16 highp_i16
 High qualifier 16 bit signed integer type. More...
 
typedef vec< 1, i16, highp > highp_i16vec1
 High qualifier 16 bit signed integer scalar type. More...
 
typedef vec< 2, i16, highp > highp_i16vec2
 High qualifier 16 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i16, highp > highp_i16vec3
 High qualifier 16 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i16, highp > highp_i16vec4
 High qualifier 16 bit signed integer vector of 4 components type. More...
 
typedef int32 highp_i32
 High qualifier 32 bit signed integer type. More...
 
typedef vec< 1, i32, highp > highp_i32vec1
 High qualifier 32 bit signed integer scalar type. More...
 
typedef vec< 2, i32, highp > highp_i32vec2
 High qualifier 32 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i32, highp > highp_i32vec3
 High qualifier 32 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i32, highp > highp_i32vec4
 High qualifier 32 bit signed integer vector of 4 components type. More...
 
typedef int64 highp_i64
 High qualifier 64 bit signed integer type. More...
 
typedef vec< 1, i64, highp > highp_i64vec1
 High qualifier 64 bit signed integer scalar type. More...
 
typedef vec< 2, i64, highp > highp_i64vec2
 High qualifier 64 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i64, highp > highp_i64vec3
 High qualifier 64 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i64, highp > highp_i64vec4
 High qualifier 64 bit signed integer vector of 4 components type. More...
 
typedef int8 highp_i8
 High qualifier 8 bit signed integer type. More...
 
typedef vec< 1, i8, highp > highp_i8vec1
 High qualifier 8 bit signed integer scalar type. More...
 
typedef vec< 2, i8, highp > highp_i8vec2
 High qualifier 8 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i8, highp > highp_i8vec3
 High qualifier 8 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i8, highp > highp_i8vec4
 High qualifier 8 bit signed integer vector of 4 components type. More...
 
typedef int16 highp_int16
 High qualifier 16 bit signed integer type. More...
 
typedef int16 highp_int16_t
 High qualifier 16 bit signed integer type. More...
 
typedef int32 highp_int32
 High qualifier 32 bit signed integer type. More...
 
typedef int32 highp_int32_t
 32 bit signed integer type. More...
 
typedef int64 highp_int64
 High qualifier 64 bit signed integer type. More...
 
typedef int64 highp_int64_t
 High qualifier 64 bit signed integer type. More...
 
typedef int8 highp_int8
 High qualifier 8 bit signed integer type. More...
 
typedef int8 highp_int8_t
 High qualifier 8 bit signed integer type. More...
 
typedef vec< 1, int, highp > highp_ivec1
 High qualifier signed integer vector of 1 component type. More...
 
typedef vec< 2, int, highp > highp_ivec2
 High qualifier signed integer vector of 2 components type. More...
 
typedef vec< 3, int, highp > highp_ivec3
 High qualifier signed integer vector of 3 components type. More...
 
typedef vec< 4, int, highp > highp_ivec4
 High qualifier signed integer vector of 4 components type. More...
 
typedef uint16 highp_u16
 High qualifier 16 bit unsigned integer type. More...
 
typedef vec< 1, u16, highp > highp_u16vec1
 High qualifier 16 bit unsigned integer scalar type. More...
 
typedef vec< 2, u16, highp > highp_u16vec2
 High qualifier 16 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u16, highp > highp_u16vec3
 High qualifier 16 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u16, highp > highp_u16vec4
 High qualifier 16 bit unsigned integer vector of 4 components type. More...
 
typedef uint32 highp_u32
 High qualifier 32 bit unsigned integer type. More...
 
typedef vec< 1, u32, highp > highp_u32vec1
 High qualifier 32 bit unsigned integer scalar type. More...
 
typedef vec< 2, u32, highp > highp_u32vec2
 High qualifier 32 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u32, highp > highp_u32vec3
 High qualifier 32 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u32, highp > highp_u32vec4
 High qualifier 32 bit unsigned integer vector of 4 components type. More...
 
typedef uint64 highp_u64
 High qualifier 64 bit unsigned integer type. More...
 
typedef vec< 1, u64, highp > highp_u64vec1
 High qualifier 64 bit unsigned integer scalar type. More...
 
typedef vec< 2, u64, highp > highp_u64vec2
 High qualifier 64 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u64, highp > highp_u64vec3
 High qualifier 64 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u64, highp > highp_u64vec4
 High qualifier 64 bit unsigned integer vector of 4 components type. More...
 
typedef uint8 highp_u8
 High qualifier 8 bit unsigned integer type. More...
 
typedef vec< 1, u8, highp > highp_u8vec1
 High qualifier 8 bit unsigned integer scalar type. More...
 
typedef vec< 2, u8, highp > highp_u8vec2
 High qualifier 8 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u8, highp > highp_u8vec3
 High qualifier 8 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u8, highp > highp_u8vec4
 High qualifier 8 bit unsigned integer vector of 4 components type. More...
 
typedef uint16 highp_uint16
 High qualifier 16 bit unsigned integer type. More...
 
typedef uint16 highp_uint16_t
 High qualifier 16 bit unsigned integer type. More...
 
typedef uint32 highp_uint32
 High qualifier 32 bit unsigned integer type. More...
 
typedef uint32 highp_uint32_t
 High qualifier 32 bit unsigned integer type. More...
 
typedef uint64 highp_uint64
 High qualifier 64 bit unsigned integer type. More...
 
typedef uint64 highp_uint64_t
 High qualifier 64 bit unsigned integer type. More...
 
typedef uint8 highp_uint8
 High qualifier 8 bit unsigned integer type. More...
 
typedef uint8 highp_uint8_t
 High qualifier 8 bit unsigned integer type. More...
 
typedef vec< 1, uint, highp > highp_uvec1
 High qualifier unsigned integer vector of 1 component type. More...
 
typedef vec< 2, uint, highp > highp_uvec2
 High qualifier unsigned integer vector of 2 components type. More...
 
typedef vec< 3, uint, highp > highp_uvec3
 High qualifier unsigned integer vector of 3 components type. More...
 
typedef vec< 4, uint, highp > highp_uvec4
 High qualifier unsigned integer vector of 4 components type. More...
 
typedef int16 i16
 16 bit signed integer type. More...
 
typedef int32 i32
 32 bit signed integer type. More...
 
typedef int64 i64
 64 bit signed integer type. More...
 
typedef int8 i8
 8 bit signed integer type. More...
 
typedef int16 int16_t
 16 bit signed integer type. More...
 
typedef int32 int32_t
 32 bit signed integer type. More...
 
typedef int64 int64_t
 64 bit signed integer type. More...
 
typedef int8 int8_t
 8 bit signed integer type. More...
 
typedef float lowp_f32
 Low 32 bit single-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f32, lowp > lowp_f32mat2
 Low single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f32, lowp > lowp_f32mat2x2
 Low single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f32, lowp > lowp_f32mat2x3
 Low single-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f32, lowp > lowp_f32mat2x4
 Low single-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f32, lowp > lowp_f32mat3
 Low single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f32, lowp > lowp_f32mat3x2
 Low single-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f32, lowp > lowp_f32mat3x3
 Low single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f32, lowp > lowp_f32mat3x4
 Low single-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f32, lowp > lowp_f32mat4
 Low single-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f32, lowp > lowp_f32mat4x2
 Low single-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f32, lowp > lowp_f32mat4x3
 Low single-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f32, lowp > lowp_f32mat4x4
 Low single-qualifier floating-point 4x4 matrix. More...
 
typedef qua< f32, lowp > lowp_f32quat
 Low single-qualifier floating-point quaternion. More...
 
typedef vec< 1, f32, lowp > lowp_f32vec1
 Low single-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, f32, lowp > lowp_f32vec2
 Low single-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, f32, lowp > lowp_f32vec3
 Low single-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, f32, lowp > lowp_f32vec4
 Low single-qualifier floating-point vector of 4 components. More...
 
typedef double lowp_f64
 Low 64 bit double-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f64, lowp > lowp_f64mat2
 Low double-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f64, lowp > lowp_f64mat2x2
 Low double-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f64, lowp > lowp_f64mat2x3
 Low double-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f64, lowp > lowp_f64mat2x4
 Low double-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f64, lowp > lowp_f64mat3
 Low double-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f64, lowp > lowp_f64mat3x2
 Low double-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f64, lowp > lowp_f64mat3x3
 Low double-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f64, lowp > lowp_f64mat3x4
 Low double-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f64, lowp > lowp_f64mat4
 Low double-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f64, lowp > lowp_f64mat4x2
 Low double-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f64, lowp > lowp_f64mat4x3
 Low double-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f64, lowp > lowp_f64mat4x4
 Low double-qualifier floating-point 4x4 matrix. More...
 
typedef qua< f64, lowp > lowp_f64quat
 Low double-qualifier floating-point quaternion. More...
 
typedef vec< 1, f64, lowp > lowp_f64vec1
 Low double-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, f64, lowp > lowp_f64vec2
 Low double-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, f64, lowp > lowp_f64vec3
 Low double-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, f64, lowp > lowp_f64vec4
 Low double-qualifier floating-point vector of 4 components. More...
 
typedef float lowp_float32
 Low 32 bit single-qualifier floating-point scalar. More...
 
typedef float lowp_float32_t
 Low 32 bit single-qualifier floating-point scalar. More...
 
typedef double lowp_float64
 Low 64 bit double-qualifier floating-point scalar. More...
 
typedef double lowp_float64_t
 Low 64 bit double-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f32, lowp > lowp_fmat2
 Low single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f32, lowp > lowp_fmat2x2
 Low single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f32, lowp > lowp_fmat2x3
 Low single-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f32, lowp > lowp_fmat2x4
 Low single-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f32, lowp > lowp_fmat3
 Low single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f32, lowp > lowp_fmat3x2
 Low single-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f32, lowp > lowp_fmat3x3
 Low single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f32, lowp > lowp_fmat3x4
 Low single-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f32, lowp > lowp_fmat4
 Low single-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f32, lowp > lowp_fmat4x2
 Low single-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f32, lowp > lowp_fmat4x3
 Low single-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f32, lowp > lowp_fmat4x4
 Low single-qualifier floating-point 4x4 matrix. More...
 
typedef vec< 1, float, lowp > lowp_fvec1
 Low single-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, float, lowp > lowp_fvec2
 Low single-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, float, lowp > lowp_fvec3
 Low single-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, float, lowp > lowp_fvec4
 Low single-qualifier floating-point vector of 4 components. More...
 
typedef int16 lowp_i16
 Low qualifier 16 bit signed integer type. More...
 
typedef vec< 1, i16, lowp > lowp_i16vec1
 Low qualifier 16 bit signed integer scalar type. More...
 
typedef vec< 2, i16, lowp > lowp_i16vec2
 Low qualifier 16 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i16, lowp > lowp_i16vec3
 Low qualifier 16 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i16, lowp > lowp_i16vec4
 Low qualifier 16 bit signed integer vector of 4 components type. More...
 
typedef int32 lowp_i32
 Low qualifier 32 bit signed integer type. More...
 
typedef vec< 1, i32, lowp > lowp_i32vec1
 Low qualifier 32 bit signed integer scalar type. More...
 
typedef vec< 2, i32, lowp > lowp_i32vec2
 Low qualifier 32 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i32, lowp > lowp_i32vec3
 Low qualifier 32 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i32, lowp > lowp_i32vec4
 Low qualifier 32 bit signed integer vector of 4 components type. More...
 
typedef int64 lowp_i64
 Low qualifier 64 bit signed integer type. More...
 
typedef vec< 1, i64, lowp > lowp_i64vec1
 Low qualifier 64 bit signed integer scalar type. More...
 
typedef vec< 2, i64, lowp > lowp_i64vec2
 Low qualifier 64 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i64, lowp > lowp_i64vec3
 Low qualifier 64 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i64, lowp > lowp_i64vec4
 Low qualifier 64 bit signed integer vector of 4 components type. More...
 
typedef int8 lowp_i8
 Low qualifier 8 bit signed integer type. More...
 
typedef vec< 1, i8, lowp > lowp_i8vec1
 Low qualifier 8 bit signed integer vector of 1 component type. More...
 
typedef vec< 2, i8, lowp > lowp_i8vec2
 Low qualifier 8 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i8, lowp > lowp_i8vec3
 Low qualifier 8 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i8, lowp > lowp_i8vec4
 Low qualifier 8 bit signed integer vector of 4 components type. More...
 
typedef int16 lowp_int16
 Low qualifier 16 bit signed integer type. More...
 
typedef int16 lowp_int16_t
 Low qualifier 16 bit signed integer type. More...
 
typedef int32 lowp_int32
 Low qualifier 32 bit signed integer type. More...
 
typedef int32 lowp_int32_t
 Low qualifier 32 bit signed integer type. More...
 
typedef int64 lowp_int64
 Low qualifier 64 bit signed integer type. More...
 
typedef int64 lowp_int64_t
 Low qualifier 64 bit signed integer type. More...
 
typedef int8 lowp_int8
 Low qualifier 8 bit signed integer type. More...
 
typedef int8 lowp_int8_t
 Low qualifier 8 bit signed integer type. More...
 
typedef vec< 1, int, lowp > lowp_ivec1
 Low qualifier signed integer vector of 1 component type. More...
 
typedef vec< 2, int, lowp > lowp_ivec2
 Low qualifier signed integer vector of 2 components type. More...
 
typedef vec< 3, int, lowp > lowp_ivec3
 Low qualifier signed integer vector of 3 components type. More...
 
typedef vec< 4, int, lowp > lowp_ivec4
 Low qualifier signed integer vector of 4 components type. More...
 
typedef uint16 lowp_u16
 Low qualifier 16 bit unsigned integer type. More...
 
typedef vec< 1, u16, lowp > lowp_u16vec1
 Low qualifier 16 bit unsigned integer scalar type. More...
 
typedef vec< 2, u16, lowp > lowp_u16vec2
 Low qualifier 16 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u16, lowp > lowp_u16vec3
 Low qualifier 16 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u16, lowp > lowp_u16vec4
 Low qualifier 16 bit unsigned integer vector of 4 components type. More...
 
typedef uint32 lowp_u32
 Low qualifier 32 bit unsigned integer type. More...
 
typedef vec< 1, u32, lowp > lowp_u32vec1
 Low qualifier 32 bit unsigned integer scalar type. More...
 
typedef vec< 2, u32, lowp > lowp_u32vec2
 Low qualifier 32 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u32, lowp > lowp_u32vec3
 Low qualifier 32 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u32, lowp > lowp_u32vec4
 Low qualifier 32 bit unsigned integer vector of 4 components type. More...
 
typedef uint64 lowp_u64
 Low qualifier 64 bit unsigned integer type. More...
 
typedef vec< 1, u64, lowp > lowp_u64vec1
 Low qualifier 64 bit unsigned integer scalar type. More...
 
typedef vec< 2, u64, lowp > lowp_u64vec2
 Low qualifier 64 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u64, lowp > lowp_u64vec3
 Low qualifier 64 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u64, lowp > lowp_u64vec4
 Low qualifier 64 bit unsigned integer vector of 4 components type. More...
 
typedef uint8 lowp_u8
 Low qualifier 8 bit unsigned integer type. More...
 
typedef vec< 1, u8, lowp > lowp_u8vec1
 Low qualifier 8 bit unsigned integer scalar type. More...
 
typedef vec< 2, u8, lowp > lowp_u8vec2
 Low qualifier 8 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u8, lowp > lowp_u8vec3
 Low qualifier 8 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u8, lowp > lowp_u8vec4
 Low qualifier 8 bit unsigned integer vector of 4 components type. More...
 
typedef uint16 lowp_uint16
 Low qualifier 16 bit unsigned integer type. More...
 
typedef uint16 lowp_uint16_t
 Low qualifier 16 bit unsigned integer type. More...
 
typedef uint32 lowp_uint32
 Low qualifier 32 bit unsigned integer type. More...
 
typedef uint32 lowp_uint32_t
 Low qualifier 32 bit unsigned integer type. More...
 
typedef uint64 lowp_uint64
 Low qualifier 64 bit unsigned integer type. More...
 
typedef uint64 lowp_uint64_t
 Low qualifier 64 bit unsigned integer type. More...
 
typedef uint8 lowp_uint8
 Low qualifier 8 bit unsigned integer type. More...
 
typedef uint8 lowp_uint8_t
 Low qualifier 8 bit unsigned integer type. More...
 
typedef vec< 1, uint, lowp > lowp_uvec1
 Low qualifier unsigned integer vector of 1 component type. More...
 
typedef vec< 2, uint, lowp > lowp_uvec2
 Low qualifier unsigned integer vector of 2 components type. More...
 
typedef vec< 3, uint, lowp > lowp_uvec3
 Low qualifier unsigned integer vector of 3 components type. More...
 
typedef vec< 4, uint, lowp > lowp_uvec4
 Low qualifier unsigned integer vector of 4 components type. More...
 
typedef float mediump_f32
 Medium 32 bit single-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f32, mediump > mediump_f32mat2
 Medium single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f32, mediump > mediump_f32mat2x2
 High single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f32, mediump > mediump_f32mat2x3
 Medium single-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f32, mediump > mediump_f32mat2x4
 Medium single-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f32, mediump > mediump_f32mat3
 Medium single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f32, mediump > mediump_f32mat3x2
 Medium single-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f32, mediump > mediump_f32mat3x3
 Medium single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f32, mediump > mediump_f32mat3x4
 Medium single-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f32, mediump > mediump_f32mat4
 Medium single-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f32, mediump > mediump_f32mat4x2
 Medium single-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f32, mediump > mediump_f32mat4x3
 Medium single-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f32, mediump > mediump_f32mat4x4
 Medium single-qualifier floating-point 4x4 matrix. More...
 
typedef qua< f32, mediump > mediump_f32quat
 Medium single-qualifier floating-point quaternion. More...
 
typedef vec< 1, f32, mediump > mediump_f32vec1
 Medium single-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, f32, mediump > mediump_f32vec2
 Medium single-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, f32, mediump > mediump_f32vec3
 Medium single-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, f32, mediump > mediump_f32vec4
 Medium single-qualifier floating-point vector of 4 components. More...
 
typedef double mediump_f64
 Medium 64 bit double-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f64, mediump > mediump_f64mat2
 Medium double-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f64, mediump > mediump_f64mat2x2
 Medium double-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f64, mediump > mediump_f64mat2x3
 Medium double-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f64, mediump > mediump_f64mat2x4
 Medium double-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f64, mediump > mediump_f64mat3
 Medium double-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f64, mediump > mediump_f64mat3x2
 Medium double-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f64, mediump > mediump_f64mat3x3
 Medium double-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f64, mediump > mediump_f64mat3x4
 Medium double-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f64, mediump > mediump_f64mat4
 Medium double-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f64, mediump > mediump_f64mat4x2
 Medium double-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f64, mediump > mediump_f64mat4x3
 Medium double-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f64, mediump > mediump_f64mat4x4
 Medium double-qualifier floating-point 4x4 matrix. More...
 
typedef qua< f64, mediump > mediump_f64quat
 Medium double-qualifier floating-point quaternion. More...
 
typedef vec< 1, f64, mediump > mediump_f64vec1
 Medium double-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, f64, mediump > mediump_f64vec2
 Medium double-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, f64, mediump > mediump_f64vec3
 Medium double-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, f64, mediump > mediump_f64vec4
 Medium double-qualifier floating-point vector of 4 components. More...
 
typedef float mediump_float32
 Medium 32 bit single-qualifier floating-point scalar. More...
 
typedef float mediump_float32_t
 Medium 32 bit single-qualifier floating-point scalar. More...
 
typedef double mediump_float64
 Medium 64 bit double-qualifier floating-point scalar. More...
 
typedef double mediump_float64_t
 Medium 64 bit double-qualifier floating-point scalar. More...
 
typedef mat< 2, 2, f32, mediump > mediump_fmat2
 Medium single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 2, f32, mediump > mediump_fmat2x2
 Medium single-qualifier floating-point 1x1 matrix. More...
 
typedef mat< 2, 3, f32, mediump > mediump_fmat2x3
 Medium single-qualifier floating-point 2x3 matrix. More...
 
typedef mat< 2, 4, f32, mediump > mediump_fmat2x4
 Medium single-qualifier floating-point 2x4 matrix. More...
 
typedef mat< 3, 3, f32, mediump > mediump_fmat3
 Medium single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 2, f32, mediump > mediump_fmat3x2
 Medium single-qualifier floating-point 3x2 matrix. More...
 
typedef mat< 3, 3, f32, mediump > mediump_fmat3x3
 Medium single-qualifier floating-point 3x3 matrix. More...
 
typedef mat< 3, 4, f32, mediump > mediump_fmat3x4
 Medium single-qualifier floating-point 3x4 matrix. More...
 
typedef mat< 4, 4, f32, mediump > mediump_fmat4
 Medium single-qualifier floating-point 4x4 matrix. More...
 
typedef mat< 4, 2, f32, mediump > mediump_fmat4x2
 Medium single-qualifier floating-point 4x2 matrix. More...
 
typedef mat< 4, 3, f32, mediump > mediump_fmat4x3
 Medium single-qualifier floating-point 4x3 matrix. More...
 
typedef mat< 4, 4, f32, mediump > mediump_fmat4x4
 Medium single-qualifier floating-point 4x4 matrix. More...
 
typedef vec< 1, float, mediump > mediump_fvec1
 Medium single-qualifier floating-point vector of 1 component. More...
 
typedef vec< 2, float, mediump > mediump_fvec2
 Medium Single-qualifier floating-point vector of 2 components. More...
 
typedef vec< 3, float, mediump > mediump_fvec3
 Medium Single-qualifier floating-point vector of 3 components. More...
 
typedef vec< 4, float, mediump > mediump_fvec4
 Medium Single-qualifier floating-point vector of 4 components. More...
 
typedef int16 mediump_i16
 Medium qualifier 16 bit signed integer type. More...
 
typedef vec< 1, i16, mediump > mediump_i16vec1
 Medium qualifier 16 bit signed integer scalar type. More...
 
typedef vec< 2, i16, mediump > mediump_i16vec2
 Medium qualifier 16 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i16, mediump > mediump_i16vec3
 Medium qualifier 16 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i16, mediump > mediump_i16vec4
 Medium qualifier 16 bit signed integer vector of 4 components type. More...
 
typedef int32 mediump_i32
 Medium qualifier 32 bit signed integer type. More...
 
typedef vec< 1, i32, mediump > mediump_i32vec1
 Medium qualifier 32 bit signed integer scalar type. More...
 
typedef vec< 2, i32, mediump > mediump_i32vec2
 Medium qualifier 32 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i32, mediump > mediump_i32vec3
 Medium qualifier 32 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i32, mediump > mediump_i32vec4
 Medium qualifier 32 bit signed integer vector of 4 components type. More...
 
typedef int64 mediump_i64
 Medium qualifier 64 bit signed integer type. More...
 
typedef vec< 1, i64, mediump > mediump_i64vec1
 Medium qualifier 64 bit signed integer scalar type. More...
 
typedef vec< 2, i64, mediump > mediump_i64vec2
 Medium qualifier 64 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i64, mediump > mediump_i64vec3
 Medium qualifier 64 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i64, mediump > mediump_i64vec4
 Medium qualifier 64 bit signed integer vector of 4 components type. More...
 
typedef int8 mediump_i8
 Medium qualifier 8 bit signed integer type. More...
 
typedef vec< 1, i8, mediump > mediump_i8vec1
 Medium qualifier 8 bit signed integer scalar type. More...
 
typedef vec< 2, i8, mediump > mediump_i8vec2
 Medium qualifier 8 bit signed integer vector of 2 components type. More...
 
typedef vec< 3, i8, mediump > mediump_i8vec3
 Medium qualifier 8 bit signed integer vector of 3 components type. More...
 
typedef vec< 4, i8, mediump > mediump_i8vec4
 Medium qualifier 8 bit signed integer vector of 4 components type. More...
 
typedef int16 mediump_int16
 Medium qualifier 16 bit signed integer type. More...
 
typedef int16 mediump_int16_t
 Medium qualifier 16 bit signed integer type. More...
 
typedef int32 mediump_int32
 Medium qualifier 32 bit signed integer type. More...
 
typedef int32 mediump_int32_t
 Medium qualifier 32 bit signed integer type. More...
 
typedef int64 mediump_int64
 Medium qualifier 64 bit signed integer type. More...
 
typedef int64 mediump_int64_t
 Medium qualifier 64 bit signed integer type. More...
 
typedef int8 mediump_int8
 Medium qualifier 8 bit signed integer type. More...
 
typedef int8 mediump_int8_t
 Medium qualifier 8 bit signed integer type. More...
 
typedef vec< 1, int, mediump > mediump_ivec1
 Medium qualifier signed integer vector of 1 component type. More...
 
typedef vec< 2, int, mediump > mediump_ivec2
 Medium qualifier signed integer vector of 2 components type. More...
 
typedef vec< 3, int, mediump > mediump_ivec3
 Medium qualifier signed integer vector of 3 components type. More...
 
typedef vec< 4, int, mediump > mediump_ivec4
 Medium qualifier signed integer vector of 4 components type. More...
 
typedef uint16 mediump_u16
 Medium qualifier 16 bit unsigned integer type. More...
 
typedef vec< 1, u16, mediump > mediump_u16vec1
 Medium qualifier 16 bit unsigned integer scalar type. More...
 
typedef vec< 2, u16, mediump > mediump_u16vec2
 Medium qualifier 16 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u16, mediump > mediump_u16vec3
 Medium qualifier 16 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u16, mediump > mediump_u16vec4
 Medium qualifier 16 bit unsigned integer vector of 4 components type. More...
 
typedef uint32 mediump_u32
 Medium qualifier 32 bit unsigned integer type. More...
 
typedef vec< 1, u32, mediump > mediump_u32vec1
 Medium qualifier 32 bit unsigned integer scalar type. More...
 
typedef vec< 2, u32, mediump > mediump_u32vec2
 Medium qualifier 32 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u32, mediump > mediump_u32vec3
 Medium qualifier 32 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u32, mediump > mediump_u32vec4
 Medium qualifier 32 bit unsigned integer vector of 4 components type. More...
 
typedef uint64 mediump_u64
 Medium qualifier 64 bit unsigned integer type. More...
 
typedef vec< 1, u64, mediump > mediump_u64vec1
 Medium qualifier 64 bit unsigned integer scalar type. More...
 
typedef vec< 2, u64, mediump > mediump_u64vec2
 Medium qualifier 64 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u64, mediump > mediump_u64vec3
 Medium qualifier 64 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u64, mediump > mediump_u64vec4
 Medium qualifier 64 bit unsigned integer vector of 4 components type. More...
 
typedef uint8 mediump_u8
 Medium qualifier 8 bit unsigned integer type. More...
 
typedef vec< 1, u8, mediump > mediump_u8vec1
 Medium qualifier 8 bit unsigned integer scalar type. More...
 
typedef vec< 2, u8, mediump > mediump_u8vec2
 Medium qualifier 8 bit unsigned integer vector of 2 components type. More...
 
typedef vec< 3, u8, mediump > mediump_u8vec3
 Medium qualifier 8 bit unsigned integer vector of 3 components type. More...
 
typedef vec< 4, u8, mediump > mediump_u8vec4
 Medium qualifier 8 bit unsigned integer vector of 4 components type. More...
 
typedef uint16 mediump_uint16
 Medium qualifier 16 bit unsigned integer type. More...
 
typedef uint16 mediump_uint16_t
 Medium qualifier 16 bit unsigned integer type. More...
 
typedef uint32 mediump_uint32
 Medium qualifier 32 bit unsigned integer type. More...
 
typedef uint32 mediump_uint32_t
 Medium qualifier 32 bit unsigned integer type. More...
 
typedef uint64 mediump_uint64
 Medium qualifier 64 bit unsigned integer type. More...
 
typedef uint64 mediump_uint64_t
 Medium qualifier 64 bit unsigned integer type. More...
 
typedef uint8 mediump_uint8
 Medium qualifier 8 bit unsigned integer type. More...
 
typedef uint8 mediump_uint8_t
 Medium qualifier 8 bit unsigned integer type. More...
 
typedef vec< 1, uint, mediump > mediump_uvec1
 Medium qualifier unsigned integer vector of 1 component type. More...
 
typedef vec< 2, uint, mediump > mediump_uvec2
 Medium qualifier unsigned integer vector of 2 components type. More...
 
typedef vec< 3, uint, mediump > mediump_uvec3
 Medium qualifier unsigned integer vector of 3 components type. More...
 
typedef vec< 4, uint, mediump > mediump_uvec4
 Medium qualifier unsigned integer vector of 4 components type. More...
 
typedef uint16 u16
 Default qualifier 16 bit unsigned integer type. More...
 
typedef uint32 u32
 Default qualifier 32 bit unsigned integer type. More...
 
typedef uint64 u64
 Default qualifier 64 bit unsigned integer type. More...
 
typedef uint8 u8
 Default qualifier 8 bit unsigned integer type. More...
 
typedef uint16 uint16_t
 Default qualifier 16 bit unsigned integer type. More...
 
typedef uint32 uint32_t
 Default qualifier 32 bit unsigned integer type. More...
 
typedef uint64 uint64_t
 Default qualifier 64 bit unsigned integer type. More...
 
typedef uint8 uint8_t
 Default qualifier 8 bit unsigned integer type. More...
 
+

Detailed Description

+

Include <glm/gtc/type_precision.hpp> to use the features of this extension.

+

Defines specific C++-based qualifier types.

+

Typedef Documentation

+ +

◆ f32

+ +
+
+ + + + +
typedef float32 f32
+
+ +

Default 32 bit single-qualifier floating-point scalar.

+

32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 152 of file fwd.hpp.

+ +
+
+ +

◆ f32mat2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, defaultp > f32mat2
+
+ +

Single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 554 of file fwd.hpp.

+ +
+
+ +

◆ f32mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, defaultp > f32mat2x2
+
+ +

Single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 702 of file fwd.hpp.

+ +
+
+ +

◆ f32mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, defaultp > f32mat2x3
+
+ +

Single-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 703 of file fwd.hpp.

+ +
+
+ +

◆ f32mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, defaultp > f32mat2x4
+
+ +

Single-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 704 of file fwd.hpp.

+ +
+
+ +

◆ f32mat3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, defaultp > f32mat3
+
+ +

Single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 555 of file fwd.hpp.

+ +
+
+ +

◆ f32mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, defaultp > f32mat3x2
+
+ +

Single-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 705 of file fwd.hpp.

+ +
+
+ +

◆ f32mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, defaultp > f32mat3x3
+
+ +

Single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 706 of file fwd.hpp.

+ +
+
+ +

◆ f32mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, defaultp > f32mat3x4
+
+ +

Single-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 707 of file fwd.hpp.

+ +
+
+ +

◆ f32mat4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, defaultp > f32mat4
+
+ +

Single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 556 of file fwd.hpp.

+ +
+
+ +

◆ f32mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, defaultp > f32mat4x2
+
+ +

Single-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 708 of file fwd.hpp.

+ +
+
+ +

◆ f32mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, defaultp > f32mat4x3
+
+ +

Single-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 709 of file fwd.hpp.

+ +
+
+ +

◆ f32mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, defaultp > f32mat4x4
+
+ +

Single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 710 of file fwd.hpp.

+ +
+
+ +

◆ f32quat

+ +
+
+ + + + +
typedef qua< f32, defaultp > f32quat
+
+ +

Single-qualifier floating-point quaternion.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 1220 of file fwd.hpp.

+ +
+
+ +

◆ f32vec1

+ +
+
+ + + + +
typedef vec< 1, f32, defaultp > f32vec1
+
+ +

Single-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 463 of file fwd.hpp.

+ +
+
+ +

◆ f32vec2

+ +
+
+ + + + +
typedef vec< 2, f32, defaultp > f32vec2
+
+ +

Single-qualifier floating-point vector of 2 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 464 of file fwd.hpp.

+ +
+
+ +

◆ f32vec3

+ +
+
+ + + + +
typedef vec< 3, f32, defaultp > f32vec3
+
+ +

Single-qualifier floating-point vector of 3 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 465 of file fwd.hpp.

+ +
+
+ +

◆ f32vec4

+ +
+
+ + + + +
typedef vec< 4, f32, defaultp > f32vec4
+
+ +

Single-qualifier floating-point vector of 4 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 466 of file fwd.hpp.

+ +
+
+ +

◆ f64

+ +
+
+ + + + +
typedef float64 f64
+
+ +

Default 64 bit double-qualifier floating-point scalar.

+

64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 168 of file fwd.hpp.

+ +
+
+ +

◆ f64mat2

+ +
+
+ + + + +
typedef mat< 2, 2, f64, defaultp > f64mat2
+
+ +

Double-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Double-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 586 of file fwd.hpp.

+ +
+
+ +

◆ f64mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f64, defaultp > f64mat2x2
+
+ +

Double-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Double-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 782 of file fwd.hpp.

+ +
+
+ +

◆ f64mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f64, defaultp > f64mat2x3
+
+ +

Double-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 783 of file fwd.hpp.

+ +
+
+ +

◆ f64mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f64, defaultp > f64mat2x4
+
+ +

Double-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 784 of file fwd.hpp.

+ +
+
+ +

◆ f64mat3

+ +
+
+ + + + +
typedef mat< 3, 3, f64, defaultp > f64mat3
+
+ +

Double-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 587 of file fwd.hpp.

+ +
+
+ +

◆ f64mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f64, defaultp > f64mat3x2
+
+ +

Double-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 785 of file fwd.hpp.

+ +
+
+ +

◆ f64mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f64, defaultp > f64mat3x3
+
+ +

Double-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 786 of file fwd.hpp.

+ +
+
+ +

◆ f64mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f64, defaultp > f64mat3x4
+
+ +

Double-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 787 of file fwd.hpp.

+ +
+
+ +

◆ f64mat4

+ +
+
+ + + + +
typedef mat< 4, 4, f64, defaultp > f64mat4
+
+ +

Double-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 588 of file fwd.hpp.

+ +
+
+ +

◆ f64mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f64, defaultp > f64mat4x2
+
+ +

Double-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 788 of file fwd.hpp.

+ +
+
+ +

◆ f64mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f64, defaultp > f64mat4x3
+
+ +

Double-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 789 of file fwd.hpp.

+ +
+
+ +

◆ f64mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f64, defaultp > f64mat4x4
+
+ +

Double-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 790 of file fwd.hpp.

+ +
+
+ +

◆ f64quat

+ +
+
+ + + + +
typedef qua< f64, defaultp > f64quat
+
+ +

Double-qualifier floating-point quaternion.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 1230 of file fwd.hpp.

+ +
+
+ +

◆ f64vec1

+ +
+
+ + + + +
typedef vec< 1, f64, defaultp > f64vec1
+
+ +

Double-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 503 of file fwd.hpp.

+ +
+
+ +

◆ f64vec2

+ +
+
+ + + + +
typedef vec< 2, f64, defaultp > f64vec2
+
+ +

Double-qualifier floating-point vector of 2 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 504 of file fwd.hpp.

+ +
+
+ +

◆ f64vec3

+ +
+
+ + + + +
typedef vec< 3, f64, defaultp > f64vec3
+
+ +

Double-qualifier floating-point vector of 3 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 505 of file fwd.hpp.

+ +
+
+ +

◆ f64vec4

+ +
+
+ + + + +
typedef vec< 4, f64, defaultp > f64vec4
+
+ +

Double-qualifier floating-point vector of 4 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 506 of file fwd.hpp.

+ +
+
+ +

◆ float32

+ +
+
+ + + + +
typedef float float32
+
+ +

Single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 157 of file fwd.hpp.

+ +
+
+ +

◆ float32_t

+ +
+
+ + + + +
typedef float32 float32_t
+
+ +

Default 32 bit single-qualifier floating-point scalar.

+

32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 162 of file fwd.hpp.

+ +
+
+ +

◆ float64

+ +
+
+ + + + +
typedef double float64
+
+ +

Double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 173 of file fwd.hpp.

+ +
+
+ +

◆ float64_t

+ +
+
+ + + + +
typedef float64 float64_t
+
+ +

Default 64 bit double-qualifier floating-point scalar.

+

64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 178 of file fwd.hpp.

+ +
+
+ +

◆ fmat2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, defaultp > fmat2
+
+ +

Single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 538 of file fwd.hpp.

+ +
+
+ +

◆ fmat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, defaultp > fmat2x2
+
+ +

Single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 662 of file fwd.hpp.

+ +
+
+ +

◆ fmat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, defaultp > fmat2x3
+
+ +

Single-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 663 of file fwd.hpp.

+ +
+
+ +

◆ fmat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, defaultp > fmat2x4
+
+ +

Single-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 664 of file fwd.hpp.

+ +
+
+ +

◆ fmat3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, defaultp > fmat3
+
+ +

Single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 539 of file fwd.hpp.

+ +
+
+ +

◆ fmat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, defaultp > fmat3x2
+
+ +

Single-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 665 of file fwd.hpp.

+ +
+
+ +

◆ fmat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, defaultp > fmat3x3
+
+ +

Single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 666 of file fwd.hpp.

+ +
+
+ +

◆ fmat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, defaultp > fmat3x4
+
+ +

Single-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 667 of file fwd.hpp.

+ +
+
+ +

◆ fmat4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, defaultp > fmat4
+
+ +

Single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 540 of file fwd.hpp.

+ +
+
+ +

◆ fmat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, defaultp > fmat4x2
+
+ +

Single-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 668 of file fwd.hpp.

+ +
+
+ +

◆ fmat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, defaultp > fmat4x3
+
+ +

Single-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 669 of file fwd.hpp.

+ +
+
+ +

◆ fmat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, defaultp > fmat4x4
+
+ +

Single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 670 of file fwd.hpp.

+ +
+
+ +

◆ fvec1

+ +
+
+ + + + +
typedef vec< 1, float, defaultp > fvec1
+
+ +

Single-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 443 of file fwd.hpp.

+ +
+
+ +

◆ fvec2

+ +
+
+ + + + +
typedef vec< 2, float, defaultp > fvec2
+
+ +

Single-qualifier floating-point vector of 2 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 444 of file fwd.hpp.

+ +
+
+ +

◆ fvec3

+ +
+
+ + + + +
typedef vec< 3, float, defaultp > fvec3
+
+ +

Single-qualifier floating-point vector of 3 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 445 of file fwd.hpp.

+ +
+
+ +

◆ fvec4

+ +
+
+ + + + +
typedef vec< 4, float, defaultp > fvec4
+
+ +

Single-qualifier floating-point vector of 4 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 446 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32

+ +
+
+ + + + +
typedef float32 highp_f32
+
+ +

High 32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 151 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat2

+ +
+
+ + + + +
typedef highp_f32mat2x2 highp_f32mat2
+
+ +

High single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision High single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 550 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, highp > highp_f32mat2x2
+
+ +

High single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision High single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 692 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, highp > highp_f32mat2x3
+
+ +

High single-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 693 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, highp > highp_f32mat2x4
+
+ +

High single-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 694 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat3

+ +
+
+ + + + +
typedef highp_f32mat3x3 highp_f32mat3
+
+ +

High single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 551 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, highp > highp_f32mat3x2
+
+ +

High single-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 695 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, highp > highp_f32mat3x3
+
+ +

High single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 696 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, highp > highp_f32mat3x4
+
+ +

High single-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 697 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat4

+ +
+
+ + + + +
typedef highp_f32mat4x4 highp_f32mat4
+
+ +

High single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 552 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, highp > highp_f32mat4x2
+
+ +

High single-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 698 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, highp > highp_f32mat4x3
+
+ +

High single-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 699 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, highp > highp_f32mat4x4
+
+ +

High single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 700 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32quat

+ +
+
+ + + + +
typedef qua< f32, highp > highp_f32quat
+
+ +

High single-qualifier floating-point quaternion.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 1219 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32vec1

+ +
+
+ + + + +
typedef vec< 1, f32, highp > highp_f32vec1
+
+ +

High single-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 458 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32vec2

+ +
+
+ + + + +
typedef vec< 2, f32, highp > highp_f32vec2
+
+ +

High single-qualifier floating-point vector of 2 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 459 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32vec3

+ +
+
+ + + + +
typedef vec< 3, f32, highp > highp_f32vec3
+
+ +

High single-qualifier floating-point vector of 3 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 460 of file fwd.hpp.

+ +
+
+ +

◆ highp_f32vec4

+ +
+
+ + + + +
typedef vec< 4, f32, highp > highp_f32vec4
+
+ +

High single-qualifier floating-point vector of 4 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 461 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64

+ +
+
+ + + + +
typedef float64 highp_f64
+
+ +

High 64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 167 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat2

+ +
+
+ + + + +
typedef highp_f64mat2x2 highp_f64mat2
+
+ +

High double-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision High double-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 582 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f64, highp > highp_f64mat2x2
+
+ +

High double-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision High double-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 772 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f64, highp > highp_f64mat2x3
+
+ +

High double-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 773 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f64, highp > highp_f64mat2x4
+
+ +

High double-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 774 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat3

+ +
+
+ + + + +
typedef highp_f64mat3x3 highp_f64mat3
+
+ +

High double-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 583 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f64, highp > highp_f64mat3x2
+
+ +

High double-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 775 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f64, highp > highp_f64mat3x3
+
+ +

High double-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 776 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f64, highp > highp_f64mat3x4
+
+ +

High double-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 777 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat4

+ +
+
+ + + + +
typedef highp_f64mat4x4 highp_f64mat4
+
+ +

High double-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 584 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f64, highp > highp_f64mat4x2
+
+ +

High double-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 778 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f64, highp > highp_f64mat4x3
+
+ +

High double-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 779 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f64, highp > highp_f64mat4x4
+
+ +

High double-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 780 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64quat

+ +
+
+ + + + +
typedef qua< f64, highp > highp_f64quat
+
+ +

High double-qualifier floating-point quaternion.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 1229 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64vec1

+ +
+
+ + + + +
typedef vec< 1, f64, highp > highp_f64vec1
+
+ +

High double-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 498 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64vec2

+ +
+
+ + + + +
typedef vec< 2, f64, highp > highp_f64vec2
+
+ +

High double-qualifier floating-point vector of 2 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 499 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64vec3

+ +
+
+ + + + +
typedef vec< 3, f64, highp > highp_f64vec3
+
+ +

High double-qualifier floating-point vector of 3 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 500 of file fwd.hpp.

+ +
+
+ +

◆ highp_f64vec4

+ +
+
+ + + + +
typedef vec< 4, f64, highp > highp_f64vec4
+
+ +

High double-qualifier floating-point vector of 4 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 501 of file fwd.hpp.

+ +
+
+ +

◆ highp_float32

+ +
+
+ + + + +
typedef float32 highp_float32
+
+ +

High 32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 156 of file fwd.hpp.

+ +
+
+ +

◆ highp_float32_t

+ +
+
+ + + + +
typedef float32 highp_float32_t
+
+ +

High 32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 161 of file fwd.hpp.

+ +
+
+ +

◆ highp_float64

+ +
+
+ + + + +
typedef float64 highp_float64
+
+ +

High 64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 172 of file fwd.hpp.

+ +
+
+ +

◆ highp_float64_t

+ +
+
+ + + + +
typedef float64 highp_float64_t
+
+ +

High 64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 177 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat2

+ +
+
+ + + + +
typedef highp_fmat2x2 highp_fmat2
+
+ +

High single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision High single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 534 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, highp > highp_fmat2x2
+
+ +

High single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision High single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 652 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, highp > highp_fmat2x3
+
+ +

High single-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 653 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, highp > highp_fmat2x4
+
+ +

High single-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 654 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat3

+ +
+
+ + + + +
typedef highp_fmat3x3 highp_fmat3
+
+ +

High single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 535 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, highp > highp_fmat3x2
+
+ +

High single-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 655 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, highp > highp_fmat3x3
+
+ +

High single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 656 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, highp > highp_fmat3x4
+
+ +

High single-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 657 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat4

+ +
+
+ + + + +
typedef highp_fmat4x4 highp_fmat4
+
+ +

High single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 536 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, highp > highp_fmat4x2
+
+ +

High single-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 658 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, highp > highp_fmat4x3
+
+ +

High single-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 659 of file fwd.hpp.

+ +
+
+ +

◆ highp_fmat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, highp > highp_fmat4x4
+
+ +

High single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 660 of file fwd.hpp.

+ +
+
+ +

◆ highp_fvec1

+ +
+
+ + + + +
typedef vec< 1, float, highp > highp_fvec1
+
+ +

High single-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 438 of file fwd.hpp.

+ +
+
+ +

◆ highp_fvec2

+ +
+
+ + + + +
typedef vec< 2, float, highp > highp_fvec2
+
+ +

High Single-qualifier floating-point vector of 2 components.

+
See also
core_precision
+ +

Definition at line 439 of file fwd.hpp.

+ +
+
+ +

◆ highp_fvec3

+ +
+
+ + + + +
typedef vec< 3, float, highp > highp_fvec3
+
+ +

High Single-qualifier floating-point vector of 3 components.

+
See also
core_precision
+ +

Definition at line 440 of file fwd.hpp.

+ +
+
+ +

◆ highp_fvec4

+ +
+
+ + + + +
typedef vec< 4, float, highp > highp_fvec4
+
+ +

High Single-qualifier floating-point vector of 4 components.

+
See also
core_precision
+ +

Definition at line 441 of file fwd.hpp.

+ +
+
+ +

◆ highp_i16

+ +
+
+ + + + +
typedef detail::int16 highp_i16
+
+ +

High qualifier 16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 47 of file fwd.hpp.

+ +
+
+ +

◆ highp_i16vec1

+ +
+
+ + + + +
typedef vec< 1, i16, highp > highp_i16vec1
+
+ +

High qualifier 16 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 254 of file fwd.hpp.

+ +
+
+ +

◆ highp_i16vec2

+ +
+
+ + + + +
typedef vec< 2, i16, highp > highp_i16vec2
+
+ +

High qualifier 16 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 255 of file fwd.hpp.

+ +
+
+ +

◆ highp_i16vec3

+ +
+
+ + + + +
typedef vec< 3, i16, highp > highp_i16vec3
+
+ +

High qualifier 16 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 256 of file fwd.hpp.

+ +
+
+ +

◆ highp_i16vec4

+ +
+
+ + + + +
typedef vec< 4, i16, highp > highp_i16vec4
+
+ +

High qualifier 16 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 257 of file fwd.hpp.

+ +
+
+ +

◆ highp_i32

+ +
+
+ + + + +
typedef detail::int32 highp_i32
+
+ +

High qualifier 32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 61 of file fwd.hpp.

+ +
+
+ +

◆ highp_i32vec1

+ +
+
+ + + + +
typedef vec< 1, i32, highp > highp_i32vec1
+
+ +

High qualifier 32 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 274 of file fwd.hpp.

+ +
+
+ +

◆ highp_i32vec2

+ +
+
+ + + + +
typedef vec< 2, i32, highp > highp_i32vec2
+
+ +

High qualifier 32 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 275 of file fwd.hpp.

+ +
+
+ +

◆ highp_i32vec3

+ +
+
+ + + + +
typedef vec< 3, i32, highp > highp_i32vec3
+
+ +

High qualifier 32 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 276 of file fwd.hpp.

+ +
+
+ +

◆ highp_i32vec4

+ +
+
+ + + + +
typedef vec< 4, i32, highp > highp_i32vec4
+
+ +

High qualifier 32 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 277 of file fwd.hpp.

+ +
+
+ +

◆ highp_i64

+ +
+
+ + + + +
typedef detail::int64 highp_i64
+
+ +

High qualifier 64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 75 of file fwd.hpp.

+ +
+
+ +

◆ highp_i64vec1

+ +
+
+ + + + +
typedef vec< 1, i64, highp > highp_i64vec1
+
+ +

High qualifier 64 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 294 of file fwd.hpp.

+ +
+
+ +

◆ highp_i64vec2

+ +
+
+ + + + +
typedef vec< 2, i64, highp > highp_i64vec2
+
+ +

High qualifier 64 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 295 of file fwd.hpp.

+ +
+
+ +

◆ highp_i64vec3

+ +
+
+ + + + +
typedef vec< 3, i64, highp > highp_i64vec3
+
+ +

High qualifier 64 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 296 of file fwd.hpp.

+ +
+
+ +

◆ highp_i64vec4

+ +
+
+ + + + +
typedef vec< 4, i64, highp > highp_i64vec4
+
+ +

High qualifier 64 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 297 of file fwd.hpp.

+ +
+
+ +

◆ highp_i8

+ +
+
+ + + + +
typedef detail::int8 highp_i8
+
+ +

High qualifier 8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 33 of file fwd.hpp.

+ +
+
+ +

◆ highp_i8vec1

+ +
+
+ + + + +
typedef vec< 1, i8, highp > highp_i8vec1
+
+ +

High qualifier 8 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 234 of file fwd.hpp.

+ +
+
+ +

◆ highp_i8vec2

+ +
+
+ + + + +
typedef vec< 2, i8, highp > highp_i8vec2
+
+ +

High qualifier 8 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 235 of file fwd.hpp.

+ +
+
+ +

◆ highp_i8vec3

+ +
+
+ + + + +
typedef vec< 3, i8, highp > highp_i8vec3
+
+ +

High qualifier 8 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 236 of file fwd.hpp.

+ +
+
+ +

◆ highp_i8vec4

+ +
+
+ + + + +
typedef vec< 4, i8, highp > highp_i8vec4
+
+ +

High qualifier 8 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 237 of file fwd.hpp.

+ +
+
+ +

◆ highp_int16

+ +
+
+ + + + +
typedef detail::int16 highp_int16
+
+ +

High qualifier 16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 52 of file fwd.hpp.

+ +
+
+ +

◆ highp_int16_t

+ +
+
+ + + + +
typedef detail::int16 highp_int16_t
+
+ +

High qualifier 16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 56 of file fwd.hpp.

+ +
+
+ +

◆ highp_int32

+ +
+
+ + + + +
typedef detail::int32 highp_int32
+
+ +

High qualifier 32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 66 of file fwd.hpp.

+ +
+
+ +

◆ highp_int32_t

+ +
+
+ + + + +
typedef detail::int32 highp_int32_t
+
+ +

32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 70 of file fwd.hpp.

+ +
+
+ +

◆ highp_int64

+ +
+
+ + + + +
typedef detail::int64 highp_int64
+
+ +

High qualifier 64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 80 of file fwd.hpp.

+ +
+
+ +

◆ highp_int64_t

+ +
+
+ + + + +
typedef detail::int64 highp_int64_t
+
+ +

High qualifier 64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 84 of file fwd.hpp.

+ +
+
+ +

◆ highp_int8

+ +
+
+ + + + +
typedef detail::int8 highp_int8
+
+ +

High qualifier 8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 38 of file fwd.hpp.

+ +
+
+ +

◆ highp_int8_t

+ +
+
+ + + + +
typedef detail::int8 highp_int8_t
+
+ +

High qualifier 8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 42 of file fwd.hpp.

+ +
+
+ +

◆ highp_ivec1

+ +
+
+ + + + +
typedef vec< 1, int, highp > highp_ivec1
+
+ +

High qualifier signed integer vector of 1 component type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 214 of file fwd.hpp.

+ +
+
+ +

◆ highp_ivec2

+ +
+
+ + + + +
typedef vec< 2, int, highp > highp_ivec2
+
+ +

High qualifier signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 215 of file fwd.hpp.

+ +
+
+ +

◆ highp_ivec3

+ +
+
+ + + + +
typedef vec< 3, int, highp > highp_ivec3
+
+ +

High qualifier signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 216 of file fwd.hpp.

+ +
+
+ +

◆ highp_ivec4

+ +
+
+ + + + +
typedef vec< 4, int, highp > highp_ivec4
+
+ +

High qualifier signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 217 of file fwd.hpp.

+ +
+
+ +

◆ highp_u16

+ +
+
+ + + + +
typedef detail::uint16 highp_u16
+
+ +

High qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 107 of file fwd.hpp.

+ +
+
+ +

◆ highp_u16vec1

+ +
+
+ + + + +
typedef vec< 1, u16, highp > highp_u16vec1
+
+ +

High qualifier 16 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 356 of file fwd.hpp.

+ +
+
+ +

◆ highp_u16vec2

+ +
+
+ + + + +
typedef vec< 2, u16, highp > highp_u16vec2
+
+ +

High qualifier 16 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 357 of file fwd.hpp.

+ +
+
+ +

◆ highp_u16vec3

+ +
+
+ + + + +
typedef vec< 3, u16, highp > highp_u16vec3
+
+ +

High qualifier 16 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 358 of file fwd.hpp.

+ +
+
+ +

◆ highp_u16vec4

+ +
+
+ + + + +
typedef vec< 4, u16, highp > highp_u16vec4
+
+ +

High qualifier 16 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 359 of file fwd.hpp.

+ +
+
+ +

◆ highp_u32

+ +
+
+ + + + +
typedef detail::uint32 highp_u32
+
+ +

High qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 121 of file fwd.hpp.

+ +
+
+ +

◆ highp_u32vec1

+ +
+
+ + + + +
typedef vec< 1, u32, highp > highp_u32vec1
+
+ +

High qualifier 32 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 376 of file fwd.hpp.

+ +
+
+ +

◆ highp_u32vec2

+ +
+
+ + + + +
typedef vec< 2, u32, highp > highp_u32vec2
+
+ +

High qualifier 32 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 377 of file fwd.hpp.

+ +
+
+ +

◆ highp_u32vec3

+ +
+
+ + + + +
typedef vec< 3, u32, highp > highp_u32vec3
+
+ +

High qualifier 32 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 378 of file fwd.hpp.

+ +
+
+ +

◆ highp_u32vec4

+ +
+
+ + + + +
typedef vec< 4, u32, highp > highp_u32vec4
+
+ +

High qualifier 32 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 379 of file fwd.hpp.

+ +
+
+ +

◆ highp_u64

+ +
+
+ + + + +
typedef detail::uint64 highp_u64
+
+ +

High qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 135 of file fwd.hpp.

+ +
+
+ +

◆ highp_u64vec1

+ +
+
+ + + + +
typedef vec< 1, u64, highp > highp_u64vec1
+
+ +

High qualifier 64 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 396 of file fwd.hpp.

+ +
+
+ +

◆ highp_u64vec2

+ +
+
+ + + + +
typedef vec< 2, u64, highp > highp_u64vec2
+
+ +

High qualifier 64 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 397 of file fwd.hpp.

+ +
+
+ +

◆ highp_u64vec3

+ +
+
+ + + + +
typedef vec< 3, u64, highp > highp_u64vec3
+
+ +

High qualifier 64 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 398 of file fwd.hpp.

+ +
+
+ +

◆ highp_u64vec4

+ +
+
+ + + + +
typedef vec< 4, u64, highp > highp_u64vec4
+
+ +

High qualifier 64 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 399 of file fwd.hpp.

+ +
+
+ +

◆ highp_u8

+ +
+
+ + + + +
typedef detail::uint8 highp_u8
+
+ +

High qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 93 of file fwd.hpp.

+ +
+
+ +

◆ highp_u8vec1

+ +
+
+ + + + +
typedef vec< 1, u8, highp > highp_u8vec1
+
+ +

High qualifier 8 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 336 of file fwd.hpp.

+ +
+
+ +

◆ highp_u8vec2

+ +
+
+ + + + +
typedef vec< 2, u8, highp > highp_u8vec2
+
+ +

High qualifier 8 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 337 of file fwd.hpp.

+ +
+
+ +

◆ highp_u8vec3

+ +
+
+ + + + +
typedef vec< 3, u8, highp > highp_u8vec3
+
+ +

High qualifier 8 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 338 of file fwd.hpp.

+ +
+
+ +

◆ highp_u8vec4

+ +
+
+ + + + +
typedef vec< 4, u8, highp > highp_u8vec4
+
+ +

High qualifier 8 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 339 of file fwd.hpp.

+ +
+
+ +

◆ highp_uint16

+ +
+
+ + + + +
typedef detail::uint16 highp_uint16
+
+ +

High qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 112 of file fwd.hpp.

+ +
+
+ +

◆ highp_uint16_t

+ +
+
+ + + + +
typedef detail::uint16 highp_uint16_t
+
+ +

High qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 116 of file fwd.hpp.

+ +
+
+ +

◆ highp_uint32

+ +
+
+ + + + +
typedef detail::uint32 highp_uint32
+
+ +

High qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 126 of file fwd.hpp.

+ +
+
+ +

◆ highp_uint32_t

+ +
+
+ + + + +
typedef detail::uint32 highp_uint32_t
+
+ +

High qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 130 of file fwd.hpp.

+ +
+
+ +

◆ highp_uint64

+ +
+
+ + + + +
typedef detail::uint64 highp_uint64
+
+ +

High qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 140 of file fwd.hpp.

+ +
+
+ +

◆ highp_uint64_t

+ +
+
+ + + + +
typedef detail::uint64 highp_uint64_t
+
+ +

High qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 144 of file fwd.hpp.

+ +
+
+ +

◆ highp_uint8

+ +
+
+ + + + +
typedef detail::uint8 highp_uint8
+
+ +

High qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 98 of file fwd.hpp.

+ +
+
+ +

◆ highp_uint8_t

+ +
+
+ + + + +
typedef detail::uint8 highp_uint8_t
+
+ +

High qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 102 of file fwd.hpp.

+ +
+
+ +

◆ highp_uvec1

+ +
+
+ + + + +
typedef vec< 1, uint, highp > highp_uvec1
+
+ +

High qualifier unsigned integer vector of 1 component type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 316 of file fwd.hpp.

+ +
+
+ +

◆ highp_uvec2

+ +
+
+ + + + +
typedef vec< 2, uint, highp > highp_uvec2
+
+ +

High qualifier unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 317 of file fwd.hpp.

+ +
+
+ +

◆ highp_uvec3

+ +
+
+ + + + +
typedef vec< 3, uint, highp > highp_uvec3
+
+ +

High qualifier unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 318 of file fwd.hpp.

+ +
+
+ +

◆ highp_uvec4

+ +
+
+ + + + +
typedef vec< 4, uint, highp > highp_uvec4
+
+ +

High qualifier unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 319 of file fwd.hpp.

+ +
+
+ +

◆ i16

+ +
+
+ + + + +
typedef detail::int16 i16
+
+ +

16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 48 of file fwd.hpp.

+ +
+
+ +

◆ i32

+ +
+
+ + + + +
typedef detail::int32 i32
+
+ +

32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 62 of file fwd.hpp.

+ +
+
+ +

◆ i64

+ +
+
+ + + + +
typedef detail::int64 i64
+
+ +

64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 76 of file fwd.hpp.

+ +
+
+ +

◆ i8

+ +
+
+ + + + +
typedef detail::int8 i8
+
+ +

8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 34 of file fwd.hpp.

+ +
+
+ +

◆ int16_t

+ +
+
+ + + + +
typedef detail::int16 int16_t
+
+ +

16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 57 of file fwd.hpp.

+ +
+
+ +

◆ int32_t

+ +
+
+ + + + +
typedef detail::int32 int32_t
+
+ +

32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 71 of file fwd.hpp.

+ +
+
+ +

◆ int64_t

+ +
+
+ + + + +
typedef detail::int64 int64_t
+
+ +

64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 85 of file fwd.hpp.

+ +
+
+ +

◆ int8_t

+ +
+
+ + + + +
typedef detail::int8 int8_t
+
+ +

8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 43 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32

+ +
+
+ + + + +
typedef float32 lowp_f32
+
+ +

Low 32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 149 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat2

+ +
+
+ + + + +
typedef lowp_f32mat2x2 lowp_f32mat2
+
+ +

Low single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Low single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 542 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, lowp > lowp_f32mat2x2
+
+ +

Low single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Low single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 672 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, lowp > lowp_f32mat2x3
+
+ +

Low single-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 673 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, lowp > lowp_f32mat2x4
+
+ +

Low single-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 674 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat3

+ +
+
+ + + + +
typedef lowp_f32mat3x3 lowp_f32mat3
+
+ +

Low single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 543 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, lowp > lowp_f32mat3x2
+
+ +

Low single-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 675 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, lowp > lowp_f32mat3x3
+
+ +

Low single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 676 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, lowp > lowp_f32mat3x4
+
+ +

Low single-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 677 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat4

+ +
+
+ + + + +
typedef lowp_f32mat4x4 lowp_f32mat4
+
+ +

Low single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 544 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, lowp > lowp_f32mat4x2
+
+ +

Low single-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 678 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, lowp > lowp_f32mat4x3
+
+ +

Low single-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 679 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, lowp > lowp_f32mat4x4
+
+ +

Low single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 680 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32quat

+ +
+
+ + + + +
typedef qua< f32, lowp > lowp_f32quat
+
+ +

Low single-qualifier floating-point quaternion.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 1217 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32vec1

+ +
+
+ + + + +
typedef vec< 1, f32, lowp > lowp_f32vec1
+
+ +

Low single-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 448 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32vec2

+ +
+
+ + + + +
typedef vec< 2, f32, lowp > lowp_f32vec2
+
+ +

Low single-qualifier floating-point vector of 2 components.

+
See also
core_precision
+ +

Definition at line 449 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32vec3

+ +
+
+ + + + +
typedef vec< 3, f32, lowp > lowp_f32vec3
+
+ +

Low single-qualifier floating-point vector of 3 components.

+
See also
core_precision
+ +

Definition at line 450 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f32vec4

+ +
+
+ + + + +
typedef vec< 4, f32, lowp > lowp_f32vec4
+
+ +

Low single-qualifier floating-point vector of 4 components.

+
See also
core_precision
+ +

Definition at line 451 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64

+ +
+
+ + + + +
typedef float64 lowp_f64
+
+ +

Low 64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 165 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat2

+ +
+
+ + + + +
typedef lowp_f64mat2x2 lowp_f64mat2
+
+ +

Low double-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Low double-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 574 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f64, lowp > lowp_f64mat2x2
+
+ +

Low double-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Low double-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 752 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f64, lowp > lowp_f64mat2x3
+
+ +

Low double-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 753 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f64, lowp > lowp_f64mat2x4
+
+ +

Low double-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 754 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat3

+ +
+
+ + + + +
typedef lowp_f64mat3x3 lowp_f64mat3
+
+ +

Low double-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 575 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f64, lowp > lowp_f64mat3x2
+
+ +

Low double-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 755 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f64, lowp > lowp_f64mat3x3
+
+ +

Low double-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 756 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f64, lowp > lowp_f64mat3x4
+
+ +

Low double-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 757 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat4

+ +
+
+ + + + +
typedef lowp_f64mat4x4 lowp_f64mat4
+
+ +

Low double-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 576 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f64, lowp > lowp_f64mat4x2
+
+ +

Low double-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 758 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f64, lowp > lowp_f64mat4x3
+
+ +

Low double-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 759 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f64, lowp > lowp_f64mat4x4
+
+ +

Low double-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 760 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64quat

+ +
+
+ + + + +
typedef qua< f64, lowp > lowp_f64quat
+
+ +

Low double-qualifier floating-point quaternion.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 1227 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64vec1

+ +
+
+ + + + +
typedef vec< 1, f64, lowp > lowp_f64vec1
+
+ +

Low double-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 488 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64vec2

+ +
+
+ + + + +
typedef vec< 2, f64, lowp > lowp_f64vec2
+
+ +

Low double-qualifier floating-point vector of 2 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 489 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64vec3

+ +
+
+ + + + +
typedef vec< 3, f64, lowp > lowp_f64vec3
+
+ +

Low double-qualifier floating-point vector of 3 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 490 of file fwd.hpp.

+ +
+
+ +

◆ lowp_f64vec4

+ +
+
+ + + + +
typedef vec< 4, f64, lowp > lowp_f64vec4
+
+ +

Low double-qualifier floating-point vector of 4 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 491 of file fwd.hpp.

+ +
+
+ +

◆ lowp_float32

+ +
+
+ + + + +
typedef float32 lowp_float32
+
+ +

Low 32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 154 of file fwd.hpp.

+ +
+
+ +

◆ lowp_float32_t

+ +
+
+ + + + +
typedef float32 lowp_float32_t
+
+ +

Low 32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 159 of file fwd.hpp.

+ +
+
+ +

◆ lowp_float64

+ +
+
+ + + + +
typedef float64 lowp_float64
+
+ +

Low 64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 170 of file fwd.hpp.

+ +
+
+ +

◆ lowp_float64_t

+ +
+
+ + + + +
typedef float64 lowp_float64_t
+
+ +

Low 64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 175 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat2

+ +
+
+ + + + +
typedef lowp_fmat2x2 lowp_fmat2
+
+ +

Low single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Low single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 526 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, lowp > lowp_fmat2x2
+
+ +

Low single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Low single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 632 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, lowp > lowp_fmat2x3
+
+ +

Low single-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 633 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, lowp > lowp_fmat2x4
+
+ +

Low single-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 634 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat3

+ +
+
+ + + + +
typedef lowp_fmat3x3 lowp_fmat3
+
+ +

Low single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 527 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, lowp > lowp_fmat3x2
+
+ +

Low single-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 635 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, lowp > lowp_fmat3x3
+
+ +

Low single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 636 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, lowp > lowp_fmat3x4
+
+ +

Low single-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 637 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat4

+ +
+
+ + + + +
typedef lowp_fmat4x4 lowp_fmat4
+
+ +

Low single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 528 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, lowp > lowp_fmat4x2
+
+ +

Low single-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 638 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, lowp > lowp_fmat4x3
+
+ +

Low single-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 639 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fmat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, lowp > lowp_fmat4x4
+
+ +

Low single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 640 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fvec1

+ +
+
+ + + + +
typedef vec< 1, float, lowp > lowp_fvec1
+
+ +

Low single-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 428 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fvec2

+ +
+
+ + + + +
typedef vec< 2, float, lowp > lowp_fvec2
+
+ +

Low single-qualifier floating-point vector of 2 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 429 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fvec3

+ +
+
+ + + + +
typedef vec< 3, float, lowp > lowp_fvec3
+
+ +

Low single-qualifier floating-point vector of 3 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 430 of file fwd.hpp.

+ +
+
+ +

◆ lowp_fvec4

+ +
+
+ + + + +
typedef vec< 4, float, lowp > lowp_fvec4
+
+ +

Low single-qualifier floating-point vector of 4 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 431 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i16

+ +
+
+ + + + +
typedef detail::int16 lowp_i16
+
+ +

Low qualifier 16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 45 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i16vec1

+ +
+
+ + + + +
typedef vec< 1, i16, lowp > lowp_i16vec1
+
+ +

Low qualifier 16 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 244 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i16vec2

+ +
+
+ + + + +
typedef vec< 2, i16, lowp > lowp_i16vec2
+
+ +

Low qualifier 16 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 245 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i16vec3

+ +
+
+ + + + +
typedef vec< 3, i16, lowp > lowp_i16vec3
+
+ +

Low qualifier 16 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 246 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i16vec4

+ +
+
+ + + + +
typedef vec< 4, i16, lowp > lowp_i16vec4
+
+ +

Low qualifier 16 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 247 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i32

+ +
+
+ + + + +
typedef detail::int32 lowp_i32
+
+ +

Low qualifier 32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 59 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i32vec1

+ +
+
+ + + + +
typedef vec< 1, i32, lowp > lowp_i32vec1
+
+ +

Low qualifier 32 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 264 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i32vec2

+ +
+
+ + + + +
typedef vec< 2, i32, lowp > lowp_i32vec2
+
+ +

Low qualifier 32 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 265 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i32vec3

+ +
+
+ + + + +
typedef vec< 3, i32, lowp > lowp_i32vec3
+
+ +

Low qualifier 32 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 266 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i32vec4

+ +
+
+ + + + +
typedef vec< 4, i32, lowp > lowp_i32vec4
+
+ +

Low qualifier 32 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 267 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i64

+ +
+
+ + + + +
typedef detail::int64 lowp_i64
+
+ +

Low qualifier 64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 73 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i64vec1

+ +
+
+ + + + +
typedef vec< 1, i64, lowp > lowp_i64vec1
+
+ +

Low qualifier 64 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 284 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i64vec2

+ +
+
+ + + + +
typedef vec< 2, i64, lowp > lowp_i64vec2
+
+ +

Low qualifier 64 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 285 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i64vec3

+ +
+
+ + + + +
typedef vec< 3, i64, lowp > lowp_i64vec3
+
+ +

Low qualifier 64 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 286 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i64vec4

+ +
+
+ + + + +
typedef vec< 4, i64, lowp > lowp_i64vec4
+
+ +

Low qualifier 64 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 287 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i8

+ +
+
+ + + + +
typedef detail::int8 lowp_i8
+
+ +

Low qualifier 8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 31 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i8vec1

+ +
+
+ + + + +
typedef vec< 1, i8, lowp > lowp_i8vec1
+
+ +

Low qualifier 8 bit signed integer vector of 1 component type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 224 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i8vec2

+ +
+
+ + + + +
typedef vec< 2, i8, lowp > lowp_i8vec2
+
+ +

Low qualifier 8 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 225 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i8vec3

+ +
+
+ + + + +
typedef vec< 3, i8, lowp > lowp_i8vec3
+
+ +

Low qualifier 8 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 226 of file fwd.hpp.

+ +
+
+ +

◆ lowp_i8vec4

+ +
+
+ + + + +
typedef vec< 4, i8, lowp > lowp_i8vec4
+
+ +

Low qualifier 8 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 227 of file fwd.hpp.

+ +
+
+ +

◆ lowp_int16

+ +
+
+ + + + +
typedef detail::int16 lowp_int16
+
+ +

Low qualifier 16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 50 of file fwd.hpp.

+ +
+
+ +

◆ lowp_int16_t

+ +
+
+ + + + +
typedef detail::int16 lowp_int16_t
+
+ +

Low qualifier 16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 54 of file fwd.hpp.

+ +
+
+ +

◆ lowp_int32

+ +
+
+ + + + +
typedef detail::int32 lowp_int32
+
+ +

Low qualifier 32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 64 of file fwd.hpp.

+ +
+
+ +

◆ lowp_int32_t

+ +
+
+ + + + +
typedef detail::int32 lowp_int32_t
+
+ +

Low qualifier 32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 68 of file fwd.hpp.

+ +
+
+ +

◆ lowp_int64

+ +
+
+ + + + +
typedef detail::int64 lowp_int64
+
+ +

Low qualifier 64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 78 of file fwd.hpp.

+ +
+
+ +

◆ lowp_int64_t

+ +
+
+ + + + +
typedef detail::int64 lowp_int64_t
+
+ +

Low qualifier 64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 82 of file fwd.hpp.

+ +
+
+ +

◆ lowp_int8

+ +
+
+ + + + +
typedef detail::int8 lowp_int8
+
+ +

Low qualifier 8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 36 of file fwd.hpp.

+ +
+
+ +

◆ lowp_int8_t

+ +
+
+ + + + +
typedef detail::int8 lowp_int8_t
+
+ +

Low qualifier 8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 40 of file fwd.hpp.

+ +
+
+ +

◆ lowp_ivec1

+ +
+
+ + + + +
typedef vec< 1, int, lowp > lowp_ivec1
+
+ +

Low qualifier signed integer vector of 1 component type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 204 of file fwd.hpp.

+ +
+
+ +

◆ lowp_ivec2

+ +
+
+ + + + +
typedef vec< 2, int, lowp > lowp_ivec2
+
+ +

Low qualifier signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 205 of file fwd.hpp.

+ +
+
+ +

◆ lowp_ivec3

+ +
+
+ + + + +
typedef vec< 3, int, lowp > lowp_ivec3
+
+ +

Low qualifier signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 206 of file fwd.hpp.

+ +
+
+ +

◆ lowp_ivec4

+ +
+
+ + + + +
typedef vec< 4, int, lowp > lowp_ivec4
+
+ +

Low qualifier signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 207 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u16

+ +
+
+ + + + +
typedef detail::uint16 lowp_u16
+
+ +

Low qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 105 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u16vec1

+ +
+
+ + + + +
typedef vec< 1, u16, lowp > lowp_u16vec1
+
+ +

Low qualifier 16 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 346 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u16vec2

+ +
+
+ + + + +
typedef vec< 2, u16, lowp > lowp_u16vec2
+
+ +

Low qualifier 16 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 347 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u16vec3

+ +
+
+ + + + +
typedef vec< 3, u16, lowp > lowp_u16vec3
+
+ +

Low qualifier 16 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 348 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u16vec4

+ +
+
+ + + + +
typedef vec< 4, u16, lowp > lowp_u16vec4
+
+ +

Low qualifier 16 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 349 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u32

+ +
+
+ + + + +
typedef detail::uint32 lowp_u32
+
+ +

Low qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 119 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u32vec1

+ +
+
+ + + + +
typedef vec< 1, u32, lowp > lowp_u32vec1
+
+ +

Low qualifier 32 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 366 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u32vec2

+ +
+
+ + + + +
typedef vec< 2, u32, lowp > lowp_u32vec2
+
+ +

Low qualifier 32 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 367 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u32vec3

+ +
+
+ + + + +
typedef vec< 3, u32, lowp > lowp_u32vec3
+
+ +

Low qualifier 32 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 368 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u32vec4

+ +
+
+ + + + +
typedef vec< 4, u32, lowp > lowp_u32vec4
+
+ +

Low qualifier 32 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 369 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u64

+ +
+
+ + + + +
typedef detail::uint64 lowp_u64
+
+ +

Low qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 133 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u64vec1

+ +
+
+ + + + +
typedef vec< 1, u64, lowp > lowp_u64vec1
+
+ +

Low qualifier 64 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 386 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u64vec2

+ +
+
+ + + + +
typedef vec< 2, u64, lowp > lowp_u64vec2
+
+ +

Low qualifier 64 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 387 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u64vec3

+ +
+
+ + + + +
typedef vec< 3, u64, lowp > lowp_u64vec3
+
+ +

Low qualifier 64 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 388 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u64vec4

+ +
+
+ + + + +
typedef vec< 4, u64, lowp > lowp_u64vec4
+
+ +

Low qualifier 64 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 389 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u8

+ +
+
+ + + + +
typedef detail::uint8 lowp_u8
+
+ +

Low qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 91 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u8vec1

+ +
+
+ + + + +
typedef vec< 1, u8, lowp > lowp_u8vec1
+
+ +

Low qualifier 8 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 326 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u8vec2

+ +
+
+ + + + +
typedef vec< 2, u8, lowp > lowp_u8vec2
+
+ +

Low qualifier 8 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 327 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u8vec3

+ +
+
+ + + + +
typedef vec< 3, u8, lowp > lowp_u8vec3
+
+ +

Low qualifier 8 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 328 of file fwd.hpp.

+ +
+
+ +

◆ lowp_u8vec4

+ +
+
+ + + + +
typedef vec< 4, u8, lowp > lowp_u8vec4
+
+ +

Low qualifier 8 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 329 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uint16

+ +
+
+ + + + +
typedef detail::uint16 lowp_uint16
+
+ +

Low qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 110 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uint16_t

+ +
+
+ + + + +
typedef detail::uint16 lowp_uint16_t
+
+ +

Low qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 114 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uint32

+ +
+
+ + + + +
typedef detail::uint32 lowp_uint32
+
+ +

Low qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 124 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uint32_t

+ +
+
+ + + + +
typedef detail::uint32 lowp_uint32_t
+
+ +

Low qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 128 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uint64

+ +
+
+ + + + +
typedef detail::uint64 lowp_uint64
+
+ +

Low qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 138 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uint64_t

+ +
+
+ + + + +
typedef detail::uint64 lowp_uint64_t
+
+ +

Low qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 142 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uint8

+ +
+
+ + + + +
typedef detail::uint8 lowp_uint8
+
+ +

Low qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 96 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uint8_t

+ +
+
+ + + + +
typedef detail::uint8 lowp_uint8_t
+
+ +

Low qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 100 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uvec1

+ +
+
+ + + + +
typedef vec< 1, uint, lowp > lowp_uvec1
+
+ +

Low qualifier unsigned integer vector of 1 component type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 306 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uvec2

+ +
+
+ + + + +
typedef vec< 2, uint, lowp > lowp_uvec2
+
+ +

Low qualifier unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 307 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uvec3

+ +
+
+ + + + +
typedef vec< 3, uint, lowp > lowp_uvec3
+
+ +

Low qualifier unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 308 of file fwd.hpp.

+ +
+
+ +

◆ lowp_uvec4

+ +
+
+ + + + +
typedef vec< 4, uint, lowp > lowp_uvec4
+
+ +

Low qualifier unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 309 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32

+ +
+
+ + + + +
typedef float32 mediump_f32
+
+ +

Medium 32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 150 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat2

+ +
+
+ + + + +
typedef mediump_f32mat2x2 mediump_f32mat2
+
+ +

Medium single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Medium single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 546 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, mediump > mediump_f32mat2x2
+
+ +

High single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Low single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 682 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, mediump > mediump_f32mat2x3
+
+ +

Medium single-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 683 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, mediump > mediump_f32mat2x4
+
+ +

Medium single-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 684 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat3

+ +
+
+ + + + +
typedef mediump_f32mat3x3 mediump_f32mat3
+
+ +

Medium single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 547 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, mediump > mediump_f32mat3x2
+
+ +

Medium single-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 685 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, mediump > mediump_f32mat3x3
+
+ +

Medium single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 686 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, mediump > mediump_f32mat3x4
+
+ +

Medium single-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 687 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat4

+ +
+
+ + + + +
typedef mediump_f32mat4x4 mediump_f32mat4
+
+ +

Medium single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 548 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, mediump > mediump_f32mat4x2
+
+ +

Medium single-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 688 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, mediump > mediump_f32mat4x3
+
+ +

Medium single-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 689 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, mediump > mediump_f32mat4x4
+
+ +

Medium single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 690 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32quat

+ +
+
+ + + + +
typedef qua< f32, mediump > mediump_f32quat
+
+ +

Medium single-qualifier floating-point quaternion.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 1218 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32vec1

+ +
+
+ + + + +
typedef vec< 1, f32, mediump > mediump_f32vec1
+
+ +

Medium single-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 453 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32vec2

+ +
+
+ + + + +
typedef vec< 2, f32, mediump > mediump_f32vec2
+
+ +

Medium single-qualifier floating-point vector of 2 components.

+
See also
core_precision
+ +

Definition at line 454 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32vec3

+ +
+
+ + + + +
typedef vec< 3, f32, mediump > mediump_f32vec3
+
+ +

Medium single-qualifier floating-point vector of 3 components.

+
See also
core_precision
+ +

Definition at line 455 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f32vec4

+ +
+
+ + + + +
typedef vec< 4, f32, mediump > mediump_f32vec4
+
+ +

Medium single-qualifier floating-point vector of 4 components.

+
See also
core_precision
+ +

Definition at line 456 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64

+ +
+
+ + + + +
typedef float64 mediump_f64
+
+ +

Medium 64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 166 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat2

+ +
+
+ + + + +
typedef mediump_f64mat2x2 mediump_f64mat2
+
+ +

Medium double-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Medium double-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 578 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f64, mediump > mediump_f64mat2x2
+
+ +

Medium double-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Medium double-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 762 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f64, mediump > mediump_f64mat2x3
+
+ +

Medium double-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 763 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f64, mediump > mediump_f64mat2x4
+
+ +

Medium double-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 764 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat3

+ +
+
+ + + + +
typedef mediump_f64mat3x3 mediump_f64mat3
+
+ +

Medium double-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 579 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f64, mediump > mediump_f64mat3x2
+
+ +

Medium double-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 765 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f64, mediump > mediump_f64mat3x3
+
+ +

Medium double-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 766 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f64, mediump > mediump_f64mat3x4
+
+ +

Medium double-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 767 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat4

+ +
+
+ + + + +
typedef mediump_f64mat4x4 mediump_f64mat4
+
+ +

Medium double-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 580 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f64, mediump > mediump_f64mat4x2
+
+ +

Medium double-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 768 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f64, mediump > mediump_f64mat4x3
+
+ +

Medium double-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 769 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64mat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f64, mediump > mediump_f64mat4x4
+
+ +

Medium double-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 770 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64quat

+ +
+
+ + + + +
typedef qua< f64, mediump > mediump_f64quat
+
+ +

Medium double-qualifier floating-point quaternion.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 1228 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64vec1

+ +
+
+ + + + +
typedef vec< 1, f64, mediump > mediump_f64vec1
+
+ +

Medium double-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 493 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64vec2

+ +
+
+ + + + +
typedef vec< 2, f64, mediump > mediump_f64vec2
+
+ +

Medium double-qualifier floating-point vector of 2 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 494 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64vec3

+ +
+
+ + + + +
typedef vec< 3, f64, mediump > mediump_f64vec3
+
+ +

Medium double-qualifier floating-point vector of 3 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 495 of file fwd.hpp.

+ +
+
+ +

◆ mediump_f64vec4

+ +
+
+ + + + +
typedef vec< 4, f64, mediump > mediump_f64vec4
+
+ +

Medium double-qualifier floating-point vector of 4 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 496 of file fwd.hpp.

+ +
+
+ +

◆ mediump_float32

+ +
+
+ + + + +
typedef float32 mediump_float32
+
+ +

Medium 32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 155 of file fwd.hpp.

+ +
+
+ +

◆ mediump_float32_t

+ +
+
+ + + + +
typedef float32 mediump_float32_t
+
+ +

Medium 32 bit single-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 160 of file fwd.hpp.

+ +
+
+ +

◆ mediump_float64

+ +
+
+ + + + +
typedef float64 mediump_float64
+
+ +

Medium 64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 171 of file fwd.hpp.

+ +
+
+ +

◆ mediump_float64_t

+ +
+
+ + + + +
typedef float64 mediump_float64_t
+
+ +

Medium 64 bit double-qualifier floating-point scalar.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 176 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat2

+ +
+
+ + + + +
typedef mediump_fmat2x2 mediump_fmat2
+
+ +

Medium single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Medium single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 530 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat2x2

+ +
+
+ + + + +
typedef mat< 2, 2, f32, mediump > mediump_fmat2x2
+
+ +

Medium single-qualifier floating-point 1x1 matrix.

+
See also
GLM_GTC_type_precision Medium single-qualifier floating-point 2x2 matrix.
+
+GLM_GTC_type_precision
+ +

Definition at line 642 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat2x3

+ +
+
+ + + + +
typedef mat< 2, 3, f32, mediump > mediump_fmat2x3
+
+ +

Medium single-qualifier floating-point 2x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 643 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat2x4

+ +
+
+ + + + +
typedef mat< 2, 4, f32, mediump > mediump_fmat2x4
+
+ +

Medium single-qualifier floating-point 2x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 644 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat3

+ +
+
+ + + + +
typedef mediump_fmat3x3 mediump_fmat3
+
+ +

Medium single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 531 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat3x2

+ +
+
+ + + + +
typedef mat< 3, 2, f32, mediump > mediump_fmat3x2
+
+ +

Medium single-qualifier floating-point 3x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 645 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat3x3

+ +
+
+ + + + +
typedef mat< 3, 3, f32, mediump > mediump_fmat3x3
+
+ +

Medium single-qualifier floating-point 3x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 646 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat3x4

+ +
+
+ + + + +
typedef mat< 3, 4, f32, mediump > mediump_fmat3x4
+
+ +

Medium single-qualifier floating-point 3x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 647 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat4

+ +
+
+ + + + +
typedef mediump_fmat4x4 mediump_fmat4
+
+ +

Medium single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 532 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat4x2

+ +
+
+ + + + +
typedef mat< 4, 2, f32, mediump > mediump_fmat4x2
+
+ +

Medium single-qualifier floating-point 4x2 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 648 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat4x3

+ +
+
+ + + + +
typedef mat< 4, 3, f32, mediump > mediump_fmat4x3
+
+ +

Medium single-qualifier floating-point 4x3 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 649 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fmat4x4

+ +
+
+ + + + +
typedef mat< 4, 4, f32, mediump > mediump_fmat4x4
+
+ +

Medium single-qualifier floating-point 4x4 matrix.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 650 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fvec1

+ +
+
+ + + + +
typedef vec< 1, float, mediump > mediump_fvec1
+
+ +

Medium single-qualifier floating-point vector of 1 component.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 433 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fvec2

+ +
+
+ + + + +
typedef vec< 2, float, mediump > mediump_fvec2
+
+ +

Medium Single-qualifier floating-point vector of 2 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 434 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fvec3

+ +
+
+ + + + +
typedef vec< 3, float, mediump > mediump_fvec3
+
+ +

Medium Single-qualifier floating-point vector of 3 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 435 of file fwd.hpp.

+ +
+
+ +

◆ mediump_fvec4

+ +
+
+ + + + +
typedef vec< 4, float, mediump > mediump_fvec4
+
+ +

Medium Single-qualifier floating-point vector of 4 components.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 436 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i16

+ +
+
+ + + + +
typedef detail::int16 mediump_i16
+
+ +

Medium qualifier 16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 46 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i16vec1

+ +
+
+ + + + +
typedef vec< 1, i16, mediump > mediump_i16vec1
+
+ +

Medium qualifier 16 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 249 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i16vec2

+ +
+
+ + + + +
typedef vec< 2, i16, mediump > mediump_i16vec2
+
+ +

Medium qualifier 16 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 250 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i16vec3

+ +
+
+ + + + +
typedef vec< 3, i16, mediump > mediump_i16vec3
+
+ +

Medium qualifier 16 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 251 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i16vec4

+ +
+
+ + + + +
typedef vec< 4, i16, mediump > mediump_i16vec4
+
+ +

Medium qualifier 16 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 252 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i32

+ +
+
+ + + + +
typedef detail::int32 mediump_i32
+
+ +

Medium qualifier 32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 60 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i32vec1

+ +
+
+ + + + +
typedef vec< 1, i32, mediump > mediump_i32vec1
+
+ +

Medium qualifier 32 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 269 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i32vec2

+ +
+
+ + + + +
typedef vec< 2, i32, mediump > mediump_i32vec2
+
+ +

Medium qualifier 32 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 270 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i32vec3

+ +
+
+ + + + +
typedef vec< 3, i32, mediump > mediump_i32vec3
+
+ +

Medium qualifier 32 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 271 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i32vec4

+ +
+
+ + + + +
typedef vec< 4, i32, mediump > mediump_i32vec4
+
+ +

Medium qualifier 32 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 272 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i64

+ +
+
+ + + + +
typedef detail::int64 mediump_i64
+
+ +

Medium qualifier 64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 74 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i64vec1

+ +
+
+ + + + +
typedef vec< 1, i64, mediump > mediump_i64vec1
+
+ +

Medium qualifier 64 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 289 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i64vec2

+ +
+
+ + + + +
typedef vec< 2, i64, mediump > mediump_i64vec2
+
+ +

Medium qualifier 64 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 290 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i64vec3

+ +
+
+ + + + +
typedef vec< 3, i64, mediump > mediump_i64vec3
+
+ +

Medium qualifier 64 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 291 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i64vec4

+ +
+
+ + + + +
typedef vec< 4, i64, mediump > mediump_i64vec4
+
+ +

Medium qualifier 64 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 292 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i8

+ +
+
+ + + + +
typedef detail::int8 mediump_i8
+
+ +

Medium qualifier 8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 32 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i8vec1

+ +
+
+ + + + +
typedef vec< 1, i8, mediump > mediump_i8vec1
+
+ +

Medium qualifier 8 bit signed integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 229 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i8vec2

+ +
+
+ + + + +
typedef vec< 2, i8, mediump > mediump_i8vec2
+
+ +

Medium qualifier 8 bit signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 230 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i8vec3

+ +
+
+ + + + +
typedef vec< 3, i8, mediump > mediump_i8vec3
+
+ +

Medium qualifier 8 bit signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 231 of file fwd.hpp.

+ +
+
+ +

◆ mediump_i8vec4

+ +
+
+ + + + +
typedef vec< 4, i8, mediump > mediump_i8vec4
+
+ +

Medium qualifier 8 bit signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 232 of file fwd.hpp.

+ +
+
+ +

◆ mediump_int16

+ +
+
+ + + + +
typedef detail::int16 mediump_int16
+
+ +

Medium qualifier 16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 51 of file fwd.hpp.

+ +
+
+ +

◆ mediump_int16_t

+ +
+
+ + + + +
typedef detail::int16 mediump_int16_t
+
+ +

Medium qualifier 16 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 55 of file fwd.hpp.

+ +
+
+ +

◆ mediump_int32

+ +
+
+ + + + +
typedef detail::int32 mediump_int32
+
+ +

Medium qualifier 32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 65 of file fwd.hpp.

+ +
+
+ +

◆ mediump_int32_t

+ +
+
+ + + + +
typedef detail::int32 mediump_int32_t
+
+ +

Medium qualifier 32 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 69 of file fwd.hpp.

+ +
+
+ +

◆ mediump_int64

+ +
+
+ + + + +
typedef detail::int64 mediump_int64
+
+ +

Medium qualifier 64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 79 of file fwd.hpp.

+ +
+
+ +

◆ mediump_int64_t

+ +
+
+ + + + +
typedef detail::int64 mediump_int64_t
+
+ +

Medium qualifier 64 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 83 of file fwd.hpp.

+ +
+
+ +

◆ mediump_int8

+ +
+
+ + + + +
typedef detail::int8 mediump_int8
+
+ +

Medium qualifier 8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 37 of file fwd.hpp.

+ +
+
+ +

◆ mediump_int8_t

+ +
+
+ + + + +
typedef detail::int8 mediump_int8_t
+
+ +

Medium qualifier 8 bit signed integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 41 of file fwd.hpp.

+ +
+
+ +

◆ mediump_ivec1

+ +
+
+ + + + +
typedef vec< 1, int, mediump > mediump_ivec1
+
+ +

Medium qualifier signed integer vector of 1 component type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 209 of file fwd.hpp.

+ +
+
+ +

◆ mediump_ivec2

+ +
+
+ + + + +
typedef vec< 2, int, mediump > mediump_ivec2
+
+ +

Medium qualifier signed integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 210 of file fwd.hpp.

+ +
+
+ +

◆ mediump_ivec3

+ +
+
+ + + + +
typedef vec< 3, int, mediump > mediump_ivec3
+
+ +

Medium qualifier signed integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 211 of file fwd.hpp.

+ +
+
+ +

◆ mediump_ivec4

+ +
+
+ + + + +
typedef vec< 4, int, mediump > mediump_ivec4
+
+ +

Medium qualifier signed integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 212 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u16

+ +
+
+ + + + +
typedef detail::uint16 mediump_u16
+
+ +

Medium qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 106 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u16vec1

+ +
+
+ + + + +
typedef vec< 1, u16, mediump > mediump_u16vec1
+
+ +

Medium qualifier 16 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 351 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u16vec2

+ +
+
+ + + + +
typedef vec< 2, u16, mediump > mediump_u16vec2
+
+ +

Medium qualifier 16 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 352 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u16vec3

+ +
+
+ + + + +
typedef vec< 3, u16, mediump > mediump_u16vec3
+
+ +

Medium qualifier 16 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 353 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u16vec4

+ +
+
+ + + + +
typedef vec< 4, u16, mediump > mediump_u16vec4
+
+ +

Medium qualifier 16 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 354 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u32

+ +
+
+ + + + +
typedef detail::uint32 mediump_u32
+
+ +

Medium qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 120 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u32vec1

+ +
+
+ + + + +
typedef vec< 1, u32, mediump > mediump_u32vec1
+
+ +

Medium qualifier 32 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 371 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u32vec2

+ +
+
+ + + + +
typedef vec< 2, u32, mediump > mediump_u32vec2
+
+ +

Medium qualifier 32 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 372 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u32vec3

+ +
+
+ + + + +
typedef vec< 3, u32, mediump > mediump_u32vec3
+
+ +

Medium qualifier 32 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 373 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u32vec4

+ +
+
+ + + + +
typedef vec< 4, u32, mediump > mediump_u32vec4
+
+ +

Medium qualifier 32 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 374 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u64

+ +
+
+ + + + +
typedef detail::uint64 mediump_u64
+
+ +

Medium qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 134 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u64vec1

+ +
+
+ + + + +
typedef vec< 1, u64, mediump > mediump_u64vec1
+
+ +

Medium qualifier 64 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 391 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u64vec2

+ +
+
+ + + + +
typedef vec< 2, u64, mediump > mediump_u64vec2
+
+ +

Medium qualifier 64 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 392 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u64vec3

+ +
+
+ + + + +
typedef vec< 3, u64, mediump > mediump_u64vec3
+
+ +

Medium qualifier 64 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 393 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u64vec4

+ +
+
+ + + + +
typedef vec< 4, u64, mediump > mediump_u64vec4
+
+ +

Medium qualifier 64 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 394 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u8

+ +
+
+ + + + +
typedef detail::uint8 mediump_u8
+
+ +

Medium qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 92 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u8vec1

+ +
+
+ + + + +
typedef vec< 1, u8, mediump > mediump_u8vec1
+
+ +

Medium qualifier 8 bit unsigned integer scalar type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 331 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u8vec2

+ +
+
+ + + + +
typedef vec< 2, u8, mediump > mediump_u8vec2
+
+ +

Medium qualifier 8 bit unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 332 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u8vec3

+ +
+
+ + + + +
typedef vec< 3, u8, mediump > mediump_u8vec3
+
+ +

Medium qualifier 8 bit unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 333 of file fwd.hpp.

+ +
+
+ +

◆ mediump_u8vec4

+ +
+
+ + + + +
typedef vec< 4, u8, mediump > mediump_u8vec4
+
+ +

Medium qualifier 8 bit unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 334 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uint16

+ +
+
+ + + + +
typedef detail::uint16 mediump_uint16
+
+ +

Medium qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 111 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uint16_t

+ +
+
+ + + + +
typedef detail::uint16 mediump_uint16_t
+
+ +

Medium qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 115 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uint32

+ +
+
+ + + + +
typedef detail::uint32 mediump_uint32
+
+ +

Medium qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 125 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uint32_t

+ +
+
+ + + + +
typedef detail::uint32 mediump_uint32_t
+
+ +

Medium qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 129 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uint64

+ +
+
+ + + + +
typedef detail::uint64 mediump_uint64
+
+ +

Medium qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 139 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uint64_t

+ +
+
+ + + + +
typedef detail::uint64 mediump_uint64_t
+
+ +

Medium qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 143 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uint8

+ +
+
+ + + + +
typedef detail::uint8 mediump_uint8
+
+ +

Medium qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 97 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uint8_t

+ +
+
+ + + + +
typedef detail::uint8 mediump_uint8_t
+
+ +

Medium qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 101 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uvec1

+ +
+
+ + + + +
typedef vec< 1, uint, mediump > mediump_uvec1
+
+ +

Medium qualifier unsigned integer vector of 1 component type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 311 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uvec2

+ +
+
+ + + + +
typedef vec< 2, uint, mediump > mediump_uvec2
+
+ +

Medium qualifier unsigned integer vector of 2 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 312 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uvec3

+ +
+
+ + + + +
typedef vec< 3, uint, mediump > mediump_uvec3
+
+ +

Medium qualifier unsigned integer vector of 3 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 313 of file fwd.hpp.

+ +
+
+ +

◆ mediump_uvec4

+ +
+
+ + + + +
typedef vec< 4, uint, mediump > mediump_uvec4
+
+ +

Medium qualifier unsigned integer vector of 4 components type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 314 of file fwd.hpp.

+ +
+
+ +

◆ u16

+ +
+
+ + + + +
typedef detail::uint16 u16
+
+ +

Default qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 108 of file fwd.hpp.

+ +
+
+ +

◆ u32

+ +
+
+ + + + +
typedef detail::uint32 u32
+
+ +

Default qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 122 of file fwd.hpp.

+ +
+
+ +

◆ u64

+ +
+
+ + + + +
typedef detail::uint64 u64
+
+ +

Default qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 136 of file fwd.hpp.

+ +
+
+ +

◆ u8

+ +
+
+ + + + +
typedef detail::uint8 u8
+
+ +

Default qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 94 of file fwd.hpp.

+ +
+
+ +

◆ uint16_t

+ +
+
+ + + + +
typedef detail::uint16 uint16_t
+
+ +

Default qualifier 16 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 117 of file fwd.hpp.

+ +
+
+ +

◆ uint32_t

+ +
+
+ + + + +
typedef detail::uint32 uint32_t
+
+ +

Default qualifier 32 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 131 of file fwd.hpp.

+ +
+
+ +

◆ uint64_t

+ +
+
+ + + + +
typedef detail::uint64 uint64_t
+
+ +

Default qualifier 64 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 145 of file fwd.hpp.

+ +
+
+ +

◆ uint8_t

+ +
+
+ + + + +
typedef detail::uint8 uint8_t
+
+ +

Default qualifier 8 bit unsigned integer type.

+
See also
GLM_GTC_type_precision
+ +

Definition at line 103 of file fwd.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00923.html b/include/glm/doc/api/a00923.html new file mode 100644 index 0000000..71d01ba --- /dev/null +++ b/include/glm/doc/api/a00923.html @@ -0,0 +1,927 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_type_ptr + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTC_type_ptr
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL mat< 2, 2, T, defaultp > make_mat2 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 2, 2, T, defaultp > make_mat2x2 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 2, 3, T, defaultp > make_mat2x3 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 2, 4, T, defaultp > make_mat2x4 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 3, T, defaultp > make_mat3 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 2, T, defaultp > make_mat3x2 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 3, T, defaultp > make_mat3x3 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 4, T, defaultp > make_mat3x4 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > make_mat4 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 2, T, defaultp > make_mat4x2 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 3, T, defaultp > make_mat4x3 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > make_mat4x4 (T const *const ptr)
 Build a matrix from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL qua< T, defaultp > make_quat (T const *const ptr)
 Build a quaternion from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, T, Q > make_vec1 (vec< 1, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, T, Q > make_vec1 (vec< 2, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, T, Q > make_vec1 (vec< 3, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, T, Q > make_vec1 (vec< 4, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL vec< 2, T, defaultp > make_vec2 (T const *const ptr)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > make_vec2 (vec< 1, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > make_vec2 (vec< 2, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > make_vec2 (vec< 3, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > make_vec2 (vec< 4, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL vec< 3, T, defaultp > make_vec3 (T const *const ptr)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > make_vec3 (vec< 1, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > make_vec3 (vec< 2, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > make_vec3 (vec< 3, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > make_vec3 (vec< 4, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T >
GLM_FUNC_DECL vec< 4, T, defaultp > make_vec4 (T const *const ptr)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > make_vec4 (vec< 1, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > make_vec4 (vec< 2, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > make_vec4 (vec< 3, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > make_vec4 (vec< 4, T, Q > const &v)
 Build a vector from a pointer. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type const * value_ptr (genType const &v)
 Return the constant address to the data of the input parameter. More...
 
+

Detailed Description

+

Include <glm/gtc/type_ptr.hpp> to use the features of this extension.

+

Handles the interaction between pointers and vector, matrix types.

+

This extension defines an overloaded function, glm::value_ptr. It returns a pointer to the memory layout of the object. Matrix types store their values in column-major order.

+

This is useful for uploading data to matrices or copying data to buffer objects.

+

Example:

#include <glm/glm.hpp>
+ +
+
glm::vec3 aVector(3);
+
glm::mat4 someMatrix(1.0);
+
+
glUniform3fv(uniformLoc, 1, glm::value_ptr(aVector));
+
glUniformMatrix4fv(uniformMatrixLoc, 1, GL_FALSE, glm::value_ptr(someMatrix));
+

<glm/gtc/type_ptr.hpp> need to be included to use the features of this extension.

+

Function Documentation

+ +

◆ make_mat2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 2, T, defaultp> glm::make_mat2 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat2x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 2, T, defaultp> glm::make_mat2x2 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat2x3()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 3, T, defaultp> glm::make_mat2x3 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat2x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 4, T, defaultp> glm::make_mat2x4 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat3()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, defaultp> glm::make_mat3 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat3x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 2, T, defaultp> glm::make_mat3x2 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat3x3()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, defaultp> glm::make_mat3x3 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat3x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 4, T, defaultp> glm::make_mat3x4 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::make_mat4 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat4x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 2, T, defaultp> glm::make_mat4x2 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat4x3()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 3, T, defaultp> glm::make_mat4x3 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_mat4x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::make_mat4x4 (T const *const ptr)
+
+ +

Build a matrix from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_quat()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL qua<T, defaultp> glm::make_quat (T const *const ptr)
+
+ +

Build a quaternion from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec1() [1/4]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<1, T, Q> glm::make_vec1 (vec< 1, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec1() [2/4]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<1, T, Q> glm::make_vec1 (vec< 2, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec1() [3/4]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<1, T, Q> glm::make_vec1 (vec< 3, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec1() [4/4]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<1, T, Q> glm::make_vec1 (vec< 4, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec2() [1/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<2, T, defaultp> glm::make_vec2 (T const *const ptr)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec2() [2/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<2, T, Q> glm::make_vec2 (vec< 1, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec2() [3/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<2, T, Q> glm::make_vec2 (vec< 2, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec2() [4/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<2, T, Q> glm::make_vec2 (vec< 3, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec2() [5/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<2, T, Q> glm::make_vec2 (vec< 4, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec3() [1/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, defaultp> glm::make_vec3 (T const *const ptr)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec3() [2/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::make_vec3 (vec< 1, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec3() [3/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::make_vec3 (vec< 2, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec3() [4/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::make_vec3 (vec< 3, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec3() [5/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::make_vec3 (vec< 4, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec4() [1/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<4, T, defaultp> glm::make_vec4 (T const *const ptr)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec4() [2/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::make_vec4 (vec< 1, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec4() [3/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::make_vec4 (vec< 2, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec4() [4/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::make_vec4 (vec< 3, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ make_vec4() [5/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::make_vec4 (vec< 4, T, Q > const & v)
+
+ +

Build a vector from a pointer.

+
See also
GLM_GTC_type_ptr
+ +
+
+ +

◆ value_ptr()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType::value_type const* glm::value_ptr (genType const & v)
+
+ +

Return the constant address to the data of the input parameter.

+
See also
GLM_GTC_type_ptr
+ +
+
+
+
mat< 4, 4, float, defaultp > mat4
4 columns of 4 components matrix of single-precision floating-point numbers.
+
GLM_FUNC_DECL genType::value_type const * value_ptr(genType const &v)
Return the constant address to the data of the input parameter.
+
vec< 3, float, defaultp > vec3
3 components vector of single-precision floating-point numbers.
+
GLM_GTC_type_ptr
+ + + + diff --git a/include/glm/doc/api/a00924.html b/include/glm/doc/api/a00924.html new file mode 100644 index 0000000..a287597 --- /dev/null +++ b/include/glm/doc/api/a00924.html @@ -0,0 +1,621 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_ulp + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

GLM_FUNC_DECL int64 float_distance (double x, double y)
 Return the distance in the number of ULP between 2 double-precision floating-point scalars. More...
 
GLM_FUNC_DECL int float_distance (float x, float y)
 Return the distance in the number of ULP between 2 single-precision floating-point scalars. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int64, Q > float_distance (vec< L, double, Q > const &x, vec< L, double, Q > const &y)
 Return the distance in the number of ULP between 2 double-precision floating-point scalars. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > float_distance (vec< L, float, Q > const &x, vec< L, float, Q > const &y)
 Return the distance in the number of ULP between 2 single-precision floating-point scalars. More...
 
template<typename genType >
GLM_FUNC_DECL genType next_float (genType x)
 Return the next ULP value(s) after the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType next_float (genType x, int ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > next_float (vec< L, T, Q > const &x)
 Return the next ULP value(s) after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > next_float (vec< L, T, Q > const &x, int ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > next_float (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
 Return the value(s) ULP distance after the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType prev_float (genType x)
 Return the previous ULP value(s) before the input value(s). More...
 
template<typename genType >
GLM_FUNC_DECL genType prev_float (genType x, int ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prev_float (vec< L, T, Q > const &x)
 Return the previous ULP value(s) before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prev_float (vec< L, T, Q > const &x, int ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > prev_float (vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)
 Return the value(s) ULP distance before the input value(s). More...
 
+

Detailed Description

+

Include <glm/gtc/ulp.hpp> to use the features of this extension.

+

Allow the measurement of the accuracy of a function against a reference implementation. This extension works on floating-point data and provide results in ULP.

+

Function Documentation

+ +

◆ float_distance() [1/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int64 glm::float_distance (double x,
double y 
)
+
+ +

Return the distance in the number of ULP between 2 double-precision floating-point scalars.

+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ float_distance() [2/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int glm::float_distance (float x,
float y 
)
+
+ +

Return the distance in the number of ULP between 2 single-precision floating-point scalars.

+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ float_distance() [3/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, int64, Q> glm::float_distance (vec< L, double, Q > const & x,
vec< L, double, Q > const & y 
)
+
+ +

Return the distance in the number of ULP between 2 double-precision floating-point scalars.

+
Template Parameters
+ + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
QValue from qualifier enum
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ float_distance() [4/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, int, Q> glm::float_distance (vec< L, float, Q > const & x,
vec< L, float, Q > const & y 
)
+
+ +

Return the distance in the number of ULP between 2 single-precision floating-point scalars.

+
Template Parameters
+ + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
QValue from qualifier enum
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ next_float() [1/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::next_float (genType x)
+
+ +

Return the next ULP value(s) after the input value(s).

+
Template Parameters
+ + +
genTypeA floating-point scalar type.
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ next_float() [2/5]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::next_float (genType x,
int ULPs 
)
+
+ +

Return the value(s) ULP distance after the input value(s).

+
Template Parameters
+ + +
genTypeA floating-point scalar type.
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ next_float() [3/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::next_float (vec< L, T, Q > const & x)
+
+ +

Return the next ULP value(s) after the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ next_float() [4/5]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::next_float (vec< L, T, Q > const & x,
int ULPs 
)
+
+ +

Return the value(s) ULP distance after the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ next_float() [5/5]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::next_float (vec< L, T, Q > const & x,
vec< L, int, Q > const & ULPs 
)
+
+ +

Return the value(s) ULP distance after the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ prev_float() [1/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::prev_float (genType x)
+
+ +

Return the previous ULP value(s) before the input value(s).

+
Template Parameters
+ + +
genTypeA floating-point scalar type.
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ prev_float() [2/5]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::prev_float (genType x,
int ULPs 
)
+
+ +

Return the value(s) ULP distance before the input value(s).

+
Template Parameters
+ + +
genTypeA floating-point scalar type.
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ prev_float() [3/5]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::prev_float (vec< L, T, Q > const & x)
+
+ +

Return the previous ULP value(s) before the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ prev_float() [4/5]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::prev_float (vec< L, T, Q > const & x,
int ULPs 
)
+
+ +

Return the value(s) ULP distance before the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_GTC_ulp
+ +
+
+ +

◆ prev_float() [5/5]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::prev_float (vec< L, T, Q > const & x,
vec< L, int, Q > const & ULPs 
)
+
+ +

Return the value(s) ULP distance before the input value(s).

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point
QValue from qualifier enum
+
+
+
See also
GLM_GTC_ulp
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00925.html b/include/glm/doc/api/a00925.html new file mode 100644 index 0000000..7819ed7 --- /dev/null +++ b/include/glm/doc/api/a00925.html @@ -0,0 +1,79 @@ + + + + + + + +1.0.2 API documentation: GLM_GTC_vec1 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
+
+
+

Include <glm/gtc/vec1.hpp> to use the features of this extension.

+

Add vec1, ivec1, uvec1 and bvec1 types.

+
+ + + + diff --git a/include/glm/doc/api/a00926.html b/include/glm/doc/api/a00926.html new file mode 100644 index 0000000..70acd7f --- /dev/null +++ b/include/glm/doc/api/a00926.html @@ -0,0 +1,1388 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_associated_min_max + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_associated_min_max
+
+
+ +

Min and max functions that return associated values not the compared ones. +More...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , typename U >
GLM_FUNC_DECL U associatedMax (T x, U a, T y, U b)
 Maximum comparison between 2 variables and returns 2 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMax (T x, U a, T y, U b, T z, U c)
 Maximum comparison between 3 variables and returns 3 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMax (T x, U a, T y, U b, T z, U c, T w, U d)
 Maximum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > associatedMax (T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b)
 Maximum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > associatedMax (T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c)
 Maximum comparison between 3 variables and returns 3 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c, T w, vec< L, U, Q > const &d)
 Maximum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b)
 Maximum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c)
 Maximum comparison between 3 variables and returns 3 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)
 Maximum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b)
 Maximum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c)
 Maximum comparison between 3 variables and returns 3 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMax (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c, vec< L, T, Q > const &w, vec< L, U, Q > const &d)
 Maximum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (T x, const vec< L, U, Q > &a, T y, const vec< L, U, Q > &b)
 Minimum comparison between 2 variables and returns 2 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMin (T x, U a, T y, U b)
 Minimum comparison between 2 variables and returns 2 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMin (T x, U a, T y, U b, T z, U c)
 Minimum comparison between 3 variables and returns 3 associated variable values. More...
 
template<typename T , typename U >
GLM_FUNC_DECL U associatedMin (T x, U a, T y, U b, T z, U c, T w, U d)
 Minimum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c, T w, vec< L, U, Q > const &d)
 Minimum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b)
 Minimum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)
 Minimum comparison between 4 variables and returns 4 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b)
 Minimum comparison between 2 variables and returns 2 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c)
 Minimum comparison between 3 variables and returns 3 associated variable values. More...
 
template<length_t L, typename T , typename U , qualifier Q>
GLM_FUNC_DECL vec< L, U, Q > associatedMin (vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c, vec< L, T, Q > const &w, vec< L, U, Q > const &d)
 Minimum comparison between 4 variables and returns 4 associated variable values. More...
 
+

Detailed Description

+

Min and max functions that return associated values not the compared ones.

+

Include <glm/gtx/associated_min_max.hpp> to use the features of this extension.

+

Function Documentation

+ +

◆ associatedMax() [1/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL U glm::associatedMax (x,
a,
y,
b 
)
+
+ +

Maximum comparison between 2 variables and returns 2 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [2/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL U glm::associatedMax (x,
a,
y,
b,
z,
c 
)
+
+ +

Maximum comparison between 3 variables and returns 3 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [3/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL U glm::associatedMax (x,
a,
y,
b,
z,
c,
w,
d 
)
+
+ +

Maximum comparison between 4 variables and returns 4 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [4/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::associatedMax (x,
vec< L, U, Q > const & a,
y,
vec< L, U, Q > const & b 
)
+
+ +

Maximum comparison between 2 variables and returns 2 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [5/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::associatedMax (x,
vec< L, U, Q > const & a,
y,
vec< L, U, Q > const & b,
z,
vec< L, U, Q > const & c 
)
+
+ +

Maximum comparison between 3 variables and returns 3 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [6/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMax (x,
vec< L, U, Q > const & a,
y,
vec< L, U, Q > const & b,
z,
vec< L, U, Q > const & c,
w,
vec< L, U, Q > const & d 
)
+
+ +

Maximum comparison between 4 variables and returns 4 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [7/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMax (vec< L, T, Q > const & x,
a,
vec< L, T, Q > const & y,
b 
)
+
+ +

Maximum comparison between 2 variables and returns 2 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [8/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMax (vec< L, T, Q > const & x,
a,
vec< L, T, Q > const & y,
b,
vec< L, T, Q > const & z,
c 
)
+
+ +

Maximum comparison between 3 variables and returns 3 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [9/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMax (vec< L, T, Q > const & x,
a,
vec< L, T, Q > const & y,
b,
vec< L, T, Q > const & z,
c,
vec< L, T, Q > const & w,
d 
)
+
+ +

Maximum comparison between 4 variables and returns 4 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [10/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMax (vec< L, T, Q > const & x,
vec< L, U, Q > const & a,
vec< L, T, Q > const & y,
vec< L, U, Q > const & b 
)
+
+ +

Maximum comparison between 2 variables and returns 2 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [11/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMax (vec< L, T, Q > const & x,
vec< L, U, Q > const & a,
vec< L, T, Q > const & y,
vec< L, U, Q > const & b,
vec< L, T, Q > const & z,
vec< L, U, Q > const & c 
)
+
+ +

Maximum comparison between 3 variables and returns 3 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMax() [12/12]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMax (vec< L, T, Q > const & x,
vec< L, U, Q > const & a,
vec< L, T, Q > const & y,
vec< L, U, Q > const & b,
vec< L, T, Q > const & z,
vec< L, U, Q > const & c,
vec< L, T, Q > const & w,
vec< L, U, Q > const & d 
)
+
+ +

Maximum comparison between 4 variables and returns 4 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [1/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMin (x,
const vec< L, U, Q > & a,
y,
const vec< L, U, Q > & b 
)
+
+ +

Minimum comparison between 2 variables and returns 2 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [2/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL U glm::associatedMin (x,
a,
y,
b 
)
+
+ +

Minimum comparison between 2 variables and returns 2 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [3/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL U glm::associatedMin (x,
a,
y,
b,
z,
c 
)
+
+ +

Minimum comparison between 3 variables and returns 3 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [4/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL U glm::associatedMin (x,
a,
y,
b,
z,
c,
w,
d 
)
+
+ +

Minimum comparison between 4 variables and returns 4 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [5/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMin (x,
vec< L, U, Q > const & a,
y,
vec< L, U, Q > const & b,
z,
vec< L, U, Q > const & c,
w,
vec< L, U, Q > const & d 
)
+
+ +

Minimum comparison between 4 variables and returns 4 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [6/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMin (vec< L, T, Q > const & x,
a,
vec< L, T, Q > const & y,
b 
)
+
+ +

Minimum comparison between 2 variables and returns 2 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [7/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMin (vec< L, T, Q > const & x,
a,
vec< L, T, Q > const & y,
b,
vec< L, T, Q > const & z,
c,
vec< L, T, Q > const & w,
d 
)
+
+ +

Minimum comparison between 4 variables and returns 4 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [8/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMin (vec< L, T, Q > const & x,
vec< L, U, Q > const & a,
vec< L, T, Q > const & y,
vec< L, U, Q > const & b 
)
+
+ +

Minimum comparison between 2 variables and returns 2 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [9/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMin (vec< L, T, Q > const & x,
vec< L, U, Q > const & a,
vec< L, T, Q > const & y,
vec< L, U, Q > const & b,
vec< L, T, Q > const & z,
vec< L, U, Q > const & c 
)
+
+ +

Minimum comparison between 3 variables and returns 3 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+ +

◆ associatedMin() [10/10]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, U, Q> glm::associatedMin (vec< L, T, Q > const & x,
vec< L, U, Q > const & a,
vec< L, T, Q > const & y,
vec< L, U, Q > const & b,
vec< L, T, Q > const & z,
vec< L, U, Q > const & c,
vec< L, T, Q > const & w,
vec< L, U, Q > const & d 
)
+
+ +

Minimum comparison between 4 variables and returns 4 associated variable values.

+
See also
GLM_GTX_associated_min_max
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00927.html b/include/glm/doc/api/a00927.html new file mode 100644 index 0000000..bfc4169 --- /dev/null +++ b/include/glm/doc/api/a00927.html @@ -0,0 +1,324 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_bit + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genIUType >
GLM_FUNC_DECL genIUType highestBitValue (genIUType Value)
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > highestBitValue (vec< L, T, Q > const &value)
 Find the highest bit set to 1 in a integer variable and return its value. More...
 
template<typename genIUType >
GLM_FUNC_DECL genIUType lowestBitValue (genIUType Value)
 
template<typename genIUType >
GLM_DEPRECATED GLM_FUNC_DECL genIUType powerOfTwoAbove (genIUType Value)
 Return the power of two number which value is just higher the input value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_DEPRECATED GLM_FUNC_DECL vec< L, T, Q > powerOfTwoAbove (vec< L, T, Q > const &value)
 Return the power of two number which value is just higher the input value. More...
 
template<typename genIUType >
GLM_DEPRECATED GLM_FUNC_DECL genIUType powerOfTwoBelow (genIUType Value)
 Return the power of two number which value is just lower the input value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_DEPRECATED GLM_FUNC_DECL vec< L, T, Q > powerOfTwoBelow (vec< L, T, Q > const &value)
 Return the power of two number which value is just lower the input value. More...
 
template<typename genIUType >
GLM_DEPRECATED GLM_FUNC_DECL genIUType powerOfTwoNearest (genIUType Value)
 Return the power of two number which value is the closet to the input value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_DEPRECATED GLM_FUNC_DECL vec< L, T, Q > powerOfTwoNearest (vec< L, T, Q > const &value)
 Return the power of two number which value is the closet to the input value. More...
 
+

Detailed Description

+

Include <glm/gtx/bit.hpp> to use the features of this extension.

+

Allow to perform bit operations on integer values

+

Function Documentation

+ +

◆ highestBitValue() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genIUType glm::highestBitValue (genIUType Value)
+
+
See also
GLM_GTX_bit
+ +
+
+ +

◆ highestBitValue() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::highestBitValue (vec< L, T, Q > const & value)
+
+ +

Find the highest bit set to 1 in a integer variable and return its value.

+
See also
GLM_GTX_bit
+ +
+
+ +

◆ lowestBitValue()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genIUType glm::lowestBitValue (genIUType Value)
+
+
See also
GLM_GTX_bit
+ +
+
+ +

◆ powerOfTwoAbove() [1/2]

+ +
+
+ + + + + + + + +
GLM_DEPRECATED GLM_FUNC_DECL genIUType glm::powerOfTwoAbove (genIUType Value)
+
+ +

Return the power of two number which value is just higher the input value.

+

Deprecated, use ceilPowerOfTwo from GTC_round instead

+
See also
GLM_GTC_round
+
+GLM_GTX_bit
+ +
+
+ +

◆ powerOfTwoAbove() [2/2]

+ +
+
+ + + + + + + + +
GLM_DEPRECATED GLM_FUNC_DECL vec<L, T, Q> glm::powerOfTwoAbove (vec< L, T, Q > const & value)
+
+ +

Return the power of two number which value is just higher the input value.

+

Deprecated, use ceilPowerOfTwo from GTC_round instead

+
See also
GLM_GTC_round
+
+GLM_GTX_bit
+ +
+
+ +

◆ powerOfTwoBelow() [1/2]

+ +
+
+ + + + + + + + +
GLM_DEPRECATED GLM_FUNC_DECL genIUType glm::powerOfTwoBelow (genIUType Value)
+
+ +

Return the power of two number which value is just lower the input value.

+

Deprecated, use floorPowerOfTwo from GTC_round instead

+
See also
GLM_GTC_round
+
+GLM_GTX_bit
+ +
+
+ +

◆ powerOfTwoBelow() [2/2]

+ +
+
+ + + + + + + + +
GLM_DEPRECATED GLM_FUNC_DECL vec<L, T, Q> glm::powerOfTwoBelow (vec< L, T, Q > const & value)
+
+ +

Return the power of two number which value is just lower the input value.

+

Deprecated, use floorPowerOfTwo from GTC_round instead

+
See also
GLM_GTC_round
+
+GLM_GTX_bit
+ +
+
+ +

◆ powerOfTwoNearest() [1/2]

+ +
+
+ + + + + + + + +
GLM_DEPRECATED GLM_FUNC_DECL genIUType glm::powerOfTwoNearest (genIUType Value)
+
+ +

Return the power of two number which value is the closet to the input value.

+

Deprecated, use roundPowerOfTwo from GTC_round instead

+
See also
GLM_GTC_round
+
+GLM_GTX_bit
+ +
+
+ +

◆ powerOfTwoNearest() [2/2]

+ +
+
+ + + + + + + + +
GLM_DEPRECATED GLM_FUNC_DECL vec<L, T, Q> glm::powerOfTwoNearest (vec< L, T, Q > const & value)
+
+ +

Return the power of two number which value is the closet to the input value.

+

Deprecated, use roundPowerOfTwo from GTC_round instead

+
See also
GLM_GTC_round
+
+GLM_GTX_bit
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00928.html b/include/glm/doc/api/a00928.html new file mode 100644 index 0000000..4e01cef --- /dev/null +++ b/include/glm/doc/api/a00928.html @@ -0,0 +1,133 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_closest_point + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_closest_point
+
+
+ + + + + + + + + + +

+Functions

+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > closestPointOnLine (vec< 2, T, Q > const &point, vec< 2, T, Q > const &a, vec< 2, T, Q > const &b)
 2d lines work as well
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > closestPointOnLine (vec< 3, T, Q > const &point, vec< 3, T, Q > const &a, vec< 3, T, Q > const &b)
 Find the point on a straight line which is the closet of a point. More...
 
+

Detailed Description

+

Include <glm/gtx/closest_point.hpp> to use the features of this extension.

+

Find the point on a straight line which is the closet of a point.

+

Function Documentation

+ +

◆ closestPointOnLine()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::closestPointOnLine (vec< 3, T, Q > const & point,
vec< 3, T, Q > const & a,
vec< 3, T, Q > const & b 
)
+
+ +

Find the point on a straight line which is the closet of a point.

+
See also
GLM_GTX_closest_point
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00929.html b/include/glm/doc/api/a00929.html new file mode 100644 index 0000000..2652827 --- /dev/null +++ b/include/glm/doc/api/a00929.html @@ -0,0 +1,109 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_color_encoding + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_color_encoding
+
+
+ +

Allow to perform bit operations on integer values. +More...

+ + + + + + + + + + + + + + + + + + +

+Functions

+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > convertD65XYZToD50XYZ (vec< 3, T, Q > const &ColorD65XYZ)
 Convert a D65 YUV color to D50 YUV.
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > convertD65XYZToLinearSRGB (vec< 3, T, Q > const &ColorD65XYZ)
 Convert a D65 YUV color to linear sRGB.
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > convertLinearSRGBToD50XYZ (vec< 3, T, Q > const &ColorLinearSRGB)
 Convert a linear sRGB color to D50 YUV.
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > convertLinearSRGBToD65XYZ (vec< 3, T, Q > const &ColorLinearSRGB)
 Convert a linear sRGB color to D65 YUV.
 
+

Detailed Description

+

Allow to perform bit operations on integer values.

+

Include <glm/gtx/color_encoding.hpp> to use the features of this extension.

+
+ + + + diff --git a/include/glm/doc/api/a00930.html b/include/glm/doc/api/a00930.html new file mode 100644 index 0000000..d9ae868 --- /dev/null +++ b/include/glm/doc/api/a00930.html @@ -0,0 +1,257 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_color_space + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_color_space
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > hsvColor (vec< 3, T, Q > const &rgbValue)
 Converts a color from RGB color space to its color in HSV color space. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T luminosity (vec< 3, T, Q > const &color)
 Compute color luminosity associating ratios (0.33, 0.59, 0.11) to RGB canals. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rgbColor (vec< 3, T, Q > const &hsvValue)
 Converts a color from HSV color space to its color in RGB color space. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > saturation (T const s)
 Build a saturation matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > saturation (T const s, vec< 3, T, Q > const &color)
 Modify the saturation of a color. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > saturation (T const s, vec< 4, T, Q > const &color)
 Modify the saturation of a color. More...
 
+

Detailed Description

+

Include <glm/gtx/color_space.hpp> to use the features of this extension.

+

Related to RGB to HSV conversions and operations.

+

Function Documentation

+ +

◆ hsvColor()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::hsvColor (vec< 3, T, Q > const & rgbValue)
+
+ +

Converts a color from RGB color space to its color in HSV color space.

+
See also
GLM_GTX_color_space
+ +
+
+ +

◆ luminosity()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::luminosity (vec< 3, T, Q > const & color)
+
+ +

Compute color luminosity associating ratios (0.33, 0.59, 0.11) to RGB canals.

+
See also
GLM_GTX_color_space
+ +
+
+ +

◆ rgbColor()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::rgbColor (vec< 3, T, Q > const & hsvValue)
+
+ +

Converts a color from HSV color space to its color in RGB color space.

+
See also
GLM_GTX_color_space
+ +
+
+ +

◆ saturation() [1/3]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::saturation (T const s)
+
+ +

Build a saturation matrix.

+
See also
GLM_GTX_color_space
+ +
+
+ +

◆ saturation() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::saturation (T const s,
vec< 3, T, Q > const & color 
)
+
+ +

Modify the saturation of a color.

+
See also
GLM_GTX_color_space
+ +
+
+ +

◆ saturation() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::saturation (T const s,
vec< 4, T, Q > const & color 
)
+
+ +

Modify the saturation of a color.

+
See also
GLM_GTX_color_space
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00931.html b/include/glm/doc/api/a00931.html new file mode 100644 index 0000000..db12f1b --- /dev/null +++ b/include/glm/doc/api/a00931.html @@ -0,0 +1,191 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_color_space_YCoCg + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_color_space_YCoCg
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rgb2YCoCg (vec< 3, T, Q > const &rgbColor)
 Convert a color from RGB color space to YCoCg color space. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rgb2YCoCgR (vec< 3, T, Q > const &rgbColor)
 Convert a color from RGB color space to YCoCgR color space. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > YCoCg2rgb (vec< 3, T, Q > const &YCoCgColor)
 Convert a color from YCoCg color space to RGB color space. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > YCoCgR2rgb (vec< 3, T, Q > const &YCoCgColor)
 Convert a color from YCoCgR color space to RGB color space. More...
 
+

Detailed Description

+

Include <glm/gtx/color_space_YCoCg.hpp> to use the features of this extension.

+

RGB to YCoCg conversions and operations

+

Function Documentation

+ +

◆ rgb2YCoCg()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::rgb2YCoCg (vec< 3, T, Q > const & rgbColor)
+
+ +

Convert a color from RGB color space to YCoCg color space.

+
See also
GLM_GTX_color_space_YCoCg
+ +
+
+ +

◆ rgb2YCoCgR()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::rgb2YCoCgR (vec< 3, T, Q > const & rgbColor)
+
+ +

Convert a color from RGB color space to YCoCgR color space.

+
See also
"YCoCg-R: A Color Space with RGB Reversibility and Low Dynamic Range"
+
+GLM_GTX_color_space_YCoCg
+ +
+
+ +

◆ YCoCg2rgb()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::YCoCg2rgb (vec< 3, T, Q > const & YCoCgColor)
+
+ +

Convert a color from YCoCg color space to RGB color space.

+
See also
GLM_GTX_color_space_YCoCg
+ +
+
+ +

◆ YCoCgR2rgb()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::YCoCgR2rgb (vec< 3, T, Q > const & YCoCgColor)
+
+ +

Convert a color from YCoCgR color space to RGB color space.

+
See also
"YCoCg-R: A Color Space with RGB Reversibility and Low Dynamic Range"
+
+GLM_GTX_color_space_YCoCg
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00932.html b/include/glm/doc/api/a00932.html new file mode 100644 index 0000000..b2e37fb --- /dev/null +++ b/include/glm/doc/api/a00932.html @@ -0,0 +1,252 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_common + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ +

Provide functions to increase the compatibility with Cg and HLSL languages. +More...

+ + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > closeBounded (vec< L, T, Q > const &Value, vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
 Returns whether vector components values are within an interval. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmod (vec< L, T, Q > const &v)
 Similar to 'mod' but with a different rounding and integer support. More...
 
template<typename genType >
GLM_FUNC_DECL genType::bool_type isdenormal (genType const &x)
 Returns true if x is a denormalized number Numbers whose absolute value is too small to be represented in the normal format are represented in an alternate, denormalized format. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > openBounded (vec< L, T, Q > const &Value, vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
 Returns whether vector components values are within an interval. More...
 
+

Detailed Description

+

Provide functions to increase the compatibility with Cg and HLSL languages.

+

Include <glm/gtx/common.hpp> to use the features of this extension.

+

Function Documentation

+ +

◆ closeBounded()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::closeBounded (vec< L, T, Q > const & Value,
vec< L, T, Q > const & Min,
vec< L, T, Q > const & Max 
)
+
+ +

Returns whether vector components values are within an interval.

+

A closed interval includes its endpoints, and is denoted with square brackets.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_relational
+ +
+
+ +

◆ fmod()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fmod (vec< L, T, Q > const & v)
+
+ +

Similar to 'mod' but with a different rounding and integer support.

+

Returns 'x - y * trunc(x/y)' instead of 'x - y * floor(x/y)'

+
See also
GLSL mod vs HLSL fmod
+
+GLSL mod man page
+ +
+
+ +

◆ isdenormal()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType::bool_type glm::isdenormal (genType const & x)
+
+ +

Returns true if x is a denormalized number Numbers whose absolute value is too small to be represented in the normal format are represented in an alternate, denormalized format.

+

This format is less precise but can represent values closer to zero.

+
Template Parameters
+ + +
genTypeFloating-point scalar or vector types.
+
+
+
See also
GLSL isnan man page
+
+GLSL 4.20.8 specification, section 8.3 Common Functions
+ +
+
+ +

◆ openBounded()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::openBounded (vec< L, T, Q > const & Value,
vec< L, T, Q > const & Min,
vec< L, T, Q > const & Max 
)
+
+ +

Returns whether vector components values are within an interval.

+

A open interval excludes its endpoints, and is denoted with square brackets.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or integer scalar types
QValue from qualifier enum
+
+
+
See also
GLM_EXT_vector_relational
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00933.html b/include/glm/doc/api/a00933.html new file mode 100644 index 0000000..2a52343 --- /dev/null +++ b/include/glm/doc/api/a00933.html @@ -0,0 +1,419 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_compatibility + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_compatibility
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

+typedef bool bool1
 boolean type with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef bool bool1x1
 boolean matrix with 1 x 1 component. (From GLM_GTX_compatibility extension)
 
+typedef vec< 2, bool, highp > bool2
 boolean type with 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 2, bool, highp > bool2x2
 boolean matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 3, bool, highp > bool2x3
 boolean matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 4, bool, highp > bool2x4
 boolean matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 3, bool, highp > bool3
 boolean type with 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 2, bool, highp > bool3x2
 boolean matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 3, bool, highp > bool3x3
 boolean matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 4, bool, highp > bool3x4
 boolean matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 4, bool, highp > bool4
 boolean type with 4 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 2, bool, highp > bool4x2
 boolean matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 3, bool, highp > bool4x3
 boolean matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 4, bool, highp > bool4x4
 boolean matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef double double1
 double-qualifier floating-point vector with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef double double1x1
 double-qualifier floating-point matrix with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef vec< 2, double, highp > double2
 double-qualifier floating-point vector with 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 2, double, highp > double2x2
 double-qualifier floating-point matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 3, double, highp > double2x3
 double-qualifier floating-point matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 4, double, highp > double2x4
 double-qualifier floating-point matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 3, double, highp > double3
 double-qualifier floating-point vector with 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 2, double, highp > double3x2
 double-qualifier floating-point matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 3, double, highp > double3x3
 double-qualifier floating-point matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 4, double, highp > double3x4
 double-qualifier floating-point matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 4, double, highp > double4
 double-qualifier floating-point vector with 4 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 2, double, highp > double4x2
 double-qualifier floating-point matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 3, double, highp > double4x3
 double-qualifier floating-point matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 4, double, highp > double4x4
 double-qualifier floating-point matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef float float1
 single-qualifier floating-point vector with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef float float1x1
 single-qualifier floating-point matrix with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef vec< 2, float, highp > float2
 single-qualifier floating-point vector with 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 2, float, highp > float2x2
 single-qualifier floating-point matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 3, float, highp > float2x3
 single-qualifier floating-point matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 4, float, highp > float2x4
 single-qualifier floating-point matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 3, float, highp > float3
 single-qualifier floating-point vector with 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 2, float, highp > float3x2
 single-qualifier floating-point matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 3, float, highp > float3x3
 single-qualifier floating-point matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 4, float, highp > float3x4
 single-qualifier floating-point matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 4, float, highp > float4
 single-qualifier floating-point vector with 4 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 2, float, highp > float4x2
 single-qualifier floating-point matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 3, float, highp > float4x3
 single-qualifier floating-point matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 4, float, highp > float4x4
 single-qualifier floating-point matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef int int1
 integer vector with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef int int1x1
 integer matrix with 1 component. (From GLM_GTX_compatibility extension)
 
+typedef vec< 2, int, highp > int2
 integer vector with 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 2, int, highp > int2x2
 integer matrix with 2 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 3, int, highp > int2x3
 integer matrix with 2 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 2, 4, int, highp > int2x4
 integer matrix with 2 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 3, int, highp > int3
 integer vector with 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 2, int, highp > int3x2
 integer matrix with 3 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 3, int, highp > int3x3
 integer matrix with 3 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 3, 4, int, highp > int3x4
 integer matrix with 3 x 4 components. (From GLM_GTX_compatibility extension)
 
+typedef vec< 4, int, highp > int4
 integer vector with 4 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 2, int, highp > int4x2
 integer matrix with 4 x 2 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 3, int, highp > int4x3
 integer matrix with 4 x 3 components. (From GLM_GTX_compatibility extension)
 
+typedef mat< 4, 4, int, highp > int4x4
 integer matrix with 4 x 4 components. (From GLM_GTX_compatibility extension)
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 2, T, Q > atan2 (const vec< 2, T, Q > &y, const vec< 2, T, Q > &x)
 Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 3, T, Q > atan2 (const vec< 3, T, Q > &y, const vec< 3, T, Q > &x)
 Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 4, T, Q > atan2 (const vec< 4, T, Q > &y, const vec< 4, T, Q > &x)
 Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
 
+template<typename T >
GLM_FUNC_QUALIFIER T atan2 (T y, T x)
 Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > isfinite (const qua< T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 1, bool, Q > isfinite (const vec< 1, T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, bool, Q > isfinite (const vec< 2, T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, bool, Q > isfinite (const vec< 3, T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, bool, Q > isfinite (const vec< 4, T, Q > &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename genType >
GLM_FUNC_DECL bool isfinite (genType const &x)
 Test whether or not a scalar or each vector component is a finite value. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 2, T, Q > lerp (const vec< 2, T, Q > &x, const vec< 2, T, Q > &y, const vec< 2, T, Q > &a)
 Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 2, T, Q > lerp (const vec< 2, T, Q > &x, const vec< 2, T, Q > &y, T a)
 Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 3, T, Q > lerp (const vec< 3, T, Q > &x, const vec< 3, T, Q > &y, const vec< 3, T, Q > &a)
 Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 3, T, Q > lerp (const vec< 3, T, Q > &x, const vec< 3, T, Q > &y, T a)
 Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 4, T, Q > lerp (const vec< 4, T, Q > &x, const vec< 4, T, Q > &y, const vec< 4, T, Q > &a)
 Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 4, T, Q > lerp (const vec< 4, T, Q > &x, const vec< 4, T, Q > &y, T a)
 Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T >
GLM_FUNC_QUALIFIER T lerp (T x, T y, T a)
 Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 2, T, Q > saturate (const vec< 2, T, Q > &x)
 Returns clamp(x, 0, 1) for each component in x. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 3, T, Q > saturate (const vec< 3, T, Q > &x)
 Returns clamp(x, 0, 1) for each component in x. (From GLM_GTX_compatibility)
 
+template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< 4, T, Q > saturate (const vec< 4, T, Q > &x)
 Returns clamp(x, 0, 1) for each component in x. (From GLM_GTX_compatibility)
 
+template<typename T >
GLM_FUNC_QUALIFIER T saturate (T x)
 Returns clamp(x, 0, 1) for each component in x. (From GLM_GTX_compatibility)
 
+

Detailed Description

+

Include <glm/gtx/compatibility.hpp> to use the features of this extension.

+

Provide functions to increase the compatibility with Cg and HLSL languages

+
+ + + + diff --git a/include/glm/doc/api/a00934.html b/include/glm/doc/api/a00934.html new file mode 100644 index 0000000..3bb5864 --- /dev/null +++ b/include/glm/doc/api/a00934.html @@ -0,0 +1,287 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_component_wise + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_component_wise
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType::value_type compAdd (genType const &v)
 Add all vector components together. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type compMax (genType const &v)
 Find the maximum value between single vector components. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type compMin (genType const &v)
 Find the minimum value between single vector components. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type compMul (genType const &v)
 Multiply all vector components together. More...
 
template<typename floatType , length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, floatType, Q > compNormalize (vec< L, T, Q > const &v)
 Convert an integer vector to a normalized float vector. More...
 
template<length_t L, typename T , typename floatType , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > compScale (vec< L, floatType, Q > const &v)
 Convert a normalized float vector to an integer vector. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type fcompMax (genType const &v)
 Find the maximum float between single vector components. More...
 
template<typename genType >
GLM_FUNC_DECL genType::value_type fcompMin (genType const &v)
 Find the minimum float between single vector components. More...
 
+

Detailed Description

+

Include <glm/gtx/component_wise.hpp> to use the features of this extension.

+

Operations between components of a type

+

Function Documentation

+ +

◆ compAdd()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType::value_type glm::compAdd (genType const & v)
+
+ +

Add all vector components together.

+
See also
GLM_GTX_component_wise
+ +
+
+ +

◆ compMax()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType::value_type glm::compMax (genType const & v)
+
+ +

Find the maximum value between single vector components.

+
See also
GLM_GTX_component_wise
+ +
+
+ +

◆ compMin()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType::value_type glm::compMin (genType const & v)
+
+ +

Find the minimum value between single vector components.

+
See also
GLM_GTX_component_wise
+ +
+
+ +

◆ compMul()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType::value_type glm::compMul (genType const & v)
+
+ +

Multiply all vector components together.

+
See also
GLM_GTX_component_wise
+ +
+
+ +

◆ compNormalize()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, floatType, Q> glm::compNormalize (vec< L, T, Q > const & v)
+
+ +

Convert an integer vector to a normalized float vector.

+

If the parameter value type is already a floating qualifier type, the value is passed through.

See also
GLM_GTX_component_wise
+ +
+
+ +

◆ compScale()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::compScale (vec< L, floatType, Q > const & v)
+
+ +

Convert a normalized float vector to an integer vector.

+

If the parameter value type is already a floating qualifier type, the value is passed through.

See also
GLM_GTX_component_wise
+ +
+
+ +

◆ fcompMax()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType::value_type glm::fcompMax (genType const & v)
+
+ +

Find the maximum float between single vector components.

+
See also
GLM_GTX_component_wise
+ +
+
+ +

◆ fcompMin()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType::value_type glm::fcompMin (genType const & v)
+
+ +

Find the minimum float between single vector components.

+
See also
GLM_GTX_component_wise
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00935.html b/include/glm/doc/api/a00935.html new file mode 100644 index 0000000..42bbb54 --- /dev/null +++ b/include/glm/doc/api/a00935.html @@ -0,0 +1,571 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_dual_quaternion + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_dual_quaternion
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef highp_ddualquat ddualquat
 Dual-quaternion of default double-qualifier floating-point numbers. More...
 
typedef highp_fdualquat dualquat
 Dual-quaternion of floating-point numbers. More...
 
typedef highp_fdualquat fdualquat
 Dual-quaternion of single-qualifier floating-point numbers. More...
 
typedef tdualquat< double, highp > highp_ddualquat
 Dual-quaternion of high double-qualifier floating-point numbers. More...
 
typedef tdualquat< float, highp > highp_dualquat
 Dual-quaternion of high single-qualifier floating-point numbers. More...
 
typedef tdualquat< float, highp > highp_fdualquat
 Dual-quaternion of high single-qualifier floating-point numbers. More...
 
typedef tdualquat< double, lowp > lowp_ddualquat
 Dual-quaternion of low double-qualifier floating-point numbers. More...
 
typedef tdualquat< float, lowp > lowp_dualquat
 Dual-quaternion of low single-qualifier floating-point numbers. More...
 
typedef tdualquat< float, lowp > lowp_fdualquat
 Dual-quaternion of low single-qualifier floating-point numbers. More...
 
typedef tdualquat< double, mediump > mediump_ddualquat
 Dual-quaternion of medium double-qualifier floating-point numbers. More...
 
typedef tdualquat< float, mediump > mediump_dualquat
 Dual-quaternion of medium single-qualifier floating-point numbers. More...
 
typedef tdualquat< float, mediump > mediump_fdualquat
 Dual-quaternion of medium single-qualifier floating-point numbers. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > dual_quat_identity ()
 Creates an identity dual quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > dualquat_cast (mat< 2, 4, T, Q > const &x)
 Converts a 2 * 4 matrix (matrix which holds real and dual parts) to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > dualquat_cast (mat< 3, 4, T, Q > const &x)
 Converts a 3 * 4 matrix (augmented matrix rotation + translation) to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > inverse (tdualquat< T, Q > const &q)
 Returns the q inverse. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > lerp (tdualquat< T, Q > const &x, tdualquat< T, Q > const &y, T const &a)
 Returns the linear interpolation of two dual quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 4, T, Q > mat2x4_cast (tdualquat< T, Q > const &x)
 Converts a quaternion to a 2 * 4 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 4, T, Q > mat3x4_cast (tdualquat< T, Q > const &x)
 Converts a quaternion to a 3 * 4 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL tdualquat< T, Q > normalize (tdualquat< T, Q > const &q)
 Returns the normalized quaternion. More...
 
+

Detailed Description

+

Include <glm/gtx/dual_quaternion.hpp> to use the features of this extension.

+

Defines a templated dual-quaternion type and several dual-quaternion operations.

+

Typedef Documentation

+ +

◆ ddualquat

+ +
+
+ + + + +
typedef highp_ddualquat ddualquat
+
+ +

Dual-quaternion of default double-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 258 of file dual_quaternion.hpp.

+ +
+
+ +

◆ dualquat

+ +
+
+ + + + +
typedef highp_fdualquat dualquat
+
+ +

Dual-quaternion of floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 234 of file dual_quaternion.hpp.

+ +
+
+ +

◆ fdualquat

+ +
+
+ + + + +
typedef highp_fdualquat fdualquat
+
+ +

Dual-quaternion of single-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 239 of file dual_quaternion.hpp.

+ +
+
+ +

◆ highp_ddualquat

+ +
+
+ + + + +
typedef tdualquat<double, highp> highp_ddualquat
+
+ +

Dual-quaternion of high double-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 227 of file dual_quaternion.hpp.

+ +
+
+ +

◆ highp_dualquat

+ +
+
+ + + + +
typedef tdualquat<float, highp> highp_dualquat
+
+ +

Dual-quaternion of high single-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 195 of file dual_quaternion.hpp.

+ +
+
+ +

◆ highp_fdualquat

+ +
+
+ + + + +
typedef tdualquat<float, highp> highp_fdualquat
+
+ +

Dual-quaternion of high single-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 211 of file dual_quaternion.hpp.

+ +
+
+ +

◆ lowp_ddualquat

+ +
+
+ + + + +
typedef tdualquat<double, lowp> lowp_ddualquat
+
+ +

Dual-quaternion of low double-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 217 of file dual_quaternion.hpp.

+ +
+
+ +

◆ lowp_dualquat

+ +
+
+ + + + +
typedef tdualquat<float, lowp> lowp_dualquat
+
+ +

Dual-quaternion of low single-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 185 of file dual_quaternion.hpp.

+ +
+
+ +

◆ lowp_fdualquat

+ +
+
+ + + + +
typedef tdualquat<float, lowp> lowp_fdualquat
+
+ +

Dual-quaternion of low single-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 201 of file dual_quaternion.hpp.

+ +
+
+ +

◆ mediump_ddualquat

+ +
+
+ + + + +
typedef tdualquat<double, mediump> mediump_ddualquat
+
+ +

Dual-quaternion of medium double-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 222 of file dual_quaternion.hpp.

+ +
+
+ +

◆ mediump_dualquat

+ +
+
+ + + + +
typedef tdualquat<float, mediump> mediump_dualquat
+
+ +

Dual-quaternion of medium single-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 190 of file dual_quaternion.hpp.

+ +
+
+ +

◆ mediump_fdualquat

+ +
+
+ + + + +
typedef tdualquat<float, mediump> mediump_fdualquat
+
+ +

Dual-quaternion of medium single-qualifier floating-point numbers.

+
See also
GLM_GTX_dual_quaternion
+ +

Definition at line 206 of file dual_quaternion.hpp.

+ +
+
+

Function Documentation

+ +

◆ dual_quat_identity()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL tdualquat<T, Q> glm::dual_quat_identity ()
+
+ +

Creates an identity dual quaternion.

+
See also
GLM_GTX_dual_quaternion
+ +
+
+ +

◆ dualquat_cast() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL tdualquat<T, Q> glm::dualquat_cast (mat< 2, 4, T, Q > const & x)
+
+ +

Converts a 2 * 4 matrix (matrix which holds real and dual parts) to a quaternion.

+
See also
GLM_GTX_dual_quaternion
+ +
+
+ +

◆ dualquat_cast() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL tdualquat<T, Q> glm::dualquat_cast (mat< 3, 4, T, Q > const & x)
+
+ +

Converts a 3 * 4 matrix (augmented matrix rotation + translation) to a quaternion.

+
See also
GLM_GTX_dual_quaternion
+ +
+
+ +

◆ inverse()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL tdualquat<T, Q> glm::inverse (tdualquat< T, Q > const & q)
+
+ +

Returns the q inverse.

+
See also
GLM_GTX_dual_quaternion
+ +
+
+ +

◆ lerp()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL tdualquat<T, Q> glm::lerp (tdualquat< T, Q > const & x,
tdualquat< T, Q > const & y,
T const & a 
)
+
+ +

Returns the linear interpolation of two dual quaternion.

+
See also
gtc_dual_quaternion
+ +
+
+ +

◆ mat2x4_cast()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 4, T, Q> glm::mat2x4_cast (tdualquat< T, Q > const & x)
+
+ +

Converts a quaternion to a 2 * 4 matrix.

+
See also
GLM_GTX_dual_quaternion
+ +
+
+ +

◆ mat3x4_cast()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 4, T, Q> glm::mat3x4_cast (tdualquat< T, Q > const & x)
+
+ +

Converts a quaternion to a 3 * 4 matrix.

+
See also
GLM_GTX_dual_quaternion
+ +
+
+ +

◆ normalize()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL tdualquat<T, Q> glm::normalize (tdualquat< T, Q > const & q)
+
+ +

Returns the normalized quaternion.

+
See also
GLM_GTX_dual_quaternion
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00936.html b/include/glm/doc/api/a00936.html new file mode 100644 index 0000000..e4811c5 --- /dev/null +++ b/include/glm/doc/api/a00936.html @@ -0,0 +1,942 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_easing + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType backEaseIn (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseIn (genType const &a, genType const &o)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseInOut (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseInOut (genType const &a, genType const &o)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseOut (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType backEaseOut (genType const &a, genType const &o)
 
template<typename genType >
GLM_FUNC_DECL genType bounceEaseIn (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType bounceEaseInOut (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType bounceEaseOut (genType const &a)
 
template<typename genType >
GLM_FUNC_DECL genType circularEaseIn (genType const &a)
 Modelled after shifted quadrant IV of unit circle. More...
 
template<typename genType >
GLM_FUNC_DECL genType circularEaseInOut (genType const &a)
 Modelled after the piecewise circular function y = (1/2)(1 - sqrt(1 - 4x^2)) ; [0, 0.5) y = (1/2)(sqrt(-(2x - 3)*(2x - 1)) + 1) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType circularEaseOut (genType const &a)
 Modelled after shifted quadrant II of unit circle. More...
 
+template<typename genType >
GLM_FUNC_DECL genType cubicEaseIn (genType const &a)
 Modelled after the cubic y = x^3.
 
template<typename genType >
GLM_FUNC_DECL genType cubicEaseInOut (genType const &a)
 Modelled after the piecewise cubic y = (1/2)((2x)^3) ; [0, 0.5) y = (1/2)((2x-2)^3 + 2) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType cubicEaseOut (genType const &a)
 Modelled after the cubic y = (x - 1)^3 + 1. More...
 
template<typename genType >
GLM_FUNC_DECL genType elasticEaseIn (genType const &a)
 Modelled after the damped sine wave y = sin(13pi/2*x)*pow(2, 10 * (x - 1)) More...
 
template<typename genType >
GLM_FUNC_DECL genType elasticEaseInOut (genType const &a)
 Modelled after the piecewise exponentially-damped sine wave: y = (1/2)*sin(13pi/2*(2*x))*pow(2, 10 * ((2*x) - 1)) ; [0,0.5) y = (1/2)*(sin(-13pi/2*((2x-1)+1))*pow(2,-10(2*x-1)) + 2) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType elasticEaseOut (genType const &a)
 Modelled after the damped sine wave y = sin(-13pi/2*(x + 1))*pow(2, -10x) + 1. More...
 
template<typename genType >
GLM_FUNC_DECL genType exponentialEaseIn (genType const &a)
 Modelled after the exponential function y = 2^(10(x - 1)) More...
 
template<typename genType >
GLM_FUNC_DECL genType exponentialEaseInOut (genType const &a)
 Modelled after the piecewise exponential y = (1/2)2^(10(2x - 1)) ; [0,0.5) y = -(1/2)*2^(-10(2x - 1))) + 1 ; [0.5,1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType exponentialEaseOut (genType const &a)
 Modelled after the exponential function y = -2^(-10x) + 1. More...
 
template<typename genType >
GLM_FUNC_DECL genType linearInterpolation (genType const &a)
 Modelled after the line y = x. More...
 
template<typename genType >
GLM_FUNC_DECL genType quadraticEaseIn (genType const &a)
 Modelled after the parabola y = x^2. More...
 
template<typename genType >
GLM_FUNC_DECL genType quadraticEaseInOut (genType const &a)
 Modelled after the piecewise quadratic y = (1/2)((2x)^2) ; [0, 0.5) y = -(1/2)((2x-1)*(2x-3) - 1) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType quadraticEaseOut (genType const &a)
 Modelled after the parabola y = -x^2 + 2x. More...
 
template<typename genType >
GLM_FUNC_DECL genType quarticEaseIn (genType const &a)
 Modelled after the quartic x^4. More...
 
template<typename genType >
GLM_FUNC_DECL genType quarticEaseInOut (genType const &a)
 Modelled after the piecewise quartic y = (1/2)((2x)^4) ; [0, 0.5) y = -(1/2)((2x-2)^4 - 2) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType quarticEaseOut (genType const &a)
 Modelled after the quartic y = 1 - (x - 1)^4. More...
 
template<typename genType >
GLM_FUNC_DECL genType quinticEaseIn (genType const &a)
 Modelled after the quintic y = x^5. More...
 
template<typename genType >
GLM_FUNC_DECL genType quinticEaseInOut (genType const &a)
 Modelled after the piecewise quintic y = (1/2)((2x)^5) ; [0, 0.5) y = (1/2)((2x-2)^5 + 2) ; [0.5, 1]. More...
 
template<typename genType >
GLM_FUNC_DECL genType quinticEaseOut (genType const &a)
 Modelled after the quintic y = (x - 1)^5 + 1. More...
 
template<typename genType >
GLM_FUNC_DECL genType sineEaseIn (genType const &a)
 Modelled after quarter-cycle of sine wave. More...
 
template<typename genType >
GLM_FUNC_DECL genType sineEaseInOut (genType const &a)
 Modelled after half sine wave. More...
 
template<typename genType >
GLM_FUNC_DECL genType sineEaseOut (genType const &a)
 Modelled after quarter-cycle of sine wave (different phase) More...
 
+

Detailed Description

+

Include <glm/gtx/easing.hpp> to use the features of this extension.

+

Easing functions for animations and transitions All functions take a parameter x in the range [0.0,1.0]

+

Based on the AHEasing project of Warren Moore (https://github.com/warrenm/AHEasing)

+

Function Documentation

+ +

◆ backEaseIn() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::backEaseIn (genType const & a)
+
+
See also
GLM_GTX_easing
+ +
+
+ +

◆ backEaseIn() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::backEaseIn (genType const & a,
genType const & o 
)
+
+
Parameters
+ + + +
aparameter
oOptional overshoot modifier
+
+
+
See also
GLM_GTX_easing
+ +
+
+ +

◆ backEaseInOut() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::backEaseInOut (genType const & a)
+
+
See also
GLM_GTX_easing
+ +
+
+ +

◆ backEaseInOut() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::backEaseInOut (genType const & a,
genType const & o 
)
+
+
Parameters
+ + + +
aparameter
oOptional overshoot modifier
+
+
+
See also
GLM_GTX_easing
+ +
+
+ +

◆ backEaseOut() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::backEaseOut (genType const & a)
+
+
See also
GLM_GTX_easing
+ +
+
+ +

◆ backEaseOut() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::backEaseOut (genType const & a,
genType const & o 
)
+
+
Parameters
+ + + +
aparameter
oOptional overshoot modifier
+
+
+
See also
GLM_GTX_easing
+ +
+
+ +

◆ bounceEaseIn()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::bounceEaseIn (genType const & a)
+
+
See also
GLM_GTX_easing
+ +
+
+ +

◆ bounceEaseInOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::bounceEaseInOut (genType const & a)
+
+
See also
GLM_GTX_easing
+ +
+
+ +

◆ bounceEaseOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::bounceEaseOut (genType const & a)
+
+
See also
GLM_GTX_easing
+ +
+
+ +

◆ circularEaseIn()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::circularEaseIn (genType const & a)
+
+ +

Modelled after shifted quadrant IV of unit circle.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ circularEaseInOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::circularEaseInOut (genType const & a)
+
+ +

Modelled after the piecewise circular function y = (1/2)(1 - sqrt(1 - 4x^2)) ; [0, 0.5) y = (1/2)(sqrt(-(2x - 3)*(2x - 1)) + 1) ; [0.5, 1].

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ circularEaseOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::circularEaseOut (genType const & a)
+
+ +

Modelled after shifted quadrant II of unit circle.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ cubicEaseInOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::cubicEaseInOut (genType const & a)
+
+ +

Modelled after the piecewise cubic y = (1/2)((2x)^3) ; [0, 0.5) y = (1/2)((2x-2)^3 + 2) ; [0.5, 1].

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ cubicEaseOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::cubicEaseOut (genType const & a)
+
+ +

Modelled after the cubic y = (x - 1)^3 + 1.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ elasticEaseIn()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::elasticEaseIn (genType const & a)
+
+ +

Modelled after the damped sine wave y = sin(13pi/2*x)*pow(2, 10 * (x - 1))

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ elasticEaseInOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::elasticEaseInOut (genType const & a)
+
+ +

Modelled after the piecewise exponentially-damped sine wave: y = (1/2)*sin(13pi/2*(2*x))*pow(2, 10 * ((2*x) - 1)) ; [0,0.5) y = (1/2)*(sin(-13pi/2*((2x-1)+1))*pow(2,-10(2*x-1)) + 2) ; [0.5, 1].

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ elasticEaseOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::elasticEaseOut (genType const & a)
+
+ +

Modelled after the damped sine wave y = sin(-13pi/2*(x + 1))*pow(2, -10x) + 1.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ exponentialEaseIn()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::exponentialEaseIn (genType const & a)
+
+ +

Modelled after the exponential function y = 2^(10(x - 1))

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ exponentialEaseInOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::exponentialEaseInOut (genType const & a)
+
+ +

Modelled after the piecewise exponential y = (1/2)2^(10(2x - 1)) ; [0,0.5) y = -(1/2)*2^(-10(2x - 1))) + 1 ; [0.5,1].

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ exponentialEaseOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::exponentialEaseOut (genType const & a)
+
+ +

Modelled after the exponential function y = -2^(-10x) + 1.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ linearInterpolation()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::linearInterpolation (genType const & a)
+
+ +

Modelled after the line y = x.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ quadraticEaseIn()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::quadraticEaseIn (genType const & a)
+
+ +

Modelled after the parabola y = x^2.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ quadraticEaseInOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::quadraticEaseInOut (genType const & a)
+
+ +

Modelled after the piecewise quadratic y = (1/2)((2x)^2) ; [0, 0.5) y = -(1/2)((2x-1)*(2x-3) - 1) ; [0.5, 1].

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ quadraticEaseOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::quadraticEaseOut (genType const & a)
+
+ +

Modelled after the parabola y = -x^2 + 2x.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ quarticEaseIn()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::quarticEaseIn (genType const & a)
+
+ +

Modelled after the quartic x^4.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ quarticEaseInOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::quarticEaseInOut (genType const & a)
+
+ +

Modelled after the piecewise quartic y = (1/2)((2x)^4) ; [0, 0.5) y = -(1/2)((2x-2)^4 - 2) ; [0.5, 1].

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ quarticEaseOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::quarticEaseOut (genType const & a)
+
+ +

Modelled after the quartic y = 1 - (x - 1)^4.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ quinticEaseIn()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::quinticEaseIn (genType const & a)
+
+ +

Modelled after the quintic y = x^5.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ quinticEaseInOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::quinticEaseInOut (genType const & a)
+
+ +

Modelled after the piecewise quintic y = (1/2)((2x)^5) ; [0, 0.5) y = (1/2)((2x-2)^5 + 2) ; [0.5, 1].

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ quinticEaseOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::quinticEaseOut (genType const & a)
+
+ +

Modelled after the quintic y = (x - 1)^5 + 1.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ sineEaseIn()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::sineEaseIn (genType const & a)
+
+ +

Modelled after quarter-cycle of sine wave.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ sineEaseInOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::sineEaseInOut (genType const & a)
+
+ +

Modelled after half sine wave.

+
See also
GLM_GTX_easing
+ +
+
+ +

◆ sineEaseOut()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::sineEaseOut (genType const & a)
+
+ +

Modelled after quarter-cycle of sine wave (different phase)

+
See also
GLM_GTX_easing
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00937.html b/include/glm/doc/api/a00937.html new file mode 100644 index 0000000..5f80271 --- /dev/null +++ b/include/glm/doc/api/a00937.html @@ -0,0 +1,1675 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_euler_angles + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_euler_angles
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > derivedEulerAngleX (T const &angleX, T const &angularVelocityX)
 Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about X-axis. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > derivedEulerAngleY (T const &angleY, T const &angularVelocityY)
 Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about Y-axis. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > derivedEulerAngleZ (T const &angleZ, T const &angularVelocityZ)
 Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about Z-axis. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleX (T const &angleX)
 Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle X. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXY (T const &angleX, T const &angleY)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXYX (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXYZ (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXZ (T const &angleX, T const &angleZ)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXZX (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleXZY (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleY (T const &angleY)
 Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle Y. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYX (T const &angleY, T const &angleX)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYXY (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYXZ (T const &yaw, T const &pitch, T const &roll)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYZ (T const &angleY, T const &angleZ)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYZX (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleYZY (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZ (T const &angleZ)
 Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle Z. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZX (T const &angle, T const &angleX)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZXY (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZXZ (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZY (T const &angleZ, T const &angleY)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZYX (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y * X). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > eulerAngleZYZ (T const &t1, T const &t2, T const &t3)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y * Z). More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleXYX (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (X * Y * X) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleXYZ (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (X * Y * Z) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleXZX (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (X * Z * X) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleXZY (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (X * Z * Y) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleYXY (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Y * X * Y) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleYXZ (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Y * X * Z) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleYZX (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Y * Z * X) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleYZY (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Y * Z * Y) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleZXY (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Z * X * Y) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleZXZ (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Z * X * Z) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleZYX (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Z * Y * X) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DISCARD_DECL void extractEulerAngleZYZ (mat< 4, 4, T, defaultp > const &M, T &t1, T &t2, T &t3)
 Extracts the (Z * Y * Z) Euler angles from the rotation matrix M. More...
 
template<typename T >
GLM_FUNC_DECL mat< 2, 2, T, defaultp > orientate2 (T const &angle)
 Creates a 2D 2 * 2 rotation matrix from an euler angle. More...
 
template<typename T >
GLM_FUNC_DECL mat< 3, 3, T, defaultp > orientate3 (T const &angle)
 Creates a 2D 4 * 4 homogeneous rotation matrix from an euler angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > orientate3 (vec< 3, T, Q > const &angles)
 Creates a 3D 3 * 3 rotation matrix from euler angles (Y * X * Z). More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > orientate4 (vec< 3, T, Q > const &angles)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z). More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > yawPitchRoll (T const &yaw, T const &pitch, T const &roll)
 Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z). More...
 
+

Detailed Description

+

Include <glm/gtx/euler_angles.hpp> to use the features of this extension.

+

Build matrices from Euler angles.

+

Extraction of Euler angles from rotation matrix. Based on the original paper 2014 Mike Day - Extracting Euler Angles from a Rotation Matrix.

+

Function Documentation

+ +

◆ derivedEulerAngleX()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::derivedEulerAngleX (T const & angleX,
T const & angularVelocityX 
)
+
+ +

Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about X-axis.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ derivedEulerAngleY()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::derivedEulerAngleY (T const & angleY,
T const & angularVelocityY 
)
+
+ +

Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about Y-axis.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ derivedEulerAngleZ()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::derivedEulerAngleZ (T const & angleZ,
T const & angularVelocityZ 
)
+
+ +

Creates a 3D 4 * 4 homogeneous derived matrix from the rotation matrix about Z-axis.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleX()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleX (T const & angleX)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle X.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleXY()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleXY (T const & angleX,
T const & angleY 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleXYX()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleXYX (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y * X).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleXYZ()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleXYZ (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Y * Z).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleXZ()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleXZ (T const & angleX,
T const & angleZ 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleXZX()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleXZX (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z * X).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleXZY()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleXZY (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (X * Z * Y).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleY()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleY (T const & angleY)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle Y.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleYX()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleYX (T const & angleY,
T const & angleX 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleYXY()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleYXY (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Y).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleYXZ()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleYXZ (T const & yaw,
T const & pitch,
T const & roll 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleYZ()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleYZ (T const & angleY,
T const & angleZ 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleYZX()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleYZX (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z * X).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleYZY()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleYZY (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * Z * Y).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleZ()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleZ (T const & angleZ)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from an euler angle Z.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleZX()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleZX (T const & angle,
T const & angleX 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleZXY()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleZXY (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X * Y).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleZXZ()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleZXZ (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * X * Z).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleZY()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleZY (T const & angleZ,
T const & angleY 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleZYX()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleZYX (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y * X).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ eulerAngleZYZ()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::eulerAngleZYZ (T const & t1,
T const & t2,
T const & t3 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Z * Y * Z).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleXYX()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleXYX (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (X * Y * X) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleXYZ()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleXYZ (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (X * Y * Z) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleXZX()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleXZX (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (X * Z * X) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleXZY()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleXZY (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (X * Z * Y) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleYXY()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleYXY (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (Y * X * Y) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleYXZ()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleYXZ (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (Y * X * Z) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleYZX()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleYZX (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (Y * Z * X) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleYZY()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleYZY (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (Y * Z * Y) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleZXY()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleZXY (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (Z * X * Y) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleZXZ()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleZXZ (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (Z * X * Z) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleZYX()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleZYX (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (Z * Y * X) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ extractEulerAngleZYZ()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::extractEulerAngleZYZ (mat< 4, 4, T, defaultp > const & M,
T & t1,
T & t2,
T & t3 
)
+
+ +

Extracts the (Z * Y * Z) Euler angles from the rotation matrix M.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ orientate2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 2, T, defaultp> glm::orientate2 (T const & angle)
+
+ +

Creates a 2D 2 * 2 rotation matrix from an euler angle.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ orientate3() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, defaultp> glm::orientate3 (T const & angle)
+
+ +

Creates a 2D 4 * 4 homogeneous rotation matrix from an euler angle.

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ orientate3() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::orientate3 (vec< 3, T, Q > const & angles)
+
+ +

Creates a 3D 3 * 3 rotation matrix from euler angles (Y * X * Z).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ orientate4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::orientate4 (vec< 3, T, Q > const & angles)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z).

+
See also
GLM_GTX_euler_angles
+ +
+
+ +

◆ yawPitchRoll()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, defaultp> glm::yawPitchRoll (T const & yaw,
T const & pitch,
T const & roll 
)
+
+ +

Creates a 3D 4 * 4 homogeneous rotation matrix from euler angles (Y * X * Z).

+
See also
GLM_GTX_euler_angles
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00938.html b/include/glm/doc/api/a00938.html new file mode 100644 index 0000000..823f086 --- /dev/null +++ b/include/glm/doc/api/a00938.html @@ -0,0 +1,128 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_extend + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType extend (genType const &Origin, genType const &Source, typename genType::value_type const Length)
 Extends of Length the Origin position using the (Source - Origin) direction. More...
 
+

Detailed Description

+

Include <glm/gtx/extend.hpp> to use the features of this extension.

+

Extend a position from a source to a position at a defined length.

+

Function Documentation

+ +

◆ extend()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::extend (genType const & Origin,
genType const & Source,
typename genType::value_type const Length 
)
+
+ +

Extends of Length the Origin position using the (Source - Origin) direction.

+
See also
GLM_GTX_extend
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00939.html b/include/glm/doc/api/a00939.html new file mode 100644 index 0000000..c685795 --- /dev/null +++ b/include/glm/doc/api/a00939.html @@ -0,0 +1,615 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_extended_min_max + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_extended_min_max
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > max (C< T > const &x, C< T > const &y, C< T > const &z)
 Return the maximum component-wise values of 3 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > max (C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)
 Return the maximum component-wise values of 4 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > max (C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z)
 Return the maximum component-wise values of 3 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > max (C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z, typename C< T >::T const &w)
 Return the maximum component-wise values of 4 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T max (T const &x, T const &y, T const &z)
 Return the maximum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T max (T const &x, T const &y, T const &z, T const &w)
 Return the maximum component-wise values of 4 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > min (C< T > const &x, C< T > const &y, C< T > const &z)
 Return the minimum component-wise values of 3 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > min (C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)
 Return the minimum component-wise values of 4 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > min (C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z)
 Return the minimum component-wise values of 3 inputs. More...
 
template<typename T , template< typename > class C>
GLM_FUNC_DECL C< T > min (C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z, typename C< T >::T const &w)
 Return the minimum component-wise values of 4 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T min (T const &x, T const &y, T const &z)
 Return the minimum component-wise values of 3 inputs. More...
 
template<typename T >
GLM_FUNC_DECL T min (T const &x, T const &y, T const &z, T const &w)
 Return the minimum component-wise values of 4 inputs. More...
 
+

Detailed Description

+

Include <glm/gtx/extended_min_max.hpp> to use the features of this extension.

+

Min and max functions for 3 to 4 parameters.

+

Function Documentation

+ +

◆ max() [1/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL C<T> glm::max (C< T > const & x,
C< T > const & y,
C< T > const & z 
)
+
+ +

Return the maximum component-wise values of 3 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ max() [2/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL C<T> glm::max (C< T > const & x,
C< T > const & y,
C< T > const & z,
C< T > const & w 
)
+
+ +

Return the maximum component-wise values of 4 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ max() [3/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL C<T> glm::max (C< T > const & x,
typename C< T >::T const & y,
typename C< T >::T const & z 
)
+
+ +

Return the maximum component-wise values of 3 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ max() [4/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL C<T> glm::max (C< T > const & x,
typename C< T >::T const & y,
typename C< T >::T const & z,
typename C< T >::T const & w 
)
+
+ +

Return the maximum component-wise values of 4 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ max() [5/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::max (T const & x,
T const & y,
T const & z 
)
+
+ +

Return the maximum component-wise values of 3 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ max() [6/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::max (T const & x,
T const & y,
T const & z,
T const & w 
)
+
+ +

Return the maximum component-wise values of 4 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ min() [1/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL C<T> glm::min (C< T > const & x,
C< T > const & y,
C< T > const & z 
)
+
+ +

Return the minimum component-wise values of 3 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ min() [2/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL C<T> glm::min (C< T > const & x,
C< T > const & y,
C< T > const & z,
C< T > const & w 
)
+
+ +

Return the minimum component-wise values of 4 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ min() [3/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL C<T> glm::min (C< T > const & x,
typename C< T >::T const & y,
typename C< T >::T const & z 
)
+
+ +

Return the minimum component-wise values of 3 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ min() [4/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL C<T> glm::min (C< T > const & x,
typename C< T >::T const & y,
typename C< T >::T const & z,
typename C< T >::T const & w 
)
+
+ +

Return the minimum component-wise values of 4 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ min() [5/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::min (T const & x,
T const & y,
T const & z 
)
+
+ +

Return the minimum component-wise values of 3 inputs.

+
See also
gtx_extented_min_max
+ +
+
+ +

◆ min() [6/6]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::min (T const & x,
T const & y,
T const & z,
T const & w 
)
+
+ +

Return the minimum component-wise values of 4 inputs.

+
See also
gtx_extented_min_max
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00940.html b/include/glm/doc/api/a00940.html new file mode 100644 index 0000000..4fc931e --- /dev/null +++ b/include/glm/doc/api/a00940.html @@ -0,0 +1,132 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_exterior_product + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_exterior_product
+
+
+ +

Allow to perform bit operations on integer values. +More...

+ + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR T cross (vec< 2, T, Q > const &v, vec< 2, T, Q > const &u)
 Returns the cross product of x and y. More...
 
+

Detailed Description

+

Allow to perform bit operations on integer values.

+

Include <glm/gtx/exterior_product.hpp> to use the features of this extension.

+

Function Documentation

+ +

◆ cross()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR T glm::cross (vec< 2, T, Q > const & v,
vec< 2, T, Q > const & u 
)
+
+ +

Returns the cross product of x and y.

+
Template Parameters
+ + + +
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
Exterior product
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00941.html b/include/glm/doc/api/a00941.html new file mode 100644 index 0000000..95cb4d3 --- /dev/null +++ b/include/glm/doc/api/a00941.html @@ -0,0 +1,417 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_fast_exponential + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_fast_exponential
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL T fastExp (T x)
 Faster than the common exp function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastExp (vec< L, T, Q > const &x)
 Faster than the common exp function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastExp2 (T x)
 Faster than the common exp2 function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastExp2 (vec< L, T, Q > const &x)
 Faster than the common exp2 function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastLog (T x)
 Faster than the common log function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastLog (vec< L, T, Q > const &x)
 Faster than the common exp2 function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastLog2 (T x)
 Faster than the common log2 function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastLog2 (vec< L, T, Q > const &x)
 Faster than the common log2 function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastPow (genType x, genType y)
 Faster than the common pow function but less accurate. More...
 
template<typename genTypeT , typename genTypeU >
GLM_FUNC_DECL genTypeT fastPow (genTypeT x, genTypeU y)
 Faster than the common pow function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastPow (vec< L, T, Q > const &x)
 Faster than the common pow function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastPow (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Faster than the common pow function but less accurate. More...
 
+

Detailed Description

+

Include <glm/gtx/fast_exponential.hpp> to use the features of this extension.

+

Fast but less accurate implementations of exponential based functions.

+

Function Documentation

+ +

◆ fastExp() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastExp (x)
+
+ +

Faster than the common exp function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastExp() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fastExp (vec< L, T, Q > const & x)
+
+ +

Faster than the common exp function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastExp2() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastExp2 (x)
+
+ +

Faster than the common exp2 function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastExp2() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fastExp2 (vec< L, T, Q > const & x)
+
+ +

Faster than the common exp2 function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastLog() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastLog (x)
+
+ +

Faster than the common log function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastLog() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fastLog (vec< L, T, Q > const & x)
+
+ +

Faster than the common exp2 function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastLog2() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastLog2 (x)
+
+ +

Faster than the common log2 function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastLog2() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fastLog2 (vec< L, T, Q > const & x)
+
+ +

Faster than the common log2 function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastPow() [1/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::fastPow (genType x,
genType y 
)
+
+ +

Faster than the common pow function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastPow() [2/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genTypeT glm::fastPow (genTypeT x,
genTypeU y 
)
+
+ +

Faster than the common pow function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastPow() [3/4]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fastPow (vec< L, T, Q > const & x)
+
+ +

Faster than the common pow function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+ +

◆ fastPow() [4/4]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fastPow (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Faster than the common pow function but less accurate.

+
See also
GLM_GTX_fast_exponential
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00942.html b/include/glm/doc/api/a00942.html new file mode 100644 index 0000000..679d304 --- /dev/null +++ b/include/glm/doc/api/a00942.html @@ -0,0 +1,359 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_fast_square_root + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_fast_square_root
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType fastDistance (genType x, genType y)
 Faster than the common distance function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T fastDistance (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Faster than the common distance function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastInverseSqrt (genType x)
 Faster than the common inversesqrt function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastInverseSqrt (vec< L, T, Q > const &x)
 Faster than the common inversesqrt function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastLength (genType x)
 Faster than the common length function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T fastLength (vec< L, T, Q > const &x)
 Faster than the common length function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastNormalize (genType x)
 Faster than the common normalize function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastNormalize (vec< L, T, Q > const &x)
 Faster than the common normalize function but less accurate. More...
 
template<typename genType >
GLM_FUNC_DECL genType fastSqrt (genType x)
 Faster than the common sqrt function but less accurate. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fastSqrt (vec< L, T, Q > const &x)
 Faster than the common sqrt function but less accurate. More...
 
+

Detailed Description

+

Include <glm/gtx/fast_square_root.hpp> to use the features of this extension.

+

Fast but less accurate implementations of square root based functions.

    +
  • Sqrt optimisation based on Newton's method, www.gamedev.net/community/forums/topic.asp?topic id=139956
  • +
+

Function Documentation

+ +

◆ fastDistance() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::fastDistance (genType x,
genType y 
)
+
+ +

Faster than the common distance function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+ +

◆ fastDistance() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::fastDistance (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Faster than the common distance function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+ +

◆ fastInverseSqrt() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::fastInverseSqrt (genType x)
+
+ +

Faster than the common inversesqrt function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+ +

◆ fastInverseSqrt() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fastInverseSqrt (vec< L, T, Q > const & x)
+
+ +

Faster than the common inversesqrt function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+ +

◆ fastLength() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::fastLength (genType x)
+
+ +

Faster than the common length function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+ +

◆ fastLength() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastLength (vec< L, T, Q > const & x)
+
+ +

Faster than the common length function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+ +

◆ fastNormalize() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::fastNormalize (genType x)
+
+ +

Faster than the common normalize function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+ +

◆ fastNormalize() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fastNormalize (vec< L, T, Q > const & x)
+
+ +

Faster than the common normalize function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+ +

◆ fastSqrt() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::fastSqrt (genType x)
+
+ +

Faster than the common sqrt function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+ +

◆ fastSqrt() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::fastSqrt (vec< L, T, Q > const & x)
+
+ +

Faster than the common sqrt function but less accurate.

+
See also
GLM_GTX_fast_square_root extension.
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00943.html b/include/glm/doc/api/a00943.html new file mode 100644 index 0000000..fcf36f0 --- /dev/null +++ b/include/glm/doc/api/a00943.html @@ -0,0 +1,277 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_fast_trigonometry + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_fast_trigonometry
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL T fastAcos (T angle)
 Faster than the common acos function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastAsin (T angle)
 Faster than the common asin function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastAtan (T angle)
 Faster than the common atan function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastAtan (T y, T x)
 Faster than the common atan function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastCos (T angle)
 Faster than the common cos function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastSin (T angle)
 Faster than the common sin function but less accurate. More...
 
template<typename T >
GLM_FUNC_DECL T fastTan (T angle)
 Faster than the common tan function but less accurate. More...
 
+template<typename T >
GLM_FUNC_DECL T wrapAngle (T angle)
 Wrap an angle to [0 2pi[ From GLM_GTX_fast_trigonometry extension.
 
+

Detailed Description

+

Include <glm/gtx/fast_trigonometry.hpp> to use the features of this extension.

+

Fast but less accurate implementations of trigonometric functions.

+

Function Documentation

+ +

◆ fastAcos()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastAcos (angle)
+
+ +

Faster than the common acos function but less accurate.

+

Defined between -2pi and 2pi. From GLM_GTX_fast_trigonometry extension.

+ +
+
+ +

◆ fastAsin()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastAsin (angle)
+
+ +

Faster than the common asin function but less accurate.

+

Defined between -2pi and 2pi. From GLM_GTX_fast_trigonometry extension.

+ +
+
+ +

◆ fastAtan() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastAtan (angle)
+
+ +

Faster than the common atan function but less accurate.

+

Defined between -2pi and 2pi. From GLM_GTX_fast_trigonometry extension.

+ +
+
+ +

◆ fastAtan() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::fastAtan (y,
x 
)
+
+ +

Faster than the common atan function but less accurate.

+

Defined between -2pi and 2pi. From GLM_GTX_fast_trigonometry extension.

+ +
+
+ +

◆ fastCos()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastCos (angle)
+
+ +

Faster than the common cos function but less accurate.

+

From GLM_GTX_fast_trigonometry extension.

+ +
+
+ +

◆ fastSin()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastSin (angle)
+
+ +

Faster than the common sin function but less accurate.

+

From GLM_GTX_fast_trigonometry extension.

+ +
+
+ +

◆ fastTan()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::fastTan (angle)
+
+ +

Faster than the common tan function but less accurate.

+

Defined between -2pi and 2pi. From GLM_GTX_fast_trigonometry extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00944.html b/include/glm/doc/api/a00944.html new file mode 100644 index 0000000..daed618 --- /dev/null +++ b/include/glm/doc/api/a00944.html @@ -0,0 +1,169 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_functions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_functions
+
+
+ + + + + + + + + + +

+Functions

template<typename T >
GLM_FUNC_DECL T gauss (T x, T ExpectedValue, T StandardDeviation)
 1D gauss function More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T gauss (vec< 2, T, Q > const &Coord, vec< 2, T, Q > const &ExpectedValue, vec< 2, T, Q > const &StandardDeviation)
 2D gauss function More...
 
+

Detailed Description

+

Include <glm/gtx/functions.hpp> to use the features of this extension.

+

List of useful common functions.

+

Function Documentation

+ +

◆ gauss() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::gauss (x,
ExpectedValue,
StandardDeviation 
)
+
+ +

1D gauss function

+
See also
GLM_GTC_epsilon
+ +
+
+ +

◆ gauss() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::gauss (vec< 2, T, Q > const & Coord,
vec< 2, T, Q > const & ExpectedValue,
vec< 2, T, Q > const & StandardDeviation 
)
+
+ +

2D gauss function

+
See also
GLM_GTC_epsilon
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00945.html b/include/glm/doc/api/a00945.html new file mode 100644 index 0000000..803d2a0 --- /dev/null +++ b/include/glm/doc/api/a00945.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_gradient_paint + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_gradient_paint
+
+
+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL T linearGradient (vec< 2, T, Q > const &Point0, vec< 2, T, Q > const &Point1, vec< 2, T, Q > const &Position)
 Return a color from a linear gradient. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T radialGradient (vec< 2, T, Q > const &Center, T const &Radius, vec< 2, T, Q > const &Focal, vec< 2, T, Q > const &Position)
 Return a color from a radial gradient. More...
 
+

Detailed Description

+

Include <glm/gtx/gradient_paint.hpp> to use the features of this extension.

+

Functions that return the color of procedural gradient for specific coordinates.

+

Function Documentation

+ +

◆ linearGradient()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::linearGradient (vec< 2, T, Q > const & Point0,
vec< 2, T, Q > const & Point1,
vec< 2, T, Q > const & Position 
)
+
+ +

Return a color from a linear gradient.

+
See also
- GLM_GTX_gradient_paint
+ +
+
+ +

◆ radialGradient()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::radialGradient (vec< 2, T, Q > const & Center,
T const & Radius,
vec< 2, T, Q > const & Focal,
vec< 2, T, Q > const & Position 
)
+
+ +

Return a color from a radial gradient.

+
See also
- GLM_GTX_gradient_paint
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00946.html b/include/glm/doc/api/a00946.html new file mode 100644 index 0000000..c994a17 --- /dev/null +++ b/include/glm/doc/api/a00946.html @@ -0,0 +1,169 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_handed_coordinate_space + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_handed_coordinate_space
+
+
+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL bool leftHanded (vec< 3, T, Q > const &tangent, vec< 3, T, Q > const &binormal, vec< 3, T, Q > const &normal)
 Return if a trihedron left handed or not. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool rightHanded (vec< 3, T, Q > const &tangent, vec< 3, T, Q > const &binormal, vec< 3, T, Q > const &normal)
 Return if a trihedron right handed or not. More...
 
+

Detailed Description

+

Include <glm/gtx/handed_coordinate_space.hpp> to use the features of this extension.

+

To know if a set of three basis vectors defines a right or left-handed coordinate system.

+

Function Documentation

+ +

◆ leftHanded()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::leftHanded (vec< 3, T, Q > const & tangent,
vec< 3, T, Q > const & binormal,
vec< 3, T, Q > const & normal 
)
+
+ +

Return if a trihedron left handed or not.

+

From GLM_GTX_handed_coordinate_space extension.

+ +
+
+ +

◆ rightHanded()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::rightHanded (vec< 3, T, Q > const & tangent,
vec< 3, T, Q > const & binormal,
vec< 3, T, Q > const & normal 
)
+
+ +

Return if a trihedron right handed or not.

+

From GLM_GTX_handed_coordinate_space extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00947.html b/include/glm/doc/api/a00947.html new file mode 100644 index 0000000..94ee81d --- /dev/null +++ b/include/glm/doc/api/a00947.html @@ -0,0 +1,79 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_hash + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+

Include <glm/gtx/hash.hpp> to use the features of this extension.

+

Add std::hash support for glm types

+
+ + + + diff --git a/include/glm/doc/api/a00948.html b/include/glm/doc/api/a00948.html new file mode 100644 index 0000000..4a40428 --- /dev/null +++ b/include/glm/doc/api/a00948.html @@ -0,0 +1,351 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_integer + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ + + + + +

+Typedefs

typedef signed int sint
 32bit signed integer. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+template<typename genType >
GLM_FUNC_DECL genType factorial (genType const &x)
 Return the factorial value of a number (!12 max, integer only) From GLM_GTX_integer extension.
 
GLM_FUNC_DECL unsigned int floor_log2 (unsigned int x)
 Returns the floor log2 of x. More...
 
GLM_FUNC_DECL int mod (int x, int y)
 Modulus. More...
 
GLM_FUNC_DECL uint mod (uint x, uint y)
 Modulus. More...
 
GLM_FUNC_DECL uint nlz (uint x)
 Returns the number of leading zeros. More...
 
GLM_FUNC_DECL int pow (int x, uint y)
 Returns x raised to the y power. More...
 
GLM_FUNC_DECL uint pow (uint x, uint y)
 Returns x raised to the y power. More...
 
GLM_FUNC_DECL int sqrt (int x)
 Returns the positive square root of x. More...
 
GLM_FUNC_DECL uint sqrt (uint x)
 Returns the positive square root of x. More...
 
+

Detailed Description

+

Include <glm/gtx/integer.hpp> to use the features of this extension.

+

Add support for integer for core functions

+

Typedef Documentation

+ +

◆ sint

+ +
+
+ + + + +
typedef signed int sint
+
+ +

32bit signed integer.

+

From GLM_GTX_integer extension.

+ +

Definition at line 53 of file gtx/integer.hpp.

+ +
+
+

Function Documentation

+ +

◆ floor_log2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL unsigned int glm::floor_log2 (unsigned int x)
+
+ +

Returns the floor log2 of x.

+

From GLM_GTX_integer extension.

+ +
+
+ +

◆ mod() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int glm::mod (int x,
int y 
)
+
+ +

Modulus.

+

Returns x - y * floor(x / y) for each component in x using the floating point value y. From GLM_GTX_integer extension.

+ +
+
+ +

◆ mod() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint glm::mod (uint x,
uint y 
)
+
+ +

Modulus.

+

Returns x - y * floor(x / y) for each component in x using the floating point value y. From GLM_GTX_integer extension.

+ +
+
+ +

◆ nlz()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::nlz (uint x)
+
+ +

Returns the number of leading zeros.

+

From GLM_GTX_integer extension.

+ +
+
+ +

◆ pow() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL int glm::pow (int x,
uint y 
)
+
+ +

Returns x raised to the y power.

+

From GLM_GTX_integer extension.

+ +
+
+ +

◆ pow() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL uint glm::pow (uint x,
uint y 
)
+
+ +

Returns x raised to the y power.

+

From GLM_GTX_integer extension.

+ +
+
+ +

◆ sqrt() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int glm::sqrt (int x)
+
+ +

Returns the positive square root of x.

+

From GLM_GTX_integer extension.

+ +
+
+ +

◆ sqrt() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::sqrt (uint x)
+
+ +

Returns the positive square root of x.

+

From GLM_GTX_integer extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00949.html b/include/glm/doc/api/a00949.html new file mode 100644 index 0000000..f9a5089 --- /dev/null +++ b/include/glm/doc/api/a00949.html @@ -0,0 +1,447 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_intersect + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_intersect
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL bool intersectLineSphere (genType const &point0, genType const &point1, genType const &sphereCenter, typename genType::value_type sphereRadius, genType &intersectionPosition1, genType &intersectionNormal1, genType &intersectionPosition2=genType(), genType &intersectionNormal2=genType())
 Compute the intersection of a line and a sphere. More...
 
template<typename genType >
GLM_FUNC_DECL bool intersectLineTriangle (genType const &orig, genType const &dir, genType const &vert0, genType const &vert1, genType const &vert2, genType &position)
 Compute the intersection of a line and a triangle. More...
 
template<typename genType >
GLM_FUNC_DECL bool intersectRayPlane (genType const &orig, genType const &dir, genType const &planeOrig, genType const &planeNormal, typename genType::value_type &intersectionDistance)
 Compute the intersection of a ray and a plane. More...
 
template<typename genType >
GLM_FUNC_DECL bool intersectRaySphere (genType const &rayStarting, genType const &rayNormalizedDirection, genType const &sphereCenter, const typename genType::value_type sphereRadius, genType &intersectionPosition, genType &intersectionNormal)
 Compute the intersection of a ray and a sphere. More...
 
template<typename genType >
GLM_FUNC_DECL bool intersectRaySphere (genType const &rayStarting, genType const &rayNormalizedDirection, genType const &sphereCenter, typename genType::value_type const sphereRadiusSquared, typename genType::value_type &intersectionDistance)
 Compute the intersection distance of a ray and a sphere. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool intersectRayTriangle (vec< 3, T, Q > const &orig, vec< 3, T, Q > const &dir, vec< 3, T, Q > const &v0, vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 2, T, Q > &baryPosition, T &distance)
 Compute the intersection of a ray and a triangle. More...
 
+

Detailed Description

+

Include <glm/gtx/intersect.hpp> to use the features of this extension.

+

Add intersection functions

+

Function Documentation

+ +

◆ intersectLineSphere()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::intersectLineSphere (genType const & point0,
genType const & point1,
genType const & sphereCenter,
typename genType::value_type sphereRadius,
genType & intersectionPosition1,
genType & intersectionNormal1,
genType & intersectionPosition2 = genType(),
genType & intersectionNormal2 = genType() 
)
+
+ +

Compute the intersection of a line and a sphere.

+

From GLM_GTX_intersect extension

+ +
+
+ +

◆ intersectLineTriangle()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::intersectLineTriangle (genType const & orig,
genType const & dir,
genType const & vert0,
genType const & vert1,
genType const & vert2,
genType & position 
)
+
+ +

Compute the intersection of a line and a triangle.

+

From GLM_GTX_intersect extension.

+ +
+
+ +

◆ intersectRayPlane()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::intersectRayPlane (genType const & orig,
genType const & dir,
genType const & planeOrig,
genType const & planeNormal,
typename genType::value_type & intersectionDistance 
)
+
+ +

Compute the intersection of a ray and a plane.

+

Ray direction and plane normal must be unit length. From GLM_GTX_intersect extension.

+ +
+
+ +

◆ intersectRaySphere() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::intersectRaySphere (genType const & rayStarting,
genType const & rayNormalizedDirection,
genType const & sphereCenter,
const typename genType::value_type sphereRadius,
genType & intersectionPosition,
genType & intersectionNormal 
)
+
+ +

Compute the intersection of a ray and a sphere.

+

From GLM_GTX_intersect extension.

+ +
+
+ +

◆ intersectRaySphere() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::intersectRaySphere (genType const & rayStarting,
genType const & rayNormalizedDirection,
genType const & sphereCenter,
typename genType::value_type const sphereRadiusSquared,
typename genType::value_type & intersectionDistance 
)
+
+ +

Compute the intersection distance of a ray and a sphere.

+

The ray direction vector is unit length. From GLM_GTX_intersect extension.

+ +
+
+ +

◆ intersectRayTriangle()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::intersectRayTriangle (vec< 3, T, Q > const & orig,
vec< 3, T, Q > const & dir,
vec< 3, T, Q > const & v0,
vec< 3, T, Q > const & v1,
vec< 3, T, Q > const & v2,
vec< 2, T, Q > & baryPosition,
T & distance 
)
+
+ +

Compute the intersection of a ray and a triangle.

+

Based om Tomas Möller implementation http://fileadmin.cs.lth.se/cs/Personal/Tomas_Akenine-Moller/raytri/ From GLM_GTX_intersect extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00950.html b/include/glm/doc/api/a00950.html new file mode 100644 index 0000000..b4b7612 --- /dev/null +++ b/include/glm/doc/api/a00950.html @@ -0,0 +1,81 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_io + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+

Detailed Description

+

Include <glm/gtx/io.hpp> to use the features of this extension.

+

std::[w]ostream support for glm types

+

std::[w]ostream support for glm types + qualifier/width/etc. manipulators based on howard hinnant's std::chrono io proposal [http://home.roadrunner.com/~hinnant/bloomington/chrono_io.html]

+
+ + + + diff --git a/include/glm/doc/api/a00951.html b/include/glm/doc/api/a00951.html new file mode 100644 index 0000000..b21ca96 --- /dev/null +++ b/include/glm/doc/api/a00951.html @@ -0,0 +1,80 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_iteration + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_GTX_iteration
+
+
+

Detailed Description

+

Include <glm/gtx/iteration.hpp> to use the features of this extension.

+

Defines begin and end for vectors, matrices and quaternions useful for range based for loop construct

+
+ + + + diff --git a/include/glm/doc/api/a00952.html b/include/glm/doc/api/a00952.html new file mode 100644 index 0000000..24dc557 --- /dev/null +++ b/include/glm/doc/api/a00952.html @@ -0,0 +1,157 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_log_base + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_log_base
+
+
+ + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType log (genType const &x, genType const &base)
 Logarithm for any base. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > sign (vec< L, T, Q > const &x, vec< L, T, Q > const &base)
 Logarithm for any base. More...
 
+

Detailed Description

+

Include <glm/gtx/log_base.hpp> to use the features of this extension.

+

Logarithm for any base. base can be a vector or a scalar.

+

Function Documentation

+ +

◆ log()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::log (genType const & x,
genType const & base 
)
+
+ +

Logarithm for any base.

+

From GLM_GTX_log_base.

+ +
+
+ +

◆ sign()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::sign (vec< L, T, Q > const & x,
vec< L, T, Q > const & base 
)
+
+ +

Logarithm for any base.

+

From GLM_GTX_log_base.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00953.html b/include/glm/doc/api/a00953.html new file mode 100644 index 0000000..93a6ba7 --- /dev/null +++ b/include/glm/doc/api/a00953.html @@ -0,0 +1,137 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_matrix_cross_product + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_matrix_cross_product
+
+
+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > matrixCross3 (vec< 3, T, Q > const &x)
 Build a cross product matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > matrixCross4 (vec< 3, T, Q > const &x)
 Build a cross product matrix. More...
 
+

Detailed Description

+

Include <glm/gtx/matrix_cross_product.hpp> to use the features of this extension.

+

Build cross product matrices

+

Function Documentation

+ +

◆ matrixCross3()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::matrixCross3 (vec< 3, T, Q > const & x)
+
+ +

Build a cross product matrix.

+

From GLM_GTX_matrix_cross_product extension.

+ +
+
+ +

◆ matrixCross4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::matrixCross4 (vec< 3, T, Q > const & x)
+
+ +

Build a cross product matrix.

+

From GLM_GTX_matrix_cross_product extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00954.html b/include/glm/doc/api/a00954.html new file mode 100644 index 0000000..aff4c45 --- /dev/null +++ b/include/glm/doc/api/a00954.html @@ -0,0 +1,146 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_matrix_decompose + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_matrix_decompose
+
+
+ + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL bool decompose (mat< 4, 4, T, Q > const &modelMatrix, vec< 3, T, Q > &scale, qua< T, Q > &orientation, vec< 3, T, Q > &translation, vec< 3, T, Q > &skew, vec< 4, T, Q > &perspective)
 Decomposes a model matrix to translations, rotation and scale components. More...
 
+

Detailed Description

+

Include <glm/gtx/matrix_decompose.hpp> to use the features of this extension.

+

Decomposes a model matrix to translations, rotation and scale components

+

Function Documentation

+ +

◆ decompose()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL bool glm::decompose (mat< 4, 4, T, Q > const & modelMatrix,
vec< 3, T, Q > & scale,
qua< T, Q > & orientation,
vec< 3, T, Q > & translation,
vec< 3, T, Q > & skew,
vec< 4, T, Q > & perspective 
)
+
+ +

Decomposes a model matrix to translations, rotation and scale components.

+
See also
GLM_GTX_matrix_decompose
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00955.html b/include/glm/doc/api/a00955.html new file mode 100644 index 0000000..135d006 --- /dev/null +++ b/include/glm/doc/api/a00955.html @@ -0,0 +1,221 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_matrix_factorisation + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_matrix_factorisation
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > fliplr (mat< C, R, T, Q > const &in)
 Flips the matrix columns right and left. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > flipud (mat< C, R, T, Q > const &in)
 Flips the matrix rows up and down. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void qr_decompose (mat< C, R, T, Q > const &in, mat<(C< R ? C :R), R, T, Q > &q, mat< C,(C< R ? C :R), T, Q > &r)
 Performs QR factorisation of a matrix. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void rq_decompose (mat< C, R, T, Q > const &in, mat<(C< R ? C :R), R, T, Q > &r, mat< C,(C< R ? C :R), T, Q > &q)
 Performs RQ factorisation of a matrix. More...
 
+

Detailed Description

+

Include <glm/gtx/matrix_factorisation.hpp> to use the features of this extension.

+

Functions to factor matrices in various forms

+

Function Documentation

+ +

◆ fliplr()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<C, R, T, Q> glm::fliplr (mat< C, R, T, Q > const & in)
+
+ +

Flips the matrix columns right and left.

+

From GLM_GTX_matrix_factorisation extension.

+ +
+
+ +

◆ flipud()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<C, R, T, Q> glm::flipud (mat< C, R, T, Q > const & in)
+
+ +

Flips the matrix rows up and down.

+

From GLM_GTX_matrix_factorisation extension.

+ +
+
+ +

◆ qr_decompose()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::qr_decompose (mat< C, R, T, Q > const & in,
mat<(C< R ? C :R), R, T, Q > & q,
mat< C,(C< R ? C :R), T, Q > & r 
)
+
+ +

Performs QR factorisation of a matrix.

+

Returns 2 matrices, q and r, such that the columns of q are orthonormal and span the same subspace than those of the input matrix, r is an upper triangular matrix, and q*r=in. Given an n-by-m input matrix, q has dimensions min(n,m)-by-m, and r has dimensions n-by-min(n,m).

+

From GLM_GTX_matrix_factorisation extension.

+ +
+
+ +

◆ rq_decompose()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::rq_decompose (mat< C, R, T, Q > const & in,
mat<(C< R ? C :R), R, T, Q > & r,
mat< C,(C< R ? C :R), T, Q > & q 
)
+
+ +

Performs RQ factorisation of a matrix.

+

Returns 2 matrices, r and q, such that r is an upper triangular matrix, the rows of q are orthonormal and span the same subspace than those of the input matrix, and r*q=in. Note that in the context of RQ factorisation, the diagonal is seen as starting in the lower-right corner of the matrix, instead of the usual upper-left. Given an n-by-m input matrix, r has dimensions min(n,m)-by-m, and q has dimensions n-by-min(n,m).

+

From GLM_GTX_matrix_factorisation extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00956.html b/include/glm/doc/api/a00956.html new file mode 100644 index 0000000..b6ffb96 --- /dev/null +++ b/include/glm/doc/api/a00956.html @@ -0,0 +1,229 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_matrix_interpolation + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_matrix_interpolation
+
+
+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void axisAngle (mat< 4, 4, T, Q > const &Mat, vec< 3, T, Q > &Axis, T &Angle)
 Get the axis and angle of the rotation from a matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > axisAngleMatrix (vec< 3, T, Q > const &Axis, T const Angle)
 Build a matrix from axis and angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > extractMatrixRotation (mat< 4, 4, T, Q > const &Mat)
 Extracts the rotation part of a matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > interpolate (mat< 4, 4, T, Q > const &m1, mat< 4, 4, T, Q > const &m2, T const Delta)
 Build a interpolation of 4 * 4 matrixes. More...
 
+

Detailed Description

+

Include <glm/gtx/matrix_interpolation.hpp> to use the features of this extension.

+

Allows to directly interpolate two matrices.

+

Function Documentation

+ +

◆ axisAngle()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::axisAngle (mat< 4, 4, T, Q > const & Mat,
vec< 3, T, Q > & Axis,
T & Angle 
)
+
+ +

Get the axis and angle of the rotation from a matrix.

+

From GLM_GTX_matrix_interpolation extension.

+ +
+
+ +

◆ axisAngleMatrix()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::axisAngleMatrix (vec< 3, T, Q > const & Axis,
T const Angle 
)
+
+ +

Build a matrix from axis and angle.

+

From GLM_GTX_matrix_interpolation extension.

+ +
+
+ +

◆ extractMatrixRotation()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::extractMatrixRotation (mat< 4, 4, T, Q > const & Mat)
+
+ +

Extracts the rotation part of a matrix.

+

From GLM_GTX_matrix_interpolation extension.

+ +
+
+ +

◆ interpolate()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::interpolate (mat< 4, 4, T, Q > const & m1,
mat< 4, 4, T, Q > const & m2,
T const Delta 
)
+
+ +

Build a interpolation of 4 * 4 matrixes.

+

From GLM_GTX_matrix_interpolation extension. Warning! works only with rotation and/or translation matrixes, scale will generate unexpected results.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00957.html b/include/glm/doc/api/a00957.html new file mode 100644 index 0000000..b3177d4 --- /dev/null +++ b/include/glm/doc/api/a00957.html @@ -0,0 +1,483 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_matrix_major_storage + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_matrix_major_storage
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > colMajor2 (mat< 2, 2, T, Q > const &m)
 Build a column major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > colMajor2 (vec< 2, T, Q > const &v1, vec< 2, T, Q > const &v2)
 Build a column major matrix from column vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > colMajor3 (mat< 3, 3, T, Q > const &m)
 Build a column major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > colMajor3 (vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)
 Build a column major matrix from column vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > colMajor4 (mat< 4, 4, T, Q > const &m)
 Build a column major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > colMajor4 (vec< 4, T, Q > const &v1, vec< 4, T, Q > const &v2, vec< 4, T, Q > const &v3, vec< 4, T, Q > const &v4)
 Build a column major matrix from column vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > rowMajor2 (mat< 2, 2, T, Q > const &m)
 Build a row major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > rowMajor2 (vec< 2, T, Q > const &v1, vec< 2, T, Q > const &v2)
 Build a row major matrix from row vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > rowMajor3 (mat< 3, 3, T, Q > const &m)
 Build a row major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > rowMajor3 (vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)
 Build a row major matrix from row vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rowMajor4 (mat< 4, 4, T, Q > const &m)
 Build a row major matrix from other matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rowMajor4 (vec< 4, T, Q > const &v1, vec< 4, T, Q > const &v2, vec< 4, T, Q > const &v3, vec< 4, T, Q > const &v4)
 Build a row major matrix from row vectors. More...
 
+

Detailed Description

+

Include <glm/gtx/matrix_major_storage.hpp> to use the features of this extension.

+

Build matrices with specific matrix order, row or column

+

Function Documentation

+ +

◆ colMajor2() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 2, T, Q> glm::colMajor2 (mat< 2, 2, T, Q > const & m)
+
+ +

Build a column major matrix from other matrix.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ colMajor2() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<2, 2, T, Q> glm::colMajor2 (vec< 2, T, Q > const & v1,
vec< 2, T, Q > const & v2 
)
+
+ +

Build a column major matrix from column vectors.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ colMajor3() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::colMajor3 (mat< 3, 3, T, Q > const & m)
+
+ +

Build a column major matrix from other matrix.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ colMajor3() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::colMajor3 (vec< 3, T, Q > const & v1,
vec< 3, T, Q > const & v2,
vec< 3, T, Q > const & v3 
)
+
+ +

Build a column major matrix from column vectors.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ colMajor4() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::colMajor4 (mat< 4, 4, T, Q > const & m)
+
+ +

Build a column major matrix from other matrix.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ colMajor4() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::colMajor4 (vec< 4, T, Q > const & v1,
vec< 4, T, Q > const & v2,
vec< 4, T, Q > const & v3,
vec< 4, T, Q > const & v4 
)
+
+ +

Build a column major matrix from column vectors.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ rowMajor2() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 2, T, Q> glm::rowMajor2 (mat< 2, 2, T, Q > const & m)
+
+ +

Build a row major matrix from other matrix.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ rowMajor2() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<2, 2, T, Q> glm::rowMajor2 (vec< 2, T, Q > const & v1,
vec< 2, T, Q > const & v2 
)
+
+ +

Build a row major matrix from row vectors.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ rowMajor3() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::rowMajor3 (mat< 3, 3, T, Q > const & m)
+
+ +

Build a row major matrix from other matrix.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ rowMajor3() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::rowMajor3 (vec< 3, T, Q > const & v1,
vec< 3, T, Q > const & v2,
vec< 3, T, Q > const & v3 
)
+
+ +

Build a row major matrix from row vectors.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ rowMajor4() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::rowMajor4 (mat< 4, 4, T, Q > const & m)
+
+ +

Build a row major matrix from other matrix.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+ +

◆ rowMajor4() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::rowMajor4 (vec< 4, T, Q > const & v1,
vec< 4, T, Q > const & v2,
vec< 4, T, Q > const & v3,
vec< 4, T, Q > const & v4 
)
+
+ +

Build a row major matrix from row vectors.

+

From GLM_GTX_matrix_major_storage extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00958.html b/include/glm/doc/api/a00958.html new file mode 100644 index 0000000..5f65cb5 --- /dev/null +++ b/include/glm/doc/api/a00958.html @@ -0,0 +1,387 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_matrix_operation + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_matrix_operation
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > adjugate (mat< 2, 2, T, Q > const &m)
 Build an adjugate matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > adjugate (mat< 3, 3, T, Q > const &m)
 Build an adjugate matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > adjugate (mat< 4, 4, T, Q > const &m)
 Build an adjugate matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 2, T, Q > diagonal2x2 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 3, T, Q > diagonal2x3 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 2, 4, T, Q > diagonal2x4 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 2, T, Q > diagonal3x2 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > diagonal3x3 (vec< 3, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 4, T, Q > diagonal3x4 (vec< 3, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 2, T, Q > diagonal4x2 (vec< 2, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 3, T, Q > diagonal4x3 (vec< 3, T, Q > const &v)
 Build a diagonal matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > diagonal4x4 (vec< 4, T, Q > const &v)
 Build a diagonal matrix. More...
 
+

Detailed Description

+

Include <glm/gtx/matrix_operation.hpp> to use the features of this extension.

+

Build diagonal matrices from vectors.

+

Function Documentation

+ +

◆ adjugate() [1/3]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 2, T, Q> glm::adjugate (mat< 2, 2, T, Q > const & m)
+
+ +

Build an adjugate matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ adjugate() [2/3]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::adjugate (mat< 3, 3, T, Q > const & m)
+
+ +

Build an adjugate matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ adjugate() [3/3]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::adjugate (mat< 4, 4, T, Q > const & m)
+
+ +

Build an adjugate matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ diagonal2x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 2, T, Q> glm::diagonal2x2 (vec< 2, T, Q > const & v)
+
+ +

Build a diagonal matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ diagonal2x3()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 3, T, Q> glm::diagonal2x3 (vec< 2, T, Q > const & v)
+
+ +

Build a diagonal matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ diagonal2x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<2, 4, T, Q> glm::diagonal2x4 (vec< 2, T, Q > const & v)
+
+ +

Build a diagonal matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ diagonal3x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 2, T, Q> glm::diagonal3x2 (vec< 2, T, Q > const & v)
+
+ +

Build a diagonal matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ diagonal3x3()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::diagonal3x3 (vec< 3, T, Q > const & v)
+
+ +

Build a diagonal matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ diagonal3x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 4, T, Q> glm::diagonal3x4 (vec< 3, T, Q > const & v)
+
+ +

Build a diagonal matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ diagonal4x2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 2, T, Q> glm::diagonal4x2 (vec< 2, T, Q > const & v)
+
+ +

Build a diagonal matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ diagonal4x3()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 3, T, Q> glm::diagonal4x3 (vec< 3, T, Q > const & v)
+
+ +

Build a diagonal matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+ +

◆ diagonal4x4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::diagonal4x4 (vec< 4, T, Q > const & v)
+
+ +

Build a diagonal matrix.

+

From GLM_GTX_matrix_operation extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00959.html b/include/glm/doc/api/a00959.html new file mode 100644 index 0000000..4368e24 --- /dev/null +++ b/include/glm/doc/api/a00959.html @@ -0,0 +1,367 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_matrix_query + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_matrix_query
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q, template< length_t, length_t, typename, qualifier > class matType>
GLM_FUNC_DECL bool isIdentity (matType< C, R, T, Q > const &m, T const &epsilon)
 Return whether a matrix is an identity matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNormalized (mat< 2, 2, T, Q > const &m, T const &epsilon)
 Return whether a matrix is a normalized matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNormalized (mat< 3, 3, T, Q > const &m, T const &epsilon)
 Return whether a matrix is a normalized matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNormalized (mat< 4, 4, T, Q > const &m, T const &epsilon)
 Return whether a matrix is a normalized matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNull (mat< 2, 2, T, Q > const &m, T const &epsilon)
 Return whether a matrix a null matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNull (mat< 3, 3, T, Q > const &m, T const &epsilon)
 Return whether a matrix a null matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL bool isNull (mat< 4, 4, T, Q > const &m, T const &epsilon)
 Return whether a matrix is a null matrix. More...
 
template<length_t C, length_t R, typename T , qualifier Q, template< length_t, length_t, typename, qualifier > class matType>
GLM_FUNC_DECL bool isOrthogonal (matType< C, R, T, Q > const &m, T const &epsilon)
 Return whether a matrix is an orthonormalized matrix. More...
 
+

Detailed Description

+

Include <glm/gtx/matrix_query.hpp> to use the features of this extension.

+

Query to evaluate matrix properties

+

Function Documentation

+ +

◆ isIdentity()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isIdentity (matType< C, R, T, Q > const & m,
T const & epsilon 
)
+
+ +

Return whether a matrix is an identity matrix.

+

From GLM_GTX_matrix_query extension.

+ +
+
+ +

◆ isNormalized() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isNormalized (mat< 2, 2, T, Q > const & m,
T const & epsilon 
)
+
+ +

Return whether a matrix is a normalized matrix.

+

From GLM_GTX_matrix_query extension.

+ +
+
+ +

◆ isNormalized() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isNormalized (mat< 3, 3, T, Q > const & m,
T const & epsilon 
)
+
+ +

Return whether a matrix is a normalized matrix.

+

From GLM_GTX_matrix_query extension.

+ +
+
+ +

◆ isNormalized() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isNormalized (mat< 4, 4, T, Q > const & m,
T const & epsilon 
)
+
+ +

Return whether a matrix is a normalized matrix.

+

From GLM_GTX_matrix_query extension.

+ +
+
+ +

◆ isNull() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isNull (mat< 2, 2, T, Q > const & m,
T const & epsilon 
)
+
+ +

Return whether a matrix a null matrix.

+

From GLM_GTX_matrix_query extension.

+ +
+
+ +

◆ isNull() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isNull (mat< 3, 3, T, Q > const & m,
T const & epsilon 
)
+
+ +

Return whether a matrix a null matrix.

+

From GLM_GTX_matrix_query extension.

+ +
+
+ +

◆ isNull() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isNull (mat< 4, 4, T, Q > const & m,
T const & epsilon 
)
+
+ +

Return whether a matrix is a null matrix.

+

From GLM_GTX_matrix_query extension.

+ +
+
+ +

◆ isOrthogonal()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isOrthogonal (matType< C, R, T, Q > const & m,
T const & epsilon 
)
+
+ +

Return whether a matrix is an orthonormalized matrix.

+

From GLM_GTX_matrix_query extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00960.html b/include/glm/doc/api/a00960.html new file mode 100644 index 0000000..ec4ffec --- /dev/null +++ b/include/glm/doc/api/a00960.html @@ -0,0 +1,292 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_matrix_transform_2d + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_matrix_transform_2d
+
+
+ + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > rotate (mat< 3, 3, T, Q > const &m, T angle)
 Builds a rotation 3 * 3 matrix created from an angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > scale (mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)
 Builds a scale 3 * 3 matrix created from a vector of 2 components. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > shearX (mat< 3, 3, T, Q > const &m, T y)
 Builds an horizontal (parallel to the x axis) shear 3 * 3 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > shearY (mat< 3, 3, T, Q > const &m, T x)
 Builds a vertical (parallel to the y axis) shear 3 * 3 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > translate (mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)
 Builds a translation 3 * 3 matrix created from a vector of 2 components. More...
 
+

Detailed Description

+

Include <glm/gtx/matrix_transform_2d.hpp> to use the features of this extension.

+

Defines functions that generate common 2d transformation matrices.

+

Function Documentation

+ +

◆ rotate()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_QUALIFIER mat<3, 3, T, Q> glm::rotate (mat< 3, 3, T, Q > const & m,
angle 
)
+
+ +

Builds a rotation 3 * 3 matrix created from an angle.

+
Parameters
+ + + +
mInput matrix multiplied by this translation matrix.
angleRotation angle expressed in radians.
+
+
+ +
+
+ +

◆ scale()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_QUALIFIER mat<3, 3, T, Q> glm::scale (mat< 3, 3, T, Q > const & m,
vec< 2, T, Q > const & v 
)
+
+ +

Builds a scale 3 * 3 matrix created from a vector of 2 components.

+
Parameters
+ + + +
mInput matrix multiplied by this translation matrix.
vCoordinates of a scale vector.
+
+
+ +
+
+ +

◆ shearX()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_QUALIFIER mat<3, 3, T, Q> glm::shearX (mat< 3, 3, T, Q > const & m,
y 
)
+
+ +

Builds an horizontal (parallel to the x axis) shear 3 * 3 matrix.

+
Parameters
+ + + +
mInput matrix multiplied by this translation matrix.
yShear factor.
+
+
+ +
+
+ +

◆ shearY()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_QUALIFIER mat<3, 3, T, Q> glm::shearY (mat< 3, 3, T, Q > const & m,
x 
)
+
+ +

Builds a vertical (parallel to the y axis) shear 3 * 3 matrix.

+
Parameters
+ + + +
mInput matrix multiplied by this translation matrix.
xShear factor.
+
+
+ +
+
+ +

◆ translate()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_QUALIFIER mat<3, 3, T, Q> glm::translate (mat< 3, 3, T, Q > const & m,
vec< 2, T, Q > const & v 
)
+
+ +

Builds a translation 3 * 3 matrix created from a vector of 2 components.

+
Parameters
+ + + +
mInput matrix multiplied by this translation matrix.
vCoordinates of a translation vector.
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00961.html b/include/glm/doc/api/a00961.html new file mode 100644 index 0000000..2362a04 --- /dev/null +++ b/include/glm/doc/api/a00961.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_mixed_producte + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_mixed_producte
+
+
+ + + + + + +

+Functions

+template<typename T , qualifier Q>
GLM_FUNC_DECL T mixedProduct (vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)
 Mixed product of 3 vectors (from GLM_GTX_mixed_product extension)
 
+

Detailed Description

+

Include <glm/gtx/mixed_product.hpp> to use the features of this extension.

+

Mixed product of 3 vectors.

+
+ + + + diff --git a/include/glm/doc/api/a00962.html b/include/glm/doc/api/a00962.html new file mode 100644 index 0000000..2c86469 --- /dev/null +++ b/include/glm/doc/api/a00962.html @@ -0,0 +1,403 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_norm + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T distance2 (vec< L, T, Q > const &p0, vec< L, T, Q > const &p1)
 Returns the squared distance between p0 and p1, i.e., length2(p0 - p1). More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T l1Norm (vec< 3, T, Q > const &v)
 Returns the L1 norm of v. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T l1Norm (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Returns the L1 norm between x and y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T l2Norm (vec< 3, T, Q > const &x)
 Returns the L2 norm of v. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T l2Norm (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Returns the L2 norm between x and y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T length2 (vec< L, T, Q > const &x)
 Returns the squared length of x. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T lMaxNorm (vec< 3, T, Q > const &x)
 Returns the LMax norm of v. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T lMaxNorm (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Returns the LMax norm between x and y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T lxNorm (vec< 3, T, Q > const &x, unsigned int Depth)
 Returns the L norm of v. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T lxNorm (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, unsigned int Depth)
 Returns the L norm between x and y. More...
 
+

Detailed Description

+

Include <glm/gtx/norm.hpp> to use the features of this extension.

+

Various ways to compute vector norms.

+

Function Documentation

+ +

◆ distance2()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::distance2 (vec< L, T, Q > const & p0,
vec< L, T, Q > const & p1 
)
+
+ +

Returns the squared distance between p0 and p1, i.e., length2(p0 - p1).

+

From GLM_GTX_norm extension.

+ +
+
+ +

◆ l1Norm() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::l1Norm (vec< 3, T, Q > const & v)
+
+ +

Returns the L1 norm of v.

+

From GLM_GTX_norm extension.

+ +
+
+ +

◆ l1Norm() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::l1Norm (vec< 3, T, Q > const & x,
vec< 3, T, Q > const & y 
)
+
+ +

Returns the L1 norm between x and y.

+

From GLM_GTX_norm extension.

+ +
+
+ +

◆ l2Norm() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::l2Norm (vec< 3, T, Q > const & x)
+
+ +

Returns the L2 norm of v.

+

From GLM_GTX_norm extension.

+ +
+
+ +

◆ l2Norm() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::l2Norm (vec< 3, T, Q > const & x,
vec< 3, T, Q > const & y 
)
+
+ +

Returns the L2 norm between x and y.

+

From GLM_GTX_norm extension.

+ +
+
+ +

◆ length2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::length2 (vec< L, T, Q > const & x)
+
+ +

Returns the squared length of x.

+

From GLM_GTX_norm extension.

+ +
+
+ +

◆ lMaxNorm() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::lMaxNorm (vec< 3, T, Q > const & x)
+
+ +

Returns the LMax norm of v.

+

From GLM_GTX_norm extension.

+ +
+
+ +

◆ lMaxNorm() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::lMaxNorm (vec< 3, T, Q > const & x,
vec< 3, T, Q > const & y 
)
+
+ +

Returns the LMax norm between x and y.

+

From GLM_GTX_norm extension.

+ +
+
+ +

◆ lxNorm() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::lxNorm (vec< 3, T, Q > const & x,
unsigned int Depth 
)
+
+ +

Returns the L norm of v.

+

From GLM_GTX_norm extension.

+ +
+
+ +

◆ lxNorm() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::lxNorm (vec< 3, T, Q > const & x,
vec< 3, T, Q > const & y,
unsigned int Depth 
)
+
+ +

Returns the L norm between x and y.

+

From GLM_GTX_norm extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00963.html b/include/glm/doc/api/a00963.html new file mode 100644 index 0000000..2808707 --- /dev/null +++ b/include/glm/doc/api/a00963.html @@ -0,0 +1,128 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_normal + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > triangleNormal (vec< 3, T, Q > const &p1, vec< 3, T, Q > const &p2, vec< 3, T, Q > const &p3)
 Computes triangle normal from triangle points. More...
 
+

Detailed Description

+

Include <glm/gtx/normal.hpp> to use the features of this extension.

+

Compute the normal of a triangle.

+

Function Documentation

+ +

◆ triangleNormal()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::triangleNormal (vec< 3, T, Q > const & p1,
vec< 3, T, Q > const & p2,
vec< 3, T, Q > const & p3 
)
+
+ +

Computes triangle normal from triangle points.

+
See also
GLM_GTX_normal
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00964.html b/include/glm/doc/api/a00964.html new file mode 100644 index 0000000..e9b5506 --- /dev/null +++ b/include/glm/doc/api/a00964.html @@ -0,0 +1,159 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_normalize_dot + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_normalize_dot
+
+
+ + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T fastNormalizeDot (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Normalize parameters and returns the dot product of x and y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T normalizeDot (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Normalize parameters and returns the dot product of x and y. More...
 
+

Detailed Description

+

Include <glm/gtx/normalize_dot.hpp> to use the features of this extension.

+

Dot product of vectors that need to be normalize with a single square root.

+

Function Documentation

+ +

◆ fastNormalizeDot()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::fastNormalizeDot (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Normalize parameters and returns the dot product of x and y.

+

Faster that dot(fastNormalize(x), fastNormalize(y)).

+
See also
GLM_GTX_normalize_dot extension.
+ +
+
+ +

◆ normalizeDot()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::normalizeDot (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Normalize parameters and returns the dot product of x and y.

+

It's faster that dot(normalize(x), normalize(y)).

+
See also
GLM_GTX_normalize_dot extension.
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00965.html b/include/glm/doc/api/a00965.html new file mode 100644 index 0000000..c148eaf --- /dev/null +++ b/include/glm/doc/api/a00965.html @@ -0,0 +1,102 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_number_precision + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_number_precision
+
+
+ + + + + + + + + + + + + + +

+Typedefs

+typedef f32 f32mat1
 Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
 
+typedef f32 f32mat1x1
 Single-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
 
+typedef f64 f64mat1
 Double-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
 
+typedef f64 f64mat1x1
 Double-qualifier floating-point scalar. (from GLM_GTX_number_precision extension)
 
+

Detailed Description

+

Include <glm/gtx/number_precision.hpp> to use the features of this extension.

+

Defined size types.

+
+ + + + diff --git a/include/glm/doc/api/a00966.html b/include/glm/doc/api/a00966.html new file mode 100644 index 0000000..e3e8573 --- /dev/null +++ b/include/glm/doc/api/a00966.html @@ -0,0 +1,162 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_optimum_pow + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_optimum_pow
+
+
+ + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType pow2 (genType const &x)
 Returns x raised to the power of 2. More...
 
template<typename genType >
GLM_FUNC_DECL genType pow3 (genType const &x)
 Returns x raised to the power of 3. More...
 
template<typename genType >
GLM_FUNC_DECL genType pow4 (genType const &x)
 Returns x raised to the power of 4. More...
 
+

Detailed Description

+

Include <glm/gtx/optimum_pow.hpp> to use the features of this extension.

+

Integer exponentiation of power functions.

+

Function Documentation

+ +

◆ pow2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::pow2 (genType const & x)
+
+ +

Returns x raised to the power of 2.

+
See also
GLM_GTX_optimum_pow
+ +
+
+ +

◆ pow3()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::pow3 (genType const & x)
+
+ +

Returns x raised to the power of 3.

+
See also
GLM_GTX_optimum_pow
+ +
+
+ +

◆ pow4()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL genType glm::pow4 (genType const & x)
+
+ +

Returns x raised to the power of 4.

+
See also
GLM_GTX_optimum_pow
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00967.html b/include/glm/doc/api/a00967.html new file mode 100644 index 0000000..6ef3dde --- /dev/null +++ b/include/glm/doc/api/a00967.html @@ -0,0 +1,147 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_orthonormalize + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_orthonormalize
+
+
+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > orthonormalize (mat< 3, 3, T, Q > const &m)
 Returns the orthonormalized matrix of m. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > orthonormalize (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)
 Orthonormalizes x according y. More...
 
+

Detailed Description

+

Include <glm/gtx/orthonormalize.hpp> to use the features of this extension.

+

Orthonormalize matrices.

+

Function Documentation

+ +

◆ orthonormalize() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::orthonormalize (mat< 3, 3, T, Q > const & m)
+
+ +

Returns the orthonormalized matrix of m.

+
See also
GLM_GTX_orthonormalize
+ +
+
+ +

◆ orthonormalize() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::orthonormalize (vec< 3, T, Q > const & x,
vec< 3, T, Q > const & y 
)
+
+ +

Orthonormalizes x according y.

+
See also
GLM_GTX_orthonormalize
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00968.html b/include/glm/doc/api/a00968.html new file mode 100644 index 0000000..e79c735 --- /dev/null +++ b/include/glm/doc/api/a00968.html @@ -0,0 +1,363 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_pca + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+template<length_t D, typename T , qualifier Q, typename I >
GLM_FUNC_DECL mat< D, D, T, Q > computeCovarianceMatrix (I const &b, I const &e)
 Compute a covariance matrix form a pair of iterators b (begin) and e (end) of a container with relative coordinates (e.g., relative to the center of gravity of the object) Dereferencing an iterator of type I must yield a vec<D, T, Qgt;
 
+template<length_t D, typename T , qualifier Q, typename I >
GLM_FUNC_DECL mat< D, D, T, Q > computeCovarianceMatrix (I const &b, I const &e, vec< D, T, Q > const &c)
 Compute a covariance matrix form a pair of iterators b (begin) and e (end) of a container with absolute coordinates and a precomputed center of gravity c Dereferencing an iterator of type I must yield a vec<D, T, Qgt;
 
template<length_t D, typename T , qualifier Q>
GLM_INLINE mat< D, D, T, Q > computeCovarianceMatrix (vec< D, T, Q > const *v, size_t n)
 Compute a covariance matrix form an array of relative coordinates v (e.g., relative to the center of gravity of the object) More...
 
template<length_t D, typename T , qualifier Q>
GLM_INLINE mat< D, D, T, Q > computeCovarianceMatrix (vec< D, T, Q > const *v, size_t n, vec< D, T, Q > const &c)
 Compute a covariance matrix form an array of absolute coordinates v and a precomputed center of gravity c More...
 
template<length_t D, typename T , qualifier Q>
GLM_FUNC_DECL unsigned int findEigenvaluesSymReal (mat< D, D, T, Q > const &covarMat, vec< D, T, Q > &outEigenvalues, mat< D, D, T, Q > &outEigenvectors)
 Assuming the provided covariance matrix covarMat is symmetric and real-valued, this function find the D Eigenvalues of the matrix, and also provides the corresponding Eigenvectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void sortEigenvalues (vec< 2, T, Q > &eigenvalues, mat< 2, 2, T, Q > &eigenvectors)
 Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void sortEigenvalues (vec< 3, T, Q > &eigenvalues, mat< 3, 3, T, Q > &eigenvectors)
 Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DISCARD_DECL void sortEigenvalues (vec< 4, T, Q > &eigenvalues, mat< 4, 4, T, Q > &eigenvectors)
 Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue. More...
 
+

Detailed Description

+

Include <glm/gtx/pca.hpp> to use the features of this extension.

+

Implements functions required for fundamental 'princple component analysis' in 2D, 3D, and 4D: 1) Computing a covariance matrics from a list of relative position vectors 2) Compute the eigenvalues and eigenvectors of the covariance matrics This is useful, e.g., to compute an object-aligned bounding box from vertices of an object. https://en.wikipedia.org/wiki/Principal_component_analysis

+

Example:

std::vector<glm::dvec3> ptData;
+
// ... fill ptData with some point data, e.g. vertices
+
+
glm::dvec3 center = computeCenter(ptData);
+
+
glm::dmat3 covarMat = glm::computeCovarianceMatrix(ptData.data(), ptData.size(), center);
+
+
glm::dvec3 evals;
+
glm::dmat3 evecs;
+
int evcnt = glm::findEigenvaluesSymReal(covarMat, evals, evecs);
+
+
if(evcnt != 3)
+
// ... error handling
+
+
glm::sortEigenvalues(evals, evecs);
+
+
// ... now evecs[0] points in the direction (symmetric) of the largest spatial distribution within ptData
+

Function Documentation

+ +

◆ computeCovarianceMatrix() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_INLINE mat<D, D, T, Q> glm::computeCovarianceMatrix (vec< D, T, Q > const * v,
size_t n 
)
+
+ +

Compute a covariance matrix form an array of relative coordinates v (e.g., relative to the center of gravity of the object)

+
Parameters
+ + + +
vPoints to a memory holding n times vectors
nNumber of points in v
+
+
+ +
+
+ +

◆ computeCovarianceMatrix() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_INLINE mat<D, D, T, Q> glm::computeCovarianceMatrix (vec< D, T, Q > const * v,
size_t n,
vec< D, T, Q > const & c 
)
+
+ +

Compute a covariance matrix form an array of absolute coordinates v and a precomputed center of gravity c

+
Parameters
+ + + + +
vPoints to a memory holding n times vectors
nNumber of points in v
cPrecomputed center of gravity
+
+
+ +
+
+ +

◆ findEigenvaluesSymReal()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL unsigned int glm::findEigenvaluesSymReal (mat< D, D, T, Q > const & covarMat,
vec< D, T, Q > & outEigenvalues,
mat< D, D, T, Q > & outEigenvectors 
)
+
+ +

Assuming the provided covariance matrix covarMat is symmetric and real-valued, this function find the D Eigenvalues of the matrix, and also provides the corresponding Eigenvectors.

+

Note: the data in outEigenvalues and outEigenvectors are in matching order, i.e. outEigenvector[i] is the Eigenvector of the Eigenvalue outEigenvalue[i]. This is a numeric implementation to find the Eigenvalues, using 'QL decomposition` (variant of QR decomposition: https://en.wikipedia.org/wiki/QR_decomposition).

+
Parameters
+ + + + +
[in]covarMatA symmetric, real-valued covariance matrix, e.g. computed from computeCovarianceMatrix
[out]outEigenvaluesVector to receive the found eigenvalues
[out]outEigenvectorsMatrix to receive the found eigenvectors corresponding to the found eigenvalues, as column vectors
+
+
+
Returns
The number of eigenvalues found, usually D if the precondition of the covariance matrix is met.
+ +
+
+ +

◆ sortEigenvalues() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::sortEigenvalues (vec< 2, T, Q > & eigenvalues,
mat< 2, 2, T, Q > & eigenvectors 
)
+
+ +

Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue.

+

The data in outEigenvalues and outEigenvectors are assumed to be matching order, i.e. outEigenvector[i] is the Eigenvector of the Eigenvalue outEigenvalue[i].

+ +
+
+ +

◆ sortEigenvalues() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::sortEigenvalues (vec< 3, T, Q > & eigenvalues,
mat< 3, 3, T, Q > & eigenvectors 
)
+
+ +

Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue.

+

The data in outEigenvalues and outEigenvectors are assumed to be matching order, i.e. outEigenvector[i] is the Eigenvector of the Eigenvalue outEigenvalue[i].

+ +
+
+ +

◆ sortEigenvalues() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::sortEigenvalues (vec< 4, T, Q > & eigenvalues,
mat< 4, 4, T, Q > & eigenvectors 
)
+
+ +

Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue.

+

The data in outEigenvalues and outEigenvectors are assumed to be matching order, i.e. outEigenvector[i] is the Eigenvector of the Eigenvalue outEigenvalue[i].

+ +
+
+
+
GLM_FUNC_DISCARD_DECL void sortEigenvalues(vec< 2, T, Q > &eigenvalues, mat< 2, 2, T, Q > &eigenvectors)
Sorts a group of Eigenvalues&Eigenvectors, for largest Eigenvalue to smallest Eigenvalue.
+
GLM_INLINE mat< D, D, T, Q > computeCovarianceMatrix(vec< D, T, Q > const *v, size_t n)
Compute a covariance matrix form an array of relative coordinates v (e.g., relative to the center of ...
+
vec< 3, double, defaultp > dvec3
3 components vector of double-precision floating-point numbers.
+
mat< 3, 3, double, defaultp > dmat3
3 columns of 3 components matrix of double-precision floating-point numbers.
+
GLM_FUNC_DECL unsigned int findEigenvaluesSymReal(mat< D, D, T, Q > const &covarMat, vec< D, T, Q > &outEigenvalues, mat< D, D, T, Q > &outEigenvectors)
Assuming the provided covariance matrix covarMat is symmetric and real-valued, this function find the...
+ + + + diff --git a/include/glm/doc/api/a00969.html b/include/glm/doc/api/a00969.html new file mode 100644 index 0000000..9c00fb6 --- /dev/null +++ b/include/glm/doc/api/a00969.html @@ -0,0 +1,122 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_perpendicular + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_perpendicular
+
+
+ + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType perp (genType const &x, genType const &Normal)
 Projects x a perpendicular axis of Normal. More...
 
+

Detailed Description

+

Include <glm/gtx/perpendicular.hpp> to use the features of this extension.

+

Perpendicular of a vector from other one

+

Function Documentation

+ +

◆ perp()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::perp (genType const & x,
genType const & Normal 
)
+
+ +

Projects x a perpendicular axis of Normal.

+

From GLM_GTX_perpendicular extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00970.html b/include/glm/doc/api/a00970.html new file mode 100644 index 0000000..efdfb43 --- /dev/null +++ b/include/glm/doc/api/a00970.html @@ -0,0 +1,137 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_polar_coordinates + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_polar_coordinates
+
+
+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > euclidean (vec< 2, T, Q > const &polar)
 Convert Polar to Euclidean coordinates. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > polar (vec< 3, T, Q > const &euclidean)
 Convert Euclidean to Polar coordinates, x is the latitude, y the longitude and z the xz distance. More...
 
+

Detailed Description

+

Include <glm/gtx/polar_coordinates.hpp> to use the features of this extension.

+

Conversion from Euclidean space to polar space and revert.

+

Function Documentation

+ +

◆ euclidean()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::euclidean (vec< 2, T, Q > const & polar)
+
+ +

Convert Polar to Euclidean coordinates.

+
See also
GLM_GTX_polar_coordinates
+ +
+
+ +

◆ polar()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::polar (vec< 3, T, Q > const & euclidean)
+
+ +

Convert Euclidean to Polar coordinates, x is the latitude, y the longitude and z the xz distance.

+
See also
GLM_GTX_polar_coordinates
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00971.html b/include/glm/doc/api/a00971.html new file mode 100644 index 0000000..e3b3f90 --- /dev/null +++ b/include/glm/doc/api/a00971.html @@ -0,0 +1,129 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_projection + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_projection
+
+
+ + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType proj (genType const &x, genType const &Normal)
 Projects x on Normal. More...
 
+

Detailed Description

+

Include <glm/gtx/projection.hpp> to use the features of this extension.

+

Projection of a vector to other one

+

Function Documentation

+ +

◆ proj()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::proj (genType const & x,
genType const & Normal 
)
+
+ +

Projects x on Normal.

+
Parameters
+ + + +
[in]xA vector to project
[in]NormalA normal that doesn't need to be of unit length.
+
+
+
See also
GLM_GTX_projection
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00972.html b/include/glm/doc/api/a00972.html new file mode 100644 index 0000000..5fcdf29 --- /dev/null +++ b/include/glm/doc/api/a00972.html @@ -0,0 +1,638 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_quaternion + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_quaternion
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 3, T, Q > cross (qua< T, Q > const &q, vec< 3, T, Q > const &v)
 Compute a cross product between a quaternion and a vector. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 3, T, Q > cross (vec< 3, T, Q > const &v, qua< T, Q > const &q)
 Compute a cross product between a vector and a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T extractRealComponent (qua< T, Q > const &q)
 Extract the real component of a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > fastMix (qua< T, Q > const &x, qua< T, Q > const &y, T const &a)
 Quaternion normalized linear interpolation. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > intermediate (qua< T, Q > const &prev, qua< T, Q > const &curr, qua< T, Q > const &next)
 Returns an intermediate control point for squad interpolation. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR T length2 (qua< T, Q > const &q)
 Returns the squared length of x. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > quat_identity ()
 Create an identity quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotate (qua< T, Q > const &q, vec< 3, T, Q > const &v)
 Returns quarternion square root. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotate (qua< T, Q > const &q, vec< 4, T, Q > const &v)
 Rotates a 4 components vector by a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > rotation (vec< 3, T, Q > const &orig, vec< 3, T, Q > const &dest)
 Compute the rotation between two vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > shortMix (qua< T, Q > const &x, qua< T, Q > const &y, T const &a)
 Quaternion interpolation using the rotation short path. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > squad (qua< T, Q > const &q1, qua< T, Q > const &q2, qua< T, Q > const &s1, qua< T, Q > const &s2, T const &h)
 Compute a point on a path according squad equation. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > toMat3 (qua< T, Q > const &x)
 Converts a quaternion to a 3 * 3 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 4, 4, T, Q > toMat4 (qua< T, Q > const &x)
 Converts a quaternion to a 4 * 4 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER qua< T, Q > toQuat (mat< 3, 3, T, Q > const &x)
 Converts a 3 * 3 matrix to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER qua< T, Q > toQuat (mat< 4, 4, T, Q > const &x)
 Converts a 4 * 4 matrix to a quaternion. More...
 
+

Detailed Description

+

Include <glm/gtx/quaternion.hpp> to use the features of this extension.

+

Extended quaternion types and functions

+

Function Documentation

+ +

◆ cross() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> glm::cross (qua< T, Q > const & q,
vec< 3, T, Q > const & v 
)
+
+ +

Compute a cross product between a quaternion and a vector.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ cross() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> glm::cross (vec< 3, T, Q > const & v,
qua< T, Q > const & q 
)
+
+ +

Compute a cross product between a vector and a quaternion.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ extractRealComponent()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL T glm::extractRealComponent (qua< T, Q > const & q)
+
+ +

Extract the real component of a quaternion.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ fastMix()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::fastMix (qua< T, Q > const & x,
qua< T, Q > const & y,
T const & a 
)
+
+ +

Quaternion normalized linear interpolation.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ intermediate()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::intermediate (qua< T, Q > const & prev,
qua< T, Q > const & curr,
qua< T, Q > const & next 
)
+
+ +

Returns an intermediate control point for squad interpolation.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ length2()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR T glm::length2 (qua< T, Q > const & q)
+
+ +

Returns the squared length of x.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ quat_identity()

+ +
+
+ + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> glm::quat_identity ()
+
+ +

Create an identity quaternion.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ rotate() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::rotate (qua< T, Q > const & q,
vec< 3, T, Q > const & v 
)
+
+ +

Returns quarternion square root.

+
See also
GLM_GTX_quaternion Rotates a 3 components vector by a quaternion.
+
+GLM_GTX_quaternion
+ +
+
+ +

◆ rotate() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::rotate (qua< T, Q > const & q,
vec< 4, T, Q > const & v 
)
+
+ +

Rotates a 4 components vector by a quaternion.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ rotation()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::rotation (vec< 3, T, Q > const & orig,
vec< 3, T, Q > const & dest 
)
+
+ +

Compute the rotation between two vectors.

+
Parameters
+ + + +
origvector, needs to be normalized
destvector, needs to be normalized
+
+
+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ shortMix()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::shortMix (qua< T, Q > const & x,
qua< T, Q > const & y,
T const & a 
)
+
+ +

Quaternion interpolation using the rotation short path.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ squad()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::squad (qua< T, Q > const & q1,
qua< T, Q > const & q2,
qua< T, Q > const & s1,
qua< T, Q > const & s2,
T const & h 
)
+
+ +

Compute a point on a path according squad equation.

+

q1 and q2 are control points; s1 and s2 are intermediate control points.

+
See also
GLM_GTX_quaternion
+ +
+
+ +

◆ toMat3()

+ +
+
+ + + + + + + + +
GLM_FUNC_QUALIFIER mat<3, 3, T, Q> glm::toMat3 (qua< T, Q > const & x)
+
+ +

Converts a quaternion to a 3 * 3 matrix.

+
See also
GLM_GTX_quaternion
+ +

Definition at line 111 of file gtx/quaternion.hpp.

+ +

References glm::mat3_cast().

+ +
+
+ +

◆ toMat4()

+ +
+
+ + + + + + + + +
GLM_FUNC_QUALIFIER mat<4, 4, T, Q> glm::toMat4 (qua< T, Q > const & x)
+
+ +

Converts a quaternion to a 4 * 4 matrix.

+
See also
GLM_GTX_quaternion
+ +

Definition at line 118 of file gtx/quaternion.hpp.

+ +

References glm::mat4_cast().

+ +
+
+ +

◆ toQuat() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_QUALIFIER qua<T, Q> glm::toQuat (mat< 3, 3, T, Q > const & x)
+
+ +

Converts a 3 * 3 matrix to a quaternion.

+
See also
GLM_GTX_quaternion
+ +

Definition at line 125 of file gtx/quaternion.hpp.

+ +

References glm::quat_cast().

+ +
+
+ +

◆ toQuat() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_QUALIFIER qua<T, Q> glm::toQuat (mat< 4, 4, T, Q > const & x)
+
+ +

Converts a 4 * 4 matrix to a quaternion.

+
See also
GLM_GTX_quaternion
+ +

Definition at line 132 of file gtx/quaternion.hpp.

+ +

References glm::quat_cast().

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00973.html b/include/glm/doc/api/a00973.html new file mode 100644 index 0000000..5249291 --- /dev/null +++ b/include/glm/doc/api/a00973.html @@ -0,0 +1,80 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_range + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
+
+
+

Detailed Description

+

Include <glm/gtx/range.hpp> to use the features of this extension.

+

Defines begin and end for vectors and matrices. Useful for range-based for loop. The range is defined over the elements, not over columns or rows (e.g. mat4 has 16 elements).

+
+ + + + diff --git a/include/glm/doc/api/a00974.html b/include/glm/doc/api/a00974.html new file mode 100644 index 0000000..e69b3cc --- /dev/null +++ b/include/glm/doc/api/a00974.html @@ -0,0 +1,175 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_raw_data + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_raw_data
+
+
+ + + + + + + + + + + + + + +

+Typedefs

typedef detail::uint8 byte
 Type for byte numbers. More...
 
typedef detail::uint32 dword
 Type for dword numbers. More...
 
typedef detail::uint64 qword
 Type for qword numbers. More...
 
typedef detail::uint16 word
 Type for word numbers. More...
 
+

Detailed Description

+

Include <glm/gtx/raw_data.hpp> to use the features of this extension.

+

Projection of a vector to other one

+

Typedef Documentation

+ +

◆ byte

+ +
+
+ + + + +
typedef detail::uint8 byte
+
+ +

Type for byte numbers.

+

From GLM_GTX_raw_data extension.

+ +

Definition at line 32 of file raw_data.hpp.

+ +
+
+ +

◆ dword

+ +
+
+ + + + +
typedef detail::uint32 dword
+
+ +

Type for dword numbers.

+

From GLM_GTX_raw_data extension.

+ +

Definition at line 40 of file raw_data.hpp.

+ +
+
+ +

◆ qword

+ +
+
+ + + + +
typedef detail::uint64 qword
+
+ +

Type for qword numbers.

+

From GLM_GTX_raw_data extension.

+ +

Definition at line 44 of file raw_data.hpp.

+ +
+
+ +

◆ word

+ +
+
+ + + + +
typedef detail::uint16 word
+
+ +

Type for word numbers.

+

From GLM_GTX_raw_data extension.

+ +

Definition at line 36 of file raw_data.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00975.html b/include/glm/doc/api/a00975.html new file mode 100644 index 0000000..4c0e092 --- /dev/null +++ b/include/glm/doc/api/a00975.html @@ -0,0 +1,197 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_rotate_normalized_axis + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_rotate_normalized_axis
+
+
+ + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rotateNormalizedAxis (mat< 4, 4, T, Q > const &m, T const &angle, vec< 3, T, Q > const &axis)
 Builds a rotation 4 * 4 matrix created from a normalized axis and an angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > rotateNormalizedAxis (qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)
 Rotates a quaternion from a vector of 3 components normalized axis and an angle. More...
 
+

Detailed Description

+

Include <glm/gtx/rotate_normalized_axis.hpp> to use the features of this extension.

+

Quaternions and matrices rotations around normalized axis.

+

Function Documentation

+ +

◆ rotateNormalizedAxis() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::rotateNormalizedAxis (mat< 4, 4, T, Q > const & m,
T const & angle,
vec< 3, T, Q > const & axis 
)
+
+ +

Builds a rotation 4 * 4 matrix created from a normalized axis and an angle.

+
Parameters
+ + + + +
mInput matrix multiplied by this rotation matrix.
angleRotation angle expressed in radians.
axisRotation axis, must be normalized.
+
+
+
Template Parameters
+ + +
TValue type used to build the matrix. Currently supported: half (not recommended), float or double.
+
+
+
See also
GLM_GTX_rotate_normalized_axis
+
+- rotate(T angle, T x, T y, T z)
+
+- rotate(mat<4, 4, T, Q> const& m, T angle, T x, T y, T z)
+
+- rotate(T angle, vec<3, T, Q> const& v)
+ +
+
+ +

◆ rotateNormalizedAxis() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL qua<T, Q> glm::rotateNormalizedAxis (qua< T, Q > const & q,
T const & angle,
vec< 3, T, Q > const & axis 
)
+
+ +

Rotates a quaternion from a vector of 3 components normalized axis and an angle.

+
Parameters
+ + + + +
qSource orientation
angleAngle expressed in radians.
axisNormalized axis of the rotation, must be normalized.
+
+
+
See also
GLM_GTX_rotate_normalized_axis
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00976.html b/include/glm/doc/api/a00976.html new file mode 100644 index 0000000..e1ab85a --- /dev/null +++ b/include/glm/doc/api/a00976.html @@ -0,0 +1,498 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_rotate_vector + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_rotate_vector
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > orientation (vec< 3, T, Q > const &Normal, vec< 3, T, Q > const &Up)
 Build a rotation matrix from a normal and a up vector. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 2, T, Q > rotate (vec< 2, T, Q > const &v, T const &angle)
 Rotate a two dimensional vector. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotate (vec< 3, T, Q > const &v, T const &angle, vec< 3, T, Q > const &normal)
 Rotate a three dimensional vector around an axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotate (vec< 4, T, Q > const &v, T const &angle, vec< 3, T, Q > const &normal)
 Rotate a four dimensional vector around an axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotateX (vec< 3, T, Q > const &v, T const &angle)
 Rotate a three dimensional vector around the X axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotateX (vec< 4, T, Q > const &v, T const &angle)
 Rotate a four dimensional vector around the X axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotateY (vec< 3, T, Q > const &v, T const &angle)
 Rotate a three dimensional vector around the Y axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotateY (vec< 4, T, Q > const &v, T const &angle)
 Rotate a four dimensional vector around the Y axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotateZ (vec< 3, T, Q > const &v, T const &angle)
 Rotate a three dimensional vector around the Z axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotateZ (vec< 4, T, Q > const &v, T const &angle)
 Rotate a four dimensional vector around the Z axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > slerp (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, T const &a)
 Returns Spherical interpolation between two vectors. More...
 
+

Detailed Description

+

Include <glm/gtx/rotate_vector.hpp> to use the features of this extension.

+

Function to directly rotate a vector

+

Function Documentation

+ +

◆ orientation()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::orientation (vec< 3, T, Q > const & Normal,
vec< 3, T, Q > const & Up 
)
+
+ +

Build a rotation matrix from a normal and a up vector.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ rotate() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<2, T, Q> glm::rotate (vec< 2, T, Q > const & v,
T const & angle 
)
+
+ +

Rotate a two dimensional vector.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ rotate() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::rotate (vec< 3, T, Q > const & v,
T const & angle,
vec< 3, T, Q > const & normal 
)
+
+ +

Rotate a three dimensional vector around an axis.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ rotate() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::rotate (vec< 4, T, Q > const & v,
T const & angle,
vec< 3, T, Q > const & normal 
)
+
+ +

Rotate a four dimensional vector around an axis.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ rotateX() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::rotateX (vec< 3, T, Q > const & v,
T const & angle 
)
+
+ +

Rotate a three dimensional vector around the X axis.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ rotateX() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::rotateX (vec< 4, T, Q > const & v,
T const & angle 
)
+
+ +

Rotate a four dimensional vector around the X axis.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ rotateY() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::rotateY (vec< 3, T, Q > const & v,
T const & angle 
)
+
+ +

Rotate a three dimensional vector around the Y axis.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ rotateY() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::rotateY (vec< 4, T, Q > const & v,
T const & angle 
)
+
+ +

Rotate a four dimensional vector around the Y axis.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ rotateZ() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::rotateZ (vec< 3, T, Q > const & v,
T const & angle 
)
+
+ +

Rotate a three dimensional vector around the Z axis.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ rotateZ() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<4, T, Q> glm::rotateZ (vec< 4, T, Q > const & v,
T const & angle 
)
+
+ +

Rotate a four dimensional vector around the Z axis.

+

From GLM_GTX_rotate_vector extension.

+ +
+
+ +

◆ slerp()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<3, T, Q> glm::slerp (vec< 3, T, Q > const & x,
vec< 3, T, Q > const & y,
T const & a 
)
+
+ +

Returns Spherical interpolation between two vectors.

+
Parameters
+ + + + +
xA first vector
yA second vector
aInterpolation factor. The interpolation is defined beyond the range [0, 1].
+
+
+
See also
GLM_GTX_rotate_vector
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00977.html b/include/glm/doc/api/a00977.html new file mode 100644 index 0000000..ad8f5d9 --- /dev/null +++ b/include/glm/doc/api/a00977.html @@ -0,0 +1,81 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_scalar_multiplication + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_GTX_scalar_multiplication
+
+
+

Detailed Description

+

Include <glm/gtx/scalar_multiplication.hpp> to use the features of this extension.

+

Enables scalar multiplication for all types

+

Since GLSL is very strict about types, the following (often used) combinations do not work: double * vec4 int * vec4 vec4 / int So we'll fix that! Of course "float * vec4" should remain the same (hence the enable_if magic)

+
+ + + + diff --git a/include/glm/doc/api/a00978.html b/include/glm/doc/api/a00978.html new file mode 100644 index 0000000..695c1e0 --- /dev/null +++ b/include/glm/doc/api/a00978.html @@ -0,0 +1,79 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_scalar_relational + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_GTX_scalar_relational
+
+
+

Include <glm/gtx/scalar_relational.hpp> to use the features of this extension.

+

Extend a position from a source to a position at a defined length.

+
+ + + + diff --git a/include/glm/doc/api/a00979.html b/include/glm/doc/api/a00979.html new file mode 100644 index 0000000..cec2c50 --- /dev/null +++ b/include/glm/doc/api/a00979.html @@ -0,0 +1,246 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_spline + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL genType catmullRom (genType const &v1, genType const &v2, genType const &v3, genType const &v4, typename genType::value_type const &s)
 Return a point from a catmull rom curve. More...
 
template<typename genType >
GLM_FUNC_DECL genType cubic (genType const &v1, genType const &v2, genType const &v3, genType const &v4, typename genType::value_type const &s)
 Return a point from a cubic curve. More...
 
template<typename genType >
GLM_FUNC_DECL genType hermite (genType const &v1, genType const &t1, genType const &v2, genType const &t2, typename genType::value_type const &s)
 Return a point from a hermite curve. More...
 
+

Detailed Description

+

Include <glm/gtx/spline.hpp> to use the features of this extension.

+

Spline functions

+

Function Documentation

+ +

◆ catmullRom()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::catmullRom (genType const & v1,
genType const & v2,
genType const & v3,
genType const & v4,
typename genType::value_type const & s 
)
+
+ +

Return a point from a catmull rom curve.

+
See also
GLM_GTX_spline extension.
+ +
+
+ +

◆ cubic()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::cubic (genType const & v1,
genType const & v2,
genType const & v3,
genType const & v4,
typename genType::value_type const & s 
)
+
+ +

Return a point from a cubic curve.

+
See also
GLM_GTX_spline extension.
+ +
+
+ +

◆ hermite()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL genType glm::hermite (genType const & v1,
genType const & t1,
genType const & v2,
genType const & t2,
typename genType::value_type const & s 
)
+
+ +

Return a point from a hermite curve.

+
See also
GLM_GTX_spline extension.
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00980.html b/include/glm/doc/api/a00980.html new file mode 100644 index 0000000..a7918af --- /dev/null +++ b/include/glm/doc/api/a00980.html @@ -0,0 +1,263 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_std_based_type + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_std_based_type
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef vec< 1, std::size_t, defaultp > size1
 Vector type based of one std::size_t component. More...
 
typedef vec< 1, std::size_t, defaultp > size1_t
 Vector type based of one std::size_t component. More...
 
typedef vec< 2, std::size_t, defaultp > size2
 Vector type based of two std::size_t components. More...
 
typedef vec< 2, std::size_t, defaultp > size2_t
 Vector type based of two std::size_t components. More...
 
typedef vec< 3, std::size_t, defaultp > size3
 Vector type based of three std::size_t components. More...
 
typedef vec< 3, std::size_t, defaultp > size3_t
 Vector type based of three std::size_t components. More...
 
typedef vec< 4, std::size_t, defaultp > size4
 Vector type based of four std::size_t components. More...
 
typedef vec< 4, std::size_t, defaultp > size4_t
 Vector type based of four std::size_t components. More...
 
+

Detailed Description

+

Include <glm/gtx/std_based_type.hpp> to use the features of this extension.

+

Adds vector types based on STL value types.

+

Typedef Documentation

+ +

◆ size1

+ +
+
+ + + + +
typedef vec<1, std::size_t, defaultp> size1
+
+ +

Vector type based of one std::size_t component.

+
See also
GLM_GTX_std_based_type
+ +

Definition at line 33 of file std_based_type.hpp.

+ +
+
+ +

◆ size1_t

+ +
+
+ + + + +
typedef vec<1, std::size_t, defaultp> size1_t
+
+ +

Vector type based of one std::size_t component.

+
See also
GLM_GTX_std_based_type
+ +

Definition at line 49 of file std_based_type.hpp.

+ +
+
+ +

◆ size2

+ +
+
+ + + + +
typedef vec<2, std::size_t, defaultp> size2
+
+ +

Vector type based of two std::size_t components.

+
See also
GLM_GTX_std_based_type
+ +

Definition at line 37 of file std_based_type.hpp.

+ +
+
+ +

◆ size2_t

+ +
+
+ + + + +
typedef vec<2, std::size_t, defaultp> size2_t
+
+ +

Vector type based of two std::size_t components.

+
See also
GLM_GTX_std_based_type
+ +

Definition at line 53 of file std_based_type.hpp.

+ +
+
+ +

◆ size3

+ +
+
+ + + + +
typedef vec<3, std::size_t, defaultp> size3
+
+ +

Vector type based of three std::size_t components.

+
See also
GLM_GTX_std_based_type
+ +

Definition at line 41 of file std_based_type.hpp.

+ +
+
+ +

◆ size3_t

+ +
+
+ + + + +
typedef vec<3, std::size_t, defaultp> size3_t
+
+ +

Vector type based of three std::size_t components.

+
See also
GLM_GTX_std_based_type
+ +

Definition at line 57 of file std_based_type.hpp.

+ +
+
+ +

◆ size4

+ +
+
+ + + + +
typedef vec<4, std::size_t, defaultp> size4
+
+ +

Vector type based of four std::size_t components.

+
See also
GLM_GTX_std_based_type
+ +

Definition at line 45 of file std_based_type.hpp.

+ +
+
+ +

◆ size4_t

+ +
+
+ + + + +
typedef vec<4, std::size_t, defaultp> size4_t
+
+ +

Vector type based of four std::size_t components.

+
See also
GLM_GTX_std_based_type
+ +

Definition at line 61 of file std_based_type.hpp.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00981.html b/include/glm/doc/api/a00981.html new file mode 100644 index 0000000..c044079 --- /dev/null +++ b/include/glm/doc/api/a00981.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_string_cast + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_string_cast
+
+
+ + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL std::string to_string (genType const &x)
 Create a string from a GLM vector or matrix typed variable. More...
 
+

Detailed Description

+

Include <glm/gtx/string_cast.hpp> to use the features of this extension.

+

Setup strings for GLM type values

+

Function Documentation

+ +

◆ to_string()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL std::string glm::to_string (genType const & x)
+
+ +

Create a string from a GLM vector or matrix typed variable.

+
See also
GLM_GTX_string_cast extension.
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00982.html b/include/glm/doc/api/a00982.html new file mode 100644 index 0000000..a3f2df2 --- /dev/null +++ b/include/glm/doc/api/a00982.html @@ -0,0 +1,79 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_structured_bindings + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_GTX_structured_bindings
+
+
+

Detailed Description

+

Include <glm/gtx/structured_bindings.hpp> to use the features of this extension.

+
+ + + + diff --git a/include/glm/doc/api/a00983.html b/include/glm/doc/api/a00983.html new file mode 100644 index 0000000..242915b --- /dev/null +++ b/include/glm/doc/api/a00983.html @@ -0,0 +1,125 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_texture + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+
+
+ + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
levels (vec< L, T, Q > const &Extent)
 Compute the number of mipmaps levels necessary to create a mipmap complete texture. More...
 
+

Detailed Description

+

Include <glm/gtx/texture.hpp> to use the features of this extension.

+

Wrapping mode of texture coordinates.

+

Function Documentation

+ +

◆ levels()

+ +
+
+ + + + + + + + +
T glm::levels (vec< L, T, Q > const & Extent)
+
+ +

Compute the number of mipmaps levels necessary to create a mipmap complete texture.

+
Parameters
+ + +
ExtentExtent of the texture base level mipmap
+
+
+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point or signed integer scalar types
QValue from qualifier enum
+
+
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00984.html b/include/glm/doc/api/a00984.html new file mode 100644 index 0000000..4c20173 --- /dev/null +++ b/include/glm/doc/api/a00984.html @@ -0,0 +1,178 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_transform + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_transform
+
+
+ + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rotate (T angle, vec< 3, T, Q > const &v)
 Builds a rotation 4 * 4 matrix created from an axis of 3 scalars and an angle expressed in radians. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > scale (vec< 3, T, Q > const &v)
 Transforms a matrix with a scale 4 * 4 matrix created from a vector of 3 components. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > translate (vec< 3, T, Q > const &v)
 Transforms a matrix with a translation 4 * 4 matrix created from 3 scalars. More...
 
+

Detailed Description

+

Include <glm/gtx/transform.hpp> to use the features of this extension.

+

Add transformation matrices

+

Function Documentation

+ +

◆ rotate()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::rotate (angle,
vec< 3, T, Q > const & v 
)
+
+ +

Builds a rotation 4 * 4 matrix created from an axis of 3 scalars and an angle expressed in radians.

+
See also
GLM_GTC_matrix_transform
+
+GLM_GTX_transform
+ +
+
+ +

◆ scale()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::scale (vec< 3, T, Q > const & v)
+
+ +

Transforms a matrix with a scale 4 * 4 matrix created from a vector of 3 components.

+
See also
GLM_GTC_matrix_transform
+
+GLM_GTX_transform
+ +
+
+ +

◆ translate()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::translate (vec< 3, T, Q > const & v)
+
+ +

Transforms a matrix with a translation 4 * 4 matrix created from 3 scalars.

+
See also
GLM_GTC_matrix_transform
+
+GLM_GTX_transform
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00985.html b/include/glm/doc/api/a00985.html new file mode 100644 index 0000000..8f56729 --- /dev/null +++ b/include/glm/doc/api/a00985.html @@ -0,0 +1,390 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_transform2 + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_transform2
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > proj2D (mat< 3, 3, T, Q > const &m, vec< 3, T, Q > const &normal)
 Build planar projection matrix along normal axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > proj3D (mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &normal)
 Build planar projection matrix along normal axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > scaleBias (mat< 4, 4, T, Q > const &m, T scale, T bias)
 Build a scale bias matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > scaleBias (T scale, T bias)
 Build a scale bias matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > shearX2D (mat< 3, 3, T, Q > const &m, T y)
 Transforms a matrix with a shearing on X axis. More...
 
+template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > shearX3D (mat< 4, 4, T, Q > const &m, T y, T z)
 Transforms a matrix with a shearing on X axis From GLM_GTX_transform2 extension.
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > shearY2D (mat< 3, 3, T, Q > const &m, T x)
 Transforms a matrix with a shearing on Y axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > shearY3D (mat< 4, 4, T, Q > const &m, T x, T z)
 Transforms a matrix with a shearing on Y axis. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > shearZ3D (mat< 4, 4, T, Q > const &m, T x, T y)
 Transforms a matrix with a shearing on Z axis. More...
 
+

Detailed Description

+

Include <glm/gtx/transform2.hpp> to use the features of this extension.

+

Add extra transformation matrices

+

Function Documentation

+ +

◆ proj2D()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::proj2D (mat< 3, 3, T, Q > const & m,
vec< 3, T, Q > const & normal 
)
+
+ +

Build planar projection matrix along normal axis.

+

From GLM_GTX_transform2 extension.

+ +
+
+ +

◆ proj3D()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::proj3D (mat< 4, 4, T, Q > const & m,
vec< 3, T, Q > const & normal 
)
+
+ +

Build planar projection matrix along normal axis.

+

From GLM_GTX_transform2 extension.

+ +
+
+ +

◆ scaleBias() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::scaleBias (mat< 4, 4, T, Q > const & m,
scale,
bias 
)
+
+ +

Build a scale bias matrix.

+

From GLM_GTX_transform2 extension.

+ +
+
+ +

◆ scaleBias() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::scaleBias (scale,
bias 
)
+
+ +

Build a scale bias matrix.

+

From GLM_GTX_transform2 extension.

+ +
+
+ +

◆ shearX2D()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::shearX2D (mat< 3, 3, T, Q > const & m,
y 
)
+
+ +

Transforms a matrix with a shearing on X axis.

+

From GLM_GTX_transform2 extension.

+ +
+
+ +

◆ shearY2D()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<3, 3, T, Q> glm::shearY2D (mat< 3, 3, T, Q > const & m,
x 
)
+
+ +

Transforms a matrix with a shearing on Y axis.

+

From GLM_GTX_transform2 extension.

+ +
+
+ +

◆ shearY3D()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::shearY3D (mat< 4, 4, T, Q > const & m,
x,
z 
)
+
+ +

Transforms a matrix with a shearing on Y axis.

+

From GLM_GTX_transform2 extension.

+ +
+
+ +

◆ shearZ3D()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL mat<4, 4, T, Q> glm::shearZ3D (mat< 4, 4, T, Q > const & m,
x,
y 
)
+
+ +

Transforms a matrix with a shearing on Z axis.

+

From GLM_GTX_transform2 extension.

+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00986.html b/include/glm/doc/api/a00986.html new file mode 100644 index 0000000..2134c2c --- /dev/null +++ b/include/glm/doc/api/a00986.html @@ -0,0 +1,8341 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_type_aligned + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_type_aligned
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 GLM_ALIGNED_TYPEDEF (dquat, aligned_dquat, 32)
 Double-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (dvec1, aligned_dvec1, 8)
 Double-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (dvec2, aligned_dvec2, 16)
 Double-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (dvec3, aligned_dvec3, 32)
 Double-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (dvec4, aligned_dvec4, 32)
 Double-qualifier floating-point aligned vector of 4 components. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat2x2, aligned_f32mat2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat2x2, aligned_f32mat2x2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat2x3, aligned_f32mat2x3, 16)
 Single-qualifier floating-point aligned 2x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat2x4, aligned_f32mat2x4, 16)
 Single-qualifier floating-point aligned 2x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat3x2, aligned_f32mat3x2, 16)
 Single-qualifier floating-point aligned 3x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat3x3, aligned_f32mat3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat3x3, aligned_f32mat3x3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat3x4, aligned_f32mat3x4, 16)
 Single-qualifier floating-point aligned 3x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat4x2, aligned_f32mat4x2, 16)
 Single-qualifier floating-point aligned 4x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat4x3, aligned_f32mat4x3, 16)
 Single-qualifier floating-point aligned 4x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat4x4, aligned_f32mat4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat4x4, aligned_f32mat4x4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32quat, aligned_f32quat, 16)
 Single-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (f32vec1, aligned_f32vec1, 4)
 Single-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (f32vec2, aligned_f32vec2, 8)
 Single-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (f32vec3, aligned_f32vec3, 16)
 Single-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (f32vec4, aligned_f32vec4, 16)
 Single-qualifier floating-point aligned vector of 4 components. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat2x2, aligned_f64mat2, 32)
 Double-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat2x2, aligned_f64mat2x2, 32)
 Double-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat2x3, aligned_f64mat2x3, 32)
 Double-qualifier floating-point aligned 2x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat2x4, aligned_f64mat2x4, 32)
 Double-qualifier floating-point aligned 2x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat3x2, aligned_f64mat3x2, 32)
 Double-qualifier floating-point aligned 3x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat3x3, aligned_f64mat3, 32)
 Double-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat3x3, aligned_f64mat3x3, 32)
 Double-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat3x4, aligned_f64mat3x4, 32)
 Double-qualifier floating-point aligned 3x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat4x2, aligned_f64mat4x2, 32)
 Double-qualifier floating-point aligned 4x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat4x3, aligned_f64mat4x3, 32)
 Double-qualifier floating-point aligned 4x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat4x4, aligned_f64mat4, 32)
 Double-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat4x4, aligned_f64mat4x4, 32)
 Double-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64quat, aligned_f64quat, 32)
 Double-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (f64vec1, aligned_f64vec1, 8)
 Double-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (f64vec2, aligned_f64vec2, 16)
 Double-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (f64vec3, aligned_f64vec3, 32)
 Double-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (f64vec4, aligned_f64vec4, 32)
 Double-qualifier floating-point aligned vector of 4 components. More...
 
 GLM_ALIGNED_TYPEDEF (float32, aligned_f32, 4)
 32 bit single-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float32, aligned_float32, 4)
 32 bit single-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float32_t, aligned_float32_t, 4)
 32 bit single-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float64, aligned_f64, 8)
 64 bit double-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float64, aligned_float64, 8)
 64 bit double-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float64_t, aligned_float64_t, 8)
 64 bit double-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (fmat2x2, aligned_fmat2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat2x2, aligned_fmat2x2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat2x3, aligned_fmat2x3, 16)
 Single-qualifier floating-point aligned 2x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat2x4, aligned_fmat2x4, 16)
 Single-qualifier floating-point aligned 2x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat3x2, aligned_fmat3x2, 16)
 Single-qualifier floating-point aligned 3x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat3x3, aligned_fmat3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat3x3, aligned_fmat3x3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat3x4, aligned_fmat3x4, 16)
 Single-qualifier floating-point aligned 3x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat4x2, aligned_fmat4x2, 16)
 Single-qualifier floating-point aligned 4x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat4x3, aligned_fmat4x3, 16)
 Single-qualifier floating-point aligned 4x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat4x4, aligned_fmat4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat4x4, aligned_fmat4x4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fvec1, aligned_fvec1, 4)
 Single-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (fvec2, aligned_fvec2, 8)
 Single-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (fvec3, aligned_fvec3, 16)
 Single-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (fvec4, aligned_fvec4, 16)
 Single-qualifier floating-point aligned vector of 4 components. More...
 
 GLM_ALIGNED_TYPEDEF (highp_i16, aligned_highp_i16, 2)
 High qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_i32, aligned_highp_i32, 4)
 High qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_i64, aligned_highp_i64, 8)
 High qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_i8, aligned_highp_i8, 1)
 High qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int16, aligned_highp_int16, 2)
 High qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int16_t, aligned_highp_int16_t, 2)
 High qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int32, aligned_highp_int32, 4)
 High qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int32_t, aligned_highp_int32_t, 4)
 High qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int64, aligned_highp_int64, 8)
 High qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int64_t, aligned_highp_int64_t, 8)
 High qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int8, aligned_highp_int8, 1)
 High qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int8_t, aligned_highp_int8_t, 1)
 High qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_u16, aligned_highp_u16, 2)
 High qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_u32, aligned_highp_u32, 4)
 High qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_u64, aligned_highp_u64, 8)
 High qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_u8, aligned_highp_u8, 1)
 High qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint16, aligned_highp_uint16, 2)
 High qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint16_t, aligned_highp_uint16_t, 2)
 High qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint32, aligned_highp_uint32, 4)
 High qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint32_t, aligned_highp_uint32_t, 4)
 High qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint64, aligned_highp_uint64, 8)
 High qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint64_t, aligned_highp_uint64_t, 8)
 High qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint8, aligned_highp_uint8, 1)
 High qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint8_t, aligned_highp_uint8_t, 1)
 High qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i16, aligned_i16, 2)
 Default qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i16vec1, aligned_i16vec1, 2)
 Default qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i16vec2, aligned_i16vec2, 4)
 Default qualifier 16 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i16vec3, aligned_i16vec3, 8)
 Default qualifier 16 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i16vec4, aligned_i16vec4, 8)
 Default qualifier 16 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i32, aligned_i32, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i32vec1, aligned_i32vec1, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i32vec2, aligned_i32vec2, 8)
 Default qualifier 32 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i32vec3, aligned_i32vec3, 16)
 Default qualifier 32 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i32vec4, aligned_i32vec4, 16)
 Default qualifier 32 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i64, aligned_i64, 8)
 Default qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i64vec1, aligned_i64vec1, 8)
 Default qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i64vec2, aligned_i64vec2, 16)
 Default qualifier 64 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i64vec3, aligned_i64vec3, 32)
 Default qualifier 64 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i64vec4, aligned_i64vec4, 32)
 Default qualifier 64 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i8, aligned_i8, 1)
 Default qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i8vec1, aligned_i8vec1, 1)
 Default qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i8vec2, aligned_i8vec2, 2)
 Default qualifier 8 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i8vec3, aligned_i8vec3, 4)
 Default qualifier 8 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i8vec4, aligned_i8vec4, 4)
 Default qualifier 8 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (int16, aligned_int16, 2)
 Default qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int16_t, aligned_int16_t, 2)
 Default qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int32, aligned_int32, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int32_t, aligned_int32_t, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int64, aligned_int64, 8)
 Default qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int64_t, aligned_int64_t, 8)
 Default qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int8, aligned_int8, 1)
 Default qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int8_t, aligned_int8_t, 1)
 Default qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (ivec1, aligned_ivec1, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (ivec2, aligned_ivec2, 8)
 Default qualifier 32 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (ivec3, aligned_ivec3, 16)
 Default qualifier 32 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (ivec4, aligned_ivec4, 16)
 Default qualifier 32 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_i16, aligned_lowp_i16, 2)
 Low qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_i32, aligned_lowp_i32, 4)
 Low qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_i64, aligned_lowp_i64, 8)
 Low qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_i8, aligned_lowp_i8, 1)
 Low qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int16, aligned_lowp_int16, 2)
 Low qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int16_t, aligned_lowp_int16_t, 2)
 Low qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int32, aligned_lowp_int32, 4)
 Low qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int32_t, aligned_lowp_int32_t, 4)
 Low qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int64, aligned_lowp_int64, 8)
 Low qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int64_t, aligned_lowp_int64_t, 8)
 Low qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int8, aligned_lowp_int8, 1)
 Low qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int8_t, aligned_lowp_int8_t, 1)
 Low qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_u16, aligned_lowp_u16, 2)
 Low qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_u32, aligned_lowp_u32, 4)
 Low qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_u64, aligned_lowp_u64, 8)
 Low qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_u8, aligned_lowp_u8, 1)
 Low qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint16, aligned_lowp_uint16, 2)
 Low qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint16_t, aligned_lowp_uint16_t, 2)
 Low qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint32, aligned_lowp_uint32, 4)
 Low qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint32_t, aligned_lowp_uint32_t, 4)
 Low qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint64, aligned_lowp_uint64, 8)
 Low qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint64_t, aligned_lowp_uint64_t, 8)
 Low qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint8, aligned_lowp_uint8, 1)
 Low qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint8_t, aligned_lowp_uint8_t, 1)
 Low qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mat2, aligned_mat2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (mat3, aligned_mat3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (mat4, aligned_mat4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_i16, aligned_mediump_i16, 2)
 Medium qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_i32, aligned_mediump_i32, 4)
 Medium qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_i64, aligned_mediump_i64, 8)
 Medium qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_i8, aligned_mediump_i8, 1)
 Medium qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int16, aligned_mediump_int16, 2)
 Medium qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int16_t, aligned_mediump_int16_t, 2)
 Medium qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int32, aligned_mediump_int32, 4)
 Medium qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int32_t, aligned_mediump_int32_t, 4)
 Medium qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int64, aligned_mediump_int64, 8)
 Medium qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int64_t, aligned_mediump_int64_t, 8)
 Medium qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int8, aligned_mediump_int8, 1)
 Medium qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int8_t, aligned_mediump_int8_t, 1)
 Medium qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_u16, aligned_mediump_u16, 2)
 Medium qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_u32, aligned_mediump_u32, 4)
 Medium qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_u64, aligned_mediump_u64, 8)
 Medium qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_u8, aligned_mediump_u8, 1)
 Medium qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint16, aligned_mediump_uint16, 2)
 Medium qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint16_t, aligned_mediump_uint16_t, 2)
 Medium qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint32, aligned_mediump_uint32, 4)
 Medium qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint32_t, aligned_mediump_uint32_t, 4)
 Medium qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint64, aligned_mediump_uint64, 8)
 Medium qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint64_t, aligned_mediump_uint64_t, 8)
 Medium qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint8, aligned_mediump_uint8, 1)
 Medium qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint8_t, aligned_mediump_uint8_t, 1)
 Medium qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (quat, aligned_fquat, 16)
 Single-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (quat, aligned_quat, 16)
 Single-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (u16, aligned_u16, 2)
 Default qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u16vec1, aligned_u16vec1, 2)
 Default qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u16vec2, aligned_u16vec2, 4)
 Default qualifier 16 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u16vec3, aligned_u16vec3, 8)
 Default qualifier 16 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u16vec4, aligned_u16vec4, 8)
 Default qualifier 16 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u32, aligned_u32, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u32vec1, aligned_u32vec1, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u32vec2, aligned_u32vec2, 8)
 Default qualifier 32 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u32vec3, aligned_u32vec3, 16)
 Default qualifier 32 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u32vec4, aligned_u32vec4, 16)
 Default qualifier 32 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u64, aligned_u64, 8)
 Default qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u64vec1, aligned_u64vec1, 8)
 Default qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u64vec2, aligned_u64vec2, 16)
 Default qualifier 64 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u64vec3, aligned_u64vec3, 32)
 Default qualifier 64 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u64vec4, aligned_u64vec4, 32)
 Default qualifier 64 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u8, aligned_u8, 1)
 Default qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u8vec1, aligned_u8vec1, 1)
 Default qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u8vec2, aligned_u8vec2, 2)
 Default qualifier 8 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u8vec3, aligned_u8vec3, 4)
 Default qualifier 8 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u8vec4, aligned_u8vec4, 4)
 Default qualifier 8 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (uint16, aligned_uint16, 2)
 Default qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint16_t, aligned_uint16_t, 2)
 Default qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint32, aligned_uint32, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint32_t, aligned_uint32_t, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint64, aligned_uint64, 8)
 Default qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint64_t, aligned_uint64_t, 8)
 Default qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint8, aligned_uint8, 1)
 Default qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint8_t, aligned_uint8_t, 1)
 Default qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uvec1, aligned_uvec1, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uvec2, aligned_uvec2, 8)
 Default qualifier 32 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (uvec3, aligned_uvec3, 16)
 Default qualifier 32 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (uvec4, aligned_uvec4, 16)
 Default qualifier 32 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (vec1, aligned_vec1, 4)
 Single-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (vec2, aligned_vec2, 8)
 Single-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (vec3, aligned_vec3, 16)
 Single-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (vec4, aligned_vec4, 16)
 Single-qualifier floating-point aligned vector of 4 components. More...
 
+

Detailed Description

+

Include <glm/gtx/type_aligned.hpp> to use the features of this extension.

+

Defines aligned types.

+

Function Documentation

+ +

◆ GLM_ALIGNED_TYPEDEF() [1/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (dquat ,
aligned_dquat ,
32  
)
+
+ +

Double-qualifier floating-point aligned quaternion.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [2/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (dvec1 ,
aligned_dvec1 ,
 
)
+
+ +

Double-qualifier floating-point aligned vector of 1 component.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [3/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (dvec2 ,
aligned_dvec2 ,
16  
)
+
+ +

Double-qualifier floating-point aligned vector of 2 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [4/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (dvec3 ,
aligned_dvec3 ,
32  
)
+
+ +

Double-qualifier floating-point aligned vector of 3 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [5/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (dvec4 ,
aligned_dvec4 ,
32  
)
+
+ +

Double-qualifier floating-point aligned vector of 4 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [6/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat2x2 ,
aligned_f32mat2 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 1x1 matrix.

+
See also
GLM_GTX_type_aligned Single-qualifier floating-point aligned 2x2 matrix.
+
+GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [7/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat2x2 ,
aligned_f32mat2x2 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 1x1 matrix.

+
See also
GLM_GTX_type_aligned Single-qualifier floating-point aligned 2x2 matrix.
+
+GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [8/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat2x3 ,
aligned_f32mat2x3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 2x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [9/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat2x4 ,
aligned_f32mat2x4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 2x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [10/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat3x2 ,
aligned_f32mat3x2 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 3x2 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [11/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat3x3 ,
aligned_f32mat3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 3x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [12/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat3x3 ,
aligned_f32mat3x3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 3x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [13/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat3x4 ,
aligned_f32mat3x4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 3x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [14/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat4x2 ,
aligned_f32mat4x2 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 4x2 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [15/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat4x3 ,
aligned_f32mat4x3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 4x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [16/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat4x4 ,
aligned_f32mat4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 4x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [17/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32mat4x4 ,
aligned_f32mat4x4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 4x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [18/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32quat ,
aligned_f32quat ,
16  
)
+
+ +

Single-qualifier floating-point aligned quaternion.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [19/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32vec1 ,
aligned_f32vec1 ,
 
)
+
+ +

Single-qualifier floating-point aligned vector of 1 component.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [20/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32vec2 ,
aligned_f32vec2 ,
 
)
+
+ +

Single-qualifier floating-point aligned vector of 2 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [21/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32vec3 ,
aligned_f32vec3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned vector of 3 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [22/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f32vec4 ,
aligned_f32vec4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned vector of 4 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [23/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat2x2 ,
aligned_f64mat2 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 1x1 matrix.

+
See also
GLM_GTX_type_aligned Double-qualifier floating-point aligned 2x2 matrix.
+
+GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [24/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat2x2 ,
aligned_f64mat2x2 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 1x1 matrix.

+
See also
GLM_GTX_type_aligned Double-qualifier floating-point aligned 2x2 matrix.
+
+GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [25/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat2x3 ,
aligned_f64mat2x3 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 2x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [26/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat2x4 ,
aligned_f64mat2x4 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 2x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [27/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat3x2 ,
aligned_f64mat3x2 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 3x2 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [28/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat3x3 ,
aligned_f64mat3 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 3x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [29/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat3x3 ,
aligned_f64mat3x3 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 3x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [30/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat3x4 ,
aligned_f64mat3x4 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 3x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [31/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat4x2 ,
aligned_f64mat4x2 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 4x2 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [32/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat4x3 ,
aligned_f64mat4x3 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 4x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [33/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat4x4 ,
aligned_f64mat4 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 4x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [34/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64mat4x4 ,
aligned_f64mat4x4 ,
32  
)
+
+ +

Double-qualifier floating-point aligned 4x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [35/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64quat ,
aligned_f64quat ,
32  
)
+
+ +

Double-qualifier floating-point aligned quaternion.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [36/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64vec1 ,
aligned_f64vec1 ,
 
)
+
+ +

Double-qualifier floating-point aligned vector of 1 component.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [37/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64vec2 ,
aligned_f64vec2 ,
16  
)
+
+ +

Double-qualifier floating-point aligned vector of 2 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [38/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64vec3 ,
aligned_f64vec3 ,
32  
)
+
+ +

Double-qualifier floating-point aligned vector of 3 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [39/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (f64vec4 ,
aligned_f64vec4 ,
32  
)
+
+ +

Double-qualifier floating-point aligned vector of 4 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [40/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (float32 ,
aligned_f32 ,
 
)
+
+ +

32 bit single-qualifier floating-point aligned scalar.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [41/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (float32 ,
aligned_float32 ,
 
)
+
+ +

32 bit single-qualifier floating-point aligned scalar.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [42/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (float32_t ,
aligned_float32_t ,
 
)
+
+ +

32 bit single-qualifier floating-point aligned scalar.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [43/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (float64 ,
aligned_f64 ,
 
)
+
+ +

64 bit double-qualifier floating-point aligned scalar.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [44/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (float64 ,
aligned_float64 ,
 
)
+
+ +

64 bit double-qualifier floating-point aligned scalar.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [45/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (float64_t ,
aligned_float64_t ,
 
)
+
+ +

64 bit double-qualifier floating-point aligned scalar.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [46/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat2x2 ,
aligned_fmat2 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 1x1 matrix.

+
See also
GLM_GTX_type_aligned Single-qualifier floating-point aligned 2x2 matrix.
+
+GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [47/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat2x2 ,
aligned_fmat2x2 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 1x1 matrix.

+
See also
GLM_GTX_type_aligned Single-qualifier floating-point aligned 2x2 matrix.
+
+GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [48/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat2x3 ,
aligned_fmat2x3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 2x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [49/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat2x4 ,
aligned_fmat2x4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 2x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [50/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat3x2 ,
aligned_fmat3x2 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 3x2 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [51/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat3x3 ,
aligned_fmat3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 3x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [52/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat3x3 ,
aligned_fmat3x3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 3x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [53/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat3x4 ,
aligned_fmat3x4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 3x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [54/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat4x2 ,
aligned_fmat4x2 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 4x2 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [55/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat4x3 ,
aligned_fmat4x3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 4x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [56/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat4x4 ,
aligned_fmat4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 4x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [57/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fmat4x4 ,
aligned_fmat4x4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 4x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [58/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fvec1 ,
aligned_fvec1 ,
 
)
+
+ +

Single-qualifier floating-point aligned vector of 1 component.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [59/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fvec2 ,
aligned_fvec2 ,
 
)
+
+ +

Single-qualifier floating-point aligned vector of 2 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [60/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fvec3 ,
aligned_fvec3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned vector of 3 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [61/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (fvec4 ,
aligned_fvec4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned vector of 4 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [62/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_i16 ,
aligned_highp_i16 ,
 
)
+
+ +

High qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [63/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_i32 ,
aligned_highp_i32 ,
 
)
+
+ +

High qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [64/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_i64 ,
aligned_highp_i64 ,
 
)
+
+ +

High qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [65/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_i8 ,
aligned_highp_i8 ,
 
)
+
+ +

High qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [66/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_int16 ,
aligned_highp_int16 ,
 
)
+
+ +

High qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [67/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_int16_t ,
aligned_highp_int16_t ,
 
)
+
+ +

High qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [68/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_int32 ,
aligned_highp_int32 ,
 
)
+
+ +

High qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [69/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_int32_t ,
aligned_highp_int32_t ,
 
)
+
+ +

High qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [70/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_int64 ,
aligned_highp_int64 ,
 
)
+
+ +

High qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [71/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_int64_t ,
aligned_highp_int64_t ,
 
)
+
+ +

High qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [72/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_int8 ,
aligned_highp_int8 ,
 
)
+
+ +

High qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [73/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_int8_t ,
aligned_highp_int8_t ,
 
)
+
+ +

High qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [74/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_u16 ,
aligned_highp_u16 ,
 
)
+
+ +

High qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [75/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_u32 ,
aligned_highp_u32 ,
 
)
+
+ +

High qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [76/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_u64 ,
aligned_highp_u64 ,
 
)
+
+ +

High qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [77/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_u8 ,
aligned_highp_u8 ,
 
)
+
+ +

High qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [78/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_uint16 ,
aligned_highp_uint16 ,
 
)
+
+ +

High qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [79/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_uint16_t ,
aligned_highp_uint16_t ,
 
)
+
+ +

High qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [80/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_uint32 ,
aligned_highp_uint32 ,
 
)
+
+ +

High qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [81/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_uint32_t ,
aligned_highp_uint32_t ,
 
)
+
+ +

High qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [82/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_uint64 ,
aligned_highp_uint64 ,
 
)
+
+ +

High qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [83/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_uint64_t ,
aligned_highp_uint64_t ,
 
)
+
+ +

High qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [84/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_uint8 ,
aligned_highp_uint8 ,
 
)
+
+ +

High qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [85/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (highp_uint8_t ,
aligned_highp_uint8_t ,
 
)
+
+ +

High qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [86/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i16 ,
aligned_i16 ,
 
)
+
+ +

Default qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [87/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i16vec1 ,
aligned_i16vec1 ,
 
)
+
+ +

Default qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [88/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i16vec2 ,
aligned_i16vec2 ,
 
)
+
+ +

Default qualifier 16 bit signed integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [89/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i16vec3 ,
aligned_i16vec3 ,
 
)
+
+ +

Default qualifier 16 bit signed integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [90/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i16vec4 ,
aligned_i16vec4 ,
 
)
+
+ +

Default qualifier 16 bit signed integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [91/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i32 ,
aligned_i32 ,
 
)
+
+ +

Default qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [92/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i32vec1 ,
aligned_i32vec1 ,
 
)
+
+ +

Default qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [93/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i32vec2 ,
aligned_i32vec2 ,
 
)
+
+ +

Default qualifier 32 bit signed integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [94/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i32vec3 ,
aligned_i32vec3 ,
16  
)
+
+ +

Default qualifier 32 bit signed integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [95/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i32vec4 ,
aligned_i32vec4 ,
16  
)
+
+ +

Default qualifier 32 bit signed integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [96/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i64 ,
aligned_i64 ,
 
)
+
+ +

Default qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [97/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i64vec1 ,
aligned_i64vec1 ,
 
)
+
+ +

Default qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [98/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i64vec2 ,
aligned_i64vec2 ,
16  
)
+
+ +

Default qualifier 64 bit signed integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [99/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i64vec3 ,
aligned_i64vec3 ,
32  
)
+
+ +

Default qualifier 64 bit signed integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [100/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i64vec4 ,
aligned_i64vec4 ,
32  
)
+
+ +

Default qualifier 64 bit signed integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [101/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i8 ,
aligned_i8 ,
 
)
+
+ +

Default qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [102/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i8vec1 ,
aligned_i8vec1 ,
 
)
+
+ +

Default qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [103/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i8vec2 ,
aligned_i8vec2 ,
 
)
+
+ +

Default qualifier 8 bit signed integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [104/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i8vec3 ,
aligned_i8vec3 ,
 
)
+
+ +

Default qualifier 8 bit signed integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [105/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (i8vec4 ,
aligned_i8vec4 ,
 
)
+
+ +

Default qualifier 8 bit signed integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [106/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (int16 ,
aligned_int16 ,
 
)
+
+ +

Default qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [107/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (int16_t ,
aligned_int16_t ,
 
)
+
+ +

Default qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [108/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (int32 ,
aligned_int32 ,
 
)
+
+ +

Default qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [109/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (int32_t ,
aligned_int32_t ,
 
)
+
+ +

Default qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [110/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (int64 ,
aligned_int64 ,
 
)
+
+ +

Default qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [111/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (int64_t ,
aligned_int64_t ,
 
)
+
+ +

Default qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [112/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (int8 ,
aligned_int8 ,
 
)
+
+ +

Default qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [113/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (int8_t ,
aligned_int8_t ,
 
)
+
+ +

Default qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [114/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (ivec1 ,
aligned_ivec1 ,
 
)
+
+ +

Default qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [115/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (ivec2 ,
aligned_ivec2 ,
 
)
+
+ +

Default qualifier 32 bit signed integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [116/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (ivec3 ,
aligned_ivec3 ,
16  
)
+
+ +

Default qualifier 32 bit signed integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [117/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (ivec4 ,
aligned_ivec4 ,
16  
)
+
+ +

Default qualifier 32 bit signed integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [118/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_i16 ,
aligned_lowp_i16 ,
 
)
+
+ +

Low qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [119/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_i32 ,
aligned_lowp_i32 ,
 
)
+
+ +

Low qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [120/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_i64 ,
aligned_lowp_i64 ,
 
)
+
+ +

Low qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [121/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_i8 ,
aligned_lowp_i8 ,
 
)
+
+ +

Low qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [122/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_int16 ,
aligned_lowp_int16 ,
 
)
+
+ +

Low qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [123/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_int16_t ,
aligned_lowp_int16_t ,
 
)
+
+ +

Low qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [124/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_int32 ,
aligned_lowp_int32 ,
 
)
+
+ +

Low qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [125/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_int32_t ,
aligned_lowp_int32_t ,
 
)
+
+ +

Low qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [126/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_int64 ,
aligned_lowp_int64 ,
 
)
+
+ +

Low qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [127/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_int64_t ,
aligned_lowp_int64_t ,
 
)
+
+ +

Low qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [128/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_int8 ,
aligned_lowp_int8 ,
 
)
+
+ +

Low qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [129/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_int8_t ,
aligned_lowp_int8_t ,
 
)
+
+ +

Low qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [130/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_u16 ,
aligned_lowp_u16 ,
 
)
+
+ +

Low qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [131/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_u32 ,
aligned_lowp_u32 ,
 
)
+
+ +

Low qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [132/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_u64 ,
aligned_lowp_u64 ,
 
)
+
+ +

Low qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [133/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_u8 ,
aligned_lowp_u8 ,
 
)
+
+ +

Low qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [134/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_uint16 ,
aligned_lowp_uint16 ,
 
)
+
+ +

Low qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [135/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_uint16_t ,
aligned_lowp_uint16_t ,
 
)
+
+ +

Low qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [136/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_uint32 ,
aligned_lowp_uint32 ,
 
)
+
+ +

Low qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [137/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_uint32_t ,
aligned_lowp_uint32_t ,
 
)
+
+ +

Low qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [138/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_uint64 ,
aligned_lowp_uint64 ,
 
)
+
+ +

Low qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [139/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_uint64_t ,
aligned_lowp_uint64_t ,
 
)
+
+ +

Low qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [140/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_uint8 ,
aligned_lowp_uint8 ,
 
)
+
+ +

Low qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [141/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (lowp_uint8_t ,
aligned_lowp_uint8_t ,
 
)
+
+ +

Low qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [142/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_ALIGNED_TYPEDEF (mat2 ,
aligned_mat2 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 1x1 matrix.

+
See also
GLM_GTX_type_aligned Single-qualifier floating-point aligned 2x2 matrix.
+
+GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [143/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_ALIGNED_TYPEDEF (mat3 ,
aligned_mat3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 3x3 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [144/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_ALIGNED_TYPEDEF (mat4 ,
aligned_mat4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned 4x4 matrix.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [145/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_i16 ,
aligned_mediump_i16 ,
 
)
+
+ +

Medium qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [146/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_i32 ,
aligned_mediump_i32 ,
 
)
+
+ +

Medium qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [147/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_i64 ,
aligned_mediump_i64 ,
 
)
+
+ +

Medium qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [148/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_i8 ,
aligned_mediump_i8 ,
 
)
+
+ +

Medium qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [149/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_int16 ,
aligned_mediump_int16 ,
 
)
+
+ +

Medium qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [150/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_int16_t ,
aligned_mediump_int16_t ,
 
)
+
+ +

Medium qualifier 16 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [151/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_int32 ,
aligned_mediump_int32 ,
 
)
+
+ +

Medium qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [152/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_int32_t ,
aligned_mediump_int32_t ,
 
)
+
+ +

Medium qualifier 32 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [153/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_int64 ,
aligned_mediump_int64 ,
 
)
+
+ +

Medium qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [154/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_int64_t ,
aligned_mediump_int64_t ,
 
)
+
+ +

Medium qualifier 64 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [155/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_int8 ,
aligned_mediump_int8 ,
 
)
+
+ +

Medium qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [156/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_int8_t ,
aligned_mediump_int8_t ,
 
)
+
+ +

Medium qualifier 8 bit signed integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [157/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_u16 ,
aligned_mediump_u16 ,
 
)
+
+ +

Medium qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [158/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_u32 ,
aligned_mediump_u32 ,
 
)
+
+ +

Medium qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [159/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_u64 ,
aligned_mediump_u64 ,
 
)
+
+ +

Medium qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [160/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_u8 ,
aligned_mediump_u8 ,
 
)
+
+ +

Medium qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [161/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_uint16 ,
aligned_mediump_uint16 ,
 
)
+
+ +

Medium qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [162/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_uint16_t ,
aligned_mediump_uint16_t ,
 
)
+
+ +

Medium qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [163/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_uint32 ,
aligned_mediump_uint32 ,
 
)
+
+ +

Medium qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [164/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_uint32_t ,
aligned_mediump_uint32_t ,
 
)
+
+ +

Medium qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [165/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_uint64 ,
aligned_mediump_uint64 ,
 
)
+
+ +

Medium qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [166/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_uint64_t ,
aligned_mediump_uint64_t ,
 
)
+
+ +

Medium qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [167/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_uint8 ,
aligned_mediump_uint8 ,
 
)
+
+ +

Medium qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [168/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (mediump_uint8_t ,
aligned_mediump_uint8_t ,
 
)
+
+ +

Medium qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [169/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (quat ,
aligned_fquat ,
16  
)
+
+ +

Single-qualifier floating-point aligned quaternion.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [170/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (quat ,
aligned_quat ,
16  
)
+
+ +

Single-qualifier floating-point aligned quaternion.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [171/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u16 ,
aligned_u16 ,
 
)
+
+ +

Default qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [172/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u16vec1 ,
aligned_u16vec1 ,
 
)
+
+ +

Default qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [173/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u16vec2 ,
aligned_u16vec2 ,
 
)
+
+ +

Default qualifier 16 bit unsigned integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [174/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u16vec3 ,
aligned_u16vec3 ,
 
)
+
+ +

Default qualifier 16 bit unsigned integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [175/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u16vec4 ,
aligned_u16vec4 ,
 
)
+
+ +

Default qualifier 16 bit unsigned integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [176/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u32 ,
aligned_u32 ,
 
)
+
+ +

Default qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [177/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u32vec1 ,
aligned_u32vec1 ,
 
)
+
+ +

Default qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [178/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u32vec2 ,
aligned_u32vec2 ,
 
)
+
+ +

Default qualifier 32 bit unsigned integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [179/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u32vec3 ,
aligned_u32vec3 ,
16  
)
+
+ +

Default qualifier 32 bit unsigned integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [180/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u32vec4 ,
aligned_u32vec4 ,
16  
)
+
+ +

Default qualifier 32 bit unsigned integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [181/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u64 ,
aligned_u64 ,
 
)
+
+ +

Default qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [182/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u64vec1 ,
aligned_u64vec1 ,
 
)
+
+ +

Default qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [183/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u64vec2 ,
aligned_u64vec2 ,
16  
)
+
+ +

Default qualifier 64 bit unsigned integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [184/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u64vec3 ,
aligned_u64vec3 ,
32  
)
+
+ +

Default qualifier 64 bit unsigned integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [185/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u64vec4 ,
aligned_u64vec4 ,
32  
)
+
+ +

Default qualifier 64 bit unsigned integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [186/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u8 ,
aligned_u8 ,
 
)
+
+ +

Default qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [187/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u8vec1 ,
aligned_u8vec1 ,
 
)
+
+ +

Default qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [188/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u8vec2 ,
aligned_u8vec2 ,
 
)
+
+ +

Default qualifier 8 bit unsigned integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [189/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u8vec3 ,
aligned_u8vec3 ,
 
)
+
+ +

Default qualifier 8 bit unsigned integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [190/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (u8vec4 ,
aligned_u8vec4 ,
 
)
+
+ +

Default qualifier 8 bit unsigned integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [191/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uint16 ,
aligned_uint16 ,
 
)
+
+ +

Default qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [192/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uint16_t ,
aligned_uint16_t ,
 
)
+
+ +

Default qualifier 16 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [193/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uint32 ,
aligned_uint32 ,
 
)
+
+ +

Default qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [194/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uint32_t ,
aligned_uint32_t ,
 
)
+
+ +

Default qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [195/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uint64 ,
aligned_uint64 ,
 
)
+
+ +

Default qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [196/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uint64_t ,
aligned_uint64_t ,
 
)
+
+ +

Default qualifier 64 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [197/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uint8 ,
aligned_uint8 ,
 
)
+
+ +

Default qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [198/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uint8_t ,
aligned_uint8_t ,
 
)
+
+ +

Default qualifier 8 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [199/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uvec1 ,
aligned_uvec1 ,
 
)
+
+ +

Default qualifier 32 bit unsigned integer aligned scalar type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [200/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uvec2 ,
aligned_uvec2 ,
 
)
+
+ +

Default qualifier 32 bit unsigned integer aligned vector of 2 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [201/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uvec3 ,
aligned_uvec3 ,
16  
)
+
+ +

Default qualifier 32 bit unsigned integer aligned vector of 3 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [202/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (uvec4 ,
aligned_uvec4 ,
16  
)
+
+ +

Default qualifier 32 bit unsigned integer aligned vector of 4 components type.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [203/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (vec1 ,
aligned_vec1 ,
 
)
+
+ +

Single-qualifier floating-point aligned vector of 1 component.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [204/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (vec2 ,
aligned_vec2 ,
 
)
+
+ +

Single-qualifier floating-point aligned vector of 2 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [205/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (vec3 ,
aligned_vec3 ,
16  
)
+
+ +

Single-qualifier floating-point aligned vector of 3 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+ +

◆ GLM_ALIGNED_TYPEDEF() [206/206]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
glm::GLM_ALIGNED_TYPEDEF (vec4 ,
aligned_vec4 ,
16  
)
+
+ +

Single-qualifier floating-point aligned vector of 4 components.

+
See also
GLM_GTX_type_aligned
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00987.html b/include/glm/doc/api/a00987.html new file mode 100644 index 0000000..a061094 --- /dev/null +++ b/include/glm/doc/api/a00987.html @@ -0,0 +1,80 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_type_trait + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_GTX_type_trait
+
+
+

Detailed Description

+

Include <glm/gtx/type_trait.hpp> to use the features of this extension.

+

Defines traits for each type.

+
+ + + + diff --git a/include/glm/doc/api/a00988.html b/include/glm/doc/api/a00988.html new file mode 100644 index 0000000..aa5adb7 --- /dev/null +++ b/include/glm/doc/api/a00988.html @@ -0,0 +1,80 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_vec_swizzle + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
GLM_GTX_vec_swizzle
+
+
+

Detailed Description

+

Include <glm/gtx/vec_swizzle.hpp> to use the features of this extension.

+

Functions to perform swizzle operation.

+
+ + + + diff --git a/include/glm/doc/api/a00989.html b/include/glm/doc/api/a00989.html new file mode 100644 index 0000000..a2336ed --- /dev/null +++ b/include/glm/doc/api/a00989.html @@ -0,0 +1,198 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_vector_angle + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_vector_angle
+
+
+ + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL T angle (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the absolute angle between two vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T orientedAngle (vec< 2, T, Q > const &x, vec< 2, T, Q > const &y)
 Returns the oriented angle between two 2d vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T orientedAngle (vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, vec< 3, T, Q > const &ref)
 Returns the oriented angle between two 3d vectors based from a reference axis. More...
 
+

Detailed Description

+

Include <glm/gtx/vector_angle.hpp> to use the features of this extension.

+

Compute angle between vectors

+

Function Documentation

+ +

◆ angle()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::angle (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns the absolute angle between two vectors.

+

Parameters need to be normalized.

See also
GLM_GTX_vector_angle extension.
+ +
+
+ +

◆ orientedAngle() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::orientedAngle (vec< 2, T, Q > const & x,
vec< 2, T, Q > const & y 
)
+
+ +

Returns the oriented angle between two 2d vectors.

+

Parameters need to be normalized.

See also
GLM_GTX_vector_angle extension.
+ +
+
+ +

◆ orientedAngle() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL T glm::orientedAngle (vec< 3, T, Q > const & x,
vec< 3, T, Q > const & y,
vec< 3, T, Q > const & ref 
)
+
+ +

Returns the oriented angle between two 3d vectors based from a reference axis.

+

Parameters need to be normalized.

See also
GLM_GTX_vector_angle extension.
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00990.html b/include/glm/doc/api/a00990.html new file mode 100644 index 0000000..ca14cb4 --- /dev/null +++ b/include/glm/doc/api/a00990.html @@ -0,0 +1,315 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_vector_query + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
GLM_GTX_vector_query
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool areCollinear (vec< L, T, Q > const &v0, vec< L, T, Q > const &v1, T const &epsilon)
 Check whether two vectors are collinears. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool areOrthogonal (vec< L, T, Q > const &v0, vec< L, T, Q > const &v1, T const &epsilon)
 Check whether two vectors are orthogonals. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool areOrthonormal (vec< L, T, Q > const &v0, vec< L, T, Q > const &v1, T const &epsilon)
 Check whether two vectors are orthonormal. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > isCompNull (vec< L, T, Q > const &v, T const &epsilon)
 Check whether a each component of a vector is null. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool isNormalized (vec< L, T, Q > const &v, T const &epsilon)
 Check whether a vector is normalized. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL bool isNull (vec< L, T, Q > const &v, T const &epsilon)
 Check whether a vector is null. More...
 
+

Detailed Description

+

Include <glm/gtx/vector_query.hpp> to use the features of this extension.

+

Query information of vector types

+

Function Documentation

+ +

◆ areCollinear()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::areCollinear (vec< L, T, Q > const & v0,
vec< L, T, Q > const & v1,
T const & epsilon 
)
+
+ +

Check whether two vectors are collinears.

+
See also
GLM_GTX_vector_query extensions.
+ +
+
+ +

◆ areOrthogonal()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::areOrthogonal (vec< L, T, Q > const & v0,
vec< L, T, Q > const & v1,
T const & epsilon 
)
+
+ +

Check whether two vectors are orthogonals.

+
See also
GLM_GTX_vector_query extensions.
+ +
+
+ +

◆ areOrthonormal()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::areOrthonormal (vec< L, T, Q > const & v0,
vec< L, T, Q > const & v1,
T const & epsilon 
)
+
+ +

Check whether two vectors are orthonormal.

+
See also
GLM_GTX_vector_query extensions.
+ +
+
+ +

◆ isCompNull()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, bool, Q> glm::isCompNull (vec< L, T, Q > const & v,
T const & epsilon 
)
+
+ +

Check whether a each component of a vector is null.

+
See also
GLM_GTX_vector_query extensions.
+ +
+
+ +

◆ isNormalized()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isNormalized (vec< L, T, Q > const & v,
T const & epsilon 
)
+
+ +

Check whether a vector is normalized.

+
See also
GLM_GTX_vector_query extensions.
+ +
+
+ +

◆ isNull()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL bool glm::isNull (vec< L, T, Q > const & v,
T const & epsilon 
)
+
+ +

Check whether a vector is null.

+
See also
GLM_GTX_vector_query extensions.
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00991.html b/include/glm/doc/api/a00991.html new file mode 100644 index 0000000..bc0eda2 --- /dev/null +++ b/include/glm/doc/api/a00991.html @@ -0,0 +1,79 @@ + + + + + + + +1.0.2 API documentation: GLM_GTX_wrap + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
+

Include <glm/gtx/wrap.hpp> to use the features of this extension.

+

Wrapping mode of texture coordinates.

+
+ + + + diff --git a/include/glm/doc/api/a00992.html b/include/glm/doc/api/a00992.html new file mode 100644 index 0000000..6963c8a --- /dev/null +++ b/include/glm/doc/api/a00992.html @@ -0,0 +1,649 @@ + + + + + + + +1.0.2 API documentation: Integer functions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Integer functions
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL int bitCount (genType v)
 Returns the number of bits set to 1 in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > bitCount (vec< L, T, Q > const &v)
 Returns the number of bits set to 1 in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldExtract (vec< L, T, Q > const &Value, int Offset, int Bits)
 Extracts bits [offset, offset + bits - 1] from value, returning them in the least significant bits of the result. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldInsert (vec< L, T, Q > const &Base, vec< L, T, Q > const &Insert, int Offset, int Bits)
 Returns the insertion the bits least-significant bits of insert into base. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > bitfieldReverse (vec< L, T, Q > const &v)
 Returns the reversal of the bits of value. More...
 
template<typename genIUType >
GLM_FUNC_DECL int findLSB (genIUType x)
 Returns the bit number of the least significant bit set to 1 in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > findLSB (vec< L, T, Q > const &v)
 Returns the bit number of the least significant bit set to 1 in the binary representation of value. More...
 
template<typename genIUType >
GLM_FUNC_DECL int findMSB (genIUType x)
 Returns the bit number of the most significant bit in the binary representation of value. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, int, Q > findMSB (vec< L, T, Q > const &v)
 Returns the bit number of the most significant bit in the binary representation of value. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DISCARD_DECL void imulExtended (vec< L, int, Q > const &x, vec< L, int, Q > const &y, vec< L, int, Q > &msb, vec< L, int, Q > &lsb)
 Multiplies 32-bit integers x and y, producing a 64-bit result. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, uint, Q > uaddCarry (vec< L, uint, Q > const &x, vec< L, uint, Q > const &y, vec< L, uint, Q > &carry)
 Adds 32-bit unsigned integer x and y, returning the sum modulo pow(2, 32). More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DISCARD_DECL void umulExtended (vec< L, uint, Q > const &x, vec< L, uint, Q > const &y, vec< L, uint, Q > &msb, vec< L, uint, Q > &lsb)
 Multiplies 32-bit integers x and y, producing a 64-bit result. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, uint, Q > usubBorrow (vec< L, uint, Q > const &x, vec< L, uint, Q > const &y, vec< L, uint, Q > &borrow)
 Subtracts the 32-bit unsigned integer y from x, returning the difference if non-negative, or pow(2, 32) plus the difference otherwise. More...
 
+

Detailed Description

+

Provides GLSL functions on integer types

+

These all operate component-wise. The description is per component. The notation [a, b] means the set of bits from bit-number a through bit-number b, inclusive. The lowest-order bit is bit 0.

+

Include <glm/integer.hpp> to use these core features.

+

Function Documentation

+ +

◆ bitCount() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int glm::bitCount (genType v)
+
+ +

Returns the number of bits set to 1 in the binary representation of value.

+
Template Parameters
+ + +
genTypeSigned or unsigned integer scalar or vector types.
+
+
+
See also
GLSL bitCount man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ bitCount() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, int, Q> glm::bitCount (vec< L, T, Q > const & v)
+
+ +

Returns the number of bits set to 1 in the binary representation of value.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TSigned or unsigned integer scalar or vector types.
+
+
+
See also
GLSL bitCount man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ bitfieldExtract()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::bitfieldExtract (vec< L, T, Q > const & Value,
int Offset,
int Bits 
)
+
+ +

Extracts bits [offset, offset + bits - 1] from value, returning them in the least significant bits of the result.

+

For unsigned data types, the most significant bits of the result will be set to zero. For signed data types, the most significant bits will be set to the value of bit offset + base - 1.

+

If bits is zero, the result will be zero. The result will be undefined if offset or bits is negative, or if the sum of offset and bits is greater than the number of bits used to store the operand.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TSigned or unsigned integer scalar types.
+
+
+
See also
GLSL bitfieldExtract man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ bitfieldInsert()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::bitfieldInsert (vec< L, T, Q > const & Base,
vec< L, T, Q > const & Insert,
int Offset,
int Bits 
)
+
+ +

Returns the insertion the bits least-significant bits of insert into base.

+

The result will have bits [offset, offset + bits - 1] taken from bits [0, bits - 1] of insert, and all other bits taken directly from the corresponding bits of base. If bits is zero, the result will simply be base. The result will be undefined if offset or bits is negative, or if the sum of offset and bits is greater than the number of bits used to store the operand.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TSigned or unsigned integer scalar or vector types.
+
+
+
See also
GLSL bitfieldInsert man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ bitfieldReverse()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::bitfieldReverse (vec< L, T, Q > const & v)
+
+ +

Returns the reversal of the bits of value.

+

The bit numbered n of the result will be taken from bit (bits - 1) - n of value, where bits is the total number of bits used to represent value.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TSigned or unsigned integer scalar or vector types.
+
+
+
See also
GLSL bitfieldReverse man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ findLSB() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int glm::findLSB (genIUType x)
+
+ +

Returns the bit number of the least significant bit set to 1 in the binary representation of value.

+

If value is zero, -1 will be returned.

+
Template Parameters
+ + +
genIUTypeSigned or unsigned integer scalar types.
+
+
+
See also
GLSL findLSB man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ findLSB() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, int, Q> glm::findLSB (vec< L, T, Q > const & v)
+
+ +

Returns the bit number of the least significant bit set to 1 in the binary representation of value.

+

If value is zero, -1 will be returned.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TSigned or unsigned integer scalar types.
+
+
+
See also
GLSL findLSB man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ findMSB() [1/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL int glm::findMSB (genIUType x)
+
+ +

Returns the bit number of the most significant bit in the binary representation of value.

+

For positive integers, the result will be the bit number of the most significant bit set to 1. For negative integers, the result will be the bit number of the most significant bit set to 0. For a value of zero or negative one, -1 will be returned.

+
Template Parameters
+ + +
genIUTypeSigned or unsigned integer scalar types.
+
+
+
See also
GLSL findMSB man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ findMSB() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, int, Q> glm::findMSB (vec< L, T, Q > const & v)
+
+ +

Returns the bit number of the most significant bit in the binary representation of value.

+

For positive integers, the result will be the bit number of the most significant bit set to 1. For negative integers, the result will be the bit number of the most significant bit set to 0. For a value of zero or negative one, -1 will be returned.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TSigned or unsigned integer scalar types.
+
+
+
See also
GLSL findMSB man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ imulExtended()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::imulExtended (vec< L, int, Q > const & x,
vec< L, int, Q > const & y,
vec< L, int, Q > & msb,
vec< L, int, Q > & lsb 
)
+
+ +

Multiplies 32-bit integers x and y, producing a 64-bit result.

+

The 32 least-significant bits are returned in lsb. The 32 most-significant bits are returned in msb.

+
Template Parameters
+ + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
+
+
+
See also
GLSL imulExtended man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ uaddCarry()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, uint, Q> glm::uaddCarry (vec< L, uint, Q > const & x,
vec< L, uint, Q > const & y,
vec< L, uint, Q > & carry 
)
+
+ +

Adds 32-bit unsigned integer x and y, returning the sum modulo pow(2, 32).

+

The value carry is set to 0 if the sum was less than pow(2, 32), or to 1 otherwise.

+
Template Parameters
+ + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
+
+
+
See also
GLSL uaddCarry man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ umulExtended()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DISCARD_DECL void glm::umulExtended (vec< L, uint, Q > const & x,
vec< L, uint, Q > const & y,
vec< L, uint, Q > & msb,
vec< L, uint, Q > & lsb 
)
+
+ +

Multiplies 32-bit integers x and y, producing a 64-bit result.

+

The 32 least-significant bits are returned in lsb. The 32 most-significant bits are returned in msb.

+
Template Parameters
+ + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
+
+
+
See also
GLSL umulExtended man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+ +

◆ usubBorrow()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, uint, Q> glm::usubBorrow (vec< L, uint, Q > const & x,
vec< L, uint, Q > const & y,
vec< L, uint, Q > & borrow 
)
+
+ +

Subtracts the 32-bit unsigned integer y from x, returning the difference if non-negative, or pow(2, 32) plus the difference otherwise.

+

The value borrow is set to 0 if x >= y, or to 1 otherwise.

+
Template Parameters
+ + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
+
+
+
See also
GLSL usubBorrow man page
+
+GLSL 4.20.8 specification, section 8.8 Integer Functions
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00993.html b/include/glm/doc/api/a00993.html new file mode 100644 index 0000000..d963ae2 --- /dev/null +++ b/include/glm/doc/api/a00993.html @@ -0,0 +1,123 @@ + + + + + + + +1.0.2 API documentation: Matrix functions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Matrix functions
+
+
+ + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > inverse (mat< C, R, T, Q > const &m)
 Return the inverse of a squared matrix. More...
 
+

Detailed Description

+

Provides GLSL matrix functions.

+

Include <glm/matrix.hpp> to use these core features.

+

Function Documentation

+ +

◆ inverse()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL mat<C, R, T, Q> glm::inverse (mat< C, R, T, Q > const & m)
+
+ +

Return the inverse of a squared matrix.

+
Template Parameters
+ + + + + +
CInteger between 1 and 4 included that qualify the number a column
RInteger between 1 and 4 included that qualify the number a row
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL inverse man page
+
+GLSL 4.20.8 specification, section 8.6 Matrix Functions
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00994.html b/include/glm/doc/api/a00994.html new file mode 100644 index 0000000..a40ce9b --- /dev/null +++ b/include/glm/doc/api/a00994.html @@ -0,0 +1,428 @@ + + + + + + + +1.0.2 API documentation: Floating-Point Pack and Unpack Functions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Floating-Point Pack and Unpack Functions
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

GLM_FUNC_DECL double packDouble2x32 (uvec2 const &v)
 Returns a double-qualifier value obtained by packing the components of v into a 64-bit value. More...
 
GLM_FUNC_DECL uint packHalf2x16 (vec2 const &v)
 Returns an unsigned integer obtained by converting the components of a two-component floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification, and then packing these two 16- bit integers into a 32-bit unsigned integer. More...
 
GLM_FUNC_DECL uint packSnorm2x16 (vec2 const &v)
 First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values. More...
 
GLM_FUNC_DECL uint packSnorm4x8 (vec4 const &v)
 First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values. More...
 
GLM_FUNC_DECL uint packUnorm2x16 (vec2 const &v)
 First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values. More...
 
GLM_FUNC_DECL uint packUnorm4x8 (vec4 const &v)
 First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values. More...
 
GLM_FUNC_DECL uvec2 unpackDouble2x32 (double v)
 Returns a two-component unsigned integer vector representation of v. More...
 
GLM_FUNC_DECL vec2 unpackHalf2x16 (uint v)
 Returns a two-component floating-point vector with components obtained by unpacking a 32-bit unsigned integer into a pair of 16-bit values, interpreting those values as 16-bit floating-point numbers according to the OpenGL Specification, and converting them to 32-bit floating-point values. More...
 
GLM_FUNC_DECL vec2 unpackSnorm2x16 (uint p)
 First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackSnorm4x8 (uint p)
 First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers. More...
 
GLM_FUNC_DECL vec2 unpackUnorm2x16 (uint p)
 First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackUnorm4x8 (uint p)
 First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers. More...
 
+

Detailed Description

+

Provides GLSL functions to pack and unpack half, single and double-precision floating point values into more compact integer types.

+

These functions do not operate component-wise, rather as described in each case.

+

Include <glm/packing.hpp> to use these core features.

+

Function Documentation

+ +

◆ packDouble2x32()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL double glm::packDouble2x32 (uvec2 const & v)
+
+ +

Returns a double-qualifier value obtained by packing the components of v into a 64-bit value.

+

If an IEEE 754 Inf or NaN is created, it will not signal, and the resulting floating point value is unspecified. Otherwise, the bit- level representation of v is preserved. The first vector component specifies the 32 least significant bits; the second component specifies the 32 most significant bits.

+
See also
GLSL packDouble2x32 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packHalf2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::packHalf2x16 (vec2 const & v)
+
+ +

Returns an unsigned integer obtained by converting the components of a two-component floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification, and then packing these two 16- bit integers into a 32-bit unsigned integer.

+

The first vector component specifies the 16 least-significant bits of the result; the second component specifies the 16 most-significant bits.

+
See also
GLSL packHalf2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packSnorm2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::packSnorm2x16 (vec2 const & v)
+
+ +

First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values.

+

Then, the results are packed into the returned 32-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packSnorm2x16: round(clamp(v, -1, +1) * 32767.0)

+

The first component of the vector will be written to the least significant bits of the output; the last component will be written to the most significant bits.

+
See also
GLSL packSnorm2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packSnorm4x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::packSnorm4x8 (vec4 const & v)
+
+ +

First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values.

+

Then, the results are packed into the returned 32-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packSnorm4x8: round(clamp(c, -1, +1) * 127.0)

+

The first component of the vector will be written to the least significant bits of the output; the last component will be written to the most significant bits.

+
See also
GLSL packSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packUnorm2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::packUnorm2x16 (vec2 const & v)
+
+ +

First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values.

+

Then, the results are packed into the returned 32-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packUnorm2x16: round(clamp(c, 0, +1) * 65535.0)

+

The first component of the vector will be written to the least significant bits of the output; the last component will be written to the most significant bits.

+
See also
GLSL packUnorm2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ packUnorm4x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uint glm::packUnorm4x8 (vec4 const & v)
+
+ +

First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values.

+

Then, the results are packed into the returned 32-bit unsigned integer.

+

The conversion for component c of v to fixed point is done as follows: packUnorm4x8: round(clamp(c, 0, +1) * 255.0)

+

The first component of the vector will be written to the least significant bits of the output; the last component will be written to the most significant bits.

+
See also
GLSL packUnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackDouble2x32()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL uvec2 glm::unpackDouble2x32 (double v)
+
+ +

Returns a two-component unsigned integer vector representation of v.

+

The bit-level representation of v is preserved. The first component of the vector contains the 32 least significant bits of the double; the second component consists the 32 most significant bits.

+
See also
GLSL unpackDouble2x32 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackHalf2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec2 glm::unpackHalf2x16 (uint v)
+
+ +

Returns a two-component floating-point vector with components obtained by unpacking a 32-bit unsigned integer into a pair of 16-bit values, interpreting those values as 16-bit floating-point numbers according to the OpenGL Specification, and converting them to 32-bit floating-point values.

+

The first component of the vector is obtained from the 16 least-significant bits of v; the second component is obtained from the 16 most-significant bits of v.

+
See also
GLSL unpackHalf2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackSnorm2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec2 glm::unpackSnorm2x16 (uint p)
+
+ +

First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned two- or four-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackSnorm2x16: clamp(f / 32767.0, -1, +1)

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLSL unpackSnorm2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackSnorm4x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec4 glm::unpackSnorm4x8 (uint p)
+
+ +

First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned two- or four-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackSnorm4x8: clamp(f / 127.0, -1, +1)

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLSL unpackSnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackUnorm2x16()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec2 glm::unpackUnorm2x16 (uint p)
+
+ +

First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned two- or four-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackUnorm2x16: f / 65535.0

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLSL unpackUnorm2x16 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+ +

◆ unpackUnorm4x8()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec4 glm::unpackUnorm4x8 (uint p)
+
+ +

First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers.

+

Then, each component is converted to a normalized floating-point value to generate the returned two- or four-component vector.

+

The conversion for unpacked fixed-point value f to floating point is done as follows: unpackUnorm4x8: f / 255.0

+

The first component of the returned vector will be extracted from the least significant bits of the input; the last component will be extracted from the most significant bits.

+
See also
GLSL unpackUnorm4x8 man page
+
+GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00995.html b/include/glm/doc/api/a00995.html new file mode 100644 index 0000000..236aa0e --- /dev/null +++ b/include/glm/doc/api/a00995.html @@ -0,0 +1,634 @@ + + + + + + + +1.0.2 API documentation: Angle and Trigonometry Functions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Angle and Trigonometry Functions
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > acos (vec< L, T, Q > const &x)
 Arc cosine. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > acosh (vec< L, T, Q > const &x)
 Arc hyperbolic cosine; returns the non-negative inverse of cosh. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > asin (vec< L, T, Q > const &x)
 Arc sine. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > asinh (vec< L, T, Q > const &x)
 Arc hyperbolic sine; returns the inverse of sinh. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > atan (vec< L, T, Q > const &y, vec< L, T, Q > const &x)
 Arc tangent. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > atan (vec< L, T, Q > const &y_over_x)
 Arc tangent. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > atanh (vec< L, T, Q > const &x)
 Arc hyperbolic tangent; returns the inverse of tanh. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > cos (vec< L, T, Q > const &angle)
 The standard trigonometric cosine function. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > cosh (vec< L, T, Q > const &angle)
 Returns the hyperbolic cosine function, (exp(x) + exp(-x)) / 2. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > degrees (vec< L, T, Q > const &radians)
 Converts radians to degrees and returns the result. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, T, Q > radians (vec< L, T, Q > const &degrees)
 Converts degrees to radians and returns the result. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > sin (vec< L, T, Q > const &angle)
 The standard trigonometric sine function. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > sinh (vec< L, T, Q > const &angle)
 Returns the hyperbolic sine function, (exp(x) - exp(-x)) / 2. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > tan (vec< L, T, Q > const &angle)
 The standard trigonometric tangent function. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > tanh (vec< L, T, Q > const &angle)
 Returns the hyperbolic tangent function, sinh(angle) / cosh(angle) More...
 
+

Detailed Description

+

Function parameters specified as angle are assumed to be in units of radians. In no case will any of these functions result in a divide by zero error. If the divisor of a ratio is 0, then results will be undefined.

+

These all operate component-wise. The description is per component.

+

Include <glm/trigonometric.hpp> to use these core features.

+
See also
ext_vector_trigonometric
+

Function Documentation

+ +

◆ acos()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::acos (vec< L, T, Q > const & x)
+
+ +

Arc cosine.

+

Returns an angle whose cosine is x. The range of values returned by this function is [0, PI]. Results are undefined if |x| > 1.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL acos man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ acosh()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::acosh (vec< L, T, Q > const & x)
+
+ +

Arc hyperbolic cosine; returns the non-negative inverse of cosh.

+

Results are undefined if x < 1.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL acosh man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ asin()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::asin (vec< L, T, Q > const & x)
+
+ +

Arc sine.

+

Returns an angle whose sine is x. The range of values returned by this function is [-PI/2, PI/2]. Results are undefined if |x| > 1.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL asin man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ asinh()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::asinh (vec< L, T, Q > const & x)
+
+ +

Arc hyperbolic sine; returns the inverse of sinh.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL asinh man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ atan() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::atan (vec< L, T, Q > const & y,
vec< L, T, Q > const & x 
)
+
+ +

Arc tangent.

+

Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL atan man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +

Referenced by glm::atan2().

+ +
+
+ +

◆ atan() [2/2]

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::atan (vec< L, T, Q > const & y_over_x)
+
+ +

Arc tangent.

+

Returns an angle whose tangent is y_over_x. The range of values returned by this function is [-PI/2, PI/2].

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL atan man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ atanh()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::atanh (vec< L, T, Q > const & x)
+
+ +

Arc hyperbolic tangent; returns the inverse of tanh.

+

Results are undefined if abs(x) >= 1.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL atanh man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ cos()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::cos (vec< L, T, Q > const & angle)
+
+ +

The standard trigonometric cosine function.

+

The values returned by this function will range from [-1, 1].

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL cos man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ cosh()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::cosh (vec< L, T, Q > const & angle)
+
+ +

Returns the hyperbolic cosine function, (exp(x) + exp(-x)) / 2.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL cosh man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ degrees()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::degrees (vec< L, T, Q > const & radians)
+
+ +

Converts radians to degrees and returns the result.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL degrees man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ radians()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, T, Q> glm::radians (vec< L, T, Q > const & degrees)
+
+ +

Converts degrees to radians and returns the result.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL radians man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ sin()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::sin (vec< L, T, Q > const & angle)
+
+ +

The standard trigonometric sine function.

+

The values returned by this function will range from [-1, 1].

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL sin man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ sinh()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::sinh (vec< L, T, Q > const & angle)
+
+ +

Returns the hyperbolic sine function, (exp(x) - exp(-x)) / 2.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL sinh man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ tan()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::tan (vec< L, T, Q > const & angle)
+
+ +

The standard trigonometric tangent function.

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL tan man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+ +

◆ tanh()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL vec<L, T, Q> glm::tanh (vec< L, T, Q > const & angle)
+
+ +

Returns the hyperbolic tangent function, sinh(angle) / cosh(angle)

+
Template Parameters
+ + + + +
LInteger between 1 and 4 included that qualify the dimension of the vector
TFloating-point scalar types
QValue from qualifier enum
+
+
+
See also
GLSL tanh man page
+
+GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a00996.html b/include/glm/doc/api/a00996.html new file mode 100644 index 0000000..6db7afe --- /dev/null +++ b/include/glm/doc/api/a00996.html @@ -0,0 +1,453 @@ + + + + + + + +1.0.2 API documentation: Vector Relational Functions + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+ +
+
Vector Relational Functions
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR bool all (vec< L, bool, Q > const &v)
 Returns true if all components of x are true. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR bool any (vec< L, bool, Q > const &v)
 Returns true if any component of x is true. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x == y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > greaterThan (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x > y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > greaterThanEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x >= y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > lessThan (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison result of x < y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > lessThanEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x <= y. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > not_ (vec< L, bool, Q > const &v)
 Returns the component-wise logical complement of x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y)
 Returns the component-wise comparison of result x != y. More...
 
+

Detailed Description

+

Relational and equality operators (<, <=, >, >=, ==, !=) are defined to operate on scalars and produce scalar Boolean results. For vector results, use the following built-in functions.

+

In all cases, the sizes of all the input and return vectors for any particular call must match.

+

Include <glm/vector_relational.hpp> to use these core features.

+
See also
GLM_EXT_vector_relational
+

Function Documentation

+ +

◆ all()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR bool glm::all (vec< L, bool, Q > const & v)
+
+ +

Returns true if all components of x are true.

+
Template Parameters
+ + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
+
+
+
See also
GLSL all man page
+
+GLSL 4.20.8 specification, section 8.7 Vector Relational Functions
+ +
+
+ +

◆ any()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR bool glm::any (vec< L, bool, Q > const & v)
+
+ +

Returns true if any component of x is true.

+
Template Parameters
+ + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
+
+
+
See also
GLSL any man page
+
+GLSL 4.20.8 specification, section 8.7 Vector Relational Functions
+ +
+
+ +

◆ equal()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::equal (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x == y.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TA floating-point, integer or bool scalar type.
+
+
+
See also
GLSL equal man page
+
+GLSL 4.20.8 specification, section 8.7 Vector Relational Functions
+ +
+
+ +

◆ greaterThan()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::greaterThan (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x > y.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TA floating-point or integer scalar type.
+
+
+
See also
GLSL greaterThan man page
+
+GLSL 4.20.8 specification, section 8.7 Vector Relational Functions
+ +
+
+ +

◆ greaterThanEqual()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::greaterThanEqual (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x >= y.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TA floating-point or integer scalar type.
+
+
+
See also
GLSL greaterThanEqual man page
+
+GLSL 4.20.8 specification, section 8.7 Vector Relational Functions
+ +
+
+ +

◆ lessThan()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::lessThan (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns the component-wise comparison result of x < y.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TA floating-point or integer scalar type.
+
+
+
See also
GLSL lessThan man page
+
+GLSL 4.20.8 specification, section 8.7 Vector Relational Functions
+ +
+
+ +

◆ lessThanEqual()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::lessThanEqual (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x <= y.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TA floating-point or integer scalar type.
+
+
+
See also
GLSL lessThanEqual man page
+
+GLSL 4.20.8 specification, section 8.7 Vector Relational Functions
+ +
+
+ +

◆ not_()

+ +
+
+ + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::not_ (vec< L, bool, Q > const & v)
+
+ +

Returns the component-wise logical complement of x.

+

/!\ Because of language incompatibilities between C++ and GLSL, GLM defines the function not but not_ instead.

+
Template Parameters
+ + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
+
+
+
See also
GLSL not man page
+
+GLSL 4.20.8 specification, section 8.7 Vector Relational Functions
+ +
+
+ +

◆ notEqual()

+ +
+
+ + + + + + + + + + + + + + + + + + +
GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> glm::notEqual (vec< L, T, Q > const & x,
vec< L, T, Q > const & y 
)
+
+ +

Returns the component-wise comparison of result x != y.

+
Template Parameters
+ + + +
LAn integer between 1 and 4 included that qualify the dimension of the vector.
TA floating-point, integer or bool scalar type.
+
+
+
See also
GLSL notEqual man page
+
+GLSL 4.20.8 specification, section 8.7 Vector Relational Functions
+ +
+
+
+ + + + diff --git a/include/glm/doc/api/a01681.html b/include/glm/doc/api/a01681.html new file mode 100644 index 0000000..440239c --- /dev/null +++ b/include/glm/doc/api/a01681.html @@ -0,0 +1,116 @@ + + + + + + + +1.0.2 API documentation: color_space.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtc/color_space.hpp File Reference
+
+
+ +

GLM_GTC_color_space +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > convertLinearToSRGB (vec< L, T, Q > const &ColorLinear)
 Convert a linear color to sRGB color using a standard gamma correction. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > convertLinearToSRGB (vec< L, T, Q > const &ColorLinear, T Gamma)
 Convert a linear color to sRGB color using a custom gamma correction. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > convertSRGBToLinear (vec< L, T, Q > const &ColorSRGB)
 Convert a sRGB color to linear color using a standard gamma correction. More...
 
+template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > convertSRGBToLinear (vec< L, T, Q > const &ColorSRGB, T Gamma)
 Convert a sRGB color to linear color using a custom gamma correction.
 
+

Detailed Description

+

GLM_GTC_color_space

+
See also
Core features (dependence)
+
+GLM_GTC_color_space (dependence)
+ +

Definition in file gtc/color_space.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01681_source.html b/include/glm/doc/api/a01681_source.html new file mode 100644 index 0000000..73a73b5 --- /dev/null +++ b/include/glm/doc/api/a01681_source.html @@ -0,0 +1,117 @@ + + + + + + + +1.0.2 API documentation: color_space.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtc/color_space.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependencies
+
17 #include "../detail/setup.hpp"
+
18 #include "../detail/qualifier.hpp"
+
19 #include "../exponential.hpp"
+
20 #include "../vec3.hpp"
+
21 #include "../vec4.hpp"
+
22 #include <limits>
+
23 
+
24 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
25 # pragma message("GLM: GLM_GTC_color_space extension included")
+
26 #endif
+
27 
+
28 namespace glm
+
29 {
+
32 
+
35  template<length_t L, typename T, qualifier Q>
+
36  GLM_FUNC_DECL vec<L, T, Q> convertLinearToSRGB(vec<L, T, Q> const& ColorLinear);
+
37 
+
40  template<length_t L, typename T, qualifier Q>
+
41  GLM_FUNC_DECL vec<L, T, Q> convertLinearToSRGB(vec<L, T, Q> const& ColorLinear, T Gamma);
+
42 
+
45  template<length_t L, typename T, qualifier Q>
+
46  GLM_FUNC_DECL vec<L, T, Q> convertSRGBToLinear(vec<L, T, Q> const& ColorSRGB);
+
47 
+
49  // IEC 61966-2-1:1999 / Rec. 709 specification https://www.w3.org/Graphics/Color/srgb
+
50  template<length_t L, typename T, qualifier Q>
+
51  GLM_FUNC_DECL vec<L, T, Q> convertSRGBToLinear(vec<L, T, Q> const& ColorSRGB, T Gamma);
+
52 
+
54 } //namespace glm
+
55 
+
56 #include "color_space.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > convertLinearToSRGB(vec< L, T, Q > const &ColorLinear, T Gamma)
Convert a linear color to sRGB color using a custom gamma correction.
+
GLM_FUNC_DECL vec< L, T, Q > convertSRGBToLinear(vec< L, T, Q > const &ColorSRGB, T Gamma)
Convert a sRGB color to linear color using a custom gamma correction.
+ + + + diff --git a/include/glm/doc/api/a01684.html b/include/glm/doc/api/a01684.html new file mode 100644 index 0000000..84758d7 --- /dev/null +++ b/include/glm/doc/api/a01684.html @@ -0,0 +1,121 @@ + + + + + + + +1.0.2 API documentation: color_space.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtx/color_space.hpp File Reference
+
+
+ +

GLM_GTX_color_space +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > hsvColor (vec< 3, T, Q > const &rgbValue)
 Converts a color from RGB color space to its color in HSV color space. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T luminosity (vec< 3, T, Q > const &color)
 Compute color luminosity associating ratios (0.33, 0.59, 0.11) to RGB canals. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rgbColor (vec< 3, T, Q > const &hsvValue)
 Converts a color from HSV color space to its color in RGB color space. More...
 
template<typename T >
GLM_FUNC_DECL mat< 4, 4, T, defaultp > saturation (T const s)
 Build a saturation matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > saturation (T const s, vec< 3, T, Q > const &color)
 Modify the saturation of a color. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > saturation (T const s, vec< 4, T, Q > const &color)
 Modify the saturation of a color. More...
 
+

Detailed Description

+

GLM_GTX_color_space

+
See also
Core features (dependence)
+ +

Definition in file gtx/color_space.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01684_source.html b/include/glm/doc/api/a01684_source.html new file mode 100644 index 0000000..b68eea3 --- /dev/null +++ b/include/glm/doc/api/a01684_source.html @@ -0,0 +1,129 @@ + + + + + + + +1.0.2 API documentation: color_space.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtx/color_space.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_color_space is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_color_space extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
31  template<typename T, qualifier Q>
+
32  GLM_FUNC_DECL vec<3, T, Q> rgbColor(
+
33  vec<3, T, Q> const& hsvValue);
+
34 
+
37  template<typename T, qualifier Q>
+
38  GLM_FUNC_DECL vec<3, T, Q> hsvColor(
+
39  vec<3, T, Q> const& rgbValue);
+
40 
+
43  template<typename T>
+
44  GLM_FUNC_DECL mat<4, 4, T, defaultp> saturation(
+
45  T const s);
+
46 
+
49  template<typename T, qualifier Q>
+
50  GLM_FUNC_DECL vec<3, T, Q> saturation(
+
51  T const s,
+
52  vec<3, T, Q> const& color);
+
53 
+
56  template<typename T, qualifier Q>
+
57  GLM_FUNC_DECL vec<4, T, Q> saturation(
+
58  T const s,
+
59  vec<4, T, Q> const& color);
+
60 
+
63  template<typename T, qualifier Q>
+
64  GLM_FUNC_DECL T luminosity(
+
65  vec<3, T, Q> const& color);
+
66 
+
68 }//namespace glm
+
69 
+
70 #include "color_space.inl"
+
+
GLM_FUNC_DECL vec< 3, T, Q > hsvColor(vec< 3, T, Q > const &rgbValue)
Converts a color from RGB color space to its color in HSV color space.
+
GLM_FUNC_DECL vec< 4, T, Q > saturation(T const s, vec< 4, T, Q > const &color)
Modify the saturation of a color.
+
GLM_FUNC_DECL T luminosity(vec< 3, T, Q > const &color)
Compute color luminosity associating ratios (0.33, 0.59, 0.11) to RGB canals.
+
GLM_FUNC_DECL vec< 3, T, Q > rgbColor(vec< 3, T, Q > const &hsvValue)
Converts a color from HSV color space to its color in RGB color space.
+ + + + diff --git a/include/glm/doc/api/a01687.html b/include/glm/doc/api/a01687.html new file mode 100644 index 0000000..d2afe6e --- /dev/null +++ b/include/glm/doc/api/a01687.html @@ -0,0 +1,113 @@ + + + + + + + +1.0.2 API documentation: common.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtx/common.hpp File Reference
+
+
+ +

GLM_GTX_common +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > closeBounded (vec< L, T, Q > const &Value, vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
 Returns whether vector components values are within an interval. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > fmod (vec< L, T, Q > const &v)
 Similar to 'mod' but with a different rounding and integer support. More...
 
template<typename genType >
GLM_FUNC_DECL genType::bool_type isdenormal (genType const &x)
 Returns true if x is a denormalized number Numbers whose absolute value is too small to be represented in the normal format are represented in an alternate, denormalized format. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, bool, Q > openBounded (vec< L, T, Q > const &Value, vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
 Returns whether vector components values are within an interval. More...
 
+

Detailed Description

+

GLM_GTX_common

+
See also
Core features (dependence)
+ +

Definition in file gtx/common.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01687_source.html b/include/glm/doc/api/a01687_source.html new file mode 100644 index 0000000..6d0aa93 --- /dev/null +++ b/include/glm/doc/api/a01687_source.html @@ -0,0 +1,118 @@ + + + + + + + +1.0.2 API documentation: common.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtx/common.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependencies:
+
16 #include "../vec2.hpp"
+
17 #include "../vec3.hpp"
+
18 #include "../vec4.hpp"
+
19 #include "../gtc/vec1.hpp"
+
20 
+
21 #ifndef GLM_ENABLE_EXPERIMENTAL
+
22 # error "GLM: GLM_GTX_common is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
23 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_GTX_common extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
40  template<typename genType>
+
41  GLM_FUNC_DECL typename genType::bool_type isdenormal(genType const& x);
+
42 
+
48  template<length_t L, typename T, qualifier Q>
+
49  GLM_FUNC_DECL vec<L, T, Q> fmod(vec<L, T, Q> const& v);
+
50 
+
58  template <length_t L, typename T, qualifier Q>
+
59  GLM_FUNC_DECL vec<L, bool, Q> openBounded(vec<L, T, Q> const& Value, vec<L, T, Q> const& Min, vec<L, T, Q> const& Max);
+
60 
+
68  template <length_t L, typename T, qualifier Q>
+
69  GLM_FUNC_DECL vec<L, bool, Q> closeBounded(vec<L, T, Q> const& Value, vec<L, T, Q> const& Min, vec<L, T, Q> const& Max);
+
70 
+
72 }//namespace glm
+
73 
+
74 #include "common.inl"
+
+
GLM_FUNC_DECL vec< L, bool, Q > openBounded(vec< L, T, Q > const &Value, vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
Returns whether vector components values are within an interval.
+
GLM_FUNC_DECL genType::bool_type isdenormal(genType const &x)
Returns true if x is a denormalized number Numbers whose absolute value is too small to be represente...
+
GLM_FUNC_DECL vec< L, T, Q > fmod(vec< L, T, Q > const &v)
Similar to 'mod' but with a different rounding and integer support.
+
GLM_FUNC_DECL vec< L, bool, Q > closeBounded(vec< L, T, Q > const &Value, vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)
Returns whether vector components values are within an interval.
+ + + + diff --git a/include/glm/doc/api/a01690.html b/include/glm/doc/api/a01690.html new file mode 100644 index 0000000..cf10cdd --- /dev/null +++ b/include/glm/doc/api/a01690.html @@ -0,0 +1,103 @@ + + + + + + + +1.0.2 API documentation: integer.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtc/integer.hpp File Reference
+
+
+ +

GLM_GTC_integer +More...

+ +

Go to the source code of this file.

+ + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< L, T, Q > log2 (vec< L, T, Q > const &v)
 Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y. More...
 
+

Detailed Description

+

GLM_GTC_integer

+
See also
Core features (dependence)
+
+GLM_GTC_integer (dependence)
+ +

Definition in file gtc/integer.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01690_source.html b/include/glm/doc/api/a01690_source.html new file mode 100644 index 0000000..ef68967 --- /dev/null +++ b/include/glm/doc/api/a01690_source.html @@ -0,0 +1,108 @@ + + + + + + + +1.0.2 API documentation: integer.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtc/integer.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependencies
+
17 #include "../detail/setup.hpp"
+
18 #include "../detail/qualifier.hpp"
+
19 #include "../common.hpp"
+
20 #include "../integer.hpp"
+
21 #include "../exponential.hpp"
+
22 #include "../ext/scalar_common.hpp"
+
23 #include "../ext/vector_common.hpp"
+
24 #include <limits>
+
25 
+
26 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
27 # pragma message("GLM: GLM_GTC_integer extension included")
+
28 #endif
+
29 
+
30 namespace glm
+
31 {
+
34 
+
37  template<length_t L, typename T, qualifier Q>
+
38  GLM_FUNC_DECL vec<L, T, Q> log2(vec<L, T, Q> const& v);
+
39 
+
41 } //namespace glm
+
42 
+
43 #include "integer.inl"
+
+
GLM_FUNC_DECL vec< L, T, Q > log2(vec< L, T, Q > const &v)
Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y.
+ + + + diff --git a/include/glm/doc/api/a01693.html b/include/glm/doc/api/a01693.html new file mode 100644 index 0000000..bdb3268 --- /dev/null +++ b/include/glm/doc/api/a01693.html @@ -0,0 +1,133 @@ + + + + + + + +1.0.2 API documentation: integer.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtx/integer.hpp File Reference
+
+
+ +

GLM_GTX_integer +More...

+ +

Go to the source code of this file.

+ + + + + +

+Typedefs

typedef signed int sint
 32bit signed integer. More...
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+template<typename genType >
GLM_FUNC_DECL genType factorial (genType const &x)
 Return the factorial value of a number (!12 max, integer only) From GLM_GTX_integer extension.
 
GLM_FUNC_DECL unsigned int floor_log2 (unsigned int x)
 Returns the floor log2 of x. More...
 
GLM_FUNC_DECL int mod (int x, int y)
 Modulus. More...
 
GLM_FUNC_DECL uint mod (uint x, uint y)
 Modulus. More...
 
GLM_FUNC_DECL uint nlz (uint x)
 Returns the number of leading zeros. More...
 
GLM_FUNC_DECL int pow (int x, uint y)
 Returns x raised to the y power. More...
 
GLM_FUNC_DECL uint pow (uint x, uint y)
 Returns x raised to the y power. More...
 
GLM_FUNC_DECL int sqrt (int x)
 Returns the positive square root of x. More...
 
GLM_FUNC_DECL uint sqrt (uint x)
 Returns the positive square root of x. More...
 
+

Detailed Description

+

GLM_GTX_integer

+
See also
Core features (dependence)
+ +

Definition in file gtx/integer.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01693_source.html b/include/glm/doc/api/a01693_source.html new file mode 100644 index 0000000..67386c6 --- /dev/null +++ b/include/glm/doc/api/a01693_source.html @@ -0,0 +1,128 @@ + + + + + + + +1.0.2 API documentation: integer.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtx/integer.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 #include "../gtc/integer.hpp"
+
18 
+
19 #ifndef GLM_ENABLE_EXPERIMENTAL
+
20 # error "GLM: GLM_GTX_integer is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
21 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
22 # pragma message("GLM: GLM_GTX_integer extension included")
+
23 #endif
+
24 
+
25 namespace glm
+
26 {
+
29 
+
32  GLM_FUNC_DECL int pow(int x, uint y);
+
33 
+
36  GLM_FUNC_DECL int sqrt(int x);
+
37 
+
40  GLM_FUNC_DECL unsigned int floor_log2(unsigned int x);
+
41 
+
44  GLM_FUNC_DECL int mod(int x, int y);
+
45 
+
48  template<typename genType>
+
49  GLM_FUNC_DECL genType factorial(genType const& x);
+
50 
+
53  typedef signed int sint;
+
54 
+
57  GLM_FUNC_DECL uint pow(uint x, uint y);
+
58 
+
61  GLM_FUNC_DECL uint sqrt(uint x);
+
62 
+
65  GLM_FUNC_DECL uint mod(uint x, uint y);
+
66 
+
69  GLM_FUNC_DECL uint nlz(uint x);
+
70 
+
72 }//namespace glm
+
73 
+
74 #include "integer.inl"
+
+
GLM_FUNC_DECL unsigned int floor_log2(unsigned int x)
Returns the floor log2 of x.
+
GLM_FUNC_DECL uint mod(uint x, uint y)
Modulus.
+
GLM_FUNC_DECL uint nlz(uint x)
Returns the number of leading zeros.
+
signed int sint
32bit signed integer.
Definition: gtx/integer.hpp:53
+
GLM_FUNC_DECL uint sqrt(uint x)
Returns the positive square root of x.
+
GLM_FUNC_DECL uint pow(uint x, uint y)
Returns x raised to the y power.
+
GLM_FUNC_DECL genType factorial(genType const &x)
Return the factorial value of a number (!12 max, integer only) From GLM_GTX_integer extension.
+ + + + diff --git a/include/glm/doc/api/a01696.html b/include/glm/doc/api/a01696.html new file mode 100644 index 0000000..1c56f52 --- /dev/null +++ b/include/glm/doc/api/a01696.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: matrix_integer.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
ext/matrix_integer.hpp File Reference
+
+
+ +

GLM_EXT_matrix_integer +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL T determinant (mat< C, R, T, Q > const &m)
 Return the determinant of a squared matrix. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > matrixCompMult (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
 Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and y[i][j]. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL detail::outerProduct_trait< C, R, T, Q >::type outerProduct (vec< C, T, Q > const &c, vec< R, T, Q > const &r)
 Treats the first parameter c as a column vector and the second parameter r as a row vector and does a linear algebraic matrix multiply c * r. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q >::transpose_type transpose (mat< C, R, T, Q > const &x)
 Returns the transposed matrix of x. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a01696_source.html b/include/glm/doc/api/a01696_source.html new file mode 100644 index 0000000..7f6ab89 --- /dev/null +++ b/include/glm/doc/api/a01696_source.html @@ -0,0 +1,116 @@ + + + + + + + +1.0.2 API documentation: matrix_integer.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ext/matrix_integer.hpp
+
+
+Go to the documentation of this file.
1 
+
20 #pragma once
+
21 
+
22 // Dependencies
+
23 #include "../gtc/constants.hpp"
+
24 #include "../geometric.hpp"
+
25 #include "../trigonometric.hpp"
+
26 #include "../matrix.hpp"
+
27 
+
28 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
29 # pragma message("GLM: GLM_EXT_matrix_integer extension included")
+
30 #endif
+
31 
+
32 namespace glm
+
33 {
+
36 
+
47  template<length_t C, length_t R, typename T, qualifier Q>
+
48  GLM_FUNC_DECL mat<C, R, T, Q> matrixCompMult(mat<C, R, T, Q> const& x, mat<C, R, T, Q> const& y);
+
49 
+
61  template<length_t C, length_t R, typename T, qualifier Q>
+
62  GLM_FUNC_DECL typename detail::outerProduct_trait<C, R, T, Q>::type outerProduct(vec<C, T, Q> const& c, vec<R, T, Q> const& r);
+
63 
+
73  template<length_t C, length_t R, typename T, qualifier Q>
+
74  GLM_FUNC_DECL typename mat<C, R, T, Q>::transpose_type transpose(mat<C, R, T, Q> const& x);
+
75 
+
85  template<length_t C, length_t R, typename T, qualifier Q>
+
86  GLM_FUNC_DECL T determinant(mat<C, R, T, Q> const& m);
+
87 
+
89 }//namespace glm
+
90 
+
91 #include "matrix_integer.inl"
+
+
GLM_FUNC_DECL T determinant(mat< C, R, T, Q > const &m)
Return the determinant of a squared matrix.
+
GLM_FUNC_DECL detail::outerProduct_trait< C, R, T, Q >::type outerProduct(vec< C, T, Q > const &c, vec< R, T, Q > const &r)
Treats the first parameter c as a column vector and the second parameter r as a row vector and does a...
+
GLM_FUNC_DECL mat< C, R, T, Q >::transpose_type transpose(mat< C, R, T, Q > const &x)
Returns the transposed matrix of x.
+
GLM_FUNC_DECL mat< C, R, T, Q > matrixCompMult(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and...
+ + + + diff --git a/include/glm/doc/api/a01699.html b/include/glm/doc/api/a01699.html new file mode 100644 index 0000000..c856c36 --- /dev/null +++ b/include/glm/doc/api/a01699.html @@ -0,0 +1,151 @@ + + + + + + + +1.0.2 API documentation: matrix_integer.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtc/matrix_integer.hpp File Reference
+
+
+ +

GLM_GTC_matrix_integer +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

typedef mat< 2, 2, int, highp > highp_imat2
 High-qualifier signed integer 2x2 matrix. More...
 
typedef mat< 3, 3, int, highp > highp_imat3
 High-qualifier signed integer 3x3 matrix. More...
 
typedef mat< 4, 4, int, highp > highp_imat4
 High-qualifier signed integer 4x4 matrix. More...
 
typedef mat< 2, 2, uint, highp > highp_umat2
 High-qualifier unsigned integer 2x2 matrix. More...
 
typedef mat< 3, 3, uint, highp > highp_umat3
 High-qualifier unsigned integer 3x3 matrix. More...
 
typedef mat< 4, 4, uint, highp > highp_umat4
 High-qualifier unsigned integer 4x4 matrix. More...
 
typedef mat< 2, 2, int, lowp > lowp_imat2
 Low-qualifier signed integer 2x2 matrix. More...
 
typedef mat< 3, 3, int, lowp > lowp_imat3
 Low-qualifier signed integer 3x3 matrix. More...
 
typedef mat< 4, 4, int, lowp > lowp_imat4
 Low-qualifier signed integer 4x4 matrix. More...
 
typedef mat< 2, 2, uint, lowp > lowp_umat2
 Low-qualifier unsigned integer 2x2 matrix. More...
 
typedef mat< 3, 3, uint, lowp > lowp_umat3
 Low-qualifier unsigned integer 3x3 matrix. More...
 
typedef mat< 4, 4, uint, lowp > lowp_umat4
 Low-qualifier unsigned integer 4x4 matrix. More...
 
typedef mat< 2, 2, int, mediump > mediump_imat2
 Medium-qualifier signed integer 2x2 matrix. More...
 
typedef mat< 3, 3, int, mediump > mediump_imat3
 Medium-qualifier signed integer 3x3 matrix. More...
 
typedef mat< 4, 4, int, mediump > mediump_imat4
 Medium-qualifier signed integer 4x4 matrix. More...
 
typedef mat< 2, 2, uint, mediump > mediump_umat2
 Medium-qualifier unsigned integer 2x2 matrix. More...
 
typedef mat< 3, 3, uint, mediump > mediump_umat3
 Medium-qualifier unsigned integer 3x3 matrix. More...
 
typedef mat< 4, 4, uint, mediump > mediump_umat4
 Medium-qualifier unsigned integer 4x4 matrix. More...
 
+

Detailed Description

+

GLM_GTC_matrix_integer

+
See also
Core features (dependence)
+ +

Definition in file gtc/matrix_integer.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01699_source.html b/include/glm/doc/api/a01699_source.html new file mode 100644 index 0000000..9f55ec2 --- /dev/null +++ b/include/glm/doc/api/a01699_source.html @@ -0,0 +1,404 @@ + + + + + + + +1.0.2 API documentation: matrix_integer.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtc/matrix_integer.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../mat2x2.hpp"
+
17 #include "../mat2x3.hpp"
+
18 #include "../mat2x4.hpp"
+
19 #include "../mat3x2.hpp"
+
20 #include "../mat3x3.hpp"
+
21 #include "../mat3x4.hpp"
+
22 #include "../mat4x2.hpp"
+
23 #include "../mat4x3.hpp"
+
24 #include "../mat4x4.hpp"
+
25 
+
26 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
27 # pragma message("GLM: GLM_GTC_matrix_integer extension included")
+
28 #endif
+
29 
+
30 namespace glm
+
31 {
+
34 
+
37  typedef mat<2, 2, int, highp> highp_imat2;
+
38 
+
41  typedef mat<3, 3, int, highp> highp_imat3;
+
42 
+
45  typedef mat<4, 4, int, highp> highp_imat4;
+
46 
+
49  typedef mat<2, 2, int, highp> highp_imat2x2;
+
50 
+
53  typedef mat<2, 3, int, highp> highp_imat2x3;
+
54 
+
57  typedef mat<2, 4, int, highp> highp_imat2x4;
+
58 
+
61  typedef mat<3, 2, int, highp> highp_imat3x2;
+
62 
+
65  typedef mat<3, 3, int, highp> highp_imat3x3;
+
66 
+
69  typedef mat<3, 4, int, highp> highp_imat3x4;
+
70 
+
73  typedef mat<4, 2, int, highp> highp_imat4x2;
+
74 
+
77  typedef mat<4, 3, int, highp> highp_imat4x3;
+
78 
+
81  typedef mat<4, 4, int, highp> highp_imat4x4;
+
82 
+
83 
+
86  typedef mat<2, 2, int, mediump> mediump_imat2;
+
87 
+
90  typedef mat<3, 3, int, mediump> mediump_imat3;
+
91 
+
94  typedef mat<4, 4, int, mediump> mediump_imat4;
+
95 
+
96 
+
99  typedef mat<2, 2, int, mediump> mediump_imat2x2;
+
100 
+
103  typedef mat<2, 3, int, mediump> mediump_imat2x3;
+
104 
+
107  typedef mat<2, 4, int, mediump> mediump_imat2x4;
+
108 
+
111  typedef mat<3, 2, int, mediump> mediump_imat3x2;
+
112 
+
115  typedef mat<3, 3, int, mediump> mediump_imat3x3;
+
116 
+
119  typedef mat<3, 4, int, mediump> mediump_imat3x4;
+
120 
+
123  typedef mat<4, 2, int, mediump> mediump_imat4x2;
+
124 
+
127  typedef mat<4, 3, int, mediump> mediump_imat4x3;
+
128 
+
131  typedef mat<4, 4, int, mediump> mediump_imat4x4;
+
132 
+
133 
+
136  typedef mat<2, 2, int, lowp> lowp_imat2;
+
137 
+
140  typedef mat<3, 3, int, lowp> lowp_imat3;
+
141 
+
144  typedef mat<4, 4, int, lowp> lowp_imat4;
+
145 
+
146 
+
149  typedef mat<2, 2, int, lowp> lowp_imat2x2;
+
150 
+
153  typedef mat<2, 3, int, lowp> lowp_imat2x3;
+
154 
+
157  typedef mat<2, 4, int, lowp> lowp_imat2x4;
+
158 
+
161  typedef mat<3, 2, int, lowp> lowp_imat3x2;
+
162 
+
165  typedef mat<3, 3, int, lowp> lowp_imat3x3;
+
166 
+
169  typedef mat<3, 4, int, lowp> lowp_imat3x4;
+
170 
+
173  typedef mat<4, 2, int, lowp> lowp_imat4x2;
+
174 
+
177  typedef mat<4, 3, int, lowp> lowp_imat4x3;
+
178 
+
181  typedef mat<4, 4, int, lowp> lowp_imat4x4;
+
182 
+
183 
+
186  typedef mat<2, 2, uint, highp> highp_umat2;
+
187 
+
190  typedef mat<3, 3, uint, highp> highp_umat3;
+
191 
+
194  typedef mat<4, 4, uint, highp> highp_umat4;
+
195 
+
198  typedef mat<2, 2, uint, highp> highp_umat2x2;
+
199 
+
202  typedef mat<2, 3, uint, highp> highp_umat2x3;
+
203 
+
206  typedef mat<2, 4, uint, highp> highp_umat2x4;
+
207 
+
210  typedef mat<3, 2, uint, highp> highp_umat3x2;
+
211 
+
214  typedef mat<3, 3, uint, highp> highp_umat3x3;
+
215 
+
218  typedef mat<3, 4, uint, highp> highp_umat3x4;
+
219 
+
222  typedef mat<4, 2, uint, highp> highp_umat4x2;
+
223 
+
226  typedef mat<4, 3, uint, highp> highp_umat4x3;
+
227 
+
230  typedef mat<4, 4, uint, highp> highp_umat4x4;
+
231 
+
232 
+
235  typedef mat<2, 2, uint, mediump> mediump_umat2;
+
236 
+
239  typedef mat<3, 3, uint, mediump> mediump_umat3;
+
240 
+
243  typedef mat<4, 4, uint, mediump> mediump_umat4;
+
244 
+
245 
+
248  typedef mat<2, 2, uint, mediump> mediump_umat2x2;
+
249 
+
252  typedef mat<2, 3, uint, mediump> mediump_umat2x3;
+
253 
+
256  typedef mat<2, 4, uint, mediump> mediump_umat2x4;
+
257 
+
260  typedef mat<3, 2, uint, mediump> mediump_umat3x2;
+
261 
+
264  typedef mat<3, 3, uint, mediump> mediump_umat3x3;
+
265 
+
268  typedef mat<3, 4, uint, mediump> mediump_umat3x4;
+
269 
+
272  typedef mat<4, 2, uint, mediump> mediump_umat4x2;
+
273 
+
276  typedef mat<4, 3, uint, mediump> mediump_umat4x3;
+
277 
+
280  typedef mat<4, 4, uint, mediump> mediump_umat4x4;
+
281 
+
282 
+
285  typedef mat<2, 2, uint, lowp> lowp_umat2;
+
286 
+
289  typedef mat<3, 3, uint, lowp> lowp_umat3;
+
290 
+
293  typedef mat<4, 4, uint, lowp> lowp_umat4;
+
294 
+
295 
+
298  typedef mat<2, 2, uint, lowp> lowp_umat2x2;
+
299 
+
302  typedef mat<2, 3, uint, lowp> lowp_umat2x3;
+
303 
+
306  typedef mat<2, 4, uint, lowp> lowp_umat2x4;
+
307 
+
310  typedef mat<3, 2, uint, lowp> lowp_umat3x2;
+
311 
+
314  typedef mat<3, 3, uint, lowp> lowp_umat3x3;
+
315 
+
318  typedef mat<3, 4, uint, lowp> lowp_umat3x4;
+
319 
+
322  typedef mat<4, 2, uint, lowp> lowp_umat4x2;
+
323 
+
326  typedef mat<4, 3, uint, lowp> lowp_umat4x3;
+
327 
+
330  typedef mat<4, 4, uint, lowp> lowp_umat4x4;
+
331 
+
332 
+
333 
+
336  typedef mat<2, 2, int, defaultp> imat2;
+
337 
+
340  typedef mat<3, 3, int, defaultp> imat3;
+
341 
+
344  typedef mat<4, 4, int, defaultp> imat4;
+
345 
+
348  typedef mat<2, 2, int, defaultp> imat2x2;
+
349 
+
352  typedef mat<2, 3, int, defaultp> imat2x3;
+
353 
+
356  typedef mat<2, 4, int, defaultp> imat2x4;
+
357 
+
360  typedef mat<3, 2, int, defaultp> imat3x2;
+
361 
+
364  typedef mat<3, 3, int, defaultp> imat3x3;
+
365 
+
368  typedef mat<3, 4, int, defaultp> imat3x4;
+
369 
+
372  typedef mat<4, 2, int, defaultp> imat4x2;
+
373 
+
376  typedef mat<4, 3, int, defaultp> imat4x3;
+
377 
+
380  typedef mat<4, 4, int, defaultp> imat4x4;
+
381 
+
382 
+
383 
+
386  typedef mat<2, 2, uint, defaultp> umat2;
+
387 
+
390  typedef mat<3, 3, uint, defaultp> umat3;
+
391 
+
394  typedef mat<4, 4, uint, defaultp> umat4;
+
395 
+
398  typedef mat<2, 2, uint, defaultp> umat2x2;
+
399 
+
402  typedef mat<2, 3, uint, defaultp> umat2x3;
+
403 
+
406  typedef mat<2, 4, uint, defaultp> umat2x4;
+
407 
+
410  typedef mat<3, 2, uint, defaultp> umat3x2;
+
411 
+
414  typedef mat<3, 3, uint, defaultp> umat3x3;
+
415 
+
418  typedef mat<3, 4, uint, defaultp> umat3x4;
+
419 
+
422  typedef mat<4, 2, uint, defaultp> umat4x2;
+
423 
+
426  typedef mat<4, 3, uint, defaultp> umat4x3;
+
427 
+
430  typedef mat<4, 4, uint, defaultp> umat4x4;
+
431 
+
433 }//namespace glm
+
+
mat< 3, 4, uint, highp > highp_umat3x4
High-qualifier unsigned integer 3x4 matrix.
Definition: fwd.hpp:1026
+
mat< 3, 2, int, highp > highp_imat3x2
High-qualifier signed integer 3x2 matrix.
Definition: fwd.hpp:817
+
mat< 3, 4, int, highp > highp_imat3x4
High-qualifier signed integer 3x4 matrix.
Definition: fwd.hpp:819
+
mat< 3, 2, int, defaultp > imat3x2
Signed integer 3x2 matrix.
+
mat< 3, 3, int, defaultp > imat3
Signed integer 3x3 matrix.
+
mat< 3, 4, int, lowp > lowp_imat3x4
Low-qualifier signed integer 3x4 matrix.
Definition: fwd.hpp:799
+
mat< 4, 3, int, lowp > lowp_imat4x3
Low-qualifier signed integer 4x3 matrix.
Definition: fwd.hpp:801
+
mat< 2, 4, int, defaultp > imat2x4
Signed integer 2x4 matrix.
+
mat< 4, 4, uint, highp > highp_umat4
High-qualifier unsigned integer 4x4 matrix.
+
mat< 2, 3, int, highp > highp_imat2x3
High-qualifier signed integer 2x3 matrix.
Definition: fwd.hpp:815
+
mat< 4, 4, int, defaultp > imat4
Signed integer 4x4 matrix.
+
mat< 4, 3, int, mediump > mediump_imat4x3
Medium-qualifier signed integer 4x3 matrix.
Definition: fwd.hpp:811
+
mat< 4, 4, uint, lowp > lowp_umat4x4
Low-qualifier unsigned integer 4x4 matrix.
Definition: fwd.hpp:1009
+
mat< 2, 2, uint, defaultp > umat2
Unsigned integer 2x2 matrix.
+
mat< 3, 4, uint, mediump > mediump_umat3x4
Medium-qualifier unsigned integer 3x4 matrix.
Definition: fwd.hpp:1016
+
mat< 4, 3, int, highp > highp_imat4x3
High-qualifier signed integer 4x3 matrix.
Definition: fwd.hpp:821
+
mat< 4, 4, uint, defaultp > umat4
Unsigned integer 4x4 matrix.
+
mat< 2, 2, uint, highp > highp_umat2
High-qualifier unsigned integer 2x2 matrix.
+
mat< 2, 2, uint, mediump > mediump_umat2
Medium-qualifier unsigned integer 2x2 matrix.
+
mat< 4, 4, int, defaultp > imat4x4
Signed integer 4x4 matrix.
+
mat< 2, 2, int, defaultp > imat2x2
Signed integer 2x2 matrix.
+
mat< 4, 3, int, defaultp > imat4x3
Signed integer 4x3 matrix.
+
mat< 4, 4, int, lowp > lowp_imat4x4
Low-qualifier signed integer 4x4 matrix.
Definition: fwd.hpp:802
+
mat< 3, 2, uint, defaultp > umat3x2
Unsigned integer 3x2 matrix.
+
mat< 3, 3, uint, mediump > mediump_umat3x3
Medium-qualifier unsigned integer 3x3 matrix.
Definition: fwd.hpp:1015
+
mat< 2, 4, uint, lowp > lowp_umat2x4
Low-qualifier unsigned integer 2x4 matrix.
Definition: fwd.hpp:1003
+
mat< 4, 2, uint, mediump > mediump_umat4x2
Medium-qualifier unsigned integer 4x2 matrix.
Definition: fwd.hpp:1017
+
mat< 4, 2, int, mediump > mediump_imat4x2
Medium-qualifier signed integer 4x2 matrix.
Definition: fwd.hpp:810
+
mat< 4, 4, uint, lowp > lowp_umat4
Low-qualifier unsigned integer 4x4 matrix.
+
mat< 2, 2, int, mediump > mediump_imat2
Medium-qualifier signed integer 2x2 matrix.
+
mat< 3, 4, uint, defaultp > umat3x4
Signed integer 3x4 matrix.
+
mat< 2, 4, uint, defaultp > umat2x4
Unsigned integer 2x4 matrix.
+
mat< 3, 4, int, defaultp > imat3x4
Signed integer 3x4 matrix.
+
mat< 4, 4, uint, mediump > mediump_umat4x4
Medium-qualifier unsigned integer 4x4 matrix.
Definition: fwd.hpp:1019
+
mat< 4, 4, uint, highp > highp_umat4x4
High-qualifier unsigned integer 4x4 matrix.
Definition: fwd.hpp:1029
+
mat< 3, 4, int, mediump > mediump_imat3x4
Medium-qualifier signed integer 3x4 matrix.
Definition: fwd.hpp:809
+
mat< 3, 2, uint, lowp > lowp_umat3x2
Low-qualifier unsigned integer 3x2 matrix.
Definition: fwd.hpp:1004
+
mat< 2, 2, int, highp > highp_imat2x2
High-qualifier signed integer 2x2 matrix.
Definition: fwd.hpp:814
+
mat< 3, 3, int, lowp > lowp_imat3
Low-qualifier signed integer 3x3 matrix.
+
mat< 3, 3, uint, mediump > mediump_umat3
Medium-qualifier unsigned integer 3x3 matrix.
+
mat< 4, 2, uint, lowp > lowp_umat4x2
Low-qualifier unsigned integer 4x2 matrix.
Definition: fwd.hpp:1007
+
mat< 3, 4, uint, lowp > lowp_umat3x4
Low-qualifier unsigned integer 3x4 matrix.
Definition: fwd.hpp:1006
+
mat< 2, 2, int, lowp > lowp_imat2
Low-qualifier signed integer 2x2 matrix.
+
mat< 2, 3, uint, defaultp > umat2x3
Unsigned integer 2x3 matrix.
+
mat< 2, 2, int, mediump > mediump_imat2x2
Medium-qualifier signed integer 2x2 matrix.
Definition: fwd.hpp:804
+
mat< 2, 2, uint, highp > highp_umat2x2
High-qualifier unsigned integer 2x2 matrix.
Definition: fwd.hpp:1021
+
mat< 3, 3, uint, highp > highp_umat3
High-qualifier unsigned integer 3x3 matrix.
+
mat< 2, 4, int, mediump > mediump_imat2x4
Medium-qualifier signed integer 2x4 matrix.
Definition: fwd.hpp:806
+
mat< 2, 4, uint, mediump > mediump_umat2x4
Medium-qualifier unsigned integer 2x4 matrix.
Definition: fwd.hpp:1013
+
mat< 4, 2, uint, highp > highp_umat4x2
High-qualifier unsigned integer 4x2 matrix.
Definition: fwd.hpp:1027
+
mat< 2, 2, uint, lowp > lowp_umat2
Low-qualifier unsigned integer 2x2 matrix.
+
mat< 4, 2, uint, defaultp > umat4x2
Unsigned integer 4x2 matrix.
+
mat< 2, 2, int, highp > highp_imat2
High-qualifier signed integer 2x2 matrix.
+
mat< 3, 3, uint, lowp > lowp_umat3x3
Low-qualifier unsigned integer 3x3 matrix.
Definition: fwd.hpp:1005
+
mat< 3, 2, int, lowp > lowp_imat3x2
Low-qualifier signed integer 3x2 matrix.
Definition: fwd.hpp:797
+
mat< 2, 3, uint, lowp > lowp_umat2x3
Low-qualifier unsigned integer 2x3 matrix.
Definition: fwd.hpp:1002
+
mat< 3, 3, int, mediump > mediump_imat3
Medium-qualifier signed integer 3x3 matrix.
+
mat< 2, 3, uint, highp > highp_umat2x3
High-qualifier unsigned integer 2x3 matrix.
Definition: fwd.hpp:1022
+
mat< 2, 2, uint, lowp > lowp_umat2x2
Low-qualifier unsigned integer 2x2 matrix.
Definition: fwd.hpp:1001
+
mat< 3, 2, uint, mediump > mediump_umat3x2
Medium-qualifier unsigned integer 3x2 matrix.
Definition: fwd.hpp:1014
+
mat< 4, 3, uint, lowp > lowp_umat4x3
Low-qualifier unsigned integer 4x3 matrix.
Definition: fwd.hpp:1008
+
mat< 2, 3, uint, mediump > mediump_umat2x3
Medium-qualifier unsigned integer 2x3 matrix.
Definition: fwd.hpp:1012
+
mat< 4, 4, int, highp > highp_imat4
High-qualifier signed integer 4x4 matrix.
+
mat< 4, 2, int, highp > highp_imat4x2
High-qualifier signed integer 4x2 matrix.
Definition: fwd.hpp:820
+
mat< 2, 2, uint, defaultp > umat2x2
Unsigned integer 2x2 matrix.
+
mat< 2, 2, int, defaultp > imat2
Signed integer 2x2 matrix.
+
mat< 2, 3, int, defaultp > imat2x3
Signed integer 2x3 matrix.
+
mat< 4, 2, int, defaultp > imat4x2
Signed integer 4x2 matrix.
+
mat< 3, 2, uint, highp > highp_umat3x2
High-qualifier unsigned integer 3x2 matrix.
Definition: fwd.hpp:1024
+
mat< 4, 2, int, lowp > lowp_imat4x2
Low-qualifier signed integer 4x2 matrix.
Definition: fwd.hpp:800
+
mat< 4, 4, int, lowp > lowp_imat4
Low-qualifier signed integer 4x4 matrix.
+
mat< 4, 4, int, highp > highp_imat4x4
High-qualifier signed integer 4x4 matrix.
Definition: fwd.hpp:822
+
mat< 2, 3, int, lowp > lowp_imat2x3
Low-qualifier signed integer 2x3 matrix.
Definition: fwd.hpp:795
+
mat< 3, 3, int, lowp > lowp_imat3x3
Low-qualifier signed integer 3x3 matrix.
Definition: fwd.hpp:798
+
mat< 3, 3, uint, defaultp > umat3
Unsigned integer 3x3 matrix.
+
mat< 3, 3, uint, lowp > lowp_umat3
Low-qualifier unsigned integer 3x3 matrix.
+
mat< 3, 3, uint, highp > highp_umat3x3
High-qualifier unsigned integer 3x3 matrix.
Definition: fwd.hpp:1025
+
mat< 3, 2, int, mediump > mediump_imat3x2
Medium-qualifier signed integer 3x2 matrix.
Definition: fwd.hpp:807
+
mat< 4, 4, uint, defaultp > umat4x4
Unsigned integer 4x4 matrix.
+
mat< 2, 3, int, mediump > mediump_imat2x3
Medium-qualifier signed integer 2x3 matrix.
Definition: fwd.hpp:805
+
mat< 2, 4, int, lowp > lowp_imat2x4
Low-qualifier signed integer 2x4 matrix.
Definition: fwd.hpp:796
+
mat< 2, 2, int, lowp > lowp_imat2x2
Low-qualifier signed integer 2x2 matrix.
Definition: fwd.hpp:794
+
mat< 3, 3, uint, defaultp > umat3x3
Unsigned integer 3x3 matrix.
+
mat< 2, 2, uint, mediump > mediump_umat2x2
Medium-qualifier unsigned integer 2x2 matrix.
Definition: fwd.hpp:1011
+
mat< 4, 4, int, mediump > mediump_imat4x4
Medium-qualifier signed integer 4x4 matrix.
Definition: fwd.hpp:812
+
mat< 2, 4, int, highp > highp_imat2x4
High-qualifier signed integer 2x4 matrix.
Definition: fwd.hpp:816
+
mat< 3, 3, int, highp > highp_imat3
High-qualifier signed integer 3x3 matrix.
+
mat< 2, 4, uint, highp > highp_umat2x4
High-qualifier unsigned integer 2x4 matrix.
Definition: fwd.hpp:1023
+
mat< 4, 4, int, mediump > mediump_imat4
Medium-qualifier signed integer 4x4 matrix.
+
mat< 3, 3, int, mediump > mediump_imat3x3
Medium-qualifier signed integer 3x3 matrix.
Definition: fwd.hpp:808
+
mat< 4, 3, uint, highp > highp_umat4x3
High-qualifier unsigned integer 4x3 matrix.
Definition: fwd.hpp:1028
+
mat< 3, 3, int, highp > highp_imat3x3
High-qualifier signed integer 3x3 matrix.
Definition: fwd.hpp:818
+
mat< 4, 3, uint, mediump > mediump_umat4x3
Medium-qualifier unsigned integer 4x3 matrix.
Definition: fwd.hpp:1018
+
mat< 4, 3, uint, defaultp > umat4x3
Unsigned integer 4x3 matrix.
+
mat< 3, 3, int, defaultp > imat3x3
Signed integer 3x3 matrix.
+
mat< 4, 4, uint, mediump > mediump_umat4
Medium-qualifier unsigned integer 4x4 matrix.
+ + + + diff --git a/include/glm/doc/api/a01702.html b/include/glm/doc/api/a01702.html new file mode 100644 index 0000000..4b1f4fd --- /dev/null +++ b/include/glm/doc/api/a01702.html @@ -0,0 +1,129 @@ + + + + + + + +1.0.2 API documentation: matrix_transform.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
ext/matrix_transform.hpp File Reference
+
+
+ +

GLM_EXT_matrix_transform +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

+template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR genType identity ()
 Builds an identity matrix.
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > lookAt (vec< 3, T, Q > const &eye, vec< 3, T, Q > const &center, vec< 3, T, Q > const &up)
 Build a look at view matrix based on the default handedness. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > lookAtLH (vec< 3, T, Q > const &eye, vec< 3, T, Q > const &center, vec< 3, T, Q > const &up)
 Build a left handed look at view matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > lookAtRH (vec< 3, T, Q > const &eye, vec< 3, T, Q > const &center, vec< 3, T, Q > const &up)
 Build a right handed look at view matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > rotate (mat< 4, 4, T, Q > const &m, T angle, vec< 3, T, Q > const &axis)
 Builds a rotation 4 * 4 matrix created from an axis vector and an angle. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > scale (mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)
 Builds a scale 4 * 4 matrix created from 3 scalars. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 4, 4, T, Q > shear (mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &p, vec< 2, T, Q > const &l_x, vec< 2, T, Q > const &l_y, vec< 2, T, Q > const &l_z)
 Builds a scale 4 * 4 matrix created from point referent 3 shearers. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR mat< 4, 4, T, Q > translate (mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)
 Builds a translation 4 * 4 matrix created from a vector of 3 components. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a01702_source.html b/include/glm/doc/api/a01702_source.html new file mode 100644 index 0000000..09a98e9 --- /dev/null +++ b/include/glm/doc/api/a01702_source.html @@ -0,0 +1,141 @@ + + + + + + + +1.0.2 API documentation: matrix_transform.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ext/matrix_transform.hpp
+
+
+Go to the documentation of this file.
1 
+
20 #pragma once
+
21 
+
22 // Dependencies
+
23 #include "../gtc/constants.hpp"
+
24 #include "../geometric.hpp"
+
25 #include "../trigonometric.hpp"
+
26 #include "../matrix.hpp"
+
27 
+
28 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
29 # pragma message("GLM: GLM_EXT_matrix_transform extension included")
+
30 #endif
+
31 
+
32 namespace glm
+
33 {
+
36 
+
38  template<typename genType>
+
39  GLM_FUNC_DECL GLM_CONSTEXPR genType identity();
+
40 
+
63  template<typename T, qualifier Q>
+
64  GLM_FUNC_DECL GLM_CONSTEXPR mat<4, 4, T, Q> translate(
+
65  mat<4, 4, T, Q> const& m, vec<3, T, Q> const& v);
+
66 
+
79  template<typename T, qualifier Q>
+
80  GLM_FUNC_DECL mat<4, 4, T, Q> rotate(
+
81  mat<4, 4, T, Q> const& m, T angle, vec<3, T, Q> const& axis);
+
82 
+
94  template<typename T, qualifier Q>
+
95  GLM_FUNC_DECL mat<4, 4, T, Q> scale(
+
96  mat<4, 4, T, Q> const& m, vec<3, T, Q> const& v);
+
97 
+
121  template <typename T, qualifier Q>
+
122  GLM_FUNC_QUALIFIER mat<4, 4, T, Q> shear(
+
123  mat<4, 4, T, Q> const &m, vec<3, T, Q> const& p, vec<2, T, Q> const &l_x, vec<2, T, Q> const &l_y, vec<2, T, Q> const &l_z);
+
124 
+
135  template<typename T, qualifier Q>
+
136  GLM_FUNC_DECL mat<4, 4, T, Q> lookAtRH(
+
137  vec<3, T, Q> const& eye, vec<3, T, Q> const& center, vec<3, T, Q> const& up);
+
138 
+
149  template<typename T, qualifier Q>
+
150  GLM_FUNC_DECL mat<4, 4, T, Q> lookAtLH(
+
151  vec<3, T, Q> const& eye, vec<3, T, Q> const& center, vec<3, T, Q> const& up);
+
152 
+
164  template<typename T, qualifier Q>
+
165  GLM_FUNC_DECL mat<4, 4, T, Q> lookAt(
+
166  vec<3, T, Q> const& eye, vec<3, T, Q> const& center, vec<3, T, Q> const& up);
+
167 
+
169 }//namespace glm
+
170 
+
171 #include "matrix_transform.inl"
+
+
GLM_FUNC_DECL mat< 4, 4, T, Q > lookAt(vec< 3, T, Q > const &eye, vec< 3, T, Q > const &center, vec< 3, T, Q > const &up)
Build a look at view matrix based on the default handedness.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > rotate(mat< 4, 4, T, Q > const &m, T angle, vec< 3, T, Q > const &axis)
Builds a rotation 4 * 4 matrix created from an axis vector and an angle.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > scale(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)
Builds a scale 4 * 4 matrix created from 3 scalars.
+
GLM_FUNC_QUALIFIER mat< 4, 4, T, Q > shear(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &p, vec< 2, T, Q > const &l_x, vec< 2, T, Q > const &l_y, vec< 2, T, Q > const &l_z)
Builds a scale 4 * 4 matrix created from point referent 3 shearers.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > lookAtLH(vec< 3, T, Q > const &eye, vec< 3, T, Q > const &center, vec< 3, T, Q > const &up)
Build a left handed look at view matrix.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType identity()
Builds an identity matrix.
+
GLM_FUNC_DECL T angle(qua< T, Q > const &x)
Returns the quaternion rotation angle.
+
GLM_FUNC_DECL GLM_CONSTEXPR mat< 4, 4, T, Q > translate(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)
Builds a translation 4 * 4 matrix created from a vector of 3 components.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > lookAtRH(vec< 3, T, Q > const &eye, vec< 3, T, Q > const &center, vec< 3, T, Q > const &up)
Build a right handed look at view matrix.
+
GLM_FUNC_DECL vec< 3, T, Q > axis(qua< T, Q > const &x)
Returns the q rotation axis.
+ + + + diff --git a/include/glm/doc/api/a01705.html b/include/glm/doc/api/a01705.html new file mode 100644 index 0000000..302bfc7 --- /dev/null +++ b/include/glm/doc/api/a01705.html @@ -0,0 +1,95 @@ + + + + + + + +1.0.2 API documentation: matrix_transform.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtc/matrix_transform.hpp File Reference
+
+ + + + + diff --git a/include/glm/doc/api/a01705_source.html b/include/glm/doc/api/a01705_source.html new file mode 100644 index 0000000..b523fd5 --- /dev/null +++ b/include/glm/doc/api/a01705_source.html @@ -0,0 +1,98 @@ + + + + + + + +1.0.2 API documentation: matrix_transform.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtc/matrix_transform.hpp
+
+
+Go to the documentation of this file.
1 
+
21 #pragma once
+
22 
+
23 // Dependencies
+
24 #include "../mat4x4.hpp"
+
25 #include "../vec2.hpp"
+
26 #include "../vec3.hpp"
+
27 #include "../vec4.hpp"
+
28 #include "../ext/matrix_projection.hpp"
+
29 #include "../ext/matrix_clip_space.hpp"
+
30 #include "../ext/matrix_transform.hpp"
+
31 
+
32 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
33 # pragma message("GLM: GLM_GTC_matrix_transform extension included")
+
34 #endif
+
35 
+
36 #include "matrix_transform.inl"
+
+ + + + diff --git a/include/glm/doc/api/a01708.html b/include/glm/doc/api/a01708.html new file mode 100644 index 0000000..c20d760 --- /dev/null +++ b/include/glm/doc/api/a01708.html @@ -0,0 +1,315 @@ + + + + + + + +1.0.2 API documentation: packing.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtc/packing.hpp File Reference
+
+
+ +

GLM_GTC_packing +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

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 signless floating-point values. More...
 
GLM_FUNC_DECL uint32 packF3x9_E1x5 (vec3 const &v)
 First, converts the first two components of the normalized floating-point value v into 11-bit signless floating-point values. More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, uint16, Q > packHalf (vec< L, float, Q > const &v)
 Returns an unsigned integer vector obtained by converting the components of a floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification. More...
 
GLM_FUNC_DECL uint16 packHalf1x16 (float v)
 Returns an unsigned integer obtained by converting the components of a floating-point scalar to the 16-bit floating-point representation found in the OpenGL Specification, and then packing this 16-bit value into a 16-bit unsigned integer. More...
 
GLM_FUNC_DECL uint64 packHalf4x16 (vec4 const &v)
 Returns an unsigned integer obtained by converting the components of a four-component floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification, and then packing these four 16-bit values into a 64-bit unsigned integer. More...
 
GLM_FUNC_DECL uint32 packI3x10_1x2 (ivec4 const &v)
 Returns an unsigned integer obtained by converting the components of a four-component signed integer vector to the 10-10-10-2-bit signed integer representation found in the OpenGL Specification, and then packing these four values into a 32-bit unsigned integer. More...
 
GLM_FUNC_DECL int packInt2x16 (i16vec2 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
GLM_FUNC_DECL int64 packInt2x32 (i32vec2 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
GLM_FUNC_DECL int16 packInt2x8 (i8vec2 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
GLM_FUNC_DECL int64 packInt4x16 (i16vec4 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
GLM_FUNC_DECL int32 packInt4x8 (i8vec4 const &v)
 Convert each component from an integer vector into a packed integer. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > packRGBM (vec< 3, T, Q > const &rgb)
 Returns an unsigned integer vector obtained by converting the components of a floating-point vector to the 16-bit floating-point representation found in the OpenGL Specification. More...
 
template<typename intType , length_t L, typename floatType , qualifier Q>
GLM_FUNC_DECL vec< L, intType, Q > packSnorm (vec< L, floatType, Q > const &v)
 Convert each component of the normalized floating-point vector into signed integer values. More...
 
GLM_FUNC_DECL uint16 packSnorm1x16 (float v)
 First, converts the normalized floating-point value v into 16-bit integer value. More...
 
GLM_FUNC_DECL uint8 packSnorm1x8 (float s)
 First, converts the normalized floating-point value v into 8-bit integer value. More...
 
GLM_FUNC_DECL uint16 packSnorm2x8 (vec2 const &v)
 First, converts each component of the normalized floating-point value v into 8-bit integer values. More...
 
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 signed integer values. More...
 
GLM_FUNC_DECL uint64 packSnorm4x16 (vec4 const &v)
 First, converts each component of the normalized floating-point value v into 16-bit integer values. More...
 
GLM_FUNC_DECL uint32 packU3x10_1x2 (uvec4 const &v)
 Returns an unsigned integer obtained by converting the components of a four-component unsigned integer vector to the 10-10-10-2-bit unsigned integer representation found in the OpenGL Specification, and then packing these four values into a 32-bit unsigned integer. More...
 
GLM_FUNC_DECL uint packUint2x16 (u16vec2 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
GLM_FUNC_DECL uint64 packUint2x32 (u32vec2 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
GLM_FUNC_DECL uint16 packUint2x8 (u8vec2 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
GLM_FUNC_DECL uint64 packUint4x16 (u16vec4 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
GLM_FUNC_DECL uint32 packUint4x8 (u8vec4 const &v)
 Convert each component from an integer vector into a packed unsigned integer. More...
 
template<typename uintType , length_t L, typename floatType , qualifier Q>
GLM_FUNC_DECL vec< L, uintType, Q > packUnorm (vec< L, floatType, Q > const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint16 packUnorm1x16 (float v)
 First, converts the normalized floating-point value v into a 16-bit integer value. More...
 
GLM_FUNC_DECL uint16 packUnorm1x5_1x6_1x5 (vec3 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint8 packUnorm1x8 (float v)
 First, converts the normalized floating-point value v into a 8-bit integer value. More...
 
GLM_FUNC_DECL uint8 packUnorm2x3_1x2 (vec3 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint8 packUnorm2x4 (vec2 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint16 packUnorm2x8 (vec2 const &v)
 First, converts each component of the normalized floating-point value v into 8-bit integer values. More...
 
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 unsigned integer values. More...
 
GLM_FUNC_DECL uint16 packUnorm3x5_1x1 (vec4 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
GLM_FUNC_DECL uint64 packUnorm4x16 (vec4 const &v)
 First, converts each component of the normalized floating-point value v into 16-bit integer values. More...
 
GLM_FUNC_DECL uint16 packUnorm4x4 (vec4 const &v)
 Convert each component of the normalized floating-point vector into unsigned integer values. More...
 
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 one 10-bit signless floating-point value . More...
 
GLM_FUNC_DECL vec3 unpackF3x9_E1x5 (uint32 p)
 First, unpacks a single 32-bit unsigned integer p into two 11-bit signless floating-point values and one 10-bit signless floating-point value . More...
 
template<length_t L, qualifier Q>
GLM_FUNC_DECL vec< L, float, Q > unpackHalf (vec< L, uint16, Q > const &p)
 Returns a floating-point vector with components obtained by reinterpreting an integer vector as 16-bit floating-point numbers and converting them to 32-bit floating-point values. More...
 
GLM_FUNC_DECL float unpackHalf1x16 (uint16 v)
 Returns a floating-point scalar with components obtained by unpacking a 16-bit unsigned integer into a 16-bit value, interpreted as a 16-bit floating-point number according to the OpenGL Specification, and converting it to 32-bit floating-point values. More...
 
GLM_FUNC_DECL vec4 unpackHalf4x16 (uint64 p)
 Returns a four-component floating-point vector with components obtained by unpacking a 64-bit unsigned integer into four 16-bit values, interpreting those values as 16-bit floating-point numbers according to the OpenGL Specification, and converting them to 32-bit floating-point values. More...
 
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. More...
 
GLM_FUNC_DECL i16vec2 unpackInt2x16 (int p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL i32vec2 unpackInt2x32 (int64 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL i8vec2 unpackInt2x8 (int16 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL i16vec4 unpackInt4x16 (int64 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL i8vec4 unpackInt4x8 (int32 p)
 Convert a packed integer into an integer vector. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > unpackRGBM (vec< 4, T, Q > const &rgbm)
 Returns a floating-point vector with components obtained by reinterpreting an integer vector as 16-bit floating-point numbers and converting them to 32-bit floating-point values. More...
 
template<typename floatType , length_t L, typename intType , qualifier Q>
GLM_FUNC_DECL vec< L, floatType, Q > unpackSnorm (vec< L, intType, Q > const &v)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL float unpackSnorm1x16 (uint16 p)
 First, unpacks a single 16-bit unsigned integer p into a single 16-bit signed integers. More...
 
GLM_FUNC_DECL float unpackSnorm1x8 (uint8 p)
 First, unpacks a single 8-bit unsigned integer p into a single 8-bit signed integers. More...
 
GLM_FUNC_DECL vec2 unpackSnorm2x8 (uint16 p)
 First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackSnorm3x10_1x2 (uint32 p)
 First, unpacks a single 32-bit unsigned integer p into four 16-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackSnorm4x16 (uint64 p)
 First, unpacks a single 64-bit unsigned integer p into four 16-bit signed integers. More...
 
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. More...
 
GLM_FUNC_DECL u16vec2 unpackUint2x16 (uint p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL u32vec2 unpackUint2x32 (uint64 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL u8vec2 unpackUint2x8 (uint16 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL u16vec4 unpackUint4x16 (uint64 p)
 Convert a packed integer into an integer vector. More...
 
GLM_FUNC_DECL u8vec4 unpackUint4x8 (uint32 p)
 Convert a packed integer into an integer vector. More...
 
template<typename floatType , length_t L, typename uintType , qualifier Q>
GLM_FUNC_DECL vec< L, floatType, Q > unpackUnorm (vec< L, uintType, Q > const &v)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL float unpackUnorm1x16 (uint16 p)
 First, unpacks a single 16-bit unsigned integer p into a of 16-bit unsigned integers. More...
 
GLM_FUNC_DECL vec3 unpackUnorm1x5_1x6_1x5 (uint16 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL float unpackUnorm1x8 (uint8 p)
 Convert a single 8-bit integer to a normalized floating-point value. More...
 
GLM_FUNC_DECL vec3 unpackUnorm2x3_1x2 (uint8 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL vec2 unpackUnorm2x4 (uint8 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL vec2 unpackUnorm2x8 (uint16 p)
 First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit unsigned integers. More...
 
GLM_FUNC_DECL vec4 unpackUnorm3x10_1x2 (uint32 p)
 First, unpacks a single 32-bit unsigned integer p into four 16-bit signed integers. More...
 
GLM_FUNC_DECL vec4 unpackUnorm3x5_1x1 (uint16 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
GLM_FUNC_DECL vec4 unpackUnorm4x16 (uint64 p)
 First, unpacks a single 64-bit unsigned integer p into four 16-bit unsigned integers. More...
 
GLM_FUNC_DECL vec4 unpackUnorm4x4 (uint16 p)
 Convert a packed integer to a normalized floating-point vector. More...
 
+

Detailed Description

+

GLM_GTC_packing

+
See also
Core features (dependence)
+ +

Definition in file gtc/packing.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01708_source.html b/include/glm/doc/api/a01708_source.html new file mode 100644 index 0000000..ace8479 --- /dev/null +++ b/include/glm/doc/api/a01708_source.html @@ -0,0 +1,342 @@ + + + + + + + +1.0.2 API documentation: packing.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtc/packing.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "type_precision.hpp"
+
18 #include "../ext/vector_packing.hpp"
+
19 
+
20 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTC_packing extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
40  GLM_FUNC_DECL uint8 packUnorm1x8(float v);
+
41 
+
52  GLM_FUNC_DECL float unpackUnorm1x8(uint8 p);
+
53 
+
68  GLM_FUNC_DECL uint16 packUnorm2x8(vec2 const& v);
+
69 
+
84  GLM_FUNC_DECL vec2 unpackUnorm2x8(uint16 p);
+
85 
+
97  GLM_FUNC_DECL uint8 packSnorm1x8(float s);
+
98 
+
110  GLM_FUNC_DECL float unpackSnorm1x8(uint8 p);
+
111 
+
126  GLM_FUNC_DECL uint16 packSnorm2x8(vec2 const& v);
+
127 
+
142  GLM_FUNC_DECL vec2 unpackSnorm2x8(uint16 p);
+
143 
+
155  GLM_FUNC_DECL uint16 packUnorm1x16(float v);
+
156 
+
168  GLM_FUNC_DECL float unpackUnorm1x16(uint16 p);
+
169 
+
184  GLM_FUNC_DECL uint64 packUnorm4x16(vec4 const& v);
+
185 
+
200  GLM_FUNC_DECL vec4 unpackUnorm4x16(uint64 p);
+
201 
+
213  GLM_FUNC_DECL uint16 packSnorm1x16(float v);
+
214 
+
226  GLM_FUNC_DECL float unpackSnorm1x16(uint16 p);
+
227 
+
242  GLM_FUNC_DECL uint64 packSnorm4x16(vec4 const& v);
+
243 
+
258  GLM_FUNC_DECL vec4 unpackSnorm4x16(uint64 p);
+
259 
+
269  GLM_FUNC_DECL uint16 packHalf1x16(float v);
+
270 
+
280  GLM_FUNC_DECL float unpackHalf1x16(uint16 v);
+
281 
+
293  GLM_FUNC_DECL uint64 packHalf4x16(vec4 const& v);
+
294 
+
306  GLM_FUNC_DECL vec4 unpackHalf4x16(uint64 p);
+
307 
+
319  GLM_FUNC_DECL uint32 packI3x10_1x2(ivec4 const& v);
+
320 
+
330  GLM_FUNC_DECL ivec4 unpackI3x10_1x2(uint32 p);
+
331 
+
343  GLM_FUNC_DECL uint32 packU3x10_1x2(uvec4 const& v);
+
344 
+
354  GLM_FUNC_DECL uvec4 unpackU3x10_1x2(uint32 p);
+
355 
+
372  GLM_FUNC_DECL uint32 packSnorm3x10_1x2(vec4 const& v);
+
373 
+
389  GLM_FUNC_DECL vec4 unpackSnorm3x10_1x2(uint32 p);
+
390 
+
407  GLM_FUNC_DECL uint32 packUnorm3x10_1x2(vec4 const& v);
+
408 
+
424  GLM_FUNC_DECL vec4 unpackUnorm3x10_1x2(uint32 p);
+
425 
+
435  GLM_FUNC_DECL uint32 packF2x11_1x10(vec3 const& v);
+
436 
+
445  GLM_FUNC_DECL vec3 unpackF2x11_1x10(uint32 p);
+
446 
+
447 
+
459  GLM_FUNC_DECL uint32 packF3x9_E1x5(vec3 const& v);
+
460 
+
471  GLM_FUNC_DECL vec3 unpackF3x9_E1x5(uint32 p);
+
472 
+
481  template<length_t L, typename T, qualifier Q>
+
482  GLM_FUNC_DECL vec<4, T, Q> packRGBM(vec<3, T, Q> const& rgb);
+
483 
+
491  template<length_t L, typename T, qualifier Q>
+
492  GLM_FUNC_DECL vec<3, T, Q> unpackRGBM(vec<4, T, Q> const& rgbm);
+
493 
+
502  template<length_t L, qualifier Q>
+
503  GLM_FUNC_DECL vec<L, uint16, Q> packHalf(vec<L, float, Q> const& v);
+
504 
+
512  template<length_t L, qualifier Q>
+
513  GLM_FUNC_DECL vec<L, float, Q> unpackHalf(vec<L, uint16, Q> const& p);
+
514 
+
519  template<typename uintType, length_t L, typename floatType, qualifier Q>
+
520  GLM_FUNC_DECL vec<L, uintType, Q> packUnorm(vec<L, floatType, Q> const& v);
+
521 
+
526  template<typename floatType, length_t L, typename uintType, qualifier Q>
+
527  GLM_FUNC_DECL vec<L, floatType, Q> unpackUnorm(vec<L, uintType, Q> const& v);
+
528 
+
533  template<typename intType, length_t L, typename floatType, qualifier Q>
+
534  GLM_FUNC_DECL vec<L, intType, Q> packSnorm(vec<L, floatType, Q> const& v);
+
535 
+
540  template<typename floatType, length_t L, typename intType, qualifier Q>
+
541  GLM_FUNC_DECL vec<L, floatType, Q> unpackSnorm(vec<L, intType, Q> const& v);
+
542 
+
547  GLM_FUNC_DECL uint8 packUnorm2x4(vec2 const& v);
+
548 
+
553  GLM_FUNC_DECL vec2 unpackUnorm2x4(uint8 p);
+
554 
+
559  GLM_FUNC_DECL uint16 packUnorm4x4(vec4 const& v);
+
560 
+
565  GLM_FUNC_DECL vec4 unpackUnorm4x4(uint16 p);
+
566 
+
571  GLM_FUNC_DECL uint16 packUnorm1x5_1x6_1x5(vec3 const& v);
+
572 
+ +
578 
+
583  GLM_FUNC_DECL uint16 packUnorm3x5_1x1(vec4 const& v);
+
584 
+
589  GLM_FUNC_DECL vec4 unpackUnorm3x5_1x1(uint16 p);
+
590 
+
595  GLM_FUNC_DECL uint8 packUnorm2x3_1x2(vec3 const& v);
+
596 
+
601  GLM_FUNC_DECL vec3 unpackUnorm2x3_1x2(uint8 p);
+
602 
+
603 
+
604 
+
609  GLM_FUNC_DECL int16 packInt2x8(i8vec2 const& v);
+
610 
+
615  GLM_FUNC_DECL i8vec2 unpackInt2x8(int16 p);
+
616 
+
621  GLM_FUNC_DECL uint16 packUint2x8(u8vec2 const& v);
+
622 
+
627  GLM_FUNC_DECL u8vec2 unpackUint2x8(uint16 p);
+
628 
+
633  GLM_FUNC_DECL int32 packInt4x8(i8vec4 const& v);
+
634 
+
639  GLM_FUNC_DECL i8vec4 unpackInt4x8(int32 p);
+
640 
+
645  GLM_FUNC_DECL uint32 packUint4x8(u8vec4 const& v);
+
646 
+
651  GLM_FUNC_DECL u8vec4 unpackUint4x8(uint32 p);
+
652 
+
657  GLM_FUNC_DECL int packInt2x16(i16vec2 const& v);
+
658 
+
663  GLM_FUNC_DECL i16vec2 unpackInt2x16(int p);
+
664 
+
669  GLM_FUNC_DECL int64 packInt4x16(i16vec4 const& v);
+
670 
+
675  GLM_FUNC_DECL i16vec4 unpackInt4x16(int64 p);
+
676 
+
681  GLM_FUNC_DECL uint packUint2x16(u16vec2 const& v);
+
682 
+
687  GLM_FUNC_DECL u16vec2 unpackUint2x16(uint p);
+
688 
+
693  GLM_FUNC_DECL uint64 packUint4x16(u16vec4 const& v);
+
694 
+
699  GLM_FUNC_DECL u16vec4 unpackUint4x16(uint64 p);
+
700 
+
705  GLM_FUNC_DECL int64 packInt2x32(i32vec2 const& v);
+
706 
+
711  GLM_FUNC_DECL i32vec2 unpackInt2x32(int64 p);
+
712 
+
717  GLM_FUNC_DECL uint64 packUint2x32(u32vec2 const& v);
+
718 
+
723  GLM_FUNC_DECL u32vec2 unpackUint2x32(uint64 p);
+
724 
+
726 }// namespace glm
+
727 
+
728 #include "packing.inl"
+
+
vec< 2, int16, defaultp > i16vec2
16 bit signed integer vector of 2 components type.
+
GLM_FUNC_DECL i32vec2 unpackInt2x32(int64 p)
Convert a packed integer into an integer vector.
+
detail::uint32 uint32
32 bit unsigned integer type.
+
GLM_FUNC_DECL i8vec4 unpackInt4x8(int32 p)
Convert a packed integer into an integer vector.
+
GLM_FUNC_DECL vec< 4, T, Q > packRGBM(vec< 3, T, Q > const &rgb)
Returns an unsigned integer vector obtained by converting the components of a floating-point vector t...
+
GLM_FUNC_DECL uint16 packUnorm3x5_1x1(vec4 const &v)
Convert each component of the normalized floating-point vector into unsigned integer values.
+
GLM_FUNC_DECL u8vec2 unpackUint2x8(uint16 p)
Convert a packed integer into an integer vector.
+
GLM_FUNC_DECL uint32 packI3x10_1x2(ivec4 const &v)
Returns an unsigned integer obtained by converting the components of a four-component signed integer ...
+
vec< 4, int, defaultp > ivec4
4 components vector of signed integer numbers.
Definition: vector_int4.hpp:15
+
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 vec< L, floatType, Q > unpackSnorm(vec< L, intType, Q > const &v)
Convert a packed integer to a normalized floating-point vector.
+
vec< 2, uint16, defaultp > u16vec2
16 bit unsigned integer vector of 2 components type.
+
vec< 4, uint8, defaultp > u8vec4
8 bit unsigned integer vector of 4 components type.
+
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 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 i16vec2 unpackInt2x16(int p)
Convert a packed integer into an integer vector.
+
GLM_FUNC_DECL float unpackUnorm1x8(uint8 p)
Convert a single 8-bit integer to a normalized floating-point value.
+
GLM_FUNC_DECL vec< L, float, Q > unpackHalf(vec< L, uint16, Q > const &p)
Returns a floating-point vector with components obtained by reinterpreting an integer vector as 16-bi...
+
vec< 2, int32, defaultp > i32vec2
32 bit signed integer vector of 2 components type.
+
GLM_FUNC_DECL uint8 packUnorm1x8(float v)
First, converts the normalized floating-point value v into a 8-bit integer value.
+
GLM_FUNC_DECL vec4 unpackUnorm3x5_1x1(uint16 p)
Convert a packed integer to a normalized floating-point vector.
+
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 int64 packInt2x32(i32vec2 const &v)
Convert each component from an integer vector into a packed integer.
+
GLM_FUNC_DECL u16vec4 unpackUint4x16(uint64 p)
Convert a packed integer into an integer vector.
+
detail::int16 int16
16 bit signed integer type.
+
GLM_FUNC_DECL float unpackSnorm1x8(uint8 p)
First, unpacks a single 8-bit unsigned integer p into a single 8-bit signed integers.
+
detail::uint64 uint64
64 bit unsigned integer type.
+
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 unpackUnorm2x4(uint8 p)
Convert a packed integer to a normalized floating-point vector.
+
vec< 2, int8, defaultp > i8vec2
8 bit signed integer vector of 2 components type.
+
vec< 2, float, defaultp > vec2
2 components vector of single-precision floating-point numbers.
+
GLM_GTC_type_precision
+
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 uint8 packUnorm2x4(vec2 const &v)
Convert each component of the normalized floating-point vector into unsigned integer values.
+
vec< 4, unsigned int, defaultp > uvec4
4 components vector of unsigned integer numbers.
+
GLM_FUNC_DECL uint16 packUnorm1x5_1x6_1x5(vec3 const &v)
Convert each component of the normalized floating-point vector into unsigned integer values.
+
GLM_FUNC_DECL vec< L, uint16, Q > packHalf(vec< L, float, Q > const &v)
Returns an unsigned integer vector obtained by converting the components of a floating-point vector t...
+
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 int16 packInt2x8(i8vec2 const &v)
Convert each component from an integer vector into a packed integer.
+
GLM_FUNC_DECL vec4 unpackUnorm4x16(uint64 p)
First, unpacks a single 64-bit unsigned integer p into four 16-bit unsigned integers.
+
vec< 4, int16, defaultp > i16vec4
16 bit signed integer vector of 4 components type.
+
GLM_FUNC_DECL uint64 packUnorm4x16(vec4 const &v)
First, converts each component of the normalized floating-point value v into 16-bit integer values.
+
detail::uint8 uint8
8 bit unsigned integer type.
+
GLM_FUNC_DECL uint64 packUint2x32(u32vec2 const &v)
Convert each component from an integer vector into a packed unsigned integer.
+
GLM_FUNC_DECL vec4 unpackUnorm4x4(uint16 p)
Convert a packed integer to a normalized floating-point vector.
+
vec< 4, uint16, defaultp > u16vec4
16 bit unsigned integer vector of 4 components type.
+
GLM_FUNC_DECL vec< L, intType, Q > packSnorm(vec< L, floatType, Q > const &v)
Convert each component of the normalized floating-point vector into signed integer values.
+
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 uint32 packF3x9_E1x5(vec3 const &v)
First, converts the first two components of the normalized floating-point value v into 11-bit signles...
+
GLM_FUNC_DECL u16vec2 unpackUint2x16(uint p)
Convert a packed integer into an integer vector.
+
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 vec< L, floatType, Q > unpackUnorm(vec< L, uintType, Q > const &v)
Convert a packed integer to a normalized floating-point vector.
+
GLM_FUNC_DECL vec< L, uintType, Q > packUnorm(vec< L, floatType, Q > const &v)
Convert each component of the normalized floating-point vector into unsigned integer values.
+
GLM_FUNC_DECL int packInt2x16(i16vec2 const &v)
Convert each component from an integer vector into a packed integer.
+
GLM_FUNC_DECL uint64 packUint4x16(u16vec4 const &v)
Convert each component from an integer vector into a packed unsigned integer.
+
GLM_FUNC_DECL uint8 packUnorm2x3_1x2(vec3 const &v)
Convert each component of the normalized floating-point vector into unsigned integer values.
+
GLM_FUNC_DECL vec3 unpackUnorm2x3_1x2(uint8 p)
Convert a packed integer to a normalized floating-point vector.
+
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 i16vec4 unpackInt4x16(int64 p)
Convert a packed integer into an integer vector.
+
GLM_FUNC_DECL uint16 packUnorm4x4(vec4 const &v)
Convert each component of the normalized floating-point vector into unsigned integer values.
+
GLM_FUNC_DECL uint16 packSnorm1x16(float v)
First, converts the normalized floating-point value v into 16-bit integer value.
+
GLM_FUNC_DECL u8vec4 unpackUint4x8(uint32 p)
Convert a packed integer into an integer vector.
+
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 u32vec2 unpackUint2x32(uint64 p)
Convert a packed integer into an integer vector.
+
vec< 3, float, defaultp > vec3
3 components vector of single-precision floating-point numbers.
+
GLM_FUNC_DECL uint16 packUint2x8(u8vec2 const &v)
Convert each component from an integer vector into a packed unsigned integer.
+
GLM_FUNC_DECL int64 packInt4x16(i16vec4 const &v)
Convert each component from an integer vector into a packed integer.
+
vec< 4, float, defaultp > vec4
4 components vector of single-precision floating-point numbers.
+
GLM_FUNC_DECL vec< 3, T, Q > unpackRGBM(vec< 4, T, Q > const &rgbm)
Returns a floating-point vector with components obtained by reinterpreting an integer vector as 16-bi...
+
GLM_FUNC_DECL vec3 unpackUnorm1x5_1x6_1x5(uint16 p)
Convert a packed integer to a normalized floating-point vector.
+
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.
+
vec< 2, uint32, defaultp > u32vec2
32 bit unsigned integer vector of 2 components type.
+
GLM_FUNC_DECL uint16 packUnorm2x8(vec2 const &v)
First, converts each component of the normalized floating-point value v into 8-bit integer values.
+
vec< 2, uint8, defaultp > u8vec2
8 bit unsigned integer vector of 2 components type.
+
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 int32 packInt4x8(i8vec4 const &v)
Convert each component from an integer vector into a packed integer.
+
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 uint packUint2x16(u16vec2 const &v)
Convert each component from an integer vector into a packed unsigned integer.
+
GLM_FUNC_DECL uint64 packHalf4x16(vec4 const &v)
Returns an unsigned integer obtained by converting the components of a four-component floating-point ...
+
vec< 4, int8, defaultp > i8vec4
8 bit signed integer vector of 4 components type.
+
detail::int64 int64
64 bit signed integer type.
+
detail::uint16 uint16
16 bit unsigned integer type.
+
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 uint32 packUint4x8(u8vec4 const &v)
Convert each component from an integer vector into a packed unsigned integer.
+
GLM_FUNC_DECL i8vec2 unpackInt2x8(int16 p)
Convert a packed integer into an integer vector.
+
GLM_FUNC_DECL uint16 packUnorm1x16(float v)
First, converts the normalized floating-point value v into a 16-bit integer value.
+
GLM_FUNC_DECL vec2 unpackUnorm2x8(uint16 p)
First, unpacks a single 16-bit unsigned integer p into a pair of 8-bit unsigned integers.
+
GLM_FUNC_DECL vec3 unpackF3x9_E1x5(uint32 p)
First, unpacks a single 32-bit unsigned integer p into two 11-bit signless floating-point values and ...
+
GLM_FUNC_DECL vec4 unpackSnorm4x16(uint64 p)
First, unpacks a single 64-bit unsigned integer p into four 16-bit signed 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.
+
detail::int32 int32
32 bit signed integer type.
+
GLM_FUNC_DECL uint8 packSnorm1x8(float s)
First, converts the normalized floating-point value v into 8-bit integer value.
+ + + + diff --git a/include/glm/doc/api/a01711.html b/include/glm/doc/api/a01711.html new file mode 100644 index 0000000..b98a2d1 --- /dev/null +++ b/include/glm/doc/api/a01711.html @@ -0,0 +1,159 @@ + + + + + + + +1.0.2 API documentation: quaternion.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtc/quaternion.hpp File Reference
+
+
+ +

GLM_GTC_quaternion +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > eulerAngles (qua< T, Q > const &x)
 Returns euler angles, pitch as x, yaw as y, roll as z. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > greaterThan (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x > y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > greaterThanEqual (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x >= y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > lessThan (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison result of x < y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > lessThanEqual (qua< T, Q > const &x, qua< T, Q > const &y)
 Returns the component-wise comparison of result x <= y. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 3, 3, T, Q > mat3_cast (qua< T, Q > const &x)
 Converts a quaternion to a 3 * 3 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL mat< 4, 4, T, Q > mat4_cast (qua< T, Q > const &x)
 Converts a quaternion to a 4 * 4 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T pitch (qua< T, Q > const &x)
 Returns pitch value of euler angles expressed in radians. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quat_cast (mat< 3, 3, T, Q > const &x)
 Converts a pure rotation 3 * 3 matrix to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quat_cast (mat< 4, 4, T, Q > const &x)
 Converts a pure rotation 4 * 4 matrix to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quatLookAt (vec< 3, T, Q > const &direction, vec< 3, T, Q > const &up)
 Build a look at quaternion based on the default handedness. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quatLookAtLH (vec< 3, T, Q > const &direction, vec< 3, T, Q > const &up)
 Build a left-handed look at quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > quatLookAtRH (vec< 3, T, Q > const &direction, vec< 3, T, Q > const &up)
 Build a right-handed look at quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T roll (qua< T, Q > const &x)
 Returns roll value of euler angles expressed in radians. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T yaw (qua< T, Q > const &x)
 Returns yaw value of euler angles expressed in radians. More...
 
+

Detailed Description

+

GLM_GTC_quaternion

+
See also
Core features (dependence)
+
+GLM_GTC_constants (dependence)
+ +

Definition in file gtc/quaternion.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01711_source.html b/include/glm/doc/api/a01711_source.html new file mode 100644 index 0000000..fc4a005 --- /dev/null +++ b/include/glm/doc/api/a01711_source.html @@ -0,0 +1,176 @@ + + + + + + + +1.0.2 API documentation: quaternion.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtc/quaternion.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../gtc/constants.hpp"
+
18 #include "../gtc/matrix_transform.hpp"
+
19 #include "../ext/vector_relational.hpp"
+
20 #include "../ext/quaternion_common.hpp"
+
21 #include "../ext/quaternion_float.hpp"
+
22 #include "../ext/quaternion_float_precision.hpp"
+
23 #include "../ext/quaternion_double.hpp"
+
24 #include "../ext/quaternion_double_precision.hpp"
+
25 #include "../ext/quaternion_relational.hpp"
+
26 #include "../ext/quaternion_geometric.hpp"
+
27 #include "../ext/quaternion_trigonometric.hpp"
+
28 #include "../ext/quaternion_transform.hpp"
+
29 #include "../detail/type_mat3x3.hpp"
+
30 #include "../detail/type_mat4x4.hpp"
+
31 #include "../detail/type_vec3.hpp"
+
32 #include "../detail/type_vec4.hpp"
+
33 
+
34 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
35 # pragma message("GLM: GLM_GTC_quaternion extension included")
+
36 #endif
+
37 
+
38 namespace glm
+
39 {
+
42 
+
49  template<typename T, qualifier Q>
+
50  GLM_FUNC_DECL vec<3, T, Q> eulerAngles(qua<T, Q> const& x);
+
51 
+
57  template<typename T, qualifier Q>
+
58  GLM_FUNC_DECL T roll(qua<T, Q> const& x);
+
59 
+
65  template<typename T, qualifier Q>
+
66  GLM_FUNC_DECL T pitch(qua<T, Q> const& x);
+
67 
+
73  template<typename T, qualifier Q>
+
74  GLM_FUNC_DECL T yaw(qua<T, Q> const& x);
+
75 
+
81  template<typename T, qualifier Q>
+
82  GLM_FUNC_DECL mat<3, 3, T, Q> mat3_cast(qua<T, Q> const& x);
+
83 
+
89  template<typename T, qualifier Q>
+
90  GLM_FUNC_DECL mat<4, 4, T, Q> mat4_cast(qua<T, Q> const& x);
+
91 
+
97  template<typename T, qualifier Q>
+
98  GLM_FUNC_DECL qua<T, Q> quat_cast(mat<3, 3, T, Q> const& x);
+
99 
+
105  template<typename T, qualifier Q>
+
106  GLM_FUNC_DECL qua<T, Q> quat_cast(mat<4, 4, T, Q> const& x);
+
107 
+
114  template<typename T, qualifier Q>
+
115  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> lessThan(qua<T, Q> const& x, qua<T, Q> const& y);
+
116 
+
123  template<typename T, qualifier Q>
+
124  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> lessThanEqual(qua<T, Q> const& x, qua<T, Q> const& y);
+
125 
+
132  template<typename T, qualifier Q>
+
133  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> greaterThan(qua<T, Q> const& x, qua<T, Q> const& y);
+
134 
+
141  template<typename T, qualifier Q>
+
142  GLM_FUNC_DECL GLM_CONSTEXPR vec<4, bool, Q> greaterThanEqual(qua<T, Q> const& x, qua<T, Q> const& y);
+
143 
+
148  template<typename T, qualifier Q>
+
149  GLM_FUNC_DECL qua<T, Q> quatLookAt(
+
150  vec<3, T, Q> const& direction,
+
151  vec<3, T, Q> const& up);
+
152 
+
157  template<typename T, qualifier Q>
+
158  GLM_FUNC_DECL qua<T, Q> quatLookAtRH(
+
159  vec<3, T, Q> const& direction,
+
160  vec<3, T, Q> const& up);
+
161 
+
166  template<typename T, qualifier Q>
+
167  GLM_FUNC_DECL qua<T, Q> quatLookAtLH(
+
168  vec<3, T, Q> const& direction,
+
169  vec<3, T, Q> const& up);
+
171 } //namespace glm
+
172 
+
173 #include "quaternion.inl"
+
+
GLM_FUNC_DECL T roll(qua< T, Q > const &x)
Returns roll value of euler angles expressed in radians.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > mat3_cast(qua< T, Q > const &x)
Converts a quaternion to a 3 * 3 matrix.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > greaterThanEqual(qua< T, Q > const &x, qua< T, Q > const &y)
Returns the component-wise comparison of result x >= y.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > lessThan(qua< T, Q > const &x, qua< T, Q > const &y)
Returns the component-wise comparison result of x < y.
+
GLM_FUNC_DECL qua< T, Q > quat_cast(mat< 4, 4, T, Q > const &x)
Converts a pure rotation 4 * 4 matrix to a quaternion.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > greaterThan(qua< T, Q > const &x, qua< T, Q > const &y)
Returns the component-wise comparison of result x > y.
+
GLM_FUNC_DECL qua< T, Q > quatLookAtRH(vec< 3, T, Q > const &direction, vec< 3, T, Q > const &up)
Build a right-handed look at quaternion.
+
GLM_FUNC_DECL qua< T, Q > quatLookAtLH(vec< 3, T, Q > const &direction, vec< 3, T, Q > const &up)
Build a left-handed look at quaternion.
+
GLM_FUNC_DECL qua< T, Q > quatLookAt(vec< 3, T, Q > const &direction, vec< 3, T, Q > const &up)
Build a look at quaternion based on the default handedness.
+
GLM_FUNC_DECL T pitch(qua< T, Q > const &x)
Returns pitch value of euler angles expressed in radians.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< 4, bool, Q > lessThanEqual(qua< T, Q > const &x, qua< T, Q > const &y)
Returns the component-wise comparison of result x <= y.
+
GLM_FUNC_DECL vec< 3, T, Q > eulerAngles(qua< T, Q > const &x)
Returns euler angles, pitch as x, yaw as y, roll as z.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > mat4_cast(qua< T, Q > const &x)
Converts a quaternion to a 4 * 4 matrix.
+
GLM_FUNC_DECL T yaw(qua< T, Q > const &x)
Returns yaw value of euler angles expressed in radians.
+ + + + diff --git a/include/glm/doc/api/a01714.html b/include/glm/doc/api/a01714.html new file mode 100644 index 0000000..e6cd43a --- /dev/null +++ b/include/glm/doc/api/a01714.html @@ -0,0 +1,163 @@ + + + + + + + +1.0.2 API documentation: quaternion.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtx/quaternion.hpp File Reference
+
+
+ +

GLM_GTX_quaternion +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 3, T, Q > cross (qua< T, Q > const &q, vec< 3, T, Q > const &v)
 Compute a cross product between a quaternion and a vector. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< 3, T, Q > cross (vec< 3, T, Q > const &v, qua< T, Q > const &q)
 Compute a cross product between a vector and a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL T extractRealComponent (qua< T, Q > const &q)
 Extract the real component of a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > fastMix (qua< T, Q > const &x, qua< T, Q > const &y, T const &a)
 Quaternion normalized linear interpolation. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > intermediate (qua< T, Q > const &prev, qua< T, Q > const &curr, qua< T, Q > const &next)
 Returns an intermediate control point for squad interpolation. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR T length2 (qua< T, Q > const &q)
 Returns the squared length of x. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > quat_identity ()
 Create an identity quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 3, T, Q > rotate (qua< T, Q > const &q, vec< 3, T, Q > const &v)
 Returns quarternion square root. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL vec< 4, T, Q > rotate (qua< T, Q > const &q, vec< 4, T, Q > const &v)
 Rotates a 4 components vector by a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > rotation (vec< 3, T, Q > const &orig, vec< 3, T, Q > const &dest)
 Compute the rotation between two vectors. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > shortMix (qua< T, Q > const &x, qua< T, Q > const &y, T const &a)
 Quaternion interpolation using the rotation short path. More...
 
template<typename T , qualifier Q>
GLM_FUNC_DECL qua< T, Q > squad (qua< T, Q > const &q1, qua< T, Q > const &q2, qua< T, Q > const &s1, qua< T, Q > const &s2, T const &h)
 Compute a point on a path according squad equation. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > toMat3 (qua< T, Q > const &x)
 Converts a quaternion to a 3 * 3 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER mat< 4, 4, T, Q > toMat4 (qua< T, Q > const &x)
 Converts a quaternion to a 4 * 4 matrix. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER qua< T, Q > toQuat (mat< 3, 3, T, Q > const &x)
 Converts a 3 * 3 matrix to a quaternion. More...
 
template<typename T , qualifier Q>
GLM_FUNC_QUALIFIER qua< T, Q > toQuat (mat< 4, 4, T, Q > const &x)
 Converts a 4 * 4 matrix to a quaternion. More...
 
+

Detailed Description

+

GLM_GTX_quaternion

+
See also
Core features (dependence)
+
+gtx_extented_min_max (dependence)
+ +

Definition in file gtx/quaternion.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01714_source.html b/include/glm/doc/api/a01714_source.html new file mode 100644 index 0000000..784ebd9 --- /dev/null +++ b/include/glm/doc/api/a01714_source.html @@ -0,0 +1,200 @@ + + + + + + + +1.0.2 API documentation: quaternion.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtx/quaternion.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../glm.hpp"
+
18 #include "../gtc/constants.hpp"
+
19 #include "../gtc/quaternion.hpp"
+
20 #include "../ext/quaternion_exponential.hpp"
+
21 #include "../gtx/norm.hpp"
+
22 
+
23 #ifndef GLM_ENABLE_EXPERIMENTAL
+
24 # error "GLM: GLM_GTX_quaternion is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
25 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
26 # pragma message("GLM: GLM_GTX_quaternion extension included")
+
27 #endif
+
28 
+
29 namespace glm
+
30 {
+
33 
+
37  template<typename T, qualifier Q>
+
38  GLM_FUNC_DECL GLM_CONSTEXPR qua<T, Q> quat_identity();
+
39 
+
43  template<typename T, qualifier Q>
+
44  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> cross(
+
45  qua<T, Q> const& q,
+
46  vec<3, T, Q> const& v);
+
47 
+
51  template<typename T, qualifier Q>
+
52  GLM_FUNC_DECL GLM_CONSTEXPR vec<3, T, Q> cross(
+
53  vec<3, T, Q> const& v,
+
54  qua<T, Q> const& q);
+
55 
+
60  template<typename T, qualifier Q>
+
61  GLM_FUNC_DECL qua<T, Q> squad(
+
62  qua<T, Q> const& q1,
+
63  qua<T, Q> const& q2,
+
64  qua<T, Q> const& s1,
+
65  qua<T, Q> const& s2,
+
66  T const& h);
+
67 
+
71  template<typename T, qualifier Q>
+
72  GLM_FUNC_DECL qua<T, Q> intermediate(
+
73  qua<T, Q> const& prev,
+
74  qua<T, Q> const& curr,
+
75  qua<T, Q> const& next);
+
76 
+
80  //template<typename T, qualifier Q>
+
81  //qua<T, Q> sqrt(
+
82  // qua<T, Q> const& q);
+
83 
+
87  template<typename T, qualifier Q>
+
88  GLM_FUNC_DECL vec<3, T, Q> rotate(
+
89  qua<T, Q> const& q,
+
90  vec<3, T, Q> const& v);
+
91 
+
95  template<typename T, qualifier Q>
+
96  GLM_FUNC_DECL vec<4, T, Q> rotate(
+
97  qua<T, Q> const& q,
+
98  vec<4, T, Q> const& v);
+
99 
+
103  template<typename T, qualifier Q>
+
104  GLM_FUNC_DECL T extractRealComponent(
+
105  qua<T, Q> const& q);
+
106 
+
110  template<typename T, qualifier Q>
+
111  GLM_FUNC_QUALIFIER mat<3, 3, T, Q> toMat3(
+
112  qua<T, Q> const& x){return mat3_cast(x);}
+
113 
+
117  template<typename T, qualifier Q>
+
118  GLM_FUNC_QUALIFIER mat<4, 4, T, Q> toMat4(
+
119  qua<T, Q> const& x){return mat4_cast(x);}
+
120 
+
124  template<typename T, qualifier Q>
+
125  GLM_FUNC_QUALIFIER qua<T, Q> toQuat(
+
126  mat<3, 3, T, Q> const& x){return quat_cast(x);}
+
127 
+
131  template<typename T, qualifier Q>
+
132  GLM_FUNC_QUALIFIER qua<T, Q> toQuat(
+
133  mat<4, 4, T, Q> const& x){return quat_cast(x);}
+
134 
+
138  template<typename T, qualifier Q>
+
139  GLM_FUNC_DECL qua<T, Q> shortMix(
+
140  qua<T, Q> const& x,
+
141  qua<T, Q> const& y,
+
142  T const& a);
+
143 
+
147  template<typename T, qualifier Q>
+
148  GLM_FUNC_DECL qua<T, Q> fastMix(
+
149  qua<T, Q> const& x,
+
150  qua<T, Q> const& y,
+
151  T const& a);
+
152 
+
158  template<typename T, qualifier Q>
+
159  GLM_FUNC_DECL qua<T, Q> rotation(
+
160  vec<3, T, Q> const& orig,
+
161  vec<3, T, Q> const& dest);
+
162 
+
166  template<typename T, qualifier Q>
+
167  GLM_FUNC_DECL GLM_CONSTEXPR T length2(qua<T, Q> const& q);
+
168 
+
170 }//namespace glm
+
171 
+
172 #include "quaternion.inl"
+
+
GLM_FUNC_DECL qua< T, Q > quat_cast(mat< 3, 3, T, Q > const &x)
Converts a pure rotation 3 * 3 matrix to a quaternion.
+
GLM_FUNC_DECL qua< T, Q > fastMix(qua< T, Q > const &x, qua< T, Q > const &y, T const &a)
Quaternion normalized linear interpolation.
+
GLM_FUNC_DECL mat< 3, 3, T, Q > mat3_cast(qua< T, Q > const &x)
Converts a quaternion to a 3 * 3 matrix.
+
GLM_FUNC_DECL GLM_CONSTEXPR qua< T, Q > quat_identity()
Create an identity quaternion.
+
GLM_FUNC_DECL T extractRealComponent(qua< T, Q > const &q)
Extract the real component of a quaternion.
+
GLM_FUNC_DECL qua< T, Q > rotation(vec< 3, T, Q > const &orig, vec< 3, T, Q > const &dest)
Compute the rotation between two vectors.
+
GLM_FUNC_QUALIFIER mat< 4, 4, T, Q > toMat4(qua< T, Q > const &x)
Converts a quaternion to a 4 * 4 matrix.
+
GLM_FUNC_DECL qua< T, Q > squad(qua< T, Q > const &q1, qua< T, Q > const &q2, qua< T, Q > const &s1, qua< T, Q > const &s2, T const &h)
Compute a point on a path according squad equation.
+
GLM_FUNC_DECL vec< 4, T, Q > rotate(qua< T, Q > const &q, vec< 4, T, Q > const &v)
Rotates a 4 components vector by a quaternion.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< 3, T, Q > cross(vec< 3, T, Q > const &v, qua< T, Q > const &q)
Compute a cross product between a vector and a quaternion.
+
GLM_FUNC_QUALIFIER qua< T, Q > toQuat(mat< 4, 4, T, Q > const &x)
Converts a 4 * 4 matrix to a quaternion.
+
GLM_FUNC_DECL GLM_CONSTEXPR T length2(qua< T, Q > const &q)
Returns the squared length of x.
+
GLM_FUNC_QUALIFIER mat< 3, 3, T, Q > toMat3(qua< T, Q > const &x)
Converts a quaternion to a 3 * 3 matrix.
+
GLM_FUNC_DECL mat< 4, 4, T, Q > mat4_cast(qua< T, Q > const &x)
Converts a quaternion to a 4 * 4 matrix.
+
GLM_FUNC_DECL qua< T, Q > shortMix(qua< T, Q > const &x, qua< T, Q > const &y, T const &a)
Quaternion interpolation using the rotation short path.
+
GLM_FUNC_DECL qua< T, Q > intermediate(qua< T, Q > const &prev, qua< T, Q > const &curr, qua< T, Q > const &next)
Returns an intermediate control point for squad interpolation.
+ + + + diff --git a/include/glm/doc/api/a01717.html b/include/glm/doc/api/a01717.html new file mode 100644 index 0000000..20d8f90 --- /dev/null +++ b/include/glm/doc/api/a01717.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: scalar_relational.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
ext/scalar_relational.hpp File Reference
+
+
+ +

GLM_EXT_scalar_relational +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + +

+Functions

template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR bool equal (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR bool equal (genType const &x, genType const &y, int ULPs)
 Returns the component-wise comparison between two scalars in term of ULPs. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR bool notEqual (genType const &x, genType const &y, genType const &epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
template<typename genType >
GLM_FUNC_DECL GLM_CONSTEXPR bool notEqual (genType const &x, genType const &y, int ULPs)
 Returns the component-wise comparison between two scalars in term of ULPs. More...
 
+

Detailed Description

+
+ + + + diff --git a/include/glm/doc/api/a01717_source.html b/include/glm/doc/api/a01717_source.html new file mode 100644 index 0000000..479ec9b --- /dev/null +++ b/include/glm/doc/api/a01717_source.html @@ -0,0 +1,112 @@ + + + + + + + +1.0.2 API documentation: scalar_relational.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ext/scalar_relational.hpp
+
+
+Go to the documentation of this file.
1 
+
15 #pragma once
+
16 
+
17 // Dependencies
+
18 #include "../detail/qualifier.hpp"
+
19 
+
20 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_EXT_scalar_relational extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
33  template<typename genType>
+
34  GLM_FUNC_DECL GLM_CONSTEXPR bool equal(genType const& x, genType const& y, genType const& epsilon);
+
35 
+
40  template<typename genType>
+
41  GLM_FUNC_DECL GLM_CONSTEXPR bool notEqual(genType const& x, genType const& y, genType const& epsilon);
+
42 
+
51  template<typename genType>
+
52  GLM_FUNC_DECL GLM_CONSTEXPR bool equal(genType const& x, genType const& y, int ULPs);
+
53 
+
62  template<typename genType>
+
63  GLM_FUNC_DECL GLM_CONSTEXPR bool notEqual(genType const& x, genType const& y, int ULPs);
+
64 
+
66 }//namespace glm
+
67 
+
68 #include "scalar_relational.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR bool notEqual(genType const &x, genType const &y, int ULPs)
Returns the component-wise comparison between two scalars in term of ULPs.
+
GLM_FUNC_DECL GLM_CONSTEXPR bool equal(genType const &x, genType const &y, int ULPs)
Returns the component-wise comparison between two scalars in term of ULPs.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon()
Return the epsilon constant for floating point types.
+ + + + diff --git a/include/glm/doc/api/a01720.html b/include/glm/doc/api/a01720.html new file mode 100644 index 0000000..8d656b1 --- /dev/null +++ b/include/glm/doc/api/a01720.html @@ -0,0 +1,91 @@ + + + + + + + +1.0.2 API documentation: scalar_relational.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtx/scalar_relational.hpp File Reference
+
+ + + + + diff --git a/include/glm/doc/api/a01720_source.html b/include/glm/doc/api/a01720_source.html new file mode 100644 index 0000000..d3e72cb --- /dev/null +++ b/include/glm/doc/api/a01720_source.html @@ -0,0 +1,101 @@ + + + + + + + +1.0.2 API documentation: scalar_relational.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtx/scalar_relational.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 // Dependency:
+
16 #include "../glm.hpp"
+
17 
+
18 #ifndef GLM_ENABLE_EXPERIMENTAL
+
19 # error "GLM: GLM_GTX_scalar_relational is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
+
20 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
21 # pragma message("GLM: GLM_GTX_scalar_relational extension included")
+
22 #endif
+
23 
+
24 namespace glm
+
25 {
+
28 
+
29 
+
30 
+
32 }//namespace glm
+
33 
+
34 #include "scalar_relational.inl"
+
+ + + + diff --git a/include/glm/doc/api/a01723.html b/include/glm/doc/api/a01723.html new file mode 100644 index 0000000..8d4ff07 --- /dev/null +++ b/include/glm/doc/api/a01723.html @@ -0,0 +1,1569 @@ + + + + + + + +1.0.2 API documentation: type_aligned.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtc/type_aligned.hpp File Reference
+
+
+ +

GLM_GTC_type_aligned +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Typedefs

+typedef aligned_highp_bvec1 aligned_bvec1
 1 component vector aligned in memory of bool values.
 
+typedef aligned_highp_bvec2 aligned_bvec2
 2 components vector aligned in memory of bool values.
 
+typedef aligned_highp_bvec3 aligned_bvec3
 3 components vector aligned in memory of bool values.
 
+typedef aligned_highp_bvec4 aligned_bvec4
 4 components vector aligned in memory of bool values.
 
+typedef aligned_highp_dmat2 aligned_dmat2
 2 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat2x2 aligned_dmat2x2
 2 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat2x3 aligned_dmat2x3
 2 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat2x4 aligned_dmat2x4
 2 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat3 aligned_dmat3
 3 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat3x2 aligned_dmat3x2
 3 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat3x3 aligned_dmat3x3
 3 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat3x4 aligned_dmat3x4
 3 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat4 aligned_dmat4
 4 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat4x2 aligned_dmat4x2
 4 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat4x3 aligned_dmat4x3
 4 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dmat4x4 aligned_dmat4x4
 4 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dquat aligned_dquat
 quaternion tightly aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dvec1 aligned_dvec1
 1 component vector aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dvec2 aligned_dvec2
 2 components vector aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dvec3 aligned_dvec3
 3 components vector aligned in memory of double-precision floating-point numbers.
 
+typedef aligned_highp_dvec4 aligned_dvec4
 4 components vector aligned in memory of double-precision floating-point numbers.
 
+typedef vec< 1, bool, aligned_highp > aligned_highp_bvec1
 1 component vector aligned in memory of bool values.
 
+typedef vec< 2, bool, aligned_highp > aligned_highp_bvec2
 2 components vector aligned in memory of bool values.
 
+typedef vec< 3, bool, aligned_highp > aligned_highp_bvec3
 3 components vector aligned in memory of bool values.
 
+typedef vec< 4, bool, aligned_highp > aligned_highp_bvec4
 4 components vector aligned in memory of bool values.
 
+typedef mat< 2, 2, double, aligned_highp > aligned_highp_dmat2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, aligned_highp > aligned_highp_dmat2x2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, aligned_highp > aligned_highp_dmat2x3
 2 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, aligned_highp > aligned_highp_dmat2x4
 2 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_highp > aligned_highp_dmat3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, aligned_highp > aligned_highp_dmat3x2
 3 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_highp > aligned_highp_dmat3x3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, aligned_highp > aligned_highp_dmat3x4
 3 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_highp > aligned_highp_dmat4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, aligned_highp > aligned_highp_dmat4x2
 4 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, aligned_highp > aligned_highp_dmat4x3
 4 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_highp > aligned_highp_dmat4x4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< double, aligned_highp > aligned_highp_dquat
 quaternion aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, aligned_highp > aligned_highp_dvec1
 1 component vector aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, aligned_highp > aligned_highp_dvec2
 2 components vector aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, aligned_highp > aligned_highp_dvec3
 3 components vector aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, aligned_highp > aligned_highp_dvec4
 4 components vector aligned in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, aligned_highp > aligned_highp_ivec1
 1 component vector aligned in memory of signed integer numbers.
 
+typedef vec< 2, int, aligned_highp > aligned_highp_ivec2
 2 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 3, int, aligned_highp > aligned_highp_ivec3
 3 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 4, int, aligned_highp > aligned_highp_ivec4
 4 components vector aligned in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, aligned_highp > aligned_highp_mat2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, aligned_highp > aligned_highp_mat2x2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, aligned_highp > aligned_highp_mat2x3
 2 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, aligned_highp > aligned_highp_mat2x4
 2 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_highp > aligned_highp_mat3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, aligned_highp > aligned_highp_mat3x2
 3 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_highp > aligned_highp_mat3x3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, aligned_highp > aligned_highp_mat3x4
 3 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_highp > aligned_highp_mat4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, aligned_highp > aligned_highp_mat4x2
 4 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, aligned_highp > aligned_highp_mat4x3
 4 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_highp > aligned_highp_mat4x4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< float, aligned_highp > aligned_highp_quat
 quaternion aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, aligned_highp > aligned_highp_uvec1
 1 component vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, aligned_highp > aligned_highp_uvec2
 2 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, aligned_highp > aligned_highp_uvec3
 3 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, aligned_highp > aligned_highp_uvec4
 4 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 1, float, aligned_highp > aligned_highp_vec1
 1 component vector aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, aligned_highp > aligned_highp_vec2
 2 components vector aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, aligned_highp > aligned_highp_vec3
 3 components vector aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, aligned_highp > aligned_highp_vec4
 4 components vector aligned in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef aligned_highp_ivec1 aligned_ivec1
 1 component vector aligned in memory of signed integer numbers.
 
+typedef aligned_highp_ivec2 aligned_ivec2
 2 components vector aligned in memory of signed integer numbers.
 
+typedef aligned_highp_ivec3 aligned_ivec3
 3 components vector aligned in memory of signed integer numbers.
 
+typedef aligned_highp_ivec4 aligned_ivec4
 4 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 1, bool, aligned_lowp > aligned_lowp_bvec1
 1 component vector aligned in memory of bool values.
 
+typedef vec< 2, bool, aligned_lowp > aligned_lowp_bvec2
 2 components vector aligned in memory of bool values.
 
+typedef vec< 3, bool, aligned_lowp > aligned_lowp_bvec3
 3 components vector aligned in memory of bool values.
 
+typedef vec< 4, bool, aligned_lowp > aligned_lowp_bvec4
 4 components vector aligned in memory of bool values.
 
+typedef mat< 2, 2, double, aligned_lowp > aligned_lowp_dmat2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, aligned_lowp > aligned_lowp_dmat2x2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, aligned_lowp > aligned_lowp_dmat2x3
 2 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, aligned_lowp > aligned_lowp_dmat2x4
 2 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_lowp > aligned_lowp_dmat3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, aligned_lowp > aligned_lowp_dmat3x2
 3 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_lowp > aligned_lowp_dmat3x3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, aligned_lowp > aligned_lowp_dmat3x4
 3 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_lowp > aligned_lowp_dmat4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, aligned_lowp > aligned_lowp_dmat4x2
 4 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, aligned_lowp > aligned_lowp_dmat4x3
 4 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_lowp > aligned_lowp_dmat4x4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef qua< double, aligned_lowp > aligned_lowp_dquat
 quaternion aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, aligned_lowp > aligned_lowp_dvec1
 1 component vector aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, aligned_lowp > aligned_lowp_dvec2
 2 components vector aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, aligned_lowp > aligned_lowp_dvec3
 3 components vector aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, aligned_lowp > aligned_lowp_dvec4
 4 components vector aligned in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, aligned_lowp > aligned_lowp_ivec1
 1 component vector aligned in memory of signed integer numbers.
 
+typedef vec< 2, int, aligned_lowp > aligned_lowp_ivec2
 2 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 3, int, aligned_lowp > aligned_lowp_ivec3
 3 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 4, int, aligned_lowp > aligned_lowp_ivec4
 4 components vector aligned in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, aligned_lowp > aligned_lowp_mat2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, aligned_lowp > aligned_lowp_mat2x2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, aligned_lowp > aligned_lowp_mat2x3
 2 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, aligned_lowp > aligned_lowp_mat2x4
 2 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_lowp > aligned_lowp_mat3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, aligned_lowp > aligned_lowp_mat3x2
 3 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_lowp > aligned_lowp_mat3x3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, aligned_lowp > aligned_lowp_mat3x4
 3 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_lowp > aligned_lowp_mat4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, aligned_lowp > aligned_lowp_mat4x2
 4 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, aligned_lowp > aligned_lowp_mat4x3
 4 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_lowp > aligned_lowp_mat4x4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef qua< float, aligned_lowp > aligned_lowp_quat
 quaternion aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, aligned_lowp > aligned_lowp_uvec1
 1 component vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, aligned_lowp > aligned_lowp_uvec2
 2 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, aligned_lowp > aligned_lowp_uvec3
 3 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, aligned_lowp > aligned_lowp_uvec4
 4 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 1, float, aligned_lowp > aligned_lowp_vec1
 1 component vector aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, aligned_lowp > aligned_lowp_vec2
 2 components vector aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, aligned_lowp > aligned_lowp_vec3
 3 components vector aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, aligned_lowp > aligned_lowp_vec4
 4 components vector aligned in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef aligned_highp_mat2 aligned_mat2
 2 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat2x2 aligned_mat2x2
 2 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat2x3 aligned_mat2x3
 2 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat2x4 aligned_mat2x4
 2 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat3 aligned_mat3
 3 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat3x2 aligned_mat3x2
 3 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat3x3 aligned_mat3x3
 3 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat3x4 aligned_mat3x4
 3 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat4 aligned_mat4
 4 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat4x2 aligned_mat4x2
 4 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat4x3 aligned_mat4x3
 4 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_mat4x4 aligned_mat4x4
 4 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
 
+typedef vec< 1, bool, aligned_mediump > aligned_mediump_bvec1
 1 component vector aligned in memory of bool values.
 
+typedef vec< 2, bool, aligned_mediump > aligned_mediump_bvec2
 2 components vector aligned in memory of bool values.
 
+typedef vec< 3, bool, aligned_mediump > aligned_mediump_bvec3
 3 components vector aligned in memory of bool values.
 
+typedef vec< 4, bool, aligned_mediump > aligned_mediump_bvec4
 4 components vector aligned in memory of bool values.
 
+typedef mat< 2, 2, double, aligned_mediump > aligned_mediump_dmat2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, aligned_mediump > aligned_mediump_dmat2x2
 2 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, aligned_mediump > aligned_mediump_dmat2x3
 2 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, aligned_mediump > aligned_mediump_dmat2x4
 2 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_mediump > aligned_mediump_dmat3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, aligned_mediump > aligned_mediump_dmat3x2
 3 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, aligned_mediump > aligned_mediump_dmat3x3
 3 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, aligned_mediump > aligned_mediump_dmat3x4
 3 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_mediump > aligned_mediump_dmat4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, aligned_mediump > aligned_mediump_dmat4x2
 4 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, aligned_mediump > aligned_mediump_dmat4x3
 4 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, aligned_mediump > aligned_mediump_dmat4x4
 4 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef qua< double, aligned_mediump > aligned_mediump_dquat
 quaternion aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, aligned_mediump > aligned_mediump_dvec1
 1 component vector aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, aligned_mediump > aligned_mediump_dvec2
 2 components vector aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, aligned_mediump > aligned_mediump_dvec3
 3 components vector aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, aligned_mediump > aligned_mediump_dvec4
 4 components vector aligned in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, aligned_mediump > aligned_mediump_ivec1
 1 component vector aligned in memory of signed integer numbers.
 
+typedef vec< 2, int, aligned_mediump > aligned_mediump_ivec2
 2 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 3, int, aligned_mediump > aligned_mediump_ivec3
 3 components vector aligned in memory of signed integer numbers.
 
+typedef vec< 4, int, aligned_mediump > aligned_mediump_ivec4
 4 components vector aligned in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, aligned_mediump > aligned_mediump_mat2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, aligned_mediump > aligned_mediump_mat2x2
 2 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, aligned_mediump > aligned_mediump_mat2x3
 2 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, aligned_mediump > aligned_mediump_mat2x4
 2 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_mediump > aligned_mediump_mat3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, aligned_mediump > aligned_mediump_mat3x2
 3 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, aligned_mediump > aligned_mediump_mat3x3
 3 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, aligned_mediump > aligned_mediump_mat3x4
 3 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_mediump > aligned_mediump_mat4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, aligned_mediump > aligned_mediump_mat4x2
 4 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, aligned_mediump > aligned_mediump_mat4x3
 4 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, aligned_mediump > aligned_mediump_mat4x4
 4 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef qua< float, aligned_mediump > aligned_mediump_quat
 quaternion aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, aligned_mediump > aligned_mediump_uvec1
 1 component vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, aligned_mediump > aligned_mediump_uvec2
 2 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, aligned_mediump > aligned_mediump_uvec3
 3 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, aligned_mediump > aligned_mediump_uvec4
 4 components vector aligned in memory of unsigned integer numbers.
 
+typedef vec< 1, float, aligned_mediump > aligned_mediump_vec1
 1 component vector aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, aligned_mediump > aligned_mediump_vec2
 2 components vector aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, aligned_mediump > aligned_mediump_vec3
 3 components vector aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, aligned_mediump > aligned_mediump_vec4
 4 components vector aligned in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef aligned_highp_quat aligned_quat
 quaternion tightly aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_uvec1 aligned_uvec1
 1 component vector aligned in memory of unsigned integer numbers.
 
+typedef aligned_highp_uvec2 aligned_uvec2
 2 components vector aligned in memory of unsigned integer numbers.
 
+typedef aligned_highp_uvec3 aligned_uvec3
 3 components vector aligned in memory of unsigned integer numbers.
 
+typedef aligned_highp_uvec4 aligned_uvec4
 4 components vector aligned in memory of unsigned integer numbers.
 
+typedef aligned_highp_vec1 aligned_vec1
 1 component vector aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_vec2 aligned_vec2
 2 components vector aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_vec3 aligned_vec3
 3 components vector aligned in memory of single-precision floating-point numbers.
 
+typedef aligned_highp_vec4 aligned_vec4
 4 components vector aligned in memory of single-precision floating-point numbers.
 
+typedef packed_highp_bvec1 packed_bvec1
 1 components vector tightly packed in memory of bool values.
 
+typedef packed_highp_bvec2 packed_bvec2
 2 components vector tightly packed in memory of bool values.
 
+typedef packed_highp_bvec3 packed_bvec3
 3 components vector tightly packed in memory of bool values.
 
+typedef packed_highp_bvec4 packed_bvec4
 4 components vector tightly packed in memory of bool values.
 
+typedef packed_highp_dmat2 packed_dmat2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat2x2 packed_dmat2x2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat2x3 packed_dmat2x3
 2 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat2x4 packed_dmat2x4
 2 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat3 packed_dmat3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat3x2 packed_dmat3x2
 3 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat3x3 packed_dmat3x3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat3x4 packed_dmat3x4
 3 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat4 packed_dmat4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat4x2 packed_dmat4x2
 4 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat4x3 packed_dmat4x3
 4 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dmat4x4 packed_dmat4x4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dquat packed_dquat
 quaternion tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dvec1 packed_dvec1
 1 component vector tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dvec2 packed_dvec2
 2 components vector tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dvec3 packed_dvec3
 3 components vector tightly packed in memory of double-precision floating-point numbers.
 
+typedef packed_highp_dvec4 packed_dvec4
 4 components vector tightly packed in memory of double-precision floating-point numbers.
 
+typedef vec< 1, bool, packed_highp > packed_highp_bvec1
 1 component vector tightly packed in memory of bool values.
 
+typedef vec< 2, bool, packed_highp > packed_highp_bvec2
 2 components vector tightly packed in memory of bool values.
 
+typedef vec< 3, bool, packed_highp > packed_highp_bvec3
 3 components vector tightly packed in memory of bool values.
 
+typedef vec< 4, bool, packed_highp > packed_highp_bvec4
 4 components vector tightly packed in memory of bool values.
 
+typedef mat< 2, 2, double, packed_highp > packed_highp_dmat2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, packed_highp > packed_highp_dmat2x2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, packed_highp > packed_highp_dmat2x3
 2 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, packed_highp > packed_highp_dmat2x4
 2 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_highp > packed_highp_dmat3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, packed_highp > packed_highp_dmat3x2
 3 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_highp > packed_highp_dmat3x3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, packed_highp > packed_highp_dmat3x4
 3 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_highp > packed_highp_dmat4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, packed_highp > packed_highp_dmat4x2
 4 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, packed_highp > packed_highp_dmat4x3
 4 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_highp > packed_highp_dmat4x4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< double, packed_highp > packed_highp_dquat
 quaternion tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, packed_highp > packed_highp_dvec1
 1 component vector tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, packed_highp > packed_highp_dvec2
 2 components vector tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, packed_highp > packed_highp_dvec3
 3 components vector tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, packed_highp > packed_highp_dvec4
 4 components vector tightly packed in memory of double-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, packed_highp > packed_highp_ivec1
 1 component vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 2, int, packed_highp > packed_highp_ivec2
 2 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 3, int, packed_highp > packed_highp_ivec3
 3 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 4, int, packed_highp > packed_highp_ivec4
 4 components vector tightly packed in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, packed_highp > packed_highp_mat2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, packed_highp > packed_highp_mat2x2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, packed_highp > packed_highp_mat2x3
 2 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, packed_highp > packed_highp_mat2x4
 2 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_highp > packed_highp_mat3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, packed_highp > packed_highp_mat3x2
 3 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_highp > packed_highp_mat3x3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, packed_highp > packed_highp_mat3x4
 3 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_highp > packed_highp_mat4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, packed_highp > packed_highp_mat4x2
 4 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, packed_highp > packed_highp_mat4x3
 4 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_highp > packed_highp_mat4x4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef qua< float, packed_highp > packed_highp_quat
 quaternion tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, packed_highp > packed_highp_uvec1
 1 component vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, packed_highp > packed_highp_uvec2
 2 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, packed_highp > packed_highp_uvec3
 3 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, packed_highp > packed_highp_uvec4
 4 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 1, float, packed_highp > packed_highp_vec1
 1 component vector tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, packed_highp > packed_highp_vec2
 2 components vector tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, packed_highp > packed_highp_vec3
 3 components vector tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, packed_highp > packed_highp_vec4
 4 components vector tightly packed in memory of single-precision floating-point numbers using high precision arithmetic in term of ULPs.
 
+typedef packed_highp_ivec1 packed_ivec1
 1 component vector tightly packed in memory of signed integer numbers.
 
+typedef packed_highp_ivec2 packed_ivec2
 2 components vector tightly packed in memory of signed integer numbers.
 
+typedef packed_highp_ivec3 packed_ivec3
 3 components vector tightly packed in memory of signed integer numbers.
 
+typedef packed_highp_ivec4 packed_ivec4
 4 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 1, bool, packed_lowp > packed_lowp_bvec1
 1 component vector tightly packed in memory of bool values.
 
+typedef vec< 2, bool, packed_lowp > packed_lowp_bvec2
 2 components vector tightly packed in memory of bool values.
 
+typedef vec< 3, bool, packed_lowp > packed_lowp_bvec3
 3 components vector tightly packed in memory of bool values.
 
+typedef vec< 4, bool, packed_lowp > packed_lowp_bvec4
 4 components vector tightly packed in memory of bool values.
 
+typedef mat< 2, 2, double, packed_lowp > packed_lowp_dmat2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, packed_lowp > packed_lowp_dmat2x2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, packed_lowp > packed_lowp_dmat2x3
 2 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, packed_lowp > packed_lowp_dmat2x4
 2 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_lowp > packed_lowp_dmat3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, packed_lowp > packed_lowp_dmat3x2
 3 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_lowp > packed_lowp_dmat3x3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, packed_lowp > packed_lowp_dmat3x4
 3 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_lowp > packed_lowp_dmat4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, packed_lowp > packed_lowp_dmat4x2
 4 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, packed_lowp > packed_lowp_dmat4x3
 4 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_lowp > packed_lowp_dmat4x4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef qua< double, packed_lowp > packed_lowp_dquat
 quaternion tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, packed_lowp > packed_lowp_dvec1
 1 component vector tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, packed_lowp > packed_lowp_dvec2
 2 components vector tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, packed_lowp > packed_lowp_dvec3
 3 components vector tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, packed_lowp > packed_lowp_dvec4
 4 components vector tightly packed in memory of double-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, packed_lowp > packed_lowp_ivec1
 1 component vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 2, int, packed_lowp > packed_lowp_ivec2
 2 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 3, int, packed_lowp > packed_lowp_ivec3
 3 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 4, int, packed_lowp > packed_lowp_ivec4
 4 components vector tightly packed in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, packed_lowp > packed_lowp_mat2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, packed_lowp > packed_lowp_mat2x2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, packed_lowp > packed_lowp_mat2x3
 2 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, packed_lowp > packed_lowp_mat2x4
 2 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_lowp > packed_lowp_mat3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, packed_lowp > packed_lowp_mat3x2
 3 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_lowp > packed_lowp_mat3x3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, packed_lowp > packed_lowp_mat3x4
 3 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_lowp > packed_lowp_mat4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, packed_lowp > packed_lowp_mat4x2
 4 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, packed_lowp > packed_lowp_mat4x3
 4 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_lowp > packed_lowp_mat4x4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef qua< float, packed_lowp > packed_lowp_quat
 quaternion tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, packed_lowp > packed_lowp_uvec1
 1 component vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, packed_lowp > packed_lowp_uvec2
 2 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, packed_lowp > packed_lowp_uvec3
 3 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, packed_lowp > packed_lowp_uvec4
 4 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 1, float, packed_lowp > packed_lowp_vec1
 1 component vector tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, packed_lowp > packed_lowp_vec2
 2 components vector tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, packed_lowp > packed_lowp_vec3
 3 components vector tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, packed_lowp > packed_lowp_vec4
 4 components vector tightly packed in memory of single-precision floating-point numbers using low precision arithmetic in term of ULPs.
 
+typedef packed_highp_mat2 packed_mat2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat2x2 packed_mat2x2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat2x3 packed_mat2x3
 2 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat2x4 packed_mat2x4
 2 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat3 packed_mat3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat3x2 packed_mat3x2
 3 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat3x3 packed_mat3x3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat3x4 packed_mat3x4
 3 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat4 packed_mat4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat4x2 packed_mat4x2
 4 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat4x3 packed_mat4x3
 4 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_mat4x4 packed_mat4x4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
 
+typedef vec< 1, bool, packed_mediump > packed_mediump_bvec1
 1 component vector tightly packed in memory of bool values.
 
+typedef vec< 2, bool, packed_mediump > packed_mediump_bvec2
 2 components vector tightly packed in memory of bool values.
 
+typedef vec< 3, bool, packed_mediump > packed_mediump_bvec3
 3 components vector tightly packed in memory of bool values.
 
+typedef vec< 4, bool, packed_mediump > packed_mediump_bvec4
 4 components vector tightly packed in memory of bool values.
 
+typedef mat< 2, 2, double, packed_mediump > packed_mediump_dmat2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, double, packed_mediump > packed_mediump_dmat2x2
 2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, double, packed_mediump > packed_mediump_dmat2x3
 2 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, double, packed_mediump > packed_mediump_dmat2x4
 2 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_mediump > packed_mediump_dmat3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, double, packed_mediump > packed_mediump_dmat3x2
 3 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, double, packed_mediump > packed_mediump_dmat3x3
 3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, double, packed_mediump > packed_mediump_dmat3x4
 3 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_mediump > packed_mediump_dmat4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, double, packed_mediump > packed_mediump_dmat4x2
 4 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, double, packed_mediump > packed_mediump_dmat4x3
 4 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, double, packed_mediump > packed_mediump_dmat4x4
 4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef qua< double, packed_mediump > packed_mediump_dquat
 quaternion tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, double, packed_mediump > packed_mediump_dvec1
 1 component vector tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 2, double, packed_mediump > packed_mediump_dvec2
 2 components vector tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 3, double, packed_mediump > packed_mediump_dvec3
 3 components vector tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 4, double, packed_mediump > packed_mediump_dvec4
 4 components vector tightly packed in memory of double-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, int, packed_mediump > packed_mediump_ivec1
 1 component vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 2, int, packed_mediump > packed_mediump_ivec2
 2 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 3, int, packed_mediump > packed_mediump_ivec3
 3 components vector tightly packed in memory of signed integer numbers.
 
+typedef vec< 4, int, packed_mediump > packed_mediump_ivec4
 4 components vector tightly packed in memory of signed integer numbers.
 
+typedef mat< 2, 2, float, packed_mediump > packed_mediump_mat2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 2, float, packed_mediump > packed_mediump_mat2x2
 2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 3, float, packed_mediump > packed_mediump_mat2x3
 2 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 2, 4, float, packed_mediump > packed_mediump_mat2x4
 2 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_mediump > packed_mediump_mat3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 2, float, packed_mediump > packed_mediump_mat3x2
 3 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 3, float, packed_mediump > packed_mediump_mat3x3
 3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 3, 4, float, packed_mediump > packed_mediump_mat3x4
 3 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_mediump > packed_mediump_mat4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 2, float, packed_mediump > packed_mediump_mat4x2
 4 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 3, float, packed_mediump > packed_mediump_mat4x3
 4 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef mat< 4, 4, float, packed_mediump > packed_mediump_mat4x4
 4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef qua< float, packed_mediump > packed_mediump_quat
 quaternion tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 1, uint, packed_mediump > packed_mediump_uvec1
 1 component vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 2, uint, packed_mediump > packed_mediump_uvec2
 2 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 3, uint, packed_mediump > packed_mediump_uvec3
 3 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 4, uint, packed_mediump > packed_mediump_uvec4
 4 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef vec< 1, float, packed_mediump > packed_mediump_vec1
 1 component vector tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 2, float, packed_mediump > packed_mediump_vec2
 2 components vector tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 3, float, packed_mediump > packed_mediump_vec3
 3 components vector tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef vec< 4, float, packed_mediump > packed_mediump_vec4
 4 components vector tightly packed in memory of single-precision floating-point numbers using medium precision arithmetic in term of ULPs.
 
+typedef packed_highp_quat packed_quat
 quaternion tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_uvec1 packed_uvec1
 1 component vector tightly packed in memory of unsigned integer numbers.
 
+typedef packed_highp_uvec2 packed_uvec2
 2 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef packed_highp_uvec3 packed_uvec3
 3 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef packed_highp_uvec4 packed_uvec4
 4 components vector tightly packed in memory of unsigned integer numbers.
 
+typedef packed_highp_vec1 packed_vec1
 1 component vector tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_vec2 packed_vec2
 2 components vector tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_vec3 packed_vec3
 3 components vector tightly packed in memory of single-precision floating-point numbers.
 
+typedef packed_highp_vec4 packed_vec4
 4 components vector tightly packed in memory of single-precision floating-point numbers.
 
+

Detailed Description

+

GLM_GTC_type_aligned

+
See also
Core features (dependence)
+ +

Definition in file gtc/type_aligned.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01723_source.html b/include/glm/doc/api/a01723_source.html new file mode 100644 index 0000000..a6b0570 --- /dev/null +++ b/include/glm/doc/api/a01723_source.html @@ -0,0 +1,1445 @@ + + + + + + + +1.0.2 API documentation: type_aligned.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtc/type_aligned.hpp
+
+
+Go to the documentation of this file.
1 
+
13 #pragma once
+
14 
+
15 #if (GLM_CONFIG_ALIGNED_GENTYPES == GLM_DISABLE)
+
16 # error "GLM: Aligned gentypes require to enable C++ language extensions. Define GLM_FORCE_ALIGNED_GENTYPES before including GLM headers to use aligned types."
+
17 #endif
+
18 
+
19 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
20 # pragma message("GLM: GLM_GTC_type_aligned extension included")
+
21 #endif
+
22 
+
23 #include "../mat4x4.hpp"
+
24 #include "../mat4x3.hpp"
+
25 #include "../mat4x2.hpp"
+
26 #include "../mat3x4.hpp"
+
27 #include "../mat3x3.hpp"
+
28 #include "../mat3x2.hpp"
+
29 #include "../mat2x4.hpp"
+
30 #include "../mat2x3.hpp"
+
31 #include "../mat2x2.hpp"
+
32 #include "../gtc/quaternion.hpp"
+
33 #include "../gtc/vec1.hpp"
+
34 #include "../vec2.hpp"
+
35 #include "../vec3.hpp"
+
36 #include "../vec4.hpp"
+
37 
+
38 namespace glm
+
39 {
+
42 
+
43  // -- *vec1 --
+
44 
+
46  typedef vec<1, float, aligned_highp> aligned_highp_vec1;
+
47 
+
49  typedef vec<1, float, aligned_mediump> aligned_mediump_vec1;
+
50 
+
52  typedef vec<1, float, aligned_lowp> aligned_lowp_vec1;
+
53 
+
55  typedef vec<1, double, aligned_highp> aligned_highp_dvec1;
+
56 
+
58  typedef vec<1, double, aligned_mediump> aligned_mediump_dvec1;
+
59 
+
61  typedef vec<1, double, aligned_lowp> aligned_lowp_dvec1;
+
62 
+
64  typedef vec<1, int, aligned_highp> aligned_highp_ivec1;
+
65 
+
67  typedef vec<1, int, aligned_mediump> aligned_mediump_ivec1;
+
68 
+
70  typedef vec<1, int, aligned_lowp> aligned_lowp_ivec1;
+
71 
+
73  typedef vec<1, uint, aligned_highp> aligned_highp_uvec1;
+
74 
+
76  typedef vec<1, uint, aligned_mediump> aligned_mediump_uvec1;
+
77 
+
79  typedef vec<1, uint, aligned_lowp> aligned_lowp_uvec1;
+
80 
+
82  typedef vec<1, bool, aligned_highp> aligned_highp_bvec1;
+
83 
+
85  typedef vec<1, bool, aligned_mediump> aligned_mediump_bvec1;
+
86 
+
88  typedef vec<1, bool, aligned_lowp> aligned_lowp_bvec1;
+
89 
+
91  typedef vec<1, float, packed_highp> packed_highp_vec1;
+
92 
+
94  typedef vec<1, float, packed_mediump> packed_mediump_vec1;
+
95 
+
97  typedef vec<1, float, packed_lowp> packed_lowp_vec1;
+
98 
+
100  typedef vec<1, double, packed_highp> packed_highp_dvec1;
+
101 
+
103  typedef vec<1, double, packed_mediump> packed_mediump_dvec1;
+
104 
+
106  typedef vec<1, double, packed_lowp> packed_lowp_dvec1;
+
107 
+
109  typedef vec<1, int, packed_highp> packed_highp_ivec1;
+
110 
+
112  typedef vec<1, int, packed_mediump> packed_mediump_ivec1;
+
113 
+
115  typedef vec<1, int, packed_lowp> packed_lowp_ivec1;
+
116 
+
118  typedef vec<1, uint, packed_highp> packed_highp_uvec1;
+
119 
+
121  typedef vec<1, uint, packed_mediump> packed_mediump_uvec1;
+
122 
+
124  typedef vec<1, uint, packed_lowp> packed_lowp_uvec1;
+
125 
+
127  typedef vec<1, bool, packed_highp> packed_highp_bvec1;
+
128 
+
130  typedef vec<1, bool, packed_mediump> packed_mediump_bvec1;
+
131 
+
133  typedef vec<1, bool, packed_lowp> packed_lowp_bvec1;
+
134 
+
135  // -- *vec2 --
+
136 
+
138  typedef vec<2, float, aligned_highp> aligned_highp_vec2;
+
139 
+
141  typedef vec<2, float, aligned_mediump> aligned_mediump_vec2;
+
142 
+
144  typedef vec<2, float, aligned_lowp> aligned_lowp_vec2;
+
145 
+
147  typedef vec<2, double, aligned_highp> aligned_highp_dvec2;
+
148 
+
150  typedef vec<2, double, aligned_mediump> aligned_mediump_dvec2;
+
151 
+
153  typedef vec<2, double, aligned_lowp> aligned_lowp_dvec2;
+
154 
+
156  typedef vec<2, int, aligned_highp> aligned_highp_ivec2;
+
157 
+
159  typedef vec<2, int, aligned_mediump> aligned_mediump_ivec2;
+
160 
+
162  typedef vec<2, int, aligned_lowp> aligned_lowp_ivec2;
+
163 
+
165  typedef vec<2, uint, aligned_highp> aligned_highp_uvec2;
+
166 
+
168  typedef vec<2, uint, aligned_mediump> aligned_mediump_uvec2;
+
169 
+
171  typedef vec<2, uint, aligned_lowp> aligned_lowp_uvec2;
+
172 
+
174  typedef vec<2, bool, aligned_highp> aligned_highp_bvec2;
+
175 
+
177  typedef vec<2, bool, aligned_mediump> aligned_mediump_bvec2;
+
178 
+
180  typedef vec<2, bool, aligned_lowp> aligned_lowp_bvec2;
+
181 
+
183  typedef vec<2, float, packed_highp> packed_highp_vec2;
+
184 
+
186  typedef vec<2, float, packed_mediump> packed_mediump_vec2;
+
187 
+
189  typedef vec<2, float, packed_lowp> packed_lowp_vec2;
+
190 
+
192  typedef vec<2, double, packed_highp> packed_highp_dvec2;
+
193 
+
195  typedef vec<2, double, packed_mediump> packed_mediump_dvec2;
+
196 
+
198  typedef vec<2, double, packed_lowp> packed_lowp_dvec2;
+
199 
+
201  typedef vec<2, int, packed_highp> packed_highp_ivec2;
+
202 
+
204  typedef vec<2, int, packed_mediump> packed_mediump_ivec2;
+
205 
+
207  typedef vec<2, int, packed_lowp> packed_lowp_ivec2;
+
208 
+
210  typedef vec<2, uint, packed_highp> packed_highp_uvec2;
+
211 
+
213  typedef vec<2, uint, packed_mediump> packed_mediump_uvec2;
+
214 
+
216  typedef vec<2, uint, packed_lowp> packed_lowp_uvec2;
+
217 
+
219  typedef vec<2, bool, packed_highp> packed_highp_bvec2;
+
220 
+
222  typedef vec<2, bool, packed_mediump> packed_mediump_bvec2;
+
223 
+
225  typedef vec<2, bool, packed_lowp> packed_lowp_bvec2;
+
226 
+
227  // -- *vec3 --
+
228 
+
230  typedef vec<3, float, aligned_highp> aligned_highp_vec3;
+
231 
+
233  typedef vec<3, float, aligned_mediump> aligned_mediump_vec3;
+
234 
+
236  typedef vec<3, float, aligned_lowp> aligned_lowp_vec3;
+
237 
+
239  typedef vec<3, double, aligned_highp> aligned_highp_dvec3;
+
240 
+
242  typedef vec<3, double, aligned_mediump> aligned_mediump_dvec3;
+
243 
+
245  typedef vec<3, double, aligned_lowp> aligned_lowp_dvec3;
+
246 
+
248  typedef vec<3, int, aligned_highp> aligned_highp_ivec3;
+
249 
+
251  typedef vec<3, int, aligned_mediump> aligned_mediump_ivec3;
+
252 
+
254  typedef vec<3, int, aligned_lowp> aligned_lowp_ivec3;
+
255 
+
257  typedef vec<3, uint, aligned_highp> aligned_highp_uvec3;
+
258 
+
260  typedef vec<3, uint, aligned_mediump> aligned_mediump_uvec3;
+
261 
+
263  typedef vec<3, uint, aligned_lowp> aligned_lowp_uvec3;
+
264 
+
266  typedef vec<3, bool, aligned_highp> aligned_highp_bvec3;
+
267 
+
269  typedef vec<3, bool, aligned_mediump> aligned_mediump_bvec3;
+
270 
+
272  typedef vec<3, bool, aligned_lowp> aligned_lowp_bvec3;
+
273 
+
275  typedef vec<3, float, packed_highp> packed_highp_vec3;
+
276 
+
278  typedef vec<3, float, packed_mediump> packed_mediump_vec3;
+
279 
+
281  typedef vec<3, float, packed_lowp> packed_lowp_vec3;
+
282 
+
284  typedef vec<3, double, packed_highp> packed_highp_dvec3;
+
285 
+
287  typedef vec<3, double, packed_mediump> packed_mediump_dvec3;
+
288 
+
290  typedef vec<3, double, packed_lowp> packed_lowp_dvec3;
+
291 
+
293  typedef vec<3, int, packed_highp> packed_highp_ivec3;
+
294 
+
296  typedef vec<3, int, packed_mediump> packed_mediump_ivec3;
+
297 
+
299  typedef vec<3, int, packed_lowp> packed_lowp_ivec3;
+
300 
+
302  typedef vec<3, uint, packed_highp> packed_highp_uvec3;
+
303 
+
305  typedef vec<3, uint, packed_mediump> packed_mediump_uvec3;
+
306 
+
308  typedef vec<3, uint, packed_lowp> packed_lowp_uvec3;
+
309 
+
311  typedef vec<3, bool, packed_highp> packed_highp_bvec3;
+
312 
+
314  typedef vec<3, bool, packed_mediump> packed_mediump_bvec3;
+
315 
+
317  typedef vec<3, bool, packed_lowp> packed_lowp_bvec3;
+
318 
+
319  // -- *vec4 --
+
320 
+
322  typedef vec<4, float, aligned_highp> aligned_highp_vec4;
+
323 
+
325  typedef vec<4, float, aligned_mediump> aligned_mediump_vec4;
+
326 
+
328  typedef vec<4, float, aligned_lowp> aligned_lowp_vec4;
+
329 
+
331  typedef vec<4, double, aligned_highp> aligned_highp_dvec4;
+
332 
+
334  typedef vec<4, double, aligned_mediump> aligned_mediump_dvec4;
+
335 
+
337  typedef vec<4, double, aligned_lowp> aligned_lowp_dvec4;
+
338 
+
340  typedef vec<4, int, aligned_highp> aligned_highp_ivec4;
+
341 
+
343  typedef vec<4, int, aligned_mediump> aligned_mediump_ivec4;
+
344 
+
346  typedef vec<4, int, aligned_lowp> aligned_lowp_ivec4;
+
347 
+
349  typedef vec<4, uint, aligned_highp> aligned_highp_uvec4;
+
350 
+
352  typedef vec<4, uint, aligned_mediump> aligned_mediump_uvec4;
+
353 
+
355  typedef vec<4, uint, aligned_lowp> aligned_lowp_uvec4;
+
356 
+
358  typedef vec<4, bool, aligned_highp> aligned_highp_bvec4;
+
359 
+
361  typedef vec<4, bool, aligned_mediump> aligned_mediump_bvec4;
+
362 
+
364  typedef vec<4, bool, aligned_lowp> aligned_lowp_bvec4;
+
365 
+
367  typedef vec<4, float, packed_highp> packed_highp_vec4;
+
368 
+
370  typedef vec<4, float, packed_mediump> packed_mediump_vec4;
+
371 
+
373  typedef vec<4, float, packed_lowp> packed_lowp_vec4;
+
374 
+
376  typedef vec<4, double, packed_highp> packed_highp_dvec4;
+
377 
+
379  typedef vec<4, double, packed_mediump> packed_mediump_dvec4;
+
380 
+
382  typedef vec<4, double, packed_lowp> packed_lowp_dvec4;
+
383 
+
385  typedef vec<4, int, packed_highp> packed_highp_ivec4;
+
386 
+
388  typedef vec<4, int, packed_mediump> packed_mediump_ivec4;
+
389 
+
391  typedef vec<4, int, packed_lowp> packed_lowp_ivec4;
+
392 
+
394  typedef vec<4, uint, packed_highp> packed_highp_uvec4;
+
395 
+
397  typedef vec<4, uint, packed_mediump> packed_mediump_uvec4;
+
398 
+
400  typedef vec<4, uint, packed_lowp> packed_lowp_uvec4;
+
401 
+
403  typedef vec<4, bool, packed_highp> packed_highp_bvec4;
+
404 
+
406  typedef vec<4, bool, packed_mediump> packed_mediump_bvec4;
+
407 
+
409  typedef vec<4, bool, packed_lowp> packed_lowp_bvec4;
+
410 
+
411  // -- *mat2 --
+
412 
+
414  typedef mat<2, 2, float, aligned_highp> aligned_highp_mat2;
+
415 
+
417  typedef mat<2, 2, float, aligned_mediump> aligned_mediump_mat2;
+
418 
+
420  typedef mat<2, 2, float, aligned_lowp> aligned_lowp_mat2;
+
421 
+
423  typedef mat<2, 2, double, aligned_highp> aligned_highp_dmat2;
+
424 
+
426  typedef mat<2, 2, double, aligned_mediump> aligned_mediump_dmat2;
+
427 
+
429  typedef mat<2, 2, double, aligned_lowp> aligned_lowp_dmat2;
+
430 
+
432  typedef mat<2, 2, float, packed_highp> packed_highp_mat2;
+
433 
+
435  typedef mat<2, 2, float, packed_mediump> packed_mediump_mat2;
+
436 
+
438  typedef mat<2, 2, float, packed_lowp> packed_lowp_mat2;
+
439 
+
441  typedef mat<2, 2, double, packed_highp> packed_highp_dmat2;
+
442 
+
444  typedef mat<2, 2, double, packed_mediump> packed_mediump_dmat2;
+
445 
+
447  typedef mat<2, 2, double, packed_lowp> packed_lowp_dmat2;
+
448 
+
449  // -- *mat3 --
+
450 
+
452  typedef mat<3, 3, float, aligned_highp> aligned_highp_mat3;
+
453 
+
455  typedef mat<3, 3, float, aligned_mediump> aligned_mediump_mat3;
+
456 
+
458  typedef mat<3, 3, float, aligned_lowp> aligned_lowp_mat3;
+
459 
+
461  typedef mat<3, 3, double, aligned_highp> aligned_highp_dmat3;
+
462 
+
464  typedef mat<3, 3, double, aligned_mediump> aligned_mediump_dmat3;
+
465 
+
467  typedef mat<3, 3, double, aligned_lowp> aligned_lowp_dmat3;
+
468 
+
470  typedef mat<3, 3, float, packed_highp> packed_highp_mat3;
+
471 
+
473  typedef mat<3, 3, float, packed_mediump> packed_mediump_mat3;
+
474 
+
476  typedef mat<3, 3, float, packed_lowp> packed_lowp_mat3;
+
477 
+
479  typedef mat<3, 3, double, packed_highp> packed_highp_dmat3;
+
480 
+
482  typedef mat<3, 3, double, packed_mediump> packed_mediump_dmat3;
+
483 
+
485  typedef mat<3, 3, double, packed_lowp> packed_lowp_dmat3;
+
486 
+
487  // -- *mat4 --
+
488 
+
490  typedef mat<4, 4, float, aligned_highp> aligned_highp_mat4;
+
491 
+
493  typedef mat<4, 4, float, aligned_mediump> aligned_mediump_mat4;
+
494 
+
496  typedef mat<4, 4, float, aligned_lowp> aligned_lowp_mat4;
+
497 
+
499  typedef mat<4, 4, double, aligned_highp> aligned_highp_dmat4;
+
500 
+
502  typedef mat<4, 4, double, aligned_mediump> aligned_mediump_dmat4;
+
503 
+
505  typedef mat<4, 4, double, aligned_lowp> aligned_lowp_dmat4;
+
506 
+
508  typedef mat<4, 4, float, packed_highp> packed_highp_mat4;
+
509 
+
511  typedef mat<4, 4, float, packed_mediump> packed_mediump_mat4;
+
512 
+
514  typedef mat<4, 4, float, packed_lowp> packed_lowp_mat4;
+
515 
+
517  typedef mat<4, 4, double, packed_highp> packed_highp_dmat4;
+
518 
+
520  typedef mat<4, 4, double, packed_mediump> packed_mediump_dmat4;
+
521 
+
523  typedef mat<4, 4, double, packed_lowp> packed_lowp_dmat4;
+
524 
+
525  // -- *mat2x2 --
+
526 
+
528  typedef mat<2, 2, float, aligned_highp> aligned_highp_mat2x2;
+
529 
+
531  typedef mat<2, 2, float, aligned_mediump> aligned_mediump_mat2x2;
+
532 
+
534  typedef mat<2, 2, float, aligned_lowp> aligned_lowp_mat2x2;
+
535 
+
537  typedef mat<2, 2, double, aligned_highp> aligned_highp_dmat2x2;
+
538 
+
540  typedef mat<2, 2, double, aligned_mediump> aligned_mediump_dmat2x2;
+
541 
+
543  typedef mat<2, 2, double, aligned_lowp> aligned_lowp_dmat2x2;
+
544 
+
546  typedef mat<2, 2, float, packed_highp> packed_highp_mat2x2;
+
547 
+
549  typedef mat<2, 2, float, packed_mediump> packed_mediump_mat2x2;
+
550 
+
552  typedef mat<2, 2, float, packed_lowp> packed_lowp_mat2x2;
+
553 
+
555  typedef mat<2, 2, double, packed_highp> packed_highp_dmat2x2;
+
556 
+
558  typedef mat<2, 2, double, packed_mediump> packed_mediump_dmat2x2;
+
559 
+
561  typedef mat<2, 2, double, packed_lowp> packed_lowp_dmat2x2;
+
562 
+
563  // -- *mat2x3 --
+
564 
+
566  typedef mat<2, 3, float, aligned_highp> aligned_highp_mat2x3;
+
567 
+
569  typedef mat<2, 3, float, aligned_mediump> aligned_mediump_mat2x3;
+
570 
+
572  typedef mat<2, 3, float, aligned_lowp> aligned_lowp_mat2x3;
+
573 
+
575  typedef mat<2, 3, double, aligned_highp> aligned_highp_dmat2x3;
+
576 
+
578  typedef mat<2, 3, double, aligned_mediump> aligned_mediump_dmat2x3;
+
579 
+
581  typedef mat<2, 3, double, aligned_lowp> aligned_lowp_dmat2x3;
+
582 
+
584  typedef mat<2, 3, float, packed_highp> packed_highp_mat2x3;
+
585 
+
587  typedef mat<2, 3, float, packed_mediump> packed_mediump_mat2x3;
+
588 
+
590  typedef mat<2, 3, float, packed_lowp> packed_lowp_mat2x3;
+
591 
+
593  typedef mat<2, 3, double, packed_highp> packed_highp_dmat2x3;
+
594 
+
596  typedef mat<2, 3, double, packed_mediump> packed_mediump_dmat2x3;
+
597 
+
599  typedef mat<2, 3, double, packed_lowp> packed_lowp_dmat2x3;
+
600 
+
601  // -- *mat2x4 --
+
602 
+
604  typedef mat<2, 4, float, aligned_highp> aligned_highp_mat2x4;
+
605 
+
607  typedef mat<2, 4, float, aligned_mediump> aligned_mediump_mat2x4;
+
608 
+
610  typedef mat<2, 4, float, aligned_lowp> aligned_lowp_mat2x4;
+
611 
+
613  typedef mat<2, 4, double, aligned_highp> aligned_highp_dmat2x4;
+
614 
+
616  typedef mat<2, 4, double, aligned_mediump> aligned_mediump_dmat2x4;
+
617 
+
619  typedef mat<2, 4, double, aligned_lowp> aligned_lowp_dmat2x4;
+
620 
+
622  typedef mat<2, 4, float, packed_highp> packed_highp_mat2x4;
+
623 
+
625  typedef mat<2, 4, float, packed_mediump> packed_mediump_mat2x4;
+
626 
+
628  typedef mat<2, 4, float, packed_lowp> packed_lowp_mat2x4;
+
629 
+
631  typedef mat<2, 4, double, packed_highp> packed_highp_dmat2x4;
+
632 
+
634  typedef mat<2, 4, double, packed_mediump> packed_mediump_dmat2x4;
+
635 
+
637  typedef mat<2, 4, double, packed_lowp> packed_lowp_dmat2x4;
+
638 
+
639  // -- *mat3x2 --
+
640 
+
642  typedef mat<3, 2, float, aligned_highp> aligned_highp_mat3x2;
+
643 
+
645  typedef mat<3, 2, float, aligned_mediump> aligned_mediump_mat3x2;
+
646 
+
648  typedef mat<3, 2, float, aligned_lowp> aligned_lowp_mat3x2;
+
649 
+
651  typedef mat<3, 2, double, aligned_highp> aligned_highp_dmat3x2;
+
652 
+
654  typedef mat<3, 2, double, aligned_mediump> aligned_mediump_dmat3x2;
+
655 
+
657  typedef mat<3, 2, double, aligned_lowp> aligned_lowp_dmat3x2;
+
658 
+
660  typedef mat<3, 2, float, packed_highp> packed_highp_mat3x2;
+
661 
+
663  typedef mat<3, 2, float, packed_mediump> packed_mediump_mat3x2;
+
664 
+
666  typedef mat<3, 2, float, packed_lowp> packed_lowp_mat3x2;
+
667 
+
669  typedef mat<3, 2, double, packed_highp> packed_highp_dmat3x2;
+
670 
+
672  typedef mat<3, 2, double, packed_mediump> packed_mediump_dmat3x2;
+
673 
+
675  typedef mat<3, 2, double, packed_lowp> packed_lowp_dmat3x2;
+
676 
+
677  // -- *mat3x3 --
+
678 
+
680  typedef mat<3, 3, float, aligned_highp> aligned_highp_mat3x3;
+
681 
+
683  typedef mat<3, 3, float, aligned_mediump> aligned_mediump_mat3x3;
+
684 
+
686  typedef mat<3, 3, float, aligned_lowp> aligned_lowp_mat3x3;
+
687 
+
689  typedef mat<3, 3, double, aligned_highp> aligned_highp_dmat3x3;
+
690 
+
692  typedef mat<3, 3, double, aligned_mediump> aligned_mediump_dmat3x3;
+
693 
+
695  typedef mat<3, 3, double, aligned_lowp> aligned_lowp_dmat3x3;
+
696 
+
698  typedef mat<3, 3, float, packed_highp> packed_highp_mat3x3;
+
699 
+
701  typedef mat<3, 3, float, packed_mediump> packed_mediump_mat3x3;
+
702 
+
704  typedef mat<3, 3, float, packed_lowp> packed_lowp_mat3x3;
+
705 
+
707  typedef mat<3, 3, double, packed_highp> packed_highp_dmat3x3;
+
708 
+
710  typedef mat<3, 3, double, packed_mediump> packed_mediump_dmat3x3;
+
711 
+
713  typedef mat<3, 3, double, packed_lowp> packed_lowp_dmat3x3;
+
714 
+
715  // -- *mat3x4 --
+
716 
+
718  typedef mat<3, 4, float, aligned_highp> aligned_highp_mat3x4;
+
719 
+
721  typedef mat<3, 4, float, aligned_mediump> aligned_mediump_mat3x4;
+
722 
+
724  typedef mat<3, 4, float, aligned_lowp> aligned_lowp_mat3x4;
+
725 
+
727  typedef mat<3, 4, double, aligned_highp> aligned_highp_dmat3x4;
+
728 
+
730  typedef mat<3, 4, double, aligned_mediump> aligned_mediump_dmat3x4;
+
731 
+
733  typedef mat<3, 4, double, aligned_lowp> aligned_lowp_dmat3x4;
+
734 
+
736  typedef mat<3, 4, float, packed_highp> packed_highp_mat3x4;
+
737 
+
739  typedef mat<3, 4, float, packed_mediump> packed_mediump_mat3x4;
+
740 
+
742  typedef mat<3, 4, float, packed_lowp> packed_lowp_mat3x4;
+
743 
+
745  typedef mat<3, 4, double, packed_highp> packed_highp_dmat3x4;
+
746 
+
748  typedef mat<3, 4, double, packed_mediump> packed_mediump_dmat3x4;
+
749 
+
751  typedef mat<3, 4, double, packed_lowp> packed_lowp_dmat3x4;
+
752 
+
753  // -- *mat4x2 --
+
754 
+
756  typedef mat<4, 2, float, aligned_highp> aligned_highp_mat4x2;
+
757 
+
759  typedef mat<4, 2, float, aligned_mediump> aligned_mediump_mat4x2;
+
760 
+
762  typedef mat<4, 2, float, aligned_lowp> aligned_lowp_mat4x2;
+
763 
+
765  typedef mat<4, 2, double, aligned_highp> aligned_highp_dmat4x2;
+
766 
+
768  typedef mat<4, 2, double, aligned_mediump> aligned_mediump_dmat4x2;
+
769 
+
771  typedef mat<4, 2, double, aligned_lowp> aligned_lowp_dmat4x2;
+
772 
+
774  typedef mat<4, 2, float, packed_highp> packed_highp_mat4x2;
+
775 
+
777  typedef mat<4, 2, float, packed_mediump> packed_mediump_mat4x2;
+
778 
+
780  typedef mat<4, 2, float, packed_lowp> packed_lowp_mat4x2;
+
781 
+
783  typedef mat<4, 2, double, packed_highp> packed_highp_dmat4x2;
+
784 
+
786  typedef mat<4, 2, double, packed_mediump> packed_mediump_dmat4x2;
+
787 
+
789  typedef mat<4, 2, double, packed_lowp> packed_lowp_dmat4x2;
+
790 
+
791  // -- *mat4x3 --
+
792 
+
794  typedef mat<4, 3, float, aligned_highp> aligned_highp_mat4x3;
+
795 
+
797  typedef mat<4, 3, float, aligned_mediump> aligned_mediump_mat4x3;
+
798 
+
800  typedef mat<4, 3, float, aligned_lowp> aligned_lowp_mat4x3;
+
801 
+
803  typedef mat<4, 3, double, aligned_highp> aligned_highp_dmat4x3;
+
804 
+
806  typedef mat<4, 3, double, aligned_mediump> aligned_mediump_dmat4x3;
+
807 
+
809  typedef mat<4, 3, double, aligned_lowp> aligned_lowp_dmat4x3;
+
810 
+
812  typedef mat<4, 3, float, packed_highp> packed_highp_mat4x3;
+
813 
+
815  typedef mat<4, 3, float, packed_mediump> packed_mediump_mat4x3;
+
816 
+
818  typedef mat<4, 3, float, packed_lowp> packed_lowp_mat4x3;
+
819 
+
821  typedef mat<4, 3, double, packed_highp> packed_highp_dmat4x3;
+
822 
+
824  typedef mat<4, 3, double, packed_mediump> packed_mediump_dmat4x3;
+
825 
+
827  typedef mat<4, 3, double, packed_lowp> packed_lowp_dmat4x3;
+
828 
+
829  // -- *mat4x4 --
+
830 
+
832  typedef mat<4, 4, float, aligned_highp> aligned_highp_mat4x4;
+
833 
+
835  typedef mat<4, 4, float, aligned_mediump> aligned_mediump_mat4x4;
+
836 
+
838  typedef mat<4, 4, float, aligned_lowp> aligned_lowp_mat4x4;
+
839 
+
841  typedef mat<4, 4, double, aligned_highp> aligned_highp_dmat4x4;
+
842 
+
844  typedef mat<4, 4, double, aligned_mediump> aligned_mediump_dmat4x4;
+
845 
+
847  typedef mat<4, 4, double, aligned_lowp> aligned_lowp_dmat4x4;
+
848 
+
850  typedef mat<4, 4, float, packed_highp> packed_highp_mat4x4;
+
851 
+
853  typedef mat<4, 4, float, packed_mediump> packed_mediump_mat4x4;
+
854 
+
856  typedef mat<4, 4, float, packed_lowp> packed_lowp_mat4x4;
+
857 
+
859  typedef mat<4, 4, double, packed_highp> packed_highp_dmat4x4;
+
860 
+
862  typedef mat<4, 4, double, packed_mediump> packed_mediump_dmat4x4;
+
863 
+
865  typedef mat<4, 4, double, packed_lowp> packed_lowp_dmat4x4;
+
866 
+
867  // -- *quat --
+
868 
+
870  typedef qua<float, aligned_highp> aligned_highp_quat;
+
871 
+
873  typedef qua<float, aligned_mediump> aligned_mediump_quat;
+
874 
+
876  typedef qua<float, aligned_lowp> aligned_lowp_quat;
+
877 
+
879  typedef qua<double, aligned_highp> aligned_highp_dquat;
+
880 
+
882  typedef qua<double, aligned_mediump> aligned_mediump_dquat;
+
883 
+
885  typedef qua<double, aligned_lowp> aligned_lowp_dquat;
+
886 
+
888  typedef qua<float, packed_highp> packed_highp_quat;
+
889 
+
891  typedef qua<float, packed_mediump> packed_mediump_quat;
+
892 
+
894  typedef qua<float, packed_lowp> packed_lowp_quat;
+
895 
+
897  typedef qua<double, packed_highp> packed_highp_dquat;
+
898 
+
900  typedef qua<double, packed_mediump> packed_mediump_dquat;
+
901 
+
903  typedef qua<double, packed_lowp> packed_lowp_dquat;
+
904 
+
905  // -- default --
+
906 
+
907 #if(defined(GLM_PRECISION_LOWP_FLOAT))
+ + + + + + + + +
916 
+ + + + + + +
923 
+ + + + + + + + + + + + + + + + + + +
942 
+ + +
945 #elif(defined(GLM_PRECISION_MEDIUMP_FLOAT))
+ + + + + + + + +
954 
+ + + + + + +
961 
+ + + + + + + + + + + + + + + + + + +
980 
+ + +
983 #else //defined(GLM_PRECISION_HIGHP_FLOAT)
+ +
986 
+ +
989 
+ +
992 
+ +
995 
+ +
998 
+ +
1001 
+ +
1004 
+ +
1007 
+ +
1010 
+ +
1013 
+ +
1016 
+ +
1019 
+ +
1022 
+ +
1025 
+ +
1028 
+ +
1031 
+ +
1034 
+ +
1037 
+ +
1040 
+ +
1043 
+ +
1046 
+ +
1049 
+ +
1052 
+ +
1055 
+ +
1058 
+ +
1061 
+ +
1064 
+ +
1067 
+ +
1070 
+ +
1073 
+ +
1076 
+ +
1079 
+ +
1082 
+ +
1085 #endif//GLM_PRECISION
+
1086 
+
1087 #if(defined(GLM_PRECISION_LOWP_DOUBLE))
+ + + + + + + + +
1096 
+ + + + + + +
1103 
+ + + + + + + + + + + + + + + + + + +
1122 
+ + +
1125 #elif(defined(GLM_PRECISION_MEDIUMP_DOUBLE))
+ + + + + + + + +
1134 
+ + + + + + +
1141 
+ + + + + + + + + + + + + + + + + + +
1160 
+ + +
1163 #else //defined(GLM_PRECISION_HIGHP_DOUBLE)
+ +
1166 
+ +
1169 
+ +
1172 
+ +
1175 
+ +
1178 
+ +
1181 
+ +
1184 
+ +
1187 
+ +
1190 
+ +
1193 
+ +
1196 
+ +
1199 
+ +
1202 
+ +
1205 
+ +
1208 
+ +
1211 
+ +
1214 
+ +
1217 
+ +
1220 
+ +
1223 
+ +
1226 
+ +
1229 
+ +
1232 
+ +
1235 
+ +
1238 
+ +
1241 
+ +
1244 
+ +
1247 
+ +
1250 
+ +
1253 
+ +
1256 
+ +
1259 
+ +
1262 
+ +
1265 #endif//GLM_PRECISION
+
1266 
+
1267 #if(defined(GLM_PRECISION_LOWP_INT))
+ + + + +
1272 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
+ + + + +
1277 #else //defined(GLM_PRECISION_HIGHP_INT)
+ +
1280 
+ +
1283 
+ +
1286 
+ +
1289 
+ +
1292 
+ +
1295 
+ +
1298 
+ +
1301 #endif//GLM_PRECISION
+
1302 
+
1303  // -- Unsigned integer definition --
+
1304 
+
1305 #if(defined(GLM_PRECISION_LOWP_UINT))
+ + + + +
1310 #elif(defined(GLM_PRECISION_MEDIUMP_UINT))
+ + + + +
1315 #else //defined(GLM_PRECISION_HIGHP_UINT)
+ +
1318 
+ +
1321 
+ +
1324 
+ +
1327 
+ +
1330 
+ +
1333 
+ +
1336 
+ +
1339 #endif//GLM_PRECISION
+
1340 
+
1341 #if(defined(GLM_PRECISION_LOWP_BOOL))
+ + + + +
1346 #elif(defined(GLM_PRECISION_MEDIUMP_BOOL))
+ + + + +
1351 #else //defined(GLM_PRECISION_HIGHP_BOOL)
+ +
1354 
+ +
1357 
+ +
1360 
+ +
1363 
+ +
1366 
+ +
1369 
+ +
1372 
+ +
1375 #endif//GLM_PRECISION
+
1376 
+
1378 }//namespace glm
+
+
mat< 3, 2, float, packed_mediump > packed_mediump_mat3x2
3 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
vec< 1, float, packed_lowp > packed_lowp_vec1
1 component vector tightly packed in memory of single-precision floating-point numbers using low prec...
+
packed_highp_bvec2 packed_bvec2
2 components vector tightly packed in memory of bool values.
+
aligned_highp_dmat2x3 aligned_dmat2x3
2 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
+
vec< 1, double, packed_mediump > packed_mediump_dvec1
1 component vector tightly packed in memory of double-precision floating-point numbers using medium p...
+
mat< 3, 4, float, aligned_lowp > aligned_lowp_mat3x4
3 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
mat< 2, 4, double, packed_lowp > packed_lowp_dmat2x4
2 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
vec< 3, uint, aligned_mediump > aligned_mediump_uvec3
3 components vector aligned in memory of unsigned integer numbers.
+
vec< 4, uint, aligned_highp > aligned_highp_uvec4
4 components vector aligned in memory of unsigned integer numbers.
+
aligned_highp_mat3x3 aligned_mat3x3
3 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
+
mat< 3, 2, float, aligned_lowp > aligned_lowp_mat3x2
3 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
mat< 3, 4, double, aligned_mediump > aligned_mediump_dmat3x4
3 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
mat< 3, 2, float, packed_highp > packed_highp_mat3x2
3 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
vec< 4, bool, packed_lowp > packed_lowp_bvec4
4 components vector tightly packed in memory of bool values.
+
vec< 3, float, packed_lowp > packed_lowp_vec3
3 components vector tightly packed in memory of single-precision floating-point numbers using low pre...
+
vec< 2, double, aligned_highp > aligned_highp_dvec2
2 components vector aligned in memory of double-precision floating-point numbers using high precision...
+
mat< 3, 3, float, packed_mediump > packed_mediump_mat3
3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
packed_highp_mat2x2 packed_mat2x2
2 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
+
aligned_highp_bvec4 aligned_bvec4
4 components vector aligned in memory of bool values.
+
mat< 4, 4, double, aligned_lowp > aligned_lowp_dmat4
4 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
mat< 2, 4, double, aligned_highp > aligned_highp_dmat2x4
2 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
mat< 4, 4, double, packed_highp > packed_highp_dmat4
4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
aligned_highp_vec1 aligned_vec1
1 component vector aligned in memory of single-precision floating-point numbers.
+
mat< 4, 3, double, aligned_lowp > aligned_lowp_dmat4x3
4 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
packed_highp_mat4 packed_mat4
4 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
+
mat< 2, 2, float, aligned_highp > aligned_highp_mat2
2 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
vec< 2, float, aligned_mediump > aligned_mediump_vec2
2 components vector aligned in memory of single-precision floating-point numbers using medium precisi...
+
vec< 2, uint, packed_lowp > packed_lowp_uvec2
2 components vector tightly packed in memory of unsigned integer numbers.
+
vec< 2, int, aligned_lowp > aligned_lowp_ivec2
2 components vector aligned in memory of signed integer numbers.
+
mat< 3, 4, double, packed_lowp > packed_lowp_dmat3x4
3 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
packed_highp_dmat3x4 packed_dmat3x4
3 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
+
vec< 3, float, packed_mediump > packed_mediump_vec3
3 components vector tightly packed in memory of single-precision floating-point numbers using medium ...
+
packed_highp_mat3 packed_mat3
3 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
+
mat< 3, 4, double, aligned_highp > aligned_highp_dmat3x4
3 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
aligned_highp_mat3 aligned_mat3
3 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
+
packed_highp_dmat4x2 packed_dmat4x2
4 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
+
aligned_highp_mat2 aligned_mat2
2 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
+
aligned_highp_bvec1 aligned_bvec1
1 component vector aligned in memory of bool values.
+
vec< 2, bool, packed_highp > packed_highp_bvec2
2 components vector tightly packed in memory of bool values.
+
vec< 2, uint, aligned_lowp > aligned_lowp_uvec2
2 components vector aligned in memory of unsigned integer numbers.
+
packed_highp_dmat3x3 packed_dmat3x3
3 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
+
vec< 3, bool, packed_mediump > packed_mediump_bvec3
3 components vector tightly packed in memory of bool values.
+
vec< 1, double, aligned_lowp > aligned_lowp_dvec1
1 component vector aligned in memory of double-precision floating-point numbers using low precision a...
+
vec< 1, float, aligned_highp > aligned_highp_vec1
1 component vector aligned in memory of single-precision floating-point numbers using high precision ...
+
mat< 4, 4, float, packed_lowp > packed_lowp_mat4x4
4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
qua< float, aligned_mediump > aligned_mediump_quat
quaternion aligned in memory of single-precision floating-point numbers using medium precision arithm...
+
vec< 3, double, packed_highp > packed_highp_dvec3
3 components vector tightly packed in memory of double-precision floating-point numbers using high pr...
+
mat< 4, 4, double, aligned_highp > aligned_highp_dmat4
4 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
qua< float, packed_lowp > packed_lowp_quat
quaternion tightly packed in memory of single-precision floating-point numbers using low precision ar...
+
vec< 4, float, packed_lowp > packed_lowp_vec4
4 components vector tightly packed in memory of single-precision floating-point numbers using low pre...
+
packed_highp_vec4 packed_vec4
4 components vector tightly packed in memory of single-precision floating-point numbers.
+
vec< 4, double, aligned_highp > aligned_highp_dvec4
4 components vector aligned in memory of double-precision floating-point numbers using high precision...
+
mat< 4, 4, float, aligned_mediump > aligned_mediump_mat4x4
4 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
vec< 3, uint, packed_mediump > packed_mediump_uvec3
3 components vector tightly packed in memory of unsigned integer numbers.
+
vec< 3, uint, aligned_lowp > aligned_lowp_uvec3
3 components vector aligned in memory of unsigned integer numbers.
+
vec< 1, uint, packed_highp > packed_highp_uvec1
1 component vector tightly packed in memory of unsigned integer numbers.
+
aligned_highp_mat2x4 aligned_mat2x4
2 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
+
packed_highp_dmat2x3 packed_dmat2x3
2 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
+
vec< 3, float, aligned_highp > aligned_highp_vec3
3 components vector aligned in memory of single-precision floating-point numbers using high precision...
+
vec< 3, double, packed_lowp > packed_lowp_dvec3
3 components vector tightly packed in memory of double-precision floating-point numbers using low pre...
+
mat< 2, 3, float, aligned_mediump > aligned_mediump_mat2x3
2 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
mat< 4, 2, float, aligned_mediump > aligned_mediump_mat4x2
4 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
mat< 2, 2, double, aligned_highp > aligned_highp_dmat2
2 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
qua< double, packed_lowp > packed_lowp_dquat
quaternion tightly packed in memory of double-precision floating-point numbers using low precision ar...
+
mat< 4, 4, float, aligned_highp > aligned_highp_mat4x4
4 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
aligned_highp_mat2x2 aligned_mat2x2
2 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
+
vec< 4, int, aligned_highp > aligned_highp_ivec4
4 components vector aligned in memory of signed integer numbers.
+
packed_highp_mat2x3 packed_mat2x3
2 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
+
mat< 4, 2, double, packed_lowp > packed_lowp_dmat4x2
4 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
vec< 4, float, packed_mediump > packed_mediump_vec4
4 components vector tightly packed in memory of single-precision floating-point numbers using medium ...
+
mat< 2, 3, float, packed_mediump > packed_mediump_mat2x3
2 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
mat< 2, 2, float, packed_highp > packed_highp_mat2x2
2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
mat< 4, 3, double, aligned_highp > aligned_highp_dmat4x3
4 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
mat< 2, 2, float, aligned_mediump > aligned_mediump_mat2x2
2 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
vec< 2, double, aligned_mediump > aligned_mediump_dvec2
2 components vector aligned in memory of double-precision floating-point numbers using medium precisi...
+
packed_highp_ivec2 packed_ivec2
2 components vector tightly packed in memory of signed integer numbers.
+
vec< 1, bool, aligned_highp > aligned_highp_bvec1
1 component vector aligned in memory of bool values.
+
packed_highp_ivec1 packed_ivec1
1 component vector tightly packed in memory of signed integer numbers.
+
mat< 4, 4, double, packed_lowp > packed_lowp_dmat4
4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
mat< 4, 4, float, packed_highp > packed_highp_mat4
4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
packed_highp_uvec2 packed_uvec2
2 components vector tightly packed in memory of unsigned integer numbers.
+
mat< 3, 4, double, packed_mediump > packed_mediump_dmat3x4
3 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
mat< 2, 2, double, aligned_lowp > aligned_lowp_dmat2
2 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
vec< 2, int, packed_mediump > packed_mediump_ivec2
2 components vector tightly packed in memory of signed integer numbers.
+
vec< 3, bool, packed_highp > packed_highp_bvec3
3 components vector tightly packed in memory of bool values.
+
aligned_highp_mat3x4 aligned_mat3x4
3 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
+
vec< 3, int, aligned_highp > aligned_highp_ivec3
3 components vector aligned in memory of signed integer numbers.
+
mat< 2, 3, double, aligned_mediump > aligned_mediump_dmat2x3
2 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
aligned_highp_vec3 aligned_vec3
3 components vector aligned in memory of single-precision floating-point numbers.
+
vec< 3, int, packed_highp > packed_highp_ivec3
3 components vector tightly packed in memory of signed integer numbers.
+
vec< 4, uint, packed_mediump > packed_mediump_uvec4
4 components vector tightly packed in memory of unsigned integer numbers.
+
packed_highp_dquat packed_dquat
quaternion tightly packed in memory of double-precision floating-point numbers.
+
vec< 4, bool, aligned_lowp > aligned_lowp_bvec4
4 components vector aligned in memory of bool values.
+
packed_highp_ivec4 packed_ivec4
4 components vector tightly packed in memory of signed integer numbers.
+
packed_highp_dmat2 packed_dmat2
2 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
+
mat< 4, 4, float, packed_mediump > packed_mediump_mat4
4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
vec< 3, double, aligned_lowp > aligned_lowp_dvec3
3 components vector aligned in memory of double-precision floating-point numbers using low precision ...
+
vec< 2, uint, packed_highp > packed_highp_uvec2
2 components vector tightly packed in memory of unsigned integer numbers.
+
vec< 1, float, packed_highp > packed_highp_vec1
1 component vector tightly packed in memory of single-precision floating-point numbers using high pre...
+
vec< 4, int, aligned_lowp > aligned_lowp_ivec4
4 components vector aligned in memory of signed integer numbers.
+
aligned_highp_quat aligned_quat
quaternion tightly aligned in memory of single-precision floating-point numbers.
+
aligned_highp_dmat2x4 aligned_dmat2x4
2 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
+
vec< 1, uint, aligned_mediump > aligned_mediump_uvec1
1 component vector aligned in memory of unsigned integer numbers.
+
mat< 3, 4, float, packed_mediump > packed_mediump_mat3x4
3 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
packed_highp_ivec3 packed_ivec3
3 components vector tightly packed in memory of signed integer numbers.
+
mat< 4, 4, double, packed_mediump > packed_mediump_dmat4x4
4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
mat< 4, 2, double, aligned_mediump > aligned_mediump_dmat4x2
4 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
mat< 2, 2, double, packed_highp > packed_highp_dmat2
2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
vec< 3, bool, aligned_mediump > aligned_mediump_bvec3
3 components vector aligned in memory of bool values.
+
packed_highp_dmat2x4 packed_dmat2x4
2 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
+
mat< 4, 2, double, packed_highp > packed_highp_dmat4x2
4 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
vec< 1, float, packed_mediump > packed_mediump_vec1
1 component vector tightly packed in memory of single-precision floating-point numbers using medium p...
+
mat< 4, 2, float, packed_lowp > packed_lowp_mat4x2
4 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
mat< 3, 2, double, aligned_highp > aligned_highp_dmat3x2
3 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
mat< 2, 3, float, packed_highp > packed_highp_mat2x3
2 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
mat< 3, 3, float, aligned_highp > aligned_highp_mat3x3
3 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
aligned_highp_dvec1 aligned_dvec1
1 component vector aligned in memory of double-precision floating-point numbers.
+
mat< 2, 2, double, packed_highp > packed_highp_dmat2x2
2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
mat< 4, 4, float, packed_highp > packed_highp_mat4x4
4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
aligned_highp_dmat4x3 aligned_dmat4x3
4 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
+
qua< double, aligned_mediump > aligned_mediump_dquat
quaternion aligned in memory of double-precision floating-point numbers using medium precision arithm...
+
vec< 2, int, aligned_highp > aligned_highp_ivec2
2 components vector aligned in memory of signed integer numbers.
+
aligned_highp_mat4 aligned_mat4
4 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
+
mat< 4, 4, float, aligned_highp > aligned_highp_mat4
4 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
aligned_highp_ivec4 aligned_ivec4
4 components vector aligned in memory of signed integer numbers.
+
vec< 2, double, packed_lowp > packed_lowp_dvec2
2 components vector tightly packed in memory of double-precision floating-point numbers using low pre...
+
mat< 2, 2, double, aligned_lowp > aligned_lowp_dmat2x2
2 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
mat< 2, 2, float, aligned_highp > aligned_highp_mat2x2
2 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
mat< 4, 2, double, aligned_highp > aligned_highp_dmat4x2
4 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
mat< 4, 2, float, aligned_highp > aligned_highp_mat4x2
4 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
mat< 2, 2, float, aligned_mediump > aligned_mediump_mat2
2 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
vec< 4, bool, packed_highp > packed_highp_bvec4
4 components vector tightly packed in memory of bool values.
+
aligned_highp_ivec3 aligned_ivec3
3 components vector aligned in memory of signed integer numbers.
+
mat< 2, 4, double, aligned_lowp > aligned_lowp_dmat2x4
2 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
mat< 3, 3, float, aligned_highp > aligned_highp_mat3
3 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
aligned_highp_dmat2x2 aligned_dmat2x2
2 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
+
vec< 2, bool, packed_lowp > packed_lowp_bvec2
2 components vector tightly packed in memory of bool values.
+
aligned_highp_uvec3 aligned_uvec3
3 components vector aligned in memory of unsigned integer numbers.
+
mat< 4, 4, float, packed_lowp > packed_lowp_mat4
4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
vec< 4, int, packed_mediump > packed_mediump_ivec4
4 components vector tightly packed in memory of signed integer numbers.
+
vec< 3, bool, packed_lowp > packed_lowp_bvec3
3 components vector tightly packed in memory of bool values.
+
aligned_highp_dvec4 aligned_dvec4
4 components vector aligned in memory of double-precision floating-point numbers.
+
aligned_highp_dvec3 aligned_dvec3
3 components vector aligned in memory of double-precision floating-point numbers.
+
vec< 3, int, packed_mediump > packed_mediump_ivec3
3 components vector tightly packed in memory of signed integer numbers.
+
vec< 4, int, aligned_mediump > aligned_mediump_ivec4
4 components vector aligned in memory of signed integer numbers.
+
mat< 2, 4, double, packed_mediump > packed_mediump_dmat2x4
2 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
vec< 2, bool, aligned_highp > aligned_highp_bvec2
2 components vector aligned in memory of bool values.
+
vec< 1, bool, aligned_lowp > aligned_lowp_bvec1
1 component vector aligned in memory of bool values.
+
vec< 2, float, packed_mediump > packed_mediump_vec2
2 components vector tightly packed in memory of single-precision floating-point numbers using medium ...
+
mat< 3, 2, float, packed_lowp > packed_lowp_mat3x2
3 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
qua< float, aligned_lowp > aligned_lowp_quat
quaternion aligned in memory of single-precision floating-point numbers using low precision arithmeti...
+
packed_highp_dvec3 packed_dvec3
3 components vector tightly packed in memory of double-precision floating-point numbers.
+
mat< 2, 2, double, aligned_mediump > aligned_mediump_dmat2
2 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
aligned_highp_dvec2 aligned_dvec2
2 components vector aligned in memory of double-precision floating-point numbers.
+
mat< 4, 3, double, aligned_mediump > aligned_mediump_dmat4x3
4 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
vec< 1, double, aligned_highp > aligned_highp_dvec1
1 component vector aligned in memory of double-precision floating-point numbers using high precision ...
+
mat< 2, 2, double, packed_lowp > packed_lowp_dmat2x2
2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
packed_highp_dmat3x2 packed_dmat3x2
3 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
+
mat< 4, 4, float, packed_mediump > packed_mediump_mat4x4
4 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
mat< 4, 3, double, packed_highp > packed_highp_dmat4x3
4 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
mat< 4, 4, float, aligned_lowp > aligned_lowp_mat4
4 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
mat< 3, 2, float, aligned_mediump > aligned_mediump_mat3x2
3 by 2 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
vec< 1, bool, packed_lowp > packed_lowp_bvec1
1 component vector tightly packed in memory of bool values.
+
mat< 2, 4, float, packed_mediump > packed_mediump_mat2x4
2 by 4 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
mat< 3, 4, float, packed_lowp > packed_lowp_mat3x4
3 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
mat< 3, 3, float, packed_lowp > packed_lowp_mat3
3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
mat< 2, 4, double, aligned_mediump > aligned_mediump_dmat2x4
2 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
vec< 1, uint, aligned_lowp > aligned_lowp_uvec1
1 component vector aligned in memory of unsigned integer numbers.
+
aligned_highp_dmat2 aligned_dmat2
2 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
+
vec< 2, float, packed_highp > packed_highp_vec2
2 components vector tightly packed in memory of single-precision floating-point numbers using high pr...
+
mat< 4, 2, float, packed_highp > packed_highp_mat4x2
4 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
mat< 4, 2, float, aligned_lowp > aligned_lowp_mat4x2
4 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
mat< 4, 4, double, aligned_mediump > aligned_mediump_dmat4
4 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
mat< 4, 3, float, packed_lowp > packed_lowp_mat4x3
4 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
mat< 3, 2, double, aligned_lowp > aligned_lowp_dmat3x2
3 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
aligned_highp_vec4 aligned_vec4
4 components vector aligned in memory of single-precision floating-point numbers.
+
vec< 3, uint, packed_highp > packed_highp_uvec3
3 components vector tightly packed in memory of unsigned integer numbers.
+
aligned_highp_mat4x4 aligned_mat4x4
4 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
+
aligned_highp_dmat3x3 aligned_dmat3x3
3 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
+
aligned_highp_mat2x3 aligned_mat2x3
2 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
+
mat< 2, 3, double, aligned_lowp > aligned_lowp_dmat2x3
2 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
vec< 4, uint, packed_highp > packed_highp_uvec4
4 components vector tightly packed in memory of unsigned integer numbers.
+
mat< 3, 2, double, packed_lowp > packed_lowp_dmat3x2
3 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
packed_highp_uvec4 packed_uvec4
4 components vector tightly packed in memory of unsigned integer numbers.
+
aligned_highp_uvec4 aligned_uvec4
4 components vector aligned in memory of unsigned integer numbers.
+
mat< 3, 3, double, aligned_highp > aligned_highp_dmat3x3
3 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
mat< 2, 4, float, aligned_highp > aligned_highp_mat2x4
2 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
mat< 4, 4, double, aligned_highp > aligned_highp_dmat4x4
4 by 4 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
mat< 3, 3, double, aligned_mediump > aligned_mediump_dmat3x3
3 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
mat< 3, 3, double, aligned_lowp > aligned_lowp_dmat3
3 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
mat< 4, 2, double, aligned_lowp > aligned_lowp_dmat4x2
4 by 2 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
mat< 4, 4, double, packed_mediump > packed_mediump_dmat4
4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
vec< 3, int, aligned_mediump > aligned_mediump_ivec3
3 components vector aligned in memory of signed integer numbers.
+
mat< 3, 2, double, packed_highp > packed_highp_dmat3x2
3 by 2 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
vec< 2, int, packed_lowp > packed_lowp_ivec2
2 components vector tightly packed in memory of signed integer numbers.
+
mat< 4, 4, double, aligned_lowp > aligned_lowp_dmat4x4
4 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
vec< 2, uint, aligned_highp > aligned_highp_uvec2
2 components vector aligned in memory of unsigned integer numbers.
+
mat< 2, 3, double, packed_mediump > packed_mediump_dmat2x3
2 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
vec< 1, float, aligned_mediump > aligned_mediump_vec1
1 component vector aligned in memory of single-precision floating-point numbers using medium precisio...
+
mat< 2, 2, double, packed_mediump > packed_mediump_dmat2x2
2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
mat< 3, 2, float, aligned_highp > aligned_highp_mat3x2
3 by 2 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
vec< 1, uint, packed_mediump > packed_mediump_uvec1
1 component vector tightly packed in memory of unsigned integer numbers.
+
mat< 2, 4, float, packed_highp > packed_highp_mat2x4
2 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
packed_highp_mat4x3 packed_mat4x3
4 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
+
mat< 2, 4, float, packed_lowp > packed_lowp_mat2x4
2 by 4 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
vec< 3, double, aligned_highp > aligned_highp_dvec3
3 components vector aligned in memory of double-precision floating-point numbers using high precision...
+
vec< 3, int, packed_lowp > packed_lowp_ivec3
3 components vector tightly packed in memory of signed integer numbers.
+
mat< 4, 3, float, aligned_highp > aligned_highp_mat4x3
4 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
vec< 2, uint, packed_mediump > packed_mediump_uvec2
2 components vector tightly packed in memory of unsigned integer numbers.
+
qua< double, packed_mediump > packed_mediump_dquat
quaternion tightly packed in memory of double-precision floating-point numbers using medium precision...
+
mat< 2, 2, double, packed_lowp > packed_lowp_dmat2
2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
mat< 2, 2, float, aligned_lowp > aligned_lowp_mat2
2 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
mat< 2, 2, double, aligned_mediump > aligned_mediump_dmat2x2
2 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
vec< 1, uint, packed_lowp > packed_lowp_uvec1
1 component vector tightly packed in memory of unsigned integer numbers.
+
mat< 3, 3, float, aligned_lowp > aligned_lowp_mat3
3 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
vec< 4, double, packed_mediump > packed_mediump_dvec4
4 components vector tightly packed in memory of double-precision floating-point numbers using medium ...
+
vec< 4, uint, aligned_lowp > aligned_lowp_uvec4
4 components vector aligned in memory of unsigned integer numbers.
+
packed_highp_bvec3 packed_bvec3
3 components vector tightly packed in memory of bool values.
+
mat< 4, 4, float, aligned_lowp > aligned_lowp_mat4x4
4 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
vec< 2, bool, aligned_lowp > aligned_lowp_bvec2
2 components vector aligned in memory of bool values.
+
mat< 3, 3, double, packed_highp > packed_highp_dmat3
3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
qua< double, aligned_highp > aligned_highp_dquat
quaternion aligned in memory of double-precision floating-point numbers using high precision arithmet...
+
mat< 3, 3, float, aligned_mediump > aligned_mediump_mat3
3 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
mat< 4, 4, double, packed_highp > packed_highp_dmat4x4
4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
mat< 3, 3, float, packed_lowp > packed_lowp_mat3x3
3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
packed_highp_dmat3 packed_dmat3
3 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
+
mat< 2, 3, float, aligned_highp > aligned_highp_mat2x3
2 by 3 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
vec< 3, bool, aligned_lowp > aligned_lowp_bvec3
3 components vector aligned in memory of bool values.
+
vec< 3, float, aligned_mediump > aligned_mediump_vec3
3 components vector aligned in memory of single-precision floating-point numbers using medium precisi...
+
mat< 2, 4, float, aligned_mediump > aligned_mediump_mat2x4
2 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
packed_highp_mat2x4 packed_mat2x4
2 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
+
qua< double, aligned_lowp > aligned_lowp_dquat
quaternion aligned in memory of double-precision floating-point numbers using low precision arithmeti...
+
aligned_highp_dmat3 aligned_dmat3
3 by 3 matrix tightly aligned in memory of double-precision floating-point numbers.
+
vec< 3, float, aligned_lowp > aligned_lowp_vec3
3 components vector aligned in memory of single-precision floating-point numbers using low precision ...
+
vec< 4, bool, aligned_highp > aligned_highp_bvec4
4 components vector aligned in memory of bool values.
+
mat< 3, 3, double, aligned_mediump > aligned_mediump_dmat3
3 by 3 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
packed_highp_vec3 packed_vec3
3 components vector tightly packed in memory of single-precision floating-point numbers.
+
aligned_highp_uvec2 aligned_uvec2
2 components vector aligned in memory of unsigned integer numbers.
+
mat< 3, 3, double, packed_lowp > packed_lowp_dmat3x3
3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
vec< 4, uint, aligned_mediump > aligned_mediump_uvec4
4 components vector aligned in memory of unsigned integer numbers.
+
mat< 2, 3, float, aligned_lowp > aligned_lowp_mat2x3
2 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
vec< 4, uint, packed_lowp > packed_lowp_uvec4
4 components vector tightly packed in memory of unsigned integer numbers.
+
mat< 2, 2, float, packed_highp > packed_highp_mat2
2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
vec< 2, bool, packed_mediump > packed_mediump_bvec2
2 components vector tightly packed in memory of bool values.
+
mat< 3, 4, float, packed_highp > packed_highp_mat3x4
3 by 4 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
mat< 3, 4, double, packed_highp > packed_highp_dmat3x4
3 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
packed_highp_uvec3 packed_uvec3
3 components vector tightly packed in memory of unsigned integer numbers.
+
packed_highp_vec1 packed_vec1
1 component vector tightly packed in memory of single-precision floating-point numbers.
+
mat< 4, 3, float, packed_highp > packed_highp_mat4x3
4 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
mat< 3, 3, double, packed_lowp > packed_lowp_dmat3
3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
aligned_highp_vec2 aligned_vec2
2 components vector aligned in memory of single-precision floating-point numbers.
+
aligned_highp_mat4x3 aligned_mat4x3
4 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
+
mat< 3, 3, double, packed_mediump > packed_mediump_dmat3
3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
vec< 4, double, packed_highp > packed_highp_dvec4
4 components vector tightly packed in memory of double-precision floating-point numbers using high pr...
+
vec< 4, int, packed_lowp > packed_lowp_ivec4
4 components vector tightly packed in memory of signed integer numbers.
+
vec< 1, int, aligned_mediump > aligned_mediump_ivec1
1 component vector aligned in memory of signed integer numbers.
+
vec< 1, bool, packed_mediump > packed_mediump_bvec1
1 component vector tightly packed in memory of bool values.
+
mat< 3, 4, float, aligned_highp > aligned_highp_mat3x4
3 by 4 matrix aligned in memory of single-precision floating-point numbers using high precision arith...
+
vec< 1, float, aligned_lowp > aligned_lowp_vec1
1 component vector aligned in memory of single-precision floating-point numbers using low precision a...
+
aligned_highp_mat3x2 aligned_mat3x2
3 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
+
mat< 3, 3, float, packed_highp > packed_highp_mat3
3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
vec< 4, bool, aligned_mediump > aligned_mediump_bvec4
4 components vector aligned in memory of bool values.
+
packed_highp_mat4x2 packed_mat4x2
4 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
+
aligned_highp_dmat4x2 aligned_dmat4x2
4 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
+
vec< 4, double, aligned_mediump > aligned_mediump_dvec4
4 components vector aligned in memory of double-precision floating-point numbers using medium precisi...
+
mat< 2, 3, double, packed_highp > packed_highp_dmat2x3
2 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
vec< 4, float, aligned_mediump > aligned_mediump_vec4
4 components vector aligned in memory of single-precision floating-point numbers using medium precisi...
+
mat< 4, 4, double, packed_lowp > packed_lowp_dmat4x4
4 by 4 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
vec< 4, float, aligned_lowp > aligned_lowp_vec4
4 components vector aligned in memory of single-precision floating-point numbers using low precision ...
+
mat< 2, 2, float, packed_mediump > packed_mediump_mat2x2
2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
aligned_highp_bvec3 aligned_bvec3
3 components vector aligned in memory of bool values.
+
mat< 4, 4, double, aligned_mediump > aligned_mediump_dmat4x4
4 by 4 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
mat< 3, 3, float, packed_highp > packed_highp_mat3x3
3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using high precisio...
+
mat< 4, 2, float, packed_mediump > packed_mediump_mat4x2
4 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
vec< 4, bool, packed_mediump > packed_mediump_bvec4
4 components vector tightly packed in memory of bool values.
+
packed_highp_dmat4 packed_dmat4
4 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
+
packed_highp_dvec1 packed_dvec1
1 component vector tightly packed in memory of double-precision floating-point numbers.
+
mat< 3, 3, double, aligned_highp > aligned_highp_dmat3
3 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
vec< 1, double, aligned_mediump > aligned_mediump_dvec1
1 component vector aligned in memory of double-precision floating-point numbers using medium precisio...
+
vec< 2, float, aligned_lowp > aligned_lowp_vec2
2 components vector aligned in memory of single-precision floating-point numbers using low precision ...
+
vec< 1, int, packed_lowp > packed_lowp_ivec1
1 component vector tightly packed in memory of signed integer numbers.
+
mat< 2, 2, float, packed_lowp > packed_lowp_mat2x2
2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
qua< double, packed_highp > packed_highp_dquat
quaternion tightly packed in memory of double-precision floating-point numbers using high precision a...
+
vec< 3, uint, aligned_highp > aligned_highp_uvec3
3 components vector aligned in memory of unsigned integer numbers.
+
vec< 1, int, packed_mediump > packed_mediump_ivec1
1 component vector tightly packed in memory of signed integer numbers.
+
vec< 2, float, packed_lowp > packed_lowp_vec2
2 components vector tightly packed in memory of single-precision floating-point numbers using low pre...
+
mat< 4, 3, double, packed_mediump > packed_mediump_dmat4x3
4 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
vec< 2, int, packed_highp > packed_highp_ivec2
2 components vector tightly packed in memory of signed integer numbers.
+
mat< 4, 3, float, aligned_lowp > aligned_lowp_mat4x3
4 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
vec< 2, int, aligned_mediump > aligned_mediump_ivec2
2 components vector aligned in memory of signed integer numbers.
+
packed_highp_dmat4x4 packed_dmat4x4
4 by 4 matrix tightly packed in memory of double-precision floating-point numbers.
+
vec< 1, int, aligned_highp > aligned_highp_ivec1
1 component vector aligned in memory of signed integer numbers.
+
packed_highp_mat4x4 packed_mat4x4
4 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
+
mat< 2, 2, float, aligned_lowp > aligned_lowp_mat2x2
2 by 2 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
mat< 2, 3, double, aligned_highp > aligned_highp_dmat2x3
2 by 3 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
packed_highp_mat3x2 packed_mat3x2
3 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
+
vec< 4, double, aligned_lowp > aligned_lowp_dvec4
4 components vector aligned in memory of double-precision floating-point numbers using low precision ...
+
vec< 4, double, packed_lowp > packed_lowp_dvec4
4 components vector tightly packed in memory of double-precision floating-point numbers using low pre...
+
vec< 3, bool, aligned_highp > aligned_highp_bvec3
3 components vector aligned in memory of bool values.
+
aligned_highp_dmat4 aligned_dmat4
4 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
+
aligned_highp_dmat4x4 aligned_dmat4x4
4 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
+
packed_highp_uvec1 packed_uvec1
1 component vector tightly packed in memory of unsigned integer numbers.
+
vec< 1, uint, aligned_highp > aligned_highp_uvec1
1 component vector aligned in memory of unsigned integer numbers.
+
mat< 3, 3, double, packed_highp > packed_highp_dmat3x3
3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
vec< 1, bool, aligned_mediump > aligned_mediump_bvec1
1 component vector aligned in memory of bool values.
+
vec< 2, double, packed_mediump > packed_mediump_dvec2
2 components vector tightly packed in memory of double-precision floating-point numbers using medium ...
+
packed_highp_mat3x3 packed_mat3x3
3 by 3 matrix tightly packed in memory of single-precision floating-point numbers.
+
mat< 3, 3, float, aligned_mediump > aligned_mediump_mat3x3
3 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
vec< 4, float, packed_highp > packed_highp_vec4
4 components vector tightly packed in memory of single-precision floating-point numbers using high pr...
+
mat< 3, 2, double, packed_mediump > packed_mediump_dmat3x2
3 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
vec< 3, int, aligned_lowp > aligned_lowp_ivec3
3 components vector aligned in memory of signed integer numbers.
+
mat< 2, 4, float, aligned_lowp > aligned_lowp_mat2x4
2 by 4 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
mat< 2, 2, float, packed_lowp > packed_lowp_mat2
2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
packed_highp_dvec2 packed_dvec2
2 components vector tightly packed in memory of double-precision floating-point numbers.
+
mat< 4, 2, double, packed_mediump > packed_mediump_dmat4x2
4 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
packed_highp_dmat4x3 packed_dmat4x3
4 by 3 matrix tightly packed in memory of double-precision floating-point numbers.
+
vec< 1, int, aligned_lowp > aligned_lowp_ivec1
1 component vector aligned in memory of signed integer numbers.
+
mat< 2, 2, float, packed_mediump > packed_mediump_mat2
2 by 2 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
aligned_highp_mat4x2 aligned_mat4x2
4 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
+
packed_highp_dmat2x2 packed_dmat2x2
2 by 2 matrix tightly packed in memory of double-precision floating-point numbers.
+
mat< 4, 3, float, packed_mediump > packed_mediump_mat4x3
4 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
vec< 3, uint, packed_lowp > packed_lowp_uvec3
3 components vector tightly packed in memory of unsigned integer numbers.
+
packed_highp_mat2 packed_mat2
2 by 2 matrix tightly packed in memory of single-precision floating-point numbers.
+
vec< 2, double, aligned_lowp > aligned_lowp_dvec2
2 components vector aligned in memory of double-precision floating-point numbers using low precision ...
+
packed_highp_bvec1 packed_bvec1
1 components vector tightly packed in memory of bool values.
+
aligned_highp_ivec1 aligned_ivec1
1 component vector aligned in memory of signed integer numbers.
+
mat< 2, 3, float, packed_lowp > packed_lowp_mat2x3
2 by 3 matrix tightly packed in memory of single-precision floating-point numbers using low precision...
+
packed_highp_dvec4 packed_dvec4
4 components vector tightly packed in memory of double-precision floating-point numbers.
+
packed_highp_bvec4 packed_bvec4
4 components vector tightly packed in memory of bool values.
+
vec< 4, int, packed_highp > packed_highp_ivec4
4 components vector tightly packed in memory of signed integer numbers.
+
vec< 2, float, aligned_highp > aligned_highp_vec2
2 components vector aligned in memory of single-precision floating-point numbers using high precision...
+
vec< 1, double, packed_lowp > packed_lowp_dvec1
1 component vector tightly packed in memory of double-precision floating-point numbers using low prec...
+
vec< 4, float, aligned_highp > aligned_highp_vec4
4 components vector aligned in memory of single-precision floating-point numbers using high precision...
+
vec< 3, double, aligned_mediump > aligned_mediump_dvec3
3 components vector aligned in memory of double-precision floating-point numbers using medium precisi...
+
mat< 2, 3, double, packed_lowp > packed_lowp_dmat2x3
2 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
aligned_highp_dmat3x2 aligned_dmat3x2
3 by 2 matrix tightly aligned in memory of double-precision floating-point numbers.
+
vec< 2, uint, aligned_mediump > aligned_mediump_uvec2
2 components vector aligned in memory of unsigned integer numbers.
+
mat< 4, 3, float, aligned_mediump > aligned_mediump_mat4x3
4 by 3 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
aligned_highp_ivec2 aligned_ivec2
2 components vector aligned in memory of signed integer numbers.
+
vec< 3, double, packed_mediump > packed_mediump_dvec3
3 components vector tightly packed in memory of double-precision floating-point numbers using medium ...
+
qua< float, aligned_highp > aligned_highp_quat
quaternion aligned in memory of single-precision floating-point numbers using high precision arithmet...
+
mat< 2, 2, double, aligned_highp > aligned_highp_dmat2x2
2 by 2 matrix aligned in memory of double-precision floating-point numbers using high precision arith...
+
mat< 3, 4, double, aligned_lowp > aligned_lowp_dmat3x4
3 by 4 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+
packed_highp_quat packed_quat
quaternion tightly packed in memory of single-precision floating-point numbers.
+
mat< 3, 3, float, packed_mediump > packed_mediump_mat3x3
3 by 3 matrix tightly packed in memory of single-precision floating-point numbers using medium precis...
+
mat< 3, 4, float, aligned_mediump > aligned_mediump_mat3x4
3 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
aligned_highp_uvec1 aligned_uvec1
1 component vector aligned in memory of unsigned integer numbers.
+
qua< float, packed_highp > packed_highp_quat
quaternion tightly packed in memory of single-precision floating-point numbers using high precision a...
+
mat< 2, 2, double, packed_mediump > packed_mediump_dmat2
2 by 2 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
mat< 4, 3, double, packed_lowp > packed_lowp_dmat4x3
4 by 3 matrix tightly packed in memory of double-precision floating-point numbers using low precision...
+
vec< 1, bool, packed_highp > packed_highp_bvec1
1 component vector tightly packed in memory of bool values.
+
mat< 3, 3, float, aligned_lowp > aligned_lowp_mat3x3
3 by 3 matrix aligned in memory of single-precision floating-point numbers using low precision arithm...
+
mat< 4, 4, float, aligned_mediump > aligned_mediump_mat4
4 by 4 matrix aligned in memory of single-precision floating-point numbers using medium precision ari...
+
mat< 3, 2, double, aligned_mediump > aligned_mediump_dmat3x2
3 by 2 matrix aligned in memory of double-precision floating-point numbers using medium precision ari...
+
qua< float, packed_mediump > packed_mediump_quat
quaternion tightly packed in memory of single-precision floating-point numbers using medium precision...
+
packed_highp_mat3x4 packed_mat3x4
3 by 4 matrix tightly packed in memory of single-precision floating-point numbers.
+
packed_highp_vec2 packed_vec2
2 components vector tightly packed in memory of single-precision floating-point numbers.
+
vec< 1, double, packed_highp > packed_highp_dvec1
1 component vector tightly packed in memory of double-precision floating-point numbers using high pre...
+
aligned_highp_bvec2 aligned_bvec2
2 components vector aligned in memory of bool values.
+
mat< 2, 4, double, packed_highp > packed_highp_dmat2x4
2 by 4 matrix tightly packed in memory of double-precision floating-point numbers using high precisio...
+
mat< 3, 3, double, packed_mediump > packed_mediump_dmat3x3
3 by 3 matrix tightly packed in memory of double-precision floating-point numbers using medium precis...
+
vec< 3, float, packed_highp > packed_highp_vec3
3 components vector tightly packed in memory of single-precision floating-point numbers using high pr...
+
vec< 2, bool, aligned_mediump > aligned_mediump_bvec2
2 components vector aligned in memory of bool values.
+
vec< 2, double, packed_highp > packed_highp_dvec2
2 components vector tightly packed in memory of double-precision floating-point numbers using high pr...
+
aligned_highp_dmat3x4 aligned_dmat3x4
3 by 4 matrix tightly aligned in memory of double-precision floating-point numbers.
+
aligned_highp_dquat aligned_dquat
quaternion tightly aligned in memory of double-precision floating-point numbers.
+
vec< 1, int, packed_highp > packed_highp_ivec1
1 component vector tightly packed in memory of signed integer numbers.
+
mat< 3, 3, double, aligned_lowp > aligned_lowp_dmat3x3
3 by 3 matrix aligned in memory of double-precision floating-point numbers using low precision arithm...
+ + + + diff --git a/include/glm/doc/api/a01726.html b/include/glm/doc/api/a01726.html new file mode 100644 index 0000000..6eac251 --- /dev/null +++ b/include/glm/doc/api/a01726.html @@ -0,0 +1,717 @@ + + + + + + + +1.0.2 API documentation: type_aligned.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
gtx/type_aligned.hpp File Reference
+
+
+ +

GLM_GTX_type_aligned +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

 GLM_ALIGNED_TYPEDEF (dquat, aligned_dquat, 32)
 Double-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (dvec1, aligned_dvec1, 8)
 Double-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (dvec2, aligned_dvec2, 16)
 Double-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (dvec3, aligned_dvec3, 32)
 Double-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (dvec4, aligned_dvec4, 32)
 Double-qualifier floating-point aligned vector of 4 components. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat2x2, aligned_f32mat2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat2x2, aligned_f32mat2x2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat2x3, aligned_f32mat2x3, 16)
 Single-qualifier floating-point aligned 2x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat2x4, aligned_f32mat2x4, 16)
 Single-qualifier floating-point aligned 2x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat3x2, aligned_f32mat3x2, 16)
 Single-qualifier floating-point aligned 3x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat3x3, aligned_f32mat3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat3x3, aligned_f32mat3x3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat3x4, aligned_f32mat3x4, 16)
 Single-qualifier floating-point aligned 3x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat4x2, aligned_f32mat4x2, 16)
 Single-qualifier floating-point aligned 4x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat4x3, aligned_f32mat4x3, 16)
 Single-qualifier floating-point aligned 4x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat4x4, aligned_f32mat4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32mat4x4, aligned_f32mat4x4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f32quat, aligned_f32quat, 16)
 Single-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (f32vec1, aligned_f32vec1, 4)
 Single-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (f32vec2, aligned_f32vec2, 8)
 Single-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (f32vec3, aligned_f32vec3, 16)
 Single-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (f32vec4, aligned_f32vec4, 16)
 Single-qualifier floating-point aligned vector of 4 components. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat2x2, aligned_f64mat2, 32)
 Double-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat2x2, aligned_f64mat2x2, 32)
 Double-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat2x3, aligned_f64mat2x3, 32)
 Double-qualifier floating-point aligned 2x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat2x4, aligned_f64mat2x4, 32)
 Double-qualifier floating-point aligned 2x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat3x2, aligned_f64mat3x2, 32)
 Double-qualifier floating-point aligned 3x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat3x3, aligned_f64mat3, 32)
 Double-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat3x3, aligned_f64mat3x3, 32)
 Double-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat3x4, aligned_f64mat3x4, 32)
 Double-qualifier floating-point aligned 3x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat4x2, aligned_f64mat4x2, 32)
 Double-qualifier floating-point aligned 4x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat4x3, aligned_f64mat4x3, 32)
 Double-qualifier floating-point aligned 4x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat4x4, aligned_f64mat4, 32)
 Double-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64mat4x4, aligned_f64mat4x4, 32)
 Double-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (f64quat, aligned_f64quat, 32)
 Double-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (f64vec1, aligned_f64vec1, 8)
 Double-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (f64vec2, aligned_f64vec2, 16)
 Double-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (f64vec3, aligned_f64vec3, 32)
 Double-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (f64vec4, aligned_f64vec4, 32)
 Double-qualifier floating-point aligned vector of 4 components. More...
 
 GLM_ALIGNED_TYPEDEF (float32, aligned_f32, 4)
 32 bit single-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float32, aligned_float32, 4)
 32 bit single-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float32_t, aligned_float32_t, 4)
 32 bit single-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float64, aligned_f64, 8)
 64 bit double-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float64, aligned_float64, 8)
 64 bit double-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (float64_t, aligned_float64_t, 8)
 64 bit double-qualifier floating-point aligned scalar. More...
 
 GLM_ALIGNED_TYPEDEF (fmat2x2, aligned_fmat2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat2x2, aligned_fmat2x2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat2x3, aligned_fmat2x3, 16)
 Single-qualifier floating-point aligned 2x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat2x4, aligned_fmat2x4, 16)
 Single-qualifier floating-point aligned 2x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat3x2, aligned_fmat3x2, 16)
 Single-qualifier floating-point aligned 3x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat3x3, aligned_fmat3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat3x3, aligned_fmat3x3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat3x4, aligned_fmat3x4, 16)
 Single-qualifier floating-point aligned 3x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat4x2, aligned_fmat4x2, 16)
 Single-qualifier floating-point aligned 4x2 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat4x3, aligned_fmat4x3, 16)
 Single-qualifier floating-point aligned 4x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat4x4, aligned_fmat4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fmat4x4, aligned_fmat4x4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (fvec1, aligned_fvec1, 4)
 Single-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (fvec2, aligned_fvec2, 8)
 Single-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (fvec3, aligned_fvec3, 16)
 Single-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (fvec4, aligned_fvec4, 16)
 Single-qualifier floating-point aligned vector of 4 components. More...
 
 GLM_ALIGNED_TYPEDEF (highp_i16, aligned_highp_i16, 2)
 High qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_i32, aligned_highp_i32, 4)
 High qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_i64, aligned_highp_i64, 8)
 High qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_i8, aligned_highp_i8, 1)
 High qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int16, aligned_highp_int16, 2)
 High qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int16_t, aligned_highp_int16_t, 2)
 High qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int32, aligned_highp_int32, 4)
 High qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int32_t, aligned_highp_int32_t, 4)
 High qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int64, aligned_highp_int64, 8)
 High qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int64_t, aligned_highp_int64_t, 8)
 High qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int8, aligned_highp_int8, 1)
 High qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_int8_t, aligned_highp_int8_t, 1)
 High qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_u16, aligned_highp_u16, 2)
 High qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_u32, aligned_highp_u32, 4)
 High qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_u64, aligned_highp_u64, 8)
 High qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_u8, aligned_highp_u8, 1)
 High qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint16, aligned_highp_uint16, 2)
 High qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint16_t, aligned_highp_uint16_t, 2)
 High qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint32, aligned_highp_uint32, 4)
 High qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint32_t, aligned_highp_uint32_t, 4)
 High qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint64, aligned_highp_uint64, 8)
 High qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint64_t, aligned_highp_uint64_t, 8)
 High qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint8, aligned_highp_uint8, 1)
 High qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (highp_uint8_t, aligned_highp_uint8_t, 1)
 High qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i16, aligned_i16, 2)
 Default qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i16vec1, aligned_i16vec1, 2)
 Default qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i16vec2, aligned_i16vec2, 4)
 Default qualifier 16 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i16vec3, aligned_i16vec3, 8)
 Default qualifier 16 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i16vec4, aligned_i16vec4, 8)
 Default qualifier 16 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i32, aligned_i32, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i32vec1, aligned_i32vec1, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i32vec2, aligned_i32vec2, 8)
 Default qualifier 32 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i32vec3, aligned_i32vec3, 16)
 Default qualifier 32 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i32vec4, aligned_i32vec4, 16)
 Default qualifier 32 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i64, aligned_i64, 8)
 Default qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i64vec1, aligned_i64vec1, 8)
 Default qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i64vec2, aligned_i64vec2, 16)
 Default qualifier 64 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i64vec3, aligned_i64vec3, 32)
 Default qualifier 64 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i64vec4, aligned_i64vec4, 32)
 Default qualifier 64 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i8, aligned_i8, 1)
 Default qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i8vec1, aligned_i8vec1, 1)
 Default qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (i8vec2, aligned_i8vec2, 2)
 Default qualifier 8 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i8vec3, aligned_i8vec3, 4)
 Default qualifier 8 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (i8vec4, aligned_i8vec4, 4)
 Default qualifier 8 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (int16, aligned_int16, 2)
 Default qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int16_t, aligned_int16_t, 2)
 Default qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int32, aligned_int32, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int32_t, aligned_int32_t, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int64, aligned_int64, 8)
 Default qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int64_t, aligned_int64_t, 8)
 Default qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int8, aligned_int8, 1)
 Default qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (int8_t, aligned_int8_t, 1)
 Default qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (ivec1, aligned_ivec1, 4)
 Default qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (ivec2, aligned_ivec2, 8)
 Default qualifier 32 bit signed integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (ivec3, aligned_ivec3, 16)
 Default qualifier 32 bit signed integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (ivec4, aligned_ivec4, 16)
 Default qualifier 32 bit signed integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_i16, aligned_lowp_i16, 2)
 Low qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_i32, aligned_lowp_i32, 4)
 Low qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_i64, aligned_lowp_i64, 8)
 Low qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_i8, aligned_lowp_i8, 1)
 Low qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int16, aligned_lowp_int16, 2)
 Low qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int16_t, aligned_lowp_int16_t, 2)
 Low qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int32, aligned_lowp_int32, 4)
 Low qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int32_t, aligned_lowp_int32_t, 4)
 Low qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int64, aligned_lowp_int64, 8)
 Low qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int64_t, aligned_lowp_int64_t, 8)
 Low qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int8, aligned_lowp_int8, 1)
 Low qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_int8_t, aligned_lowp_int8_t, 1)
 Low qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_u16, aligned_lowp_u16, 2)
 Low qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_u32, aligned_lowp_u32, 4)
 Low qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_u64, aligned_lowp_u64, 8)
 Low qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_u8, aligned_lowp_u8, 1)
 Low qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint16, aligned_lowp_uint16, 2)
 Low qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint16_t, aligned_lowp_uint16_t, 2)
 Low qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint32, aligned_lowp_uint32, 4)
 Low qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint32_t, aligned_lowp_uint32_t, 4)
 Low qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint64, aligned_lowp_uint64, 8)
 Low qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint64_t, aligned_lowp_uint64_t, 8)
 Low qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint8, aligned_lowp_uint8, 1)
 Low qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (lowp_uint8_t, aligned_lowp_uint8_t, 1)
 Low qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mat2, aligned_mat2, 16)
 Single-qualifier floating-point aligned 1x1 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (mat3, aligned_mat3, 16)
 Single-qualifier floating-point aligned 3x3 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (mat4, aligned_mat4, 16)
 Single-qualifier floating-point aligned 4x4 matrix. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_i16, aligned_mediump_i16, 2)
 Medium qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_i32, aligned_mediump_i32, 4)
 Medium qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_i64, aligned_mediump_i64, 8)
 Medium qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_i8, aligned_mediump_i8, 1)
 Medium qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int16, aligned_mediump_int16, 2)
 Medium qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int16_t, aligned_mediump_int16_t, 2)
 Medium qualifier 16 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int32, aligned_mediump_int32, 4)
 Medium qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int32_t, aligned_mediump_int32_t, 4)
 Medium qualifier 32 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int64, aligned_mediump_int64, 8)
 Medium qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int64_t, aligned_mediump_int64_t, 8)
 Medium qualifier 64 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int8, aligned_mediump_int8, 1)
 Medium qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_int8_t, aligned_mediump_int8_t, 1)
 Medium qualifier 8 bit signed integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_u16, aligned_mediump_u16, 2)
 Medium qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_u32, aligned_mediump_u32, 4)
 Medium qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_u64, aligned_mediump_u64, 8)
 Medium qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_u8, aligned_mediump_u8, 1)
 Medium qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint16, aligned_mediump_uint16, 2)
 Medium qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint16_t, aligned_mediump_uint16_t, 2)
 Medium qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint32, aligned_mediump_uint32, 4)
 Medium qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint32_t, aligned_mediump_uint32_t, 4)
 Medium qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint64, aligned_mediump_uint64, 8)
 Medium qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint64_t, aligned_mediump_uint64_t, 8)
 Medium qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint8, aligned_mediump_uint8, 1)
 Medium qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (mediump_uint8_t, aligned_mediump_uint8_t, 1)
 Medium qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (quat, aligned_fquat, 16)
 Single-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (quat, aligned_quat, 16)
 Single-qualifier floating-point aligned quaternion. More...
 
 GLM_ALIGNED_TYPEDEF (u16, aligned_u16, 2)
 Default qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u16vec1, aligned_u16vec1, 2)
 Default qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u16vec2, aligned_u16vec2, 4)
 Default qualifier 16 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u16vec3, aligned_u16vec3, 8)
 Default qualifier 16 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u16vec4, aligned_u16vec4, 8)
 Default qualifier 16 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u32, aligned_u32, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u32vec1, aligned_u32vec1, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u32vec2, aligned_u32vec2, 8)
 Default qualifier 32 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u32vec3, aligned_u32vec3, 16)
 Default qualifier 32 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u32vec4, aligned_u32vec4, 16)
 Default qualifier 32 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u64, aligned_u64, 8)
 Default qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u64vec1, aligned_u64vec1, 8)
 Default qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u64vec2, aligned_u64vec2, 16)
 Default qualifier 64 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u64vec3, aligned_u64vec3, 32)
 Default qualifier 64 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u64vec4, aligned_u64vec4, 32)
 Default qualifier 64 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u8, aligned_u8, 1)
 Default qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u8vec1, aligned_u8vec1, 1)
 Default qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (u8vec2, aligned_u8vec2, 2)
 Default qualifier 8 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u8vec3, aligned_u8vec3, 4)
 Default qualifier 8 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (u8vec4, aligned_u8vec4, 4)
 Default qualifier 8 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (uint16, aligned_uint16, 2)
 Default qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint16_t, aligned_uint16_t, 2)
 Default qualifier 16 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint32, aligned_uint32, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint32_t, aligned_uint32_t, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint64, aligned_uint64, 8)
 Default qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint64_t, aligned_uint64_t, 8)
 Default qualifier 64 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint8, aligned_uint8, 1)
 Default qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uint8_t, aligned_uint8_t, 1)
 Default qualifier 8 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uvec1, aligned_uvec1, 4)
 Default qualifier 32 bit unsigned integer aligned scalar type. More...
 
 GLM_ALIGNED_TYPEDEF (uvec2, aligned_uvec2, 8)
 Default qualifier 32 bit unsigned integer aligned vector of 2 components type. More...
 
 GLM_ALIGNED_TYPEDEF (uvec3, aligned_uvec3, 16)
 Default qualifier 32 bit unsigned integer aligned vector of 3 components type. More...
 
 GLM_ALIGNED_TYPEDEF (uvec4, aligned_uvec4, 16)
 Default qualifier 32 bit unsigned integer aligned vector of 4 components type. More...
 
 GLM_ALIGNED_TYPEDEF (vec1, aligned_vec1, 4)
 Single-qualifier floating-point aligned vector of 1 component. More...
 
 GLM_ALIGNED_TYPEDEF (vec2, aligned_vec2, 8)
 Single-qualifier floating-point aligned vector of 2 components. More...
 
 GLM_ALIGNED_TYPEDEF (vec3, aligned_vec3, 16)
 Single-qualifier floating-point aligned vector of 3 components. More...
 
 GLM_ALIGNED_TYPEDEF (vec4, aligned_vec4, 16)
 Single-qualifier floating-point aligned vector of 4 components. More...
 
+

Detailed Description

+

GLM_GTX_type_aligned

+
See also
Core features (dependence)
+
+GLM_GTC_quaternion (dependence)
+ +

Definition in file gtx/type_aligned.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01726_source.html b/include/glm/doc/api/a01726_source.html new file mode 100644 index 0000000..2a79eff --- /dev/null +++ b/include/glm/doc/api/a01726_source.html @@ -0,0 +1,829 @@ + + + + + + + +1.0.2 API documentation: type_aligned.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtx/type_aligned.hpp
+
+
+Go to the documentation of this file.
1 
+
14 #pragma once
+
15 
+
16 // Dependency:
+
17 #include "../gtc/type_precision.hpp"
+
18 #include "../gtc/quaternion.hpp"
+
19 
+
20 #ifndef GLM_ENABLE_EXPERIMENTAL
+
21 # pragma message("GLM: GLM_GTX_type_aligned is an experimental extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it.")
+
22 #elif GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
23 # pragma message("GLM: GLM_GTX_type_aligned extension included")
+
24 #endif
+
25 
+
26 namespace glm
+
27 {
+
29  // Signed int vector types
+
30 
+
33 
+
36  GLM_ALIGNED_TYPEDEF(lowp_int8, aligned_lowp_int8, 1);
+
37 
+
40  GLM_ALIGNED_TYPEDEF(lowp_int16, aligned_lowp_int16, 2);
+
41 
+
44  GLM_ALIGNED_TYPEDEF(lowp_int32, aligned_lowp_int32, 4);
+
45 
+
48  GLM_ALIGNED_TYPEDEF(lowp_int64, aligned_lowp_int64, 8);
+
49 
+
50 
+
53  GLM_ALIGNED_TYPEDEF(lowp_int8_t, aligned_lowp_int8_t, 1);
+
54 
+
57  GLM_ALIGNED_TYPEDEF(lowp_int16_t, aligned_lowp_int16_t, 2);
+
58 
+
61  GLM_ALIGNED_TYPEDEF(lowp_int32_t, aligned_lowp_int32_t, 4);
+
62 
+
65  GLM_ALIGNED_TYPEDEF(lowp_int64_t, aligned_lowp_int64_t, 8);
+
66 
+
67 
+
70  GLM_ALIGNED_TYPEDEF(lowp_i8, aligned_lowp_i8, 1);
+
71 
+
74  GLM_ALIGNED_TYPEDEF(lowp_i16, aligned_lowp_i16, 2);
+
75 
+
78  GLM_ALIGNED_TYPEDEF(lowp_i32, aligned_lowp_i32, 4);
+
79 
+
82  GLM_ALIGNED_TYPEDEF(lowp_i64, aligned_lowp_i64, 8);
+
83 
+
84 
+
87  GLM_ALIGNED_TYPEDEF(mediump_int8, aligned_mediump_int8, 1);
+
88 
+
91  GLM_ALIGNED_TYPEDEF(mediump_int16, aligned_mediump_int16, 2);
+
92 
+
95  GLM_ALIGNED_TYPEDEF(mediump_int32, aligned_mediump_int32, 4);
+
96 
+
99  GLM_ALIGNED_TYPEDEF(mediump_int64, aligned_mediump_int64, 8);
+
100 
+
101 
+
104  GLM_ALIGNED_TYPEDEF(mediump_int8_t, aligned_mediump_int8_t, 1);
+
105 
+
108  GLM_ALIGNED_TYPEDEF(mediump_int16_t, aligned_mediump_int16_t, 2);
+
109 
+
112  GLM_ALIGNED_TYPEDEF(mediump_int32_t, aligned_mediump_int32_t, 4);
+
113 
+
116  GLM_ALIGNED_TYPEDEF(mediump_int64_t, aligned_mediump_int64_t, 8);
+
117 
+
118 
+
121  GLM_ALIGNED_TYPEDEF(mediump_i8, aligned_mediump_i8, 1);
+
122 
+
125  GLM_ALIGNED_TYPEDEF(mediump_i16, aligned_mediump_i16, 2);
+
126 
+
129  GLM_ALIGNED_TYPEDEF(mediump_i32, aligned_mediump_i32, 4);
+
130 
+
133  GLM_ALIGNED_TYPEDEF(mediump_i64, aligned_mediump_i64, 8);
+
134 
+
135 
+
138  GLM_ALIGNED_TYPEDEF(highp_int8, aligned_highp_int8, 1);
+
139 
+
142  GLM_ALIGNED_TYPEDEF(highp_int16, aligned_highp_int16, 2);
+
143 
+
146  GLM_ALIGNED_TYPEDEF(highp_int32, aligned_highp_int32, 4);
+
147 
+
150  GLM_ALIGNED_TYPEDEF(highp_int64, aligned_highp_int64, 8);
+
151 
+
152 
+
155  GLM_ALIGNED_TYPEDEF(highp_int8_t, aligned_highp_int8_t, 1);
+
156 
+
159  GLM_ALIGNED_TYPEDEF(highp_int16_t, aligned_highp_int16_t, 2);
+
160 
+
163  GLM_ALIGNED_TYPEDEF(highp_int32_t, aligned_highp_int32_t, 4);
+
164 
+
167  GLM_ALIGNED_TYPEDEF(highp_int64_t, aligned_highp_int64_t, 8);
+
168 
+
169 
+
172  GLM_ALIGNED_TYPEDEF(highp_i8, aligned_highp_i8, 1);
+
173 
+
176  GLM_ALIGNED_TYPEDEF(highp_i16, aligned_highp_i16, 2);
+
177 
+
180  GLM_ALIGNED_TYPEDEF(highp_i32, aligned_highp_i32, 4);
+
181 
+
184  GLM_ALIGNED_TYPEDEF(highp_i64, aligned_highp_i64, 8);
+
185 
+
186 
+
189  GLM_ALIGNED_TYPEDEF(int8, aligned_int8, 1);
+
190 
+
193  GLM_ALIGNED_TYPEDEF(int16, aligned_int16, 2);
+
194 
+
197  GLM_ALIGNED_TYPEDEF(int32, aligned_int32, 4);
+
198 
+
201  GLM_ALIGNED_TYPEDEF(int64, aligned_int64, 8);
+
202 
+
203 
+
206  GLM_ALIGNED_TYPEDEF(int8_t, aligned_int8_t, 1);
+
207 
+
210  GLM_ALIGNED_TYPEDEF(int16_t, aligned_int16_t, 2);
+
211 
+
214  GLM_ALIGNED_TYPEDEF(int32_t, aligned_int32_t, 4);
+
215 
+
218  GLM_ALIGNED_TYPEDEF(int64_t, aligned_int64_t, 8);
+
219 
+
220 
+
223  GLM_ALIGNED_TYPEDEF(i8, aligned_i8, 1);
+
224 
+
227  GLM_ALIGNED_TYPEDEF(i16, aligned_i16, 2);
+
228 
+
231  GLM_ALIGNED_TYPEDEF(i32, aligned_i32, 4);
+
232 
+
235  GLM_ALIGNED_TYPEDEF(i64, aligned_i64, 8);
+
236 
+
237 
+ +
241 
+ +
245 
+ +
249 
+ +
253 
+
254 
+
257  GLM_ALIGNED_TYPEDEF(i8vec1, aligned_i8vec1, 1);
+
258 
+
261  GLM_ALIGNED_TYPEDEF(i8vec2, aligned_i8vec2, 2);
+
262 
+
265  GLM_ALIGNED_TYPEDEF(i8vec3, aligned_i8vec3, 4);
+
266 
+
269  GLM_ALIGNED_TYPEDEF(i8vec4, aligned_i8vec4, 4);
+
270 
+
271 
+
274  GLM_ALIGNED_TYPEDEF(i16vec1, aligned_i16vec1, 2);
+
275 
+
278  GLM_ALIGNED_TYPEDEF(i16vec2, aligned_i16vec2, 4);
+
279 
+
282  GLM_ALIGNED_TYPEDEF(i16vec3, aligned_i16vec3, 8);
+
283 
+
286  GLM_ALIGNED_TYPEDEF(i16vec4, aligned_i16vec4, 8);
+
287 
+
288 
+
291  GLM_ALIGNED_TYPEDEF(i32vec1, aligned_i32vec1, 4);
+
292 
+
295  GLM_ALIGNED_TYPEDEF(i32vec2, aligned_i32vec2, 8);
+
296 
+
299  GLM_ALIGNED_TYPEDEF(i32vec3, aligned_i32vec3, 16);
+
300 
+
303  GLM_ALIGNED_TYPEDEF(i32vec4, aligned_i32vec4, 16);
+
304 
+
305 
+
308  GLM_ALIGNED_TYPEDEF(i64vec1, aligned_i64vec1, 8);
+
309 
+
312  GLM_ALIGNED_TYPEDEF(i64vec2, aligned_i64vec2, 16);
+
313 
+
316  GLM_ALIGNED_TYPEDEF(i64vec3, aligned_i64vec3, 32);
+
317 
+
320  GLM_ALIGNED_TYPEDEF(i64vec4, aligned_i64vec4, 32);
+
321 
+
322 
+
324  // Unsigned int vector types
+
325 
+
328  GLM_ALIGNED_TYPEDEF(lowp_uint8, aligned_lowp_uint8, 1);
+
329 
+
332  GLM_ALIGNED_TYPEDEF(lowp_uint16, aligned_lowp_uint16, 2);
+
333 
+
336  GLM_ALIGNED_TYPEDEF(lowp_uint32, aligned_lowp_uint32, 4);
+
337 
+
340  GLM_ALIGNED_TYPEDEF(lowp_uint64, aligned_lowp_uint64, 8);
+
341 
+
342 
+
345  GLM_ALIGNED_TYPEDEF(lowp_uint8_t, aligned_lowp_uint8_t, 1);
+
346 
+
349  GLM_ALIGNED_TYPEDEF(lowp_uint16_t, aligned_lowp_uint16_t, 2);
+
350 
+
353  GLM_ALIGNED_TYPEDEF(lowp_uint32_t, aligned_lowp_uint32_t, 4);
+
354 
+
357  GLM_ALIGNED_TYPEDEF(lowp_uint64_t, aligned_lowp_uint64_t, 8);
+
358 
+
359 
+
362  GLM_ALIGNED_TYPEDEF(lowp_u8, aligned_lowp_u8, 1);
+
363 
+
366  GLM_ALIGNED_TYPEDEF(lowp_u16, aligned_lowp_u16, 2);
+
367 
+
370  GLM_ALIGNED_TYPEDEF(lowp_u32, aligned_lowp_u32, 4);
+
371 
+
374  GLM_ALIGNED_TYPEDEF(lowp_u64, aligned_lowp_u64, 8);
+
375 
+
376 
+
379  GLM_ALIGNED_TYPEDEF(mediump_uint8, aligned_mediump_uint8, 1);
+
380 
+
383  GLM_ALIGNED_TYPEDEF(mediump_uint16, aligned_mediump_uint16, 2);
+
384 
+
387  GLM_ALIGNED_TYPEDEF(mediump_uint32, aligned_mediump_uint32, 4);
+
388 
+
391  GLM_ALIGNED_TYPEDEF(mediump_uint64, aligned_mediump_uint64, 8);
+
392 
+
393 
+
396  GLM_ALIGNED_TYPEDEF(mediump_uint8_t, aligned_mediump_uint8_t, 1);
+
397 
+
400  GLM_ALIGNED_TYPEDEF(mediump_uint16_t, aligned_mediump_uint16_t, 2);
+
401 
+
404  GLM_ALIGNED_TYPEDEF(mediump_uint32_t, aligned_mediump_uint32_t, 4);
+
405 
+
408  GLM_ALIGNED_TYPEDEF(mediump_uint64_t, aligned_mediump_uint64_t, 8);
+
409 
+
410 
+
413  GLM_ALIGNED_TYPEDEF(mediump_u8, aligned_mediump_u8, 1);
+
414 
+
417  GLM_ALIGNED_TYPEDEF(mediump_u16, aligned_mediump_u16, 2);
+
418 
+
421  GLM_ALIGNED_TYPEDEF(mediump_u32, aligned_mediump_u32, 4);
+
422 
+
425  GLM_ALIGNED_TYPEDEF(mediump_u64, aligned_mediump_u64, 8);
+
426 
+
427 
+
430  GLM_ALIGNED_TYPEDEF(highp_uint8, aligned_highp_uint8, 1);
+
431 
+
434  GLM_ALIGNED_TYPEDEF(highp_uint16, aligned_highp_uint16, 2);
+
435 
+
438  GLM_ALIGNED_TYPEDEF(highp_uint32, aligned_highp_uint32, 4);
+
439 
+
442  GLM_ALIGNED_TYPEDEF(highp_uint64, aligned_highp_uint64, 8);
+
443 
+
444 
+
447  GLM_ALIGNED_TYPEDEF(highp_uint8_t, aligned_highp_uint8_t, 1);
+
448 
+
451  GLM_ALIGNED_TYPEDEF(highp_uint16_t, aligned_highp_uint16_t, 2);
+
452 
+
455  GLM_ALIGNED_TYPEDEF(highp_uint32_t, aligned_highp_uint32_t, 4);
+
456 
+
459  GLM_ALIGNED_TYPEDEF(highp_uint64_t, aligned_highp_uint64_t, 8);
+
460 
+
461 
+
464  GLM_ALIGNED_TYPEDEF(highp_u8, aligned_highp_u8, 1);
+
465 
+
468  GLM_ALIGNED_TYPEDEF(highp_u16, aligned_highp_u16, 2);
+
469 
+
472  GLM_ALIGNED_TYPEDEF(highp_u32, aligned_highp_u32, 4);
+
473 
+
476  GLM_ALIGNED_TYPEDEF(highp_u64, aligned_highp_u64, 8);
+
477 
+
478 
+
481  GLM_ALIGNED_TYPEDEF(uint8, aligned_uint8, 1);
+
482 
+
485  GLM_ALIGNED_TYPEDEF(uint16, aligned_uint16, 2);
+
486 
+
489  GLM_ALIGNED_TYPEDEF(uint32, aligned_uint32, 4);
+
490 
+
493  GLM_ALIGNED_TYPEDEF(uint64, aligned_uint64, 8);
+
494 
+
495 
+
498  GLM_ALIGNED_TYPEDEF(uint8_t, aligned_uint8_t, 1);
+
499 
+
502  GLM_ALIGNED_TYPEDEF(uint16_t, aligned_uint16_t, 2);
+
503 
+
506  GLM_ALIGNED_TYPEDEF(uint32_t, aligned_uint32_t, 4);
+
507 
+
510  GLM_ALIGNED_TYPEDEF(uint64_t, aligned_uint64_t, 8);
+
511 
+
512 
+
515  GLM_ALIGNED_TYPEDEF(u8, aligned_u8, 1);
+
516 
+
519  GLM_ALIGNED_TYPEDEF(u16, aligned_u16, 2);
+
520 
+
523  GLM_ALIGNED_TYPEDEF(u32, aligned_u32, 4);
+
524 
+
527  GLM_ALIGNED_TYPEDEF(u64, aligned_u64, 8);
+
528 
+
529 
+ +
533 
+ +
537 
+ +
541 
+ +
545 
+
546 
+
549  GLM_ALIGNED_TYPEDEF(u8vec1, aligned_u8vec1, 1);
+
550 
+
553  GLM_ALIGNED_TYPEDEF(u8vec2, aligned_u8vec2, 2);
+
554 
+
557  GLM_ALIGNED_TYPEDEF(u8vec3, aligned_u8vec3, 4);
+
558 
+
561  GLM_ALIGNED_TYPEDEF(u8vec4, aligned_u8vec4, 4);
+
562 
+
563 
+
566  GLM_ALIGNED_TYPEDEF(u16vec1, aligned_u16vec1, 2);
+
567 
+
570  GLM_ALIGNED_TYPEDEF(u16vec2, aligned_u16vec2, 4);
+
571 
+
574  GLM_ALIGNED_TYPEDEF(u16vec3, aligned_u16vec3, 8);
+
575 
+
578  GLM_ALIGNED_TYPEDEF(u16vec4, aligned_u16vec4, 8);
+
579 
+
580 
+
583  GLM_ALIGNED_TYPEDEF(u32vec1, aligned_u32vec1, 4);
+
584 
+
587  GLM_ALIGNED_TYPEDEF(u32vec2, aligned_u32vec2, 8);
+
588 
+
591  GLM_ALIGNED_TYPEDEF(u32vec3, aligned_u32vec3, 16);
+
592 
+
595  GLM_ALIGNED_TYPEDEF(u32vec4, aligned_u32vec4, 16);
+
596 
+
597 
+
600  GLM_ALIGNED_TYPEDEF(u64vec1, aligned_u64vec1, 8);
+
601 
+
604  GLM_ALIGNED_TYPEDEF(u64vec2, aligned_u64vec2, 16);
+
605 
+
608  GLM_ALIGNED_TYPEDEF(u64vec3, aligned_u64vec3, 32);
+
609 
+
612  GLM_ALIGNED_TYPEDEF(u64vec4, aligned_u64vec4, 32);
+
613 
+
614 
+
616  // Float vector types
+
617 
+
620  GLM_ALIGNED_TYPEDEF(float32, aligned_float32, 4);
+
621 
+
624  GLM_ALIGNED_TYPEDEF(float32_t, aligned_float32_t, 4);
+
625 
+
628  GLM_ALIGNED_TYPEDEF(float32, aligned_f32, 4);
+
629 
+
630 # ifndef GLM_FORCE_SINGLE_ONLY
+
631 
+
634  GLM_ALIGNED_TYPEDEF(float64, aligned_float64, 8);
+
635 
+
638  GLM_ALIGNED_TYPEDEF(float64_t, aligned_float64_t, 8);
+
639 
+
642  GLM_ALIGNED_TYPEDEF(float64, aligned_f64, 8);
+
643 
+
644 # endif//GLM_FORCE_SINGLE_ONLY
+
645 
+
646 
+ +
650 
+ +
654 
+ +
658 
+ +
662 
+
663 
+
666  GLM_ALIGNED_TYPEDEF(fvec1, aligned_fvec1, 4);
+
667 
+
670  GLM_ALIGNED_TYPEDEF(fvec2, aligned_fvec2, 8);
+
671 
+
674  GLM_ALIGNED_TYPEDEF(fvec3, aligned_fvec3, 16);
+
675 
+
678  GLM_ALIGNED_TYPEDEF(fvec4, aligned_fvec4, 16);
+
679 
+
680 
+
683  GLM_ALIGNED_TYPEDEF(f32vec1, aligned_f32vec1, 4);
+
684 
+
687  GLM_ALIGNED_TYPEDEF(f32vec2, aligned_f32vec2, 8);
+
688 
+
691  GLM_ALIGNED_TYPEDEF(f32vec3, aligned_f32vec3, 16);
+
692 
+
695  GLM_ALIGNED_TYPEDEF(f32vec4, aligned_f32vec4, 16);
+
696 
+
697 
+ +
701 
+ +
705 
+ +
709 
+ +
713 
+
714 
+
715 # ifndef GLM_FORCE_SINGLE_ONLY
+
716 
+
719  GLM_ALIGNED_TYPEDEF(f64vec1, aligned_f64vec1, 8);
+
720 
+
723  GLM_ALIGNED_TYPEDEF(f64vec2, aligned_f64vec2, 16);
+
724 
+
727  GLM_ALIGNED_TYPEDEF(f64vec3, aligned_f64vec3, 32);
+
728 
+
731  GLM_ALIGNED_TYPEDEF(f64vec4, aligned_f64vec4, 32);
+
732 
+
733 # endif//GLM_FORCE_SINGLE_ONLY
+
734 
+
736  // Float matrix types
+
737 
+
740  //typedef detail::tmat1<f32> mat1;
+
741 
+ +
745 
+ +
749 
+ +
753 
+
754 
+
757  //typedef detail::tmat1x1<f32> mat1;
+
758 
+ +
762 
+ +
766 
+ +
770 
+
771 
+
774  //typedef detail::tmat1x1<f32> fmat1;
+
775 
+
778  GLM_ALIGNED_TYPEDEF(fmat2x2, aligned_fmat2, 16);
+
779 
+
782  GLM_ALIGNED_TYPEDEF(fmat3x3, aligned_fmat3, 16);
+
783 
+
786  GLM_ALIGNED_TYPEDEF(fmat4x4, aligned_fmat4, 16);
+
787 
+
788 
+
791  //typedef f32 fmat1x1;
+
792 
+
795  GLM_ALIGNED_TYPEDEF(fmat2x2, aligned_fmat2x2, 16);
+
796 
+
799  GLM_ALIGNED_TYPEDEF(fmat2x3, aligned_fmat2x3, 16);
+
800 
+
803  GLM_ALIGNED_TYPEDEF(fmat2x4, aligned_fmat2x4, 16);
+
804 
+
807  GLM_ALIGNED_TYPEDEF(fmat3x2, aligned_fmat3x2, 16);
+
808 
+
811  GLM_ALIGNED_TYPEDEF(fmat3x3, aligned_fmat3x3, 16);
+
812 
+
815  GLM_ALIGNED_TYPEDEF(fmat3x4, aligned_fmat3x4, 16);
+
816 
+
819  GLM_ALIGNED_TYPEDEF(fmat4x2, aligned_fmat4x2, 16);
+
820 
+
823  GLM_ALIGNED_TYPEDEF(fmat4x3, aligned_fmat4x3, 16);
+
824 
+
827  GLM_ALIGNED_TYPEDEF(fmat4x4, aligned_fmat4x4, 16);
+
828 
+
829 
+
832  //typedef detail::tmat1x1<f32, defaultp> f32mat1;
+
833 
+
836  GLM_ALIGNED_TYPEDEF(f32mat2x2, aligned_f32mat2, 16);
+
837 
+
840  GLM_ALIGNED_TYPEDEF(f32mat3x3, aligned_f32mat3, 16);
+
841 
+
844  GLM_ALIGNED_TYPEDEF(f32mat4x4, aligned_f32mat4, 16);
+
845 
+
846 
+
849  //typedef f32 f32mat1x1;
+
850 
+
853  GLM_ALIGNED_TYPEDEF(f32mat2x2, aligned_f32mat2x2, 16);
+
854 
+
857  GLM_ALIGNED_TYPEDEF(f32mat2x3, aligned_f32mat2x3, 16);
+
858 
+
861  GLM_ALIGNED_TYPEDEF(f32mat2x4, aligned_f32mat2x4, 16);
+
862 
+
865  GLM_ALIGNED_TYPEDEF(f32mat3x2, aligned_f32mat3x2, 16);
+
866 
+
869  GLM_ALIGNED_TYPEDEF(f32mat3x3, aligned_f32mat3x3, 16);
+
870 
+
873  GLM_ALIGNED_TYPEDEF(f32mat3x4, aligned_f32mat3x4, 16);
+
874 
+
877  GLM_ALIGNED_TYPEDEF(f32mat4x2, aligned_f32mat4x2, 16);
+
878 
+
881  GLM_ALIGNED_TYPEDEF(f32mat4x3, aligned_f32mat4x3, 16);
+
882 
+
885  GLM_ALIGNED_TYPEDEF(f32mat4x4, aligned_f32mat4x4, 16);
+
886 
+
887 
+
888 # ifndef GLM_FORCE_SINGLE_ONLY
+
889 
+
892  //typedef detail::tmat1x1<f64, defaultp> f64mat1;
+
893 
+
896  GLM_ALIGNED_TYPEDEF(f64mat2x2, aligned_f64mat2, 32);
+
897 
+
900  GLM_ALIGNED_TYPEDEF(f64mat3x3, aligned_f64mat3, 32);
+
901 
+
904  GLM_ALIGNED_TYPEDEF(f64mat4x4, aligned_f64mat4, 32);
+
905 
+
906 
+
909  //typedef f64 f64mat1x1;
+
910 
+
913  GLM_ALIGNED_TYPEDEF(f64mat2x2, aligned_f64mat2x2, 32);
+
914 
+
917  GLM_ALIGNED_TYPEDEF(f64mat2x3, aligned_f64mat2x3, 32);
+
918 
+
921  GLM_ALIGNED_TYPEDEF(f64mat2x4, aligned_f64mat2x4, 32);
+
922 
+
925  GLM_ALIGNED_TYPEDEF(f64mat3x2, aligned_f64mat3x2, 32);
+
926 
+
929  GLM_ALIGNED_TYPEDEF(f64mat3x3, aligned_f64mat3x3, 32);
+
930 
+
933  GLM_ALIGNED_TYPEDEF(f64mat3x4, aligned_f64mat3x4, 32);
+
934 
+
937  GLM_ALIGNED_TYPEDEF(f64mat4x2, aligned_f64mat4x2, 32);
+
938 
+
941  GLM_ALIGNED_TYPEDEF(f64mat4x3, aligned_f64mat4x3, 32);
+
942 
+
945  GLM_ALIGNED_TYPEDEF(f64mat4x4, aligned_f64mat4x4, 32);
+
946 
+
947 # endif//GLM_FORCE_SINGLE_ONLY
+
948 
+
949 
+
951  // Quaternion types
+
952 
+ +
956 
+
959  GLM_ALIGNED_TYPEDEF(quat, aligned_fquat, 16);
+
960 
+ +
964 
+
967  GLM_ALIGNED_TYPEDEF(f32quat, aligned_f32quat, 16);
+
968 
+
969 # ifndef GLM_FORCE_SINGLE_ONLY
+
970 
+
973  GLM_ALIGNED_TYPEDEF(f64quat, aligned_f64quat, 32);
+
974 
+
975 # endif//GLM_FORCE_SINGLE_ONLY
+
976 
+
978 }//namespace glm
+
979 
+
980 #include "type_aligned.inl"
+
+
vec< 2, int16, defaultp > i16vec2
16 bit signed integer vector of 2 components type.
+
mat< 3, 3, float, defaultp > mat3
3 columns of 3 components matrix of single-precision floating-point numbers.
+
uint64 uint64_t
Default qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:145
+
uint64 u64
Default qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:136
+
mat< 2, 3, f64, defaultp > f64mat2x3
Double-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:783
+
mat< 2, 2, f64, defaultp > f64mat2x2
Double-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:782
+
vec< 3, unsigned int, defaultp > uvec3
3 components vector of unsigned integer numbers.
+
aligned_highp_mat3x3 aligned_mat3x3
3 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
+
mat< 4, 2, f32, defaultp > f32mat4x2
Single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:708
+
qua< double, defaultp > dquat
Quaternion of double-precision floating-point numbers.
+
int16 mediump_int16_t
Medium qualifier 16 bit signed integer type.
Definition: fwd.hpp:55
+
int64 mediump_int64
Medium qualifier 64 bit signed integer type.
Definition: fwd.hpp:79
+
int32 highp_i32
High qualifier 32 bit signed integer type.
Definition: fwd.hpp:61
+
mat< 2, 3, f32, defaultp > f32mat2x3
Single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:703
+
int16 highp_i16
High qualifier 16 bit signed integer type.
Definition: fwd.hpp:47
+
uint16 mediump_u16
Medium qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:106
+
mat< 4, 3, f32, defaultp > fmat4x3
Single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:669
+
detail::uint32 uint32
32 bit unsigned integer type.
+
uint32 mediump_uint32
Medium qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:125
+
aligned_highp_vec1 aligned_vec1
1 component vector aligned in memory of single-precision floating-point numbers.
+
uint64 highp_uint64
High qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:140
+
int8 mediump_int8
Medium qualifier 8 bit signed integer type.
Definition: fwd.hpp:37
+
vec< 4, int, defaultp > ivec4
4 components vector of signed integer numbers.
Definition: vector_int4.hpp:15
+
vec< 3, f64, defaultp > f64vec3
Double-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:505
+
vec< 2, unsigned int, defaultp > uvec2
2 components vector of unsigned integer numbers.
+
int64 lowp_i64
Low qualifier 64 bit signed integer type.
Definition: fwd.hpp:73
+
int32 highp_int32
High qualifier 32 bit signed integer type.
Definition: fwd.hpp:66
+
aligned_highp_mat3 aligned_mat3
3 by 3 matrix tightly aligned in memory of single-precision floating-point numbers.
+
int8 mediump_int8_t
Medium qualifier 8 bit signed integer type.
Definition: fwd.hpp:41
+
int16 highp_int16_t
High qualifier 16 bit signed integer type.
Definition: fwd.hpp:56
+
int64 lowp_int64_t
Low qualifier 64 bit signed integer type.
Definition: fwd.hpp:82
+
aligned_highp_mat2 aligned_mat2
2 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
+
vec< 2, uint16, defaultp > u16vec2
16 bit unsigned integer vector of 2 components type.
+
vec< 2, int64, defaultp > i64vec2
64 bit signed integer vector of 2 components type.
+
vec< 4, uint8, defaultp > u8vec4
8 bit unsigned integer vector of 4 components type.
+
int32 mediump_int32
Medium qualifier 32 bit signed integer type.
Definition: fwd.hpp:65
+
uint32 u32
Default qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:122
+
double float64
Double-qualifier floating-point scalar.
Definition: fwd.hpp:173
+
vec< 3, int8, defaultp > i8vec3
8 bit signed integer vector of 3 components type.
+
uint16 lowp_uint16
Low qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:110
+
uint32 highp_uint32_t
High qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:130
+
vec< 2, int32, defaultp > i32vec2
32 bit signed integer vector of 2 components type.
+
mat< 2, 4, f32, defaultp > fmat2x4
Single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:664
+
int8 lowp_i8
Low qualifier 8 bit signed integer type.
Definition: fwd.hpp:31
+
uint16 uint16_t
Default qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:117
+
uint8 u8
Default qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:94
+
qua< f64, defaultp > f64quat
Double-qualifier floating-point quaternion.
Definition: fwd.hpp:1230
+
aligned_highp_mat2x2 aligned_mat2x2
2 by 2 matrix tightly aligned in memory of single-precision floating-point numbers.
+
int64 lowp_int64
Low qualifier 64 bit signed integer type.
Definition: fwd.hpp:78
+
mat< 2, 3, f32, defaultp > fmat2x3
Single-qualifier floating-point 2x3 matrix.
Definition: fwd.hpp:663
+
mat< 4, 4, float, defaultp > mat4
4 columns of 4 components matrix of single-precision floating-point numbers.
+
mat< 4, 3, f32, defaultp > f32mat4x3
Single-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:709
+
int16 lowp_i16
Low qualifier 16 bit signed integer type.
Definition: fwd.hpp:45
+
int32 lowp_i32
Low qualifier 32 bit signed integer type.
Definition: fwd.hpp:59
+
int32 mediump_i32
Medium qualifier 32 bit signed integer type.
Definition: fwd.hpp:60
+
vec< 1, uint8, defaultp > u8vec1
8 bit unsigned integer vector of 1 component type.
+
int8 lowp_int8
Low qualifier 8 bit signed integer type.
Definition: fwd.hpp:36
+
uint64 mediump_uint64
Medium qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:139
+
detail::int16 int16
16 bit signed integer type.
+
vec< 1, int16, defaultp > i16vec1
16 bit signed integer vector of 1 component type.
+
mat< 3, 2, f32, defaultp > f32mat3x2
Single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:705
+
GLM_ALIGNED_TYPEDEF(f64quat, aligned_f64quat, 32)
Double-qualifier floating-point aligned quaternion.
+
detail::uint64 uint64
64 bit unsigned integer type.
+
int8 mediump_i8
Medium qualifier 8 bit signed integer type.
Definition: fwd.hpp:32
+
int16 i16
16 bit signed integer type.
Definition: fwd.hpp:48
+
uint8 lowp_u8
Low qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:91
+
mat< 3, 3, f64, defaultp > f64mat3x3
Double-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:786
+
uint16 highp_uint16
High qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:112
+
uint32 lowp_uint32_t
Low qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:128
+
aligned_highp_vec3 aligned_vec3
3 components vector aligned in memory of single-precision floating-point numbers.
+
vec< 4, int32, defaultp > i32vec4
32 bit signed integer vector of 4 components type.
+
mat< 4, 2, f64, defaultp > f64mat4x2
Double-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:788
+
int16 int16_t
16 bit signed integer type.
Definition: fwd.hpp:57
+
mat< 3, 3, f32, defaultp > f32mat3x3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:706
+
vec< 2, int8, defaultp > i8vec2
8 bit signed integer vector of 2 components type.
+
vec< 2, float, defaultp > vec2
2 components vector of single-precision floating-point numbers.
+
aligned_highp_quat aligned_quat
quaternion tightly aligned in memory of single-precision floating-point numbers.
+
mat< 4, 3, f64, defaultp > f64mat4x3
Double-qualifier floating-point 4x3 matrix.
Definition: fwd.hpp:789
+
vec< 2, f32, defaultp > f32vec2
Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:464
+
mat< 2, 4, f64, defaultp > f64mat2x4
Double-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:784
+
double float64_t
Default 64 bit double-qualifier floating-point scalar.
Definition: fwd.hpp:178
+
vec< 4, unsigned int, defaultp > uvec4
4 components vector of unsigned integer numbers.
+
aligned_highp_dvec1 aligned_dvec1
1 component vector aligned in memory of double-precision floating-point numbers.
+
vec< 4, uint32, defaultp > u32vec4
32 bit unsigned integer vector of 4 components type.
+
vec< 2, int, defaultp > ivec2
2 components vector of signed integer numbers.
Definition: vector_int2.hpp:15
+
uint64 mediump_uint64_t
Medium qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:143
+
aligned_highp_mat4 aligned_mat4
4 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
+
aligned_highp_ivec4 aligned_ivec4
4 components vector aligned in memory of signed integer numbers.
+
int16 highp_int16
High qualifier 16 bit signed integer type.
Definition: fwd.hpp:52
+
vec< 1, int8, defaultp > i8vec1
8 bit signed integer vector of 1 component type.
+
aligned_highp_ivec3 aligned_ivec3
3 components vector aligned in memory of signed integer numbers.
+
int8 highp_int8
High qualifier 8 bit signed integer type.
Definition: fwd.hpp:38
+
vec< 3, uint16, defaultp > u16vec3
16 bit unsigned integer vector of 3 components type.
+
vec< 3, f32, defaultp > fvec3
Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:445
+
aligned_highp_uvec3 aligned_uvec3
3 components vector aligned in memory of unsigned integer numbers.
+
vec< 4, int16, defaultp > i16vec4
16 bit signed integer vector of 4 components type.
+
int16 lowp_int16_t
Low qualifier 16 bit signed integer type.
Definition: fwd.hpp:54
+
vec< 1, f64, defaultp > f64vec1
Double-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:503
+
aligned_highp_dvec4 aligned_dvec4
4 components vector aligned in memory of double-precision floating-point numbers.
+
mat< 3, 2, f32, defaultp > fmat3x2
Single-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:665
+
aligned_highp_dvec3 aligned_dvec3
3 components vector aligned in memory of double-precision floating-point numbers.
+
vec< 1, float, defaultp > vec1
1 components vector of single-precision floating-point numbers.
+
vec< 3, int32, defaultp > i32vec3
32 bit signed integer vector of 3 components type.
+
detail::uint8 uint8
8 bit unsigned integer type.
+
aligned_highp_dvec2 aligned_dvec2
2 components vector aligned in memory of double-precision floating-point numbers.
+
int64 highp_i64
High qualifier 64 bit signed integer type.
Definition: fwd.hpp:75
+
mat< 3, 2, f64, defaultp > f64mat3x2
Double-qualifier floating-point 3x2 matrix.
Definition: fwd.hpp:785
+
int64 highp_int64_t
High qualifier 64 bit signed integer type.
Definition: fwd.hpp:84
+
float float32_t
Default 32 bit single-qualifier floating-point scalar.
Definition: fwd.hpp:162
+
mat< 3, 3, f32, defaultp > fmat3x3
Single-qualifier floating-point 3x3 matrix.
Definition: fwd.hpp:666
+
int32 int32_t
32 bit signed integer type.
Definition: fwd.hpp:71
+
uint8 lowp_uint8_t
Low qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:100
+
vec< 4, uint64, defaultp > u64vec4
64 bit unsigned integer vector of 4 components type.
+
vec< 4, int64, defaultp > i64vec4
64 bit signed integer vector of 4 components type.
+
float float32
Single-qualifier floating-point scalar.
Definition: fwd.hpp:157
+
int32 lowp_int32
Low qualifier 32 bit signed integer type.
Definition: fwd.hpp:64
+
int64 int64_t
64 bit signed integer type.
Definition: fwd.hpp:85
+
vec< 4, uint16, defaultp > u16vec4
16 bit unsigned integer vector of 4 components type.
+
uint8 highp_uint8_t
High qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:102
+
aligned_highp_vec4 aligned_vec4
4 components vector aligned in memory of single-precision floating-point numbers.
+
aligned_highp_mat4x4 aligned_mat4x4
4 by 4 matrix tightly aligned in memory of single-precision floating-point numbers.
+
int64 mediump_int64_t
Medium qualifier 64 bit signed integer type.
Definition: fwd.hpp:83
+
int64 mediump_i64
Medium qualifier 64 bit signed integer type.
Definition: fwd.hpp:74
+
vec< 1, double, defaultp > dvec1
1 components vector of double-precision floating-point numbers.
+
uint32 highp_uint32
High qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:126
+
uint64 lowp_uint64
Low qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:138
+
vec< 3, f32, defaultp > f32vec3
Single-qualifier floating-point vector of 3 components.
Definition: fwd.hpp:465
+
aligned_highp_uvec4 aligned_uvec4
4 components vector aligned in memory of unsigned integer numbers.
+
int8 highp_i8
High qualifier 8 bit signed integer type.
Definition: fwd.hpp:33
+
uint8 highp_uint8
High qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:98
+
vec< 1, int, defaultp > ivec1
1 component vector of signed integer numbers.
Definition: vector_int1.hpp:28
+
uint8 mediump_uint8_t
Medium qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:101
+
mat< 4, 4, f32, defaultp > f32mat4x4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:710
+
int16 mediump_i16
Medium qualifier 16 bit signed integer type.
Definition: fwd.hpp:46
+
vec< 3, int64, defaultp > i64vec3
64 bit signed integer vector of 3 components type.
+
uint16 mediump_uint16_t
Medium qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:115
+
vec< 1, int32, defaultp > i32vec1
32 bit signed integer vector of 1 component type.
+
uint8 lowp_uint8
Low qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:96
+
int16 mediump_int16
Medium qualifier 16 bit signed integer type.
Definition: fwd.hpp:51
+
int64 highp_int64
High qualifier 64 bit signed integer type.
Definition: fwd.hpp:80
+
mat< 3, 4, f32, defaultp > f32mat3x4
Single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:707
+
uint32 uint32_t
Default qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:131
+
mat< 2, 2, f32, defaultp > fmat2x2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:662
+
mat< 3, 4, f32, defaultp > fmat3x4
Single-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:667
+
int32 mediump_int32_t
Medium qualifier 32 bit signed integer type.
Definition: fwd.hpp:69
+
mat< 2, 2, float, defaultp > mat2x2
2 columns of 2 components matrix of single-precision floating-point numbers.
+
int64 i64
64 bit signed integer type.
Definition: fwd.hpp:76
+
uint8 uint8_t
Default qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:103
+
vec< 4, double, defaultp > dvec4
4 components vector of double-precision floating-point numbers.
+
mat< 4, 4, f32, defaultp > fmat4x4
Single-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:670
+
uint16 mediump_uint16
Medium qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:111
+
mat< 2, 2, float, defaultp > mat2
2 columns of 2 components matrix of single-precision floating-point numbers.
+
qua< f32, defaultp > f32quat
Single-qualifier floating-point quaternion.
Definition: fwd.hpp:1220
+
int8 int8_t
8 bit signed integer type.
Definition: fwd.hpp:43
+
vec< 1, f32, defaultp > f32vec1
Single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:463
+
vec< 4, f64, defaultp > f64vec4
Double-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:506
+
vec< 1, f32, defaultp > fvec1
Single-qualifier floating-point vector of 1 component.
Definition: fwd.hpp:443
+
aligned_highp_uvec2 aligned_uvec2
2 components vector aligned in memory of unsigned integer numbers.
+
uint64 highp_u64
High qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:135
+
int16 lowp_int16
Low qualifier 16 bit signed integer type.
Definition: fwd.hpp:50
+
vec< 3, float, defaultp > vec3
3 components vector of single-precision floating-point numbers.
+
int8 highp_int8_t
High qualifier 8 bit signed integer type.
Definition: fwd.hpp:42
+
vec< 4, f32, defaultp > f32vec4
Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:466
+
aligned_highp_vec2 aligned_vec2
2 components vector aligned in memory of single-precision floating-point numbers.
+
uint64 lowp_u64
Low qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:133
+
uint64 mediump_u64
Medium qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:134
+
int8 lowp_int8_t
Low qualifier 8 bit signed integer type.
Definition: fwd.hpp:40
+
detail::int8 int8
8 bit signed integer type.
+
mat< 4, 2, f32, defaultp > fmat4x2
Single-qualifier floating-point 4x2 matrix.
Definition: fwd.hpp:668
+
uint8 mediump_u8
Medium qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:92
+
vec< 4, float, defaultp > vec4
4 components vector of single-precision floating-point numbers.
+
uint16 highp_u16
High qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:107
+
mat< 3, 3, float, defaultp > mat3x3
3 columns of 3 components matrix of single-precision floating-point numbers.
+
vec< 2, double, defaultp > dvec2
2 components vector of double-precision floating-point numbers.
+
int32 i32
32 bit signed integer type.
Definition: fwd.hpp:62
+
mat< 4, 4, float, defaultp > mat4x4
4 columns of 4 components matrix of single-precision floating-point numbers.
+
vec< 2, uint32, defaultp > u32vec2
32 bit unsigned integer vector of 2 components type.
+
vec< 1, uint16, defaultp > u16vec1
16 bit unsigned integer vector of 1 component type.
+
int8 i8
8 bit signed integer type.
Definition: fwd.hpp:34
+
uint8 mediump_uint8
Medium qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:97
+
mat< 2, 2, f32, defaultp > f32mat2x2
Single-qualifier floating-point 1x1 matrix.
Definition: fwd.hpp:702
+
vec< 2, uint8, defaultp > u8vec2
8 bit unsigned integer vector of 2 components type.
+
vec< 3, uint32, defaultp > u32vec3
32 bit unsigned integer vector of 3 components type.
+
uint32 lowp_u32
Low qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:119
+
vec< 3, double, defaultp > dvec3
3 components vector of double-precision floating-point numbers.
+
uint64 highp_uint64_t
High qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:144
+
vec< 1, int64, defaultp > i64vec1
64 bit signed integer vector of 1 component type.
+
vec< 1, uint64, defaultp > u64vec1
64 bit unsigned integer vector of 1 component type.
+
uint32 mediump_uint32_t
Medium qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:129
+
int32 lowp_int32_t
Low qualifier 32 bit signed integer type.
Definition: fwd.hpp:68
+
uint32 mediump_u32
Medium qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:120
+
uint16 lowp_u16
Low qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:105
+
uint32 highp_u32
High qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:121
+
vec< 2, f32, defaultp > fvec2
Single-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:444
+
uint16 highp_uint16_t
High qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:116
+
vec< 4, f32, defaultp > fvec4
Single-qualifier floating-point vector of 4 components.
Definition: fwd.hpp:446
+
vec< 4, int8, defaultp > i8vec4
8 bit signed integer vector of 4 components type.
+
mat< 2, 4, f32, defaultp > f32mat2x4
Single-qualifier floating-point 2x4 matrix.
Definition: fwd.hpp:704
+
uint8 highp_u8
High qualifier 8 bit unsigned integer type.
Definition: fwd.hpp:93
+
uint32 lowp_uint32
Low qualifier 32 bit unsigned integer type.
Definition: fwd.hpp:124
+
vec< 2, f64, defaultp > f64vec2
Double-qualifier floating-point vector of 2 components.
Definition: fwd.hpp:504
+
aligned_highp_ivec1 aligned_ivec1
1 component vector aligned in memory of signed integer numbers.
+
detail::int64 int64
64 bit signed integer type.
+
detail::uint16 uint16
16 bit unsigned integer type.
+
uint64 lowp_uint64_t
Low qualifier 64 bit unsigned integer type.
Definition: fwd.hpp:142
+
vec< 1, unsigned int, defaultp > uvec1
1 component vector of unsigned integer numbers.
+
int32 highp_int32_t
32 bit signed integer type.
Definition: fwd.hpp:70
+
vec< 1, uint32, defaultp > u32vec1
32 bit unsigned integer vector of 1 component type.
+
vec< 3, uint64, defaultp > u64vec3
64 bit unsigned integer vector of 3 components type.
+
mat< 4, 4, f64, defaultp > f64mat4x4
Double-qualifier floating-point 4x4 matrix.
Definition: fwd.hpp:790
+
vec< 3, int16, defaultp > i16vec3
16 bit signed integer vector of 3 components type.
+
vec< 2, uint64, defaultp > u64vec2
64 bit unsigned integer vector of 2 components type.
+
qua< float, defaultp > quat
Quaternion of single-precision floating-point numbers.
+
aligned_highp_ivec2 aligned_ivec2
2 components vector aligned in memory of signed integer numbers.
+
vec< 3, int, defaultp > ivec3
3 components vector of signed integer numbers.
Definition: vector_int3.hpp:15
+
aligned_highp_uvec1 aligned_uvec1
1 component vector aligned in memory of unsigned integer numbers.
+
mat< 3, 4, f64, defaultp > f64mat3x4
Double-qualifier floating-point 3x4 matrix.
Definition: fwd.hpp:787
+
detail::int32 int32
32 bit signed integer type.
+
uint16 u16
Default qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:108
+
vec< 3, uint8, defaultp > u8vec3
8 bit unsigned integer vector of 3 components type.
+
uint16 lowp_uint16_t
Low qualifier 16 bit unsigned integer type.
Definition: fwd.hpp:114
+
aligned_highp_dquat aligned_dquat
quaternion tightly aligned in memory of double-precision floating-point numbers.
+ + + + diff --git a/include/glm/doc/api/a01729.html b/include/glm/doc/api/a01729.html new file mode 100644 index 0000000..39e1d63 --- /dev/null +++ b/include/glm/doc/api/a01729.html @@ -0,0 +1,131 @@ + + + + + + + +1.0.2 API documentation: vector_relational.hpp File Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+ +
+
ext/vector_relational.hpp File Reference
+
+
+ +

GLM_EXT_vector_relational +More...

+ +

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon)
 Returns the component-wise comparison of |x - y| < epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)
 Returns the component-wise comparison between two vectors in term of ULPs. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual (vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon)
 Returns the component-wise comparison of |x - y| >= epsilon. More...
 
+

Detailed Description

+

GLM_EXT_vector_relational

+
See also
Core features (dependence)
+
+GLM_EXT_scalar_integer (dependence)
+ +

Definition in file ext/vector_relational.hpp.

+
+ + + + diff --git a/include/glm/doc/api/a01729_source.html b/include/glm/doc/api/a01729_source.html new file mode 100644 index 0000000..ff9dc2c --- /dev/null +++ b/include/glm/doc/api/a01729_source.html @@ -0,0 +1,124 @@ + + + + + + + +1.0.2 API documentation: vector_relational.hpp Source File + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ext/vector_relational.hpp
+
+
+Go to the documentation of this file.
1 
+
18 #pragma once
+
19 
+
20 // Dependencies
+
21 #include "../detail/qualifier.hpp"
+
22 
+
23 #if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED)
+
24 # pragma message("GLM: GLM_EXT_vector_relational extension included")
+
25 #endif
+
26 
+
27 namespace glm
+
28 {
+
31 
+
38  template<length_t L, typename T, qualifier Q>
+
39  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> equal(vec<L, T, Q> const& x, vec<L, T, Q> const& y, T epsilon);
+
40 
+
47  template<length_t L, typename T, qualifier Q>
+
48  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> equal(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, T, Q> const& epsilon);
+
49 
+
56  template<length_t L, typename T, qualifier Q>
+
57  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> notEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, T epsilon);
+
58 
+
65  template<length_t L, typename T, qualifier Q>
+
66  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> notEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, T, Q> const& epsilon);
+
67 
+
74  template<length_t L, typename T, qualifier Q>
+
75  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> equal(vec<L, T, Q> const& x, vec<L, T, Q> const& y, int ULPs);
+
76 
+
83  template<length_t L, typename T, qualifier Q>
+
84  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> equal(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, int, Q> const& ULPs);
+
85 
+
92  template<length_t L, typename T, qualifier Q>
+
93  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> notEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, int ULPs);
+
94 
+
101  template<length_t L, typename T, qualifier Q>
+
102  GLM_FUNC_DECL GLM_CONSTEXPR vec<L, bool, Q> notEqual(vec<L, T, Q> const& x, vec<L, T, Q> const& y, vec<L, int, Q> const& ULPs);
+
103 
+
105 }//namespace glm
+
106 
+
107 #include "vector_relational.inl"
+
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)
Returns the component-wise comparison between two vectors in term of ULPs.
+
GLM_FUNC_DECL GLM_CONSTEXPR vec< L, bool, Q > equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)
Returns the component-wise comparison between two vectors in term of ULPs.
+
GLM_FUNC_DECL GLM_CONSTEXPR genType epsilon()
Return the epsilon constant for floating point types.
+ + + + diff --git a/include/glm/doc/api/bc_s.png b/include/glm/doc/api/bc_s.png new file mode 100644 index 0000000..a274117 Binary files /dev/null and b/include/glm/doc/api/bc_s.png differ diff --git a/include/glm/doc/api/bdwn.png b/include/glm/doc/api/bdwn.png new file mode 100644 index 0000000..52e0f77 Binary files /dev/null and b/include/glm/doc/api/bdwn.png differ diff --git a/include/glm/doc/api/closed.png b/include/glm/doc/api/closed.png new file mode 100644 index 0000000..c2ff2e8 Binary files /dev/null and b/include/glm/doc/api/closed.png differ diff --git a/include/glm/doc/api/dir_382f4fd018b81be8753cb53c0a41a09a.html b/include/glm/doc/api/dir_382f4fd018b81be8753cb53c0a41a09a.html new file mode 100644 index 0000000..72d9e9c --- /dev/null +++ b/include/glm/doc/api/dir_382f4fd018b81be8753cb53c0a41a09a.html @@ -0,0 +1,127 @@ + + + + + + + +1.0.2 API documentation: detail Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
detail Directory Reference
+
+ + + + + diff --git a/include/glm/doc/api/dir_50f12b6ceb23d7f6adfb377a1ae8b006.html b/include/glm/doc/api/dir_50f12b6ceb23d7f6adfb377a1ae8b006.html new file mode 100644 index 0000000..ecc013a --- /dev/null +++ b/include/glm/doc/api/dir_50f12b6ceb23d7f6adfb377a1ae8b006.html @@ -0,0 +1,85 @@ + + + + + + + +1.0.2 API documentation: glm Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
glm Directory Reference
+
+
+ + +

+Directories

+
+ + + + diff --git a/include/glm/doc/api/dir_628fd60eb37daf5aa9a81e3983c640b7.html b/include/glm/doc/api/dir_628fd60eb37daf5aa9a81e3983c640b7.html new file mode 100644 index 0000000..0e2bc00 --- /dev/null +++ b/include/glm/doc/api/dir_628fd60eb37daf5aa9a81e3983c640b7.html @@ -0,0 +1,283 @@ + + + + + + + +1.0.2 API documentation: gtx Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtx Directory Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Files

file  associated_min_max.hpp [code]
 GLM_GTX_associated_min_max
 
file  bit.hpp [code]
 GLM_GTX_bit
 
file  closest_point.hpp [code]
 GLM_GTX_closest_point
 
file  color_encoding.hpp [code]
 GLM_GTX_color_encoding
 
file  gtx/color_space.hpp [code]
 GLM_GTX_color_space
 
file  color_space_YCoCg.hpp [code]
 GLM_GTX_color_space_YCoCg
 
file  gtx/common.hpp [code]
 GLM_GTX_common
 
file  compatibility.hpp [code]
 GLM_GTX_compatibility
 
file  component_wise.hpp [code]
 GLM_GTX_component_wise
 
file  dual_quaternion.hpp [code]
 GLM_GTX_dual_quaternion
 
file  easing.hpp [code]
 GLM_GTX_easing
 
file  euler_angles.hpp [code]
 GLM_GTX_euler_angles
 
file  extend.hpp [code]
 GLM_GTX_extend
 
file  extended_min_max.hpp [code]
 GLM_GTX_extended_min_max
 
file  exterior_product.hpp [code]
 GLM_GTX_exterior_product
 
file  fast_exponential.hpp [code]
 GLM_GTX_fast_exponential
 
file  fast_square_root.hpp [code]
 GLM_GTX_fast_square_root
 
file  fast_trigonometry.hpp [code]
 GLM_GTX_fast_trigonometry
 
file  functions.hpp [code]
 GLM_GTX_functions
 
file  gradient_paint.hpp [code]
 GLM_GTX_gradient_paint
 
file  handed_coordinate_space.hpp [code]
 GLM_GTX_handed_coordinate_space
 
file  hash.hpp [code]
 GLM_GTX_hash
 
file  gtx/integer.hpp [code]
 GLM_GTX_integer
 
file  intersect.hpp [code]
 GLM_GTX_intersect
 
file  io.hpp [code]
 GLM_GTX_io
 
file  iteration.hpp [code]
 GLM_GTX_iteration
 
file  log_base.hpp [code]
 GLM_GTX_log_base
 
file  matrix_cross_product.hpp [code]
 GLM_GTX_matrix_cross_product
 
file  matrix_decompose.hpp [code]
 GLM_GTX_matrix_decompose
 
file  matrix_factorisation.hpp [code]
 GLM_GTX_matrix_factorisation
 
file  matrix_interpolation.hpp [code]
 GLM_GTX_matrix_interpolation
 
file  matrix_major_storage.hpp [code]
 GLM_GTX_matrix_major_storage
 
file  matrix_operation.hpp [code]
 GLM_GTX_matrix_operation
 
file  matrix_query.hpp [code]
 GLM_GTX_matrix_query
 
file  matrix_transform_2d.hpp [code]
 GLM_GTX_matrix_transform_2d
 
file  mixed_product.hpp [code]
 GLM_GTX_mixed_producte
 
file  norm.hpp [code]
 GLM_GTX_norm
 
file  normal.hpp [code]
 GLM_GTX_normal
 
file  normalize_dot.hpp [code]
 GLM_GTX_normalize_dot
 
file  number_precision.hpp [code]
 GLM_GTX_number_precision
 
file  optimum_pow.hpp [code]
 GLM_GTX_optimum_pow
 
file  orthonormalize.hpp [code]
 GLM_GTX_orthonormalize
 
file  pca.hpp [code]
 GLM_GTX_pca
 
file  perpendicular.hpp [code]
 GLM_GTX_perpendicular
 
file  polar_coordinates.hpp [code]
 GLM_GTX_polar_coordinates
 
file  projection.hpp [code]
 GLM_GTX_projection
 
file  gtx/quaternion.hpp [code]
 GLM_GTX_quaternion
 
file  range.hpp [code]
 GLM_GTX_range
 
file  raw_data.hpp [code]
 GLM_GTX_raw_data
 
file  rotate_normalized_axis.hpp [code]
 GLM_GTX_rotate_normalized_axis
 
file  rotate_vector.hpp [code]
 GLM_GTX_rotate_vector
 
file  scalar_multiplication.hpp [code]
 GLM_GTX_scalar_multiplication
 
file  gtx/scalar_relational.hpp [code]
 GLM_GTX_scalar_relational
 
file  spline.hpp [code]
 GLM_GTX_spline
 
file  std_based_type.hpp [code]
 GLM_GTX_std_based_type
 
file  string_cast.hpp [code]
 GLM_GTX_string_cast
 
file  structured_bindings.hpp [code]
 GLM_GTX_structured_bindings
 
file  texture.hpp [code]
 GLM_GTX_texture
 
file  transform.hpp [code]
 GLM_GTX_transform
 
file  transform2.hpp [code]
 GLM_GTX_transform2
 
file  gtx/type_aligned.hpp [code]
 GLM_GTX_type_aligned
 
file  type_trait.hpp [code]
 GLM_GTX_type_trait
 
file  vec_swizzle.hpp [code]
 GLM_GTX_vec_swizzle
 
file  vector_angle.hpp [code]
 GLM_GTX_vector_angle
 
file  vector_query.hpp [code]
 GLM_GTX_vector_query
 
file  wrap.hpp [code]
 GLM_GTX_wrap
 
+
+ + + + diff --git a/include/glm/doc/api/dir_63ed049134a778d525e06b63afc2c979.html b/include/glm/doc/api/dir_63ed049134a778d525e06b63afc2c979.html new file mode 100644 index 0000000..33d5f71 --- /dev/null +++ b/include/glm/doc/api/dir_63ed049134a778d525e06b63afc2c979.html @@ -0,0 +1,81 @@ + + + + + + + +1.0.2 API documentation: Github Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
Github Directory Reference
+
+
+
+ + + + diff --git a/include/glm/doc/api/dir_885cc87fac2d91e269af0a5a959fa5f6.html b/include/glm/doc/api/dir_885cc87fac2d91e269af0a5a959fa5f6.html new file mode 100644 index 0000000..469dc5d --- /dev/null +++ b/include/glm/doc/api/dir_885cc87fac2d91e269af0a5a959fa5f6.html @@ -0,0 +1,81 @@ + + + + + + + +1.0.2 API documentation: E: Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
E: Directory Reference
+
+
+
+ + + + diff --git a/include/glm/doc/api/dir_b11711034def6a4ce452fe9c451dd3d0.html b/include/glm/doc/api/dir_b11711034def6a4ce452fe9c451dd3d0.html new file mode 100644 index 0000000..fccbb5a --- /dev/null +++ b/include/glm/doc/api/dir_b11711034def6a4ce452fe9c451dd3d0.html @@ -0,0 +1,81 @@ + + + + + + + +1.0.2 API documentation: doc Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
doc Directory Reference
+
+
+
+ + + + diff --git a/include/glm/doc/api/dir_b171cecbb853a9ee4caace490047c53f.html b/include/glm/doc/api/dir_b171cecbb853a9ee4caace490047c53f.html new file mode 100644 index 0000000..986dd7c --- /dev/null +++ b/include/glm/doc/api/dir_b171cecbb853a9ee4caace490047c53f.html @@ -0,0 +1,505 @@ + + + + + + + +1.0.2 API documentation: ext Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
ext Directory Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Files

file  matrix_clip_space.hpp [code]
 GLM_EXT_matrix_clip_space
 
file  matrix_common.hpp [code]
 GLM_EXT_matrix_common
 
file  matrix_double2x2.hpp [code]
 Core features
 
file  matrix_double2x2_precision.hpp [code]
 Core features
 
file  matrix_double2x3.hpp [code]
 Core features
 
file  matrix_double2x3_precision.hpp [code]
 Core features
 
file  matrix_double2x4.hpp [code]
 Core features
 
file  matrix_double2x4_precision.hpp [code]
 Core features
 
file  matrix_double3x2.hpp [code]
 Core features
 
file  matrix_double3x2_precision.hpp [code]
 Core features
 
file  matrix_double3x3.hpp [code]
 Core features
 
file  matrix_double3x3_precision.hpp [code]
 Core features
 
file  matrix_double3x4.hpp [code]
 Core features
 
file  matrix_double3x4_precision.hpp [code]
 Core features
 
file  matrix_double4x2.hpp [code]
 Core features
 
file  matrix_double4x2_precision.hpp [code]
 Core features
 
file  matrix_double4x3.hpp [code]
 Core features
 
file  matrix_double4x3_precision.hpp [code]
 Core features
 
file  matrix_double4x4.hpp [code]
 Core features
 
file  matrix_double4x4_precision.hpp [code]
 Core features
 
file  matrix_float2x2.hpp [code]
 Core features
 
file  matrix_float2x2_precision.hpp [code]
 Core features
 
file  matrix_float2x3.hpp [code]
 Core features
 
file  matrix_float2x3_precision.hpp [code]
 Core features
 
file  matrix_float2x4.hpp [code]
 Core features
 
file  matrix_float2x4_precision.hpp [code]
 Core features
 
file  matrix_float3x2.hpp [code]
 Core features
 
file  matrix_float3x2_precision.hpp [code]
 Core features
 
file  matrix_float3x3.hpp [code]
 Core features
 
file  matrix_float3x3_precision.hpp [code]
 Core features
 
file  matrix_float3x4.hpp [code]
 Core features
 
file  matrix_float3x4_precision.hpp [code]
 Core features
 
file  matrix_float4x2.hpp [code]
 Core features
 
file  matrix_float4x3.hpp [code]
 Core features
 
file  matrix_float4x3_precision.hpp [code]
 Core features
 
file  matrix_float4x4.hpp [code]
 Core features
 
file  matrix_float4x4_precision.hpp [code]
 Core features
 
file  matrix_int2x2.hpp [code]
 GLM_EXT_matrix_int2x2
 
file  matrix_int2x2_sized.hpp [code]
 GLM_EXT_matrix_int2x2_sized
 
file  matrix_int2x3.hpp [code]
 GLM_EXT_matrix_int2x3
 
file  matrix_int2x3_sized.hpp [code]
 GLM_EXT_matrix_int2x3_sized
 
file  matrix_int2x4.hpp [code]
 GLM_EXT_matrix_int2x4
 
file  matrix_int2x4_sized.hpp [code]
 GLM_EXT_matrix_int2x4_sized
 
file  matrix_int3x2.hpp [code]
 GLM_EXT_matrix_int3x2
 
file  matrix_int3x2_sized.hpp [code]
 GLM_EXT_matrix_int3x2_sized
 
file  matrix_int3x3.hpp [code]
 GLM_EXT_matrix_int3x3
 
file  matrix_int3x3_sized.hpp [code]
 GLM_EXT_matrix_int3x3_sized
 
file  matrix_int3x4.hpp [code]
 GLM_EXT_matrix_int3x4
 
file  matrix_int4x2.hpp [code]
 GLM_EXT_matrix_int4x2
 
file  matrix_int4x2_sized.hpp [code]
 GLM_EXT_matrix_int4x2_sized
 
file  matrix_int4x3.hpp [code]
 GLM_EXT_matrix_int4x3
 
file  matrix_int4x3_sized.hpp [code]
 GLM_EXT_matrix_int4x3_sized
 
file  matrix_int4x4.hpp [code]
 GLM_EXT_matrix_int4x4
 
file  matrix_int4x4_sized.hpp [code]
 GLM_EXT_matrix_int4x4_sized
 
file  ext/matrix_integer.hpp [code]
 GLM_EXT_matrix_integer
 
file  matrix_projection.hpp [code]
 GLM_EXT_matrix_projection
 
file  matrix_relational.hpp [code]
 GLM_EXT_matrix_relational
 
file  ext/matrix_transform.hpp [code]
 GLM_EXT_matrix_transform
 
file  matrix_uint2x2.hpp [code]
 GLM_EXT_matrix_uint2x2
 
file  matrix_uint2x2_sized.hpp [code]
 GLM_EXT_matrix_uint2x2_sized
 
file  matrix_uint2x3.hpp [code]
 GLM_EXT_matrix_uint2x3
 
file  matrix_uint2x3_sized.hpp [code]
 GLM_EXT_matrix_uint2x3_sized
 
file  matrix_uint2x4.hpp [code]
 GLM_EXT_matrix_int2x4
 
file  matrix_uint2x4_sized.hpp [code]
 GLM_EXT_matrix_uint2x4_sized
 
file  matrix_uint3x2.hpp [code]
 GLM_EXT_matrix_uint3x2
 
file  matrix_uint3x2_sized.hpp [code]
 GLM_EXT_matrix_uint3x2_sized
 
file  matrix_uint3x3.hpp [code]
 GLM_EXT_matrix_uint3x3
 
file  matrix_uint3x3_sized.hpp [code]
 GLM_EXT_matrix_uint3x3_sized
 
file  matrix_uint3x4.hpp [code]
 GLM_EXT_matrix_uint3x4
 
file  matrix_uint4x2.hpp [code]
 GLM_EXT_matrix_uint4x2
 
file  matrix_uint4x2_sized.hpp [code]
 GLM_EXT_matrix_uint4x2_sized
 
file  matrix_uint4x3.hpp [code]
 GLM_EXT_matrix_uint4x3
 
file  matrix_uint4x3_sized.hpp [code]
 GLM_EXT_matrix_uint4x3_sized
 
file  matrix_uint4x4.hpp [code]
 GLM_EXT_matrix_uint4x4
 
file  matrix_uint4x4_sized.hpp [code]
 GLM_EXT_matrix_uint4x4_sized
 
file  quaternion_common.hpp [code]
 GLM_EXT_quaternion_common
 
file  quaternion_double.hpp [code]
 GLM_EXT_quaternion_double
 
file  quaternion_double_precision.hpp [code]
 GLM_EXT_quaternion_double_precision
 
file  quaternion_exponential.hpp [code]
 GLM_EXT_quaternion_exponential
 
file  quaternion_float.hpp [code]
 GLM_EXT_quaternion_float
 
file  quaternion_float_precision.hpp [code]
 GLM_EXT_quaternion_float_precision
 
file  quaternion_geometric.hpp [code]
 GLM_EXT_quaternion_geometric
 
file  quaternion_relational.hpp [code]
 GLM_EXT_quaternion_relational
 
file  quaternion_transform.hpp [code]
 GLM_EXT_quaternion_transform
 
file  quaternion_trigonometric.hpp [code]
 GLM_EXT_quaternion_trigonometric
 
file  scalar_common.hpp [code]
 GLM_EXT_scalar_common
 
file  scalar_constants.hpp [code]
 GLM_EXT_scalar_constants
 
file  scalar_int_sized.hpp [code]
 GLM_EXT_scalar_int_sized
 
file  scalar_integer.hpp [code]
 GLM_EXT_scalar_integer
 
file  scalar_packing.hpp [code]
 GLM_EXT_scalar_packing
 
file  scalar_reciprocal.hpp [code]
 GLM_EXT_scalar_reciprocal
 
file  ext/scalar_relational.hpp [code]
 GLM_EXT_scalar_relational
 
file  scalar_uint_sized.hpp [code]
 GLM_EXT_scalar_uint_sized
 
file  scalar_ulp.hpp [code]
 GLM_EXT_scalar_ulp
 
file  vector_bool1.hpp [code]
 GLM_EXT_vector_bool1
 
file  vector_bool1_precision.hpp [code]
 GLM_EXT_vector_bool1_precision
 
file  vector_bool2.hpp [code]
 Core features
 
file  vector_bool2_precision.hpp [code]
 Core features
 
file  vector_bool3.hpp [code]
 Core features
 
file  vector_bool3_precision.hpp [code]
 Core features
 
file  vector_bool4.hpp [code]
 Core features
 
file  vector_bool4_precision.hpp [code]
 Core features
 
file  vector_common.hpp [code]
 GLM_EXT_vector_common
 
file  vector_double1.hpp [code]
 GLM_EXT_vector_double1
 
file  vector_double1_precision.hpp [code]
 GLM_EXT_vector_double1_precision
 
file  vector_double2.hpp [code]
 Core features
 
file  vector_double2_precision.hpp [code]
 Core features
 
file  vector_double3.hpp [code]
 Core features
 
file  vector_double3_precision.hpp [code]
 Core features
 
file  vector_double4.hpp [code]
 Core features
 
file  vector_double4_precision.hpp [code]
 Core features
 
file  vector_float1.hpp [code]
 GLM_EXT_vector_float1
 
file  vector_float1_precision.hpp [code]
 GLM_EXT_vector_float1_precision
 
file  vector_float2.hpp [code]
 Core features
 
file  vector_float2_precision.hpp [code]
 Core features
 
file  vector_float3.hpp [code]
 Core features
 
file  vector_float3_precision.hpp [code]
 Core features
 
file  vector_float4.hpp [code]
 Core features
 
file  vector_float4_precision.hpp [code]
 Core features
 
file  vector_int1.hpp [code]
 GLM_EXT_vector_int1
 
file  vector_int1_sized.hpp [code]
 GLM_EXT_vector_int1_sized
 
file  vector_int2.hpp [code]
 Core features
 
file  vector_int2_sized.hpp [code]
 GLM_EXT_vector_int2_sized
 
file  vector_int3.hpp [code]
 Core features
 
file  vector_int3_sized.hpp [code]
 GLM_EXT_vector_int3_sized
 
file  vector_int4.hpp [code]
 Core features
 
file  vector_int4_sized.hpp [code]
 GLM_EXT_vector_int4_sized
 
file  vector_integer.hpp [code]
 GLM_EXT_vector_integer
 
file  vector_packing.hpp [code]
 GLM_EXT_vector_packing
 
file  vector_reciprocal.hpp [code]
 GLM_EXT_vector_reciprocal
 
file  ext/vector_relational.hpp [code]
 GLM_EXT_vector_relational
 
file  vector_uint1.hpp [code]
 GLM_EXT_vector_uint1
 
file  vector_uint1_sized.hpp [code]
 GLM_EXT_vector_uint1_sized
 
file  vector_uint2.hpp [code]
 Core features
 
file  vector_uint2_sized.hpp [code]
 GLM_EXT_vector_uint2_sized
 
file  vector_uint3.hpp [code]
 Core features
 
file  vector_uint3_sized.hpp [code]
 GLM_EXT_vector_uint3_sized
 
file  vector_uint4.hpp [code]
 Core features
 
file  vector_uint4_sized.hpp [code]
 GLM_EXT_vector_uint4_sized
 
file  vector_ulp.hpp [code]
 GLM_EXT_vector_ulp
 
+
+ + + + diff --git a/include/glm/doc/api/dir_c98a9ac98258ab9f831b188d66361a70.html b/include/glm/doc/api/dir_c98a9ac98258ab9f831b188d66361a70.html new file mode 100644 index 0000000..2be54ef --- /dev/null +++ b/include/glm/doc/api/dir_c98a9ac98258ab9f831b188d66361a70.html @@ -0,0 +1,81 @@ + + + + + + + +1.0.2 API documentation: g-truc Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
g-truc Directory Reference
+
+
+
+ + + + diff --git a/include/glm/doc/api/dir_d9678a6a9012da969e0b059b39347945.html b/include/glm/doc/api/dir_d9678a6a9012da969e0b059b39347945.html new file mode 100644 index 0000000..0fee880 --- /dev/null +++ b/include/glm/doc/api/dir_d9678a6a9012da969e0b059b39347945.html @@ -0,0 +1,145 @@ + + + + + + + +1.0.2 API documentation: gtc Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
gtc Directory Reference
+
+ + + + + diff --git a/include/glm/doc/api/dir_fca33f1b5115d46f42c670590789c0d2.html b/include/glm/doc/api/dir_fca33f1b5115d46f42c670590789c0d2.html new file mode 100644 index 0000000..183acb1 --- /dev/null +++ b/include/glm/doc/api/dir_fca33f1b5115d46f42c670590789c0d2.html @@ -0,0 +1,150 @@ + + + + + + + +1.0.2 API documentation: glm Directory Reference + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
+
glm Directory Reference
+
+
+ + +

+Directories

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Files

file  common.hpp [code]
 Core features
 
file  exponential.hpp [code]
 Core features
 
file  ext.hpp [code]
 
file  geometric.hpp [code]
 Core features
 
file  integer.hpp [code]
 Core features
 
file  mat2x2.hpp [code]
 Core features
 
file  mat2x3.hpp [code]
 Core features
 
file  mat2x4.hpp [code]
 Core features
 
file  mat3x2.hpp [code]
 Core features
 
file  mat3x3.hpp [code]
 Core features
 
file  mat3x4.hpp [code]
 Core features
 
file  mat4x2.hpp [code]
 Core features
 
file  mat4x3.hpp [code]
 Core features
 
file  mat4x4.hpp [code]
 Core features
 
file  matrix.hpp [code]
 Core features
 
file  packing.hpp [code]
 Core features
 
file  trigonometric.hpp [code]
 Core features
 
file  vec2.hpp [code]
 Core features
 
file  vec3.hpp [code]
 Core features
 
file  vec4.hpp [code]
 Core features
 
file  vector_relational.hpp [code]
 Core features
 
+
+ + + + diff --git a/include/glm/doc/api/doc.png b/include/glm/doc/api/doc.png new file mode 100644 index 0000000..f3953d1 Binary files /dev/null and b/include/glm/doc/api/doc.png differ diff --git a/include/glm/doc/api/doxygen.css b/include/glm/doc/api/doxygen.css new file mode 100644 index 0000000..36259e2 --- /dev/null +++ b/include/glm/doc/api/doxygen.css @@ -0,0 +1,1496 @@ +/* The standard CSS for doxygen 1.8.10 */ + +body, table, div, p, dl { + font: 400 14px/22px Roboto,sans-serif; +} + +body +{ + margin:0px; + padding:0px; + background-color:#bf6000; + background-repeat:no-repeat; + background-position:center center; + background-attachment:fixed; + min-height:1200px; + overflow:auto; +} + +/* @group Heading Levels */ + +h1.groupheader { + color:#bf6000; + font-size: 150%; +} + +.title { + color:#bf6000; + font: 400 14px/28px Roboto,sans-serif; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h2.groupheader { + border-bottom: 1px solid #bf6000; + color:#bf6000; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +div.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.qindex, div.navtab{ + background-color: #FFF8F0; + border: 1px solid #FF8000; + text-align: center; +} + +div.qindex, div.navpath { + width: 100%; + line-height: 140%; +} + +div.navtab { + margin-right: 15px; +} + +/* @group Link Styling */ + +a { + color: #000000; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #606060; +} + +.contents{ + background-color: #FFFFFF; + padding-top:8px; + padding-bottom:8px; + padding-left:32px; + padding-right:32px; + margin:0px; + margin-left:auto; + margin-right:auto; + width:1216px; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +a:hover { + text-decoration: underline; +} + +a.qindex { + font-weight: bold; +} + +a.qindexHL { + font-weight: bold; + background-color: #9CAFD4; + color: #ffffff; + border: 1px double #869DCA; +} + +.contents a.qindexHL:visited { + color: #ffffff; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: #4665A2; +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +pre.fragment { + border: 1px solid #FF8000; + background-color: #FFF8F0; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: monospace, fixed; + font-size: 105%; +} + +div.fragment { + padding: 4px 6px; + margin: 4px 8px 4px 2px; + background-color: #FFF8F0; + border: 1px solid #FF8000; +} + +div.line { + font-family: monospace, fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.0; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + + +span.lineno { + padding-right: 4px; + text-align: right; + border-right: 2px solid #0F0; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a { + background-color: #D8D8D8; +} + +span.lineno a:hover { + background-color: #C8C8C8; +} + +div.ah, span.ah { + background-color: black; + font-weight: bold; + color: #ffffff; + margin-bottom: 3px; + margin-top: 3px; + padding: 0.2em; + border: solid thin #333; + border-radius: 0.5em; + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + box-shadow: 2px 2px 3px #999; + -webkit-box-shadow: 2px 2px 3px #999; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); + background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000); +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + color: black; + margin: 0; +} + +td.indexkey { + background-color: #FFF8F0; + font-weight: bold; + border: 1px solid #C4CFE5; + margin: 2px 0px 2px 0; + padding: 2px 10px; + white-space: nowrap; + vertical-align: top; +} + +td.indexvalue { + background-color: #FFF8F0; + border: 1px solid #C4CFE5; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #FFF8F0; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + display: none; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +/* @end */ + +/* +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +*/ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #FF8000; +} + +th.dirtab { + background: #EBEFF6; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + display: none; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #FFFCF8; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memSeparator { + border-bottom: 1px solid #FFF8F0; + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight { + width: 100%; +} + +.memTemplParams { + color: #bf6000; + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.memnav { + background-color: #FFF8F0; + border: 1px solid #FF8000; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: bold; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #bf6000; + border-left: 1px solid #bf6000; + border-right: 1px solid #bf6000; + padding: 6px 0px 6px 0px; + /*color: #253555;*/ + font-weight: bold; + /*text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);*/ + /*background-image:url('nav_f.png');*/ + background-repeat:repeat-x; + background-color: #FFF8F0; + /* opera specific markup */ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; + border-top-left-radius: 4px; + /* firefox specific markup */ + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + -moz-border-radius-topright: 4px; + -moz-border-radius-topleft: 4px; + /* webkit specific markup */ + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -webkit-border-top-right-radius: 4px; + -webkit-border-top-left-radius: 4px; + +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #bf6000; + border-left: 1px solid #bf6000; + border-right: 1px solid #bf6000; + padding: 6px 10px 2px 10px; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: #FFFDFB; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir { + font-family: "courier new",courier,monospace; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #bf6000; + border-bottom: 1px solid #bf6000; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.even { + padding-left: 6px; + background-color: #FFFDFB; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #bf6000; +} + +.arrow { + color: #bf6000; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: Arial, Helvetica; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: #bf6000; + color: white; + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderopen.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderclosed.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('doc.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +table.directory { + font: 400 14px Roboto,sans-serif; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + /*width: 100%;*/ + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; + /*width: 100%;*/ +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + /*background-image:url('tab_b.png');*/ + background-color: #FFF8F0; + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:#bf6000; + border:solid 0px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color:#bf6000; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + color: #bf6000; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color:#6884BD; +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color:#bf6000; + font-size: 8pt; +} + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-repeat:repeat-x; + background-color: #FFFCF8; + + padding:0px; + margin:0px; + margin-left:auto; + margin-right:auto; + width:1280px; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +dl +{ + padding: 0 0 0 10px; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ +dl.section +{ + margin-left: 0px; + padding-left: 0px; +} + +dl.note +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #00D000; +} + +dl.deprecated +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #505050; +} + +dl.todo +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #E0C000; +} + +dl.test +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #3030E0; +} + +dl.bug +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; +} + +#projectname +{ + font: 300% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 2px 0px; + color: #FF8000; +} + +#projectbrief +{ + font: 120% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font: 50% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +div.zoom +{ + border: 1px solid #90A5CE; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; +} + +dl.citelist dd { + margin:2px 0; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 20px 10px 10px; + width: 200px; +} + +div.toc li { + background: url("bdwn.png") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +div.toc h3 { + font: bold 12px/1.2 Arial,FreeSans,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 30px; +} + +div.toc li.level4 { + margin-left: 45px; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + white-space: nowrap; + background-color: white; + border: 1px solid gray; + border-radius: 4px 4px 4px 4px; + box-shadow: 1px 1px 7px gray; + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: grey; + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: #006318; +} + +#powerTip div { + margin: 0px; + padding: 0px; + font: 12px/16px Roboto,sans-serif; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: #ffffff; + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before { + border-top-color: #808080; + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: #ffffff; + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: #808080; + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: #ffffff; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: #ffffff; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#titlearea +{ + margin: 0px; + padding-top: 8px; + padding-bottom: 8px; + margin-top: 32px; + width: 100%; + border-bottom: 0px solid #FF8000; + border-top-left-radius: 8px; + border-top-right-radius: 8px; + background-color:#FFFFFF; +} + +#top +{ + margin-left:auto; + margin-right:auto; + width:1280px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + diff --git a/include/glm/doc/api/doxygen.png b/include/glm/doc/api/doxygen.png new file mode 100644 index 0000000..a7f4be8 Binary files /dev/null and b/include/glm/doc/api/doxygen.png differ diff --git a/include/glm/doc/api/dynsections.js b/include/glm/doc/api/dynsections.js new file mode 100644 index 0000000..88f2c27 --- /dev/null +++ b/include/glm/doc/api/dynsections.js @@ -0,0 +1,128 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function toggleVisibility(linkObj) +{ + var base = $(linkObj).attr('id'); + var summary = $('#'+base+'-summary'); + var content = $('#'+base+'-content'); + var trigger = $('#'+base+'-trigger'); + var src=$(trigger).attr('src'); + if (content.is(':visible')===true) { + content.hide(); + summary.show(); + $(linkObj).addClass('closed').removeClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); + } else { + content.show(); + summary.hide(); + $(linkObj).removeClass('closed').addClass('opened'); + $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); + } + return false; +} + +function updateStripes() +{ + $('table.directory tr'). + removeClass('even').filter(':visible:even').addClass('even'); +} + +function toggleLevel(level) +{ + $('table.directory tr').each(function() { + var l = this.id.split('_').length-1; + var i = $('#img'+this.id.substring(3)); + var a = $('#arr'+this.id.substring(3)); + if (l + + + + + + +1.0.2 API documentation: File List + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
File List
+
+
+
Here is a list of all documented files with brief descriptions:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 _features.hpp
 _fixes.hpp
 _matrix_vectorize.hpp
 _noise.hpp
 _swizzle.hpp
 _swizzle_func.hpp
 _vectorize.hpp
 associated_min_max.hppGLM_GTX_associated_min_max
 bit.hppGLM_GTX_bit
 bitfield.hppGLM_GTC_bitfield
 closest_point.hppGLM_GTX_closest_point
 color_encoding.hppGLM_GTX_color_encoding
 gtc/color_space.hppGLM_GTC_color_space
 gtx/color_space.hppGLM_GTX_color_space
 color_space_YCoCg.hppGLM_GTX_color_space_YCoCg
 common.hppCore features
 gtx/common.hppGLM_GTX_common
 compatibility.hppGLM_GTX_compatibility
 component_wise.hppGLM_GTX_component_wise
 compute_common.hpp
 compute_vector_decl.hpp
 compute_vector_relational.hpp
 constants.hppGLM_GTC_constants
 dual_quaternion.hppGLM_GTX_dual_quaternion
 easing.hppGLM_GTX_easing
 epsilon.hppGLM_GTC_epsilon
 euler_angles.hppGLM_GTX_euler_angles
 exponential.hppCore features
 ext.hpp
 extend.hppGLM_GTX_extend
 extended_min_max.hppGLM_GTX_extended_min_max
 exterior_product.hppGLM_GTX_exterior_product
 fast_exponential.hppGLM_GTX_fast_exponential
 fast_square_root.hppGLM_GTX_fast_square_root
 fast_trigonometry.hppGLM_GTX_fast_trigonometry
 functions.hppGLM_GTX_functions
 fwd.hpp
 geometric.hppCore features
 glm.hpp
 gradient_paint.hppGLM_GTX_gradient_paint
 handed_coordinate_space.hppGLM_GTX_handed_coordinate_space
 hash.hppGLM_GTX_hash
 gtc/integer.hppGLM_GTC_integer
 gtx/integer.hppGLM_GTX_integer
 integer.hppCore features
 intersect.hppGLM_GTX_intersect
 io.hppGLM_GTX_io
 iteration.hppGLM_GTX_iteration
 log_base.hppGLM_GTX_log_base
 man.doxy
 mat2x2.hppCore features
 mat2x3.hppCore features
 mat2x4.hppCore features
 mat3x2.hppCore features
 mat3x3.hppCore features
 mat3x4.hppCore features
 mat4x2.hppCore features
 mat4x3.hppCore features
 mat4x4.hppCore features
 matrix.hppCore features
 matrix_access.hppGLM_GTC_matrix_access
 matrix_clip_space.hppGLM_EXT_matrix_clip_space
 matrix_common.hppGLM_EXT_matrix_common
 matrix_cross_product.hppGLM_GTX_matrix_cross_product
 matrix_decompose.hppGLM_GTX_matrix_decompose
 matrix_double2x2.hppCore features
 matrix_double2x2_precision.hppCore features
 matrix_double2x3.hppCore features
 matrix_double2x3_precision.hppCore features
 matrix_double2x4.hppCore features
 matrix_double2x4_precision.hppCore features
 matrix_double3x2.hppCore features
 matrix_double3x2_precision.hppCore features
 matrix_double3x3.hppCore features
 matrix_double3x3_precision.hppCore features
 matrix_double3x4.hppCore features
 matrix_double3x4_precision.hppCore features
 matrix_double4x2.hppCore features
 matrix_double4x2_precision.hppCore features
 matrix_double4x3.hppCore features
 matrix_double4x3_precision.hppCore features
 matrix_double4x4.hppCore features
 matrix_double4x4_precision.hppCore features
 matrix_factorisation.hppGLM_GTX_matrix_factorisation
 matrix_float2x2.hppCore features
 matrix_float2x2_precision.hppCore features
 matrix_float2x3.hppCore features
 matrix_float2x3_precision.hppCore features
 matrix_float2x4.hppCore features
 matrix_float2x4_precision.hppCore features
 matrix_float3x2.hppCore features
 matrix_float3x2_precision.hppCore features
 matrix_float3x3.hppCore features
 matrix_float3x3_precision.hppCore features
 matrix_float3x4.hppCore features
 matrix_float3x4_precision.hppCore features
 matrix_float4x2.hppCore features
 matrix_float4x2_precision.hpp
 matrix_float4x3.hppCore features
 matrix_float4x3_precision.hppCore features
 matrix_float4x4.hppCore features
 matrix_float4x4_precision.hppCore features
 matrix_int2x2.hppGLM_EXT_matrix_int2x2
 matrix_int2x2_sized.hppGLM_EXT_matrix_int2x2_sized
 matrix_int2x3.hppGLM_EXT_matrix_int2x3
 matrix_int2x3_sized.hppGLM_EXT_matrix_int2x3_sized
 matrix_int2x4.hppGLM_EXT_matrix_int2x4
 matrix_int2x4_sized.hppGLM_EXT_matrix_int2x4_sized
 matrix_int3x2.hppGLM_EXT_matrix_int3x2
 matrix_int3x2_sized.hppGLM_EXT_matrix_int3x2_sized
 matrix_int3x3.hppGLM_EXT_matrix_int3x3
 matrix_int3x3_sized.hppGLM_EXT_matrix_int3x3_sized
 matrix_int3x4.hppGLM_EXT_matrix_int3x4
 matrix_int3x4_sized.hpp
 matrix_int4x2.hppGLM_EXT_matrix_int4x2
 matrix_int4x2_sized.hppGLM_EXT_matrix_int4x2_sized
 matrix_int4x3.hppGLM_EXT_matrix_int4x3
 matrix_int4x3_sized.hppGLM_EXT_matrix_int4x3_sized
 matrix_int4x4.hppGLM_EXT_matrix_int4x4
 matrix_int4x4_sized.hppGLM_EXT_matrix_int4x4_sized
 ext/matrix_integer.hppGLM_EXT_matrix_integer
 gtc/matrix_integer.hppGLM_GTC_matrix_integer
 matrix_interpolation.hppGLM_GTX_matrix_interpolation
 matrix_inverse.hppGLM_GTC_matrix_inverse
 matrix_major_storage.hppGLM_GTX_matrix_major_storage
 matrix_operation.hppGLM_GTX_matrix_operation
 matrix_projection.hppGLM_EXT_matrix_projection
 matrix_query.hppGLM_GTX_matrix_query
 matrix_relational.hppGLM_EXT_matrix_relational
 ext/matrix_transform.hppGLM_EXT_matrix_transform
 gtc/matrix_transform.hppGLM_GTC_matrix_transform
 matrix_transform_2d.hppGLM_GTX_matrix_transform_2d
 matrix_uint2x2.hppGLM_EXT_matrix_uint2x2
 matrix_uint2x2_sized.hppGLM_EXT_matrix_uint2x2_sized
 matrix_uint2x3.hppGLM_EXT_matrix_uint2x3
 matrix_uint2x3_sized.hppGLM_EXT_matrix_uint2x3_sized
 matrix_uint2x4.hppGLM_EXT_matrix_int2x4
 matrix_uint2x4_sized.hppGLM_EXT_matrix_uint2x4_sized
 matrix_uint3x2.hppGLM_EXT_matrix_uint3x2
 matrix_uint3x2_sized.hppGLM_EXT_matrix_uint3x2_sized
 matrix_uint3x3.hppGLM_EXT_matrix_uint3x3
 matrix_uint3x3_sized.hppGLM_EXT_matrix_uint3x3_sized
 matrix_uint3x4.hppGLM_EXT_matrix_uint3x4
 matrix_uint3x4_sized.hpp
 matrix_uint4x2.hppGLM_EXT_matrix_uint4x2
 matrix_uint4x2_sized.hppGLM_EXT_matrix_uint4x2_sized
 matrix_uint4x3.hppGLM_EXT_matrix_uint4x3
 matrix_uint4x3_sized.hppGLM_EXT_matrix_uint4x3_sized
 matrix_uint4x4.hppGLM_EXT_matrix_uint4x4
 matrix_uint4x4_sized.hppGLM_EXT_matrix_uint4x4_sized
 mixed_product.hppGLM_GTX_mixed_producte
 noise.hppGLM_GTC_noise
 norm.hppGLM_GTX_norm
 normal.hppGLM_GTX_normal
 normalize_dot.hppGLM_GTX_normalize_dot
 number_precision.hppGLM_GTX_number_precision
 optimum_pow.hppGLM_GTX_optimum_pow
 orthonormalize.hppGLM_GTX_orthonormalize
 gtc/packing.hppGLM_GTC_packing
 packing.hppCore features
 pca.hppGLM_GTX_pca
 perpendicular.hppGLM_GTX_perpendicular
 polar_coordinates.hppGLM_GTX_polar_coordinates
 projection.hppGLM_GTX_projection
 qualifier.hpp
 gtc/quaternion.hppGLM_GTC_quaternion
 gtx/quaternion.hppGLM_GTX_quaternion
 quaternion_common.hppGLM_EXT_quaternion_common
 quaternion_double.hppGLM_EXT_quaternion_double
 quaternion_double_precision.hppGLM_EXT_quaternion_double_precision
 quaternion_exponential.hppGLM_EXT_quaternion_exponential
 quaternion_float.hppGLM_EXT_quaternion_float
 quaternion_float_precision.hppGLM_EXT_quaternion_float_precision
 quaternion_geometric.hppGLM_EXT_quaternion_geometric
 quaternion_relational.hppGLM_EXT_quaternion_relational
 quaternion_transform.hppGLM_EXT_quaternion_transform
 quaternion_trigonometric.hppGLM_EXT_quaternion_trigonometric
 random.hppGLM_GTC_random
 range.hppGLM_GTX_range
 raw_data.hppGLM_GTX_raw_data
 reciprocal.hppGLM_GTC_reciprocal
 rotate_normalized_axis.hppGLM_GTX_rotate_normalized_axis
 rotate_vector.hppGLM_GTX_rotate_vector
 round.hppGLM_GTC_round
 scalar_common.hppGLM_EXT_scalar_common
 scalar_constants.hppGLM_EXT_scalar_constants
 scalar_int_sized.hppGLM_EXT_scalar_int_sized
 scalar_integer.hppGLM_EXT_scalar_integer
 scalar_multiplication.hppGLM_GTX_scalar_multiplication
 scalar_packing.hppGLM_EXT_scalar_packing
 scalar_reciprocal.hppGLM_EXT_scalar_reciprocal
 ext/scalar_relational.hppGLM_EXT_scalar_relational
 gtx/scalar_relational.hppGLM_GTX_scalar_relational
 scalar_uint_sized.hppGLM_EXT_scalar_uint_sized
 scalar_ulp.hppGLM_EXT_scalar_ulp
 setup.hpp
 spline.hppGLM_GTX_spline
 std_based_type.hppGLM_GTX_std_based_type
 string_cast.hppGLM_GTX_string_cast
 structured_bindings.hppGLM_GTX_structured_bindings
 texture.hppGLM_GTX_texture
 transform.hppGLM_GTX_transform
 transform2.hppGLM_GTX_transform2
 trigonometric.hppCore features
 gtc/type_aligned.hppGLM_GTC_type_aligned
 gtx/type_aligned.hppGLM_GTX_type_aligned
 type_float.hpp
 type_half.hpp
 type_mat2x2.hppCore features
 type_mat2x3.hppCore features
 type_mat2x4.hppCore features
 type_mat3x2.hppCore features
 type_mat3x3.hppCore features
 type_mat3x4.hppCore features
 type_mat4x2.hppCore features
 type_mat4x3.hppCore features
 type_mat4x4.hppCore features
 type_precision.hppGLM_GTC_type_precision
 type_ptr.hppGLM_GTC_type_ptr
 type_quat.hppCore features
 type_trait.hppGLM_GTX_type_trait
 type_vec1.hppCore features
 type_vec2.hppCore features
 type_vec3.hppCore features
 type_vec4.hppCore features
 ulp.hppGLM_GTC_ulp
 vec1.hppGLM_GTC_vec1
 vec2.hppCore features
 vec3.hppCore features
 vec4.hppCore features
 vec_swizzle.hppGLM_GTX_vec_swizzle
 vector_angle.hppGLM_GTX_vector_angle
 vector_bool1.hppGLM_EXT_vector_bool1
 vector_bool1_precision.hppGLM_EXT_vector_bool1_precision
 vector_bool2.hppCore features
 vector_bool2_precision.hppCore features
 vector_bool3.hppCore features
 vector_bool3_precision.hppCore features
 vector_bool4.hppCore features
 vector_bool4_precision.hppCore features
 vector_common.hppGLM_EXT_vector_common
 vector_double1.hppGLM_EXT_vector_double1
 vector_double1_precision.hppGLM_EXT_vector_double1_precision
 vector_double2.hppCore features
 vector_double2_precision.hppCore features
 vector_double3.hppCore features
 vector_double3_precision.hppCore features
 vector_double4.hppCore features
 vector_double4_precision.hppCore features
 vector_float1.hppGLM_EXT_vector_float1
 vector_float1_precision.hppGLM_EXT_vector_float1_precision
 vector_float2.hppCore features
 vector_float2_precision.hppCore features
 vector_float3.hppCore features
 vector_float3_precision.hppCore features
 vector_float4.hppCore features
 vector_float4_precision.hppCore features
 vector_int1.hppGLM_EXT_vector_int1
 vector_int1_sized.hppGLM_EXT_vector_int1_sized
 vector_int2.hppCore features
 vector_int2_sized.hppGLM_EXT_vector_int2_sized
 vector_int3.hppCore features
 vector_int3_sized.hppGLM_EXT_vector_int3_sized
 vector_int4.hppCore features
 vector_int4_sized.hppGLM_EXT_vector_int4_sized
 vector_integer.hppGLM_EXT_vector_integer
 vector_packing.hppGLM_EXT_vector_packing
 vector_query.hppGLM_GTX_vector_query
 vector_reciprocal.hppGLM_EXT_vector_reciprocal
 ext/vector_relational.hppGLM_EXT_vector_relational
 vector_relational.hppCore features
 vector_uint1.hppGLM_EXT_vector_uint1
 vector_uint1_sized.hppGLM_EXT_vector_uint1_sized
 vector_uint2.hppCore features
 vector_uint2_sized.hppGLM_EXT_vector_uint2_sized
 vector_uint3.hppCore features
 vector_uint3_sized.hppGLM_EXT_vector_uint3_sized
 vector_uint4.hppCore features
 vector_uint4_sized.hppGLM_EXT_vector_uint4_sized
 vector_ulp.hppGLM_EXT_vector_ulp
 wrap.hppGLM_GTX_wrap
+
+
+ + + + diff --git a/include/glm/doc/api/folderclosed.png b/include/glm/doc/api/folderclosed.png new file mode 100644 index 0000000..2a4bb4a Binary files /dev/null and b/include/glm/doc/api/folderclosed.png differ diff --git a/include/glm/doc/api/folderopen.png b/include/glm/doc/api/folderopen.png new file mode 100644 index 0000000..cac0078 Binary files /dev/null and b/include/glm/doc/api/folderopen.png differ diff --git a/include/glm/doc/api/index.html b/include/glm/doc/api/index.html new file mode 100644 index 0000000..3ef9bcf --- /dev/null +++ b/include/glm/doc/api/index.html @@ -0,0 +1,83 @@ + + + + + + + +1.0.2 API documentation: OpenGL Mathematics (GLM) + + + + + + + + + +
+
+ + + + + + + +
+
1.0.2 API documentation +
+
+
+ + + + + + + +
+ +
+
+ + +
+ +
+ +
+
+
OpenGL Mathematics (GLM)
+
+ +
+ + + + diff --git a/include/glm/doc/api/jquery.js b/include/glm/doc/api/jquery.js new file mode 100644 index 0000000..103c32d --- /dev/null +++ b/include/glm/doc/api/jquery.js @@ -0,0 +1,35 @@ +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0a;a++)for(i in o[a])n=o[a][i],o[a].hasOwnProperty(i)&&void 0!==n&&(e[i]=t.isPlainObject(n)?t.isPlainObject(e[i])?t.widget.extend({},e[i],n):t.widget.extend({},n):n);return e},t.widget.bridge=function(e,i){var n=i.prototype.widgetFullName||e;t.fn[e]=function(o){var a="string"==typeof o,r=s.call(arguments,1),h=this;return a?this.length||"instance"!==o?this.each(function(){var i,s=t.data(this,n);return"instance"===o?(h=s,!1):s?t.isFunction(s[o])&&"_"!==o.charAt(0)?(i=s[o].apply(s,r),i!==s&&void 0!==i?(h=i&&i.jquery?h.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+o+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+o+"'")}):h=void 0:(r.length&&(o=t.widget.extend.apply(null,[o].concat(r))),this.each(function(){var e=t.data(this,n);e?(e.option(o||{}),e._init&&e._init()):t.data(this,n,new i(o,this))})),h}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,s){s=t(s||this.defaultElement||this)[0],this.element=t(s),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},s!==this&&(t.data(s,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===s&&this.destroy()}}),this.document=t(s.style?s.ownerDocument:s.document||s),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,m=-2*e.offset[1];0>c?(s=t.top+p+f+m+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+m)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+m-h,(i>0||u>a(i))&&(t.top+=p+f+m))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}}),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var n=!1;t(document).on("mouseup",function(){n=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!n){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,o="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!o&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),n=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,n=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("
").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("
"),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidtht.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
"),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element +},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,m=s.maxWidth&&p>s.maxWidth,g=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),m&&(p-=l),g&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable});/** + * Copyright (c) 2007 Ariel Flesler - aflesler ○ gmail • com | https://github.com/flesler + * Licensed under MIT + * @author Ariel Flesler + * @version 2.1.2 + */ +;(function(f){"use strict";"function"===typeof define&&define.amd?define(["jquery"],f):"undefined"!==typeof module&&module.exports?module.exports=f(require("jquery")):f(jQuery)})(function($){"use strict";function n(a){return!a.nodeName||-1!==$.inArray(a.nodeName.toLowerCase(),["iframe","#document","html","body"])}function h(a){return $.isFunction(a)||$.isPlainObject(a)?a:{top:a,left:a}}var p=$.scrollTo=function(a,d,b){return $(window).scrollTo(a,d,b)};p.defaults={axis:"xy",duration:0,limit:!0};$.fn.scrollTo=function(a,d,b){"object"=== typeof d&&(b=d,d=0);"function"===typeof b&&(b={onAfter:b});"max"===a&&(a=9E9);b=$.extend({},p.defaults,b);d=d||b.duration;var u=b.queue&&1=f[g]?0:Math.min(f[g],n));!a&&1-1){targetElements.on(evt+EVENT_NAMESPACE,function elementToggle(event){$.powerTip.toggle(this,event)})}else{targetElements.on(evt+EVENT_NAMESPACE,function elementOpen(event){$.powerTip.show(this,event)})}});$.each(options.closeEvents,function(idx,evt){if($.inArray(evt,options.openEvents)<0){targetElements.on(evt+EVENT_NAMESPACE,function elementClose(event){$.powerTip.hide(this,!isMouseEvent(event))})}});targetElements.on("keydown"+EVENT_NAMESPACE,function elementKeyDown(event){if(event.keyCode===27){$.powerTip.hide(this,true)}})}return targetElements};$.fn.powerTip.defaults={fadeInTime:200,fadeOutTime:100,followMouse:false,popupId:"powerTip",popupClass:null,intentSensitivity:7,intentPollInterval:100,closeDelay:100,placement:"n",smartPlacement:false,offset:10,mouseOnToPopup:false,manual:false,openEvents:["mouseenter","focus"],closeEvents:["mouseleave","blur"]};$.fn.powerTip.smartPlacementLists={n:["n","ne","nw","s"],e:["e","ne","se","w","nw","sw","n","s","e"],s:["s","se","sw","n"],w:["w","nw","sw","e","ne","se","n","s","w"],nw:["nw","w","sw","n","s","se","nw"],ne:["ne","e","se","n","s","sw","ne"],sw:["sw","w","nw","s","n","ne","sw"],se:["se","e","ne","s","n","nw","se"],"nw-alt":["nw-alt","n","ne-alt","sw-alt","s","se-alt","w","e"],"ne-alt":["ne-alt","n","nw-alt","se-alt","s","sw-alt","e","w"],"sw-alt":["sw-alt","s","se-alt","nw-alt","n","ne-alt","w","e"],"se-alt":["se-alt","s","sw-alt","ne-alt","n","nw-alt","e","w"]};$.powerTip={show:function apiShowTip(element,event){if(isMouseEvent(event)){trackMouse(event);session.previousX=event.pageX;session.previousY=event.pageY;$(element).data(DATA_DISPLAYCONTROLLER).show()}else{$(element).first().data(DATA_DISPLAYCONTROLLER).show(true,true)}return element},reposition:function apiResetPosition(element){$(element).first().data(DATA_DISPLAYCONTROLLER).resetPosition();return element},hide:function apiCloseTip(element,immediate){var displayController;immediate=element?immediate:true;if(element){displayController=$(element).first().data(DATA_DISPLAYCONTROLLER)}else if(session.activeHover){displayController=session.activeHover.data(DATA_DISPLAYCONTROLLER)}if(displayController){displayController.hide(immediate)}return element},toggle:function apiToggle(element,event){if(session.activeHover&&session.activeHover.is(element)){$.powerTip.hide(element,!isMouseEvent(event))}else{$.powerTip.show(element,event)}return element}};$.powerTip.showTip=$.powerTip.show;$.powerTip.closeTip=$.powerTip.hide;function CSSCoordinates(){var me=this;me.top="auto";me.left="auto";me.right="auto";me.bottom="auto";me.set=function(property,value){if($.isNumeric(value)){me[property]=Math.round(value)}}}function DisplayController(element,options,tipController){var hoverTimer=null,myCloseDelay=null;function openTooltip(immediate,forceOpen){cancelTimer();if(!element.data(DATA_HASACTIVEHOVER)){if(!immediate){session.tipOpenImminent=true;hoverTimer=setTimeout(function intentDelay(){hoverTimer=null;checkForIntent()},options.intentPollInterval)}else{if(forceOpen){element.data(DATA_FORCEDOPEN,true)}closeAnyDelayed();tipController.showTip(element)}}else{cancelClose()}}function closeTooltip(disableDelay){if(myCloseDelay){myCloseDelay=session.closeDelayTimeout=clearTimeout(myCloseDelay);session.delayInProgress=false}cancelTimer();session.tipOpenImminent=false;if(element.data(DATA_HASACTIVEHOVER)){element.data(DATA_FORCEDOPEN,false);if(!disableDelay){session.delayInProgress=true;session.closeDelayTimeout=setTimeout(function closeDelay(){session.closeDelayTimeout=null;tipController.hideTip(element);session.delayInProgress=false;myCloseDelay=null},options.closeDelay);myCloseDelay=session.closeDelayTimeout}else{tipController.hideTip(element)}}}function checkForIntent(){var xDifference=Math.abs(session.previousX-session.currentX),yDifference=Math.abs(session.previousY-session.currentY),totalDifference=xDifference+yDifference;if(totalDifference",{id:options.popupId});if($body.length===0){$body=$("body")}$body.append(tipElement);session.tooltips=session.tooltips?session.tooltips.add(tipElement):tipElement}if(options.followMouse){if(!tipElement.data(DATA_HASMOUSEMOVE)){$document.on("mousemove"+EVENT_NAMESPACE,positionTipOnCursor);$window.on("scroll"+EVENT_NAMESPACE,positionTipOnCursor);tipElement.data(DATA_HASMOUSEMOVE,true)}}function beginShowTip(element){element.data(DATA_HASACTIVEHOVER,true);tipElement.queue(function queueTipInit(next){showTip(element);next()})}function showTip(element){var tipContent;if(!element.data(DATA_HASACTIVEHOVER)){return}if(session.isTipOpen){if(!session.isClosing){hideTip(session.activeHover)}tipElement.delay(100).queue(function queueTipAgain(next){showTip(element);next()});return}element.trigger("powerTipPreRender");tipContent=getTooltipContent(element);if(tipContent){tipElement.empty().append(tipContent)}else{return}element.trigger("powerTipRender");session.activeHover=element;session.isTipOpen=true;tipElement.data(DATA_MOUSEONTOTIP,options.mouseOnToPopup);tipElement.addClass(options.popupClass);if(!options.followMouse||element.data(DATA_FORCEDOPEN)){positionTipOnElement(element);session.isFixedTipOpen=true}else{positionTipOnCursor()}if(!element.data(DATA_FORCEDOPEN)&&!options.followMouse){$document.on("click"+EVENT_NAMESPACE,function documentClick(event){var target=event.target;if(target!==element[0]){if(options.mouseOnToPopup){if(target!==tipElement[0]&&!$.contains(tipElement[0],target)){$.powerTip.hide()}}else{$.powerTip.hide()}}})}if(options.mouseOnToPopup&&!options.manual){tipElement.on("mouseenter"+EVENT_NAMESPACE,function tipMouseEnter(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).cancel()}});tipElement.on("mouseleave"+EVENT_NAMESPACE,function tipMouseLeave(){if(session.activeHover){session.activeHover.data(DATA_DISPLAYCONTROLLER).hide()}})}tipElement.fadeIn(options.fadeInTime,function fadeInCallback(){if(!session.desyncTimeout){session.desyncTimeout=setInterval(closeDesyncedTip,500)}element.trigger("powerTipOpen")})}function hideTip(element){session.isClosing=true;session.isTipOpen=false;session.desyncTimeout=clearInterval(session.desyncTimeout);element.data(DATA_HASACTIVEHOVER,false);element.data(DATA_FORCEDOPEN,false);$document.off("click"+EVENT_NAMESPACE);tipElement.off(EVENT_NAMESPACE);tipElement.fadeOut(options.fadeOutTime,function fadeOutCallback(){var coords=new CSSCoordinates;session.activeHover=null;session.isClosing=false;session.isFixedTipOpen=false;tipElement.removeClass();coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);tipElement.css(coords);element.trigger("powerTipClose")})}function positionTipOnCursor(){var tipWidth,tipHeight,coords,collisions,collisionCount;if(!session.isFixedTipOpen&&(session.isTipOpen||session.tipOpenImminent&&tipElement.data(DATA_HASMOUSEMOVE))){tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=new CSSCoordinates;coords.set("top",session.currentY+options.offset);coords.set("left",session.currentX+options.offset);collisions=getViewportCollisions(coords,tipWidth,tipHeight);if(collisions!==Collision.none){collisionCount=countFlags(collisions);if(collisionCount===1){if(collisions===Collision.right){coords.set("left",session.scrollLeft+session.windowWidth-tipWidth)}else if(collisions===Collision.bottom){coords.set("top",session.scrollTop+session.windowHeight-tipHeight)}}else{coords.set("left",session.currentX-tipWidth-options.offset);coords.set("top",session.currentY-tipHeight-options.offset)}}tipElement.css(coords)}}function positionTipOnElement(element){var priorityList,finalPlacement;if(options.smartPlacement||options.followMouse&&element.data(DATA_FORCEDOPEN)){priorityList=$.fn.powerTip.smartPlacementLists[options.placement];$.each(priorityList,function(idx,pos){var collisions=getViewportCollisions(placeTooltip(element,pos),tipElement.outerWidth(),tipElement.outerHeight());finalPlacement=pos;return collisions!==Collision.none})}else{placeTooltip(element,options.placement);finalPlacement=options.placement}tipElement.removeClass("w nw sw e ne se n s w se-alt sw-alt ne-alt nw-alt");tipElement.addClass(finalPlacement)}function placeTooltip(element,placement){var iterationCount=0,tipWidth,tipHeight,coords=new CSSCoordinates;coords.set("top",0);coords.set("left",0);tipElement.css(coords);do{tipWidth=tipElement.outerWidth();tipHeight=tipElement.outerHeight();coords=placementCalculator.compute(element,placement,tipWidth,tipHeight,options.offset);tipElement.css(coords)}while(++iterationCount<=5&&(tipWidth!==tipElement.outerWidth()||tipHeight!==tipElement.outerHeight()));return coords}function closeDesyncedTip(){var isDesynced=false,hasDesyncableCloseEvent=$.grep(["mouseleave","mouseout","blur","focusout"],function(eventType){return $.inArray(eventType,options.closeEvents)!==-1}).length>0;if(session.isTipOpen&&!session.isClosing&&!session.delayInProgress&&hasDesyncableCloseEvent){if(session.activeHover.data(DATA_HASACTIVEHOVER)===false||session.activeHover.is(":disabled")){isDesynced=true}else if(!isMouseOver(session.activeHover)&&!session.activeHover.is(":focus")&&!session.activeHover.data(DATA_FORCEDOPEN)){if(tipElement.data(DATA_MOUSEONTOTIP)){if(!isMouseOver(tipElement)){isDesynced=true}}else{isDesynced=true}}if(isDesynced){hideTip(session.activeHover)}}}this.showTip=beginShowTip;this.hideTip=hideTip;this.resetPosition=positionTipOnElement}function isSvgElement(element){return Boolean(window.SVGElement&&element[0]instanceof SVGElement)}function isMouseEvent(event){return Boolean(event&&$.inArray(event.type,MOUSE_EVENTS)>-1&&typeof event.pageX==="number")}function initTracking(){if(!session.mouseTrackingActive){session.mouseTrackingActive=true;getViewportDimensions();$(getViewportDimensions);$document.on("mousemove"+EVENT_NAMESPACE,trackMouse);$window.on("resize"+EVENT_NAMESPACE,trackResize);$window.on("scroll"+EVENT_NAMESPACE,trackScroll)}}function getViewportDimensions(){session.scrollLeft=$window.scrollLeft();session.scrollTop=$window.scrollTop();session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackResize(){session.windowWidth=$window.width();session.windowHeight=$window.height()}function trackScroll(){var x=$window.scrollLeft(),y=$window.scrollTop();if(x!==session.scrollLeft){session.currentX+=x-session.scrollLeft;session.scrollLeft=x}if(y!==session.scrollTop){session.currentY+=y-session.scrollTop;session.scrollTop=y}}function trackMouse(event){session.currentX=event.pageX;session.currentY=event.pageY}function isMouseOver(element){var elementPosition=element.offset(),elementBox=element[0].getBoundingClientRect(),elementWidth=elementBox.right-elementBox.left,elementHeight=elementBox.bottom-elementBox.top;return session.currentX>=elementPosition.left&&session.currentX<=elementPosition.left+elementWidth&&session.currentY>=elementPosition.top&&session.currentY<=elementPosition.top+elementHeight}function getTooltipContent(element){var tipText=element.data(DATA_POWERTIP),tipObject=element.data(DATA_POWERTIPJQ),tipTarget=element.data(DATA_POWERTIPTARGET),targetElement,content;if(tipText){if($.isFunction(tipText)){tipText=tipText.call(element[0])}content=tipText}else if(tipObject){if($.isFunction(tipObject)){tipObject=tipObject.call(element[0])}if(tipObject.length>0){content=tipObject.clone(true,true)}}else if(tipTarget){targetElement=$("#"+tipTarget);if(targetElement.length>0){content=targetElement.html()}}return content}function getViewportCollisions(coords,elementWidth,elementHeight){var viewportTop=session.scrollTop,viewportLeft=session.scrollLeft,viewportBottom=viewportTop+session.windowHeight,viewportRight=viewportLeft+session.windowWidth,collisions=Collision.none;if(coords.topviewportBottom||Math.abs(coords.bottom-session.windowHeight)>viewportBottom){collisions|=Collision.bottom}if(coords.leftviewportRight){collisions|=Collision.left}if(coords.left+elementWidth>viewportRight||coords.right1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery);/*! SmartMenus jQuery Plugin - v1.1.0 - September 17, 2017 + * http://www.smartmenus.org/ + * Copyright Vasil Dinkov, Vadikom Web Ltd. http://vadikom.com; Licensed MIT */(function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"==typeof module&&"object"==typeof module.exports?module.exports=t(require("jquery")):t(jQuery)})(function($){function initMouseDetection(t){var e=".smartmenus_mouse";if(mouseDetectionEnabled||t)mouseDetectionEnabled&&t&&($(document).off(e),mouseDetectionEnabled=!1);else{var i=!0,s=null,o={mousemove:function(t){var e={x:t.pageX,y:t.pageY,timeStamp:(new Date).getTime()};if(s){var o=Math.abs(s.x-e.x),a=Math.abs(s.y-e.y);if((o>0||a>0)&&2>=o&&2>=a&&300>=e.timeStamp-s.timeStamp&&(mouse=!0,i)){var n=$(t.target).closest("a");n.is("a")&&$.each(menuTrees,function(){return $.contains(this.$root[0],n[0])?(this.itemEnter({currentTarget:n[0]}),!1):void 0}),i=!1}}s=e}};o[touchEvents?"touchstart":"pointerover pointermove pointerout MSPointerOver MSPointerMove MSPointerOut"]=function(t){isTouchEvent(t.originalEvent)&&(mouse=!1)},$(document).on(getEventsNS(o,e)),mouseDetectionEnabled=!0}}function isTouchEvent(t){return!/^(4|mouse)$/.test(t.pointerType)}function getEventsNS(t,e){e||(e="");var i={};for(var s in t)i[s.split(" ").join(e+" ")+e]=t[s];return i}var menuTrees=[],mouse=!1,touchEvents="ontouchstart"in window,mouseDetectionEnabled=!1,requestAnimationFrame=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},cancelAnimationFrame=window.cancelAnimationFrame||function(t){clearTimeout(t)},canAnimate=!!$.fn.animate;return $.SmartMenus=function(t,e){this.$root=$(t),this.opts=e,this.rootId="",this.accessIdPrefix="",this.$subArrow=null,this.activatedItems=[],this.visibleSubMenus=[],this.showTimeout=0,this.hideTimeout=0,this.scrollTimeout=0,this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.idInc=0,this.$firstLink=null,this.$firstSub=null,this.disabled=!1,this.$disableOverlay=null,this.$touchScrollingSub=null,this.cssTransforms3d="perspective"in t.style||"webkitPerspective"in t.style,this.wasCollapsible=!1,this.init()},$.extend($.SmartMenus,{hideAll:function(){$.each(menuTrees,function(){this.menuHideAll()})},destroy:function(){for(;menuTrees.length;)menuTrees[0].destroy();initMouseDetection(!0)},prototype:{init:function(t){var e=this;if(!t){menuTrees.push(this),this.rootId=((new Date).getTime()+Math.random()+"").replace(/\D/g,""),this.accessIdPrefix="sm-"+this.rootId+"-",this.$root.hasClass("sm-rtl")&&(this.opts.rightToLeftSubMenus=!0);var i=".smartmenus";this.$root.data("smartmenus",this).attr("data-smartmenus-id",this.rootId).dataSM("level",1).on(getEventsNS({"mouseover focusin":$.proxy(this.rootOver,this),"mouseout focusout":$.proxy(this.rootOut,this),keydown:$.proxy(this.rootKeyDown,this)},i)).on(getEventsNS({mouseenter:$.proxy(this.itemEnter,this),mouseleave:$.proxy(this.itemLeave,this),mousedown:$.proxy(this.itemDown,this),focus:$.proxy(this.itemFocus,this),blur:$.proxy(this.itemBlur,this),click:$.proxy(this.itemClick,this)},i),"a"),i+=this.rootId,this.opts.hideOnClick&&$(document).on(getEventsNS({touchstart:$.proxy(this.docTouchStart,this),touchmove:$.proxy(this.docTouchMove,this),touchend:$.proxy(this.docTouchEnd,this),click:$.proxy(this.docClick,this)},i)),$(window).on(getEventsNS({"resize orientationchange":$.proxy(this.winResize,this)},i)),this.opts.subIndicators&&(this.$subArrow=$("").addClass("sub-arrow"),this.opts.subIndicatorsText&&this.$subArrow.html(this.opts.subIndicatorsText)),initMouseDetection()}if(this.$firstSub=this.$root.find("ul").each(function(){e.menuInit($(this))}).eq(0),this.$firstLink=this.$root.find("a").eq(0),this.opts.markCurrentItem){var s=/(index|default)\.[^#\?\/]*/i,o=/#.*/,a=window.location.href.replace(s,""),n=a.replace(o,"");this.$root.find("a").each(function(){var t=this.href.replace(s,""),i=$(this);(t==a||t==n)&&(i.addClass("current"),e.opts.markCurrentTree&&i.parentsUntil("[data-smartmenus-id]","ul").each(function(){$(this).dataSM("parent-a").addClass("current")}))})}this.wasCollapsible=this.isCollapsible()},destroy:function(t){if(!t){var e=".smartmenus";this.$root.removeData("smartmenus").removeAttr("data-smartmenus-id").removeDataSM("level").off(e),e+=this.rootId,$(document).off(e),$(window).off(e),this.opts.subIndicators&&(this.$subArrow=null)}this.menuHideAll();var i=this;this.$root.find("ul").each(function(){var t=$(this);t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.dataSM("shown-before")&&((i.opts.subMenusMinWidth||i.opts.subMenusMaxWidth)&&t.css({width:"",minWidth:"",maxWidth:""}).removeClass("sm-nowrap"),t.dataSM("scroll-arrows")&&t.dataSM("scroll-arrows").remove(),t.css({zIndex:"",top:"",left:"",marginLeft:"",marginTop:"",display:""})),0==(t.attr("id")||"").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeDataSM("in-mega").removeDataSM("shown-before").removeDataSM("scroll-arrows").removeDataSM("parent-a").removeDataSM("level").removeDataSM("beforefirstshowfired").removeAttr("role").removeAttr("aria-hidden").removeAttr("aria-labelledby").removeAttr("aria-expanded"),this.$root.find("a.has-submenu").each(function(){var t=$(this);0==t.attr("id").indexOf(i.accessIdPrefix)&&t.removeAttr("id")}).removeClass("has-submenu").removeDataSM("sub").removeAttr("aria-haspopup").removeAttr("aria-controls").removeAttr("aria-expanded").closest("li").removeDataSM("sub"),this.opts.subIndicators&&this.$root.find("span.sub-arrow").remove(),this.opts.markCurrentItem&&this.$root.find("a.current").removeClass("current"),t||(this.$root=null,this.$firstLink=null,this.$firstSub=null,this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),menuTrees.splice($.inArray(this,menuTrees),1))},disable:function(t){if(!this.disabled){if(this.menuHideAll(),!t&&!this.opts.isPopup&&this.$root.is(":visible")){var e=this.$root.offset();this.$disableOverlay=$('
').css({position:"absolute",top:e.top,left:e.left,width:this.$root.outerWidth(),height:this.$root.outerHeight(),zIndex:this.getStartZIndex(!0),opacity:0}).appendTo(document.body)}this.disabled=!0}},docClick:function(t){return this.$touchScrollingSub?(this.$touchScrollingSub=null,void 0):((this.visibleSubMenus.length&&!$.contains(this.$root[0],t.target)||$(t.target).closest("a").length)&&this.menuHideAll(),void 0)},docTouchEnd:function(){if(this.lastTouch){if(!(!this.visibleSubMenus.length||void 0!==this.lastTouch.x2&&this.lastTouch.x1!=this.lastTouch.x2||void 0!==this.lastTouch.y2&&this.lastTouch.y1!=this.lastTouch.y2||this.lastTouch.target&&$.contains(this.$root[0],this.lastTouch.target))){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var t=this;this.hideTimeout=setTimeout(function(){t.menuHideAll()},350)}this.lastTouch=null}},docTouchMove:function(t){if(this.lastTouch){var e=t.originalEvent.touches[0];this.lastTouch.x2=e.pageX,this.lastTouch.y2=e.pageY}},docTouchStart:function(t){var e=t.originalEvent.touches[0];this.lastTouch={x1:e.pageX,y1:e.pageY,target:e.target}},enable:function(){this.disabled&&(this.$disableOverlay&&(this.$disableOverlay.remove(),this.$disableOverlay=null),this.disabled=!1)},getClosestMenu:function(t){for(var e=$(t).closest("ul");e.dataSM("in-mega");)e=e.parent().closest("ul");return e[0]||null},getHeight:function(t){return this.getOffset(t,!0)},getOffset:function(t,e){var i;"none"==t.css("display")&&(i={position:t[0].style.position,visibility:t[0].style.visibility},t.css({position:"absolute",visibility:"hidden"}).show());var s=t[0].getBoundingClientRect&&t[0].getBoundingClientRect(),o=s&&(e?s.height||s.bottom-s.top:s.width||s.right-s.left);return o||0===o||(o=e?t[0].offsetHeight:t[0].offsetWidth),i&&t.hide().css(i),o},getStartZIndex:function(t){var e=parseInt(this[t?"$root":"$firstSub"].css("z-index"));return!t&&isNaN(e)&&(e=parseInt(this.$root.css("z-index"))),isNaN(e)?1:e},getTouchPoint:function(t){return t.touches&&t.touches[0]||t.changedTouches&&t.changedTouches[0]||t},getViewport:function(t){var e=t?"Height":"Width",i=document.documentElement["client"+e],s=window["inner"+e];return s&&(i=Math.min(i,s)),i},getViewportHeight:function(){return this.getViewport(!0)},getViewportWidth:function(){return this.getViewport()},getWidth:function(t){return this.getOffset(t)},handleEvents:function(){return!this.disabled&&this.isCSSOn()},handleItemEvents:function(t){return this.handleEvents()&&!this.isLinkInMegaMenu(t)},isCollapsible:function(){return"static"==this.$firstSub.css("position")},isCSSOn:function(){return"inline"!=this.$firstLink.css("display")},isFixed:function(){var t="fixed"==this.$root.css("position");return t||this.$root.parentsUntil("body").each(function(){return"fixed"==$(this).css("position")?(t=!0,!1):void 0}),t},isLinkInMegaMenu:function(t){return $(this.getClosestMenu(t[0])).hasClass("mega-menu")},isTouchMode:function(){return!mouse||this.opts.noMouseOver||this.isCollapsible()},itemActivate:function(t,e){var i=t.closest("ul"),s=i.dataSM("level");if(s>1&&(!this.activatedItems[s-2]||this.activatedItems[s-2][0]!=i.dataSM("parent-a")[0])){var o=this;$(i.parentsUntil("[data-smartmenus-id]","ul").get().reverse()).add(i).each(function(){o.itemActivate($(this).dataSM("parent-a"))})}if((!this.isCollapsible()||e)&&this.menuHideSubMenus(this.activatedItems[s-1]&&this.activatedItems[s-1][0]==t[0]?s:s-1),this.activatedItems[s-1]=t,this.$root.triggerHandler("activate.smapi",t[0])!==!1){var a=t.dataSM("sub");a&&(this.isTouchMode()||!this.opts.showOnClick||this.clickActivated)&&this.menuShow(a)}},itemBlur:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&this.$root.triggerHandler("blur.smapi",e[0])},itemClick:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(this.$touchScrollingSub&&this.$touchScrollingSub[0]==e.closest("ul")[0])return this.$touchScrollingSub=null,t.stopPropagation(),!1;if(this.$root.triggerHandler("click.smapi",e[0])===!1)return!1;var i=$(t.target).is(".sub-arrow"),s=e.dataSM("sub"),o=s?2==s.dataSM("level"):!1,a=this.isCollapsible(),n=/toggle$/.test(this.opts.collapsibleBehavior),r=/link$/.test(this.opts.collapsibleBehavior),h=/^accordion/.test(this.opts.collapsibleBehavior);if(s&&!s.is(":visible")){if((!r||!a||i)&&(this.opts.showOnClick&&o&&(this.clickActivated=!0),this.itemActivate(e,h),s.is(":visible")))return this.focusActivated=!0,!1}else if(a&&(n||i))return this.itemActivate(e,h),this.menuHide(s),n&&(this.focusActivated=!1),!1;return this.opts.showOnClick&&o||e.hasClass("disabled")||this.$root.triggerHandler("select.smapi",e[0])===!1?!1:void 0}},itemDown:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&e.dataSM("mousedown",!0)},itemEnter:function(t){var e=$(t.currentTarget);if(this.handleItemEvents(e)){if(!this.isTouchMode()){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);var i=this;this.showTimeout=setTimeout(function(){i.itemActivate(e)},this.opts.showOnClick&&1==e.closest("ul").dataSM("level")?1:this.opts.showTimeout)}this.$root.triggerHandler("mouseenter.smapi",e[0])}},itemFocus:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(!this.focusActivated||this.isTouchMode()&&e.dataSM("mousedown")||this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0]==e[0]||this.itemActivate(e,!0),this.$root.triggerHandler("focus.smapi",e[0]))},itemLeave:function(t){var e=$(t.currentTarget);this.handleItemEvents(e)&&(this.isTouchMode()||(e[0].blur(),this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0)),e.removeDataSM("mousedown"),this.$root.triggerHandler("mouseleave.smapi",e[0]))},menuHide:function(t){if(this.$root.triggerHandler("beforehide.smapi",t[0])!==!1&&(canAnimate&&t.stop(!0,!0),"none"!=t.css("display"))){var e=function(){t.css("z-index","")};this.isCollapsible()?canAnimate&&this.opts.collapsibleHideFunction?this.opts.collapsibleHideFunction.call(this,t,e):t.hide(this.opts.collapsibleHideDuration,e):canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,t,e):t.hide(this.opts.hideDuration,e),t.dataSM("scroll")&&(this.menuScrollStop(t),t.css({"touch-action":"","-ms-touch-action":"","-webkit-transform":"",transform:""}).off(".smartmenus_scroll").removeDataSM("scroll").dataSM("scroll-arrows").hide()),t.dataSM("parent-a").removeClass("highlighted").attr("aria-expanded","false"),t.attr({"aria-expanded":"false","aria-hidden":"true"});var i=t.dataSM("level");this.activatedItems.splice(i-1,1),this.visibleSubMenus.splice($.inArray(t,this.visibleSubMenus),1),this.$root.triggerHandler("hide.smapi",t[0])}},menuHideAll:function(){this.showTimeout&&(clearTimeout(this.showTimeout),this.showTimeout=0);for(var t=this.opts.isPopup?1:0,e=this.visibleSubMenus.length-1;e>=t;e--)this.menuHide(this.visibleSubMenus[e]);this.opts.isPopup&&(canAnimate&&this.$root.stop(!0,!0),this.$root.is(":visible")&&(canAnimate&&this.opts.hideFunction?this.opts.hideFunction.call(this,this.$root):this.$root.hide(this.opts.hideDuration))),this.activatedItems=[],this.visibleSubMenus=[],this.clickActivated=!1,this.focusActivated=!1,this.zIndexInc=0,this.$root.triggerHandler("hideAll.smapi")},menuHideSubMenus:function(t){for(var e=this.activatedItems.length-1;e>=t;e--){var i=this.activatedItems[e].dataSM("sub");i&&this.menuHide(i)}},menuInit:function(t){if(!t.dataSM("in-mega")){t.hasClass("mega-menu")&&t.find("ul").dataSM("in-mega",!0);for(var e=2,i=t[0];(i=i.parentNode.parentNode)!=this.$root[0];)e++;var s=t.prevAll("a").eq(-1);s.length||(s=t.prevAll().find("a").eq(-1)),s.addClass("has-submenu").dataSM("sub",t),t.dataSM("parent-a",s).dataSM("level",e).parent().dataSM("sub",t);var o=s.attr("id")||this.accessIdPrefix+ ++this.idInc,a=t.attr("id")||this.accessIdPrefix+ ++this.idInc;s.attr({id:o,"aria-haspopup":"true","aria-controls":a,"aria-expanded":"false"}),t.attr({id:a,role:"group","aria-hidden":"true","aria-labelledby":o,"aria-expanded":"false"}),this.opts.subIndicators&&s[this.opts.subIndicatorsPos](this.$subArrow.clone())}},menuPosition:function(t){var e,i,s=t.dataSM("parent-a"),o=s.closest("li"),a=o.parent(),n=t.dataSM("level"),r=this.getWidth(t),h=this.getHeight(t),u=s.offset(),l=u.left,c=u.top,d=this.getWidth(s),m=this.getHeight(s),p=$(window),f=p.scrollLeft(),v=p.scrollTop(),b=this.getViewportWidth(),S=this.getViewportHeight(),g=a.parent().is("[data-sm-horizontal-sub]")||2==n&&!a.hasClass("sm-vertical"),M=this.opts.rightToLeftSubMenus&&!o.is("[data-sm-reverse]")||!this.opts.rightToLeftSubMenus&&o.is("[data-sm-reverse]"),w=2==n?this.opts.mainMenuSubOffsetX:this.opts.subMenusSubOffsetX,T=2==n?this.opts.mainMenuSubOffsetY:this.opts.subMenusSubOffsetY;if(g?(e=M?d-r-w:w,i=this.opts.bottomToTopSubMenus?-h-T:m+T):(e=M?w-r:d-w,i=this.opts.bottomToTopSubMenus?m-T-h:T),this.opts.keepInViewport){var y=l+e,I=c+i;if(M&&f>y?e=g?f-y+e:d-w:!M&&y+r>f+b&&(e=g?f+b-r-y+e:w-r),g||(S>h&&I+h>v+S?i+=v+S-h-I:(h>=S||v>I)&&(i+=v-I)),g&&(I+h>v+S+.49||v>I)||!g&&h>S+.49){var x=this;t.dataSM("scroll-arrows")||t.dataSM("scroll-arrows",$([$('')[0],$('')[0]]).on({mouseenter:function(){t.dataSM("scroll").up=$(this).hasClass("scroll-up"),x.menuScroll(t)},mouseleave:function(e){x.menuScrollStop(t),x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(t){t.preventDefault()}}).insertAfter(t));var A=".smartmenus_scroll";if(t.dataSM("scroll",{y:this.cssTransforms3d?0:i-m,step:1,itemH:m,subH:h,arrowDownH:this.getHeight(t.dataSM("scroll-arrows").eq(1))}).on(getEventsNS({mouseover:function(e){x.menuScrollOver(t,e)},mouseout:function(e){x.menuScrollOut(t,e)},"mousewheel DOMMouseScroll":function(e){x.menuScrollMousewheel(t,e)}},A)).dataSM("scroll-arrows").css({top:"auto",left:"0",marginLeft:e+(parseInt(t.css("border-left-width"))||0),width:r-(parseInt(t.css("border-left-width"))||0)-(parseInt(t.css("border-right-width"))||0),zIndex:t.css("z-index")}).eq(g&&this.opts.bottomToTopSubMenus?0:1).show(),this.isFixed()){var C={};C[touchEvents?"touchstart touchmove touchend":"pointerdown pointermove pointerup MSPointerDown MSPointerMove MSPointerUp"]=function(e){x.menuScrollTouch(t,e)},t.css({"touch-action":"none","-ms-touch-action":"none"}).on(getEventsNS(C,A))}}}t.css({top:"auto",left:"0",marginLeft:e,marginTop:i-m})},menuScroll:function(t,e,i){var s,o=t.dataSM("scroll"),a=t.dataSM("scroll-arrows"),n=o.up?o.upEnd:o.downEnd;if(!e&&o.momentum){if(o.momentum*=.92,s=o.momentum,.5>s)return this.menuScrollStop(t),void 0}else s=i||(e||!this.opts.scrollAccelerate?this.opts.scrollStep:Math.floor(o.step));var r=t.dataSM("level");if(this.activatedItems[r-1]&&this.activatedItems[r-1].dataSM("sub")&&this.activatedItems[r-1].dataSM("sub").is(":visible")&&this.menuHideSubMenus(r-1),o.y=o.up&&o.y>=n||!o.up&&n>=o.y?o.y:Math.abs(n-o.y)>s?o.y+(o.up?s:-s):n,t.css(this.cssTransforms3d?{"-webkit-transform":"translate3d(0, "+o.y+"px, 0)",transform:"translate3d(0, "+o.y+"px, 0)"}:{marginTop:o.y}),mouse&&(o.up&&o.y>o.downEnd||!o.up&&o.y0;t.dataSM("scroll-arrows").eq(i?0:1).is(":visible")&&(t.dataSM("scroll").up=i,this.menuScroll(t,!0))}e.preventDefault()},menuScrollOut:function(t,e){mouse&&(/^scroll-(up|down)/.test((e.relatedTarget||"").className)||(t[0]==e.relatedTarget||$.contains(t[0],e.relatedTarget))&&this.getClosestMenu(e.relatedTarget)==t[0]||t.dataSM("scroll-arrows").css("visibility","hidden"))},menuScrollOver:function(t,e){if(mouse&&!/^scroll-(up|down)/.test(e.target.className)&&this.getClosestMenu(e.target)==t[0]){this.menuScrollRefreshData(t);var i=t.dataSM("scroll"),s=$(window).scrollTop()-t.dataSM("parent-a").offset().top-i.itemH;t.dataSM("scroll-arrows").eq(0).css("margin-top",s).end().eq(1).css("margin-top",s+this.getViewportHeight()-i.arrowDownH).end().css("visibility","visible")}},menuScrollRefreshData:function(t){var e=t.dataSM("scroll"),i=$(window).scrollTop()-t.dataSM("parent-a").offset().top-e.itemH;this.cssTransforms3d&&(i=-(parseFloat(t.css("margin-top"))-i)),$.extend(e,{upEnd:i,downEnd:i+this.getViewportHeight()-e.subH})},menuScrollStop:function(t){return this.scrollTimeout?(cancelAnimationFrame(this.scrollTimeout),this.scrollTimeout=0,t.dataSM("scroll").step=1,!0):void 0},menuScrollTouch:function(t,e){if(e=e.originalEvent,isTouchEvent(e)){var i=this.getTouchPoint(e);if(this.getClosestMenu(i.target)==t[0]){var s=t.dataSM("scroll");if(/(start|down)$/i.test(e.type))this.menuScrollStop(t)?(e.preventDefault(),this.$touchScrollingSub=t):this.$touchScrollingSub=null,this.menuScrollRefreshData(t),$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp});else if(/move$/i.test(e.type)){var o=void 0!==s.touchY?s.touchY:s.touchStartY;if(void 0!==o&&o!=i.pageY){this.$touchScrollingSub=t;var a=i.pageY>o;void 0!==s.up&&s.up!=a&&$.extend(s,{touchStartY:i.pageY,touchStartTime:e.timeStamp}),$.extend(s,{up:a,touchY:i.pageY}),this.menuScroll(t,!0,Math.abs(i.pageY-o))}e.preventDefault()}else void 0!==s.touchY&&((s.momentum=15*Math.pow(Math.abs(i.pageY-s.touchStartY)/(e.timeStamp-s.touchStartTime),2))&&(this.menuScrollStop(t),this.menuScroll(t),e.preventDefault()),delete s.touchY)}}},menuShow:function(t){if((t.dataSM("beforefirstshowfired")||(t.dataSM("beforefirstshowfired",!0),this.$root.triggerHandler("beforefirstshow.smapi",t[0])!==!1))&&this.$root.triggerHandler("beforeshow.smapi",t[0])!==!1&&(t.dataSM("shown-before",!0),canAnimate&&t.stop(!0,!0),!t.is(":visible"))){var e=t.dataSM("parent-a"),i=this.isCollapsible();if((this.opts.keepHighlighted||i)&&e.addClass("highlighted"),i)t.removeClass("sm-nowrap").css({zIndex:"",width:"auto",minWidth:"",maxWidth:"",top:"",left:"",marginLeft:"",marginTop:""});else{if(t.css("z-index",this.zIndexInc=(this.zIndexInc||this.getStartZIndex())+1),(this.opts.subMenusMinWidth||this.opts.subMenusMaxWidth)&&(t.css({width:"auto",minWidth:"",maxWidth:""}).addClass("sm-nowrap"),this.opts.subMenusMinWidth&&t.css("min-width",this.opts.subMenusMinWidth),this.opts.subMenusMaxWidth)){var s=this.getWidth(t);t.css("max-width",this.opts.subMenusMaxWidth),s>this.getWidth(t)&&t.removeClass("sm-nowrap").css("width",this.opts.subMenusMaxWidth)}this.menuPosition(t)}var o=function(){t.css("overflow","")};i?canAnimate&&this.opts.collapsibleShowFunction?this.opts.collapsibleShowFunction.call(this,t,o):t.show(this.opts.collapsibleShowDuration,o):canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,t,o):t.show(this.opts.showDuration,o),e.attr("aria-expanded","true"),t.attr({"aria-expanded":"true","aria-hidden":"false"}),this.visibleSubMenus.push(t),this.$root.triggerHandler("show.smapi",t[0])}},popupHide:function(t){this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0);var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},t?1:this.opts.hideTimeout)},popupShow:function(t,e){if(!this.opts.isPopup)return alert('SmartMenus jQuery Error:\n\nIf you want to show this menu via the "popupShow" method, set the isPopup:true option.'),void 0;if(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),this.$root.dataSM("shown-before",!0),canAnimate&&this.$root.stop(!0,!0),!this.$root.is(":visible")){this.$root.css({left:t,top:e});var i=this,s=function(){i.$root.css("overflow","")};canAnimate&&this.opts.showFunction?this.opts.showFunction.call(this,this.$root,s):this.$root.show(this.opts.showDuration,s),this.visibleSubMenus[0]=this.$root}},refresh:function(){this.destroy(!0),this.init(!0)},rootKeyDown:function(t){if(this.handleEvents())switch(t.keyCode){case 27:var e=this.activatedItems[0];if(e){this.menuHideAll(),e[0].focus();var i=e.dataSM("sub");i&&this.menuHide(i)}break;case 32:var s=$(t.target);if(s.is("a")&&this.handleItemEvents(s)){var i=s.dataSM("sub");i&&!i.is(":visible")&&(this.itemClick({currentTarget:t.target}),t.preventDefault())}}},rootOut:function(t){if(this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&(this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0),!this.opts.showOnClick||!this.opts.hideOnClick)){var e=this;this.hideTimeout=setTimeout(function(){e.menuHideAll()},this.opts.hideTimeout)}},rootOver:function(t){this.handleEvents()&&!this.isTouchMode()&&t.target!=this.$root[0]&&this.hideTimeout&&(clearTimeout(this.hideTimeout),this.hideTimeout=0)},winResize:function(t){if(this.handleEvents()){if(!("onorientationchange"in window)||"orientationchange"==t.type){var e=this.isCollapsible();this.wasCollapsible&&e||(this.activatedItems.length&&this.activatedItems[this.activatedItems.length-1][0].blur(),this.menuHideAll()),this.wasCollapsible=e}}else if(this.$disableOverlay){var i=this.$root.offset();this.$disableOverlay.css({top:i.top,left:i.left,width:this.$root.outerWidth(),height:this.$root.outerHeight()})}}}}),$.fn.dataSM=function(t,e){return e?this.data(t+"_smartmenus",e):this.data(t+"_smartmenus")},$.fn.removeDataSM=function(t){return this.removeData(t+"_smartmenus")},$.fn.smartmenus=function(options){if("string"==typeof options){var args=arguments,method=options;return Array.prototype.shift.call(args),this.each(function(){var t=$(this).data("smartmenus");t&&t[method]&&t[method].apply(t,args)})}return this.each(function(){var dataOpts=$(this).data("sm-options")||null;if(dataOpts)try{dataOpts=eval("("+dataOpts+")")}catch(e){dataOpts=null,alert('ERROR\n\nSmartMenus jQuery init:\nInvalid "data-sm-options" attribute value syntax.')}new $.SmartMenus(this,$.extend({},$.fn.smartmenus.defaults,options,dataOpts))})},$.fn.smartmenus.defaults={isPopup:!1,mainMenuSubOffsetX:0,mainMenuSubOffsetY:0,subMenusSubOffsetX:0,subMenusSubOffsetY:0,subMenusMinWidth:"10em",subMenusMaxWidth:"20em",subIndicators:!0,subIndicatorsPos:"append",subIndicatorsText:"",scrollStep:30,scrollAccelerate:!0,showTimeout:250,hideTimeout:500,showDuration:0,showFunction:null,hideDuration:0,hideFunction:function(t,e){t.fadeOut(200,e)},collapsibleShowDuration:0,collapsibleShowFunction:function(t,e){t.slideDown(200,e)},collapsibleHideDuration:0,collapsibleHideFunction:function(t,e){t.slideUp(200,e)},showOnClick:!1,hideOnClick:!0,noMouseOver:!1,keepInViewport:!0,keepHighlighted:!0,markCurrentItem:!1,markCurrentTree:!0,rightToLeftSubMenus:!1,bottomToTopSubMenus:!1,collapsibleBehavior:"default"},$}); \ No newline at end of file diff --git a/include/glm/doc/api/logo-mini.png b/include/glm/doc/api/logo-mini.png new file mode 100644 index 0000000..48d60ab Binary files /dev/null and b/include/glm/doc/api/logo-mini.png differ diff --git a/include/glm/doc/api/menu.js b/include/glm/doc/api/menu.js new file mode 100644 index 0000000..d18a2fe --- /dev/null +++ b/include/glm/doc/api/menu.js @@ -0,0 +1,51 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { + function makeTree(data,relPath) { + var result=''; + if ('children' in data) { + result+=''; + } + return result; + } + + $('#main-nav').append(makeTree(menudata,relPath)); + $('#main-nav').children(':first').addClass('sm sm-dox').attr('id','main-menu'); + if (searchEnabled) { + if (serverSide) { + $('#main-menu').append('
  • '); + } else { + $('#main-menu').append('
  • '); + } + } + $('#main-menu').smartmenus(); +} +/* @license-end */ diff --git a/include/glm/doc/api/menudata.js b/include/glm/doc/api/menudata.js new file mode 100644 index 0000000..9b3d21d --- /dev/null +++ b/include/glm/doc/api/menudata.js @@ -0,0 +1,29 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file +*/ +var menudata={children:[ +{text:"Main Page",url:"index.html"}, +{text:"Modules",url:"modules.html"}, +{text:"Files",url:"files.html",children:[ +{text:"File List",url:"files.html"}]}]} diff --git a/include/glm/doc/api/modules.html b/include/glm/doc/api/modules.html new file mode 100644 index 0000000..d9b11db --- /dev/null +++ b/include/glm/doc/api/modules.html @@ -0,0 +1,266 @@ + + + + + + + +1.0.2 API documentation: Modules + + + + + + + + + +
    +
    + + + + + + + +
    +
    1.0.2 API documentation +
    +
    +
    + + + + + + + +
    + +
    +
    + + +
    + +
    + +
    +
    +
    Modules
    +
    +
    +
    Here is a list of all modules:
    +
    [detail level 12]
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     Core featuresFeatures that implement in C++ the GLSL specification as closely as possible
     Stable extensionsAdditional features not specified by GLSL specification
     Recommended extensionsAdditional features not specified by GLSL specification
     Experimental extensionsExperimental features not specified by GLSL specification
    +
    +
    + + + + diff --git a/include/glm/doc/api/nav_f.png b/include/glm/doc/api/nav_f.png new file mode 100644 index 0000000..c77a42e Binary files /dev/null and b/include/glm/doc/api/nav_f.png differ diff --git a/include/glm/doc/api/nav_g.png b/include/glm/doc/api/nav_g.png new file mode 100644 index 0000000..2093a23 Binary files /dev/null and b/include/glm/doc/api/nav_g.png differ diff --git a/include/glm/doc/api/nav_h.png b/include/glm/doc/api/nav_h.png new file mode 100644 index 0000000..249a852 Binary files /dev/null and b/include/glm/doc/api/nav_h.png differ diff --git a/include/glm/doc/api/open.png b/include/glm/doc/api/open.png new file mode 100644 index 0000000..a4d7097 Binary files /dev/null and b/include/glm/doc/api/open.png differ diff --git a/include/glm/doc/api/search/all_0.html b/include/glm/doc/api/search/all_0.html new file mode 100644 index 0000000..ea50fff --- /dev/null +++ b/include/glm/doc/api/search/all_0.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_0.js b/include/glm/doc/api/search/all_0.js new file mode 100644 index 0000000..fcb3b02 --- /dev/null +++ b/include/glm/doc/api/search/all_0.js @@ -0,0 +1,217 @@ +var searchData= +[ + ['abs_0',['abs',['../a00812.html#ga439e60a72eadecfeda2df5449c613a64',1,'glm::abs(genType x)'],['../a00812.html#ga81d3abddd0ef0c8de579bc541ecadab6',1,'glm::abs(vec< L, T, Q > const &x)']]], + ['acos_1',['acos',['../a00995.html#gacc9b092df8257c68f19c9053703e2563',1,'glm']]], + ['acosh_2',['acosh',['../a00995.html#ga858f35dc66fd2688f20c52b5f25be76a',1,'glm']]], + ['acot_3',['acot',['../a00871.html#ga4ba4d4a791560ed05ee07e962207bb45',1,'glm']]], + ['acoth_4',['acoth',['../a00871.html#ga6dcf17da7d24ef1c29c18bad1a5507e8',1,'glm']]], + ['acsc_5',['acsc',['../a00871.html#ga0dbb21d8c5b660c7686e262115c3119e',1,'glm']]], + ['acsch_6',['acsch',['../a00871.html#ga64c5b1bbbeb12731f3e765f26772373c',1,'glm']]], + ['adjugate_7',['adjugate',['../a00958.html#ga40a38402a30860af6e508fe76211e659',1,'glm::adjugate(mat< 2, 2, T, Q > const &m)'],['../a00958.html#gaddb09f7abc1a9c56a243d32ff3538be6',1,'glm::adjugate(mat< 3, 3, T, Q > const &m)'],['../a00958.html#ga9aaa7d1f40391b0b5cacccb60e104ba8',1,'glm::adjugate(mat< 4, 4, T, Q > const &m)']]], + ['affineinverse_8',['affineInverse',['../a00913.html#gae0fcc5fc8783291f9702272de428fa0e',1,'glm']]], + ['aligned_5fbvec1_9',['aligned_bvec1',['../a00921.html#ga780a35f764020f553a9601a3fcdcd059',1,'glm']]], + ['aligned_5fbvec2_10',['aligned_bvec2',['../a00921.html#gae766b317c5afec852bfb3d74a3c54bc8',1,'glm']]], + ['aligned_5fbvec3_11',['aligned_bvec3',['../a00921.html#gae1964ba70d15915e5b710926decbb3cb',1,'glm']]], + ['aligned_5fbvec4_12',['aligned_bvec4',['../a00921.html#gae164a1f7879f828bc35e50b79d786b05',1,'glm']]], + ['aligned_5fdmat2_13',['aligned_dmat2',['../a00921.html#ga6783859382677d35fcd5dac7dcbefdbd',1,'glm']]], + ['aligned_5fdmat2x2_14',['aligned_dmat2x2',['../a00921.html#ga449a3ec2dde6b6bb4bb94c49a6aad388',1,'glm']]], + ['aligned_5fdmat2x3_15',['aligned_dmat2x3',['../a00921.html#ga53d519a7b1bfb69076b3ec206a6b3bd1',1,'glm']]], + ['aligned_5fdmat2x4_16',['aligned_dmat2x4',['../a00921.html#ga5ccb2baeb0ab57b818c24e0d486c59d0',1,'glm']]], + ['aligned_5fdmat3_17',['aligned_dmat3',['../a00921.html#ga19aa695ffdb45ce29f7ea0b5029627de',1,'glm']]], + ['aligned_5fdmat3x2_18',['aligned_dmat3x2',['../a00921.html#ga5f5123d834bd1170edf8c386834e112c',1,'glm']]], + ['aligned_5fdmat3x3_19',['aligned_dmat3x3',['../a00921.html#ga635bf3732281a2c2ca54d8f9d33d178f',1,'glm']]], + ['aligned_5fdmat3x4_20',['aligned_dmat3x4',['../a00921.html#gaf488c6ad88c185054595d4d5c7ba5b9d',1,'glm']]], + ['aligned_5fdmat4_21',['aligned_dmat4',['../a00921.html#ga001bb387ae8192fa94dbd8b23b600439',1,'glm']]], + ['aligned_5fdmat4x2_22',['aligned_dmat4x2',['../a00921.html#gaa409cfb737bd59b68dc683e9b03930cc',1,'glm']]], + ['aligned_5fdmat4x3_23',['aligned_dmat4x3',['../a00921.html#ga621e89ca1dbdcb7b5a3e7de237c44121',1,'glm']]], + ['aligned_5fdmat4x4_24',['aligned_dmat4x4',['../a00921.html#gac9bda778d0b7ad82f656dab99b71857a',1,'glm']]], + ['aligned_5fdquat_25',['aligned_dquat',['../a00921.html#gab13e5f42b0c1d36f883ed30b86a55d29',1,'glm']]], + ['aligned_5fdvec1_26',['aligned_dvec1',['../a00921.html#ga4974f46ae5a19415d91316960a53617a',1,'glm']]], + ['aligned_5fdvec2_27',['aligned_dvec2',['../a00921.html#ga18d859f87122b2b3b2992ffe86dbebc0',1,'glm']]], + ['aligned_5fdvec3_28',['aligned_dvec3',['../a00921.html#gaa37869eea77d28419b2fb0ff70b69bf0',1,'glm']]], + ['aligned_5fdvec4_29',['aligned_dvec4',['../a00921.html#ga8a9f0a4795ccc442fa9901845026f9f5',1,'glm']]], + ['aligned_5fhighp_5fbvec1_30',['aligned_highp_bvec1',['../a00921.html#ga862843a45b01c35ffe4d44c47ea774ad',1,'glm']]], + ['aligned_5fhighp_5fbvec2_31',['aligned_highp_bvec2',['../a00921.html#ga0731b593c5e33559954c80f8687e76c6',1,'glm']]], + ['aligned_5fhighp_5fbvec3_32',['aligned_highp_bvec3',['../a00921.html#ga0913bdf048d0cb74af1d2512aec675bc',1,'glm']]], + ['aligned_5fhighp_5fbvec4_33',['aligned_highp_bvec4',['../a00921.html#ga9df1d0c425852cf63a57e533b7a83f4f',1,'glm']]], + ['aligned_5fhighp_5fdmat2_34',['aligned_highp_dmat2',['../a00921.html#ga3a7eeae43cb7673e14cc89bf02f7dd45',1,'glm']]], + ['aligned_5fhighp_5fdmat2x2_35',['aligned_highp_dmat2x2',['../a00921.html#gaef26dfe3855a91644665b55c9096a8c8',1,'glm']]], + ['aligned_5fhighp_5fdmat2x3_36',['aligned_highp_dmat2x3',['../a00921.html#gaa7c9d4ab7ab651cdf8001fe7843e238b',1,'glm']]], + ['aligned_5fhighp_5fdmat2x4_37',['aligned_highp_dmat2x4',['../a00921.html#gaa0d2b8a75f1908dcf32c27f8524bdced',1,'glm']]], + ['aligned_5fhighp_5fdmat3_38',['aligned_highp_dmat3',['../a00921.html#gad8f6abb2c9994850b5d5c04a5f979ed8',1,'glm']]], + ['aligned_5fhighp_5fdmat3x2_39',['aligned_highp_dmat3x2',['../a00921.html#gab069b2fc2ec785fc4e193cf26c022679',1,'glm']]], + ['aligned_5fhighp_5fdmat3x3_40',['aligned_highp_dmat3x3',['../a00921.html#ga66073b1ddef34b681741f572338ddb8e',1,'glm']]], + ['aligned_5fhighp_5fdmat3x4_41',['aligned_highp_dmat3x4',['../a00921.html#ga683c8ca66de323ea533a760abedd0efc',1,'glm']]], + ['aligned_5fhighp_5fdmat4_42',['aligned_highp_dmat4',['../a00921.html#gacaa7407ea00ffdd322ce86a57adb547e',1,'glm']]], + ['aligned_5fhighp_5fdmat4x2_43',['aligned_highp_dmat4x2',['../a00921.html#ga93a23ca3d42818d56e0702213c66354b',1,'glm']]], + ['aligned_5fhighp_5fdmat4x3_44',['aligned_highp_dmat4x3',['../a00921.html#gacab7374b560745cb1d0a306a90353f58',1,'glm']]], + ['aligned_5fhighp_5fdmat4x4_45',['aligned_highp_dmat4x4',['../a00921.html#ga1fbfba14368b742972d3b58a0a303682',1,'glm']]], + ['aligned_5fhighp_5fdquat_46',['aligned_highp_dquat',['../a00921.html#gaf4a25da5becfd7e5df53ec4befa13670',1,'glm']]], + ['aligned_5fhighp_5fdvec1_47',['aligned_highp_dvec1',['../a00921.html#gaf0448b0f7ceb8273f7eda3a92205eefc',1,'glm']]], + ['aligned_5fhighp_5fdvec2_48',['aligned_highp_dvec2',['../a00921.html#gab173a333e6b7ce153ceba66ac4a321cf',1,'glm']]], + ['aligned_5fhighp_5fdvec3_49',['aligned_highp_dvec3',['../a00921.html#gae94ef61edfa047d05bc69b6065fc42ba',1,'glm']]], + ['aligned_5fhighp_5fdvec4_50',['aligned_highp_dvec4',['../a00921.html#ga8fad35c5677f228e261fe541f15363a4',1,'glm']]], + ['aligned_5fhighp_5fivec1_51',['aligned_highp_ivec1',['../a00921.html#gad63b8c5b4dc0500d54d7414ef555178f',1,'glm']]], + ['aligned_5fhighp_5fivec2_52',['aligned_highp_ivec2',['../a00921.html#ga41563650f36cb7f479e080de21e08418',1,'glm']]], + ['aligned_5fhighp_5fivec3_53',['aligned_highp_ivec3',['../a00921.html#ga6eca5170bb35eac90b4972590fd31a06',1,'glm']]], + ['aligned_5fhighp_5fivec4_54',['aligned_highp_ivec4',['../a00921.html#ga31bfa801e1579fdba752ec3f7a45ec91',1,'glm']]], + ['aligned_5fhighp_5fmat2_55',['aligned_highp_mat2',['../a00921.html#gaf9db5e8a929c317da5aa12cc53741b63',1,'glm']]], + ['aligned_5fhighp_5fmat2x2_56',['aligned_highp_mat2x2',['../a00921.html#gab559d943abf92bc588bcd3f4c0e4664b',1,'glm']]], + ['aligned_5fhighp_5fmat2x3_57',['aligned_highp_mat2x3',['../a00921.html#ga50c9af5aa3a848956d625fc64dc8488e',1,'glm']]], + ['aligned_5fhighp_5fmat2x4_58',['aligned_highp_mat2x4',['../a00921.html#ga0edcfdd179f8a158342eead48a4d0c2a',1,'glm']]], + ['aligned_5fhighp_5fmat3_59',['aligned_highp_mat3',['../a00921.html#gabab3afcc04459c7b123604ae5dc663f6',1,'glm']]], + ['aligned_5fhighp_5fmat3x2_60',['aligned_highp_mat3x2',['../a00921.html#ga9fc2167b47c9be9295f2d8eea7f0ca75',1,'glm']]], + ['aligned_5fhighp_5fmat3x3_61',['aligned_highp_mat3x3',['../a00921.html#ga2f7b8c99ba6f2d07c73a195a8143c259',1,'glm']]], + ['aligned_5fhighp_5fmat3x4_62',['aligned_highp_mat3x4',['../a00921.html#ga52e00afd0eb181e6738f40cf41787049',1,'glm']]], + ['aligned_5fhighp_5fmat4_63',['aligned_highp_mat4',['../a00921.html#ga058ae939bfdbcbb80521dd4a3b01afba',1,'glm']]], + ['aligned_5fhighp_5fmat4x2_64',['aligned_highp_mat4x2',['../a00921.html#ga84e1f5e0718952a079b748825c03f956',1,'glm']]], + ['aligned_5fhighp_5fmat4x3_65',['aligned_highp_mat4x3',['../a00921.html#gafff1684c4ff19b4a818138ccacc1e78d',1,'glm']]], + ['aligned_5fhighp_5fmat4x4_66',['aligned_highp_mat4x4',['../a00921.html#ga40d49648083a0498a12a4bb41ae6ece8',1,'glm']]], + ['aligned_5fhighp_5fquat_67',['aligned_highp_quat',['../a00921.html#ga1f4d1cae53972e1ccb16b6710f3ac6a3',1,'glm']]], + ['aligned_5fhighp_5fuvec1_68',['aligned_highp_uvec1',['../a00921.html#ga5b80e28396c6ef7d32c6fd18df498451',1,'glm']]], + ['aligned_5fhighp_5fuvec2_69',['aligned_highp_uvec2',['../a00921.html#ga04db692662a4908beeaf5a5ba6e19483',1,'glm']]], + ['aligned_5fhighp_5fuvec3_70',['aligned_highp_uvec3',['../a00921.html#ga073fd6e8b241afade6d8afbd676b2667',1,'glm']]], + ['aligned_5fhighp_5fuvec4_71',['aligned_highp_uvec4',['../a00921.html#gabdd60462042859f876c17c7346c732a5',1,'glm']]], + ['aligned_5fhighp_5fvec1_72',['aligned_highp_vec1',['../a00921.html#ga4d0bd70d5fac49b800546d608b707513',1,'glm']]], + ['aligned_5fhighp_5fvec2_73',['aligned_highp_vec2',['../a00921.html#gac9f8482dde741fb6bab7248b81a45465',1,'glm']]], + ['aligned_5fhighp_5fvec3_74',['aligned_highp_vec3',['../a00921.html#ga65415d2d68c9cc0ca554524a8f5510b2',1,'glm']]], + ['aligned_5fhighp_5fvec4_75',['aligned_highp_vec4',['../a00921.html#ga7cb26d354dd69d23849c34c4fba88da9',1,'glm']]], + ['aligned_5fivec1_76',['aligned_ivec1',['../a00921.html#ga76298aed82a439063c3d55980c84aa0b',1,'glm']]], + ['aligned_5fivec2_77',['aligned_ivec2',['../a00921.html#gae4f38fd2c86cee6940986197777b3ca4',1,'glm']]], + ['aligned_5fivec3_78',['aligned_ivec3',['../a00921.html#ga32794322d294e5ace7fed4a61896f270',1,'glm']]], + ['aligned_5fivec4_79',['aligned_ivec4',['../a00921.html#ga7f79eae5927c9033d84617e49f6f34e4',1,'glm']]], + ['aligned_5flowp_5fbvec1_80',['aligned_lowp_bvec1',['../a00921.html#gac6036449ab1c4abf8efe1ea00fcdd1c9',1,'glm']]], + ['aligned_5flowp_5fbvec2_81',['aligned_lowp_bvec2',['../a00921.html#ga59fadcd3835646e419372ae8b43c5d37',1,'glm']]], + ['aligned_5flowp_5fbvec3_82',['aligned_lowp_bvec3',['../a00921.html#ga83aab4d191053f169c93a3e364f2e118',1,'glm']]], + ['aligned_5flowp_5fbvec4_83',['aligned_lowp_bvec4',['../a00921.html#gaa7a76555ee4853614e5755181a8dd54e',1,'glm']]], + ['aligned_5flowp_5fdmat2_84',['aligned_lowp_dmat2',['../a00921.html#ga79a90173d8faa9816dc852ce447d66ca',1,'glm']]], + ['aligned_5flowp_5fdmat2x2_85',['aligned_lowp_dmat2x2',['../a00921.html#ga07cb8e846666cbf56045b064fb553d2e',1,'glm']]], + ['aligned_5flowp_5fdmat2x3_86',['aligned_lowp_dmat2x3',['../a00921.html#ga7a4536b6e1f2ebb690f63816b5d7e48b',1,'glm']]], + ['aligned_5flowp_5fdmat2x4_87',['aligned_lowp_dmat2x4',['../a00921.html#gab0cf4f7c9a264941519acad286e055ea',1,'glm']]], + ['aligned_5flowp_5fdmat3_88',['aligned_lowp_dmat3',['../a00921.html#gac00e15efded8a57c9dec3aed0fb547e7',1,'glm']]], + ['aligned_5flowp_5fdmat3x2_89',['aligned_lowp_dmat3x2',['../a00921.html#gaa281a47d5d627313984d0f8df993b648',1,'glm']]], + ['aligned_5flowp_5fdmat3x3_90',['aligned_lowp_dmat3x3',['../a00921.html#ga7f3148a72355e39932d6855baca42ebc',1,'glm']]], + ['aligned_5flowp_5fdmat3x4_91',['aligned_lowp_dmat3x4',['../a00921.html#gaea3ccc5ef5b178e6e49b4fa1427605d3',1,'glm']]], + ['aligned_5flowp_5fdmat4_92',['aligned_lowp_dmat4',['../a00921.html#gab92c6d7d58d43dfb8147e9aedfe8351b',1,'glm']]], + ['aligned_5flowp_5fdmat4x2_93',['aligned_lowp_dmat4x2',['../a00921.html#gaf806dfdaffb2e9f7681b1cd2825898ce',1,'glm']]], + ['aligned_5flowp_5fdmat4x3_94',['aligned_lowp_dmat4x3',['../a00921.html#gab0931ac7807fa1428c7bbf249efcdf0d',1,'glm']]], + ['aligned_5flowp_5fdmat4x4_95',['aligned_lowp_dmat4x4',['../a00921.html#gad8220a93d2fca2dd707821b4ab6f809e',1,'glm']]], + ['aligned_5flowp_5fdquat_96',['aligned_lowp_dquat',['../a00921.html#gafe9b7a5f9e4ca385df4b5a3aee5d647e',1,'glm']]], + ['aligned_5flowp_5fdvec1_97',['aligned_lowp_dvec1',['../a00921.html#ga7f8a2cc5a686e52b1615761f4978ca62',1,'glm']]], + ['aligned_5flowp_5fdvec2_98',['aligned_lowp_dvec2',['../a00921.html#ga0e37cff4a43cca866101f0a35f01db6d',1,'glm']]], + ['aligned_5flowp_5fdvec3_99',['aligned_lowp_dvec3',['../a00921.html#gab9e669c4efd52d3347fc6d5f6b20fd59',1,'glm']]], + ['aligned_5flowp_5fdvec4_100',['aligned_lowp_dvec4',['../a00921.html#ga226f5ec7a953cea559c16fe3aff9924f',1,'glm']]], + ['aligned_5flowp_5fivec1_101',['aligned_lowp_ivec1',['../a00921.html#ga1101d3a82b2e3f5f8828bd8f3adab3e1',1,'glm']]], + ['aligned_5flowp_5fivec2_102',['aligned_lowp_ivec2',['../a00921.html#ga44c4accad582cfbd7226a19b83b0cadc',1,'glm']]], + ['aligned_5flowp_5fivec3_103',['aligned_lowp_ivec3',['../a00921.html#ga65663f10a02e52cedcddbcfe36ddf38d',1,'glm']]], + ['aligned_5flowp_5fivec4_104',['aligned_lowp_ivec4',['../a00921.html#gaae92fcec8b2e0328ffbeac31cc4fc419',1,'glm']]], + ['aligned_5flowp_5fmat2_105',['aligned_lowp_mat2',['../a00921.html#ga17c424412207b00dba1cf587b099eea3',1,'glm']]], + ['aligned_5flowp_5fmat2x2_106',['aligned_lowp_mat2x2',['../a00921.html#ga0e44aeb930a47f9cbf2db15b56433b0f',1,'glm']]], + ['aligned_5flowp_5fmat2x3_107',['aligned_lowp_mat2x3',['../a00921.html#ga7dec6d96bc61312b1e56d137c9c74030',1,'glm']]], + ['aligned_5flowp_5fmat2x4_108',['aligned_lowp_mat2x4',['../a00921.html#gaa694fab1f8df5f658846573ba8ffc563',1,'glm']]], + ['aligned_5flowp_5fmat3_109',['aligned_lowp_mat3',['../a00921.html#ga1eb9076cc28ead5020fd3029fd0472c5',1,'glm']]], + ['aligned_5flowp_5fmat3x2_110',['aligned_lowp_mat3x2',['../a00921.html#ga2d6639f0bd777bae1ee0eba71cd7bfdc',1,'glm']]], + ['aligned_5flowp_5fmat3x3_111',['aligned_lowp_mat3x3',['../a00921.html#gaeaab04e378a90956eec8d68a99d777ed',1,'glm']]], + ['aligned_5flowp_5fmat3x4_112',['aligned_lowp_mat3x4',['../a00921.html#ga1f03696ab066572c6c044e63edf635a2',1,'glm']]], + ['aligned_5flowp_5fmat4_113',['aligned_lowp_mat4',['../a00921.html#ga25ea2f684e36aa5e978b4f2f86593824',1,'glm']]], + ['aligned_5flowp_5fmat4x2_114',['aligned_lowp_mat4x2',['../a00921.html#ga2cb16c3fdfb15e0719d942ee3b548bc4',1,'glm']]], + ['aligned_5flowp_5fmat4x3_115',['aligned_lowp_mat4x3',['../a00921.html#ga7e96981e872f17a780d9f1c22dc1f512',1,'glm']]], + ['aligned_5flowp_5fmat4x4_116',['aligned_lowp_mat4x4',['../a00921.html#gadae3dcfc22d28c64d0548cbfd9d08719',1,'glm']]], + ['aligned_5flowp_5fquat_117',['aligned_lowp_quat',['../a00921.html#ga9608c6b6a8c44cb18cb18ce914487594',1,'glm']]], + ['aligned_5flowp_5fuvec1_118',['aligned_lowp_uvec1',['../a00921.html#gad09b93acc43c43423408d17a64f6d7ca',1,'glm']]], + ['aligned_5flowp_5fuvec2_119',['aligned_lowp_uvec2',['../a00921.html#ga6f94fcd28dde906fc6cad5f742b55c1a',1,'glm']]], + ['aligned_5flowp_5fuvec3_120',['aligned_lowp_uvec3',['../a00921.html#ga9e9f006970b1a00862e3e6e599eedd4c',1,'glm']]], + ['aligned_5flowp_5fuvec4_121',['aligned_lowp_uvec4',['../a00921.html#ga46b1b0b9eb8625a5d69137bd66cd13dc',1,'glm']]], + ['aligned_5flowp_5fvec1_122',['aligned_lowp_vec1',['../a00921.html#gab34aee3d5e121c543fea11d2c50ecc43',1,'glm']]], + ['aligned_5flowp_5fvec2_123',['aligned_lowp_vec2',['../a00921.html#ga53ac5d252317f1fa43c2ef921857bf13',1,'glm']]], + ['aligned_5flowp_5fvec3_124',['aligned_lowp_vec3',['../a00921.html#ga98f0b5cd65fce164ff1367c2a3b3aa1e',1,'glm']]], + ['aligned_5flowp_5fvec4_125',['aligned_lowp_vec4',['../a00921.html#ga82f7275d6102593a69ce38cdad680409',1,'glm']]], + ['aligned_5fmat2_126',['aligned_mat2',['../a00921.html#ga5a8a5f8c47cd7d5502dd9932f83472b9',1,'glm']]], + ['aligned_5fmat2x2_127',['aligned_mat2x2',['../a00921.html#gabb04f459d81d753d278b2072e2375e8e',1,'glm']]], + ['aligned_5fmat2x3_128',['aligned_mat2x3',['../a00921.html#ga832476bb1c59ef673db37433ff34e399',1,'glm']]], + ['aligned_5fmat2x4_129',['aligned_mat2x4',['../a00921.html#gadab11a7504430825b648ff7c7e36b725',1,'glm']]], + ['aligned_5fmat3_130',['aligned_mat3',['../a00921.html#ga43a92a24ca863e0e0f3b65834b3cf714',1,'glm']]], + ['aligned_5fmat3x2_131',['aligned_mat3x2',['../a00921.html#ga5c0df24ba85eafafc0eb0c90690510ed',1,'glm']]], + ['aligned_5fmat3x3_132',['aligned_mat3x3',['../a00921.html#gadb065dbe5c11271fef8cf2ea8608f187',1,'glm']]], + ['aligned_5fmat3x4_133',['aligned_mat3x4',['../a00921.html#ga88061c72c997b94c420f2b0a60d9df26',1,'glm']]], + ['aligned_5fmat4_134',['aligned_mat4',['../a00921.html#gab0fddcf95dd51cbcbf624ea7c40dfeb8',1,'glm']]], + ['aligned_5fmat4x2_135',['aligned_mat4x2',['../a00921.html#gac9a2d0fb815fd5c2bd58b869c55e32d3',1,'glm']]], + ['aligned_5fmat4x3_136',['aligned_mat4x3',['../a00921.html#ga452bbbfd26e244de216e4d004d50bb74',1,'glm']]], + ['aligned_5fmat4x4_137',['aligned_mat4x4',['../a00921.html#ga8b8fb86973a0b768c5bd802c92fac1a1',1,'glm']]], + ['aligned_5fmediump_5fbvec1_138',['aligned_mediump_bvec1',['../a00921.html#gadd3b8bd71a758f7fb0da8e525156f34e',1,'glm']]], + ['aligned_5fmediump_5fbvec2_139',['aligned_mediump_bvec2',['../a00921.html#gacb183eb5e67ec0d0ea5a016cba962810',1,'glm']]], + ['aligned_5fmediump_5fbvec3_140',['aligned_mediump_bvec3',['../a00921.html#gacfa4a542f1b20a5b63ad702dfb6fd587',1,'glm']]], + ['aligned_5fmediump_5fbvec4_141',['aligned_mediump_bvec4',['../a00921.html#ga91bc1f513bb9b0fd60281d57ded9a48c',1,'glm']]], + ['aligned_5fmediump_5fdmat2_142',['aligned_mediump_dmat2',['../a00921.html#ga62a2dfd668c91072b72c3109fc6cda28',1,'glm']]], + ['aligned_5fmediump_5fdmat2x2_143',['aligned_mediump_dmat2x2',['../a00921.html#ga9b7feec247d378dd407ba81f56ea96c8',1,'glm']]], + ['aligned_5fmediump_5fdmat2x3_144',['aligned_mediump_dmat2x3',['../a00921.html#gafcb189f4f93648fe7ca802ca4aca2eb8',1,'glm']]], + ['aligned_5fmediump_5fdmat2x4_145',['aligned_mediump_dmat2x4',['../a00921.html#ga92f8873e3bbd5ca1323c8bbe5725cc5e',1,'glm']]], + ['aligned_5fmediump_5fdmat3_146',['aligned_mediump_dmat3',['../a00921.html#ga6dc2832b747c00e0a0df621aba196960',1,'glm']]], + ['aligned_5fmediump_5fdmat3x2_147',['aligned_mediump_dmat3x2',['../a00921.html#ga5a97f0355d801de3444d42c1d5b40438',1,'glm']]], + ['aligned_5fmediump_5fdmat3x3_148',['aligned_mediump_dmat3x3',['../a00921.html#ga649d0acf01054b17e679cf00e150e025',1,'glm']]], + ['aligned_5fmediump_5fdmat3x4_149',['aligned_mediump_dmat3x4',['../a00921.html#ga45e155a4840f69b2fa4ed8047a676860',1,'glm']]], + ['aligned_5fmediump_5fdmat4_150',['aligned_mediump_dmat4',['../a00921.html#ga8a9376d82f0e946e25137eb55543e6ce',1,'glm']]], + ['aligned_5fmediump_5fdmat4x2_151',['aligned_mediump_dmat4x2',['../a00921.html#gabc25e547f4de4af62403492532cd1b6d',1,'glm']]], + ['aligned_5fmediump_5fdmat4x3_152',['aligned_mediump_dmat4x3',['../a00921.html#gae84f4763ecdc7457ecb7930bad12057c',1,'glm']]], + ['aligned_5fmediump_5fdmat4x4_153',['aligned_mediump_dmat4x4',['../a00921.html#gaa292ebaa907afdecb2d5967fb4fb1247',1,'glm']]], + ['aligned_5fmediump_5fdquat_154',['aligned_mediump_dquat',['../a00921.html#ga224812837186d3426283e29bbdaa98c0',1,'glm']]], + ['aligned_5fmediump_5fdvec1_155',['aligned_mediump_dvec1',['../a00921.html#ga7180b685c581adb224406a7f831608e3',1,'glm']]], + ['aligned_5fmediump_5fdvec2_156',['aligned_mediump_dvec2',['../a00921.html#ga9af1eabe22f569e70d9893be72eda0f5',1,'glm']]], + ['aligned_5fmediump_5fdvec3_157',['aligned_mediump_dvec3',['../a00921.html#ga058e7ddab1428e47f2197bdd3a5a6953',1,'glm']]], + ['aligned_5fmediump_5fdvec4_158',['aligned_mediump_dvec4',['../a00921.html#gaffd747ea2aea1e69c2ecb04e68521b21',1,'glm']]], + ['aligned_5fmediump_5fivec1_159',['aligned_mediump_ivec1',['../a00921.html#ga20e63dd980b81af10cadbbe219316650',1,'glm']]], + ['aligned_5fmediump_5fivec2_160',['aligned_mediump_ivec2',['../a00921.html#gaea13d89d49daca2c796aeaa82fc2c2f2',1,'glm']]], + ['aligned_5fmediump_5fivec3_161',['aligned_mediump_ivec3',['../a00921.html#gabbf0f15e9c3d9868e43241ad018f82bd',1,'glm']]], + ['aligned_5fmediump_5fivec4_162',['aligned_mediump_ivec4',['../a00921.html#ga6099dd7878d0a78101a4250d8cd2d736',1,'glm']]], + ['aligned_5fmediump_5fmat2_163',['aligned_mediump_mat2',['../a00921.html#gaf6f041b212c57664d88bc6aefb7e36f3',1,'glm']]], + ['aligned_5fmediump_5fmat2x2_164',['aligned_mediump_mat2x2',['../a00921.html#ga04bf49316ee777d42fcfe681ee37d7be',1,'glm']]], + ['aligned_5fmediump_5fmat2x3_165',['aligned_mediump_mat2x3',['../a00921.html#ga26a0b61e444a51a37b9737cf4d84291b',1,'glm']]], + ['aligned_5fmediump_5fmat2x4_166',['aligned_mediump_mat2x4',['../a00921.html#ga163facc9ed2692ea1300ed57c5d12b17',1,'glm']]], + ['aligned_5fmediump_5fmat3_167',['aligned_mediump_mat3',['../a00921.html#ga3b76ba17ae5d53debeb6f7e55919a57c',1,'glm']]], + ['aligned_5fmediump_5fmat3x2_168',['aligned_mediump_mat3x2',['../a00921.html#ga80dee705d714300378e0847f45059097',1,'glm']]], + ['aligned_5fmediump_5fmat3x3_169',['aligned_mediump_mat3x3',['../a00921.html#ga721f5404caf40d68962dcc0529de71d9',1,'glm']]], + ['aligned_5fmediump_5fmat3x4_170',['aligned_mediump_mat3x4',['../a00921.html#ga98f4dc6722a2541a990918c074075359',1,'glm']]], + ['aligned_5fmediump_5fmat4_171',['aligned_mediump_mat4',['../a00921.html#gaeefee8317192174596852ce19b602720',1,'glm']]], + ['aligned_5fmediump_5fmat4x2_172',['aligned_mediump_mat4x2',['../a00921.html#ga46f372a006345c252a41267657cc22c0',1,'glm']]], + ['aligned_5fmediump_5fmat4x3_173',['aligned_mediump_mat4x3',['../a00921.html#ga0effece4545acdebdc2a5512a303110e',1,'glm']]], + ['aligned_5fmediump_5fmat4x4_174',['aligned_mediump_mat4x4',['../a00921.html#ga312864244cae4e8f10f478cffd0f76de',1,'glm']]], + ['aligned_5fmediump_5fquat_175',['aligned_mediump_quat',['../a00921.html#ga1504373315ffd788a4c08669b997ab5e',1,'glm']]], + ['aligned_5fmediump_5fuvec1_176',['aligned_mediump_uvec1',['../a00921.html#gacb78126ea2eb779b41c7511128ff1283',1,'glm']]], + ['aligned_5fmediump_5fuvec2_177',['aligned_mediump_uvec2',['../a00921.html#ga081d53e0a71443d0b68ea61c870f9adc',1,'glm']]], + ['aligned_5fmediump_5fuvec3_178',['aligned_mediump_uvec3',['../a00921.html#gad6fc921bdde2bdbc7e09b028e1e9b379',1,'glm']]], + ['aligned_5fmediump_5fuvec4_179',['aligned_mediump_uvec4',['../a00921.html#ga73ea0c1ba31580e107d21270883f51fc',1,'glm']]], + ['aligned_5fmediump_5fvec1_180',['aligned_mediump_vec1',['../a00921.html#ga6b797eec76fa471e300158f3453b3b2e',1,'glm']]], + ['aligned_5fmediump_5fvec2_181',['aligned_mediump_vec2',['../a00921.html#ga026a55ddbf2bafb1432f1157a2708616',1,'glm']]], + ['aligned_5fmediump_5fvec3_182',['aligned_mediump_vec3',['../a00921.html#ga3a25e494173f6a64637b08a1b50a2132',1,'glm']]], + ['aligned_5fmediump_5fvec4_183',['aligned_mediump_vec4',['../a00921.html#ga320d1c661cff2ef214eb50241f2928b2',1,'glm']]], + ['aligned_5fquat_184',['aligned_quat',['../a00921.html#ga32e247c58235caf15a0f5e68356e285b',1,'glm']]], + ['aligned_5fuvec1_185',['aligned_uvec1',['../a00921.html#ga1ff8ed402c93d280ff0597c1c5e7c548',1,'glm']]], + ['aligned_5fuvec2_186',['aligned_uvec2',['../a00921.html#ga074137e3be58528d67041c223d49f398',1,'glm']]], + ['aligned_5fuvec3_187',['aligned_uvec3',['../a00921.html#ga2a8d9c3046f89d854eb758adfa0811c0',1,'glm']]], + ['aligned_5fuvec4_188',['aligned_uvec4',['../a00921.html#gabf842c45eea186170c267a328e3f3b7d',1,'glm']]], + ['aligned_5fvec1_189',['aligned_vec1',['../a00921.html#ga05e6d4c908965d04191c2070a8d0a65e',1,'glm']]], + ['aligned_5fvec2_190',['aligned_vec2',['../a00921.html#ga0682462f8096a226773e20fac993cde5',1,'glm']]], + ['aligned_5fvec3_191',['aligned_vec3',['../a00921.html#ga7cf643b66664e0cd3c48759ae66c2bd0',1,'glm']]], + ['aligned_5fvec4_192',['aligned_vec4',['../a00921.html#ga85d89e83cb8137e1be1446de8c3b643a',1,'glm']]], + ['all_193',['all',['../a00996.html#ga87e53f50b679f5f95c5cb4780311b3dd',1,'glm']]], + ['angle_194',['angle',['../a00865.html#ga8aa248b31d5ade470c87304df5eb7bd8',1,'glm::angle(qua< T, Q > const &x)'],['../a00989.html#ga2e2917b4cb75ca3d043ac15ff88f14e1',1,'glm::angle(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['angleaxis_195',['angleAxis',['../a00865.html#ga5c0095cfcb218c75a4b79d7687950036',1,'glm']]], + ['any_196',['any',['../a00996.html#ga911b3f8e41459dd551ccb6d385d91061',1,'glm']]], + ['arecollinear_197',['areCollinear',['../a00990.html#ga13da4a787a2ff70e95d561fb19ff91b4',1,'glm']]], + ['areorthogonal_198',['areOrthogonal',['../a00990.html#gac7b95b3f798e3c293262b2bdaad47c57',1,'glm']]], + ['areorthonormal_199',['areOrthonormal',['../a00990.html#ga1b091c3d7f9ee3b0708311c001c293e3',1,'glm']]], + ['asec_200',['asec',['../a00871.html#ga0938f4ce4f0bfe414c85dd92f7c42400',1,'glm']]], + ['asech_201',['asech',['../a00871.html#ga2db2855bc3ab46bdc83b01620f5d95f1',1,'glm']]], + ['asin_202',['asin',['../a00995.html#ga0552d2df4865fa8c3d7cfc3ec2caac73',1,'glm']]], + ['asinh_203',['asinh',['../a00995.html#ga3ef16b501ee859fddde88e22192a5950',1,'glm']]], + ['associated_5fmin_5fmax_2ehpp_204',['associated_min_max.hpp',['../a00587.html',1,'']]], + ['associatedmax_205',['associatedMax',['../a00926.html#ga7d9c8785230c8db60f72ec8975f1ba45',1,'glm::associatedMax(T x, U a, T y, U b)'],['../a00926.html#ga66460edde3bbd331d1d8855159d80b23',1,'glm::associatedMax(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b)'],['../a00926.html#ga0d169d6ce26b03248df175f39005d77f',1,'glm::associatedMax(T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b)'],['../a00926.html#ga4086269afabcb81dd7ded33cb3448653',1,'glm::associatedMax(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b)'],['../a00926.html#gaec891e363d91abbf3a4443cf2f652209',1,'glm::associatedMax(T x, U a, T y, U b, T z, U c)'],['../a00926.html#gab84fdc35016a31e8cd0cbb8296bddf7c',1,'glm::associatedMax(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c)'],['../a00926.html#gadd2a2002f4f2144bbc39eb2336dd2fba',1,'glm::associatedMax(T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c)'],['../a00926.html#ga19f59d1141a51a3b2108a9807af78f7f',1,'glm::associatedMax(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c)'],['../a00926.html#ga3038ffcb43eaa6af75897a99a5047ccc',1,'glm::associatedMax(T x, U a, T y, U b, T z, U c, T w, U d)'],['../a00926.html#gaf5ab0c428f8d1cd9e3b45fcfbf6423a6',1,'glm::associatedMax(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c, vec< L, T, Q > const &w, vec< L, U, Q > const &d)'],['../a00926.html#ga11477c2c4b5b0bfd1b72b29df3725a9d',1,'glm::associatedMax(T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c, T w, vec< L, U, Q > const &d)'],['../a00926.html#gab9c3dd74cac899d2c625b5767ea3b3fb',1,'glm::associatedMax(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)']]], + ['associatedmin_206',['associatedMin',['../a00926.html#ga3c550a0ac2d615bf90ab26ebc2c680f6',1,'glm::associatedMin(T x, U a, T y, U b)'],['../a00926.html#ga8392895670c92822fc81583942203220',1,'glm::associatedMin(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b)'],['../a00926.html#gacfec519c820331d023ef53a511749319',1,'glm::associatedMin(T x, const vec< L, U, Q > &a, T y, const vec< L, U, Q > &b)'],['../a00926.html#ga4757c7cab2d809124a8525d0a9deeb37',1,'glm::associatedMin(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b)'],['../a00926.html#gad0aa8f86259a26d839d34a3577a923fc',1,'glm::associatedMin(T x, U a, T y, U b, T z, U c)'],['../a00926.html#ga723e5411cebc7ffbd5c81ffeec61127d',1,'glm::associatedMin(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c)'],['../a00926.html#ga432224ebe2085eaa2b63a077ecbbbff6',1,'glm::associatedMin(T x, U a, T y, U b, T z, U c, T w, U d)'],['../a00926.html#ga66b08118bc88f0494bcacb7cdb940556',1,'glm::associatedMin(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c, vec< L, T, Q > const &w, vec< L, U, Q > const &d)'],['../a00926.html#ga78c28fde1a7080fb7420bd88e68c6c68',1,'glm::associatedMin(T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c, T w, vec< L, U, Q > const &d)'],['../a00926.html#ga2db7e351994baee78540a562d4bb6d3b',1,'glm::associatedMin(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)']]], + ['atan_207',['atan',['../a00995.html#gac61629f3a4aa14057e7a8cae002291db',1,'glm::atan(vec< L, T, Q > const &y, vec< L, T, Q > const &x)'],['../a00995.html#ga5229f087eaccbc466f1c609ce3107b95',1,'glm::atan(vec< L, T, Q > const &y_over_x)']]], + ['atan2_208',['atan2',['../a00933.html#ga9e7b4e9a672898b8cf80ef8ab414f87a',1,'glm::atan2(T y, T x)'],['../a00933.html#gac2af1a4b5c095b5a262f50e7c5ad7fb9',1,'glm::atan2(const vec< 2, T, Q > &y, const vec< 2, T, Q > &x)'],['../a00933.html#ga519d42527308dfd56e655d9ed6e1e727',1,'glm::atan2(const vec< 3, T, Q > &y, const vec< 3, T, Q > &x)'],['../a00933.html#ga8e1bdff7efb18ef15a3119773f261326',1,'glm::atan2(const vec< 4, T, Q > &y, const vec< 4, T, Q > &x)']]], + ['atanh_209',['atanh',['../a00995.html#gabc925650e618357d07da255531658b87',1,'glm']]], + ['axis_210',['axis',['../a00865.html#ga764254f10248b505e936e5309a88c23d',1,'glm']]], + ['axisangle_211',['axisAngle',['../a00956.html#ga75220364722b0e367df98af61de4c3e5',1,'glm']]], + ['axisanglematrix_212',['axisAngleMatrix',['../a00956.html#ga3a788e2f5223397df5c426413ecc2f6b',1,'glm']]], + ['angle_20and_20trigonometry_20functions_213',['Angle and Trigonometry Functions',['../a00995.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/all_1.html b/include/glm/doc/api/search/all_1.html new file mode 100644 index 0000000..86b0682 --- /dev/null +++ b/include/glm/doc/api/search/all_1.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_1.js b/include/glm/doc/api/search/all_1.js new file mode 100644 index 0000000..b94b5d2 --- /dev/null +++ b/include/glm/doc/api/search/all_1.js @@ -0,0 +1,41 @@ +var searchData= +[ + ['backeasein_214',['backEaseIn',['../a00936.html#ga93cddcdb6347a44d5927cc2bf2570816',1,'glm::backEaseIn(genType const &a)'],['../a00936.html#ga33777c9dd98f61d9472f96aafdf2bd36',1,'glm::backEaseIn(genType const &a, genType const &o)']]], + ['backeaseinout_215',['backEaseInOut',['../a00936.html#gace6d24722a2f6722b56398206eb810bb',1,'glm::backEaseInOut(genType const &a)'],['../a00936.html#ga68a7b760f2afdfab298d5cd6d7611fb1',1,'glm::backEaseInOut(genType const &a, genType const &o)']]], + ['backeaseout_216',['backEaseOut',['../a00936.html#gabf25069fa906413c858fd46903d520b9',1,'glm::backEaseOut(genType const &a)'],['../a00936.html#ga640c1ac6fe9d277a197da69daf60ee4f',1,'glm::backEaseOut(genType const &a, genType const &o)']]], + ['ballrand_217',['ballRand',['../a00918.html#ga7c53b7797f3147af68a11c767679fa3f',1,'glm']]], + ['bit_2ehpp_218',['bit.hpp',['../a00590.html',1,'']]], + ['bitcount_219',['bitCount',['../a00992.html#ga44abfe3379e11cbd29425a843420d0d6',1,'glm::bitCount(genType v)'],['../a00992.html#gaac7b15e40bdea8d9aa4c4cb34049f7b5',1,'glm::bitCount(vec< L, T, Q > const &v)']]], + ['bitfield_2ehpp_220',['bitfield.hpp',['../a00533.html',1,'']]], + ['bitfielddeinterleave_221',['bitfieldDeinterleave',['../a00906.html#ga091d934233a2e121df91b8c7230357c8',1,'glm::bitfieldDeinterleave(glm::uint16 x)'],['../a00906.html#ga7d1cc24dfbcdd932c3a2abbb76235f98',1,'glm::bitfieldDeinterleave(glm::uint32 x)'],['../a00906.html#ga8dbb8c87092f33bd815dd8a840be5d60',1,'glm::bitfieldDeinterleave(glm::uint64 x)']]], + ['bitfieldextract_222',['bitfieldExtract',['../a00992.html#ga346b25ab11e793e91a4a69c8aa6819f2',1,'glm']]], + ['bitfieldfillone_223',['bitfieldFillOne',['../a00906.html#ga46f9295abe3b5c7658f5b13c7f819f0a',1,'glm::bitfieldFillOne(genIUType Value, int FirstBit, int BitCount)'],['../a00906.html#ga3e96dd1f0a4bc892f063251ed118c0c1',1,'glm::bitfieldFillOne(vec< L, T, Q > const &Value, int FirstBit, int BitCount)']]], + ['bitfieldfillzero_224',['bitfieldFillZero',['../a00906.html#ga697b86998b7d74ee0a69d8e9f8819fee',1,'glm::bitfieldFillZero(genIUType Value, int FirstBit, int BitCount)'],['../a00906.html#ga0d16c9acef4be79ea9b47c082a0cf7c2',1,'glm::bitfieldFillZero(vec< L, T, Q > const &Value, int FirstBit, int BitCount)']]], + ['bitfieldinsert_225',['bitfieldInsert',['../a00992.html#ga2e82992340d421fadb61a473df699b20',1,'glm']]], + ['bitfieldinterleave_226',['bitfieldInterleave',['../a00906.html#ga24cad0069f9a0450abd80b3e89501adf',1,'glm::bitfieldInterleave(int8 x, int8 y)'],['../a00906.html#ga9a4976a529aec2cee56525e1165da484',1,'glm::bitfieldInterleave(uint8 x, uint8 y)'],['../a00906.html#ga4a76bbca39c40153f3203d0a1926e142',1,'glm::bitfieldInterleave(u8vec2 const &v)'],['../a00906.html#gac51c33a394593f0631fa3aa5bb778809',1,'glm::bitfieldInterleave(int16 x, int16 y)'],['../a00906.html#ga94f3646a5667f4be56f8dcf3310e963f',1,'glm::bitfieldInterleave(uint16 x, uint16 y)'],['../a00906.html#ga406c4ee56af4ca37a73f449f154eca3e',1,'glm::bitfieldInterleave(u16vec2 const &v)'],['../a00906.html#gaebb756a24a0784e3d6fba8bd011ab77a',1,'glm::bitfieldInterleave(int32 x, int32 y)'],['../a00906.html#ga2f1e2b3fe699e7d897ae38b2115ddcbd',1,'glm::bitfieldInterleave(uint32 x, uint32 y)'],['../a00906.html#ga8cb17574d60abd6ade84bc57c10e8f78',1,'glm::bitfieldInterleave(u32vec2 const &v)'],['../a00906.html#ga8fdb724dccd4a07d57efc01147102137',1,'glm::bitfieldInterleave(int8 x, int8 y, int8 z)'],['../a00906.html#ga9fc2a0dd5dcf8b00e113f272a5feca93',1,'glm::bitfieldInterleave(uint8 x, uint8 y, uint8 z)'],['../a00906.html#gaa901c36a842fa5d126ea650549f17b24',1,'glm::bitfieldInterleave(int16 x, int16 y, int16 z)'],['../a00906.html#ga3afd6d38881fe3948c53d4214d2197fd',1,'glm::bitfieldInterleave(uint16 x, uint16 y, uint16 z)'],['../a00906.html#gad2075d96a6640121edaa98ea534102ca',1,'glm::bitfieldInterleave(int32 x, int32 y, int32 z)'],['../a00906.html#gab19fbc739fc0cf7247978602c36f7da8',1,'glm::bitfieldInterleave(uint32 x, uint32 y, uint32 z)'],['../a00906.html#ga8a44ae22f5c953b296c42d067dccbe6d',1,'glm::bitfieldInterleave(int8 x, int8 y, int8 z, int8 w)'],['../a00906.html#ga14bb274d54a3c26f4919dd7ed0dd0c36',1,'glm::bitfieldInterleave(uint8 x, uint8 y, uint8 z, uint8 w)'],['../a00906.html#ga180a63161e1319fbd5a53c84d0429c7a',1,'glm::bitfieldInterleave(int16 x, int16 y, int16 z, int16 w)'],['../a00906.html#gafca8768671a14c8016facccb66a89f26',1,'glm::bitfieldInterleave(uint16 x, uint16 y, uint16 z, uint16 w)']]], + ['bitfieldreverse_227',['bitfieldReverse',['../a00992.html#ga750a1d92464489b7711dee67aa3441b6',1,'glm']]], + ['bitfieldrotateleft_228',['bitfieldRotateLeft',['../a00906.html#ga2eb49678a344ce1495bdb5586d9896b9',1,'glm::bitfieldRotateLeft(genIUType In, int Shift)'],['../a00906.html#gae186317091b1a39214ebf79008d44a1e',1,'glm::bitfieldRotateLeft(vec< L, T, Q > const &In, int Shift)']]], + ['bitfieldrotateright_229',['bitfieldRotateRight',['../a00906.html#ga1c33d075c5fb8bd8dbfd5092bfc851ca',1,'glm::bitfieldRotateRight(genIUType In, int Shift)'],['../a00906.html#ga590488e1fc00a6cfe5d3bcaf93fbfe88',1,'glm::bitfieldRotateRight(vec< L, T, Q > const &In, int Shift)']]], + ['bool1_230',['bool1',['../a00933.html#gaddcd7aa2e30e61af5b38660613d3979e',1,'glm']]], + ['bool1x1_231',['bool1x1',['../a00933.html#ga7f895c936f0c29c8729afbbf22806090',1,'glm']]], + ['bool2_232',['bool2',['../a00933.html#gaa09ab65ec9c3c54305ff502e2b1fe6d9',1,'glm']]], + ['bool2x2_233',['bool2x2',['../a00933.html#gadb3703955e513632f98ba12fe051ba3e',1,'glm']]], + ['bool2x3_234',['bool2x3',['../a00933.html#ga9ae6ee155d0f90cb1ae5b6c4546738a0',1,'glm']]], + ['bool2x4_235',['bool2x4',['../a00933.html#ga4d7fa65be8e8e4ad6d920b45c44e471f',1,'glm']]], + ['bool3_236',['bool3',['../a00933.html#ga99629f818737f342204071ef8296b2ed',1,'glm']]], + ['bool3x2_237',['bool3x2',['../a00933.html#gac7d7311f7e0fa8b6163d96dab033a755',1,'glm']]], + ['bool3x3_238',['bool3x3',['../a00933.html#ga6c97b99aac3e302053ffb58aace9033c',1,'glm']]], + ['bool3x4_239',['bool3x4',['../a00933.html#gae7d6b679463d37d6c527d478fb470fdf',1,'glm']]], + ['bool4_240',['bool4',['../a00933.html#ga13c3200b82708f73faac6d7f09ec91a3',1,'glm']]], + ['bool4x2_241',['bool4x2',['../a00933.html#ga9ed830f52408b2f83c085063a3eaf1d0',1,'glm']]], + ['bool4x3_242',['bool4x3',['../a00933.html#gad0f5dc7f22c2065b1b06d57f1c0658fe',1,'glm']]], + ['bool4x4_243',['bool4x4',['../a00933.html#ga7d2a7d13986602ae2896bfaa394235d4',1,'glm']]], + ['bounceeasein_244',['bounceEaseIn',['../a00936.html#gaac30767f2e430b0c3fc859a4d59c7b5b',1,'glm']]], + ['bounceeaseinout_245',['bounceEaseInOut',['../a00936.html#gadf9f38eff1e5f4c2fa5b629a25ae413e',1,'glm']]], + ['bounceeaseout_246',['bounceEaseOut',['../a00936.html#ga94007005ff0dcfa0749ebfa2aec540b2',1,'glm']]], + ['bvec1_247',['bvec1',['../a00875.html#ga067af382616d93f8e850baae5154cdcc',1,'glm']]], + ['bvec2_248',['bvec2',['../a00899.html#ga0b6123e03653cc1bbe366fc55238a934',1,'glm']]], + ['bvec3_249',['bvec3',['../a00899.html#ga197151b72dfaf289daf98b361760ffe7',1,'glm']]], + ['bvec4_250',['bvec4',['../a00899.html#ga9f7b9712373ff4342d9114619b55f5e3',1,'glm']]], + ['byte_251',['byte',['../a00974.html#ga3005cb0d839d546c616becfa6602c607',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_10.html b/include/glm/doc/api/search/all_10.html new file mode 100644 index 0000000..b910674 --- /dev/null +++ b/include/glm/doc/api/search/all_10.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_10.js b/include/glm/doc/api/search/all_10.js new file mode 100644 index 0000000..6e7b74b --- /dev/null +++ b/include/glm/doc/api/search/all_10.js @@ -0,0 +1,55 @@ +var searchData= +[ + ['stable_20extensions_1993',['Stable extensions',['../a00903.html',1,'']]], + ['saturate_1994',['saturate',['../a00933.html#ga744b98814a35336e25cc0d1ba30f63f7',1,'glm::saturate(T x)'],['../a00933.html#gaee97b8001c794a78a44f5d59f62a8aba',1,'glm::saturate(const vec< 2, T, Q > &x)'],['../a00933.html#ga39bfe3a421286ee31680d45c31ccc161',1,'glm::saturate(const vec< 3, T, Q > &x)'],['../a00933.html#ga356f8c3a7e7d6376d3d4b0a026407183',1,'glm::saturate(const vec< 4, T, Q > &x)']]], + ['saturation_1995',['saturation',['../a00930.html#ga01a97152b44e1550edcac60bd849e884',1,'glm::saturation(T const s)'],['../a00930.html#ga2156cea600e90148ece5bc96fd6db43a',1,'glm::saturation(T const s, vec< 3, T, Q > const &color)'],['../a00930.html#gaba0eacee0736dae860e9371cc1ae4785',1,'glm::saturation(T const s, vec< 4, T, Q > const &color)']]], + ['scalar_5fcommon_2ehpp_1996',['scalar_common.hpp',['../a00356.html',1,'']]], + ['scalar_5fconstants_2ehpp_1997',['scalar_constants.hpp',['../a00359.html',1,'']]], + ['scalar_5fint_5fsized_2ehpp_1998',['scalar_int_sized.hpp',['../a00362.html',1,'']]], + ['scalar_5finteger_2ehpp_1999',['scalar_integer.hpp',['../a00365.html',1,'']]], + ['scalar_5fmultiplication_2ehpp_2000',['scalar_multiplication.hpp',['../a00728.html',1,'']]], + ['scalar_5fpacking_2ehpp_2001',['scalar_packing.hpp',['../a00368.html',1,'']]], + ['scalar_5freciprocal_2ehpp_2002',['scalar_reciprocal.hpp',['../a00371.html',1,'']]], + ['scalar_5fuint_5fsized_2ehpp_2003',['scalar_uint_sized.hpp',['../a00377.html',1,'']]], + ['scalar_5fulp_2ehpp_2004',['scalar_ulp.hpp',['../a00380.html',1,'']]], + ['scale_2005',['scale',['../a00837.html#ga05051adbee603fb3c5095d8cf5cc229b',1,'glm::scale(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)'],['../a00960.html#gadb47d2ad2bd984b213e8ff7d9cd8154e',1,'glm::scale(mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)'],['../a00984.html#gafbeefee8fec884d566e4ada0049174d7',1,'glm::scale(vec< 3, T, Q > const &v)']]], + ['scalebias_2006',['scaleBias',['../a00985.html#gabf249498b236e62c983d90d30d63c99c',1,'glm::scaleBias(T scale, T bias)'],['../a00985.html#gae2bdd91a76759fecfbaef97e3020aa8e',1,'glm::scaleBias(mat< 4, 4, T, Q > const &m, T scale, T bias)']]], + ['sec_2007',['sec',['../a00871.html#ga225db01831b8a4b5a3d9bd3e486ed21c',1,'glm']]], + ['sech_2008',['sech',['../a00871.html#ga0e16a0de56f2bf9a432dc2776020fc7a',1,'glm']]], + ['shear_2009',['shear',['../a00837.html#ga391e0142852ab4139dcea0d9b1bbc048',1,'glm']]], + ['shearx_2010',['shearX',['../a00960.html#ga2a118ece5db1e2022112b954846012af',1,'glm']]], + ['shearx2d_2011',['shearX2D',['../a00985.html#gabf714b8a358181572b32a45555f71948',1,'glm']]], + ['shearx3d_2012',['shearX3D',['../a00985.html#ga73e867c6cd4d700fe2054437e56106c4',1,'glm']]], + ['sheary_2013',['shearY',['../a00960.html#ga717f1833369c1ac4a40e4ac015af885e',1,'glm']]], + ['sheary2d_2014',['shearY2D',['../a00985.html#gac7998d0763d9181550c77e8af09a182c',1,'glm']]], + ['sheary3d_2015',['shearY3D',['../a00985.html#gade5bb65ffcb513973db1a1314fb5cfac',1,'glm']]], + ['shearz3d_2016',['shearZ3D',['../a00985.html#ga6591e0a3a9d2c9c0b6577bb4dace0255',1,'glm']]], + ['shortmix_2017',['shortMix',['../a00972.html#gadc576cc957adc2a568cdcbc3799175bc',1,'glm']]], + ['sign_2018',['sign',['../a00812.html#ga589807f35ad0a1d173762bfac3288929',1,'glm::sign(vec< L, T, Q > const &x)'],['../a00952.html#ga04ef803a24f3d4f8c67dbccb33b0fce0',1,'glm::sign(vec< L, T, Q > const &x, vec< L, T, Q > const &base)']]], + ['simplex_2019',['simplex',['../a00915.html#ga8122468c69015ff397349a7dcc638b27',1,'glm']]], + ['sin_2020',['sin',['../a00995.html#ga29747fd108cb7292ae5a284f69691a69',1,'glm']]], + ['sineeasein_2021',['sineEaseIn',['../a00936.html#gafb338ac6f6b2bcafee50e3dca5201dbf',1,'glm']]], + ['sineeaseinout_2022',['sineEaseInOut',['../a00936.html#gaa46e3d5fbf7a15caa28eff9ef192d7c7',1,'glm']]], + ['sineeaseout_2023',['sineEaseOut',['../a00936.html#gab3e454f883afc1606ef91363881bf5a3',1,'glm']]], + ['sinh_2024',['sinh',['../a00995.html#gac7c39ff21809e281552b4dbe46f4a39d',1,'glm']]], + ['sint_2025',['sint',['../a00948.html#gada7e83fdfe943aba4f1d5bf80cb66f40',1,'glm']]], + ['size1_2026',['size1',['../a00980.html#gaeb877ac8f9a3703961736c1c5072cf68',1,'glm']]], + ['size1_5ft_2027',['size1_t',['../a00980.html#gaaf6accc57f5aa50447ba7310ce3f0d6f',1,'glm']]], + ['size2_2028',['size2',['../a00980.html#ga1bfe8c4975ff282bce41be2bacd524fe',1,'glm']]], + ['size2_5ft_2029',['size2_t',['../a00980.html#ga5976c25657d4e2b5f73f39364c3845d6',1,'glm']]], + ['size3_2030',['size3',['../a00980.html#gae1c72956d0359b0db332c6c8774d3b04',1,'glm']]], + ['size3_5ft_2031',['size3_t',['../a00980.html#gaf2654983c60d641fd3808e65a8dfad8d',1,'glm']]], + ['size4_2032',['size4',['../a00980.html#ga3a19dde617beaf8ce3cfc2ac5064e9aa',1,'glm']]], + ['size4_5ft_2033',['size4_t',['../a00980.html#gaa423efcea63675a2df26990dbcb58656',1,'glm']]], + ['slerp_2034',['slerp',['../a00856.html#gae7fc3c945be366b9942b842f55da428a',1,'glm::slerp(qua< T, Q > const &x, qua< T, Q > const &y, T a)'],['../a00856.html#ga8514da9c52cfee86f716cc0933ce118a',1,'glm::slerp(qua< T, Q > const &x, qua< T, Q > const &y, T a, S k)'],['../a00976.html#ga8b11b18ce824174ea1a5a69ea14e2cee',1,'glm::slerp(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, T const &a)']]], + ['smoothstep_2035',['smoothstep',['../a00812.html#ga562edf7eca082cc5b7a0aaf180436daf',1,'glm']]], + ['sorteigenvalues_2036',['sortEigenvalues',['../a00968.html#ga2824ef6f23df255f86b9c33cebd5da2f',1,'glm::sortEigenvalues(vec< 2, T, Q > &eigenvalues, mat< 2, 2, T, Q > &eigenvectors)'],['../a00968.html#gaf6fbcbcca3eb46f4fd6d491a979db7c5',1,'glm::sortEigenvalues(vec< 3, T, Q > &eigenvalues, mat< 3, 3, T, Q > &eigenvectors)'],['../a00968.html#ga3fe570b4abe7eca8afb32896d77394f5',1,'glm::sortEigenvalues(vec< 4, T, Q > &eigenvalues, mat< 4, 4, T, Q > &eigenvectors)']]], + ['sphericalrand_2037',['sphericalRand',['../a00918.html#ga22f90fcaccdf001c516ca90f6428e138',1,'glm']]], + ['spline_2ehpp_2038',['spline.hpp',['../a00731.html',1,'']]], + ['sqrt_2039',['sqrt',['../a00813.html#gaa83e5f1648b7ccdf33b87c07c76cb77c',1,'glm::sqrt(vec< L, T, Q > const &v)'],['../a00864.html#ga64b7b255ed7bcba616fe6b44470b022e',1,'glm::sqrt(qua< T, Q > const &q)'],['../a00948.html#ga7ce36693a75879ccd9bb10167cfa722d',1,'glm::sqrt(int x)'],['../a00948.html#ga1975d318978d6dacf78b6444fa5ed7bc',1,'glm::sqrt(uint x)']]], + ['squad_2040',['squad',['../a00972.html#ga0b9bf3459e132ad8a18fe970669e3e35',1,'glm']]], + ['std_5fbased_5ftype_2ehpp_2041',['std_based_type.hpp',['../a00734.html',1,'']]], + ['step_2042',['step',['../a00812.html#ga015a1261ff23e12650211aa872863cce',1,'glm::step(genType edge, genType x)'],['../a00812.html#ga8f9a911a48ef244b51654eaefc81c551',1,'glm::step(T edge, vec< L, T, Q > const &x)'],['../a00812.html#gaf4a5fc81619c7d3e8b22f53d4a098c7f',1,'glm::step(vec< L, T, Q > const &edge, vec< L, T, Q > const &x)']]], + ['string_5fcast_2ehpp_2043',['string_cast.hpp',['../a00737.html',1,'']]], + ['structured_5fbindings_2ehpp_2044',['structured_bindings.hpp',['../a00740.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/all_11.html b/include/glm/doc/api/search/all_11.html new file mode 100644 index 0000000..459c977 --- /dev/null +++ b/include/glm/doc/api/search/all_11.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_11.js b/include/glm/doc/api/search/all_11.js new file mode 100644 index 0000000..521f3fb --- /dev/null +++ b/include/glm/doc/api/search/all_11.js @@ -0,0 +1,42 @@ +var searchData= +[ + ['tan_2045',['tan',['../a00995.html#ga293a34cfb9f0115cc606b4a97c84f11f',1,'glm']]], + ['tanh_2046',['tanh',['../a00995.html#gaa1bccbfdcbe40ed2ffcddc2aa8bfd0f1',1,'glm']]], + ['tau_2047',['tau',['../a00908.html#gae645d3bb4076df6976b3c0821831b422',1,'glm']]], + ['texture_2ehpp_2048',['texture.hpp',['../a00743.html',1,'']]], + ['third_2049',['third',['../a00908.html#ga3077c6311010a214b69ddc8214ec13b5',1,'glm']]], + ['three_5fover_5ftwo_5fpi_2050',['three_over_two_pi',['../a00908.html#gae94950df74b0ce382b1fc1d978ef7394',1,'glm']]], + ['to_5fstring_2051',['to_string',['../a00981.html#ga8f0dced1fd45e67e2d77e80ab93c7af5',1,'glm']]], + ['tomat3_2052',['toMat3',['../a00972.html#gac228e3fcfa813841804362fcae02b337',1,'glm']]], + ['tomat4_2053',['toMat4',['../a00972.html#gad0d0c14d7d3c852b41d6a6e4d1da6606',1,'glm']]], + ['toquat_2054',['toQuat',['../a00972.html#ga7b2be33d948db631c8815e9f2953a451',1,'glm::toQuat(mat< 3, 3, T, Q > const &x)'],['../a00972.html#ga4cf12d456770d716b590fd498bce6136',1,'glm::toQuat(mat< 4, 4, T, Q > const &x)']]], + ['transform_2ehpp_2055',['transform.hpp',['../a00746.html',1,'']]], + ['transform2_2ehpp_2056',['transform2.hpp',['../a00749.html',1,'']]], + ['translate_2057',['translate',['../a00837.html#gac6b494bda2f47615b2fd3e70f3d2c912',1,'glm::translate(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)'],['../a00960.html#gaf4573ae47c80938aa9053ef6a33755ab',1,'glm::translate(mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)'],['../a00984.html#ga309a30e652e58c396e2c3d4db3ee7658',1,'glm::translate(vec< 3, T, Q > const &v)']]], + ['transpose_2058',['transpose',['../a00834.html#ga4bedcb9c511484f38fd30a60c95f4679',1,'glm']]], + ['trianglenormal_2059',['triangleNormal',['../a00963.html#gaff1cb5496925dfa7962df457772a7f35',1,'glm']]], + ['trigonometric_2ehpp_2060',['trigonometric.hpp',['../a00797.html',1,'']]], + ['trunc_2061',['trunc',['../a00812.html#gaf9375e3e06173271d49e6ffa3a334259',1,'glm']]], + ['tweakedinfiniteperspective_2062',['tweakedInfinitePerspective',['../a00814.html#gaaeacc04a2a6f4b18c5899d37e7bb3ef9',1,'glm::tweakedInfinitePerspective(T fovy, T aspect, T near)'],['../a00814.html#gaf5b3c85ff6737030a1d2214474ffa7a8',1,'glm::tweakedInfinitePerspective(T fovy, T aspect, T near, T ep)']]], + ['two_5fover_5fpi_2063',['two_over_pi',['../a00908.html#ga74eadc8a211253079683219a3ea0462a',1,'glm']]], + ['two_5fover_5froot_5fpi_2064',['two_over_root_pi',['../a00908.html#ga5827301817640843cf02026a8d493894',1,'glm']]], + ['two_5fpi_2065',['two_pi',['../a00908.html#gaa5276a4617566abcfe49286f40e3a256',1,'glm']]], + ['two_5fthirds_2066',['two_thirds',['../a00908.html#ga9b4d2f4322edcf63a6737b92a29dd1f5',1,'glm']]], + ['type_5fmat2x2_2ehpp_2067',['type_mat2x2.hpp',['../a00044.html',1,'']]], + ['type_5fmat2x3_2ehpp_2068',['type_mat2x3.hpp',['../a00047.html',1,'']]], + ['type_5fmat2x4_2ehpp_2069',['type_mat2x4.hpp',['../a00050.html',1,'']]], + ['type_5fmat3x2_2ehpp_2070',['type_mat3x2.hpp',['../a00053.html',1,'']]], + ['type_5fmat3x3_2ehpp_2071',['type_mat3x3.hpp',['../a00056.html',1,'']]], + ['type_5fmat3x4_2ehpp_2072',['type_mat3x4.hpp',['../a00059.html',1,'']]], + ['type_5fmat4x2_2ehpp_2073',['type_mat4x2.hpp',['../a00062.html',1,'']]], + ['type_5fmat4x3_2ehpp_2074',['type_mat4x3.hpp',['../a00065.html',1,'']]], + ['type_5fmat4x4_2ehpp_2075',['type_mat4x4.hpp',['../a00068.html',1,'']]], + ['type_5fprecision_2ehpp_2076',['type_precision.hpp',['../a00575.html',1,'']]], + ['type_5fptr_2ehpp_2077',['type_ptr.hpp',['../a00578.html',1,'']]], + ['type_5fquat_2ehpp_2078',['type_quat.hpp',['../a00071.html',1,'']]], + ['type_5ftrait_2ehpp_2079',['type_trait.hpp',['../a00752.html',1,'']]], + ['type_5fvec1_2ehpp_2080',['type_vec1.hpp',['../a00074.html',1,'']]], + ['type_5fvec2_2ehpp_2081',['type_vec2.hpp',['../a00077.html',1,'']]], + ['type_5fvec3_2ehpp_2082',['type_vec3.hpp',['../a00080.html',1,'']]], + ['type_5fvec4_2ehpp_2083',['type_vec4.hpp',['../a00083.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/all_12.html b/include/glm/doc/api/search/all_12.html new file mode 100644 index 0000000..290ee76 --- /dev/null +++ b/include/glm/doc/api/search/all_12.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_12.js b/include/glm/doc/api/search/all_12.js new file mode 100644 index 0000000..2016371 --- /dev/null +++ b/include/glm/doc/api/search/all_12.js @@ -0,0 +1,145 @@ +var searchData= +[ + ['u16_2084',['u16',['../a00922.html#gaa2d7acc0adb536fab71fe261232a40ff',1,'glm']]], + ['u16mat2_2085',['u16mat2',['../a00839.html#gab5b9f6f94a5b7190466cbce9a96f2151',1,'glm']]], + ['u16mat2x2_2086',['u16mat2x2',['../a00839.html#ga820fe7dddf5e891cf4345a23ce2ea813',1,'glm']]], + ['u16mat2x3_2087',['u16mat2x3',['../a00841.html#ga19d5860baba684549bd0774c36e48af2',1,'glm']]], + ['u16mat2x4_2088',['u16mat2x4',['../a00843.html#ga055726c5e617b57196bb8f4c695f5728',1,'glm']]], + ['u16mat3_2089',['u16mat3',['../a00847.html#ga8c37f20870755f50b73a689e08af8f88',1,'glm']]], + ['u16mat3x2_2090',['u16mat3x2',['../a00845.html#ga3311ce83a726e0153773bc42683434ed',1,'glm']]], + ['u16mat3x3_2091',['u16mat3x3',['../a00847.html#ga36803d6b625e15cda1579525b47eb859',1,'glm']]], + ['u16mat3x4_2092',['u16mat3x4',['../a00849.html#ga80afc1a131374aea2e16719c89cc9632',1,'glm']]], + ['u16mat4_2093',['u16mat4',['../a00855.html#gaabfaeee7099a24ea040a21c315564faf',1,'glm']]], + ['u16mat4x2_2094',['u16mat4x2',['../a00851.html#gad8c9aaf9191198e686af800ce8217449',1,'glm']]], + ['u16mat4x3_2095',['u16mat4x3',['../a00853.html#ga76c2c7a20b1012b4cc3374c47e2fe79c',1,'glm']]], + ['u16mat4x4_2096',['u16mat4x4',['../a00855.html#gadcf5da976c2ee709de8dd6dd65bca436',1,'glm']]], + ['u16vec1_2097',['u16vec1',['../a00892.html#ga08c05ba8ffb19f5d14ab584e1e9e9ee5',1,'glm']]], + ['u16vec2_2098',['u16vec2',['../a00893.html#ga2a78447eb9d66a114b193f4a25899c16',1,'glm']]], + ['u16vec3_2099',['u16vec3',['../a00894.html#ga1c522ca821c27b862fe51cf4024b064b',1,'glm']]], + ['u16vec4_2100',['u16vec4',['../a00895.html#ga529496d75775fb656a07993ea9af2450',1,'glm']]], + ['u32_2101',['u32',['../a00922.html#ga8165913e068444f7842302d40ba897b9',1,'glm']]], + ['u32mat2_2102',['u32mat2',['../a00839.html#ga811a43d955ef7caa919787e38abb1bab',1,'glm']]], + ['u32mat2x2_2103',['u32mat2x2',['../a00839.html#ga8426c09e876dc3837c2107b78a6a59b6',1,'glm']]], + ['u32mat2x3_2104',['u32mat2x3',['../a00841.html#ga0fd0b888a5973cfa8fcdab0dff8b6993',1,'glm']]], + ['u32mat2x4_2105',['u32mat2x4',['../a00843.html#ga544507f62e26969e98ce9a6afb5d2cad',1,'glm']]], + ['u32mat3_2106',['u32mat3',['../a00847.html#gac5c09be9a4646331e6e5d595316a3c29',1,'glm']]], + ['u32mat3x2_2107',['u32mat3x2',['../a00845.html#ga3ef030ce44dbd2e68bd12f1f7d47d242',1,'glm']]], + ['u32mat3x3_2108',['u32mat3x3',['../a00847.html#ga820b13b067c3bd0da9384d93b70ce9a6',1,'glm']]], + ['u32mat3x4_2109',['u32mat3x4',['../a00849.html#ga3fe03e2f7c65ded47c83f0efc3c584a1',1,'glm']]], + ['u32mat4_2110',['u32mat4',['../a00855.html#ga92fa0dd48e3a180a548e36ecd594224b',1,'glm']]], + ['u32mat4x2_2111',['u32mat4x2',['../a00851.html#gae4c874b9c833bedd7e67afaf159c350e',1,'glm']]], + ['u32mat4x3_2112',['u32mat4x3',['../a00853.html#ga03a1e404b5cd44e15f78cec8c9be1f58',1,'glm']]], + ['u32mat4x4_2113',['u32mat4x4',['../a00855.html#ga16e259d66272b5af0bb327896f461db6',1,'glm']]], + ['u32vec1_2114',['u32vec1',['../a00892.html#gae627372cfd5f20dd87db490387b71195',1,'glm']]], + ['u32vec2_2115',['u32vec2',['../a00893.html#ga2a266e46ee218d0c680f12b35c500cc0',1,'glm']]], + ['u32vec3_2116',['u32vec3',['../a00894.html#gae267358ff2a41d156d97f5762630235a',1,'glm']]], + ['u32vec4_2117',['u32vec4',['../a00895.html#ga31cef34e4cd04840c54741ff2f7005f0',1,'glm']]], + ['u64_2118',['u64',['../a00922.html#gaf3f312156984c365e9f65620354da70b',1,'glm']]], + ['u64mat2_2119',['u64mat2',['../a00839.html#ga19bf0cb18a85b0e0879f0f8f7fce6f43',1,'glm']]], + ['u64mat2x2_2120',['u64mat2x2',['../a00839.html#ga9e462f9cfd9026089ed140aadc91975b',1,'glm']]], + ['u64mat2x3_2121',['u64mat2x3',['../a00841.html#ga301b8f80a3a17c5bfa49f5225dec6888',1,'glm']]], + ['u64mat2x4_2122',['u64mat2x4',['../a00843.html#gaade09898ba32793e1a252330e881ebf4',1,'glm']]], + ['u64mat3_2123',['u64mat3',['../a00847.html#gafaaf26f1562308e1dc0889311e6e7a20',1,'glm']]], + ['u64mat3x2_2124',['u64mat3x2',['../a00845.html#ga4dc2fdfe9a3d2461101e017e1a24fef6',1,'glm']]], + ['u64mat3x3_2125',['u64mat3x3',['../a00847.html#ga5a750d248e0d1e2436b5b2c81b3b5896',1,'glm']]], + ['u64mat3x4_2126',['u64mat3x4',['../a00849.html#gaf7143266570d2647825063a9ede9f088',1,'glm']]], + ['u64mat4_2127',['u64mat4',['../a00855.html#ga878c0ff8a8ed0a7381216311bf0b9235',1,'glm']]], + ['u64mat4x2_2128',['u64mat4x2',['../a00851.html#ga4ca9245422ee360303ec8daab16e8572',1,'glm']]], + ['u64mat4x3_2129',['u64mat4x3',['../a00853.html#ga91a05c8024b2e745460a6606f17fc602',1,'glm']]], + ['u64mat4x4_2130',['u64mat4x4',['../a00855.html#gac1abc008e8233c926c8ee188c3958142',1,'glm']]], + ['u64vec1_2131',['u64vec1',['../a00892.html#gaf09f3ca4b671a4a4f84505eb4cc865fd',1,'glm']]], + ['u64vec2_2132',['u64vec2',['../a00893.html#gaef3824ed4fe435a019c5b9dddf53fec5',1,'glm']]], + ['u64vec3_2133',['u64vec3',['../a00894.html#ga489b89ba93d4f7b3934df78debc52276',1,'glm']]], + ['u64vec4_2134',['u64vec4',['../a00895.html#ga3945dd6515d4498cb603e65ff867ab03',1,'glm']]], + ['u8_2135',['u8',['../a00922.html#gaecc7082561fc9028b844b6cf3d305d36',1,'glm']]], + ['u8mat2_2136',['u8mat2',['../a00839.html#ga222219d3aab9c3b2d835b55d7a961b4e',1,'glm']]], + ['u8mat2x2_2137',['u8mat2x2',['../a00839.html#gadc76d570d23f338a90e9d41d3279199e',1,'glm']]], + ['u8mat2x3_2138',['u8mat2x3',['../a00841.html#ga69282ea3f7a720c1b17c15d9add5444d',1,'glm']]], + ['u8mat2x4_2139',['u8mat2x4',['../a00843.html#gaf23eaa003d78c2eff52e35af503b4774',1,'glm']]], + ['u8mat3_2140',['u8mat3',['../a00847.html#ga765e47b3da32d6f8d7eafc246628a9a6',1,'glm']]], + ['u8mat3x2_2141',['u8mat3x2',['../a00845.html#ga61551e90468eb24390b045e6733fa9b4',1,'glm']]], + ['u8mat3x3_2142',['u8mat3x3',['../a00847.html#ga8bf749cc271c29f7042f9ea6c6907c82',1,'glm']]], + ['u8mat3x4_2143',['u8mat3x4',['../a00849.html#gaf76f5f883e1d87d56d6d3e53ec3c89b3',1,'glm']]], + ['u8mat4_2144',['u8mat4',['../a00855.html#ga5adf8e1402abec3ea43c1788832065ed',1,'glm']]], + ['u8mat4x2_2145',['u8mat4x2',['../a00851.html#gabf8d4cbe77031670484fd35eac3168b0',1,'glm']]], + ['u8mat4x3_2146',['u8mat4x3',['../a00853.html#ga43c213a100d91f4606b8008284aa4967',1,'glm']]], + ['u8mat4x4_2147',['u8mat4x4',['../a00855.html#gaa54ad379d3d259c67aa2f75f64670408',1,'glm']]], + ['u8vec1_2148',['u8vec1',['../a00892.html#ga29b349e037f0b24320b4548a143daee2',1,'glm']]], + ['u8vec2_2149',['u8vec2',['../a00893.html#ga518b8d948a6b4ddb72f84d5c3b7b6611',1,'glm']]], + ['u8vec3_2150',['u8vec3',['../a00894.html#ga7c5706f6bbe5282e5598acf7e7b377e2',1,'glm']]], + ['u8vec4_2151',['u8vec4',['../a00895.html#ga20779a61de2fd526a17f12fe53ec46b1',1,'glm']]], + ['uaddcarry_2152',['uaddCarry',['../a00992.html#gaedcec48743632dff6786bcc492074b1b',1,'glm']]], + ['uint16_2153',['uint16',['../a00873.html#ga05f6b0ae8f6a6e135b0e290c25fe0e4e',1,'glm']]], + ['uint16_5ft_2154',['uint16_t',['../a00922.html#ga91f91f411080c37730856ff5887f5bcf',1,'glm']]], + ['uint32_2155',['uint32',['../a00873.html#ga1134b580f8da4de94ca6b1de4d37975e',1,'glm']]], + ['uint32_5ft_2156',['uint32_t',['../a00922.html#ga2171d9dc1fefb1c82e2817f45b622eac',1,'glm']]], + ['uint64_2157',['uint64',['../a00873.html#gab630f76c26b50298187f7889104d4b9c',1,'glm']]], + ['uint64_5ft_2158',['uint64_t',['../a00922.html#ga3999d3e7ff22025c16ddb601e14dfdee',1,'glm']]], + ['uint8_2159',['uint8',['../a00873.html#gadde6aaee8457bee49c2a92621fe22b79',1,'glm']]], + ['uint8_5ft_2160',['uint8_t',['../a00922.html#ga28d97808322d3c92186e4a0c067d7e8e',1,'glm']]], + ['uintbitstofloat_2161',['uintBitsToFloat',['../a00812.html#gac427a0b389f2c585269c36ccaee9c5ed',1,'glm::uintBitsToFloat(uint v)'],['../a00812.html#ga97f46b5f7b42fe44482e13356eb394ae',1,'glm::uintBitsToFloat(vec< L, uint, Q > const &v)']]], + ['ulp_2ehpp_2162',['ulp.hpp',['../a00581.html',1,'']]], + ['umat2_2163',['umat2',['../a00838.html#gac41defbdac8ca0edf9b21f4d4d16a508',1,'glm']]], + ['umat2x2_2164',['umat2x2',['../a00838.html#ga02daa4c5f3b185e8f99cd8a2f8bc7554',1,'glm']]], + ['umat2x3_2165',['umat2x3',['../a00840.html#ga89375c2308a3fa15f878394c7b38b224',1,'glm']]], + ['umat2x4_2166',['umat2x4',['../a00842.html#ga396cc751951467cc6ed570e158900813',1,'glm']]], + ['umat3_2167',['umat3',['../a00846.html#gaffdc395cb4be217d92a17235e8e0fc99',1,'glm']]], + ['umat3x2_2168',['umat3x2',['../a00844.html#ga9ca0dd40c861ee6307a97a242a91f119',1,'glm']]], + ['umat3x3_2169',['umat3x3',['../a00846.html#gaebb9027bcbaeb05e0678a00f03d2c312',1,'glm']]], + ['umat3x4_2170',['umat3x4',['../a00848.html#gafd52ce3ed03df04b38208e7ef7a6db28',1,'glm']]], + ['umat4_2171',['umat4',['../a00854.html#ga428a8d4d3e62d81b91c0fd4c3d5a905f',1,'glm']]], + ['umat4x2_2172',['umat4x2',['../a00850.html#ga03f2451aa64f11c36398dbc4db4b4ca5',1,'glm']]], + ['umat4x3_2173',['umat4x3',['../a00852.html#ga0aec0e4ce9f3197ec65d2d34c8fb69d2',1,'glm']]], + ['umat4x4_2174',['umat4x4',['../a00854.html#ga623eaba1dfb104d0ce01b3bb6852540a',1,'glm']]], + ['umulextended_2175',['umulExtended',['../a00992.html#gad22052a7e47d9408ad65ac675abe1663',1,'glm']]], + ['unpackdouble2x32_2176',['unpackDouble2x32',['../a00994.html#ga5f4296dc5f12f0aa67ac05b8bb322483',1,'glm']]], + ['unpackf2x11_5f1x10_2177',['unpackF2x11_1x10',['../a00916.html#ga2b1fd1e854705b1345e98409e0a25e50',1,'glm']]], + ['unpackf3x9_5fe1x5_2178',['unpackF3x9_E1x5',['../a00916.html#gab9e60ebe3ad3eeced6a9ec6eb876d74e',1,'glm']]], + ['unpackhalf_2179',['unpackHalf',['../a00916.html#ga30d6b2f1806315bcd6047131f547d33b',1,'glm']]], + ['unpackhalf1x16_2180',['unpackHalf1x16',['../a00916.html#gac37dedaba24b00adb4ec6e8f92c19dbf',1,'glm']]], + ['unpackhalf2x16_2181',['unpackHalf2x16',['../a00994.html#gaf59b52e6b28da9335322c4ae19b5d745',1,'glm']]], + ['unpackhalf4x16_2182',['unpackHalf4x16',['../a00916.html#ga57dfc41b2eb20b0ac00efae7d9c49dcd',1,'glm']]], + ['unpacki3x10_5f1x2_2183',['unpackI3x10_1x2',['../a00916.html#ga9a05330e5490be0908d3b117d82aff56',1,'glm']]], + ['unpackint2x16_2184',['unpackInt2x16',['../a00916.html#gaccde055882918a3175de82f4ca8b7d8e',1,'glm']]], + ['unpackint2x32_2185',['unpackInt2x32',['../a00916.html#gab297c0bfd38433524791eb0584d8f08d',1,'glm']]], + ['unpackint2x8_2186',['unpackInt2x8',['../a00916.html#gab0c59f1e259fca9e68adb2207a6b665e',1,'glm']]], + ['unpackint4x16_2187',['unpackInt4x16',['../a00916.html#ga52c154a9b232b62c22517a700cc0c78c',1,'glm']]], + ['unpackint4x8_2188',['unpackInt4x8',['../a00916.html#ga1cd8d2038cdd33a860801aa155a26221',1,'glm']]], + ['unpackrgbm_2189',['unpackRGBM',['../a00916.html#ga5c1ec97894b05ea21a05aea4f0204a02',1,'glm']]], + ['unpacksnorm_2190',['unpackSnorm',['../a00916.html#ga6d49b31e5c3f9df8e1f99ab62b999482',1,'glm']]], + ['unpacksnorm1x16_2191',['unpackSnorm1x16',['../a00916.html#ga96dd15002370627a443c835ab03a766c',1,'glm']]], + ['unpacksnorm1x8_2192',['unpackSnorm1x8',['../a00916.html#ga4851ff86678aa1c7ace9d67846894285',1,'glm']]], + ['unpacksnorm2x16_2193',['unpackSnorm2x16',['../a00994.html#gacd8f8971a3fe28418be0d0fa1f786b38',1,'glm']]], + ['unpacksnorm2x8_2194',['unpackSnorm2x8',['../a00916.html#ga8b128e89be449fc71336968a66bf6e1a',1,'glm']]], + ['unpacksnorm3x10_5f1x2_2195',['unpackSnorm3x10_1x2',['../a00916.html#ga7a4fbf79be9740e3c57737bc2af05e5b',1,'glm']]], + ['unpacksnorm4x16_2196',['unpackSnorm4x16',['../a00916.html#gaaddf9c353528fe896106f7181219c7f4',1,'glm']]], + ['unpacksnorm4x8_2197',['unpackSnorm4x8',['../a00994.html#ga2db488646d48b7c43d3218954523fe82',1,'glm']]], + ['unpacku3x10_5f1x2_2198',['unpackU3x10_1x2',['../a00916.html#ga48df3042a7d079767f5891a1bfd8a60a',1,'glm']]], + ['unpackuint2x16_2199',['unpackUint2x16',['../a00916.html#ga035bbbeab7ec2b28c0529757395b645b',1,'glm']]], + ['unpackuint2x32_2200',['unpackUint2x32',['../a00916.html#gaf942ff11b65e83eb5f77e68329ebc6ab',1,'glm']]], + ['unpackuint2x8_2201',['unpackUint2x8',['../a00916.html#gaa7600a6c71784b637a410869d2a5adcd',1,'glm']]], + ['unpackuint4x16_2202',['unpackUint4x16',['../a00916.html#gab173834ef14cfc23a96a959f3ff4b8dc',1,'glm']]], + ['unpackuint4x8_2203',['unpackUint4x8',['../a00916.html#gaf6dc0e4341810a641c7ed08f10e335d1',1,'glm']]], + ['unpackunorm_2204',['unpackUnorm',['../a00916.html#ga3e6ac9178b59f0b1b2f7599f2183eb7f',1,'glm']]], + ['unpackunorm1x16_2205',['unpackUnorm1x16',['../a00916.html#ga83d34160a5cb7bcb5339823210fc7501',1,'glm']]], + ['unpackunorm1x5_5f1x6_5f1x5_2206',['unpackUnorm1x5_1x6_1x5',['../a00916.html#gab3bc08ecfc0f3339be93fb2b3b56d88a',1,'glm']]], + ['unpackunorm1x8_2207',['unpackUnorm1x8',['../a00916.html#ga1319207e30874fb4931a9ee913983ee1',1,'glm']]], + ['unpackunorm2x16_2208',['unpackUnorm2x16',['../a00994.html#ga1f66188e5d65afeb9ffba1ad971e4007',1,'glm']]], + ['unpackunorm2x3_5f1x2_2209',['unpackUnorm2x3_1x2',['../a00916.html#ga6abd5a9014df3b5ce4059008d2491260',1,'glm']]], + ['unpackunorm2x4_2210',['unpackUnorm2x4',['../a00916.html#ga2e50476132fe5f27f08e273d9c70d85b',1,'glm']]], + ['unpackunorm2x8_2211',['unpackUnorm2x8',['../a00916.html#ga637cbe3913dd95c6e7b4c99c61bd611f',1,'glm']]], + ['unpackunorm3x10_5f1x2_2212',['unpackUnorm3x10_1x2',['../a00916.html#ga5156d3060355fe332865da2c7f78815f',1,'glm']]], + ['unpackunorm3x5_5f1x1_2213',['unpackUnorm3x5_1x1',['../a00916.html#ga5ff95ff5bc16f396432ab67243dbae4d',1,'glm']]], + ['unpackunorm4x16_2214',['unpackUnorm4x16',['../a00916.html#ga2ae149c5d2473ac1e5f347bb654a242d',1,'glm']]], + ['unpackunorm4x4_2215',['unpackUnorm4x4',['../a00916.html#gac58ee89d0e224bb6df5e8bbb18843a2d',1,'glm']]], + ['unpackunorm4x8_2216',['unpackUnorm4x8',['../a00994.html#ga7f903259150b67e9466f5f8edffcd197',1,'glm']]], + ['unproject_2217',['unProject',['../a00835.html#ga36641e5d60f994e01c3d8f56b10263d2',1,'glm']]], + ['unprojectno_2218',['unProjectNO',['../a00835.html#gae089ba9fc150ff69c252a20e508857b5',1,'glm']]], + ['unprojectzo_2219',['unProjectZO',['../a00835.html#gade5136413ce530f8e606124d570fba32',1,'glm']]], + ['uround_2220',['uround',['../a00866.html#ga9d915647ec33c4110946665f914d3abb',1,'glm::uround(genType const &x)'],['../a00877.html#ga6715b9d573972a0f7763d30d45bcaec4',1,'glm::uround(vec< L, T, Q > const &x)']]], + ['usubborrow_2221',['usubBorrow',['../a00992.html#gae3316ba1229ad9b9f09480833321b053',1,'glm']]], + ['uvec1_2222',['uvec1',['../a00891.html#ga94fab575ce384c7ed3720debde574030',1,'glm']]], + ['uvec2_2223',['uvec2',['../a00899.html#gab173892ee0fd88db1e13a17b1d861326',1,'glm']]], + ['uvec3_2224',['uvec3',['../a00899.html#ga126b028d481b6dba20c90b1f87f09dbd',1,'glm']]], + ['uvec4_2225',['uvec4',['../a00899.html#ga4bb78ab04327c88f8e0eb8af30734851',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_13.html b/include/glm/doc/api/search/all_13.html new file mode 100644 index 0000000..f7d46e7 --- /dev/null +++ b/include/glm/doc/api/search/all_13.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_13.js b/include/glm/doc/api/search/all_13.js new file mode 100644 index 0000000..3336e60 --- /dev/null +++ b/include/glm/doc/api/search/all_13.js @@ -0,0 +1,64 @@ +var searchData= +[ + ['vector_20relational_20functions_2226',['Vector Relational Functions',['../a00996.html',1,'']]], + ['vector_20types_2227',['Vector types',['../a00899.html',1,'']]], + ['vector_20types_20with_20precision_20qualifiers_2228',['Vector types with precision qualifiers',['../a00900.html',1,'']]], + ['value_5fptr_2229',['value_ptr',['../a00923.html#ga1c64669e1ba1160ad9386e43dc57569a',1,'glm']]], + ['vec1_2230',['vec1',['../a00880.html#gadfc071d934d8dae7955a1d530a3cf656',1,'glm']]], + ['vec1_2ehpp_2231',['vec1.hpp',['../a00584.html',1,'']]], + ['vec2_2232',['vec2',['../a00899.html#gabe65c061834f61b4f7cb6037b19006a4',1,'glm']]], + ['vec2_2ehpp_2233',['vec2.hpp',['../a00800.html',1,'']]], + ['vec3_2234',['vec3',['../a00899.html#ga9c3019b13faf179e4ad3626ea66df334',1,'glm']]], + ['vec3_2ehpp_2235',['vec3.hpp',['../a00803.html',1,'']]], + ['vec4_2236',['vec4',['../a00899.html#gac215a35481a6597d1bf622a382e9d6e2',1,'glm']]], + ['vec4_2ehpp_2237',['vec4.hpp',['../a00806.html',1,'']]], + ['vec_5fswizzle_2ehpp_2238',['vec_swizzle.hpp',['../a00755.html',1,'']]], + ['vector_5fangle_2ehpp_2239',['vector_angle.hpp',['../a00758.html',1,'']]], + ['vector_5fbool1_2ehpp_2240',['vector_bool1.hpp',['../a00383.html',1,'']]], + ['vector_5fbool1_5fprecision_2ehpp_2241',['vector_bool1_precision.hpp',['../a00386.html',1,'']]], + ['vector_5fbool2_2ehpp_2242',['vector_bool2.hpp',['../a00389.html',1,'']]], + ['vector_5fbool2_5fprecision_2ehpp_2243',['vector_bool2_precision.hpp',['../a00392.html',1,'']]], + ['vector_5fbool3_2ehpp_2244',['vector_bool3.hpp',['../a00395.html',1,'']]], + ['vector_5fbool3_5fprecision_2ehpp_2245',['vector_bool3_precision.hpp',['../a00398.html',1,'']]], + ['vector_5fbool4_2ehpp_2246',['vector_bool4.hpp',['../a00401.html',1,'']]], + ['vector_5fbool4_5fprecision_2ehpp_2247',['vector_bool4_precision.hpp',['../a00404.html',1,'']]], + ['vector_5fcommon_2ehpp_2248',['vector_common.hpp',['../a00407.html',1,'']]], + ['vector_5fdouble1_2ehpp_2249',['vector_double1.hpp',['../a00410.html',1,'']]], + ['vector_5fdouble1_5fprecision_2ehpp_2250',['vector_double1_precision.hpp',['../a00413.html',1,'']]], + ['vector_5fdouble2_2ehpp_2251',['vector_double2.hpp',['../a00416.html',1,'']]], + ['vector_5fdouble2_5fprecision_2ehpp_2252',['vector_double2_precision.hpp',['../a00419.html',1,'']]], + ['vector_5fdouble3_2ehpp_2253',['vector_double3.hpp',['../a00422.html',1,'']]], + ['vector_5fdouble3_5fprecision_2ehpp_2254',['vector_double3_precision.hpp',['../a00425.html',1,'']]], + ['vector_5fdouble4_2ehpp_2255',['vector_double4.hpp',['../a00428.html',1,'']]], + ['vector_5fdouble4_5fprecision_2ehpp_2256',['vector_double4_precision.hpp',['../a00431.html',1,'']]], + ['vector_5ffloat1_2ehpp_2257',['vector_float1.hpp',['../a00434.html',1,'']]], + ['vector_5ffloat1_5fprecision_2ehpp_2258',['vector_float1_precision.hpp',['../a00437.html',1,'']]], + ['vector_5ffloat2_2ehpp_2259',['vector_float2.hpp',['../a00440.html',1,'']]], + ['vector_5ffloat2_5fprecision_2ehpp_2260',['vector_float2_precision.hpp',['../a00443.html',1,'']]], + ['vector_5ffloat3_2ehpp_2261',['vector_float3.hpp',['../a00446.html',1,'']]], + ['vector_5ffloat3_5fprecision_2ehpp_2262',['vector_float3_precision.hpp',['../a00449.html',1,'']]], + ['vector_5ffloat4_2ehpp_2263',['vector_float4.hpp',['../a00452.html',1,'']]], + ['vector_5ffloat4_5fprecision_2ehpp_2264',['vector_float4_precision.hpp',['../a00455.html',1,'']]], + ['vector_5fint1_2ehpp_2265',['vector_int1.hpp',['../a00458.html',1,'']]], + ['vector_5fint1_5fsized_2ehpp_2266',['vector_int1_sized.hpp',['../a00461.html',1,'']]], + ['vector_5fint2_2ehpp_2267',['vector_int2.hpp',['../a00464.html',1,'']]], + ['vector_5fint2_5fsized_2ehpp_2268',['vector_int2_sized.hpp',['../a00467.html',1,'']]], + ['vector_5fint3_2ehpp_2269',['vector_int3.hpp',['../a00470.html',1,'']]], + ['vector_5fint3_5fsized_2ehpp_2270',['vector_int3_sized.hpp',['../a00473.html',1,'']]], + ['vector_5fint4_2ehpp_2271',['vector_int4.hpp',['../a00476.html',1,'']]], + ['vector_5fint4_5fsized_2ehpp_2272',['vector_int4_sized.hpp',['../a00479.html',1,'']]], + ['vector_5finteger_2ehpp_2273',['vector_integer.hpp',['../a00482.html',1,'']]], + ['vector_5fpacking_2ehpp_2274',['vector_packing.hpp',['../a00485.html',1,'']]], + ['vector_5fquery_2ehpp_2275',['vector_query.hpp',['../a00761.html',1,'']]], + ['vector_5freciprocal_2ehpp_2276',['vector_reciprocal.hpp',['../a00488.html',1,'']]], + ['vector_5frelational_2ehpp_2277',['vector_relational.hpp',['../a00491.html',1,'']]], + ['vector_5fuint1_2ehpp_2278',['vector_uint1.hpp',['../a00494.html',1,'']]], + ['vector_5fuint1_5fsized_2ehpp_2279',['vector_uint1_sized.hpp',['../a00497.html',1,'']]], + ['vector_5fuint2_2ehpp_2280',['vector_uint2.hpp',['../a00500.html',1,'']]], + ['vector_5fuint2_5fsized_2ehpp_2281',['vector_uint2_sized.hpp',['../a00503.html',1,'']]], + ['vector_5fuint3_2ehpp_2282',['vector_uint3.hpp',['../a00506.html',1,'']]], + ['vector_5fuint3_5fsized_2ehpp_2283',['vector_uint3_sized.hpp',['../a00509.html',1,'']]], + ['vector_5fuint4_2ehpp_2284',['vector_uint4.hpp',['../a00512.html',1,'']]], + ['vector_5fuint4_5fsized_2ehpp_2285',['vector_uint4_sized.hpp',['../a00515.html',1,'']]], + ['vector_5fulp_2ehpp_2286',['vector_ulp.hpp',['../a00518.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/all_14.html b/include/glm/doc/api/search/all_14.html new file mode 100644 index 0000000..c0e4c76 --- /dev/null +++ b/include/glm/doc/api/search/all_14.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_14.js b/include/glm/doc/api/search/all_14.js new file mode 100644 index 0000000..3ecf008 --- /dev/null +++ b/include/glm/doc/api/search/all_14.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['word_2287',['word',['../a00974.html#ga16e9fea0ef1e6c4ef472d3d1731c49a5',1,'glm']]], + ['wrap_2ehpp_2288',['wrap.hpp',['../a00764.html',1,'']]], + ['wrapangle_2289',['wrapAngle',['../a00943.html#ga069527c6dbd64f53435b8ebc4878b473',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_15.html b/include/glm/doc/api/search/all_15.html new file mode 100644 index 0000000..ff41552 --- /dev/null +++ b/include/glm/doc/api/search/all_15.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_15.js b/include/glm/doc/api/search/all_15.js new file mode 100644 index 0000000..5073695 --- /dev/null +++ b/include/glm/doc/api/search/all_15.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['yaw_2290',['yaw',['../a00917.html#ga8da38cdfdc452dafa660c2f46506bad5',1,'glm']]], + ['yawpitchroll_2291',['yawPitchRoll',['../a00937.html#gae6aa26ccb020d281b449619e419a609e',1,'glm']]], + ['ycocg2rgb_2292',['YCoCg2rgb',['../a00931.html#ga163596b804c7241810b2534a99eb1343',1,'glm']]], + ['ycocgr2rgb_2293',['YCoCgR2rgb',['../a00931.html#gaf8d30574c8576838097d8e20c295384a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_16.html b/include/glm/doc/api/search/all_16.html new file mode 100644 index 0000000..936394c --- /dev/null +++ b/include/glm/doc/api/search/all_16.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_16.js b/include/glm/doc/api/search/all_16.js new file mode 100644 index 0000000..de2db9f --- /dev/null +++ b/include/glm/doc/api/search/all_16.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['zero_2294',['zero',['../a00908.html#ga788f5a421fc0f40a1296ebc094cbaa8a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_2.html b/include/glm/doc/api/search/all_2.html new file mode 100644 index 0000000..ffa7873 --- /dev/null +++ b/include/glm/doc/api/search/all_2.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_2.js b/include/glm/doc/api/search/all_2.js new file mode 100644 index 0000000..2ba118d --- /dev/null +++ b/include/glm/doc/api/search/all_2.js @@ -0,0 +1,53 @@ +var searchData= +[ + ['catmullrom_252',['catmullRom',['../a00979.html#ga8119c04f8210fd0d292757565cd6918d',1,'glm']]], + ['ceil_253',['ceil',['../a00812.html#gafb9d2a645a23aca12d4d6de0104b7657',1,'glm']]], + ['ceilmultiple_254',['ceilMultiple',['../a00920.html#ga1d89ac88582aaf4d5dfa5feb4a376fd4',1,'glm::ceilMultiple(genType v, genType Multiple)'],['../a00920.html#gab77fdcc13f8e92d2e0b1b7d7aeab8e9d',1,'glm::ceilMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['ceilpoweroftwo_255',['ceilPowerOfTwo',['../a00920.html#ga5c3ef36ae32aa4271f1544f92bd578b6',1,'glm::ceilPowerOfTwo(genIUType v)'],['../a00920.html#gab53d4a97c0d3e297be5f693cdfdfe5d2',1,'glm::ceilPowerOfTwo(vec< L, T, Q > const &v)']]], + ['circulareasein_256',['circularEaseIn',['../a00936.html#ga34508d4b204a321ec26d6086aa047997',1,'glm']]], + ['circulareaseinout_257',['circularEaseInOut',['../a00936.html#ga0c1027637a5b02d4bb3612aa12599d69',1,'glm']]], + ['circulareaseout_258',['circularEaseOut',['../a00936.html#ga26fefde9ced9b72745fe21f1a3fe8da7',1,'glm']]], + ['circularrand_259',['circularRand',['../a00918.html#ga9dd05c36025088fae25b97c869e88517',1,'glm']]], + ['clamp_260',['clamp',['../a00812.html#ga7cd77683da6361e297c56443fc70806d',1,'glm::clamp(genType x, genType minVal, genType maxVal)'],['../a00812.html#gafba2e0674deb5953878d89483cd6323d',1,'glm::clamp(vec< L, T, Q > const &x, T minVal, T maxVal)'],['../a00812.html#gaa0f2f12e9108b09e22a3f0b2008a0b5d',1,'glm::clamp(vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)'],['../a00866.html#ga6c0cc6bd1d67ea1008d2592e998bad33',1,'glm::clamp(genType const &Texcoord)'],['../a00877.html#gab43dbf24b7d827e293106d3e8096e065',1,'glm::clamp(vec< L, T, Q > const &Texcoord)']]], + ['closebounded_261',['closeBounded',['../a00932.html#gab7d89c14c48ad01f720fb5daf8813161',1,'glm']]], + ['closest_5fpoint_2ehpp_262',['closest_point.hpp',['../a00593.html',1,'']]], + ['closestpointonline_263',['closestPointOnLine',['../a00928.html#ga36529c278ef716986151d58d151d697d',1,'glm::closestPointOnLine(vec< 3, T, Q > const &point, vec< 3, T, Q > const &a, vec< 3, T, Q > const &b)'],['../a00928.html#ga55bcbcc5fc06cb7ff7bc7a6e0e155eb0',1,'glm::closestPointOnLine(vec< 2, T, Q > const &point, vec< 2, T, Q > const &a, vec< 2, T, Q > const &b)']]], + ['colmajor2_264',['colMajor2',['../a00957.html#gaaff72f11286e59a4a88ed21a347f284c',1,'glm::colMajor2(vec< 2, T, Q > const &v1, vec< 2, T, Q > const &v2)'],['../a00957.html#gafc25fd44196c92b1397b127aec1281ab',1,'glm::colMajor2(mat< 2, 2, T, Q > const &m)']]], + ['colmajor3_265',['colMajor3',['../a00957.html#ga1e25b72b085087740c92f5c70f3b051f',1,'glm::colMajor3(vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)'],['../a00957.html#ga86bd0656e787bb7f217607572590af27',1,'glm::colMajor3(mat< 3, 3, T, Q > const &m)']]], + ['colmajor4_266',['colMajor4',['../a00957.html#gaf4aa6c7e17bfce41a6c13bf6469fab05',1,'glm::colMajor4(vec< 4, T, Q > const &v1, vec< 4, T, Q > const &v2, vec< 4, T, Q > const &v3, vec< 4, T, Q > const &v4)'],['../a00957.html#gaf3f9511c366c20ba2e4a64c9e4cec2b3',1,'glm::colMajor4(mat< 4, 4, T, Q > const &m)']]], + ['color_5fencoding_2ehpp_267',['color_encoding.hpp',['../a00596.html',1,'']]], + ['color_5fspace_5fycocg_2ehpp_268',['color_space_YCoCg.hpp',['../a00599.html',1,'']]], + ['column_269',['column',['../a00911.html#ga96022eb0d3fae39d89fc7a954e59b374',1,'glm::column(genType const &m, length_t index)'],['../a00911.html#ga9e757377523890e8b80c5843dbe4dd15',1,'glm::column(genType const &m, length_t index, typename genType::col_type const &x)']]], + ['common_2ehpp_270',['common.hpp',['../a00002.html',1,'']]], + ['compadd_271',['compAdd',['../a00934.html#gaf71833350e15e74d31cbf8a3e7f27051',1,'glm']]], + ['compatibility_2ehpp_272',['compatibility.hpp',['../a00602.html',1,'']]], + ['compmax_273',['compMax',['../a00934.html#gabfa4bb19298c8c73d4217ba759c496b6',1,'glm']]], + ['compmin_274',['compMin',['../a00934.html#gab5d0832b5c7bb01b8d7395973bfb1425',1,'glm']]], + ['compmul_275',['compMul',['../a00934.html#gae8ab88024197202c9479d33bdc5a8a5d',1,'glm']]], + ['compnormalize_276',['compNormalize',['../a00934.html#ga8f2b81ada8515875e58cb1667b6b9908',1,'glm']]], + ['component_5fwise_2ehpp_277',['component_wise.hpp',['../a00605.html',1,'']]], + ['compscale_278',['compScale',['../a00934.html#ga80abc2980d65d675f435d178c36880eb',1,'glm']]], + ['computecovariancematrix_279',['computeCovarianceMatrix',['../a00968.html#ga2d6dc3e25182cae243cdf55310059af0',1,'glm::computeCovarianceMatrix(vec< D, T, Q > const *v, size_t n)'],['../a00968.html#gabfc7aba26da1eed6726f2484584f4077',1,'glm::computeCovarianceMatrix(vec< D, T, Q > const *v, size_t n, vec< D, T, Q > const &c)'],['../a00968.html#ga2c7b5ff4e0f4132a23e58eeb0803b53a',1,'glm::computeCovarianceMatrix(I const &b, I const &e)'],['../a00968.html#ga666383aa52036f00f3b66e4e7e56da3a',1,'glm::computeCovarianceMatrix(I const &b, I const &e, vec< D, T, Q > const &c)']]], + ['conjugate_280',['conjugate',['../a00856.html#ga5b646f1cd4422eb76ab90496bcd0b60a',1,'glm']]], + ['constants_2ehpp_281',['constants.hpp',['../a00539.html',1,'']]], + ['convertd65xyztod50xyz_282',['convertD65XYZToD50XYZ',['../a00929.html#gad12f4f65022b2c80e33fcba2ced0dc48',1,'glm']]], + ['convertd65xyztolinearsrgb_283',['convertD65XYZToLinearSRGB',['../a00929.html#ga5265386fc3ac29e4c580d37ed470859c',1,'glm']]], + ['convertlinearsrgbtod50xyz_284',['convertLinearSRGBToD50XYZ',['../a00929.html#ga1522ba180e3d83d554a734056da031f9',1,'glm']]], + ['convertlinearsrgbtod65xyz_285',['convertLinearSRGBToD65XYZ',['../a00929.html#gaf9e130d9d4ccf51cc99317de7449f369',1,'glm']]], + ['convertlineartosrgb_286',['convertLinearToSRGB',['../a00907.html#ga42239e7b3da900f7ef37cec7e2476579',1,'glm::convertLinearToSRGB(vec< L, T, Q > const &ColorLinear)'],['../a00907.html#gaace0a21167d13d26116c283009af57f6',1,'glm::convertLinearToSRGB(vec< L, T, Q > const &ColorLinear, T Gamma)']]], + ['convertsrgbtolinear_287',['convertSRGBToLinear',['../a00907.html#ga16c798b7a226b2c3079dedc55083d187',1,'glm::convertSRGBToLinear(vec< L, T, Q > const &ColorSRGB)'],['../a00907.html#gad1b91f27a9726c9cb403f9fee6e2e200',1,'glm::convertSRGBToLinear(vec< L, T, Q > const &ColorSRGB, T Gamma)']]], + ['core_20features_288',['Core features',['../a00898.html',1,'']]], + ['common_20functions_289',['Common functions',['../a00812.html',1,'']]], + ['cos_290',['cos',['../a00995.html#ga6a41efc740e3b3c937447d3a6284130e',1,'glm']]], + ['cos_5fone_5fover_5ftwo_291',['cos_one_over_two',['../a00867.html#gae8d1938913da2e5b2e102b9076cd0389',1,'glm']]], + ['cosh_292',['cosh',['../a00995.html#ga4e260e372742c5f517aca196cf1e62b3',1,'glm']]], + ['cot_293',['cot',['../a00871.html#ga1f347629f919b562d9d10951e3b80968',1,'glm']]], + ['coth_294',['coth',['../a00871.html#ga35710c9529d973ad01af024f9879fdf7',1,'glm']]], + ['cross_295',['cross',['../a00862.html#ga9a47ad9ca44bc04eeaac260d42105134',1,'glm::cross(qua< T, Q > const &q1, qua< T, Q > const &q2)'],['../a00897.html#gaefe60743d7f415a33cbdddbe3bcf0258',1,'glm::cross(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)'],['../a00940.html#gac5814d419dbc957de01dc9a3f3196be5',1,'glm::cross(vec< 2, T, Q > const &v, vec< 2, T, Q > const &u)'],['../a00972.html#gacbbbf93d24828d6bd9ba48d43abc985e',1,'glm::cross(qua< T, Q > const &q, vec< 3, T, Q > const &v)'],['../a00972.html#ga7877a1ec00e43bbfccf6dd11894c0536',1,'glm::cross(vec< 3, T, Q > const &v, qua< T, Q > const &q)']]], + ['csc_296',['csc',['../a00871.html#gaa6bf27b118f660387753bfa75af13b6d',1,'glm']]], + ['csch_297',['csch',['../a00871.html#ga0247051ce3b0bac747136e69b51ab853',1,'glm']]], + ['cubic_298',['cubic',['../a00979.html#ga6b867eb52e2fc933d2e0bf26aabc9a70',1,'glm']]], + ['cubiceasein_299',['cubicEaseIn',['../a00936.html#gaff52f746102b94864d105563ba8895ae',1,'glm']]], + ['cubiceaseinout_300',['cubicEaseInOut',['../a00936.html#ga55134072b42d75452189321d4a2ad91c',1,'glm']]], + ['cubiceaseout_301',['cubicEaseOut',['../a00936.html#ga40d746385d8bcc5973f5bc6a2340ca91',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_3.html b/include/glm/doc/api/search/all_3.html new file mode 100644 index 0000000..f9df19b --- /dev/null +++ b/include/glm/doc/api/search/all_3.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_3.js b/include/glm/doc/api/search/all_3.js new file mode 100644 index 0000000..9039028 --- /dev/null +++ b/include/glm/doc/api/search/all_3.js @@ -0,0 +1,59 @@ +var searchData= +[ + ['ddualquat_302',['ddualquat',['../a00935.html#ga3d71f98d84ba59dfe4e369fde4714cd6',1,'glm']]], + ['decompose_303',['decompose',['../a00954.html#gabd7878e1b23aab583bc01040c5ed2b71',1,'glm']]], + ['degrees_304',['degrees',['../a00995.html#ga8faec9e303538065911ba8b3caf7326b',1,'glm']]], + ['derivedeuleranglex_305',['derivedEulerAngleX',['../a00937.html#ga994b8186b3b80d91cf90bc403164692f',1,'glm']]], + ['derivedeulerangley_306',['derivedEulerAngleY',['../a00937.html#ga0a4c56ecce7abcb69508ebe6313e9d10',1,'glm']]], + ['derivedeuleranglez_307',['derivedEulerAngleZ',['../a00937.html#gae8b397348201c42667be983ba3f344df',1,'glm']]], + ['determinant_308',['determinant',['../a00834.html#ga07f545826ec7726ca072e587246afdde',1,'glm']]], + ['diagonal2x2_309',['diagonal2x2',['../a00958.html#ga58a32a2beeb2478dae2a721368cdd4ac',1,'glm']]], + ['diagonal2x3_310',['diagonal2x3',['../a00958.html#gab69f900206a430e2875a5a073851e175',1,'glm']]], + ['diagonal2x4_311',['diagonal2x4',['../a00958.html#ga30b4dbfed60a919d66acc8a63bcdc549',1,'glm']]], + ['diagonal3x2_312',['diagonal3x2',['../a00958.html#ga832c805d5130d28ad76236958d15b47d',1,'glm']]], + ['diagonal3x3_313',['diagonal3x3',['../a00958.html#ga5487ff9cdbc8e04d594adef1bcb16ee0',1,'glm']]], + ['diagonal3x4_314',['diagonal3x4',['../a00958.html#gad7551139cff0c4208d27f0ad3437833e',1,'glm']]], + ['diagonal4x2_315',['diagonal4x2',['../a00958.html#gacb8969e6543ba775c6638161a37ac330',1,'glm']]], + ['diagonal4x3_316',['diagonal4x3',['../a00958.html#gae235def5049d6740f0028433f5e13f90',1,'glm']]], + ['diagonal4x4_317',['diagonal4x4',['../a00958.html#ga0b4cd8dea436791b072356231ee8578f',1,'glm']]], + ['diskrand_318',['diskRand',['../a00918.html#gaa0b18071f3f97dbf8bcf6f53c6fe5f73',1,'glm']]], + ['distance_319',['distance',['../a00897.html#gaa68de6c53e20dfb2dac2d20197562e3f',1,'glm']]], + ['distance2_320',['distance2',['../a00962.html#ga85660f1b79f66c09c7b5a6f80e68c89f',1,'glm']]], + ['dmat2_321',['dmat2',['../a00901.html#ga21dbd1f987775d7cc7607c139531c7e6',1,'glm']]], + ['dmat2x2_322',['dmat2x2',['../a00901.html#ga66b6a9af787e468a46dfe24189e87f9b',1,'glm']]], + ['dmat2x3_323',['dmat2x3',['../a00901.html#ga92cd388753d48e20de69ea2dbedf826a',1,'glm']]], + ['dmat2x4_324',['dmat2x4',['../a00901.html#gaef2198807e937072803ae0ae45e1965e',1,'glm']]], + ['dmat3_325',['dmat3',['../a00901.html#ga6f40aa56265b4b0ccad41b86802efe33',1,'glm']]], + ['dmat3x2_326',['dmat3x2',['../a00901.html#ga001e3e0638fbf8719788fc64c5b8cf39',1,'glm']]], + ['dmat3x3_327',['dmat3x3',['../a00901.html#ga970cb3306be25a5ca5db5a9456831228',1,'glm']]], + ['dmat3x4_328',['dmat3x4',['../a00901.html#ga0412a634d183587e6188e9b11869f8f4',1,'glm']]], + ['dmat4_329',['dmat4',['../a00901.html#ga0f34486bb7fec8e5a5b3830b6a6cbeca',1,'glm']]], + ['dmat4x2_330',['dmat4x2',['../a00901.html#ga9bc0b3ab8b6ba2cb6782e179ad7ad156',1,'glm']]], + ['dmat4x3_331',['dmat4x3',['../a00901.html#gacd18864049f8c83799babe7e596ca05b',1,'glm']]], + ['dmat4x4_332',['dmat4x4',['../a00901.html#gad5a6484b983b74f9d801cab8bc4e6a10',1,'glm']]], + ['dot_333',['dot',['../a00862.html#gadaab7b4495755b4102838d7834cd9544',1,'glm::dot(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00897.html#gaec50c25dd3b13834af0bf6fd2ce3931c',1,'glm::dot(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['double1_334',['double1',['../a00933.html#ga20b861a9b6e2a300323671c57a02525b',1,'glm']]], + ['double1x1_335',['double1x1',['../a00933.html#ga45f16a4dd0db1f199afaed9fd12fe9a8',1,'glm']]], + ['double2_336',['double2',['../a00933.html#ga31b729b04facccda73f07ed26958b3c2',1,'glm']]], + ['double2x2_337',['double2x2',['../a00933.html#gae57d0201096834d25f2b91b319e7cdbd',1,'glm']]], + ['double2x3_338',['double2x3',['../a00933.html#ga3655bc324008553ca61f39952d0b2d08',1,'glm']]], + ['double2x4_339',['double2x4',['../a00933.html#gacd33061fc64a7b2dcfd7322c49d9557a',1,'glm']]], + ['double3_340',['double3',['../a00933.html#ga3d8b9028a1053a44a98902cd1c389472',1,'glm']]], + ['double3x2_341',['double3x2',['../a00933.html#ga5ec08fc39c9d783dfcc488be240fe975',1,'glm']]], + ['double3x3_342',['double3x3',['../a00933.html#ga4bad5bb20c6ddaecfe4006c93841d180',1,'glm']]], + ['double3x4_343',['double3x4',['../a00933.html#ga2ef022e453d663d70aec414b2a80f756',1,'glm']]], + ['double4_344',['double4',['../a00933.html#gaf92f58af24f35617518aeb3d4f63fda6',1,'glm']]], + ['double4x2_345',['double4x2',['../a00933.html#gabca29ccceea53669618b751aae0ba83d',1,'glm']]], + ['double4x3_346',['double4x3',['../a00933.html#gafad66a02ccd360c86d6ab9ff9cfbc19c',1,'glm']]], + ['double4x4_347',['double4x4',['../a00933.html#gaab541bed2e788e4537852a2492860806',1,'glm']]], + ['dquat_348',['dquat',['../a00857.html#ga1181459aa5d640a3ea43861b118f3f0b',1,'glm']]], + ['dual_5fquat_5fidentity_349',['dual_quat_identity',['../a00935.html#ga0b35c0e30df8a875dbaa751e0bd800e0',1,'glm']]], + ['dual_5fquaternion_2ehpp_350',['dual_quaternion.hpp',['../a00608.html',1,'']]], + ['dualquat_351',['dualquat',['../a00935.html#gae93abee0c979902fbec6a7bee0f6fae1',1,'glm']]], + ['dualquat_5fcast_352',['dualquat_cast',['../a00935.html#gac4064ff813759740201765350eac4236',1,'glm::dualquat_cast(mat< 2, 4, T, Q > const &x)'],['../a00935.html#ga91025ebdca0f4ea54da08497b00e8c84',1,'glm::dualquat_cast(mat< 3, 4, T, Q > const &x)']]], + ['dvec1_353',['dvec1',['../a00878.html#ga6221af17edc2d4477a4583d2cd53e569',1,'glm']]], + ['dvec2_354',['dvec2',['../a00899.html#ga8b09c71aaac7da7867ae58377fe219a8',1,'glm']]], + ['dvec3_355',['dvec3',['../a00899.html#ga5b83ae3d0fdec519c038e4d2cf967cf0',1,'glm']]], + ['dvec4_356',['dvec4',['../a00899.html#ga57debab5d98ce618f7b2a97fe26eb3ac',1,'glm']]], + ['dword_357',['dword',['../a00974.html#ga86e46fff9f80ae33893d8d697f2ca98a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_4.html b/include/glm/doc/api/search/all_4.html new file mode 100644 index 0000000..aa2c933 --- /dev/null +++ b/include/glm/doc/api/search/all_4.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_4.js b/include/glm/doc/api/search/all_4.js new file mode 100644 index 0000000..42f4317 --- /dev/null +++ b/include/glm/doc/api/search/all_4.js @@ -0,0 +1,69 @@ +var searchData= +[ + ['exponential_20functions_358',['Exponential functions',['../a00813.html',1,'']]], + ['e_359',['e',['../a00908.html#ga4b7956eb6e2fbedfc7cf2e46e85c5139',1,'glm']]], + ['easing_2ehpp_360',['easing.hpp',['../a00611.html',1,'']]], + ['elasticeasein_361',['elasticEaseIn',['../a00936.html#ga230918eccee4e113d10ec5b8cdc58695',1,'glm']]], + ['elasticeaseinout_362',['elasticEaseInOut',['../a00936.html#ga2db4ac8959559b11b4029e54812908d6',1,'glm']]], + ['elasticeaseout_363',['elasticEaseOut',['../a00936.html#gace9c9d1bdf88bf2ab1e7cdefa54c7365',1,'glm']]], + ['epsilon_364',['epsilon',['../a00867.html#ga2a1e57fc5592b69cfae84174cbfc9429',1,'glm']]], + ['epsilon_2ehpp_365',['epsilon.hpp',['../a00542.html',1,'']]], + ['epsilonequal_366',['epsilonEqual',['../a00909.html#ga91b417866cafadd076004778217a1844',1,'glm::epsilonEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)'],['../a00909.html#gaa7f227999ca09e7ca994e8b35aba47bb',1,'glm::epsilonEqual(genType const &x, genType const &y, genType const &epsilon)']]], + ['epsilonnotequal_367',['epsilonNotEqual',['../a00909.html#gaf840d33b9a5261ec78dcd5125743b025',1,'glm::epsilonNotEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)'],['../a00909.html#ga50a92103fb0cbd796908e1bf20c79aaf',1,'glm::epsilonNotEqual(genType const &x, genType const &y, genType const &epsilon)']]], + ['equal_368',['equal',['../a00836.html#ga27e90dcb7941c9b70e295dc3f6f6369f',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)'],['../a00836.html#gaf5d687d70d11708b68c36c6db5777040',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon)'],['../a00836.html#gafa6a053e81179fa4292b35651c83c3fb',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon)'],['../a00836.html#gab3a93f19e72e9141f50527c9de21d0c0',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs)'],['../a00836.html#ga5305af376173f1902719fa309bbae671',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)'],['../a00863.html#gad7827af0549504ff1cd6a359786acc7a',1,'glm::equal(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00863.html#gaa001eecb91106463169a8e5ef1577b39',1,'glm::equal(qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)'],['../a00872.html#ga90ebafeace352ccc14055418ebd220be',1,'glm::equal(genType const &x, genType const &y, genType const &epsilon)'],['../a00872.html#ga865b9a427c42df73b8af9cd3f7f25394',1,'glm::equal(genType const &x, genType const &y, int ULPs)'],['../a00890.html#ga2ac7651a2fa7354f2da610dbd50d28e2',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon)'],['../a00890.html#ga37d261a65f69babc82cec2ae1af7145f',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon)'],['../a00890.html#ga2b46cb50911e97b32f4cd743c2c69771',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs)'],['../a00890.html#ga7da2b8605be7f245b39cb6fbf6d9d581',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)'],['../a00996.html#gab4c5cfdaa70834421397a85aa83ad946',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['euclidean_369',['euclidean',['../a00970.html#ga1821d5b3324201e60a9e2823d0b5d0c8',1,'glm']]], + ['euler_370',['euler',['../a00908.html#gad8fe2e6f90bce9d829e9723b649fbd42',1,'glm']]], + ['euler_5fangles_2ehpp_371',['euler_angles.hpp',['../a00614.html',1,'']]], + ['eulerangles_372',['eulerAngles',['../a00917.html#gaf4dd967dead22dd932fc7460ceecb03f',1,'glm']]], + ['euleranglex_373',['eulerAngleX',['../a00937.html#gafba6282e4ed3ff8b5c75331abfba3489',1,'glm']]], + ['euleranglexy_374',['eulerAngleXY',['../a00937.html#ga64036577ee17a2d24be0dbc05881d4e2',1,'glm']]], + ['euleranglexyx_375',['eulerAngleXYX',['../a00937.html#ga29bd0787a28a6648159c0d6e69706066',1,'glm']]], + ['euleranglexyz_376',['eulerAngleXYZ',['../a00937.html#ga1975e0f0e9bed7f716dc9946da2ab645',1,'glm']]], + ['euleranglexz_377',['eulerAngleXZ',['../a00937.html#gaa39bd323c65c2fc0a1508be33a237ce9',1,'glm']]], + ['euleranglexzx_378',['eulerAngleXZX',['../a00937.html#ga60171c79a17aec85d7891ae1d1533ec9',1,'glm']]], + ['euleranglexzy_379',['eulerAngleXZY',['../a00937.html#ga996dce12a60d8a674ba6737a535fa910',1,'glm']]], + ['eulerangley_380',['eulerAngleY',['../a00937.html#gab84bf4746805fd69b8ecbb230e3974c5',1,'glm']]], + ['eulerangleyx_381',['eulerAngleYX',['../a00937.html#ga4f57e6dd25c3cffbbd4daa6ef3f4486d',1,'glm']]], + ['eulerangleyxy_382',['eulerAngleYXY',['../a00937.html#ga750fba9894117f87bcc529d7349d11de',1,'glm']]], + ['eulerangleyxz_383',['eulerAngleYXZ',['../a00937.html#gab8ba99a9814f6d9edf417b6c6d5b0c10',1,'glm']]], + ['eulerangleyz_384',['eulerAngleYZ',['../a00937.html#ga220379e10ac8cca55e275f0c9018fed9',1,'glm']]], + ['eulerangleyzx_385',['eulerAngleYZX',['../a00937.html#ga08bef16357b8f9b3051b3dcaec4b7848',1,'glm']]], + ['eulerangleyzy_386',['eulerAngleYZY',['../a00937.html#ga5e5e40abc27630749b42b3327c76d6e4',1,'glm']]], + ['euleranglez_387',['eulerAngleZ',['../a00937.html#ga5b3935248bb6c3ec6b0d9297d406e251',1,'glm']]], + ['euleranglezx_388',['eulerAngleZX',['../a00937.html#ga483903115cd4059228961046a28d69b5',1,'glm']]], + ['euleranglezxy_389',['eulerAngleZXY',['../a00937.html#gab4505c54d2dd654df4569fd1f04c43aa',1,'glm']]], + ['euleranglezxz_390',['eulerAngleZXZ',['../a00937.html#ga178f966c52b01e4d65e31ebd007e3247',1,'glm']]], + ['euleranglezy_391',['eulerAngleZY',['../a00937.html#ga400b2bd5984999efab663f3a68e1d020',1,'glm']]], + ['euleranglezyx_392',['eulerAngleZYX',['../a00937.html#ga2e61f1e39069c47530acab9167852dd6',1,'glm']]], + ['euleranglezyz_393',['eulerAngleZYZ',['../a00937.html#gacd795f1dbecaf74974f9c76bbcca6830',1,'glm']]], + ['exp_394',['exp',['../a00813.html#ga071566cadc7505455e611f2a0353f4d4',1,'glm::exp(vec< L, T, Q > const &v)'],['../a00864.html#gaab2d37ef7265819f1d2939b9dc2c52ac',1,'glm::exp(qua< T, Q > const &q)']]], + ['exp2_395',['exp2',['../a00813.html#gaff17ace6b579a03bf223ed4d1ed2cd16',1,'glm']]], + ['exponential_2ehpp_396',['exponential.hpp',['../a00086.html',1,'']]], + ['exponentialeasein_397',['exponentialEaseIn',['../a00936.html#ga7f24ee9219ab4c84dc8de24be84c1e3c',1,'glm']]], + ['exponentialeaseinout_398',['exponentialEaseInOut',['../a00936.html#ga232fb6dc093c5ce94bee105ff2947501',1,'glm']]], + ['exponentialeaseout_399',['exponentialEaseOut',['../a00936.html#ga517f2bcfd15bc2c25c466ae50808efc3',1,'glm']]], + ['ext_2ehpp_400',['ext.hpp',['../a00521.html',1,'']]], + ['extend_401',['extend',['../a00938.html#ga8140caae613b0f847ab0d7175dc03a37',1,'glm']]], + ['extend_2ehpp_402',['extend.hpp',['../a00617.html',1,'']]], + ['extended_5fmin_5fmax_2ehpp_403',['extended_min_max.hpp',['../a00620.html',1,'']]], + ['exterior_5fproduct_2ehpp_404',['exterior_product.hpp',['../a00623.html',1,'']]], + ['extracteuleranglexyx_405',['extractEulerAngleXYX',['../a00937.html#gadec3152f46d46dcd32974f0a2c0a7735',1,'glm']]], + ['extracteuleranglexyz_406',['extractEulerAngleXYZ',['../a00937.html#ga866e1524edc5daaeee54cc9e11ec892e',1,'glm']]], + ['extracteuleranglexzx_407',['extractEulerAngleXZX',['../a00937.html#gaf58030785bc2cde1dcd95a04d50d64ff',1,'glm']]], + ['extracteuleranglexzy_408',['extractEulerAngleXZY',['../a00937.html#gaffe92a3c19724f523678cb67144fd569',1,'glm']]], + ['extracteulerangleyxy_409',['extractEulerAngleYXY',['../a00937.html#gae14dd2c752ed179325171f45f464c6d7',1,'glm']]], + ['extracteulerangleyxz_410',['extractEulerAngleYXZ',['../a00937.html#ga8dd77fb7274dd8916a98749b8ccb033a',1,'glm']]], + ['extracteulerangleyzx_411',['extractEulerAngleYZX',['../a00937.html#gadb39c3a164364100eff69e7db2a3269d',1,'glm']]], + ['extracteulerangleyzy_412',['extractEulerAngleYZY',['../a00937.html#gabe88a80471a85be2561430194009393a',1,'glm']]], + ['extracteuleranglezxy_413',['extractEulerAngleZXY',['../a00937.html#ga5ed7760c1140ff8ff8f8c444b8bb0612',1,'glm']]], + ['extracteuleranglezxz_414',['extractEulerAngleZXZ',['../a00937.html#ga698604d09198fa41207abc7f1a6ae6c1',1,'glm']]], + ['extracteuleranglezyx_415',['extractEulerAngleZYX',['../a00937.html#ga25c33ad5744c43d9601dc1c44a4b2696',1,'glm']]], + ['extracteuleranglezyz_416',['extractEulerAngleZYZ',['../a00937.html#ga6009526e30e85db3a40a2bb63b6c9442',1,'glm']]], + ['extractmatrixrotation_417',['extractMatrixRotation',['../a00956.html#gabbc1c7385a145f04b5c54228965df145',1,'glm']]], + ['extractrealcomponent_418',['extractRealComponent',['../a00972.html#ga321953c1b2e7befe6f5dcfddbfc6b76b',1,'glm']]], + ['experimental_20extensions_419',['Experimental extensions',['../a00905.html',1,'']]], + ['matrix_5finteger_2ehpp_420',['matrix_integer.hpp',['../a01696.html',1,'']]], + ['matrix_5ftransform_2ehpp_421',['matrix_transform.hpp',['../a01702.html',1,'']]], + ['scalar_5frelational_2ehpp_422',['scalar_relational.hpp',['../a01717.html',1,'']]], + ['vector_5frelational_2ehpp_423',['vector_relational.hpp',['../a01729.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/all_5.html b/include/glm/doc/api/search/all_5.html new file mode 100644 index 0000000..71848af --- /dev/null +++ b/include/glm/doc/api/search/all_5.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_5.js b/include/glm/doc/api/search/all_5.js new file mode 100644 index 0000000..be1859c --- /dev/null +++ b/include/glm/doc/api/search/all_5.js @@ -0,0 +1,136 @@ +var searchData= +[ + ['floating_2dpoint_20pack_20and_20unpack_20functions_424',['Floating-Point Pack and Unpack Functions',['../a00994.html',1,'']]], + ['f32_425',['f32',['../a00922.html#gabe6a542dd6c1d5ffd847f1b9b4c9c9b7',1,'glm']]], + ['f32mat1_426',['f32mat1',['../a00965.html#ga145ad477a2a3e152855511c3b52469a6',1,'glm']]], + ['f32mat1x1_427',['f32mat1x1',['../a00965.html#gac88c6a4dbfc380aa26e3adbbade36348',1,'glm']]], + ['f32mat2_428',['f32mat2',['../a00922.html#gab12383ed6ac7595ed6fde4d266c58425',1,'glm']]], + ['f32mat2x2_429',['f32mat2x2',['../a00922.html#ga04100c76f7d55a0dd0983ccf05142bff',1,'glm']]], + ['f32mat2x3_430',['f32mat2x3',['../a00922.html#gab256cdab5eb582e426d749ae77b5b566',1,'glm']]], + ['f32mat2x4_431',['f32mat2x4',['../a00922.html#gaf512b74c4400b68f9fdf9388b3d6aac8',1,'glm']]], + ['f32mat3_432',['f32mat3',['../a00922.html#ga856f3905ee7cc2e4890a8a1d56c150be',1,'glm']]], + ['f32mat3x2_433',['f32mat3x2',['../a00922.html#ga1320a08e14fdff3821241eefab6947e9',1,'glm']]], + ['f32mat3x3_434',['f32mat3x3',['../a00922.html#ga65261fa8a21045c8646ddff114a56174',1,'glm']]], + ['f32mat3x4_435',['f32mat3x4',['../a00922.html#gab90ade28222f8b861d5ceaf81a3a7f5d',1,'glm']]], + ['f32mat4_436',['f32mat4',['../a00922.html#ga99d1b85ff99956b33da7e9992aad129a',1,'glm']]], + ['f32mat4x2_437',['f32mat4x2',['../a00922.html#ga3b32ca1e57a4ef91babbc3d35a34ea20',1,'glm']]], + ['f32mat4x3_438',['f32mat4x3',['../a00922.html#ga239b96198771b7add8eea7e6b59840c0',1,'glm']]], + ['f32mat4x4_439',['f32mat4x4',['../a00922.html#gaee4da0e9fbd8cfa2f89cb80889719dc3',1,'glm']]], + ['f32quat_440',['f32quat',['../a00922.html#ga38e674196ba411d642be40c47bf33939',1,'glm']]], + ['f32vec1_441',['f32vec1',['../a00922.html#ga701f32ab5b3fb06996b41f5c0d643805',1,'glm']]], + ['f32vec2_442',['f32vec2',['../a00922.html#ga5d6c70e080409a76a257dc55bd8ea2c8',1,'glm']]], + ['f32vec3_443',['f32vec3',['../a00922.html#gaea5c4518e175162e306d2c2b5ef5ac79',1,'glm']]], + ['f32vec4_444',['f32vec4',['../a00922.html#ga31c6ca0e074a44007f49a9a3720b18c8',1,'glm']]], + ['f64_445',['f64',['../a00922.html#ga1d794d240091678f602e8de225b8d8c9',1,'glm']]], + ['f64mat1_446',['f64mat1',['../a00965.html#ga59bfa589419b5265d01314fcecd33435',1,'glm']]], + ['f64mat1x1_447',['f64mat1x1',['../a00965.html#ga448eeb08d0b7d8c43a8b292c981955fd',1,'glm']]], + ['f64mat2_448',['f64mat2',['../a00922.html#gad9771450a54785d13080cdde0fe20c1d',1,'glm']]], + ['f64mat2x2_449',['f64mat2x2',['../a00922.html#ga9ec7c4c79e303c053e30729a95fb2c37',1,'glm']]], + ['f64mat2x3_450',['f64mat2x3',['../a00922.html#gae3ab5719fc4c1e966631dbbcba8d412a',1,'glm']]], + ['f64mat2x4_451',['f64mat2x4',['../a00922.html#gac87278e0c702ba8afff76316d4eeb769',1,'glm']]], + ['f64mat3_452',['f64mat3',['../a00922.html#ga9b69181efbf8f37ae934f135137b29c0',1,'glm']]], + ['f64mat3x2_453',['f64mat3x2',['../a00922.html#ga2473d8bf3f4abf967c4d0e18175be6f7',1,'glm']]], + ['f64mat3x3_454',['f64mat3x3',['../a00922.html#ga916c1aed91cf91f7b41399ebe7c6e185',1,'glm']]], + ['f64mat3x4_455',['f64mat3x4',['../a00922.html#gaab239fa9e35b65a67cbaa6ac082f3675',1,'glm']]], + ['f64mat4_456',['f64mat4',['../a00922.html#ga0ecd3f4952536e5ef12702b44d2626fc',1,'glm']]], + ['f64mat4x2_457',['f64mat4x2',['../a00922.html#gab7daf79d6bc06a68bea1c6f5e11b5512',1,'glm']]], + ['f64mat4x3_458',['f64mat4x3',['../a00922.html#ga3e2e66ffbe341a80bc005ba2b9552110',1,'glm']]], + ['f64mat4x4_459',['f64mat4x4',['../a00922.html#gae52e2b7077a9ff928a06ab5ce600b81e',1,'glm']]], + ['f64quat_460',['f64quat',['../a00922.html#ga2b114a2f2af0fe1dfeb569c767822940',1,'glm']]], + ['f64vec1_461',['f64vec1',['../a00922.html#gade502df1ce14f837fae7f60a03ddb9b0',1,'glm']]], + ['f64vec2_462',['f64vec2',['../a00922.html#gadc4e1594f9555d919131ee02b17822a2',1,'glm']]], + ['f64vec3_463',['f64vec3',['../a00922.html#gaa7a1ddca75c5f629173bf4772db7a635',1,'glm']]], + ['f64vec4_464',['f64vec4',['../a00922.html#ga66e92e57260bdb910609b9a56bf83e97',1,'glm']]], + ['faceforward_465',['faceforward',['../a00897.html#ga7aed0a36c738169402404a3a5d54e43b',1,'glm']]], + ['factorial_466',['factorial',['../a00948.html#ga8cbd3120905f398ec321b5d1836e08fb',1,'glm']]], + ['fast_5fexponential_2ehpp_467',['fast_exponential.hpp',['../a00626.html',1,'']]], + ['fast_5fsquare_5froot_2ehpp_468',['fast_square_root.hpp',['../a00629.html',1,'']]], + ['fast_5ftrigonometry_2ehpp_469',['fast_trigonometry.hpp',['../a00632.html',1,'']]], + ['fastacos_470',['fastAcos',['../a00943.html#ga9721d63356e5d94fdc4b393a426ab26b',1,'glm']]], + ['fastasin_471',['fastAsin',['../a00943.html#ga562cb62c51fbfe7fac7db0bce706b81f',1,'glm']]], + ['fastatan_472',['fastAtan',['../a00943.html#ga8d197c6ef564f5e5d59af3b3f8adcc2c',1,'glm::fastAtan(T y, T x)'],['../a00943.html#gae25de86a968490ff56856fa425ec9d30',1,'glm::fastAtan(T angle)']]], + ['fastcos_473',['fastCos',['../a00943.html#gab34c8b45c23c0165a64dcecfcc3b302a',1,'glm']]], + ['fastdistance_474',['fastDistance',['../a00942.html#gaac333418d0c4e0cc6d3d219ed606c238',1,'glm::fastDistance(genType x, genType y)'],['../a00942.html#ga42d3e771fa7cb3c60d828e315829df19',1,'glm::fastDistance(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['fastexp_475',['fastExp',['../a00941.html#gaa3180ac8f96ab37ab96e0cacaf608e10',1,'glm::fastExp(T x)'],['../a00941.html#ga3ba6153aec6bd74628f8b00530aa8d58',1,'glm::fastExp(vec< L, T, Q > const &x)']]], + ['fastexp2_476',['fastExp2',['../a00941.html#ga0af50585955eb14c60bb286297fabab2',1,'glm::fastExp2(T x)'],['../a00941.html#gacaaed8b67d20d244b7de217e7816c1b6',1,'glm::fastExp2(vec< L, T, Q > const &x)']]], + ['fastinversesqrt_477',['fastInverseSqrt',['../a00942.html#ga7f081b14d9c7035c8714eba5f7f75a8f',1,'glm::fastInverseSqrt(genType x)'],['../a00942.html#gadcd7be12b1e5ee182141359d4c45dd24',1,'glm::fastInverseSqrt(vec< L, T, Q > const &x)']]], + ['fastlength_478',['fastLength',['../a00942.html#gafe697d6287719538346bbdf8b1367c59',1,'glm::fastLength(genType x)'],['../a00942.html#ga90f66be92ef61e705c005e7b3209edb8',1,'glm::fastLength(vec< L, T, Q > const &x)']]], + ['fastlog_479',['fastLog',['../a00941.html#gae1bdc97b7f96a600e29c753f1cd4388a',1,'glm::fastLog(T x)'],['../a00941.html#ga937256993a7219e73f186bb348fe6be8',1,'glm::fastLog(vec< L, T, Q > const &x)']]], + ['fastlog2_480',['fastLog2',['../a00941.html#ga6e98118685f6dc9e05fbb13dd5e5234e',1,'glm::fastLog2(T x)'],['../a00941.html#ga7562043539194ccc24649f8475bc5584',1,'glm::fastLog2(vec< L, T, Q > const &x)']]], + ['fastmix_481',['fastMix',['../a00972.html#ga264e10708d58dd0ff53b7902a2bd2561',1,'glm']]], + ['fastnormalize_482',['fastNormalize',['../a00942.html#gac0991240651a3f75792ff5de2e526b8c',1,'glm::fastNormalize(genType x)'],['../a00942.html#gaab477221230a6e12a3b9e22e750c8928',1,'glm::fastNormalize(vec< L, T, Q > const &x)']]], + ['fastnormalizedot_483',['fastNormalizeDot',['../a00964.html#ga2746fb9b5bd22b06b2f7c8babba5de9e',1,'glm']]], + ['fastpow_484',['fastPow',['../a00941.html#ga5340e98a11fcbbd936ba6e983a154d50',1,'glm::fastPow(genType x, genType y)'],['../a00941.html#ga15325a8ed2d1c4ed2412c4b3b3927aa2',1,'glm::fastPow(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00941.html#ga7f2562db9c3e02ae76169c36b086c3f6',1,'glm::fastPow(genTypeT x, genTypeU y)'],['../a00941.html#ga1abe488c0829da5b9de70ac64aeaa7e5',1,'glm::fastPow(vec< L, T, Q > const &x)']]], + ['fastsin_485',['fastSin',['../a00943.html#ga0aab3257bb3b628d10a1e0483e2c6915',1,'glm']]], + ['fastsqrt_486',['fastSqrt',['../a00942.html#ga6c460e9414a50b2fc455c8f64c86cdc9',1,'glm::fastSqrt(genType x)'],['../a00942.html#gae83f0c03614f73eae5478c5b6274ee6d',1,'glm::fastSqrt(vec< L, T, Q > const &x)']]], + ['fasttan_487',['fastTan',['../a00943.html#gaf29b9c1101a10007b4f79ee89df27ba2',1,'glm']]], + ['fclamp_488',['fclamp',['../a00866.html#ga1e28539d3a46965ed9ef92ec7cb3b18a',1,'glm::fclamp(genType x, genType minVal, genType maxVal)'],['../a00877.html#ga60796d08903489ee185373593bc16b9d',1,'glm::fclamp(vec< L, T, Q > const &x, T minVal, T maxVal)'],['../a00877.html#ga5c15fa4709763c269c86c0b8b3aa2297',1,'glm::fclamp(vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)']]], + ['fcompmax_489',['fcompMax',['../a00934.html#gade3e58b5fb9ef711494b73bb9e77d263',1,'glm']]], + ['fcompmin_490',['fcompMin',['../a00934.html#gafb56d801a323e921076727df524de330',1,'glm']]], + ['fdualquat_491',['fdualquat',['../a00935.html#ga237c2b9b42c9a930e49de5840ae0f930',1,'glm']]], + ['findeigenvaluessymreal_492',['findEigenvaluesSymReal',['../a00968.html#ga0586007af1073c8b0f629bca0ee7c46c',1,'glm']]], + ['findlsb_493',['findLSB',['../a00992.html#gaf74c4d969fa34ab8acb9d390f5ca5274',1,'glm::findLSB(genIUType x)'],['../a00992.html#ga4454c0331d6369888c28ab677f4810c7',1,'glm::findLSB(vec< L, T, Q > const &v)']]], + ['findmsb_494',['findMSB',['../a00992.html#ga7e4a794d766861c70bc961630f8ef621',1,'glm::findMSB(genIUType x)'],['../a00992.html#ga39ac4d52028bb6ab08db5ad6562c2872',1,'glm::findMSB(vec< L, T, Q > const &v)']]], + ['findnsb_495',['findNSB',['../a00869.html#ga2777901e41ad6e1e9d0ad6cc855d1075',1,'glm::findNSB(genIUType x, int significantBitCount)'],['../a00887.html#gaff61eca266da315002a3db92ff0dd604',1,'glm::findNSB(vec< L, T, Q > const &Source, vec< L, int, Q > SignificantBitCount)']]], + ['fliplr_496',['fliplr',['../a00955.html#gaf39f4e5f78eb29c1a90277d45b9b3feb',1,'glm']]], + ['flipud_497',['flipud',['../a00955.html#ga85003371f0ba97380dd25e8905de1870',1,'glm']]], + ['float1_498',['float1',['../a00933.html#gaf5208d01f6c6fbcb7bb55d610b9c0ead',1,'glm']]], + ['float1x1_499',['float1x1',['../a00933.html#ga73720b8dc4620835b17f74d428f98c0c',1,'glm']]], + ['float2_500',['float2',['../a00933.html#ga02d3c013982c183906c61d74aa3166ce',1,'glm']]], + ['float2x2_501',['float2x2',['../a00933.html#ga33d43ecbb60a85a1366ff83f8a0ec85f',1,'glm']]], + ['float2x3_502',['float2x3',['../a00933.html#ga939b0cff15cee3030f75c1b2e36f89fe',1,'glm']]], + ['float2x4_503',['float2x4',['../a00933.html#gafec3cfd901ab334a92e0242b8f2269b4',1,'glm']]], + ['float3_504',['float3',['../a00933.html#ga821ff110fc8533a053cbfcc93e078cc0',1,'glm']]], + ['float32_505',['float32',['../a00922.html#gaacdc525d6f7bddb3ae95d5c311bd06a1',1,'glm']]], + ['float32_5ft_506',['float32_t',['../a00922.html#gaa4947bc8b47c72fceea9bda730ecf603',1,'glm']]], + ['float3x2_507',['float3x2',['../a00933.html#gaa6c69f04ba95f3faedf95dae874de576',1,'glm']]], + ['float3x3_508',['float3x3',['../a00933.html#ga6ceb5d38a58becdf420026e12a6562f3',1,'glm']]], + ['float3x4_509',['float3x4',['../a00933.html#ga4d2679c321b793ca3784fe0315bb5332',1,'glm']]], + ['float4_510',['float4',['../a00933.html#gae2da7345087db3815a25d8837a727ef1',1,'glm']]], + ['float4x2_511',['float4x2',['../a00933.html#ga308b9af0c221145bcfe9bfc129d9098e',1,'glm']]], + ['float4x3_512',['float4x3',['../a00933.html#gac0a51b4812038aa81d73ffcc37f741ac',1,'glm']]], + ['float4x4_513',['float4x4',['../a00933.html#gad3051649b3715d828a4ab92cdae7c3bf',1,'glm']]], + ['float64_514',['float64',['../a00922.html#ga232fad1b0d6dcc7c16aabde98b2e2a80',1,'glm']]], + ['float64_5ft_515',['float64_t',['../a00922.html#ga728366fef72cd96f0a5fa6429f05469e',1,'glm']]], + ['float_5fdistance_516',['float_distance',['../a00924.html#ga2358fa840554fa36531aee28f3e14d6b',1,'glm::float_distance(float x, float y)'],['../a00924.html#ga464d5c96158df04d96a11d97b00c51a7',1,'glm::float_distance(double x, double y)'],['../a00924.html#ga15349749edb8373079f4dcd518cc3d02',1,'glm::float_distance(vec< L, float, Q > const &x, vec< L, float, Q > const &y)'],['../a00924.html#gac0726cf2e5ce7d03b0ac4c81438c07fb',1,'glm::float_distance(vec< L, double, Q > const &x, vec< L, double, Q > const &y)']]], + ['floatbitstoint_517',['floatBitsToInt',['../a00812.html#ga8a23e454d8ae48b8f6dfdaea4b756072',1,'glm::floatBitsToInt(float v)'],['../a00812.html#ga99f7d62f78ac5ea3b49bae715c9488ed',1,'glm::floatBitsToInt(vec< L, float, Q > const &v)']]], + ['floatbitstouint_518',['floatBitsToUint',['../a00812.html#ga1bbdafd513ece71856e66a8ab0ea10d1',1,'glm::floatBitsToUint(float v)'],['../a00812.html#ga49418ba4c8a60fbbb5d57b705f3e26db',1,'glm::floatBitsToUint(vec< L, float, Q > const &v)']]], + ['floatdistance_519',['floatDistance',['../a00874.html#gae609a2729cacccbabe966221d61e0dc4',1,'glm::floatDistance(float x, float y)'],['../a00874.html#ga4b76118ff56adfbc41a5925908b48606',1,'glm::floatDistance(double x, double y)'],['../a00896.html#ga03f464c6a03a725ea18e72cf1ed31417',1,'glm::floatDistance(vec< L, float, Q > const &x, vec< L, float, Q > const &y)'],['../a00896.html#gabe2040cbbe66a60cafb37f6155f78e4c',1,'glm::floatDistance(vec< L, double, Q > const &x, vec< L, double, Q > const &y)']]], + ['floor_520',['floor',['../a00812.html#gaa9d0742639e85b29c7c5de11cfd6840d',1,'glm']]], + ['floor_5flog2_521',['floor_log2',['../a00948.html#ga7011b4e1c1e1ed492149b028feacc00e',1,'glm']]], + ['floormultiple_522',['floorMultiple',['../a00920.html#ga2ffa3cd5f2ea746ee1bf57c46da6315e',1,'glm::floorMultiple(genType v, genType Multiple)'],['../a00920.html#gacdd8901448f51f0b192380e422fae3e4',1,'glm::floorMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['floorpoweroftwo_523',['floorPowerOfTwo',['../a00920.html#gafe273a57935d04c9db677bf67f9a71f4',1,'glm::floorPowerOfTwo(genIUType v)'],['../a00920.html#gaf0d591a8fca8ddb9289cdeb44b989c2d',1,'glm::floorPowerOfTwo(vec< L, T, Q > const &v)']]], + ['fma_524',['fma',['../a00812.html#gad0f444d4b81cc53c3b6edf5aa25078c2',1,'glm']]], + ['fmat2_525',['fmat2',['../a00922.html#ga4541dc2feb2a31d6ecb5a303f3dd3280',1,'glm']]], + ['fmat2x2_526',['fmat2x2',['../a00922.html#ga3350c93c3275298f940a42875388e4b4',1,'glm']]], + ['fmat2x3_527',['fmat2x3',['../a00922.html#ga55a2d2a8eb09b5633668257eb3cad453',1,'glm']]], + ['fmat2x4_528',['fmat2x4',['../a00922.html#ga681381f19f11c9e5ee45cda2c56937ff',1,'glm']]], + ['fmat3_529',['fmat3',['../a00922.html#ga253d453c20e037730023fea0215cb6f6',1,'glm']]], + ['fmat3x2_530',['fmat3x2',['../a00922.html#ga6af54d70d9beb0a7ef992a879e86b04f',1,'glm']]], + ['fmat3x3_531',['fmat3x3',['../a00922.html#gaa07c86650253672a19dbfb898f3265b8',1,'glm']]], + ['fmat3x4_532',['fmat3x4',['../a00922.html#ga44e158af77a670ee1b58c03cda9e1619',1,'glm']]], + ['fmat4_533',['fmat4',['../a00922.html#ga8cb400c0f4438f2640035d7b9824a0ca',1,'glm']]], + ['fmat4x2_534',['fmat4x2',['../a00922.html#ga8c8aa45aafcc23238edb1d5aeb801774',1,'glm']]], + ['fmat4x3_535',['fmat4x3',['../a00922.html#ga4295048a78bdf46b8a7de77ec665b497',1,'glm']]], + ['fmat4x4_536',['fmat4x4',['../a00922.html#gad01cc6479bde1fd1870f13d3ed9530b3',1,'glm']]], + ['fmax_537',['fmax',['../a00866.html#ga9181453c527b05bddd32b1b09b8c80e6',1,'glm::fmax(T a, T b)'],['../a00866.html#ga65c5b6a8d1f1607fbcbf3a8ef2f93e3c',1,'glm::fmax(T a, T b, T C)'],['../a00866.html#gaed34015c7033417014cc9198a763c3e7',1,'glm::fmax(T a, T b, T C, T D)'],['../a00877.html#gad66b6441f7200db16c9f341711733c56',1,'glm::fmax(vec< L, T, Q > const &a, T b)'],['../a00877.html#ga8df4be3f48d6717c40ea788fd30deebf',1,'glm::fmax(vec< L, T, Q > const &a, vec< L, T, Q > const &b)'],['../a00877.html#ga0f04ba924294dae4234ca93ede23229a',1,'glm::fmax(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)'],['../a00877.html#ga4ed3eb250ccbe17bfe8ded8a6b72d230',1,'glm::fmax(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)']]], + ['fmin_538',['fmin',['../a00866.html#ga2ca01149554244bc668afb3f2f95a1a1',1,'glm::fmin(T a, T b)'],['../a00866.html#ga2caf4c39dd5ebc2bbc577b03bebe4aa0',1,'glm::fmin(T a, T b, T c)'],['../a00866.html#ga2bbac70c680668b0b1019dcf8e6c03b6',1,'glm::fmin(T a, T b, T c, T d)'],['../a00877.html#gae989203363cff9eab5093630df4fe071',1,'glm::fmin(vec< L, T, Q > const &x, T y)'],['../a00877.html#ga7c42e93cd778c9181d1cdeea4d3e43bd',1,'glm::fmin(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00877.html#ga7e62739055b49189d9355471f78fe000',1,'glm::fmin(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)'],['../a00877.html#ga4a543dd7d22ad1f3b8b839f808a9d93c',1,'glm::fmin(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)']]], + ['fmod_539',['fmod',['../a00932.html#gae5e80425df9833164ad469e83b475fb4',1,'glm']]], + ['four_5fover_5fpi_540',['four_over_pi',['../a00908.html#ga753950e5140e4ea6a88e4a18ba61dc09',1,'glm']]], + ['fract_541',['fract',['../a00812.html#ga8ba89e40e55ae5cdf228548f9b7639c7',1,'glm::fract(genType x)'],['../a00812.html#ga2df623004f634b440d61e018d62c751b',1,'glm::fract(vec< L, T, Q > const &x)']]], + ['frexp_542',['frexp',['../a00812.html#gaddf5ef73283c171730e0bcc11833fa81',1,'glm']]], + ['frustum_543',['frustum',['../a00814.html#ga0bcd4542e0affc63a0b8c08fcb839ea9',1,'glm']]], + ['frustumlh_544',['frustumLH',['../a00814.html#gae4277c37f61d81da01bc9db14ea90296',1,'glm']]], + ['frustumlh_5fno_545',['frustumLH_NO',['../a00814.html#ga259520cad03b3f8bca9417920035ed01',1,'glm']]], + ['frustumlh_5fzo_546',['frustumLH_ZO',['../a00814.html#ga94218b094862d17798370242680b9030',1,'glm']]], + ['frustumno_547',['frustumNO',['../a00814.html#gae34ec664ad44860bf4b5ba631f0e0e90',1,'glm']]], + ['frustumrh_548',['frustumRH',['../a00814.html#ga4366ab45880c6c5f8b3e8c371ca4b136',1,'glm']]], + ['frustumrh_5fno_549',['frustumRH_NO',['../a00814.html#ga9236c8439f21be186b79c97b588836b9',1,'glm']]], + ['frustumrh_5fzo_550',['frustumRH_ZO',['../a00814.html#ga7654a9227f14d5382786b9fc0eb5692d',1,'glm']]], + ['frustumzo_551',['frustumZO',['../a00814.html#gaa73322e152edf50cf30a6edac342a757',1,'glm']]], + ['functions_2ehpp_552',['functions.hpp',['../a00635.html',1,'']]], + ['fvec1_553',['fvec1',['../a00922.html#ga98b9ed43cf8c5cf1d354b23c7df9119f',1,'glm']]], + ['fvec2_554',['fvec2',['../a00922.html#ga24273aa02abaecaab7f160bac437a339',1,'glm']]], + ['fvec3_555',['fvec3',['../a00922.html#ga89930533646b30d021759298aa6bf04a',1,'glm']]], + ['fvec4_556',['fvec4',['../a00922.html#ga713c796c54875cf4092d42ff9d9096b0',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_6.html b/include/glm/doc/api/search/all_6.html new file mode 100644 index 0000000..a24601b --- /dev/null +++ b/include/glm/doc/api/search/all_6.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_6.js b/include/glm/doc/api/search/all_6.js new file mode 100644 index 0000000..35a1433 --- /dev/null +++ b/include/glm/doc/api/search/all_6.js @@ -0,0 +1,190 @@ +var searchData= +[ + ['color_5fspace_2ehpp_557',['color_space.hpp',['../a01681.html',1,'(Global Namespace)'],['../a01684.html',1,'(Global Namespace)']]], + ['common_2ehpp_558',['common.hpp',['../a01687.html',1,'']]], + ['geometric_20functions_559',['Geometric functions',['../a00897.html',1,'']]], + ['glm_5fext_5fmatrix_5fclip_5fspace_560',['GLM_EXT_matrix_clip_space',['../a00814.html',1,'']]], + ['glm_5fext_5fmatrix_5fcommon_561',['GLM_EXT_matrix_common',['../a00815.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x2_562',['GLM_EXT_matrix_int2x2',['../a00816.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x2_5fsized_563',['GLM_EXT_matrix_int2x2_sized',['../a00817.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x3_564',['GLM_EXT_matrix_int2x3',['../a00818.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x3_5fsized_565',['GLM_EXT_matrix_int2x3_sized',['../a00819.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x4_566',['GLM_EXT_matrix_int2x4',['../a00820.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x4_5fsized_567',['GLM_EXT_matrix_int2x4_sized',['../a00821.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x2_568',['GLM_EXT_matrix_int3x2',['../a00822.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x2_5fsized_569',['GLM_EXT_matrix_int3x2_sized',['../a00823.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x3_570',['GLM_EXT_matrix_int3x3',['../a00824.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x3_5fsized_571',['GLM_EXT_matrix_int3x3_sized',['../a00825.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x4_572',['GLM_EXT_matrix_int3x4',['../a00826.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x4_5fsized_573',['GLM_EXT_matrix_int3x4_sized',['../a00827.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x2_574',['GLM_EXT_matrix_int4x2',['../a00828.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x2_5fsized_575',['GLM_EXT_matrix_int4x2_sized',['../a00829.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x3_576',['GLM_EXT_matrix_int4x3',['../a00830.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x3_5fsized_577',['GLM_EXT_matrix_int4x3_sized',['../a00831.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x4_578',['GLM_EXT_matrix_int4x4',['../a00832.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x4_5fsized_579',['GLM_EXT_matrix_int4x4_sized',['../a00833.html',1,'']]], + ['glm_5fext_5fmatrix_5finteger_580',['GLM_EXT_matrix_integer',['../a00834.html',1,'']]], + ['glm_5fext_5fmatrix_5fprojection_581',['GLM_EXT_matrix_projection',['../a00835.html',1,'']]], + ['glm_5fext_5fmatrix_5frelational_582',['GLM_EXT_matrix_relational',['../a00836.html',1,'']]], + ['glm_5fext_5fmatrix_5ftransform_583',['GLM_EXT_matrix_transform',['../a00837.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x2_584',['GLM_EXT_matrix_uint2x2',['../a00838.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x2_5fsized_585',['GLM_EXT_matrix_uint2x2_sized',['../a00839.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x3_586',['GLM_EXT_matrix_uint2x3',['../a00840.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x3_5fsized_587',['GLM_EXT_matrix_uint2x3_sized',['../a00841.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x4_588',['GLM_EXT_matrix_int2x4',['../a00842.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x4_5fsized_589',['GLM_EXT_matrix_uint2x4_sized',['../a00843.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x2_590',['GLM_EXT_matrix_uint3x2',['../a00844.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x2_5fsized_591',['GLM_EXT_matrix_uint3x2_sized',['../a00845.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x3_592',['GLM_EXT_matrix_uint3x3',['../a00846.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x3_5fsized_593',['GLM_EXT_matrix_uint3x3_sized',['../a00847.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x4_594',['GLM_EXT_matrix_uint3x4',['../a00848.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x4_5fsized_595',['GLM_EXT_matrix_uint3x4_sized',['../a00849.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x2_596',['GLM_EXT_matrix_uint4x2',['../a00850.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x2_5fsized_597',['GLM_EXT_matrix_uint4x2_sized',['../a00851.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x3_598',['GLM_EXT_matrix_uint4x3',['../a00852.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x3_5fsized_599',['GLM_EXT_matrix_uint4x3_sized',['../a00853.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x4_600',['GLM_EXT_matrix_uint4x4',['../a00854.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x4_5fsized_601',['GLM_EXT_matrix_uint4x4_sized',['../a00855.html',1,'']]], + ['glm_5fext_5fquaternion_5fcommon_602',['GLM_EXT_quaternion_common',['../a00856.html',1,'']]], + ['glm_5fext_5fquaternion_5fdouble_603',['GLM_EXT_quaternion_double',['../a00857.html',1,'']]], + ['glm_5fext_5fquaternion_5fdouble_5fprecision_604',['GLM_EXT_quaternion_double_precision',['../a00858.html',1,'']]], + ['glm_5fext_5fquaternion_5fexponential_605',['GLM_EXT_quaternion_exponential',['../a00859.html',1,'']]], + ['glm_5fext_5fquaternion_5ffloat_606',['GLM_EXT_quaternion_float',['../a00860.html',1,'']]], + ['glm_5fext_5fquaternion_5ffloat_5fprecision_607',['GLM_EXT_quaternion_float_precision',['../a00861.html',1,'']]], + ['glm_5fext_5fquaternion_5fgeometric_608',['GLM_EXT_quaternion_geometric',['../a00862.html',1,'']]], + ['glm_5fext_5fquaternion_5frelational_609',['GLM_EXT_quaternion_relational',['../a00863.html',1,'']]], + ['glm_5fext_5fquaternion_5ftransform_610',['GLM_EXT_quaternion_transform',['../a00864.html',1,'']]], + ['glm_5fext_5fquaternion_5ftrigonometric_611',['GLM_EXT_quaternion_trigonometric',['../a00865.html',1,'']]], + ['glm_5fext_5fscalar_5fcommon_612',['GLM_EXT_scalar_common',['../a00866.html',1,'']]], + ['glm_5fext_5fscalar_5fconstants_613',['GLM_EXT_scalar_constants',['../a00867.html',1,'']]], + ['glm_5fext_5fscalar_5fint_5fsized_614',['GLM_EXT_scalar_int_sized',['../a00868.html',1,'']]], + ['glm_5fext_5fscalar_5finteger_615',['GLM_EXT_scalar_integer',['../a00869.html',1,'']]], + ['glm_5fext_5fscalar_5fpacking_616',['GLM_EXT_scalar_packing',['../a00870.html',1,'']]], + ['glm_5fext_5fscalar_5freciprocal_617',['GLM_EXT_scalar_reciprocal',['../a00871.html',1,'']]], + ['glm_5fext_5fscalar_5frelational_618',['GLM_EXT_scalar_relational',['../a00872.html',1,'']]], + ['glm_5fext_5fscalar_5fuint_5fsized_619',['GLM_EXT_scalar_uint_sized',['../a00873.html',1,'']]], + ['glm_5fext_5fscalar_5fulp_620',['GLM_EXT_scalar_ulp',['../a00874.html',1,'']]], + ['glm_5fext_5fvector_5fbool1_621',['GLM_EXT_vector_bool1',['../a00875.html',1,'']]], + ['glm_5fext_5fvector_5fbool1_5fprecision_622',['GLM_EXT_vector_bool1_precision',['../a00876.html',1,'']]], + ['glm_5fext_5fvector_5fcommon_623',['GLM_EXT_vector_common',['../a00877.html',1,'']]], + ['glm_5fext_5fvector_5fdouble1_624',['GLM_EXT_vector_double1',['../a00878.html',1,'']]], + ['glm_5fext_5fvector_5fdouble1_5fprecision_625',['GLM_EXT_vector_double1_precision',['../a00879.html',1,'']]], + ['glm_5fext_5fvector_5ffloat1_626',['GLM_EXT_vector_float1',['../a00880.html',1,'']]], + ['glm_5fext_5fvector_5ffloat1_5fprecision_627',['GLM_EXT_vector_float1_precision',['../a00881.html',1,'']]], + ['glm_5fext_5fvector_5fint1_628',['GLM_EXT_vector_int1',['../a00882.html',1,'']]], + ['glm_5fext_5fvector_5fint1_5fsized_629',['GLM_EXT_vector_int1_sized',['../a00883.html',1,'']]], + ['glm_5fext_5fvector_5fint2_5fsized_630',['GLM_EXT_vector_int2_sized',['../a00884.html',1,'']]], + ['glm_5fext_5fvector_5fint3_5fsized_631',['GLM_EXT_vector_int3_sized',['../a00885.html',1,'']]], + ['glm_5fext_5fvector_5fint4_5fsized_632',['GLM_EXT_vector_int4_sized',['../a00886.html',1,'']]], + ['glm_5fext_5fvector_5finteger_633',['GLM_EXT_vector_integer',['../a00887.html',1,'']]], + ['glm_5fext_5fvector_5fpacking_634',['GLM_EXT_vector_packing',['../a00888.html',1,'']]], + ['glm_5fext_5fvector_5freciprocal_635',['GLM_EXT_vector_reciprocal',['../a00889.html',1,'']]], + ['glm_5fext_5fvector_5frelational_636',['GLM_EXT_vector_relational',['../a00890.html',1,'']]], + ['glm_5fext_5fvector_5fuint1_637',['GLM_EXT_vector_uint1',['../a00891.html',1,'']]], + ['glm_5fext_5fvector_5fuint1_5fsized_638',['GLM_EXT_vector_uint1_sized',['../a00892.html',1,'']]], + ['glm_5fext_5fvector_5fuint2_5fsized_639',['GLM_EXT_vector_uint2_sized',['../a00893.html',1,'']]], + ['glm_5fext_5fvector_5fuint3_5fsized_640',['GLM_EXT_vector_uint3_sized',['../a00894.html',1,'']]], + ['glm_5fext_5fvector_5fuint4_5fsized_641',['GLM_EXT_vector_uint4_sized',['../a00895.html',1,'']]], + ['glm_5fext_5fvector_5fulp_642',['GLM_EXT_vector_ulp',['../a00896.html',1,'']]], + ['gauss_643',['gauss',['../a00944.html#ga0b50b197ff74261a0fad90f4b8d24702',1,'glm::gauss(T x, T ExpectedValue, T StandardDeviation)'],['../a00944.html#gad19ec8754a83c0b9a8dc16b7e60705ab',1,'glm::gauss(vec< 2, T, Q > const &Coord, vec< 2, T, Q > const &ExpectedValue, vec< 2, T, Q > const &StandardDeviation)']]], + ['gaussrand_644',['gaussRand',['../a00918.html#ga5193a83e49e4fdc5652c084711083574',1,'glm']]], + ['geometric_2ehpp_645',['geometric.hpp',['../a00527.html',1,'']]], + ['glm_5faligned_5ftypedef_646',['GLM_ALIGNED_TYPEDEF',['../a00986.html#gab5cd5c5fad228b25c782084f1cc30114',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int8, aligned_lowp_int8, 1)'],['../a00986.html#ga5bb5dd895ef625c1b113f2cf400186b0',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int16, aligned_lowp_int16, 2)'],['../a00986.html#gac6efa54cf7c6c86f7158922abdb1a430',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int32, aligned_lowp_int32, 4)'],['../a00986.html#ga6612eb77c8607048e7552279a11eeb5f',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int64, aligned_lowp_int64, 8)'],['../a00986.html#ga7ddc1848ff2223026db8968ce0c97497',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int8_t, aligned_lowp_int8_t, 1)'],['../a00986.html#ga22240dd9458b0f8c11fbcc4f48714f68',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int16_t, aligned_lowp_int16_t, 2)'],['../a00986.html#ga8130ea381d76a2cc34a93ccbb6cf487d',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int32_t, aligned_lowp_int32_t, 4)'],['../a00986.html#ga7ccb60f3215d293fd62b33b31ed0e7be',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int64_t, aligned_lowp_int64_t, 8)'],['../a00986.html#gac20d508d2ef5cc95ad3daf083c57ec2a',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_i8, aligned_lowp_i8, 1)'],['../a00986.html#ga50257b48069a31d0c8d9c1f644d267de',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_i16, aligned_lowp_i16, 2)'],['../a00986.html#gaa07e98e67b7a3435c0746018c7a2a839',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_i32, aligned_lowp_i32, 4)'],['../a00986.html#ga62601fc6f8ca298b77285bedf03faffd',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_i64, aligned_lowp_i64, 8)'],['../a00986.html#gac8cff825951aeb54dd846037113c72db',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int8, aligned_mediump_int8, 1)'],['../a00986.html#ga78f443d88f438575a62b5df497cdf66b',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int16, aligned_mediump_int16, 2)'],['../a00986.html#ga0680cd3b5d4e8006985fb41a4f9b57af',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int32, aligned_mediump_int32, 4)'],['../a00986.html#gad9e5babb1dd3e3531b42c37bf25dd951',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int64, aligned_mediump_int64, 8)'],['../a00986.html#ga353fd9fa8a9ad952fcabd0d53ad9a6dd',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int8_t, aligned_mediump_int8_t, 1)'],['../a00986.html#ga2196442c0e5c5e8c77842de388c42521',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int16_t, aligned_mediump_int16_t, 2)'],['../a00986.html#ga1284488189daf897cf095c5eefad9744',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int32_t, aligned_mediump_int32_t, 4)'],['../a00986.html#ga73fdc86a539808af58808b7c60a1c4d8',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int64_t, aligned_mediump_int64_t, 8)'],['../a00986.html#gafafeea923e1983262c972e2b83922d3b',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_i8, aligned_mediump_i8, 1)'],['../a00986.html#ga4b35ca5fe8f55c9d2fe54fdb8d8896f4',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_i16, aligned_mediump_i16, 2)'],['../a00986.html#ga63b882e29170d428463d99c3d630acc6',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_i32, aligned_mediump_i32, 4)'],['../a00986.html#ga8b20507bb048c1edea2d441cc953e6f0',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_i64, aligned_mediump_i64, 8)'],['../a00986.html#ga56c5ca60813027b603c7b61425a0479d',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int8, aligned_highp_int8, 1)'],['../a00986.html#ga7a751b3aff24c0259f4a7357c2969089',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int16, aligned_highp_int16, 2)'],['../a00986.html#ga70cd2144351c556469ee6119e59971fc',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int32, aligned_highp_int32, 4)'],['../a00986.html#ga46bbf08dc004d8c433041e0b5018a5d3',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int64, aligned_highp_int64, 8)'],['../a00986.html#gab3e10c77a20d1abad2de1c561c7a5c18',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int8_t, aligned_highp_int8_t, 1)'],['../a00986.html#ga968f30319ebeaca9ebcd3a25a8e139fb',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int16_t, aligned_highp_int16_t, 2)'],['../a00986.html#gaae773c28e6390c6aa76f5b678b7098a3',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int32_t, aligned_highp_int32_t, 4)'],['../a00986.html#ga790cfff1ca39d0ed696ffed980809311',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int64_t, aligned_highp_int64_t, 8)'],['../a00986.html#ga8265b91eb23c120a9b0c3e381bc37b96',1,'glm::GLM_ALIGNED_TYPEDEF(highp_i8, aligned_highp_i8, 1)'],['../a00986.html#gae6d384de17588d8edb894fbe06e0d410',1,'glm::GLM_ALIGNED_TYPEDEF(highp_i16, aligned_highp_i16, 2)'],['../a00986.html#ga9c8172b745ee03fc5b2b91c350c2922f',1,'glm::GLM_ALIGNED_TYPEDEF(highp_i32, aligned_highp_i32, 4)'],['../a00986.html#ga77e0dff12aa4020ddc3f8cabbea7b2e6',1,'glm::GLM_ALIGNED_TYPEDEF(highp_i64, aligned_highp_i64, 8)'],['../a00986.html#gabd82b9faa9d4d618dbbe0fc8a1efee63',1,'glm::GLM_ALIGNED_TYPEDEF(int8, aligned_int8, 1)'],['../a00986.html#ga285649744560be21000cfd81bbb5d507',1,'glm::GLM_ALIGNED_TYPEDEF(int16, aligned_int16, 2)'],['../a00986.html#ga07732da630b2deda428ce95c0ecaf3ff',1,'glm::GLM_ALIGNED_TYPEDEF(int32, aligned_int32, 4)'],['../a00986.html#ga1a8da2a8c51f69c07a2e7f473aa420f4',1,'glm::GLM_ALIGNED_TYPEDEF(int64, aligned_int64, 8)'],['../a00986.html#ga848aedf13e2d9738acf0bb482c590174',1,'glm::GLM_ALIGNED_TYPEDEF(int8_t, aligned_int8_t, 1)'],['../a00986.html#gafd2803d39049dd45a37a63931e25d943',1,'glm::GLM_ALIGNED_TYPEDEF(int16_t, aligned_int16_t, 2)'],['../a00986.html#gae553b33349d6da832cf0724f1e024094',1,'glm::GLM_ALIGNED_TYPEDEF(int32_t, aligned_int32_t, 4)'],['../a00986.html#ga16d223a2b3409e812e1d3bd87f0e9e5c',1,'glm::GLM_ALIGNED_TYPEDEF(int64_t, aligned_int64_t, 8)'],['../a00986.html#ga2de065d2ddfdb366bcd0febca79ae2ad',1,'glm::GLM_ALIGNED_TYPEDEF(i8, aligned_i8, 1)'],['../a00986.html#gabd786bdc20a11c8cb05c92c8212e28d3',1,'glm::GLM_ALIGNED_TYPEDEF(i16, aligned_i16, 2)'],['../a00986.html#gad4aefe56691cdb640c72f0d46d3fb532',1,'glm::GLM_ALIGNED_TYPEDEF(i32, aligned_i32, 4)'],['../a00986.html#ga8fe9745f7de24a8394518152ff9fccdc',1,'glm::GLM_ALIGNED_TYPEDEF(i64, aligned_i64, 8)'],['../a00986.html#gaaad735483450099f7f882d4e3a3569bd',1,'glm::GLM_ALIGNED_TYPEDEF(ivec1, aligned_ivec1, 4)'],['../a00986.html#gac7b6f823802edbd6edbaf70ea25bf068',1,'glm::GLM_ALIGNED_TYPEDEF(ivec2, aligned_ivec2, 8)'],['../a00986.html#ga3e235bcd2b8029613f25b8d40a2d3ef7',1,'glm::GLM_ALIGNED_TYPEDEF(ivec3, aligned_ivec3, 16)'],['../a00986.html#ga50d8a9523968c77f8325b4c9bfbff41e',1,'glm::GLM_ALIGNED_TYPEDEF(ivec4, aligned_ivec4, 16)'],['../a00986.html#ga9ec20fdfb729c702032da9378c79679f',1,'glm::GLM_ALIGNED_TYPEDEF(i8vec1, aligned_i8vec1, 1)'],['../a00986.html#ga25b3fe1d9e8d0a5e86c1949c1acd8131',1,'glm::GLM_ALIGNED_TYPEDEF(i8vec2, aligned_i8vec2, 2)'],['../a00986.html#ga2958f907719d94d8109b562540c910e2',1,'glm::GLM_ALIGNED_TYPEDEF(i8vec3, aligned_i8vec3, 4)'],['../a00986.html#ga1fe6fc032a978f1c845fac9aa0668714',1,'glm::GLM_ALIGNED_TYPEDEF(i8vec4, aligned_i8vec4, 4)'],['../a00986.html#gaa4161e7a496dc96972254143fe873e55',1,'glm::GLM_ALIGNED_TYPEDEF(i16vec1, aligned_i16vec1, 2)'],['../a00986.html#ga9d7cb211ccda69b1c22ddeeb0f3e7aba',1,'glm::GLM_ALIGNED_TYPEDEF(i16vec2, aligned_i16vec2, 4)'],['../a00986.html#gaaee91dd2ab34423bcc11072ef6bd0f02',1,'glm::GLM_ALIGNED_TYPEDEF(i16vec3, aligned_i16vec3, 8)'],['../a00986.html#ga49f047ccaa8b31fad9f26c67bf9b3510',1,'glm::GLM_ALIGNED_TYPEDEF(i16vec4, aligned_i16vec4, 8)'],['../a00986.html#ga904e9c2436bb099397c0823506a0771f',1,'glm::GLM_ALIGNED_TYPEDEF(i32vec1, aligned_i32vec1, 4)'],['../a00986.html#gaf90651cf2f5e7ee2b11cfdc5a6749534',1,'glm::GLM_ALIGNED_TYPEDEF(i32vec2, aligned_i32vec2, 8)'],['../a00986.html#ga7354a4ead8cb17868aec36b9c30d6010',1,'glm::GLM_ALIGNED_TYPEDEF(i32vec3, aligned_i32vec3, 16)'],['../a00986.html#gad2ecbdea18732163e2636e27b37981ee',1,'glm::GLM_ALIGNED_TYPEDEF(i32vec4, aligned_i32vec4, 16)'],['../a00986.html#ga965b1c9aa1800e93d4abc2eb2b5afcbf',1,'glm::GLM_ALIGNED_TYPEDEF(i64vec1, aligned_i64vec1, 8)'],['../a00986.html#ga1f9e9c2ea2768675dff9bae5cde2d829',1,'glm::GLM_ALIGNED_TYPEDEF(i64vec2, aligned_i64vec2, 16)'],['../a00986.html#gad77c317b7d942322cd5be4c8127b3187',1,'glm::GLM_ALIGNED_TYPEDEF(i64vec3, aligned_i64vec3, 32)'],['../a00986.html#ga716f8ea809bdb11b5b542d8b71aeb04f',1,'glm::GLM_ALIGNED_TYPEDEF(i64vec4, aligned_i64vec4, 32)'],['../a00986.html#gad46f8e9082d5878b1bc04f9c1471cdaa',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint8, aligned_lowp_uint8, 1)'],['../a00986.html#ga1246094581af624aca6c7499aaabf801',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint16, aligned_lowp_uint16, 2)'],['../a00986.html#ga7a5009a1d0196bbf21dd7518f61f0249',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint32, aligned_lowp_uint32, 4)'],['../a00986.html#ga45213fd18b3bb1df391671afefe4d1e7',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint64, aligned_lowp_uint64, 8)'],['../a00986.html#ga0ba26b4e3fd9ecbc25358efd68d8a4ca',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint8_t, aligned_lowp_uint8_t, 1)'],['../a00986.html#gaf2b58f5fb6d4ec8ce7b76221d3af43e1',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint16_t, aligned_lowp_uint16_t, 2)'],['../a00986.html#gadc246401847dcba155f0699425e49dcd',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint32_t, aligned_lowp_uint32_t, 4)'],['../a00986.html#gaace64bddf51a9def01498da9a94fb01c',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint64_t, aligned_lowp_uint64_t, 8)'],['../a00986.html#gad7bb97c29d664bd86ffb1bed4abc5534',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_u8, aligned_lowp_u8, 1)'],['../a00986.html#ga404bba7785130e0b1384d695a9450b28',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_u16, aligned_lowp_u16, 2)'],['../a00986.html#ga31ba41fd896257536958ec6080203d2a',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_u32, aligned_lowp_u32, 4)'],['../a00986.html#gacca5f13627f57b3505676e40a6e43e5e',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_u64, aligned_lowp_u64, 8)'],['../a00986.html#ga5faf1d3e70bf33174dd7f3d01d5b883b',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint8, aligned_mediump_uint8, 1)'],['../a00986.html#ga727e2bf2c433bb3b0182605860a48363',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint16, aligned_mediump_uint16, 2)'],['../a00986.html#ga12566ca66d5962dadb4a5eb4c74e891e',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint32, aligned_mediump_uint32, 4)'],['../a00986.html#ga7b66a97a8acaa35c5a377b947318c6bc',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint64, aligned_mediump_uint64, 8)'],['../a00986.html#gaa9cde002439b74fa66120a16a9f55fcc',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint8_t, aligned_mediump_uint8_t, 1)'],['../a00986.html#ga1ca98c67f7d1e975f7c5202f1da1df1f',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint16_t, aligned_mediump_uint16_t, 2)'],['../a00986.html#ga1dc8bc6199d785f235576948d80a597c',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint32_t, aligned_mediump_uint32_t, 4)'],['../a00986.html#gad14a0f2ec93519682b73d70b8e401d81',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint64_t, aligned_mediump_uint64_t, 8)'],['../a00986.html#gada8b996eb6526dc1ead813bd49539d1b',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_u8, aligned_mediump_u8, 1)'],['../a00986.html#ga28948f6bfb52b42deb9d73ae1ea8d8b0',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_u16, aligned_mediump_u16, 2)'],['../a00986.html#gad6a7c0b5630f89d3f1c5b4ef2919bb4c',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_u32, aligned_mediump_u32, 4)'],['../a00986.html#gaa0fc531cbaa972ac3a0b86d21ef4a7fa',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_u64, aligned_mediump_u64, 8)'],['../a00986.html#ga0ee829f7b754b262bbfe6317c0d678ac',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint8, aligned_highp_uint8, 1)'],['../a00986.html#ga447848a817a626cae08cedc9778b331c',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint16, aligned_highp_uint16, 2)'],['../a00986.html#ga6027ae13b2734f542a6e7beee11b8820',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint32, aligned_highp_uint32, 4)'],['../a00986.html#ga2aca46c8608c95ef991ee4c332acde5f',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint64, aligned_highp_uint64, 8)'],['../a00986.html#gaff50b10dd1c48be324fdaffd18e2c7ea',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint8_t, aligned_highp_uint8_t, 1)'],['../a00986.html#ga9fc4421dbb833d5461e6d4e59dcfde55',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint16_t, aligned_highp_uint16_t, 2)'],['../a00986.html#ga329f1e2b94b33ba5e3918197030bcf03',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint32_t, aligned_highp_uint32_t, 4)'],['../a00986.html#ga71e646f7e301aa422328194162c9c998',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint64_t, aligned_highp_uint64_t, 8)'],['../a00986.html#ga8942e09f479489441a7a5004c6d8cb66',1,'glm::GLM_ALIGNED_TYPEDEF(highp_u8, aligned_highp_u8, 1)'],['../a00986.html#gaab32497d6e4db16ee439dbedd64c5865',1,'glm::GLM_ALIGNED_TYPEDEF(highp_u16, aligned_highp_u16, 2)'],['../a00986.html#gaaadbb34952eca8e3d7fe122c3e167742',1,'glm::GLM_ALIGNED_TYPEDEF(highp_u32, aligned_highp_u32, 4)'],['../a00986.html#ga92024d27c74a3650afb55ec8e024ed25',1,'glm::GLM_ALIGNED_TYPEDEF(highp_u64, aligned_highp_u64, 8)'],['../a00986.html#gabde1d0b4072df35453db76075ab896a6',1,'glm::GLM_ALIGNED_TYPEDEF(uint8, aligned_uint8, 1)'],['../a00986.html#ga06c296c9e398b294c8c9dd2a7693dcbb',1,'glm::GLM_ALIGNED_TYPEDEF(uint16, aligned_uint16, 2)'],['../a00986.html#gacf1744488c96ebd33c9f36ad33b2010a',1,'glm::GLM_ALIGNED_TYPEDEF(uint32, aligned_uint32, 4)'],['../a00986.html#ga3328061a64c20ba59d5f9da24c2cd059',1,'glm::GLM_ALIGNED_TYPEDEF(uint64, aligned_uint64, 8)'],['../a00986.html#gaf6ced36f13bae57f377bafa6f5fcc299',1,'glm::GLM_ALIGNED_TYPEDEF(uint8_t, aligned_uint8_t, 1)'],['../a00986.html#gafbc7fb7847bfc78a339d1d371c915c73',1,'glm::GLM_ALIGNED_TYPEDEF(uint16_t, aligned_uint16_t, 2)'],['../a00986.html#gaa86bc56a73fd8120b1121b5f5e6245ae',1,'glm::GLM_ALIGNED_TYPEDEF(uint32_t, aligned_uint32_t, 4)'],['../a00986.html#ga68c0b9e669060d0eb5ab8c3ddeb483d8',1,'glm::GLM_ALIGNED_TYPEDEF(uint64_t, aligned_uint64_t, 8)'],['../a00986.html#ga4f3bab577daf3343e99cc005134bce86',1,'glm::GLM_ALIGNED_TYPEDEF(u8, aligned_u8, 1)'],['../a00986.html#ga13a2391339d0790d43b76d00a7611c4f',1,'glm::GLM_ALIGNED_TYPEDEF(u16, aligned_u16, 2)'],['../a00986.html#ga197570e03acbc3d18ab698e342971e8f',1,'glm::GLM_ALIGNED_TYPEDEF(u32, aligned_u32, 4)'],['../a00986.html#ga0f033b21e145a1faa32c62ede5878993',1,'glm::GLM_ALIGNED_TYPEDEF(u64, aligned_u64, 8)'],['../a00986.html#ga509af83527f5cd512e9a7873590663aa',1,'glm::GLM_ALIGNED_TYPEDEF(uvec1, aligned_uvec1, 4)'],['../a00986.html#ga94e86186978c502c6dc0c0d9c4a30679',1,'glm::GLM_ALIGNED_TYPEDEF(uvec2, aligned_uvec2, 8)'],['../a00986.html#ga5cec574686a7f3c8ed24bb195c5e2d0a',1,'glm::GLM_ALIGNED_TYPEDEF(uvec3, aligned_uvec3, 16)'],['../a00986.html#ga47edfdcee9c89b1ebdaf20450323b1d4',1,'glm::GLM_ALIGNED_TYPEDEF(uvec4, aligned_uvec4, 16)'],['../a00986.html#ga5611d6718e3a00096918a64192e73a45',1,'glm::GLM_ALIGNED_TYPEDEF(u8vec1, aligned_u8vec1, 1)'],['../a00986.html#ga19837e6f72b60d994a805ef564c6c326',1,'glm::GLM_ALIGNED_TYPEDEF(u8vec2, aligned_u8vec2, 2)'],['../a00986.html#ga9740cf8e34f068049b42a2753f9601c2',1,'glm::GLM_ALIGNED_TYPEDEF(u8vec3, aligned_u8vec3, 4)'],['../a00986.html#ga8b8588bb221448f5541a858903822a57',1,'glm::GLM_ALIGNED_TYPEDEF(u8vec4, aligned_u8vec4, 4)'],['../a00986.html#ga991abe990c16de26b2129d6bc2f4c051',1,'glm::GLM_ALIGNED_TYPEDEF(u16vec1, aligned_u16vec1, 2)'],['../a00986.html#gac01bb9fc32a1cd76c2b80d030f71df4c',1,'glm::GLM_ALIGNED_TYPEDEF(u16vec2, aligned_u16vec2, 4)'],['../a00986.html#ga09540dbca093793a36a8997e0d4bee77',1,'glm::GLM_ALIGNED_TYPEDEF(u16vec3, aligned_u16vec3, 8)'],['../a00986.html#gaecafb5996f5a44f57e34d29c8670741e',1,'glm::GLM_ALIGNED_TYPEDEF(u16vec4, aligned_u16vec4, 8)'],['../a00986.html#gac6b161a04d2f8408fe1c9d857e8daac0',1,'glm::GLM_ALIGNED_TYPEDEF(u32vec1, aligned_u32vec1, 4)'],['../a00986.html#ga1fa0dfc8feb0fa17dab2acd43e05342b',1,'glm::GLM_ALIGNED_TYPEDEF(u32vec2, aligned_u32vec2, 8)'],['../a00986.html#ga0019500abbfa9c66eff61ca75eaaed94',1,'glm::GLM_ALIGNED_TYPEDEF(u32vec3, aligned_u32vec3, 16)'],['../a00986.html#ga14fd29d01dae7b08a04e9facbcc18824',1,'glm::GLM_ALIGNED_TYPEDEF(u32vec4, aligned_u32vec4, 16)'],['../a00986.html#gab253845f534a67136f9619843cade903',1,'glm::GLM_ALIGNED_TYPEDEF(u64vec1, aligned_u64vec1, 8)'],['../a00986.html#ga929427a7627940cdf3304f9c050b677d',1,'glm::GLM_ALIGNED_TYPEDEF(u64vec2, aligned_u64vec2, 16)'],['../a00986.html#gae373b6c04fdf9879f33d63e6949c037e',1,'glm::GLM_ALIGNED_TYPEDEF(u64vec3, aligned_u64vec3, 32)'],['../a00986.html#ga53a8a03dca2015baec4584f45b8e9cdc',1,'glm::GLM_ALIGNED_TYPEDEF(u64vec4, aligned_u64vec4, 32)'],['../a00986.html#gab3301bae94ef5bf59fbdd9a24e7d2a01',1,'glm::GLM_ALIGNED_TYPEDEF(float32, aligned_float32, 4)'],['../a00986.html#gada9b0bea273d3ae0286f891533b9568f',1,'glm::GLM_ALIGNED_TYPEDEF(float32_t, aligned_float32_t, 4)'],['../a00986.html#gadbce23b9f23d77bb3884e289a574ebd5',1,'glm::GLM_ALIGNED_TYPEDEF(float32, aligned_f32, 4)'],['../a00986.html#ga75930684ff2233171c573e603f216162',1,'glm::GLM_ALIGNED_TYPEDEF(float64, aligned_float64, 8)'],['../a00986.html#ga6e3a2d83b131336219a0f4c7cbba2a48',1,'glm::GLM_ALIGNED_TYPEDEF(float64_t, aligned_float64_t, 8)'],['../a00986.html#gaa4deaa0dea930c393d55e7a4352b0a20',1,'glm::GLM_ALIGNED_TYPEDEF(float64, aligned_f64, 8)'],['../a00986.html#ga81bc497b2bfc6f80bab690c6ee28f0f9',1,'glm::GLM_ALIGNED_TYPEDEF(vec1, aligned_vec1, 4)'],['../a00986.html#gada3e8f783e9d4b90006695a16c39d4d4',1,'glm::GLM_ALIGNED_TYPEDEF(vec2, aligned_vec2, 8)'],['../a00986.html#gab8d081fac3a38d6f55fa552f32168d32',1,'glm::GLM_ALIGNED_TYPEDEF(vec3, aligned_vec3, 16)'],['../a00986.html#ga12fe7b9769c964c5b48dcfd8b7f40198',1,'glm::GLM_ALIGNED_TYPEDEF(vec4, aligned_vec4, 16)'],['../a00986.html#gaefab04611c7f8fe1fd9be3071efea6cc',1,'glm::GLM_ALIGNED_TYPEDEF(fvec1, aligned_fvec1, 4)'],['../a00986.html#ga2543c05ba19b3bd19d45b1227390c5b4',1,'glm::GLM_ALIGNED_TYPEDEF(fvec2, aligned_fvec2, 8)'],['../a00986.html#ga009afd727fd657ef33a18754d6d28f60',1,'glm::GLM_ALIGNED_TYPEDEF(fvec3, aligned_fvec3, 16)'],['../a00986.html#ga2f26177e74bfb301a3d0e02ec3c3ef53',1,'glm::GLM_ALIGNED_TYPEDEF(fvec4, aligned_fvec4, 16)'],['../a00986.html#ga309f495a1d6b75ddf195b674b65cb1e4',1,'glm::GLM_ALIGNED_TYPEDEF(f32vec1, aligned_f32vec1, 4)'],['../a00986.html#ga5e185865a2217d0cd47187644683a8c3',1,'glm::GLM_ALIGNED_TYPEDEF(f32vec2, aligned_f32vec2, 8)'],['../a00986.html#gade4458b27b039b9ca34f8ec049f3115a',1,'glm::GLM_ALIGNED_TYPEDEF(f32vec3, aligned_f32vec3, 16)'],['../a00986.html#ga2e8a12c5e6a9c4ae4ddaeda1d1cffe3b',1,'glm::GLM_ALIGNED_TYPEDEF(f32vec4, aligned_f32vec4, 16)'],['../a00986.html#ga3e0f35fa0c626285a8bad41707e7316c',1,'glm::GLM_ALIGNED_TYPEDEF(dvec1, aligned_dvec1, 8)'],['../a00986.html#ga78bfec2f185d1d365ea0a9ef1e3d45b8',1,'glm::GLM_ALIGNED_TYPEDEF(dvec2, aligned_dvec2, 16)'],['../a00986.html#ga01fe6fee6db5df580b6724a7e681f069',1,'glm::GLM_ALIGNED_TYPEDEF(dvec3, aligned_dvec3, 32)'],['../a00986.html#ga687d5b8f551d5af32425c0b2fba15e99',1,'glm::GLM_ALIGNED_TYPEDEF(dvec4, aligned_dvec4, 32)'],['../a00986.html#ga8e842371d46842ff8f1813419ba49d0f',1,'glm::GLM_ALIGNED_TYPEDEF(f64vec1, aligned_f64vec1, 8)'],['../a00986.html#ga32814aa0f19316b43134fc25f2aad2b9',1,'glm::GLM_ALIGNED_TYPEDEF(f64vec2, aligned_f64vec2, 16)'],['../a00986.html#gaf3d3bbc1e93909b689123b085e177a14',1,'glm::GLM_ALIGNED_TYPEDEF(f64vec3, aligned_f64vec3, 32)'],['../a00986.html#ga804c654cead1139bd250f90f9bb01fad',1,'glm::GLM_ALIGNED_TYPEDEF(f64vec4, aligned_f64vec4, 32)'],['../a00986.html#gacce4ac532880b8c7469d3c31974420a1',1,'glm::GLM_ALIGNED_TYPEDEF(mat2, aligned_mat2, 16)'],['../a00986.html#ga0498e0e249a6faddaf96aa55d7f81c3b',1,'glm::GLM_ALIGNED_TYPEDEF(mat3, aligned_mat3, 16)'],['../a00986.html#ga7435d87de82a0d652b35dc5b9cc718d5',1,'glm::GLM_ALIGNED_TYPEDEF(mat4, aligned_mat4, 16)'],['../a00986.html#ga719da577361541a4c43a2dd1d0e361e1',1,'glm::GLM_ALIGNED_TYPEDEF(fmat2x2, aligned_fmat2, 16)'],['../a00986.html#ga6e7ee4f541e1d7db66cd1a224caacafb',1,'glm::GLM_ALIGNED_TYPEDEF(fmat3x3, aligned_fmat3, 16)'],['../a00986.html#gae5d672d359f2a39f63f98c7975057486',1,'glm::GLM_ALIGNED_TYPEDEF(fmat4x4, aligned_fmat4, 16)'],['../a00986.html#ga6fa2df037dbfc5fe8c8e0b4db8a34953',1,'glm::GLM_ALIGNED_TYPEDEF(fmat2x2, aligned_fmat2x2, 16)'],['../a00986.html#ga0743b4f4f69a3227b82ff58f6abbad62',1,'glm::GLM_ALIGNED_TYPEDEF(fmat2x3, aligned_fmat2x3, 16)'],['../a00986.html#ga1a76b325fdf70f961d835edd182c63dd',1,'glm::GLM_ALIGNED_TYPEDEF(fmat2x4, aligned_fmat2x4, 16)'],['../a00986.html#ga4b4e181cd041ba28c3163e7b8074aef0',1,'glm::GLM_ALIGNED_TYPEDEF(fmat3x2, aligned_fmat3x2, 16)'],['../a00986.html#ga27b13f465abc8a40705698145e222c3f',1,'glm::GLM_ALIGNED_TYPEDEF(fmat3x3, aligned_fmat3x3, 16)'],['../a00986.html#ga2608d19cc275830a6f8c0b6405625a4f',1,'glm::GLM_ALIGNED_TYPEDEF(fmat3x4, aligned_fmat3x4, 16)'],['../a00986.html#ga93f09768241358a287c4cca538f1f7e7',1,'glm::GLM_ALIGNED_TYPEDEF(fmat4x2, aligned_fmat4x2, 16)'],['../a00986.html#ga7c117e3ecca089e10247b1d41d88aff9',1,'glm::GLM_ALIGNED_TYPEDEF(fmat4x3, aligned_fmat4x3, 16)'],['../a00986.html#ga07c75cd04ba42dc37fa3e105f89455c5',1,'glm::GLM_ALIGNED_TYPEDEF(fmat4x4, aligned_fmat4x4, 16)'],['../a00986.html#ga65ff0d690a34a4d7f46f9b2eb51525ee',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat2x2, aligned_f32mat2, 16)'],['../a00986.html#gadd8ddbe2bf65ccede865ba2f510176dc',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat3x3, aligned_f32mat3, 16)'],['../a00986.html#gaf18dbff14bf13d3ff540c517659ec045',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat4x4, aligned_f32mat4, 16)'],['../a00986.html#ga66339f6139bf7ff19e245beb33f61cc8',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat2x2, aligned_f32mat2x2, 16)'],['../a00986.html#ga1558a48b3934011b52612809f443e46d',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat2x3, aligned_f32mat2x3, 16)'],['../a00986.html#gaa52e5732daa62851627021ad551c7680',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat2x4, aligned_f32mat2x4, 16)'],['../a00986.html#gac09663c42566bcb58d23c6781ac4e85a',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat3x2, aligned_f32mat3x2, 16)'],['../a00986.html#ga3f510999e59e1b309113e1d561162b29',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat3x3, aligned_f32mat3x3, 16)'],['../a00986.html#ga2c9c94f0c89cd71ce56551db6cf4aaec',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat3x4, aligned_f32mat3x4, 16)'],['../a00986.html#ga99ce8274c750fbfdf0e70c95946a2875',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat4x2, aligned_f32mat4x2, 16)'],['../a00986.html#ga9476ef66790239df53dbe66f3989c3b5',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat4x3, aligned_f32mat4x3, 16)'],['../a00986.html#gacc429b3b0b49921e12713b6d31e14e1d',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat4x4, aligned_f32mat4x4, 16)'],['../a00986.html#ga88f6c6fa06e6e64479763e69444669cf',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat2x2, aligned_f64mat2, 32)'],['../a00986.html#gaae8e4639c991e64754145ab8e4c32083',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat3x3, aligned_f64mat3, 32)'],['../a00986.html#ga6e9094f3feb3b5b49d0f83683a101fde',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat4x4, aligned_f64mat4, 32)'],['../a00986.html#gadbd2c639c03de1c3e9591b5a39f65559',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat2x2, aligned_f64mat2x2, 32)'],['../a00986.html#gab059d7b9fe2094acc563b7223987499f',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat2x3, aligned_f64mat2x3, 32)'],['../a00986.html#gabbc811d1c52ed2b8cfcaff1378f75c69',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat2x4, aligned_f64mat2x4, 32)'],['../a00986.html#ga9ddf5212777734d2fd841a84439f3bdf',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat3x2, aligned_f64mat3x2, 32)'],['../a00986.html#gad1dda32ed09f94bfcf0a7d8edfb6cf13',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat3x3, aligned_f64mat3x3, 32)'],['../a00986.html#ga5875e0fa72f07e271e7931811cbbf31a',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat3x4, aligned_f64mat3x4, 32)'],['../a00986.html#ga41e82cd6ac07f912ba2a2d45799dcf0d',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat4x2, aligned_f64mat4x2, 32)'],['../a00986.html#ga0892638d6ba773043b3d63d1d092622e',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat4x3, aligned_f64mat4x3, 32)'],['../a00986.html#ga912a16432608b822f1e13607529934c1',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat4x4, aligned_f64mat4x4, 32)'],['../a00986.html#gafd945a8ea86b042aba410e0560df9a3d',1,'glm::GLM_ALIGNED_TYPEDEF(quat, aligned_quat, 16)'],['../a00986.html#ga19c2ba545d1f2f36bcb7b60c9a228622',1,'glm::GLM_ALIGNED_TYPEDEF(quat, aligned_fquat, 16)'],['../a00986.html#gaabc28c84a3288b697605d4688686f9a9',1,'glm::GLM_ALIGNED_TYPEDEF(dquat, aligned_dquat, 32)'],['../a00986.html#ga1ed8aeb5ca67fade269a46105f1bf273',1,'glm::GLM_ALIGNED_TYPEDEF(f32quat, aligned_f32quat, 16)'],['../a00986.html#ga95cc03b8b475993fa50e05e38e203303',1,'glm::GLM_ALIGNED_TYPEDEF(f64quat, aligned_f64quat, 32)']]], + ['golden_5fratio_647',['golden_ratio',['../a00908.html#ga748cf8642830657c5b7eae04d0a80899',1,'glm']]], + ['gradient_5fpaint_2ehpp_648',['gradient_paint.hpp',['../a00638.html',1,'']]], + ['greaterthan_649',['greaterThan',['../a00917.html#gab52513c338f90e9ba249faabdc115b67',1,'glm::greaterThan(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00996.html#gadfdb8ea82deca869ddc7e63ea5a63ae4',1,'glm::greaterThan(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['greaterthanequal_650',['greaterThanEqual',['../a00917.html#gaa71814c544f0ed99ba6d141b17e026ae',1,'glm::greaterThanEqual(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00996.html#ga859975f538940f8d18fe62f916b9abd7',1,'glm::greaterThanEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['glm_5fgtc_5fbitfield_651',['GLM_GTC_bitfield',['../a00906.html',1,'']]], + ['glm_5fgtc_5fcolor_5fspace_652',['GLM_GTC_color_space',['../a00907.html',1,'']]], + ['glm_5fgtc_5fconstants_653',['GLM_GTC_constants',['../a00908.html',1,'']]], + ['glm_5fgtc_5fepsilon_654',['GLM_GTC_epsilon',['../a00909.html',1,'']]], + ['glm_5fgtc_5finteger_655',['GLM_GTC_integer',['../a00910.html',1,'']]], + ['glm_5fgtc_5fmatrix_5faccess_656',['GLM_GTC_matrix_access',['../a00911.html',1,'']]], + ['glm_5fgtc_5fmatrix_5finteger_657',['GLM_GTC_matrix_integer',['../a00912.html',1,'']]], + ['glm_5fgtc_5fmatrix_5finverse_658',['GLM_GTC_matrix_inverse',['../a00913.html',1,'']]], + ['glm_5fgtc_5fmatrix_5ftransform_659',['GLM_GTC_matrix_transform',['../a00914.html',1,'']]], + ['glm_5fgtc_5fnoise_660',['GLM_GTC_noise',['../a00915.html',1,'']]], + ['glm_5fgtc_5fpacking_661',['GLM_GTC_packing',['../a00916.html',1,'']]], + ['glm_5fgtc_5fquaternion_662',['GLM_GTC_quaternion',['../a00917.html',1,'']]], + ['glm_5fgtc_5frandom_663',['GLM_GTC_random',['../a00918.html',1,'']]], + ['glm_5fgtc_5freciprocal_664',['GLM_GTC_reciprocal',['../a00919.html',1,'']]], + ['glm_5fgtc_5fround_665',['GLM_GTC_round',['../a00920.html',1,'']]], + ['glm_5fgtc_5ftype_5faligned_666',['GLM_GTC_type_aligned',['../a00921.html',1,'']]], + ['glm_5fgtc_5ftype_5fprecision_667',['GLM_GTC_type_precision',['../a00922.html',1,'']]], + ['glm_5fgtc_5ftype_5fptr_668',['GLM_GTC_type_ptr',['../a00923.html',1,'']]], + ['glm_5fgtc_5fulp_669',['GLM_GTC_ulp',['../a00924.html',1,'']]], + ['glm_5fgtc_5fvec1_670',['GLM_GTC_vec1',['../a00925.html',1,'']]], + ['glm_5fgtx_5fassociated_5fmin_5fmax_671',['GLM_GTX_associated_min_max',['../a00926.html',1,'']]], + ['glm_5fgtx_5fbit_672',['GLM_GTX_bit',['../a00927.html',1,'']]], + ['glm_5fgtx_5fclosest_5fpoint_673',['GLM_GTX_closest_point',['../a00928.html',1,'']]], + ['glm_5fgtx_5fcolor_5fencoding_674',['GLM_GTX_color_encoding',['../a00929.html',1,'']]], + ['glm_5fgtx_5fcolor_5fspace_675',['GLM_GTX_color_space',['../a00930.html',1,'']]], + ['glm_5fgtx_5fcolor_5fspace_5fycocg_676',['GLM_GTX_color_space_YCoCg',['../a00931.html',1,'']]], + ['glm_5fgtx_5fcommon_677',['GLM_GTX_common',['../a00932.html',1,'']]], + ['glm_5fgtx_5fcompatibility_678',['GLM_GTX_compatibility',['../a00933.html',1,'']]], + ['glm_5fgtx_5fcomponent_5fwise_679',['GLM_GTX_component_wise',['../a00934.html',1,'']]], + ['glm_5fgtx_5fdual_5fquaternion_680',['GLM_GTX_dual_quaternion',['../a00935.html',1,'']]], + ['glm_5fgtx_5feasing_681',['GLM_GTX_easing',['../a00936.html',1,'']]], + ['glm_5fgtx_5feuler_5fangles_682',['GLM_GTX_euler_angles',['../a00937.html',1,'']]], + ['glm_5fgtx_5fextend_683',['GLM_GTX_extend',['../a00938.html',1,'']]], + ['glm_5fgtx_5fextended_5fmin_5fmax_684',['GLM_GTX_extended_min_max',['../a00939.html',1,'']]], + ['glm_5fgtx_5fexterior_5fproduct_685',['GLM_GTX_exterior_product',['../a00940.html',1,'']]], + ['glm_5fgtx_5ffast_5fexponential_686',['GLM_GTX_fast_exponential',['../a00941.html',1,'']]], + ['glm_5fgtx_5ffast_5fsquare_5froot_687',['GLM_GTX_fast_square_root',['../a00942.html',1,'']]], + ['glm_5fgtx_5ffast_5ftrigonometry_688',['GLM_GTX_fast_trigonometry',['../a00943.html',1,'']]], + ['glm_5fgtx_5ffunctions_689',['GLM_GTX_functions',['../a00944.html',1,'']]], + ['glm_5fgtx_5fgradient_5fpaint_690',['GLM_GTX_gradient_paint',['../a00945.html',1,'']]], + ['glm_5fgtx_5fhanded_5fcoordinate_5fspace_691',['GLM_GTX_handed_coordinate_space',['../a00946.html',1,'']]], + ['glm_5fgtx_5fhash_692',['GLM_GTX_hash',['../a00947.html',1,'']]], + ['glm_5fgtx_5finteger_693',['GLM_GTX_integer',['../a00948.html',1,'']]], + ['glm_5fgtx_5fintersect_694',['GLM_GTX_intersect',['../a00949.html',1,'']]], + ['glm_5fgtx_5fio_695',['GLM_GTX_io',['../a00950.html',1,'']]], + ['glm_5fgtx_5fiteration_696',['GLM_GTX_iteration',['../a00951.html',1,'']]], + ['glm_5fgtx_5flog_5fbase_697',['GLM_GTX_log_base',['../a00952.html',1,'']]], + ['glm_5fgtx_5fmatrix_5fcross_5fproduct_698',['GLM_GTX_matrix_cross_product',['../a00953.html',1,'']]], + ['glm_5fgtx_5fmatrix_5fdecompose_699',['GLM_GTX_matrix_decompose',['../a00954.html',1,'']]], + ['glm_5fgtx_5fmatrix_5ffactorisation_700',['GLM_GTX_matrix_factorisation',['../a00955.html',1,'']]], + ['glm_5fgtx_5fmatrix_5finterpolation_701',['GLM_GTX_matrix_interpolation',['../a00956.html',1,'']]], + ['glm_5fgtx_5fmatrix_5fmajor_5fstorage_702',['GLM_GTX_matrix_major_storage',['../a00957.html',1,'']]], + ['glm_5fgtx_5fmatrix_5foperation_703',['GLM_GTX_matrix_operation',['../a00958.html',1,'']]], + ['glm_5fgtx_5fmatrix_5fquery_704',['GLM_GTX_matrix_query',['../a00959.html',1,'']]], + ['glm_5fgtx_5fmatrix_5ftransform_5f2d_705',['GLM_GTX_matrix_transform_2d',['../a00960.html',1,'']]], + ['glm_5fgtx_5fmixed_5fproducte_706',['GLM_GTX_mixed_producte',['../a00961.html',1,'']]], + ['glm_5fgtx_5fnorm_707',['GLM_GTX_norm',['../a00962.html',1,'']]], + ['glm_5fgtx_5fnormal_708',['GLM_GTX_normal',['../a00963.html',1,'']]], + ['glm_5fgtx_5fnormalize_5fdot_709',['GLM_GTX_normalize_dot',['../a00964.html',1,'']]], + ['glm_5fgtx_5fnumber_5fprecision_710',['GLM_GTX_number_precision',['../a00965.html',1,'']]], + ['glm_5fgtx_5foptimum_5fpow_711',['GLM_GTX_optimum_pow',['../a00966.html',1,'']]], + ['glm_5fgtx_5forthonormalize_712',['GLM_GTX_orthonormalize',['../a00967.html',1,'']]], + ['glm_5fgtx_5fpca_713',['GLM_GTX_pca',['../a00968.html',1,'']]], + ['glm_5fgtx_5fperpendicular_714',['GLM_GTX_perpendicular',['../a00969.html',1,'']]], + ['glm_5fgtx_5fpolar_5fcoordinates_715',['GLM_GTX_polar_coordinates',['../a00970.html',1,'']]], + ['glm_5fgtx_5fprojection_716',['GLM_GTX_projection',['../a00971.html',1,'']]], + ['glm_5fgtx_5fquaternion_717',['GLM_GTX_quaternion',['../a00972.html',1,'']]], + ['glm_5fgtx_5frange_718',['GLM_GTX_range',['../a00973.html',1,'']]], + ['glm_5fgtx_5fraw_5fdata_719',['GLM_GTX_raw_data',['../a00974.html',1,'']]], + ['glm_5fgtx_5frotate_5fnormalized_5faxis_720',['GLM_GTX_rotate_normalized_axis',['../a00975.html',1,'']]], + ['glm_5fgtx_5frotate_5fvector_721',['GLM_GTX_rotate_vector',['../a00976.html',1,'']]], + ['glm_5fgtx_5fscalar_5fmultiplication_722',['GLM_GTX_scalar_multiplication',['../a00977.html',1,'']]], + ['glm_5fgtx_5fscalar_5frelational_723',['GLM_GTX_scalar_relational',['../a00978.html',1,'']]], + ['glm_5fgtx_5fspline_724',['GLM_GTX_spline',['../a00979.html',1,'']]], + ['glm_5fgtx_5fstd_5fbased_5ftype_725',['GLM_GTX_std_based_type',['../a00980.html',1,'']]], + ['glm_5fgtx_5fstring_5fcast_726',['GLM_GTX_string_cast',['../a00981.html',1,'']]], + ['glm_5fgtx_5fstructured_5fbindings_727',['GLM_GTX_structured_bindings',['../a00982.html',1,'']]], + ['glm_5fgtx_5ftexture_728',['GLM_GTX_texture',['../a00983.html',1,'']]], + ['glm_5fgtx_5ftransform_729',['GLM_GTX_transform',['../a00984.html',1,'']]], + ['glm_5fgtx_5ftransform2_730',['GLM_GTX_transform2',['../a00985.html',1,'']]], + ['glm_5fgtx_5ftype_5faligned_731',['GLM_GTX_type_aligned',['../a00986.html',1,'']]], + ['glm_5fgtx_5ftype_5ftrait_732',['GLM_GTX_type_trait',['../a00987.html',1,'']]], + ['glm_5fgtx_5fvec_5fswizzle_733',['GLM_GTX_vec_swizzle',['../a00988.html',1,'']]], + ['glm_5fgtx_5fvector_5fangle_734',['GLM_GTX_vector_angle',['../a00989.html',1,'']]], + ['glm_5fgtx_5fvector_5fquery_735',['GLM_GTX_vector_query',['../a00990.html',1,'']]], + ['glm_5fgtx_5fwrap_736',['GLM_GTX_wrap',['../a00991.html',1,'']]], + ['integer_2ehpp_737',['integer.hpp',['../a01690.html',1,'(Global Namespace)'],['../a01693.html',1,'(Global Namespace)']]], + ['matrix_5finteger_2ehpp_738',['matrix_integer.hpp',['../a01699.html',1,'']]], + ['matrix_5ftransform_2ehpp_739',['matrix_transform.hpp',['../a01705.html',1,'']]], + ['packing_2ehpp_740',['packing.hpp',['../a01708.html',1,'']]], + ['quaternion_2ehpp_741',['quaternion.hpp',['../a01711.html',1,'(Global Namespace)'],['../a01714.html',1,'(Global Namespace)']]], + ['scalar_5frelational_2ehpp_742',['scalar_relational.hpp',['../a01720.html',1,'']]], + ['type_5faligned_2ehpp_743',['type_aligned.hpp',['../a01723.html',1,'(Global Namespace)'],['../a01726.html',1,'(Global Namespace)']]] +]; diff --git a/include/glm/doc/api/search/all_7.html b/include/glm/doc/api/search/all_7.html new file mode 100644 index 0000000..e42e45b --- /dev/null +++ b/include/glm/doc/api/search/all_7.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_7.js b/include/glm/doc/api/search/all_7.js new file mode 100644 index 0000000..abcf6d8 --- /dev/null +++ b/include/glm/doc/api/search/all_7.js @@ -0,0 +1,194 @@ +var searchData= +[ + ['half_5fpi_744',['half_pi',['../a00908.html#ga0c36b41d462e45641faf7d7938948bac',1,'glm']]], + ['handed_5fcoordinate_5fspace_2ehpp_745',['handed_coordinate_space.hpp',['../a00641.html',1,'']]], + ['hash_2ehpp_746',['hash.hpp',['../a00644.html',1,'']]], + ['hermite_747',['hermite',['../a00979.html#gaa69e143f6374d32f934a8edeaa50bac9',1,'glm']]], + ['highestbitvalue_748',['highestBitValue',['../a00927.html#ga0dcc8fe7c3d3ad60dea409281efa3d05',1,'glm::highestBitValue(genIUType Value)'],['../a00927.html#ga898ef075ccf809a1e480faab48fe96bf',1,'glm::highestBitValue(vec< L, T, Q > const &value)']]], + ['highp_5fbvec1_749',['highp_bvec1',['../a00876.html#gae8a1e14abae1387274f57741750c06a2',1,'glm']]], + ['highp_5fbvec2_750',['highp_bvec2',['../a00900.html#gac6c781a85f012d77a75310a3058702c2',1,'glm']]], + ['highp_5fbvec3_751',['highp_bvec3',['../a00900.html#gaedb70027d89a0a405046aefda4eabaa6',1,'glm']]], + ['highp_5fbvec4_752',['highp_bvec4',['../a00900.html#gaee663ff64429443ab07a5327074192f6',1,'glm']]], + ['highp_5fddualquat_753',['highp_ddualquat',['../a00935.html#ga8f67eafa7197d7a668dad5105a463d2a',1,'glm']]], + ['highp_5fdmat2_754',['highp_dmat2',['../a00902.html#ga369b447bb1b312449b679ea1f90f3cea',1,'glm']]], + ['highp_5fdmat2x2_755',['highp_dmat2x2',['../a00902.html#gae27ac20302c2e39b6c78e7fe18e62ef7',1,'glm']]], + ['highp_5fdmat2x3_756',['highp_dmat2x3',['../a00902.html#gad4689ec33bc2c26e10132b174b49001a',1,'glm']]], + ['highp_5fdmat2x4_757',['highp_dmat2x4',['../a00902.html#ga5ceeb46670fdc000a0701910cc5061c9',1,'glm']]], + ['highp_5fdmat3_758',['highp_dmat3',['../a00902.html#ga86d6d4dbad92ffdcc759773340e15a97',1,'glm']]], + ['highp_5fdmat3x2_759',['highp_dmat3x2',['../a00902.html#ga3647309010a2160e9ec89bc6f7c95c35',1,'glm']]], + ['highp_5fdmat3x3_760',['highp_dmat3x3',['../a00902.html#gae367ea93c4ad8a7c101dd27b8b2b04ce',1,'glm']]], + ['highp_5fdmat3x4_761',['highp_dmat3x4',['../a00902.html#ga6543eeeb64f48d79a0b96484308c50f0',1,'glm']]], + ['highp_5fdmat4_762',['highp_dmat4',['../a00902.html#ga945254f459860741138bceb74da496b9',1,'glm']]], + ['highp_5fdmat4x2_763',['highp_dmat4x2',['../a00902.html#gaeda1f474c668eaecc443bea85a4a4eca',1,'glm']]], + ['highp_5fdmat4x3_764',['highp_dmat4x3',['../a00902.html#gacf237c2d8832fe8db2d7e187585d34bd',1,'glm']]], + ['highp_5fdmat4x4_765',['highp_dmat4x4',['../a00902.html#ga118d24a3d12c034e7cccef7bf2f01b8a',1,'glm']]], + ['highp_5fdquat_766',['highp_dquat',['../a00858.html#gaf13a25f41afc03480b40fc71bd249cec',1,'glm']]], + ['highp_5fdualquat_767',['highp_dualquat',['../a00935.html#ga9ef5bf1da52a9d4932335a517086ceaf',1,'glm']]], + ['highp_5fdvec1_768',['highp_dvec1',['../a00879.html#ga77c22c4426da3a6865c88d3fc907e3fe',1,'glm']]], + ['highp_5fdvec2_769',['highp_dvec2',['../a00900.html#gab98d77cca255914f5e29697fcbc2d975',1,'glm']]], + ['highp_5fdvec3_770',['highp_dvec3',['../a00900.html#gab24dc20dcdc5b71282634bdbf6b70105',1,'glm']]], + ['highp_5fdvec4_771',['highp_dvec4',['../a00900.html#gab654f4ed4a99d64a6cfc65320c2a7590',1,'glm']]], + ['highp_5ff32_772',['highp_f32',['../a00922.html#ga6906e1ef0b34064b4b675489c5c38725',1,'glm']]], + ['highp_5ff32mat2_773',['highp_f32mat2',['../a00922.html#ga298f7d4d273678d0282812368da27fda',1,'glm']]], + ['highp_5ff32mat2x2_774',['highp_f32mat2x2',['../a00922.html#gae5eb02d92b7d4605a4b7f37ae5cb2968',1,'glm']]], + ['highp_5ff32mat2x3_775',['highp_f32mat2x3',['../a00922.html#ga0aeb5cb001473b08c88175012708a379',1,'glm']]], + ['highp_5ff32mat2x4_776',['highp_f32mat2x4',['../a00922.html#ga88938ee1e7981fa3402e88da6ad74531',1,'glm']]], + ['highp_5ff32mat3_777',['highp_f32mat3',['../a00922.html#ga24f9ef3263b1638564713892cc37981f',1,'glm']]], + ['highp_5ff32mat3x2_778',['highp_f32mat3x2',['../a00922.html#ga36537e701456f12c20e73f469cac4967',1,'glm']]], + ['highp_5ff32mat3x3_779',['highp_f32mat3x3',['../a00922.html#gaab691ae40c37976d268d8cac0096e0e1',1,'glm']]], + ['highp_5ff32mat3x4_780',['highp_f32mat3x4',['../a00922.html#gaa5086dbd6efb272d13fc88829330861d',1,'glm']]], + ['highp_5ff32mat4_781',['highp_f32mat4',['../a00922.html#ga14c90ca49885723f51d06e295587236f',1,'glm']]], + ['highp_5ff32mat4x2_782',['highp_f32mat4x2',['../a00922.html#ga602e119c6b246b4f6edcf66845f2aa0f',1,'glm']]], + ['highp_5ff32mat4x3_783',['highp_f32mat4x3',['../a00922.html#ga66bffdd8e5c0d3ef9958bbab9ca1ba59',1,'glm']]], + ['highp_5ff32mat4x4_784',['highp_f32mat4x4',['../a00922.html#gaf1b712b97b2322685fbbed28febe5f84',1,'glm']]], + ['highp_5ff32quat_785',['highp_f32quat',['../a00922.html#ga4252cf7f5b0e3cd47c3d3badf0ef43b3',1,'glm']]], + ['highp_5ff32vec1_786',['highp_f32vec1',['../a00922.html#gab1b1c9e8667902b78b2c330e4d383a61',1,'glm']]], + ['highp_5ff32vec2_787',['highp_f32vec2',['../a00922.html#ga0b8ebd4262331e139ff257d7cf2a4b77',1,'glm']]], + ['highp_5ff32vec3_788',['highp_f32vec3',['../a00922.html#ga522775dbcc6d96246a1c5cf02344fd8c',1,'glm']]], + ['highp_5ff32vec4_789',['highp_f32vec4',['../a00922.html#ga0f038d4e09862a74f03d102c59eda73e',1,'glm']]], + ['highp_5ff64_790',['highp_f64',['../a00922.html#ga51d5266017d88f62737c1973923a7cf4',1,'glm']]], + ['highp_5ff64mat2_791',['highp_f64mat2',['../a00922.html#gaf7adb92ce8de0afaff01436b039fd924',1,'glm']]], + ['highp_5ff64mat2x2_792',['highp_f64mat2x2',['../a00922.html#ga773ea237a051827cfc20de960bc73ff0',1,'glm']]], + ['highp_5ff64mat2x3_793',['highp_f64mat2x3',['../a00922.html#ga8342c7469384c6d769cacc9e309278d9',1,'glm']]], + ['highp_5ff64mat2x4_794',['highp_f64mat2x4',['../a00922.html#ga5a67a7440b9c0d1538533540f99036a5',1,'glm']]], + ['highp_5ff64mat3_795',['highp_f64mat3',['../a00922.html#ga609bf0ace941d6ab1bb2f9522a04e546',1,'glm']]], + ['highp_5ff64mat3x2_796',['highp_f64mat3x2',['../a00922.html#ga5bdbfb4ce7d05ce1e1b663f50be17e8a',1,'glm']]], + ['highp_5ff64mat3x3_797',['highp_f64mat3x3',['../a00922.html#ga7c2cadb9b85cc7e0d125db21ca19dea4',1,'glm']]], + ['highp_5ff64mat3x4_798',['highp_f64mat3x4',['../a00922.html#gad310b1dddeec9ec837a104e7db8de580',1,'glm']]], + ['highp_5ff64mat4_799',['highp_f64mat4',['../a00922.html#gad308e0ed27d64daa4213fb257fcbd5a5',1,'glm']]], + ['highp_5ff64mat4x2_800',['highp_f64mat4x2',['../a00922.html#ga58c4631421e323e252fc716b6103e38c',1,'glm']]], + ['highp_5ff64mat4x3_801',['highp_f64mat4x3',['../a00922.html#gae94823d65648e44d972863c6caa13103',1,'glm']]], + ['highp_5ff64mat4x4_802',['highp_f64mat4x4',['../a00922.html#ga09a2374b725c4246d263ee36fb66434c',1,'glm']]], + ['highp_5ff64quat_803',['highp_f64quat',['../a00922.html#gafcfdd74a115163af2ce1093551747352',1,'glm']]], + ['highp_5ff64vec1_804',['highp_f64vec1',['../a00922.html#ga62c31b133ceee9984fbee05ac4c434a9',1,'glm']]], + ['highp_5ff64vec2_805',['highp_f64vec2',['../a00922.html#ga670ea1b0a1172bc73b1d7c1e0c26cce2',1,'glm']]], + ['highp_5ff64vec3_806',['highp_f64vec3',['../a00922.html#gacd1196090ece7a69fb5c3e43a7d4d851',1,'glm']]], + ['highp_5ff64vec4_807',['highp_f64vec4',['../a00922.html#ga61185c44c8cc0b25d9a0f67d8a267444',1,'glm']]], + ['highp_5ffdualquat_808',['highp_fdualquat',['../a00935.html#ga4c4e55e9c99dc57b299ed590968da564',1,'glm']]], + ['highp_5ffloat32_809',['highp_float32',['../a00922.html#gac5a7f21136e0a78d0a1b9f60ef2f8aea',1,'glm']]], + ['highp_5ffloat32_5ft_810',['highp_float32_t',['../a00922.html#ga5376ef18dca9d248897c3363ef5a06b2',1,'glm']]], + ['highp_5ffloat64_811',['highp_float64',['../a00922.html#gadbb198a4d7aad82a0f4dc466ef6f6215',1,'glm']]], + ['highp_5ffloat64_5ft_812',['highp_float64_t',['../a00922.html#gaaeeb0077198cff40e3f48b1108ece139',1,'glm']]], + ['highp_5ffmat2_813',['highp_fmat2',['../a00922.html#gae98c88d9a7befa9b5877f49176225535',1,'glm']]], + ['highp_5ffmat2x2_814',['highp_fmat2x2',['../a00922.html#ga28635abcddb2f3e92c33c3f0fcc682ad',1,'glm']]], + ['highp_5ffmat2x3_815',['highp_fmat2x3',['../a00922.html#gacf111095594996fef29067b2454fccad',1,'glm']]], + ['highp_5ffmat2x4_816',['highp_fmat2x4',['../a00922.html#ga4920a1536f161f7ded1d6909b7fef0d2',1,'glm']]], + ['highp_5ffmat3_817',['highp_fmat3',['../a00922.html#gaed2dc69e0d507d4191092dbd44b3eb75',1,'glm']]], + ['highp_5ffmat3x2_818',['highp_fmat3x2',['../a00922.html#gae54e4d1aeb5a0f0c64822e6f1b299e19',1,'glm']]], + ['highp_5ffmat3x3_819',['highp_fmat3x3',['../a00922.html#gaa5b44d3ef6efcf33f44876673a7a936e',1,'glm']]], + ['highp_5ffmat3x4_820',['highp_fmat3x4',['../a00922.html#ga961fac2a885907ffcf4d40daac6615c5',1,'glm']]], + ['highp_5ffmat4_821',['highp_fmat4',['../a00922.html#gabf28443ce0cc0959077ec39b21f32c39',1,'glm']]], + ['highp_5ffmat4x2_822',['highp_fmat4x2',['../a00922.html#ga076961cf2d120c7168b957cb2ed107b3',1,'glm']]], + ['highp_5ffmat4x3_823',['highp_fmat4x3',['../a00922.html#gae406ec670f64170a7437b5e302eeb2cb',1,'glm']]], + ['highp_5ffmat4x4_824',['highp_fmat4x4',['../a00922.html#gaee80c7cd3caa0f2635058656755f6f69',1,'glm']]], + ['highp_5ffvec1_825',['highp_fvec1',['../a00922.html#gaa1040342c4efdedc8f90e6267db8d41c',1,'glm']]], + ['highp_5ffvec2_826',['highp_fvec2',['../a00922.html#ga7c0d196f5fa79f7e892a2f323a0be1ae',1,'glm']]], + ['highp_5ffvec3_827',['highp_fvec3',['../a00922.html#ga6ef77413883f48d6b53b4169b25edbd0',1,'glm']]], + ['highp_5ffvec4_828',['highp_fvec4',['../a00922.html#ga8b839abbb44f5102609eed89f6ed61f7',1,'glm']]], + ['highp_5fi16_829',['highp_i16',['../a00922.html#ga0336abc2604dd2c20c30e036454b64f8',1,'glm']]], + ['highp_5fi16vec1_830',['highp_i16vec1',['../a00922.html#ga70fdfcc1fd38084bde83c3f06a8b9f19',1,'glm']]], + ['highp_5fi16vec2_831',['highp_i16vec2',['../a00922.html#gaa7db3ad10947cf70cae6474d05ebd227',1,'glm']]], + ['highp_5fi16vec3_832',['highp_i16vec3',['../a00922.html#ga5609c8fa2b7eac3dec337d321cb0ca96',1,'glm']]], + ['highp_5fi16vec4_833',['highp_i16vec4',['../a00922.html#ga7a18659438828f91ccca28f1a1e067b4',1,'glm']]], + ['highp_5fi32_834',['highp_i32',['../a00922.html#ga727675ac6b5d2fc699520e0059735e25',1,'glm']]], + ['highp_5fi32vec1_835',['highp_i32vec1',['../a00922.html#ga6a9d71cc62745302f70422b7dc98755c',1,'glm']]], + ['highp_5fi32vec2_836',['highp_i32vec2',['../a00922.html#gaa9b4579f8e6f3d9b649a965bcb785530',1,'glm']]], + ['highp_5fi32vec3_837',['highp_i32vec3',['../a00922.html#ga31e070ea3bdee623e6e18a61ba5718b1',1,'glm']]], + ['highp_5fi32vec4_838',['highp_i32vec4',['../a00922.html#gadf70eaaa230aeed5a4c9f4c9c5c55902',1,'glm']]], + ['highp_5fi64_839',['highp_i64',['../a00922.html#gac25db6d2b1e2a0f351b77ba3409ac4cd',1,'glm']]], + ['highp_5fi64vec1_840',['highp_i64vec1',['../a00922.html#gabd2fda3cd208acf5a370ec9b5b3c58d4',1,'glm']]], + ['highp_5fi64vec2_841',['highp_i64vec2',['../a00922.html#gad9d1903cb20899966e8ebe0670889a5f',1,'glm']]], + ['highp_5fi64vec3_842',['highp_i64vec3',['../a00922.html#ga62324224b9c6cce9c6b4db96bb704a8a',1,'glm']]], + ['highp_5fi64vec4_843',['highp_i64vec4',['../a00922.html#gad23b1be9b3bf20352089a6b738f0ebba',1,'glm']]], + ['highp_5fi8_844',['highp_i8',['../a00922.html#gacb88796f2d08ef253d0345aff20c3aee',1,'glm']]], + ['highp_5fi8vec1_845',['highp_i8vec1',['../a00922.html#ga1d8c10949691b0fd990253476f47beb3',1,'glm']]], + ['highp_5fi8vec2_846',['highp_i8vec2',['../a00922.html#ga50542e4cb9b2f9bec213b66e06145d07',1,'glm']]], + ['highp_5fi8vec3_847',['highp_i8vec3',['../a00922.html#ga8396bfdc081d9113190d0c39c9f67084',1,'glm']]], + ['highp_5fi8vec4_848',['highp_i8vec4',['../a00922.html#ga4824e3ddf6e608117dfe4809430737b4',1,'glm']]], + ['highp_5fimat2_849',['highp_imat2',['../a00912.html#ga8499cc3b016003f835314c1c756e9db9',1,'glm']]], + ['highp_5fimat2x2_850',['highp_imat2x2',['../a00912.html#ga02470e29b72461d18b0ca69abedd7ed9',1,'glm']]], + ['highp_5fimat2x3_851',['highp_imat2x3',['../a00912.html#gaa9cc128d4b33a9a3d9c41945409c6a09',1,'glm']]], + ['highp_5fimat2x4_852',['highp_imat2x4',['../a00912.html#gafc4c0a84e63da3c5dd49fb893c036f03',1,'glm']]], + ['highp_5fimat3_853',['highp_imat3',['../a00912.html#gaca4506a3efa679eff7c006d9826291fd',1,'glm']]], + ['highp_5fimat3x2_854',['highp_imat3x2',['../a00912.html#ga5ad2efa5da7d3331f264c9623e3def51',1,'glm']]], + ['highp_5fimat3x3_855',['highp_imat3x3',['../a00912.html#ga92349a807c25033fad67f0d402d4cb98',1,'glm']]], + ['highp_5fimat3x4_856',['highp_imat3x4',['../a00912.html#ga314765ba5934d6fe6e8ca189417e2ab6',1,'glm']]], + ['highp_5fimat4_857',['highp_imat4',['../a00912.html#ga7cfb09b34e0fcf73eaf6512d6483ef56',1,'glm']]], + ['highp_5fimat4x2_858',['highp_imat4x2',['../a00912.html#ga89f150a46de983f1e27d0045ec05b4e3',1,'glm']]], + ['highp_5fimat4x3_859',['highp_imat4x3',['../a00912.html#gadbccb0a2e7f43c31baea7fecbfa10bbf',1,'glm']]], + ['highp_5fimat4x4_860',['highp_imat4x4',['../a00912.html#gabb667869006fd8b1944bbd03c6d56690',1,'glm']]], + ['highp_5fint16_861',['highp_int16',['../a00922.html#ga5fde0fa4a3852a9dd5d637a92ee74718',1,'glm']]], + ['highp_5fint16_5ft_862',['highp_int16_t',['../a00922.html#gacaea06d0a79ef3172e887a7a6ba434ff',1,'glm']]], + ['highp_5fint32_863',['highp_int32',['../a00922.html#ga84ed04b4e0de18c977e932d617e7c223',1,'glm']]], + ['highp_5fint32_5ft_864',['highp_int32_t',['../a00922.html#ga2c71c8bd9e2fe7d2e93ca250d8b6157f',1,'glm']]], + ['highp_5fint64_865',['highp_int64',['../a00922.html#ga226a8d52b4e3f77aaa6231135e886aac',1,'glm']]], + ['highp_5fint64_5ft_866',['highp_int64_t',['../a00922.html#ga73c6abb280a45feeff60f9accaee91f3',1,'glm']]], + ['highp_5fint8_867',['highp_int8',['../a00922.html#gad0549c902a96a7164e4ac858d5f39dbf',1,'glm']]], + ['highp_5fint8_5ft_868',['highp_int8_t',['../a00922.html#ga1085c50dd8fbeb5e7e609b1c127492a5',1,'glm']]], + ['highp_5fivec1_869',['highp_ivec1',['../a00922.html#gacf8589dd33b79b1637fecd546f4ce4ef',1,'glm']]], + ['highp_5fivec2_870',['highp_ivec2',['../a00922.html#ga9003b53a8b6e86061e9713001e32fb2a',1,'glm']]], + ['highp_5fivec3_871',['highp_ivec3',['../a00922.html#ga53216c727940d2679d1192600bd29282',1,'glm']]], + ['highp_5fivec4_872',['highp_ivec4',['../a00922.html#ga81bd289ae2a99f7b957c1d3d7fba278b',1,'glm']]], + ['highp_5fmat2_873',['highp_mat2',['../a00902.html#ga4d5a0055544a516237dcdace049b143d',1,'glm']]], + ['highp_5fmat2x2_874',['highp_mat2x2',['../a00902.html#ga2352ae43b284c9f71446674c0208c05d',1,'glm']]], + ['highp_5fmat2x3_875',['highp_mat2x3',['../a00902.html#ga7a0e3fe41512b0494e598f5c58722f19',1,'glm']]], + ['highp_5fmat2x4_876',['highp_mat2x4',['../a00902.html#ga61f36a81f2ed1b5f9fc8bc3b26faec8f',1,'glm']]], + ['highp_5fmat3_877',['highp_mat3',['../a00902.html#ga3fd9849f3da5ed6e3decc3fb10a20b3e',1,'glm']]], + ['highp_5fmat3x2_878',['highp_mat3x2',['../a00902.html#ga1eda47a00027ec440eac05d63739c71b',1,'glm']]], + ['highp_5fmat3x3_879',['highp_mat3x3',['../a00902.html#ga2ea82e12f4d7afcfce8f59894d400230',1,'glm']]], + ['highp_5fmat3x4_880',['highp_mat3x4',['../a00902.html#ga6454b3a26ea30f69de8e44c08a63d1b7',1,'glm']]], + ['highp_5fmat4_881',['highp_mat4',['../a00902.html#gad72e13d669d039f12ae5afa23148adc1',1,'glm']]], + ['highp_5fmat4x2_882',['highp_mat4x2',['../a00902.html#gab68b66e6d2c37b804d0baf970fa4f0e5',1,'glm']]], + ['highp_5fmat4x3_883',['highp_mat4x3',['../a00902.html#ga8d5a4e65fb976e4553b84995b95ecb38',1,'glm']]], + ['highp_5fmat4x4_884',['highp_mat4x4',['../a00902.html#ga58cc504be0e3b61c48bc91554a767b9f',1,'glm']]], + ['highp_5fquat_885',['highp_quat',['../a00861.html#gaa2fd8085774376310aeb80588e0eab6e',1,'glm']]], + ['highp_5fu16_886',['highp_u16',['../a00922.html#ga8e62c883d13f47015f3b70ed88751369',1,'glm']]], + ['highp_5fu16vec1_887',['highp_u16vec1',['../a00922.html#gad064202b4cf9a2972475c03de657cb39',1,'glm']]], + ['highp_5fu16vec2_888',['highp_u16vec2',['../a00922.html#ga791b15ceb3f1e09d1a0ec6f3057ca159',1,'glm']]], + ['highp_5fu16vec3_889',['highp_u16vec3',['../a00922.html#gacfd806749008f0ade6ac4bb9dd91082f',1,'glm']]], + ['highp_5fu16vec4_890',['highp_u16vec4',['../a00922.html#ga8a85a3d54a8a9e14fe7a1f96196c4f61',1,'glm']]], + ['highp_5fu32_891',['highp_u32',['../a00922.html#ga7a6f1929464dcc680b16381a4ee5f2cf',1,'glm']]], + ['highp_5fu32vec1_892',['highp_u32vec1',['../a00922.html#ga0e35a565b9036bfc3989f5e23a0792e3',1,'glm']]], + ['highp_5fu32vec2_893',['highp_u32vec2',['../a00922.html#ga2f256334f83fba4c2d219e414b51df6c',1,'glm']]], + ['highp_5fu32vec3_894',['highp_u32vec3',['../a00922.html#gaf14d7a50502464e7cbfa074f24684cb1',1,'glm']]], + ['highp_5fu32vec4_895',['highp_u32vec4',['../a00922.html#ga22166f0da65038b447f3c5e534fff1c2',1,'glm']]], + ['highp_5fu64_896',['highp_u64',['../a00922.html#ga0c181fdf06a309691999926b6690c969',1,'glm']]], + ['highp_5fu64vec1_897',['highp_u64vec1',['../a00922.html#gae4fe774744852c4d7d069be2e05257ab',1,'glm']]], + ['highp_5fu64vec2_898',['highp_u64vec2',['../a00922.html#ga78f77b8b2d17b431ac5a68c0b5d7050d',1,'glm']]], + ['highp_5fu64vec3_899',['highp_u64vec3',['../a00922.html#ga41bdabea6e589029659331ba47eb78c1',1,'glm']]], + ['highp_5fu64vec4_900',['highp_u64vec4',['../a00922.html#ga4f15b41aa24b11cc42ad5798c04a2325',1,'glm']]], + ['highp_5fu8_901',['highp_u8',['../a00922.html#gacd1259f3a9e8d2a9df5be2d74322ef9c',1,'glm']]], + ['highp_5fu8vec1_902',['highp_u8vec1',['../a00922.html#ga8408cb76b6550ff01fa0a3024e7b68d2',1,'glm']]], + ['highp_5fu8vec2_903',['highp_u8vec2',['../a00922.html#ga27585b7c3ab300059f11fcba465f6fd2',1,'glm']]], + ['highp_5fu8vec3_904',['highp_u8vec3',['../a00922.html#ga45721c13b956eb691cbd6c6c1429167a',1,'glm']]], + ['highp_5fu8vec4_905',['highp_u8vec4',['../a00922.html#gae0b75ad0fed8c00ddc0b5ce335d31060',1,'glm']]], + ['highp_5fuint16_906',['highp_uint16',['../a00922.html#ga746dc6da204f5622e395f492997dbf57',1,'glm']]], + ['highp_5fuint16_5ft_907',['highp_uint16_t',['../a00922.html#gacf54c3330ef60aa3d16cb676c7bcb8c7',1,'glm']]], + ['highp_5fuint32_908',['highp_uint32',['../a00922.html#ga256b12b650c3f2fb86878fd1c5db8bc3',1,'glm']]], + ['highp_5fuint32_5ft_909',['highp_uint32_t',['../a00922.html#gae978599c9711ac263ba732d4ac225b0e',1,'glm']]], + ['highp_5fuint64_910',['highp_uint64',['../a00922.html#gaa38d732f5d4a7bc42a1b43b9d3c141ce',1,'glm']]], + ['highp_5fuint64_5ft_911',['highp_uint64_t',['../a00922.html#gaa46172d7dc1c7ffe3e78107ff88adf08',1,'glm']]], + ['highp_5fuint8_912',['highp_uint8',['../a00922.html#ga97432f9979e73e66567361fd01e4cffb',1,'glm']]], + ['highp_5fuint8_5ft_913',['highp_uint8_t',['../a00922.html#gac4e00a26a2adb5f2c0a7096810df29e5',1,'glm']]], + ['highp_5fumat2_914',['highp_umat2',['../a00912.html#ga42cbce64c4c1cd121b8437daa6e110de',1,'glm']]], + ['highp_5fumat2x2_915',['highp_umat2x2',['../a00912.html#ga2dad0e8e8c909d3f5c74aa981384a7b9',1,'glm']]], + ['highp_5fumat2x3_916',['highp_umat2x3',['../a00912.html#ga2c2bd3cf2b66069fcc70f5ba958ae48a',1,'glm']]], + ['highp_5fumat2x4_917',['highp_umat2x4',['../a00912.html#ga57eed9d47bfb9a454d1310e84b11b3b8',1,'glm']]], + ['highp_5fumat3_918',['highp_umat3',['../a00912.html#gaa1143120339b7d2d469d327662e8a172',1,'glm']]], + ['highp_5fumat3x2_919',['highp_umat3x2',['../a00912.html#gaeed2950bed2c5014c932e78be4164ab6',1,'glm']]], + ['highp_5fumat3x3_920',['highp_umat3x3',['../a00912.html#ga53564c99d65d1dad4835a9286cee0961',1,'glm']]], + ['highp_5fumat3x4_921',['highp_umat3x4',['../a00912.html#gae4c04a557db14157f2627e0a5136843b',1,'glm']]], + ['highp_5fumat4_922',['highp_umat4',['../a00912.html#gaf665e4e78c2cc32a54ab40325738f9c9',1,'glm']]], + ['highp_5fumat4x2_923',['highp_umat4x2',['../a00912.html#ga1a236f645cb1dfb43f6207a46cd59aea',1,'glm']]], + ['highp_5fumat4x3_924',['highp_umat4x3',['../a00912.html#ga730c61696dbb99b9a4be0732091a8fd3',1,'glm']]], + ['highp_5fumat4x4_925',['highp_umat4x4',['../a00912.html#ga0d2e3526972ef22c088a529ebc790023',1,'glm']]], + ['highp_5fuvec1_926',['highp_uvec1',['../a00922.html#ga1379900164b52f6495186b536e63219a',1,'glm']]], + ['highp_5fuvec2_927',['highp_uvec2',['../a00922.html#gaff3354c7f0e39561f3594d496f2d12b1',1,'glm']]], + ['highp_5fuvec3_928',['highp_uvec3',['../a00922.html#gab4c04fa2a3006e977f220f4f58eed009',1,'glm']]], + ['highp_5fuvec4_929',['highp_uvec4',['../a00922.html#ga8d1fff5168a6ef78c138f99a56f0f588',1,'glm']]], + ['highp_5fvec1_930',['highp_vec1',['../a00881.html#ga9e8ed21862a897c156c0b2abca70b1e9',1,'glm']]], + ['highp_5fvec2_931',['highp_vec2',['../a00900.html#gaa92c1954d71b1e7914874bd787b43d1c',1,'glm']]], + ['highp_5fvec3_932',['highp_vec3',['../a00900.html#gaca61dfaccbf2f58f2d8063a4e76b44a9',1,'glm']]], + ['highp_5fvec4_933',['highp_vec4',['../a00900.html#gad281decae52948b82feb3a9db8f63a7b',1,'glm']]], + ['hsvcolor_934',['hsvColor',['../a00930.html#ga789802bec2d4fe0f9741c731b4a8a7d8',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_8.html b/include/glm/doc/api/search/all_8.html new file mode 100644 index 0000000..888e619 --- /dev/null +++ b/include/glm/doc/api/search/all_8.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_8.js b/include/glm/doc/api/search/all_8.js new file mode 100644 index 0000000..519bf0c --- /dev/null +++ b/include/glm/doc/api/search/all_8.js @@ -0,0 +1,146 @@ +var searchData= +[ + ['integer_20functions_935',['Integer functions',['../a00992.html',1,'']]], + ['i16_936',['i16',['../a00922.html#ga3ab5fe184343d394fb6c2723c3ee3699',1,'glm']]], + ['i16mat2_937',['i16mat2',['../a00817.html#gad6e608aaaf7c28f1e659e40b62e1ae07',1,'glm']]], + ['i16mat2x2_938',['i16mat2x2',['../a00817.html#ga47065ee69513dc0289a613eb3c32df60',1,'glm']]], + ['i16mat2x3_939',['i16mat2x3',['../a00819.html#gaa71b21babc9d8a224e92d60703979448',1,'glm']]], + ['i16mat2x4_940',['i16mat2x4',['../a00821.html#ga928a7def71f463e661f197ba9620208b',1,'glm']]], + ['i16mat3_941',['i16mat3',['../a00825.html#ga7b4f37f881ec3362f134bd944560fe3f',1,'glm']]], + ['i16mat3x2_942',['i16mat3x2',['../a00823.html#ga72ee4f64752177f6f5978c6a49cfe3db',1,'glm']]], + ['i16mat3x3_943',['i16mat3x3',['../a00825.html#ga361b2094238f92774c8db5093b44566b',1,'glm']]], + ['i16mat3x4_944',['i16mat3x4',['../a00827.html#ga71beebbf7447d8a32e5cc681d2db7849',1,'glm']]], + ['i16mat4_945',['i16mat4',['../a00833.html#ga6ed05bec8bbe6c06fa9c7dc981c892f4',1,'glm']]], + ['i16mat4x2_946',['i16mat4x2',['../a00829.html#ga1cd9115b5627b6e9c0ce423d450ded3b',1,'glm']]], + ['i16mat4x3_947',['i16mat4x3',['../a00831.html#gae16035341f36e5afd002bdc7fc19ffbd',1,'glm']]], + ['i16mat4x4_948',['i16mat4x4',['../a00833.html#ga3e9865fa750ba5a1f2a78a64d3128e96',1,'glm']]], + ['i16vec1_949',['i16vec1',['../a00883.html#gafe730798732aa7b0647096a004db1b1c',1,'glm']]], + ['i16vec2_950',['i16vec2',['../a00884.html#ga2996630ba7b10535af8e065cf326f761',1,'glm']]], + ['i16vec3_951',['i16vec3',['../a00885.html#gae9c90a867a6026b1f6eab00456f3fb8b',1,'glm']]], + ['i16vec4_952',['i16vec4',['../a00886.html#ga550831bfc26d1e0101c1cb3d79938c06',1,'glm']]], + ['i32_953',['i32',['../a00922.html#ga96faea43ac5f875d2d3ffbf8d213e3eb',1,'glm']]], + ['i32mat2_954',['i32mat2',['../a00817.html#ga29cc4fc2d059a71f654db8ffd6a0d1c8',1,'glm']]], + ['i32mat2x2_955',['i32mat2x2',['../a00817.html#gaf39b46daac3fdc9580a8186d50bdc49b',1,'glm']]], + ['i32mat2x3_956',['i32mat2x3',['../a00819.html#gabda3a64e16d3cf3826b630aee9e01421',1,'glm']]], + ['i32mat2x4_957',['i32mat2x4',['../a00821.html#gac91b19cd25751d92107963f2eb819477',1,'glm']]], + ['i32mat3_958',['i32mat3',['../a00825.html#gaeee8d25ed2061b68720bcb831327ffd4',1,'glm']]], + ['i32mat3x2_959',['i32mat3x2',['../a00823.html#ga57877f8bbc5921651ad29935792f41a0',1,'glm']]], + ['i32mat3x3_960',['i32mat3x3',['../a00825.html#ga75af30ee79bc6f01be007e6762e369aa',1,'glm']]], + ['i32mat3x4_961',['i32mat3x4',['../a00827.html#gaa08c324017c156ad33b5240f38b1e2ae',1,'glm']]], + ['i32mat4_962',['i32mat4',['../a00833.html#gae251517f782cb11ff0d9b79fcd13540e',1,'glm']]], + ['i32mat4x2_963',['i32mat4x2',['../a00829.html#ga9b4aeda66c6da4e92c97977ac9c8423c',1,'glm']]], + ['i32mat4x3_964',['i32mat4x3',['../a00831.html#gaeac0a48bdf2051127669ea8f52661b1f',1,'glm']]], + ['i32mat4x4_965',['i32mat4x4',['../a00833.html#ga70bc41754e5d5a63ea90b04fd29a7e38',1,'glm']]], + ['i32vec1_966',['i32vec1',['../a00883.html#ga54b8a4e0f5a7203a821bf8e9c1265bcf',1,'glm']]], + ['i32vec2_967',['i32vec2',['../a00884.html#ga8b44026374982dcd1e52d22bac99247e',1,'glm']]], + ['i32vec3_968',['i32vec3',['../a00885.html#ga7f526b5cccef126a2ebcf9bdd890394e',1,'glm']]], + ['i32vec4_969',['i32vec4',['../a00886.html#ga866a05905c49912309ed1fa5f5980e61',1,'glm']]], + ['i64_970',['i64',['../a00922.html#gadb997e409103d4da18abd837e636a496',1,'glm']]], + ['i64mat2_971',['i64mat2',['../a00817.html#ga991f07e78a27044a26b55befae3a769a',1,'glm']]], + ['i64mat2x2_972',['i64mat2x2',['../a00817.html#ga41c7a91e1c92094912f8bc5b823c1ce7',1,'glm']]], + ['i64mat2x3_973',['i64mat2x3',['../a00819.html#ga086f53f13530ed954ed6845c27e2f765',1,'glm']]], + ['i64mat2x4_974',['i64mat2x4',['../a00821.html#ga2b589f8bcde400f09bd606476c715f28',1,'glm']]], + ['i64mat3_975',['i64mat3',['../a00825.html#ga94bbe4d004cd4507d370e529540e5c40',1,'glm']]], + ['i64mat3x2_976',['i64mat3x2',['../a00823.html#ga87de638d4758ece144b404acbdbaaa74',1,'glm']]], + ['i64mat3x3_977',['i64mat3x3',['../a00825.html#ga2d994eec234bb2f1f12d6c89519099e3',1,'glm']]], + ['i64mat3x4_978',['i64mat3x4',['../a00827.html#gae298b2ac37981b232789b5a313c81ccc',1,'glm']]], + ['i64mat4_979',['i64mat4',['../a00833.html#ga137dbc4ffc97899595676e737df3de71',1,'glm']]], + ['i64mat4x2_980',['i64mat4x2',['../a00829.html#gaa078eeba33f2ee96c60cf7cab7299e66',1,'glm']]], + ['i64mat4x3_981',['i64mat4x3',['../a00831.html#gafa6ab9b0940008de60ee78bbebba2306',1,'glm']]], + ['i64mat4x4_982',['i64mat4x4',['../a00833.html#gaa56fe396b8efe61daadfd55782e1df93',1,'glm']]], + ['i64vec1_983',['i64vec1',['../a00883.html#ga2b65767f8b5aed1bd1cf86c541662b50',1,'glm']]], + ['i64vec2_984',['i64vec2',['../a00884.html#ga48310188e1d0c616bf8d78c92447523b',1,'glm']]], + ['i64vec3_985',['i64vec3',['../a00885.html#ga667948cfe6fb3d6606c750729ec49f77',1,'glm']]], + ['i64vec4_986',['i64vec4',['../a00886.html#gaa4e31c3d9de067029efeb161a44b0232',1,'glm']]], + ['i8_987',['i8',['../a00922.html#ga302ec977b0c0c3ea245b6c9275495355',1,'glm']]], + ['i8mat2_988',['i8mat2',['../a00817.html#ga982fb047723bc5fd4dd2106d8bcf0dfe',1,'glm']]], + ['i8mat2x2_989',['i8mat2x2',['../a00817.html#ga2588340ecf113b18a1bb08c20f7c2989',1,'glm']]], + ['i8mat2x3_990',['i8mat2x3',['../a00819.html#ga07be66899f390d383f7c9b59d03a711d',1,'glm']]], + ['i8mat2x4_991',['i8mat2x4',['../a00821.html#ga16f963e233d40cae586c0670605acf64',1,'glm']]], + ['i8mat3_992',['i8mat3',['../a00825.html#ga09dd4ed01cbdbaabea98ee994b6ae578',1,'glm']]], + ['i8mat3x2_993',['i8mat3x2',['../a00823.html#ga457df325132fb92e9f023fae7ee6ecec',1,'glm']]], + ['i8mat3x3_994',['i8mat3x3',['../a00825.html#gac6702a5f34779f892e8bcd4f9db8cc96',1,'glm']]], + ['i8mat3x4_995',['i8mat3x4',['../a00827.html#ga92da3ce32ed1bdede71bc7028a856c25',1,'glm']]], + ['i8mat4_996',['i8mat4',['../a00833.html#ga5a13150a001c529121c442acf997c1da',1,'glm']]], + ['i8mat4x2_997',['i8mat4x2',['../a00829.html#ga9a40d61581a8f4db0c94eb6507fc441a',1,'glm']]], + ['i8mat4x3_998',['i8mat4x3',['../a00831.html#ga81ddc1238242fea1d7462050e5609889',1,'glm']]], + ['i8mat4x4_999',['i8mat4x4',['../a00833.html#gace28977d2e296a7d23fa466f55b114f7',1,'glm']]], + ['i8vec1_1000',['i8vec1',['../a00883.html#ga7e80d927ff0a3861ced68dfff8a4020b',1,'glm']]], + ['i8vec2_1001',['i8vec2',['../a00884.html#gad06935764d78f43f9d542c784c2212ec',1,'glm']]], + ['i8vec3_1002',['i8vec3',['../a00885.html#ga5a08d36cf7917cd19d081a603d0eae3e',1,'glm']]], + ['i8vec4_1003',['i8vec4',['../a00886.html#ga4177a44206121dabc8c4ff1c0f544574',1,'glm']]], + ['identity_1004',['identity',['../a00837.html#ga81696f2b8d1db02ea1aff8da8f269314',1,'glm']]], + ['imat2_1005',['imat2',['../a00816.html#gaea0d06425d5020c7302df6cb412b9477',1,'glm']]], + ['imat2x2_1006',['imat2x2',['../a00816.html#ga8f9969e26ffeef99610abfd22577f5f1',1,'glm']]], + ['imat2x3_1007',['imat2x3',['../a00818.html#ga73766aa25add75d432e8d12890558edf',1,'glm']]], + ['imat2x4_1008',['imat2x4',['../a00820.html#ga4b0d247c6fe04618569092682ce26934',1,'glm']]], + ['imat3_1009',['imat3',['../a00824.html#gaf317be550c62aa66309b251526ee40ec',1,'glm']]], + ['imat3x2_1010',['imat3x2',['../a00822.html#gad47291b91ea6304a7c7e2c02caf5fad1',1,'glm']]], + ['imat3x3_1011',['imat3x3',['../a00824.html#gab82b19595eb6bad1bdc164b8d1ace60f',1,'glm']]], + ['imat3x4_1012',['imat3x4',['../a00826.html#ga03dcdd1a5cc6a0f59afaee28f68649c2',1,'glm']]], + ['imat4_1013',['imat4',['../a00832.html#gace7a6b13b37c7a530c676caf07e8876c',1,'glm']]], + ['imat4x2_1014',['imat4x2',['../a00828.html#ga422267d95355713db46e782b39746c0a',1,'glm']]], + ['imat4x3_1015',['imat4x3',['../a00830.html#ga5b02c51f7ee5924911b3d82faf3e2cc2',1,'glm']]], + ['imat4x4_1016',['imat4x4',['../a00832.html#ga76545537d9bf3a1be1458dd0a5ebbe1d',1,'glm']]], + ['imulextended_1017',['imulExtended',['../a00992.html#ga3d262b3633cde7a67530c6172424ce37',1,'glm']]], + ['infiniteperspective_1018',['infinitePerspective',['../a00814.html#ga44fa38a18349450325cae2661bb115ca',1,'glm']]], + ['infiniteperspectivelh_1019',['infinitePerspectiveLH',['../a00814.html#ga3201b30f5b3ea0f933246d87bfb992a9',1,'glm']]], + ['infiniteperspectivelh_5fno_1020',['infinitePerspectiveLH_NO',['../a00814.html#ga8034759052b6d0f27fcb9e6d94d81d00',1,'glm']]], + ['infiniteperspectivelh_5fzo_1021',['infinitePerspectiveLH_ZO',['../a00814.html#gac814a56c1b1120aab3d10c8e6e955a89',1,'glm']]], + ['infiniteperspectiverh_1022',['infinitePerspectiveRH',['../a00814.html#ga99672ffe5714ef478dab2437255fe7e1',1,'glm']]], + ['infiniteperspectiverh_5fno_1023',['infinitePerspectiveRH_NO',['../a00814.html#gaf50823c0bed37d4f07891888f42a3a06',1,'glm']]], + ['infiniteperspectiverh_5fzo_1024',['infinitePerspectiveRH_ZO',['../a00814.html#gac8ab661bde7995c977393c5e69cb9dae',1,'glm']]], + ['int1_1025',['int1',['../a00933.html#ga0670a2111b5e4a6410bd027fa0232fc3',1,'glm']]], + ['int16_1026',['int16',['../a00868.html#ga259fa4834387bd68627ddf37bb3ebdb9',1,'glm']]], + ['int16_5ft_1027',['int16_t',['../a00922.html#gae8f5e3e964ca2ae240adc2c0d74adede',1,'glm']]], + ['int1x1_1028',['int1x1',['../a00933.html#ga056ffe02d3a45af626f8e62221881c7a',1,'glm']]], + ['int2_1029',['int2',['../a00933.html#gafe3a8fd56354caafe24bfe1b1e3ad22a',1,'glm']]], + ['int2x2_1030',['int2x2',['../a00933.html#ga4e5ce477c15836b21e3c42daac68554d',1,'glm']]], + ['int2x3_1031',['int2x3',['../a00933.html#ga197ded5ad8354f6b6fb91189d7a269b3',1,'glm']]], + ['int2x4_1032',['int2x4',['../a00933.html#ga2749d59a7fddbac44f34ba78e57ef807',1,'glm']]], + ['int3_1033',['int3',['../a00933.html#ga909c38a425f215a50c847145d7da09f0',1,'glm']]], + ['int32_1034',['int32',['../a00868.html#ga43d43196463bde49cb067f5c20ab8481',1,'glm']]], + ['int32_5ft_1035',['int32_t',['../a00922.html#ga042ef09ff2f0cb24a36f541bcb3a3710',1,'glm']]], + ['int3x2_1036',['int3x2',['../a00933.html#gaa4cbe16a92cf3664376c7a2fc5126aa8',1,'glm']]], + ['int3x3_1037',['int3x3',['../a00933.html#ga15c9649286f0bf431bdf9b3509580048',1,'glm']]], + ['int3x4_1038',['int3x4',['../a00933.html#gaacac46ddc7d15d0f9529d05c92946a0f',1,'glm']]], + ['int4_1039',['int4',['../a00933.html#gaecdef18c819c205aeee9f94dc93de56a',1,'glm']]], + ['int4x2_1040',['int4x2',['../a00933.html#ga97a39dd9bc7d572810d80b8467cbffa1',1,'glm']]], + ['int4x3_1041',['int4x3',['../a00933.html#gae4a2c53f14aeec9a17c2b81142b7e82d',1,'glm']]], + ['int4x4_1042',['int4x4',['../a00933.html#ga04dee1552424198b8f58b377c2ee00d8',1,'glm']]], + ['int64_1043',['int64',['../a00868.html#gaff5189f97f9e842d9636a0f240001b2e',1,'glm']]], + ['int64_5ft_1044',['int64_t',['../a00922.html#ga322a7d7d2c2c68994dc872a33de63c61',1,'glm']]], + ['int8_1045',['int8',['../a00868.html#ga1b956fe1df85f3c132b21edb4e116458',1,'glm']]], + ['int8_5ft_1046',['int8_t',['../a00922.html#ga4bf09d8838a86866b39ee6e109341645',1,'glm']]], + ['intbitstofloat_1047',['intBitsToFloat',['../a00812.html#gad780bbd088b64d823ad7049c42b157da',1,'glm::intBitsToFloat(int v)'],['../a00812.html#ga7a0a8291a1cf3e1c2aee33030a1bd7b0',1,'glm::intBitsToFloat(vec< L, int, Q > const &v)']]], + ['integer_2ehpp_1048',['integer.hpp',['../a00545.html',1,'']]], + ['intermediate_1049',['intermediate',['../a00972.html#gacc5cd5f3e78de61d141c2355417424de',1,'glm']]], + ['interpolate_1050',['interpolate',['../a00956.html#ga4e67863d150724b10c1ac00972dc958c',1,'glm']]], + ['intersect_2ehpp_1051',['intersect.hpp',['../a00647.html',1,'']]], + ['intersectlinesphere_1052',['intersectLineSphere',['../a00949.html#ga9c68139f3d8a4f3d7fe45f9dbc0de5b7',1,'glm']]], + ['intersectlinetriangle_1053',['intersectLineTriangle',['../a00949.html#ga9d29b9b3acb504d43986502f42740df4',1,'glm']]], + ['intersectrayplane_1054',['intersectRayPlane',['../a00949.html#gad3697a9700ea379739a667ea02573488',1,'glm']]], + ['intersectraysphere_1055',['intersectRaySphere',['../a00949.html#ga69367b81be6a589e3a1f9661b4430a27',1,'glm::intersectRaySphere(genType const &rayStarting, genType const &rayNormalizedDirection, genType const &sphereCenter, typename genType::value_type const sphereRadiusSquared, typename genType::value_type &intersectionDistance)'],['../a00949.html#gad28c00515b823b579c608aafa1100c1d',1,'glm::intersectRaySphere(genType const &rayStarting, genType const &rayNormalizedDirection, genType const &sphereCenter, const typename genType::value_type sphereRadius, genType &intersectionPosition, genType &intersectionNormal)']]], + ['intersectraytriangle_1056',['intersectRayTriangle',['../a00949.html#ga65bf2c594482f04881c36bc761f9e946',1,'glm']]], + ['inverse_1057',['inverse',['../a00856.html#ga50db49335150de11562052667537e517',1,'glm::inverse(qua< T, Q > const &q)'],['../a00935.html#ga070f521a953f6461af4ab4cf8ccbf27e',1,'glm::inverse(tdualquat< T, Q > const &q)'],['../a00993.html#gaed509fe8129b01e4f20a6d0de5690091',1,'glm::inverse(mat< C, R, T, Q > const &m)']]], + ['inversesqrt_1058',['inversesqrt',['../a00813.html#ga523dd6bd0ad9f75ae2d24c8e4b017b7a',1,'glm']]], + ['inversetranspose_1059',['inverseTranspose',['../a00913.html#gab213cd0e3ead5f316d583f99d6312008',1,'glm']]], + ['io_2ehpp_1060',['io.hpp',['../a00650.html',1,'']]], + ['iround_1061',['iround',['../a00866.html#gaa45ff5782fde5182afa7ab211f9758a3',1,'glm::iround(genType const &x)'],['../a00877.html#ga57824268ebe13a922f1d69a5d37f637f',1,'glm::iround(vec< L, T, Q > const &x)']]], + ['iscompnull_1062',['isCompNull',['../a00990.html#gaf6ec1688eab7442fe96fe4941d5d4e76',1,'glm']]], + ['isdenormal_1063',['isdenormal',['../a00932.html#ga74aa7c7462245d83bd5a9edf9c6c2d91',1,'glm']]], + ['isfinite_1064',['isfinite',['../a00933.html#gaf4b04dcd3526996d68c1bfe17bfc8657',1,'glm::isfinite(genType const &x)'],['../a00933.html#gac3b12b8ac3014418fe53c299478b6603',1,'glm::isfinite(const vec< 1, T, Q > &x)'],['../a00933.html#ga8e76dc3e406ce6a4155c2b12a2e4b084',1,'glm::isfinite(const vec< 2, T, Q > &x)'],['../a00933.html#ga929ef27f896d902c1771a2e5e150fc97',1,'glm::isfinite(const vec< 3, T, Q > &x)'],['../a00933.html#ga19925badbe10ce61df1d0de00be0b5ad',1,'glm::isfinite(const vec< 4, T, Q > &x)'],['../a00933.html#gac5ce300d95da1649147adddbc80af5e5',1,'glm::isfinite(const qua< T, Q > &x)']]], + ['isidentity_1065',['isIdentity',['../a00959.html#gaee935d145581c82e82b154ccfd78ad91',1,'glm']]], + ['isinf_1066',['isinf',['../a00812.html#ga2885587c23a106301f20443896365b62',1,'glm::isinf(vec< L, T, Q > const &x)'],['../a00856.html#ga45722741ea266b4e861938b365c5f362',1,'glm::isinf(qua< T, Q > const &x)']]], + ['ismultiple_1067',['isMultiple',['../a00869.html#gaec593d33956a8fe43f78fccc63ddde9a',1,'glm::isMultiple(genIUType v, genIUType Multiple)'],['../a00887.html#ga354caf634ef333d9cb4844407416256a',1,'glm::isMultiple(vec< L, T, Q > const &v, T Multiple)'],['../a00887.html#gabb4360e38c0943d8981ba965dead519d',1,'glm::isMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['isnan_1068',['isnan',['../a00812.html#ga29ef934c00306490de837b4746b4e14d',1,'glm::isnan(vec< L, T, Q > const &x)'],['../a00856.html#ga1bb55f8963616502e96dc564384d8a03',1,'glm::isnan(qua< T, Q > const &x)']]], + ['isnormalized_1069',['isNormalized',['../a00959.html#gae785af56f47ce220a1609f7f84aa077a',1,'glm::isNormalized(mat< 2, 2, T, Q > const &m, T const &epsilon)'],['../a00959.html#gaa068311695f28f5f555f5f746a6a66fb',1,'glm::isNormalized(mat< 3, 3, T, Q > const &m, T const &epsilon)'],['../a00959.html#ga4d9bb4d0465df49fedfad79adc6ce4ad',1,'glm::isNormalized(mat< 4, 4, T, Q > const &m, T const &epsilon)'],['../a00990.html#gac3c974f459fd75453134fad7ae89a39e',1,'glm::isNormalized(vec< L, T, Q > const &v, T const &epsilon)']]], + ['isnull_1070',['isNull',['../a00959.html#ga9790ec222ce948c0ff0d8ce927340dba',1,'glm::isNull(mat< 2, 2, T, Q > const &m, T const &epsilon)'],['../a00959.html#gae14501c6b14ccda6014cc5350080103d',1,'glm::isNull(mat< 3, 3, T, Q > const &m, T const &epsilon)'],['../a00959.html#ga2b98bb30a9fefa7cdea5f1dcddba677b',1,'glm::isNull(mat< 4, 4, T, Q > const &m, T const &epsilon)'],['../a00990.html#gab4a3637dbcb4bb42dc55caea7a1e0495',1,'glm::isNull(vec< L, T, Q > const &v, T const &epsilon)']]], + ['isorthogonal_1071',['isOrthogonal',['../a00959.html#ga58f3289f74dcab653387dd78ad93ca40',1,'glm']]], + ['ispoweroftwo_1072',['isPowerOfTwo',['../a00869.html#gadf491730354aa7da67fbe23d4d688763',1,'glm::isPowerOfTwo(genIUType v)'],['../a00887.html#gabf2b61ded7049bcb13e25164f832a290',1,'glm::isPowerOfTwo(vec< L, T, Q > const &v)']]], + ['iteration_2ehpp_1073',['iteration.hpp',['../a00653.html',1,'']]], + ['ivec1_1074',['ivec1',['../a00882.html#gac5197e18f85a147ad178c1a786afcc4d',1,'glm']]], + ['ivec2_1075',['ivec2',['../a00899.html#gaed4cbdb97920de4fabfdff438379ba40',1,'glm']]], + ['ivec3_1076',['ivec3',['../a00899.html#gad540fb5cf526e14b4729c2cb34e7b962',1,'glm']]], + ['ivec4_1077',['ivec4',['../a00899.html#ga791d3c7534500f15ef3eb97113f3f82a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_9.html b/include/glm/doc/api/search/all_9.html new file mode 100644 index 0000000..dc988f4 --- /dev/null +++ b/include/glm/doc/api/search/all_9.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_9.js b/include/glm/doc/api/search/all_9.js new file mode 100644 index 0000000..62d7658 --- /dev/null +++ b/include/glm/doc/api/search/all_9.js @@ -0,0 +1,214 @@ +var searchData= +[ + ['l1norm_1078',['l1Norm',['../a00962.html#gae2fc0b2aa967bebfd6a244700bff6997',1,'glm::l1Norm(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)'],['../a00962.html#ga1a7491e2037ceeb37f83ce41addfc0be',1,'glm::l1Norm(vec< 3, T, Q > const &v)']]], + ['l2norm_1079',['l2Norm',['../a00962.html#ga41340b2ef40a9307ab0f137181565168',1,'glm::l2Norm(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)'],['../a00962.html#gae288bde8f0e41fb4ed62e65137b18cba',1,'glm::l2Norm(vec< 3, T, Q > const &x)']]], + ['ldexp_1080',['ldexp',['../a00812.html#gac3010e0a0c35a1b514540f2fb579c58c',1,'glm']]], + ['lefthanded_1081',['leftHanded',['../a00946.html#ga6f1bad193b9a3b048543d1935cf04dd3',1,'glm']]], + ['length_1082',['length',['../a00862.html#gab703732449be6c7199369b3f9a91ed38',1,'glm::length(qua< T, Q > const &q)'],['../a00897.html#ga0cdabbb000834d994a1d6dc56f8f5263',1,'glm::length(vec< L, T, Q > const &x)']]], + ['length2_1083',['length2',['../a00962.html#ga8d1789651050adb7024917984b41c3de',1,'glm::length2(vec< L, T, Q > const &x)'],['../a00972.html#ga08eb643306c5ba9211a81b322bc89543',1,'glm::length2(qua< T, Q > const &q)']]], + ['lerp_1084',['lerp',['../a00856.html#gaacd3d0591852faa4bc291b61da88ad44',1,'glm::lerp(qua< T, Q > const &x, qua< T, Q > const &y, T a)'],['../a00933.html#ga5494ba3a95ea6594c86fc75236886864',1,'glm::lerp(T x, T y, T a)'],['../a00933.html#gaa551c0a0e16d2d4608e49f7696df897f',1,'glm::lerp(const vec< 2, T, Q > &x, const vec< 2, T, Q > &y, T a)'],['../a00933.html#ga44a8b5fd776320f1713413dec959b32a',1,'glm::lerp(const vec< 3, T, Q > &x, const vec< 3, T, Q > &y, T a)'],['../a00933.html#ga89ac8e000199292ec7875519d27e214b',1,'glm::lerp(const vec< 4, T, Q > &x, const vec< 4, T, Q > &y, T a)'],['../a00933.html#gaf68de5baf72d16135368b8ef4f841604',1,'glm::lerp(const vec< 2, T, Q > &x, const vec< 2, T, Q > &y, const vec< 2, T, Q > &a)'],['../a00933.html#ga4ae1a616c8540a2649eab8e0cd051bb3',1,'glm::lerp(const vec< 3, T, Q > &x, const vec< 3, T, Q > &y, const vec< 3, T, Q > &a)'],['../a00933.html#gab5477ab69c40de4db5d58d3359529724',1,'glm::lerp(const vec< 4, T, Q > &x, const vec< 4, T, Q > &y, const vec< 4, T, Q > &a)'],['../a00935.html#gace8380112d16d33f520839cb35a4d173',1,'glm::lerp(tdualquat< T, Q > const &x, tdualquat< T, Q > const &y, T const &a)']]], + ['lessthan_1085',['lessThan',['../a00917.html#gae0ed978b5c2588d53b220e9ceebaca0b',1,'glm::lessThan(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00996.html#gae90ed1592c395f93e3f3dfce6b2f39c6',1,'glm::lessThan(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['lessthanequal_1086',['lessThanEqual',['../a00917.html#ga3ee1ffe56e5428f659c51a5bfd67ab33',1,'glm::lessThanEqual(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00996.html#gab0bdafc019d227257ff73fb5bcca1718',1,'glm::lessThanEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['levels_1087',['levels',['../a00983.html#gaa8c377f4e63486db4fa872d77880da73',1,'glm']]], + ['lineargradient_1088',['linearGradient',['../a00945.html#ga849241df1e55129b8ce9476200307419',1,'glm']]], + ['linearinterpolation_1089',['linearInterpolation',['../a00936.html#ga290c3e47cb0a49f2e8abe90b1872b649',1,'glm']]], + ['linearrand_1090',['linearRand',['../a00918.html#ga04e241ab88374a477a2c2ceadd2fa03d',1,'glm::linearRand(genType Min, genType Max)'],['../a00918.html#ga94731130c298a9ff5e5025fdee6d97a0',1,'glm::linearRand(vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)']]], + ['lmaxnorm_1091',['lMaxNorm',['../a00962.html#gad58a8231fc32e38104a9e1c4d3c0cb64',1,'glm::lMaxNorm(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)'],['../a00962.html#ga6968a324837a8e899396d44de23d5aae',1,'glm::lMaxNorm(vec< 3, T, Q > const &x)']]], + ['ln_5fln_5ftwo_1092',['ln_ln_two',['../a00908.html#gaca94292c839ed31a405ab7a81ae7e850',1,'glm']]], + ['ln_5ften_1093',['ln_ten',['../a00908.html#gaf97ebc6c059ffd788e6c4946f71ef66c',1,'glm']]], + ['ln_5ftwo_1094',['ln_two',['../a00908.html#ga24f4d27765678116f41a2f336ab7975c',1,'glm']]], + ['log_1095',['log',['../a00813.html#ga918c9f3fd086ce20e6760c903bd30fa9',1,'glm::log(vec< L, T, Q > const &v)'],['../a00864.html#gaa5f7b20e296671b16ce25a2ab7ad5473',1,'glm::log(qua< T, Q > const &q)'],['../a00952.html#ga60a7b0a401da660869946b2b77c710c9',1,'glm::log(genType const &x, genType const &base)']]], + ['log2_1096',['log2',['../a00813.html#ga5a5bd81210e6b0c0c6038f637a8185e3',1,'glm']]], + ['log_5fbase_2ehpp_1097',['log_base.hpp',['../a00656.html',1,'']]], + ['lookat_1098',['lookAt',['../a00837.html#gaa64aa951a0e99136bba9008d2b59c78e',1,'glm']]], + ['lookatlh_1099',['lookAtLH',['../a00837.html#gab2c09e25b0a16d3a9d89cc85bbae41b0',1,'glm']]], + ['lookatrh_1100',['lookAtRH',['../a00837.html#gacfa12c8889c754846bc20c65d9b5c701',1,'glm']]], + ['lowestbitvalue_1101',['lowestBitValue',['../a00927.html#ga2ff6568089f3a9b67f5c30918855fc6f',1,'glm']]], + ['lowp_5fbvec1_1102',['lowp_bvec1',['../a00876.html#ga24a3d364e2ddd444f5b9e7975bbef8f9',1,'glm']]], + ['lowp_5fbvec2_1103',['lowp_bvec2',['../a00900.html#ga5a5452140650988b94d5716e4d872465',1,'glm']]], + ['lowp_5fbvec3_1104',['lowp_bvec3',['../a00900.html#ga79e0922a977662a8fd39d7829be3908b',1,'glm']]], + ['lowp_5fbvec4_1105',['lowp_bvec4',['../a00900.html#ga15ac87724048ab7169bb5d3572939dd3',1,'glm']]], + ['lowp_5fddualquat_1106',['lowp_ddualquat',['../a00935.html#gab4c5103338af3dac7e0fbc86895a3f1a',1,'glm']]], + ['lowp_5fdmat2_1107',['lowp_dmat2',['../a00902.html#gad8e2727a6e7aa68280245bb0022118e1',1,'glm']]], + ['lowp_5fdmat2x2_1108',['lowp_dmat2x2',['../a00902.html#gac61b94f5d9775f83f321bac899322fe2',1,'glm']]], + ['lowp_5fdmat2x3_1109',['lowp_dmat2x3',['../a00902.html#gaf6bf2f5bde7ad5b9c289f777b93094af',1,'glm']]], + ['lowp_5fdmat2x4_1110',['lowp_dmat2x4',['../a00902.html#ga97507a31ecee8609887d0f23bbde92c7',1,'glm']]], + ['lowp_5fdmat3_1111',['lowp_dmat3',['../a00902.html#ga0cab80beee64a5f8d2ae4e823983063a',1,'glm']]], + ['lowp_5fdmat3x2_1112',['lowp_dmat3x2',['../a00902.html#ga1e0ea3fba496bc7c6f620d2590acb66b',1,'glm']]], + ['lowp_5fdmat3x3_1113',['lowp_dmat3x3',['../a00902.html#gac017848a9df570f60916a21a297b1e8e',1,'glm']]], + ['lowp_5fdmat3x4_1114',['lowp_dmat3x4',['../a00902.html#ga93add35d2a44c5830978b827e8c295e8',1,'glm']]], + ['lowp_5fdmat4_1115',['lowp_dmat4',['../a00902.html#ga708bc5b91bbfedd21debac8dcf2a64cd',1,'glm']]], + ['lowp_5fdmat4x2_1116',['lowp_dmat4x2',['../a00902.html#ga382dc5295cead78766239a8457abfa98',1,'glm']]], + ['lowp_5fdmat4x3_1117',['lowp_dmat4x3',['../a00902.html#ga3d7ea07da7c6e5c81a3f4c8b3d44056e',1,'glm']]], + ['lowp_5fdmat4x4_1118',['lowp_dmat4x4',['../a00902.html#ga5b0413198b7e9f061f7534a221c9dac9',1,'glm']]], + ['lowp_5fdquat_1119',['lowp_dquat',['../a00858.html#ga9e6e5f42e67dd5877350ba485c191f1c',1,'glm']]], + ['lowp_5fdualquat_1120',['lowp_dualquat',['../a00935.html#gade05d29ebd4deea0f883d0e1bb4169aa',1,'glm']]], + ['lowp_5fdvec1_1121',['lowp_dvec1',['../a00879.html#gaf906eb86b6e96c35138d0e4928e1435a',1,'glm']]], + ['lowp_5fdvec2_1122',['lowp_dvec2',['../a00900.html#ga108086730d086b7f6f7a033955dfb9c3',1,'glm']]], + ['lowp_5fdvec3_1123',['lowp_dvec3',['../a00900.html#ga42c518b2917e19ce6946a84c64a3a4b2',1,'glm']]], + ['lowp_5fdvec4_1124',['lowp_dvec4',['../a00900.html#ga0b4432cb8d910e406576d10d802e190d',1,'glm']]], + ['lowp_5ff32_1125',['lowp_f32',['../a00922.html#gaeea53879fc327293cf3352a409b7867b',1,'glm']]], + ['lowp_5ff32mat2_1126',['lowp_f32mat2',['../a00922.html#ga52409bc6d4a2ce3421526c069220d685',1,'glm']]], + ['lowp_5ff32mat2x2_1127',['lowp_f32mat2x2',['../a00922.html#ga1d091b6abfba1772450e1745a06525bc',1,'glm']]], + ['lowp_5ff32mat2x3_1128',['lowp_f32mat2x3',['../a00922.html#ga961ccb34cd1a5654c772c8709e001dc5',1,'glm']]], + ['lowp_5ff32mat2x4_1129',['lowp_f32mat2x4',['../a00922.html#gacc6bf0209dda0c7c14851a646071c974',1,'glm']]], + ['lowp_5ff32mat3_1130',['lowp_f32mat3',['../a00922.html#ga4187f89f196505b40e63f516139511e5',1,'glm']]], + ['lowp_5ff32mat3x2_1131',['lowp_f32mat3x2',['../a00922.html#gac53f9d7ab04eace67adad026092fb1e8',1,'glm']]], + ['lowp_5ff32mat3x3_1132',['lowp_f32mat3x3',['../a00922.html#ga841211b641cff1fcf861bdb14e5e4abc',1,'glm']]], + ['lowp_5ff32mat3x4_1133',['lowp_f32mat3x4',['../a00922.html#ga21b1b22dec013a72656e3644baf8a1e1',1,'glm']]], + ['lowp_5ff32mat4_1134',['lowp_f32mat4',['../a00922.html#ga766aed2871e6173a81011a877f398f04',1,'glm']]], + ['lowp_5ff32mat4x2_1135',['lowp_f32mat4x2',['../a00922.html#gae6f3fcb702a666de07650c149cfa845a',1,'glm']]], + ['lowp_5ff32mat4x3_1136',['lowp_f32mat4x3',['../a00922.html#gac21eda58a1475449a5709b412ebd776c',1,'glm']]], + ['lowp_5ff32mat4x4_1137',['lowp_f32mat4x4',['../a00922.html#ga4143d129898f91545948c46859adce44',1,'glm']]], + ['lowp_5ff32quat_1138',['lowp_f32quat',['../a00922.html#gaa3ba60ef8f69c6aeb1629594eaa95347',1,'glm']]], + ['lowp_5ff32vec1_1139',['lowp_f32vec1',['../a00922.html#ga43e5b41c834fcaf4db5a831c0e28128e',1,'glm']]], + ['lowp_5ff32vec2_1140',['lowp_f32vec2',['../a00922.html#gaf3b694b2b8ded7e0b9f07b061917e1a0',1,'glm']]], + ['lowp_5ff32vec3_1141',['lowp_f32vec3',['../a00922.html#gaf739a2cd7b81783a43148b53e40d983b',1,'glm']]], + ['lowp_5ff32vec4_1142',['lowp_f32vec4',['../a00922.html#ga4e2e1debe022074ab224c9faf856d374',1,'glm']]], + ['lowp_5ff64_1143',['lowp_f64',['../a00922.html#gabc7a97c07cbfac8e35eb5e63beb4b679',1,'glm']]], + ['lowp_5ff64mat2_1144',['lowp_f64mat2',['../a00922.html#gafc730f6b4242763b0eda0ffa25150292',1,'glm']]], + ['lowp_5ff64mat2x2_1145',['lowp_f64mat2x2',['../a00922.html#ga771fda9109933db34f808d92b9b84d7e',1,'glm']]], + ['lowp_5ff64mat2x3_1146',['lowp_f64mat2x3',['../a00922.html#ga39e90adcffe33264bd608fa9c6bd184b',1,'glm']]], + ['lowp_5ff64mat2x4_1147',['lowp_f64mat2x4',['../a00922.html#ga50265a202fbfe0a25fc70066c31d9336',1,'glm']]], + ['lowp_5ff64mat3_1148',['lowp_f64mat3',['../a00922.html#ga58119a41d143ebaea0df70fe882e8a40',1,'glm']]], + ['lowp_5ff64mat3x2_1149',['lowp_f64mat3x2',['../a00922.html#gab0eb2d65514ee3e49905aa2caad8c0ad',1,'glm']]], + ['lowp_5ff64mat3x3_1150',['lowp_f64mat3x3',['../a00922.html#gac8f8a12ee03105ef8861dc652434e3b7',1,'glm']]], + ['lowp_5ff64mat3x4_1151',['lowp_f64mat3x4',['../a00922.html#gade8d1edfb23996ab6c622e65e3893271',1,'glm']]], + ['lowp_5ff64mat4_1152',['lowp_f64mat4',['../a00922.html#ga7451266e67794bd1125163502bc4a570',1,'glm']]], + ['lowp_5ff64mat4x2_1153',['lowp_f64mat4x2',['../a00922.html#gab0cecb80fd106bc369b9e46a165815ce',1,'glm']]], + ['lowp_5ff64mat4x3_1154',['lowp_f64mat4x3',['../a00922.html#gae731613b25db3a5ef5a05d21e57a57d3',1,'glm']]], + ['lowp_5ff64mat4x4_1155',['lowp_f64mat4x4',['../a00922.html#ga8c9cd734e03cd49674f3e287aa4a6f95',1,'glm']]], + ['lowp_5ff64quat_1156',['lowp_f64quat',['../a00922.html#gaa3ee2bc4af03cc06578b66b3e3f878ae',1,'glm']]], + ['lowp_5ff64vec1_1157',['lowp_f64vec1',['../a00922.html#gaf2d02c5f4d59135b9bc524fe317fd26b',1,'glm']]], + ['lowp_5ff64vec2_1158',['lowp_f64vec2',['../a00922.html#ga4e641a54d70c81eabf56c25c966d04bd',1,'glm']]], + ['lowp_5ff64vec3_1159',['lowp_f64vec3',['../a00922.html#gae7a4711107b7d078fc5f03ce2227b90b',1,'glm']]], + ['lowp_5ff64vec4_1160',['lowp_f64vec4',['../a00922.html#gaa666bb9e6d204d3bea0b3a39a3a335f4',1,'glm']]], + ['lowp_5ffdualquat_1161',['lowp_fdualquat',['../a00935.html#gaa38f671be25a7f3b136a452a8bb42860',1,'glm']]], + ['lowp_5ffloat32_1162',['lowp_float32',['../a00922.html#ga41b0d390bd8cc827323b1b3816ff4bf8',1,'glm']]], + ['lowp_5ffloat32_5ft_1163',['lowp_float32_t',['../a00922.html#gaea881cae4ddc6c0fbf7cc5b08177ca5b',1,'glm']]], + ['lowp_5ffloat64_1164',['lowp_float64',['../a00922.html#ga3714dab2c16a6545a405cb0c3b3aaa6f',1,'glm']]], + ['lowp_5ffloat64_5ft_1165',['lowp_float64_t',['../a00922.html#ga7286a37076a09da140df18bfa75d4e38',1,'glm']]], + ['lowp_5ffmat2_1166',['lowp_fmat2',['../a00922.html#ga5bba0ce31210e274f73efacd3364c03f',1,'glm']]], + ['lowp_5ffmat2x2_1167',['lowp_fmat2x2',['../a00922.html#gab0feb11edd0d3ab3e8ed996d349a5066',1,'glm']]], + ['lowp_5ffmat2x3_1168',['lowp_fmat2x3',['../a00922.html#ga71cdb53801ed4c3aadb3603c04723210',1,'glm']]], + ['lowp_5ffmat2x4_1169',['lowp_fmat2x4',['../a00922.html#gaab217601c74974a84acbca428123ecf7',1,'glm']]], + ['lowp_5ffmat3_1170',['lowp_fmat3',['../a00922.html#ga83079315e230e8f39728f4bf0d2f9a9b',1,'glm']]], + ['lowp_5ffmat3x2_1171',['lowp_fmat3x2',['../a00922.html#ga49b98e7d71804af45d86886a489e633c',1,'glm']]], + ['lowp_5ffmat3x3_1172',['lowp_fmat3x3',['../a00922.html#gaba56275dd04a7a61560b0e8fa5d365b4',1,'glm']]], + ['lowp_5ffmat3x4_1173',['lowp_fmat3x4',['../a00922.html#ga28733aec7288191b314d42154fd0b690',1,'glm']]], + ['lowp_5ffmat4_1174',['lowp_fmat4',['../a00922.html#ga5803cb9ae26399762d8bba9e0b2fc09f',1,'glm']]], + ['lowp_5ffmat4x2_1175',['lowp_fmat4x2',['../a00922.html#ga5868c2dcce41cc3ea5edcaeae239f62c',1,'glm']]], + ['lowp_5ffmat4x3_1176',['lowp_fmat4x3',['../a00922.html#ga5e649bbdb135fbcb4bfe950f4c73a444',1,'glm']]], + ['lowp_5ffmat4x4_1177',['lowp_fmat4x4',['../a00922.html#gac2f5263708ac847b361a9841e74ddf9f',1,'glm']]], + ['lowp_5ffvec1_1178',['lowp_fvec1',['../a00922.html#ga346b2336fff168a7e0df1583aae3e5a5',1,'glm']]], + ['lowp_5ffvec2_1179',['lowp_fvec2',['../a00922.html#ga62a32c31f4e2e8ca859663b6e3289a2d',1,'glm']]], + ['lowp_5ffvec3_1180',['lowp_fvec3',['../a00922.html#ga40b5c557efebb5bb99d6b9aa81095afa',1,'glm']]], + ['lowp_5ffvec4_1181',['lowp_fvec4',['../a00922.html#ga755484ffbe39ae3db2875953ed04e7b7',1,'glm']]], + ['lowp_5fi16_1182',['lowp_i16',['../a00922.html#ga392b673fd10847bfb78fb808c6cf8ff7',1,'glm']]], + ['lowp_5fi16vec1_1183',['lowp_i16vec1',['../a00922.html#ga501a2f313f1c220eef4ab02bdabdc3c6',1,'glm']]], + ['lowp_5fi16vec2_1184',['lowp_i16vec2',['../a00922.html#ga7cac84b520a6b57f2fbd880d3d63c51b',1,'glm']]], + ['lowp_5fi16vec3_1185',['lowp_i16vec3',['../a00922.html#gab69ef9cbc2a9214bf5596c528c801b72',1,'glm']]], + ['lowp_5fi16vec4_1186',['lowp_i16vec4',['../a00922.html#ga1d47d94d17c2406abdd1f087a816e387',1,'glm']]], + ['lowp_5fi32_1187',['lowp_i32',['../a00922.html#ga7ff73a45cea9613ebf1a9fad0b9f82ac',1,'glm']]], + ['lowp_5fi32vec1_1188',['lowp_i32vec1',['../a00922.html#gae31ac3608cf643ceffd6554874bec4a0',1,'glm']]], + ['lowp_5fi32vec2_1189',['lowp_i32vec2',['../a00922.html#ga867a3c2d99ab369a454167d2c0a24dbd',1,'glm']]], + ['lowp_5fi32vec3_1190',['lowp_i32vec3',['../a00922.html#ga5fe17c87ede1b1b4d92454cff4da076d',1,'glm']]], + ['lowp_5fi32vec4_1191',['lowp_i32vec4',['../a00922.html#gac9b2eb4296ffe50a32eacca9ed932c08',1,'glm']]], + ['lowp_5fi64_1192',['lowp_i64',['../a00922.html#ga354736e0c645099cd44c42fb2f87c2b8',1,'glm']]], + ['lowp_5fi64vec1_1193',['lowp_i64vec1',['../a00922.html#gab0f7d875db5f3cc9f3168c5a0ed56437',1,'glm']]], + ['lowp_5fi64vec2_1194',['lowp_i64vec2',['../a00922.html#gab485c48f06a4fdd6b8d58d343bb49f3c',1,'glm']]], + ['lowp_5fi64vec3_1195',['lowp_i64vec3',['../a00922.html#ga5cb1dc9e8d300c2cdb0d7ff2308fa36c',1,'glm']]], + ['lowp_5fi64vec4_1196',['lowp_i64vec4',['../a00922.html#gabb4229a4c1488bf063eed0c45355bb9c',1,'glm']]], + ['lowp_5fi8_1197',['lowp_i8',['../a00922.html#ga552a6bde5e75984efb0f863278da2e54',1,'glm']]], + ['lowp_5fi8vec1_1198',['lowp_i8vec1',['../a00922.html#ga036d6c7ca9fbbdc5f3871bfcb937c85c',1,'glm']]], + ['lowp_5fi8vec2_1199',['lowp_i8vec2',['../a00922.html#gac03e5099d27eeaa74b6016ea435a1df2',1,'glm']]], + ['lowp_5fi8vec3_1200',['lowp_i8vec3',['../a00922.html#gae2f43ace6b5b33ab49516d9e40af1845',1,'glm']]], + ['lowp_5fi8vec4_1201',['lowp_i8vec4',['../a00922.html#ga6d388e9b9aa1b389f0672d9c7dfc61c5',1,'glm']]], + ['lowp_5fimat2_1202',['lowp_imat2',['../a00912.html#gaa0bff0be804142bb16d441aec0a7962e',1,'glm']]], + ['lowp_5fimat2x2_1203',['lowp_imat2x2',['../a00912.html#ga1437ac5564f56cbce31a920f363e166b',1,'glm']]], + ['lowp_5fimat2x3_1204',['lowp_imat2x3',['../a00912.html#ga8ac369996a5362cdf1abf8c36e3172f3',1,'glm']]], + ['lowp_5fimat2x4_1205',['lowp_imat2x4',['../a00912.html#ga6fe559c2ca940c01b91cf8c1de37c026',1,'glm']]], + ['lowp_5fimat3_1206',['lowp_imat3',['../a00912.html#ga69bfe668f4170379fc1f35d82b060c43',1,'glm']]], + ['lowp_5fimat3x2_1207',['lowp_imat3x2',['../a00912.html#gac59ceadfa1b442c50784b5e16523d1a1',1,'glm']]], + ['lowp_5fimat3x3_1208',['lowp_imat3x3',['../a00912.html#gaedb738acb8400e3dd8ab0ea6ee3a60cb',1,'glm']]], + ['lowp_5fimat3x4_1209',['lowp_imat3x4',['../a00912.html#ga05c27e87f62296a72f96d3cc4d9b3b9e',1,'glm']]], + ['lowp_5fimat4_1210',['lowp_imat4',['../a00912.html#gad1e77f7270cad461ca4fcb4c3ec2e98c',1,'glm']]], + ['lowp_5fimat4x2_1211',['lowp_imat4x2',['../a00912.html#ga838ff669fc2f7693f34356481603815a',1,'glm']]], + ['lowp_5fimat4x3_1212',['lowp_imat4x3',['../a00912.html#gaf3951f4c614e337fcd66b7bd43c688fb',1,'glm']]], + ['lowp_5fimat4x4_1213',['lowp_imat4x4',['../a00912.html#gadb109b0a3ddb1471ddff260980eace7d',1,'glm']]], + ['lowp_5fint16_1214',['lowp_int16',['../a00922.html#ga698e36b01167fc0f037889334dce8def',1,'glm']]], + ['lowp_5fint16_5ft_1215',['lowp_int16_t',['../a00922.html#ga8b2cd8d31eb345b2d641d9261c38db1a',1,'glm']]], + ['lowp_5fint32_1216',['lowp_int32',['../a00922.html#ga864aabca5f3296e176e0c3ed9cc16b02',1,'glm']]], + ['lowp_5fint32_5ft_1217',['lowp_int32_t',['../a00922.html#ga0350631d35ff800e6133ac6243b13cbc',1,'glm']]], + ['lowp_5fint64_1218',['lowp_int64',['../a00922.html#gaf645b1a60203b39c0207baff5e3d8c3c',1,'glm']]], + ['lowp_5fint64_5ft_1219',['lowp_int64_t',['../a00922.html#gaebf341fc4a5be233f7dde962c2e33847',1,'glm']]], + ['lowp_5fint8_1220',['lowp_int8',['../a00922.html#ga760bcf26fdb23a2c3ecad3c928a19ae6',1,'glm']]], + ['lowp_5fint8_5ft_1221',['lowp_int8_t',['../a00922.html#ga119c41d73fe9977358174eb3ac1035a3',1,'glm']]], + ['lowp_5fivec1_1222',['lowp_ivec1',['../a00922.html#ga68a0c853c31c372ee8e41358810b0c17',1,'glm']]], + ['lowp_5fivec2_1223',['lowp_ivec2',['../a00922.html#gaf6e144ceb74bc745aee2d2acaf19b1fd',1,'glm']]], + ['lowp_5fivec3_1224',['lowp_ivec3',['../a00922.html#ga0b0ead399b82f280988acb3b8c3f9995',1,'glm']]], + ['lowp_5fivec4_1225',['lowp_ivec4',['../a00922.html#gaec9094fb1d7d627a1410f3a10330df6d',1,'glm']]], + ['lowp_5fmat2_1226',['lowp_mat2',['../a00902.html#gae400c4ce1f5f3e1fa12861b2baed331a',1,'glm']]], + ['lowp_5fmat2x2_1227',['lowp_mat2x2',['../a00902.html#ga2df7cdaf9a571ce7a1b09435f502c694',1,'glm']]], + ['lowp_5fmat2x3_1228',['lowp_mat2x3',['../a00902.html#ga3eee3a74d0f1de8635d846dfb29ec4bb',1,'glm']]], + ['lowp_5fmat2x4_1229',['lowp_mat2x4',['../a00902.html#gade27f8324a16626cbce5d3e7da66b070',1,'glm']]], + ['lowp_5fmat3_1230',['lowp_mat3',['../a00902.html#ga6271ebc85ed778ccc15458c3d86fc854',1,'glm']]], + ['lowp_5fmat3x2_1231',['lowp_mat3x2',['../a00902.html#gaabf6cf90fd31efe25c94965507e98390',1,'glm']]], + ['lowp_5fmat3x3_1232',['lowp_mat3x3',['../a00902.html#ga63362cb4a63fc1be7d2e49cd5d574c84',1,'glm']]], + ['lowp_5fmat3x4_1233',['lowp_mat3x4',['../a00902.html#gac5fc6786688eff02904ca5e7d6960092',1,'glm']]], + ['lowp_5fmat4_1234',['lowp_mat4',['../a00902.html#ga2dedee030500865267cd5851c00c139d',1,'glm']]], + ['lowp_5fmat4x2_1235',['lowp_mat4x2',['../a00902.html#gafa3cdb8f24d09d761ec9ae2a4c7e5e21',1,'glm']]], + ['lowp_5fmat4x3_1236',['lowp_mat4x3',['../a00902.html#ga534c3ef5c3b8fdd8656b6afc205b4b77',1,'glm']]], + ['lowp_5fmat4x4_1237',['lowp_mat4x4',['../a00902.html#ga686468a9a815bd4db8cddae42a6d6b87',1,'glm']]], + ['lowp_5fquat_1238',['lowp_quat',['../a00861.html#gade62c5316c1c11a79c34c00c189558eb',1,'glm']]], + ['lowp_5fu16_1239',['lowp_u16',['../a00922.html#ga504ce1631cb2ac02fcf1d44d8c2aa126',1,'glm']]], + ['lowp_5fu16vec1_1240',['lowp_u16vec1',['../a00922.html#gaa6aab4ee7189b86716f5d7015d43021d',1,'glm']]], + ['lowp_5fu16vec2_1241',['lowp_u16vec2',['../a00922.html#ga2a7d997da9ac29cb931e35bd399f58df',1,'glm']]], + ['lowp_5fu16vec3_1242',['lowp_u16vec3',['../a00922.html#gac0253db6c3d3bae1f591676307a9dd8c',1,'glm']]], + ['lowp_5fu16vec4_1243',['lowp_u16vec4',['../a00922.html#gaa7f00459b9a2e5b2757e70afc0c189e1',1,'glm']]], + ['lowp_5fu32_1244',['lowp_u32',['../a00922.html#ga4f072ada9552e1e480bbb3b1acde5250',1,'glm']]], + ['lowp_5fu32vec1_1245',['lowp_u32vec1',['../a00922.html#gabed3be8dfdc4a0df4bf3271dbd7344c4',1,'glm']]], + ['lowp_5fu32vec2_1246',['lowp_u32vec2',['../a00922.html#gaf7e286e81347011e257ee779524e73b9',1,'glm']]], + ['lowp_5fu32vec3_1247',['lowp_u32vec3',['../a00922.html#gad3ad390560a671b1f676fbf03cd3aa15',1,'glm']]], + ['lowp_5fu32vec4_1248',['lowp_u32vec4',['../a00922.html#ga4502885718742aa238c36a312c3f3f20',1,'glm']]], + ['lowp_5fu64_1249',['lowp_u64',['../a00922.html#ga30069d1f02b19599cbfadf98c23ac6ed',1,'glm']]], + ['lowp_5fu64vec1_1250',['lowp_u64vec1',['../a00922.html#ga859be7b9d3a3765c1cafc14dbcf249a6',1,'glm']]], + ['lowp_5fu64vec2_1251',['lowp_u64vec2',['../a00922.html#ga581485db4ba6ddb501505ee711fd8e42',1,'glm']]], + ['lowp_5fu64vec3_1252',['lowp_u64vec3',['../a00922.html#gaa4a8682bec7ec8af666ef87fae38d5d1',1,'glm']]], + ['lowp_5fu64vec4_1253',['lowp_u64vec4',['../a00922.html#ga6fccc89c34045c86339f6fa781ce96de',1,'glm']]], + ['lowp_5fu8_1254',['lowp_u8',['../a00922.html#ga1b09f03da7ac43055c68a349d5445083',1,'glm']]], + ['lowp_5fu8vec1_1255',['lowp_u8vec1',['../a00922.html#ga4b2e0e10d8d154fec9cab50e216588ec',1,'glm']]], + ['lowp_5fu8vec2_1256',['lowp_u8vec2',['../a00922.html#gae6f63fa38635431e51a8f2602f15c566',1,'glm']]], + ['lowp_5fu8vec3_1257',['lowp_u8vec3',['../a00922.html#ga150dc47e31c6b8cf8461803c8d56f7bd',1,'glm']]], + ['lowp_5fu8vec4_1258',['lowp_u8vec4',['../a00922.html#ga9910927f3a4d1addb3da6a82542a8287',1,'glm']]], + ['lowp_5fuint16_1259',['lowp_uint16',['../a00922.html#gad68bfd9f881856fc863a6ebca0b67f78',1,'glm']]], + ['lowp_5fuint16_5ft_1260',['lowp_uint16_t',['../a00922.html#ga91c4815f93177eb423362fd296a87e9f',1,'glm']]], + ['lowp_5fuint32_1261',['lowp_uint32',['../a00922.html#gaa6a5b461bbf5fe20982472aa51896d4b',1,'glm']]], + ['lowp_5fuint32_5ft_1262',['lowp_uint32_t',['../a00922.html#gaf1b735b4b1145174f4e4167d13778f9b',1,'glm']]], + ['lowp_5fuint64_1263',['lowp_uint64',['../a00922.html#gaa212b805736a759998e312cbdd550fae',1,'glm']]], + ['lowp_5fuint64_5ft_1264',['lowp_uint64_t',['../a00922.html#ga8dd3a3281ae5c970ffe0c41d538aa153',1,'glm']]], + ['lowp_5fuint8_1265',['lowp_uint8',['../a00922.html#gaf49470869e9be2c059629b250619804e',1,'glm']]], + ['lowp_5fuint8_5ft_1266',['lowp_uint8_t',['../a00922.html#ga667b2ece2b258be898812dc2177995d1',1,'glm']]], + ['lowp_5fumat2_1267',['lowp_umat2',['../a00912.html#gaf2fba702d990437fc88ff3f3a76846ee',1,'glm']]], + ['lowp_5fumat2x2_1268',['lowp_umat2x2',['../a00912.html#gaa0e5a396da00c84e9d25666f83249bd4',1,'glm']]], + ['lowp_5fumat2x3_1269',['lowp_umat2x3',['../a00912.html#ga85ee1aa570068452f193970783ff2f4c',1,'glm']]], + ['lowp_5fumat2x4_1270',['lowp_umat2x4',['../a00912.html#ga23d07feb07f73d74a2f1e332869f1607',1,'glm']]], + ['lowp_5fumat3_1271',['lowp_umat3',['../a00912.html#gaf1145f72bcdd590f5808c4bc170c2924',1,'glm']]], + ['lowp_5fumat3x2_1272',['lowp_umat3x2',['../a00912.html#gafdc099cf3533b3fcdedd8547afa3670c',1,'glm']]], + ['lowp_5fumat3x3_1273',['lowp_umat3x3',['../a00912.html#gac02216341c63cd454968a81d4859bff2',1,'glm']]], + ['lowp_5fumat3x4_1274',['lowp_umat3x4',['../a00912.html#ga8a0ee76f801a451ff1c4c55c97c6204b',1,'glm']]], + ['lowp_5fumat4_1275',['lowp_umat4',['../a00912.html#gac092c6105827bf9ea080db38074b78eb',1,'glm']]], + ['lowp_5fumat4x2_1276',['lowp_umat4x2',['../a00912.html#ga25ec0b4a1dfcd2b9e37a5026a85e04a1',1,'glm']]], + ['lowp_5fumat4x3_1277',['lowp_umat4x3',['../a00912.html#ga0d7cf5fef436d7368b4a3d9bc3284549',1,'glm']]], + ['lowp_5fumat4x4_1278',['lowp_umat4x4',['../a00912.html#ga9dd0a988cce4208c4b3d43d50af7d056',1,'glm']]], + ['lowp_5fuvec1_1279',['lowp_uvec1',['../a00922.html#ga02cec5a492d6603014b6138e4ec876de',1,'glm']]], + ['lowp_5fuvec2_1280',['lowp_uvec2',['../a00922.html#ga87227fe1e39b5b03ab9a163d1984965e',1,'glm']]], + ['lowp_5fuvec3_1281',['lowp_uvec3',['../a00922.html#ga19866dd9e66f20301de4d084f0063c59',1,'glm']]], + ['lowp_5fuvec4_1282',['lowp_uvec4',['../a00922.html#ga247ee8f72db6d7cbc822721822d57e28',1,'glm']]], + ['lowp_5fvec1_1283',['lowp_vec1',['../a00881.html#ga0a57630f03031706b1d26a7d70d9184c',1,'glm']]], + ['lowp_5fvec2_1284',['lowp_vec2',['../a00900.html#ga30e8baef5d56d5c166872a2bc00f36e9',1,'glm']]], + ['lowp_5fvec3_1285',['lowp_vec3',['../a00900.html#ga868e8e4470a3ef97c7ee3032bf90dc79',1,'glm']]], + ['lowp_5fvec4_1286',['lowp_vec4',['../a00900.html#gace3acb313c800552a9411953eb8b2ed7',1,'glm']]], + ['luminosity_1287',['luminosity',['../a00930.html#gad028e0a4f1a9c812b39439b746295b34',1,'glm']]], + ['lxnorm_1288',['lxNorm',['../a00962.html#gacad23d30497eb16f67709f2375d1f66a',1,'glm::lxNorm(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, unsigned int Depth)'],['../a00962.html#gac61b6d81d796d6eb4d4183396a19ab91',1,'glm::lxNorm(vec< 3, T, Q > const &x, unsigned int Depth)']]] +]; diff --git a/include/glm/doc/api/search/all_a.html b/include/glm/doc/api/search/all_a.html new file mode 100644 index 0000000..0ce816b --- /dev/null +++ b/include/glm/doc/api/search/all_a.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_a.js b/include/glm/doc/api/search/all_a.js new file mode 100644 index 0000000..5967d12 --- /dev/null +++ b/include/glm/doc/api/search/all_a.js @@ -0,0 +1,330 @@ +var searchData= +[ + ['matrix_20functions_1289',['Matrix functions',['../a00993.html',1,'']]], + ['matrix_20types_1290',['Matrix types',['../a00901.html',1,'']]], + ['matrix_20types_20with_20precision_20qualifiers_1291',['Matrix types with precision qualifiers',['../a00902.html',1,'']]], + ['make_5fmat2_1292',['make_mat2',['../a00923.html#ga04409e74dc3da251d2501acf5b4b546c',1,'glm']]], + ['make_5fmat2x2_1293',['make_mat2x2',['../a00923.html#gae49e1c7bcd5abec74d1c34155031f663',1,'glm']]], + ['make_5fmat2x3_1294',['make_mat2x3',['../a00923.html#ga21982104164789cf8985483aaefc25e8',1,'glm']]], + ['make_5fmat2x4_1295',['make_mat2x4',['../a00923.html#ga078b862c90b0e9a79ed43a58997d8388',1,'glm']]], + ['make_5fmat3_1296',['make_mat3',['../a00923.html#ga611ee7c4d4cadfc83a8fa8e1d10a170f',1,'glm']]], + ['make_5fmat3x2_1297',['make_mat3x2',['../a00923.html#ga27a24e121dc39e6857620e0f85b6e1a8',1,'glm']]], + ['make_5fmat3x3_1298',['make_mat3x3',['../a00923.html#gaf2e8337b15c3362aaeb6e5849e1c0536',1,'glm']]], + ['make_5fmat3x4_1299',['make_mat3x4',['../a00923.html#ga05dd66232aedb993e3b8e7b35eaf932b',1,'glm']]], + ['make_5fmat4_1300',['make_mat4',['../a00923.html#gae7bcedb710d1446c87fd1fc93ed8ee9a',1,'glm']]], + ['make_5fmat4x2_1301',['make_mat4x2',['../a00923.html#ga8b34c9b25bf3310d8ff9c828c7e2d97c',1,'glm']]], + ['make_5fmat4x3_1302',['make_mat4x3',['../a00923.html#ga0330bf6640092d7985fac92927bbd42b',1,'glm']]], + ['make_5fmat4x4_1303',['make_mat4x4',['../a00923.html#ga8f084be30e404844bfbb4a551ac2728c',1,'glm']]], + ['make_5fquat_1304',['make_quat',['../a00923.html#ga58110d7d81cf7d029e2bab7f8cd9b246',1,'glm']]], + ['make_5fvec1_1305',['make_vec1',['../a00923.html#ga4135f03f3049f0a4eb76545c4967957c',1,'glm::make_vec1(vec< 1, T, Q > const &v)'],['../a00923.html#ga13c92b81e55f201b052a6404d57da220',1,'glm::make_vec1(vec< 2, T, Q > const &v)'],['../a00923.html#ga3c23cc74086d361e22bbd5e91a334e03',1,'glm::make_vec1(vec< 3, T, Q > const &v)'],['../a00923.html#ga6af06bb60d64ca8bcd169e3c93bc2419',1,'glm::make_vec1(vec< 4, T, Q > const &v)']]], + ['make_5fvec2_1306',['make_vec2',['../a00923.html#ga8476d0e6f1b9b4a6193cc25f59d8a896',1,'glm::make_vec2(vec< 1, T, Q > const &v)'],['../a00923.html#gae54bd325a08ad26edf63929201adebc7',1,'glm::make_vec2(vec< 2, T, Q > const &v)'],['../a00923.html#ga0084fea4694cf47276e9cccbe7b1015a',1,'glm::make_vec2(vec< 3, T, Q > const &v)'],['../a00923.html#ga2b81f71f3a222fe5bba81e3983751249',1,'glm::make_vec2(vec< 4, T, Q > const &v)'],['../a00923.html#ga81253cf7b0ebfbb1e70540c5774e6824',1,'glm::make_vec2(T const *const ptr)']]], + ['make_5fvec3_1307',['make_vec3',['../a00923.html#ga9147e4b3a5d0f4772edfbfd179d7ea0b',1,'glm::make_vec3(vec< 1, T, Q > const &v)'],['../a00923.html#ga482b60a842a5b154d3eed392417a9511',1,'glm::make_vec3(vec< 2, T, Q > const &v)'],['../a00923.html#gacd57046034df557b8b1c457f58613623',1,'glm::make_vec3(vec< 3, T, Q > const &v)'],['../a00923.html#ga8b589ed7d41a298b516d2a69169248f1',1,'glm::make_vec3(vec< 4, T, Q > const &v)'],['../a00923.html#gad9e0d36ff489cb30c65ad1fa40351651',1,'glm::make_vec3(T const *const ptr)']]], + ['make_5fvec4_1308',['make_vec4',['../a00923.html#ga600cb97f70c5d50d3a4a145e1cafbf37',1,'glm::make_vec4(vec< 1, T, Q > const &v)'],['../a00923.html#gaa9bd116caf28196fd1cf00b278286fa7',1,'glm::make_vec4(vec< 2, T, Q > const &v)'],['../a00923.html#ga4036328ba4702c74cbdfad1fc03d1b8f',1,'glm::make_vec4(vec< 3, T, Q > const &v)'],['../a00923.html#gaa95cb15732f708f613e65a0578895ae5',1,'glm::make_vec4(vec< 4, T, Q > const &v)'],['../a00923.html#ga63f576518993efc22a969f18f80e29bb',1,'glm::make_vec4(T const *const ptr)']]], + ['mask_1309',['mask',['../a00906.html#gad7eba518a0b71662114571ee76939f8a',1,'glm::mask(genIUType Bits)'],['../a00906.html#ga2e64e3b922a296033b825311e7f5fff1',1,'glm::mask(vec< L, T, Q > const &v)']]], + ['mat2_1310',['mat2',['../a00901.html#ga8dd59e7fc6913ac5d61b86553e9148ba',1,'glm']]], + ['mat2x2_1311',['mat2x2',['../a00901.html#gaaa17ef6bfa4e4f2692348b1460c8efcb',1,'glm']]], + ['mat2x2_2ehpp_1312',['mat2x2.hpp',['../a00767.html',1,'']]], + ['mat2x3_1313',['mat2x3',['../a00901.html#ga493ab21243abe564b3f7d381e677d29a',1,'glm']]], + ['mat2x3_2ehpp_1314',['mat2x3.hpp',['../a00770.html',1,'']]], + ['mat2x4_1315',['mat2x4',['../a00901.html#ga8e879b57ddd81e5bf5a88929844e8b40',1,'glm']]], + ['mat2x4_2ehpp_1316',['mat2x4.hpp',['../a00773.html',1,'']]], + ['mat2x4_5fcast_1317',['mat2x4_cast',['../a00935.html#gae99d143b37f9cad4cd9285571aab685a',1,'glm']]], + ['mat3_1318',['mat3',['../a00901.html#gaefb0fc7a4960b782c18708bb6b655262',1,'glm']]], + ['mat3_5fcast_1319',['mat3_cast',['../a00917.html#ga333ab70047fbe4132406100c292dbc89',1,'glm']]], + ['mat3x2_1320',['mat3x2',['../a00901.html#ga2c27aea32de57d58aec8e92d5d2181e2',1,'glm']]], + ['mat3x2_2ehpp_1321',['mat3x2.hpp',['../a00776.html',1,'']]], + ['mat3x3_1322',['mat3x3',['../a00901.html#gab91887d7565059dac640e3a1921c914a',1,'glm']]], + ['mat3x3_2ehpp_1323',['mat3x3.hpp',['../a00779.html',1,'']]], + ['mat3x4_1324',['mat3x4',['../a00901.html#gaf991cad0b34f64e33af186326dbc4d66',1,'glm']]], + ['mat3x4_2ehpp_1325',['mat3x4.hpp',['../a00782.html',1,'']]], + ['mat3x4_5fcast_1326',['mat3x4_cast',['../a00935.html#gaf59f5bb69620d2891c3795c6f2639179',1,'glm']]], + ['mat4_1327',['mat4',['../a00901.html#ga0db98d836c5549d31cf64ecd043b7af7',1,'glm']]], + ['mat4_5fcast_1328',['mat4_cast',['../a00917.html#ga1113212d9bdefc2e31ad40e5bbb506f3',1,'glm']]], + ['mat4x2_1329',['mat4x2',['../a00901.html#gad941c947ad6cdd117a0e8554a4754983',1,'glm']]], + ['mat4x2_2ehpp_1330',['mat4x2.hpp',['../a00785.html',1,'']]], + ['mat4x3_1331',['mat4x3',['../a00901.html#gac7574544bb94777bdbd2eb224eb72fd0',1,'glm']]], + ['mat4x3_2ehpp_1332',['mat4x3.hpp',['../a00788.html',1,'']]], + ['mat4x4_1333',['mat4x4',['../a00901.html#gab2d35cc2655f44d60958d60a1de34e81',1,'glm']]], + ['mat4x4_2ehpp_1334',['mat4x4.hpp',['../a00791.html',1,'']]], + ['matrix_2ehpp_1335',['matrix.hpp',['../a00794.html',1,'']]], + ['matrix_5faccess_2ehpp_1336',['matrix_access.hpp',['../a00548.html',1,'']]], + ['matrix_5fclip_5fspace_2ehpp_1337',['matrix_clip_space.hpp',['../a00092.html',1,'']]], + ['matrix_5fcommon_2ehpp_1338',['matrix_common.hpp',['../a00095.html',1,'']]], + ['matrix_5fcross_5fproduct_2ehpp_1339',['matrix_cross_product.hpp',['../a00659.html',1,'']]], + ['matrix_5fdecompose_2ehpp_1340',['matrix_decompose.hpp',['../a00662.html',1,'']]], + ['matrix_5fdouble2x2_2ehpp_1341',['matrix_double2x2.hpp',['../a00098.html',1,'']]], + ['matrix_5fdouble2x2_5fprecision_2ehpp_1342',['matrix_double2x2_precision.hpp',['../a00101.html',1,'']]], + ['matrix_5fdouble2x3_2ehpp_1343',['matrix_double2x3.hpp',['../a00104.html',1,'']]], + ['matrix_5fdouble2x3_5fprecision_2ehpp_1344',['matrix_double2x3_precision.hpp',['../a00107.html',1,'']]], + ['matrix_5fdouble2x4_2ehpp_1345',['matrix_double2x4.hpp',['../a00110.html',1,'']]], + ['matrix_5fdouble2x4_5fprecision_2ehpp_1346',['matrix_double2x4_precision.hpp',['../a00113.html',1,'']]], + ['matrix_5fdouble3x2_2ehpp_1347',['matrix_double3x2.hpp',['../a00116.html',1,'']]], + ['matrix_5fdouble3x2_5fprecision_2ehpp_1348',['matrix_double3x2_precision.hpp',['../a00119.html',1,'']]], + ['matrix_5fdouble3x3_2ehpp_1349',['matrix_double3x3.hpp',['../a00122.html',1,'']]], + ['matrix_5fdouble3x3_5fprecision_2ehpp_1350',['matrix_double3x3_precision.hpp',['../a00125.html',1,'']]], + ['matrix_5fdouble3x4_2ehpp_1351',['matrix_double3x4.hpp',['../a00128.html',1,'']]], + ['matrix_5fdouble3x4_5fprecision_2ehpp_1352',['matrix_double3x4_precision.hpp',['../a00131.html',1,'']]], + ['matrix_5fdouble4x2_2ehpp_1353',['matrix_double4x2.hpp',['../a00134.html',1,'']]], + ['matrix_5fdouble4x2_5fprecision_2ehpp_1354',['matrix_double4x2_precision.hpp',['../a00137.html',1,'']]], + ['matrix_5fdouble4x3_2ehpp_1355',['matrix_double4x3.hpp',['../a00140.html',1,'']]], + ['matrix_5fdouble4x3_5fprecision_2ehpp_1356',['matrix_double4x3_precision.hpp',['../a00143.html',1,'']]], + ['matrix_5fdouble4x4_2ehpp_1357',['matrix_double4x4.hpp',['../a00146.html',1,'']]], + ['matrix_5fdouble4x4_5fprecision_2ehpp_1358',['matrix_double4x4_precision.hpp',['../a00149.html',1,'']]], + ['matrix_5ffactorisation_2ehpp_1359',['matrix_factorisation.hpp',['../a00665.html',1,'']]], + ['matrix_5ffloat2x2_2ehpp_1360',['matrix_float2x2.hpp',['../a00152.html',1,'']]], + ['matrix_5ffloat2x2_5fprecision_2ehpp_1361',['matrix_float2x2_precision.hpp',['../a00155.html',1,'']]], + ['matrix_5ffloat2x3_2ehpp_1362',['matrix_float2x3.hpp',['../a00158.html',1,'']]], + ['matrix_5ffloat2x3_5fprecision_2ehpp_1363',['matrix_float2x3_precision.hpp',['../a00161.html',1,'']]], + ['matrix_5ffloat2x4_2ehpp_1364',['matrix_float2x4.hpp',['../a00164.html',1,'']]], + ['matrix_5ffloat2x4_5fprecision_2ehpp_1365',['matrix_float2x4_precision.hpp',['../a00167.html',1,'']]], + ['matrix_5ffloat3x2_2ehpp_1366',['matrix_float3x2.hpp',['../a00170.html',1,'']]], + ['matrix_5ffloat3x2_5fprecision_2ehpp_1367',['matrix_float3x2_precision.hpp',['../a00173.html',1,'']]], + ['matrix_5ffloat3x3_2ehpp_1368',['matrix_float3x3.hpp',['../a00176.html',1,'']]], + ['matrix_5ffloat3x3_5fprecision_2ehpp_1369',['matrix_float3x3_precision.hpp',['../a00179.html',1,'']]], + ['matrix_5ffloat3x4_2ehpp_1370',['matrix_float3x4.hpp',['../a00182.html',1,'']]], + ['matrix_5ffloat3x4_5fprecision_2ehpp_1371',['matrix_float3x4_precision.hpp',['../a00185.html',1,'']]], + ['matrix_5ffloat4x2_2ehpp_1372',['matrix_float4x2.hpp',['../a00188.html',1,'']]], + ['matrix_5ffloat4x3_2ehpp_1373',['matrix_float4x3.hpp',['../a00194.html',1,'']]], + ['matrix_5ffloat4x3_5fprecision_2ehpp_1374',['matrix_float4x3_precision.hpp',['../a00197.html',1,'']]], + ['matrix_5ffloat4x4_2ehpp_1375',['matrix_float4x4.hpp',['../a00200.html',1,'']]], + ['matrix_5ffloat4x4_5fprecision_2ehpp_1376',['matrix_float4x4_precision.hpp',['../a00203.html',1,'']]], + ['matrix_5fint2x2_2ehpp_1377',['matrix_int2x2.hpp',['../a00206.html',1,'']]], + ['matrix_5fint2x2_5fsized_2ehpp_1378',['matrix_int2x2_sized.hpp',['../a00209.html',1,'']]], + ['matrix_5fint2x3_2ehpp_1379',['matrix_int2x3.hpp',['../a00212.html',1,'']]], + ['matrix_5fint2x3_5fsized_2ehpp_1380',['matrix_int2x3_sized.hpp',['../a00215.html',1,'']]], + ['matrix_5fint2x4_2ehpp_1381',['matrix_int2x4.hpp',['../a00218.html',1,'']]], + ['matrix_5fint2x4_5fsized_2ehpp_1382',['matrix_int2x4_sized.hpp',['../a00221.html',1,'']]], + ['matrix_5fint3x2_2ehpp_1383',['matrix_int3x2.hpp',['../a00224.html',1,'']]], + ['matrix_5fint3x2_5fsized_2ehpp_1384',['matrix_int3x2_sized.hpp',['../a00227.html',1,'']]], + ['matrix_5fint3x3_2ehpp_1385',['matrix_int3x3.hpp',['../a00230.html',1,'']]], + ['matrix_5fint3x3_5fsized_2ehpp_1386',['matrix_int3x3_sized.hpp',['../a00233.html',1,'']]], + ['matrix_5fint3x4_2ehpp_1387',['matrix_int3x4.hpp',['../a00236.html',1,'']]], + ['matrix_5fint4x2_2ehpp_1388',['matrix_int4x2.hpp',['../a00242.html',1,'']]], + ['matrix_5fint4x2_5fsized_2ehpp_1389',['matrix_int4x2_sized.hpp',['../a00245.html',1,'']]], + ['matrix_5fint4x3_2ehpp_1390',['matrix_int4x3.hpp',['../a00248.html',1,'']]], + ['matrix_5fint4x3_5fsized_2ehpp_1391',['matrix_int4x3_sized.hpp',['../a00251.html',1,'']]], + ['matrix_5fint4x4_2ehpp_1392',['matrix_int4x4.hpp',['../a00254.html',1,'']]], + ['matrix_5fint4x4_5fsized_2ehpp_1393',['matrix_int4x4_sized.hpp',['../a00257.html',1,'']]], + ['matrix_5finterpolation_2ehpp_1394',['matrix_interpolation.hpp',['../a00668.html',1,'']]], + ['matrix_5finverse_2ehpp_1395',['matrix_inverse.hpp',['../a00551.html',1,'']]], + ['matrix_5fmajor_5fstorage_2ehpp_1396',['matrix_major_storage.hpp',['../a00671.html',1,'']]], + ['matrix_5foperation_2ehpp_1397',['matrix_operation.hpp',['../a00674.html',1,'']]], + ['matrix_5fprojection_2ehpp_1398',['matrix_projection.hpp',['../a00263.html',1,'']]], + ['matrix_5fquery_2ehpp_1399',['matrix_query.hpp',['../a00677.html',1,'']]], + ['matrix_5frelational_2ehpp_1400',['matrix_relational.hpp',['../a00266.html',1,'']]], + ['matrix_5ftransform_5f2d_2ehpp_1401',['matrix_transform_2d.hpp',['../a00680.html',1,'']]], + ['matrix_5fuint2x2_2ehpp_1402',['matrix_uint2x2.hpp',['../a00272.html',1,'']]], + ['matrix_5fuint2x2_5fsized_2ehpp_1403',['matrix_uint2x2_sized.hpp',['../a00275.html',1,'']]], + ['matrix_5fuint2x3_2ehpp_1404',['matrix_uint2x3.hpp',['../a00278.html',1,'']]], + ['matrix_5fuint2x3_5fsized_2ehpp_1405',['matrix_uint2x3_sized.hpp',['../a00281.html',1,'']]], + ['matrix_5fuint2x4_2ehpp_1406',['matrix_uint2x4.hpp',['../a00284.html',1,'']]], + ['matrix_5fuint2x4_5fsized_2ehpp_1407',['matrix_uint2x4_sized.hpp',['../a00287.html',1,'']]], + ['matrix_5fuint3x2_2ehpp_1408',['matrix_uint3x2.hpp',['../a00290.html',1,'']]], + ['matrix_5fuint3x2_5fsized_2ehpp_1409',['matrix_uint3x2_sized.hpp',['../a00293.html',1,'']]], + ['matrix_5fuint3x3_2ehpp_1410',['matrix_uint3x3.hpp',['../a00296.html',1,'']]], + ['matrix_5fuint3x3_5fsized_2ehpp_1411',['matrix_uint3x3_sized.hpp',['../a00299.html',1,'']]], + ['matrix_5fuint3x4_2ehpp_1412',['matrix_uint3x4.hpp',['../a00302.html',1,'']]], + ['matrix_5fuint4x2_2ehpp_1413',['matrix_uint4x2.hpp',['../a00308.html',1,'']]], + ['matrix_5fuint4x2_5fsized_2ehpp_1414',['matrix_uint4x2_sized.hpp',['../a00311.html',1,'']]], + ['matrix_5fuint4x3_2ehpp_1415',['matrix_uint4x3.hpp',['../a00314.html',1,'']]], + ['matrix_5fuint4x3_5fsized_2ehpp_1416',['matrix_uint4x3_sized.hpp',['../a00317.html',1,'']]], + ['matrix_5fuint4x4_2ehpp_1417',['matrix_uint4x4.hpp',['../a00320.html',1,'']]], + ['matrix_5fuint4x4_5fsized_2ehpp_1418',['matrix_uint4x4_sized.hpp',['../a00323.html',1,'']]], + ['matrixcompmult_1419',['matrixCompMult',['../a00834.html#ga514c5f14f88b22355731a992e683fc90',1,'glm']]], + ['matrixcross3_1420',['matrixCross3',['../a00953.html#ga5802386bb4c37b3332a3b6fd8b6960ff',1,'glm']]], + ['matrixcross4_1421',['matrixCross4',['../a00953.html#ga20057fff91ddafa102934adb25458cde',1,'glm']]], + ['max_1422',['max',['../a00812.html#gae02d42887fc5570451f880e3c624b9ac',1,'glm::max(genType x, genType y)'],['../a00812.html#ga03e45d6e60d1c36edb00c52edeea0f31',1,'glm::max(vec< L, T, Q > const &x, T y)'],['../a00812.html#gac1fec0c3303b572a6d4697a637213870',1,'glm::max(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00866.html#gae7224c683ea72d2a6a395529b8c14a4c',1,'glm::max(T a, T b, T c)'],['../a00866.html#gae7fcb461017290d4a34e688fb9ae41ab',1,'glm::max(T a, T b, T c, T d)'],['../a00877.html#gaa45d34f6a2906f8bf58ab2ba5429234d',1,'glm::max(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &z)'],['../a00877.html#ga94d42b8da2b4ded5ddf7504fbdc6bf10',1,'glm::max(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &z, vec< L, T, Q > const &w)'],['../a00939.html#ga04991ccb9865c4c4e58488cfb209ce69',1,'glm::max(T const &x, T const &y, T const &z)'],['../a00939.html#gae1b7bbe5c91de4924835ea3e14530744',1,'glm::max(C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z)'],['../a00939.html#gaf832e9d4ab4826b2dda2fda25935a3a4',1,'glm::max(C< T > const &x, C< T > const &y, C< T > const &z)'],['../a00939.html#ga78e04a0cef1c4863fcae1a2130500d87',1,'glm::max(T const &x, T const &y, T const &z, T const &w)'],['../a00939.html#ga7cca8b53cfda402040494cdf40fbdf4a',1,'glm::max(C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z, typename C< T >::T const &w)'],['../a00939.html#gaacffbc466c2d08c140b181e7fd8a4858',1,'glm::max(C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)']]], + ['mediump_5fbvec1_1423',['mediump_bvec1',['../a00876.html#ga7b4ccb989ba179fa44f7b0879c782621',1,'glm']]], + ['mediump_5fbvec2_1424',['mediump_bvec2',['../a00900.html#ga1e743764869efa9223c2bcefccedaddc',1,'glm']]], + ['mediump_5fbvec3_1425',['mediump_bvec3',['../a00900.html#ga50c783c25082882ef00fe2e5cddba4aa',1,'glm']]], + ['mediump_5fbvec4_1426',['mediump_bvec4',['../a00900.html#ga0be2c682258604a35004f088782a9645',1,'glm']]], + ['mediump_5fddualquat_1427',['mediump_ddualquat',['../a00935.html#ga0fb11e48e2d16348ccb06a25213641b4',1,'glm']]], + ['mediump_5fdmat2_1428',['mediump_dmat2',['../a00902.html#ga6205fd19be355600334edef6af0b27cb',1,'glm']]], + ['mediump_5fdmat2x2_1429',['mediump_dmat2x2',['../a00902.html#ga51dc36a7719cb458fa5114831c20d64f',1,'glm']]], + ['mediump_5fdmat2x3_1430',['mediump_dmat2x3',['../a00902.html#ga741e05adf1f12d5d913f67088db1009a',1,'glm']]], + ['mediump_5fdmat2x4_1431',['mediump_dmat2x4',['../a00902.html#ga685bda24922d112786af385deb4deb43',1,'glm']]], + ['mediump_5fdmat3_1432',['mediump_dmat3',['../a00902.html#ga939fbf9c53008a8e84c7dd7cf8de29e2',1,'glm']]], + ['mediump_5fdmat3x2_1433',['mediump_dmat3x2',['../a00902.html#ga2076157df85e49b8c021e03e46a376c1',1,'glm']]], + ['mediump_5fdmat3x3_1434',['mediump_dmat3x3',['../a00902.html#ga47bd2aae4701ee2fc865674a9df3d7a6',1,'glm']]], + ['mediump_5fdmat3x4_1435',['mediump_dmat3x4',['../a00902.html#ga3a132bd05675c2e46556f67cf738600b',1,'glm']]], + ['mediump_5fdmat4_1436',['mediump_dmat4',['../a00902.html#gaf650bc667bf2a0e496b5a9182bc8d378',1,'glm']]], + ['mediump_5fdmat4x2_1437',['mediump_dmat4x2',['../a00902.html#gae220fa4c5a7b13ef2ab0420340de645c',1,'glm']]], + ['mediump_5fdmat4x3_1438',['mediump_dmat4x3',['../a00902.html#ga43ef60e4d996db15c9c8f069a96ff763',1,'glm']]], + ['mediump_5fdmat4x4_1439',['mediump_dmat4x4',['../a00902.html#ga5389b3ab32dc0d72bea00057ab6d1dd3',1,'glm']]], + ['mediump_5fdquat_1440',['mediump_dquat',['../a00858.html#gacdf73b1f7fd8f5a0c79a3934e99c1a14',1,'glm']]], + ['mediump_5fdualquat_1441',['mediump_dualquat',['../a00935.html#gaa7aeb54c167712b38f2178a1be2360ad',1,'glm']]], + ['mediump_5fdvec1_1442',['mediump_dvec1',['../a00879.html#ga79a789ebb176b37a45848f7ccdd3b3dd',1,'glm']]], + ['mediump_5fdvec2_1443',['mediump_dvec2',['../a00900.html#ga2f4f6e9a69a0281d06940fd0990cafc3',1,'glm']]], + ['mediump_5fdvec3_1444',['mediump_dvec3',['../a00900.html#ga61c3b1dff4ec7c878af80503141b9f37',1,'glm']]], + ['mediump_5fdvec4_1445',['mediump_dvec4',['../a00900.html#ga23a8bca00914a51542bfea13a4778186',1,'glm']]], + ['mediump_5ff32_1446',['mediump_f32',['../a00922.html#ga3b27fcd9eaa2757f0aaf6b0ce0d85c80',1,'glm']]], + ['mediump_5ff32mat2_1447',['mediump_f32mat2',['../a00922.html#gaf9020c6176a75bc84828ab01ea7dac25',1,'glm']]], + ['mediump_5ff32mat2x2_1448',['mediump_f32mat2x2',['../a00922.html#gaa3ca74a44102035b3ffb5c9c52dfdd3f',1,'glm']]], + ['mediump_5ff32mat2x3_1449',['mediump_f32mat2x3',['../a00922.html#gad4cc829ab1ad3e05ac0a24828a3c95cf',1,'glm']]], + ['mediump_5ff32mat2x4_1450',['mediump_f32mat2x4',['../a00922.html#gae71445ac6cd0b9fba3e5c905cd030fb1',1,'glm']]], + ['mediump_5ff32mat3_1451',['mediump_f32mat3',['../a00922.html#gaaaf878d0d7bfc0aac054fe269a886ca8',1,'glm']]], + ['mediump_5ff32mat3x2_1452',['mediump_f32mat3x2',['../a00922.html#gaaab39454f56cf9fc6d940358ce5e6a0f',1,'glm']]], + ['mediump_5ff32mat3x3_1453',['mediump_f32mat3x3',['../a00922.html#gacd80ad7640e9e32f2edcb8330b1ffe4f',1,'glm']]], + ['mediump_5ff32mat3x4_1454',['mediump_f32mat3x4',['../a00922.html#ga8df705d775b776f5ae6b39e2ab892899',1,'glm']]], + ['mediump_5ff32mat4_1455',['mediump_f32mat4',['../a00922.html#ga4491baaebbc46a20f1cb5da985576bf4',1,'glm']]], + ['mediump_5ff32mat4x2_1456',['mediump_f32mat4x2',['../a00922.html#gab005efe0fa4de1a928e8ddec4bc2c43f',1,'glm']]], + ['mediump_5ff32mat4x3_1457',['mediump_f32mat4x3',['../a00922.html#gade108f16633cf95fa500b5b8c36c8b00',1,'glm']]], + ['mediump_5ff32mat4x4_1458',['mediump_f32mat4x4',['../a00922.html#ga936e95b881ecd2d109459ca41913fa99',1,'glm']]], + ['mediump_5ff32quat_1459',['mediump_f32quat',['../a00922.html#gaa40c03d52dbfbfaf03e75773b9606ff3',1,'glm']]], + ['mediump_5ff32vec1_1460',['mediump_f32vec1',['../a00922.html#gabb33cab7d7c74cc14aa95455d0690865',1,'glm']]], + ['mediump_5ff32vec2_1461',['mediump_f32vec2',['../a00922.html#gad6eb11412a3161ca8dc1d63b2a307c4b',1,'glm']]], + ['mediump_5ff32vec3_1462',['mediump_f32vec3',['../a00922.html#ga062ffef2973bd8241df993c3b30b327c',1,'glm']]], + ['mediump_5ff32vec4_1463',['mediump_f32vec4',['../a00922.html#gad80c84bcd5f585840faa6179f6fd446c',1,'glm']]], + ['mediump_5ff64_1464',['mediump_f64',['../a00922.html#ga6d40381d78472553f878f66e443feeef',1,'glm']]], + ['mediump_5ff64mat2_1465',['mediump_f64mat2',['../a00922.html#gac1281da5ded55047e8892b0e1f1ae965',1,'glm']]], + ['mediump_5ff64mat2x2_1466',['mediump_f64mat2x2',['../a00922.html#ga4fd527644cccbca4cb205320eab026f3',1,'glm']]], + ['mediump_5ff64mat2x3_1467',['mediump_f64mat2x3',['../a00922.html#gafd9a6ebc0c7b95f5c581d00d16a17c54',1,'glm']]], + ['mediump_5ff64mat2x4_1468',['mediump_f64mat2x4',['../a00922.html#gaf306dd69e53633636aee38cea79d4cb7',1,'glm']]], + ['mediump_5ff64mat3_1469',['mediump_f64mat3',['../a00922.html#gad35fb67eb1d03c5a514f0bd7aed1c776',1,'glm']]], + ['mediump_5ff64mat3x2_1470',['mediump_f64mat3x2',['../a00922.html#gacd926d36a72433f6cac51dd60fa13107',1,'glm']]], + ['mediump_5ff64mat3x3_1471',['mediump_f64mat3x3',['../a00922.html#ga84d88a6e3a54ccd2b67e195af4a4c23e',1,'glm']]], + ['mediump_5ff64mat3x4_1472',['mediump_f64mat3x4',['../a00922.html#gad38c544d332b8c4bd0b70b1bd9feccc2',1,'glm']]], + ['mediump_5ff64mat4_1473',['mediump_f64mat4',['../a00922.html#gaa805ef691c711dc41e2776cfb67f5cf5',1,'glm']]], + ['mediump_5ff64mat4x2_1474',['mediump_f64mat4x2',['../a00922.html#ga17d36f0ea22314117e1cec9594b33945',1,'glm']]], + ['mediump_5ff64mat4x3_1475',['mediump_f64mat4x3',['../a00922.html#ga54697a78f9a4643af6a57fc2e626ec0d',1,'glm']]], + ['mediump_5ff64mat4x4_1476',['mediump_f64mat4x4',['../a00922.html#ga66edb8de17b9235029472f043ae107e9',1,'glm']]], + ['mediump_5ff64quat_1477',['mediump_f64quat',['../a00922.html#ga5e52f485059ce6e3010c590b882602c9',1,'glm']]], + ['mediump_5ff64vec1_1478',['mediump_f64vec1',['../a00922.html#gac30fdf8afa489400053275b6a3350127',1,'glm']]], + ['mediump_5ff64vec2_1479',['mediump_f64vec2',['../a00922.html#ga8ebc04ecf6440c4ee24718a16600ce6b',1,'glm']]], + ['mediump_5ff64vec3_1480',['mediump_f64vec3',['../a00922.html#ga461c4c7d0757404dd0dba931760b25cf',1,'glm']]], + ['mediump_5ff64vec4_1481',['mediump_f64vec4',['../a00922.html#gacfea053bd6bb3eddb996a4f94de22a3e',1,'glm']]], + ['mediump_5ffdualquat_1482',['mediump_fdualquat',['../a00935.html#ga4a6b594ff7e81150d8143001367a9431',1,'glm']]], + ['mediump_5ffloat32_1483',['mediump_float32',['../a00922.html#ga7812bf00676fb1a86dcd62cca354d2c7',1,'glm']]], + ['mediump_5ffloat32_5ft_1484',['mediump_float32_t',['../a00922.html#gae4dee61f8fe1caccec309fbed02faf12',1,'glm']]], + ['mediump_5ffloat64_1485',['mediump_float64',['../a00922.html#gab83d8aae6e4f115e97a785e8574a115f',1,'glm']]], + ['mediump_5ffloat64_5ft_1486',['mediump_float64_t',['../a00922.html#gac61843e4fa96c1f4e9d8316454f32a8e',1,'glm']]], + ['mediump_5ffmat2_1487',['mediump_fmat2',['../a00922.html#ga74e9133378fd0b4da8ac0bc0876702ff',1,'glm']]], + ['mediump_5ffmat2x2_1488',['mediump_fmat2x2',['../a00922.html#ga98a687c17b174ea316b5f397b64f44bc',1,'glm']]], + ['mediump_5ffmat2x3_1489',['mediump_fmat2x3',['../a00922.html#gaa03f939d90d5ef157df957d93f0b9a64',1,'glm']]], + ['mediump_5ffmat2x4_1490',['mediump_fmat2x4',['../a00922.html#ga35223623e9ccebd8a281873b71b7d213',1,'glm']]], + ['mediump_5ffmat3_1491',['mediump_fmat3',['../a00922.html#ga80823dfad5dba98512c76af498343847',1,'glm']]], + ['mediump_5ffmat3x2_1492',['mediump_fmat3x2',['../a00922.html#ga42569e5b92f8635cedeadb1457ee1467',1,'glm']]], + ['mediump_5ffmat3x3_1493',['mediump_fmat3x3',['../a00922.html#gaa6f526388c74a66b3d52315a14d434ae',1,'glm']]], + ['mediump_5ffmat3x4_1494',['mediump_fmat3x4',['../a00922.html#gaefe8ef520c6cb78590ebbefe648da4d4',1,'glm']]], + ['mediump_5ffmat4_1495',['mediump_fmat4',['../a00922.html#gac1c38778c0b5a1263f07753c05a4f7b9',1,'glm']]], + ['mediump_5ffmat4x2_1496',['mediump_fmat4x2',['../a00922.html#gacea38a85893e17e6834b6cb09a9ad0cf',1,'glm']]], + ['mediump_5ffmat4x3_1497',['mediump_fmat4x3',['../a00922.html#ga41ad497f7eae211556aefd783cb02b90',1,'glm']]], + ['mediump_5ffmat4x4_1498',['mediump_fmat4x4',['../a00922.html#ga22e27beead07bff4d5ce9d6065a57279',1,'glm']]], + ['mediump_5ffvec1_1499',['mediump_fvec1',['../a00922.html#ga367964fc2133d3f1b5b3755ff9cf6c9b',1,'glm']]], + ['mediump_5ffvec2_1500',['mediump_fvec2',['../a00922.html#ga44bfa55cda5dbf53f24a1fb7610393d6',1,'glm']]], + ['mediump_5ffvec3_1501',['mediump_fvec3',['../a00922.html#ga999dc6703ad16e3d3c26b74ea8083f07',1,'glm']]], + ['mediump_5ffvec4_1502',['mediump_fvec4',['../a00922.html#ga1bed890513c0f50b7e7ba4f7f359dbfb',1,'glm']]], + ['mediump_5fi16_1503',['mediump_i16',['../a00922.html#ga62a17cddeb4dffb4e18fe3aea23f051a',1,'glm']]], + ['mediump_5fi16vec1_1504',['mediump_i16vec1',['../a00922.html#gacc44265ed440bf5e6e566782570de842',1,'glm']]], + ['mediump_5fi16vec2_1505',['mediump_i16vec2',['../a00922.html#ga4b5e2c9aaa5d7717bf71179aefa12e88',1,'glm']]], + ['mediump_5fi16vec3_1506',['mediump_i16vec3',['../a00922.html#ga3be6c7fc5fe08fa2274bdb001d5f2633',1,'glm']]], + ['mediump_5fi16vec4_1507',['mediump_i16vec4',['../a00922.html#gaf52982bb23e3a3772649b2c5bb84b107',1,'glm']]], + ['mediump_5fi32_1508',['mediump_i32',['../a00922.html#gaf5e94bf2a20af7601787c154751dc2e1',1,'glm']]], + ['mediump_5fi32vec1_1509',['mediump_i32vec1',['../a00922.html#ga46a57f71e430637559097a732b550a7e',1,'glm']]], + ['mediump_5fi32vec2_1510',['mediump_i32vec2',['../a00922.html#ga20bf224bd4f8a24ecc4ed2004a40c219',1,'glm']]], + ['mediump_5fi32vec3_1511',['mediump_i32vec3',['../a00922.html#ga13a221b910aa9eb1b04ca1c86e81015a',1,'glm']]], + ['mediump_5fi32vec4_1512',['mediump_i32vec4',['../a00922.html#ga6addd4dfee87fc09ab9525e3d07db4c8',1,'glm']]], + ['mediump_5fi64_1513',['mediump_i64',['../a00922.html#ga3ebcb1f6d8d8387253de8bccb058d77f',1,'glm']]], + ['mediump_5fi64vec1_1514',['mediump_i64vec1',['../a00922.html#ga8343e9d244fb17a5bbf0d94d36b3695e',1,'glm']]], + ['mediump_5fi64vec2_1515',['mediump_i64vec2',['../a00922.html#ga2c94aeae3457325944ca1059b0b68330',1,'glm']]], + ['mediump_5fi64vec3_1516',['mediump_i64vec3',['../a00922.html#ga8089722ffdf868cdfe721dea1fb6a90e',1,'glm']]], + ['mediump_5fi64vec4_1517',['mediump_i64vec4',['../a00922.html#gabf1f16c5ab8cb0484bd1e846ae4368f1',1,'glm']]], + ['mediump_5fi8_1518',['mediump_i8',['../a00922.html#gacf1ded173e1e2d049c511d095b259e21',1,'glm']]], + ['mediump_5fi8vec1_1519',['mediump_i8vec1',['../a00922.html#ga85e8893f4ae3630065690a9000c0c483',1,'glm']]], + ['mediump_5fi8vec2_1520',['mediump_i8vec2',['../a00922.html#ga2a8bdc32184ea0a522ef7bd90640cf67',1,'glm']]], + ['mediump_5fi8vec3_1521',['mediump_i8vec3',['../a00922.html#ga6dd1c1618378c6f94d522a61c28773c9',1,'glm']]], + ['mediump_5fi8vec4_1522',['mediump_i8vec4',['../a00922.html#gac7bb04fb857ef7b520e49f6c381432be',1,'glm']]], + ['mediump_5fimat2_1523',['mediump_imat2',['../a00912.html#ga20f4cc7ab23e2aa1f4db9fdb5496d378',1,'glm']]], + ['mediump_5fimat2x2_1524',['mediump_imat2x2',['../a00912.html#gaaa39fcf19d3b30ace619e1cd813be8c1',1,'glm']]], + ['mediump_5fimat2x3_1525',['mediump_imat2x3',['../a00912.html#gace3b4f5065f6e6793db8179161bc0c15',1,'glm']]], + ['mediump_5fimat2x4_1526',['mediump_imat2x4',['../a00912.html#gabf8b6cc6c5250d43e57c6a9d419d11d0',1,'glm']]], + ['mediump_5fimat3_1527',['mediump_imat3',['../a00912.html#ga6c63bdc736efd3466e0730de0251cb71',1,'glm']]], + ['mediump_5fimat3x2_1528',['mediump_imat3x2',['../a00912.html#ga4a85a15738d7a789f81a0ac8d2147c5f',1,'glm']]], + ['mediump_5fimat3x3_1529',['mediump_imat3x3',['../a00912.html#gad3d76765685183bab97e9a9cf91ea26e',1,'glm']]], + ['mediump_5fimat3x4_1530',['mediump_imat3x4',['../a00912.html#ga3cef6f8fd891e0e8a44aabafb2df1d58',1,'glm']]], + ['mediump_5fimat4_1531',['mediump_imat4',['../a00912.html#gaf348552978553630d2a00b78eb887ced',1,'glm']]], + ['mediump_5fimat4x2_1532',['mediump_imat4x2',['../a00912.html#ga8254ea8195f5675afea4be98e64dd04d',1,'glm']]], + ['mediump_5fimat4x3_1533',['mediump_imat4x3',['../a00912.html#gad15630b8337c9becd8c3f4e9b901bce9',1,'glm']]], + ['mediump_5fimat4x4_1534',['mediump_imat4x4',['../a00912.html#ga93d485d0de7835c4679e2cced1b7f033',1,'glm']]], + ['mediump_5fint16_1535',['mediump_int16',['../a00922.html#gadff3608baa4b5bd3ed28f95c1c2c345d',1,'glm']]], + ['mediump_5fint16_5ft_1536',['mediump_int16_t',['../a00922.html#ga80e72fe94c88498537e8158ba7591c54',1,'glm']]], + ['mediump_5fint32_1537',['mediump_int32',['../a00922.html#ga5244cef85d6e870e240c76428a262ae8',1,'glm']]], + ['mediump_5fint32_5ft_1538',['mediump_int32_t',['../a00922.html#ga26fc7ced1ad7ca5024f1c973c8dc9180',1,'glm']]], + ['mediump_5fint64_1539',['mediump_int64',['../a00922.html#ga7b968f2b86a0442a89c7359171e1d866',1,'glm']]], + ['mediump_5fint64_5ft_1540',['mediump_int64_t',['../a00922.html#gac3bc41bcac61d1ba8f02a6f68ce23f64',1,'glm']]], + ['mediump_5fint8_1541',['mediump_int8',['../a00922.html#ga6fbd69cbdaa44345bff923a2cf63de7e',1,'glm']]], + ['mediump_5fint8_5ft_1542',['mediump_int8_t',['../a00922.html#ga6d7b3789ecb932c26430009478cac7ae',1,'glm']]], + ['mediump_5fivec1_1543',['mediump_ivec1',['../a00922.html#ga6fde13de973ad9ae82839389353f8529',1,'glm']]], + ['mediump_5fivec2_1544',['mediump_ivec2',['../a00922.html#gaf39bf0b097a5c16905c28a31766b7e27',1,'glm']]], + ['mediump_5fivec3_1545',['mediump_ivec3',['../a00922.html#gaebbb60a777cc21c3e63154c23b02817d',1,'glm']]], + ['mediump_5fivec4_1546',['mediump_ivec4',['../a00922.html#ga15c4b5e063630bef11347f98de373ed9',1,'glm']]], + ['mediump_5fmat2_1547',['mediump_mat2',['../a00902.html#ga745452bd9c89f5ad948203e4fb4b4ea3',1,'glm']]], + ['mediump_5fmat2x2_1548',['mediump_mat2x2',['../a00902.html#ga0cdf57d29f9448864237b2fb3e39aa1d',1,'glm']]], + ['mediump_5fmat2x3_1549',['mediump_mat2x3',['../a00902.html#ga497d513d552d927537d61fa11e3701ab',1,'glm']]], + ['mediump_5fmat2x4_1550',['mediump_mat2x4',['../a00902.html#gae7b75ea2e09fa686a79bbe9b6ca68ee5',1,'glm']]], + ['mediump_5fmat3_1551',['mediump_mat3',['../a00902.html#ga5aae49834d02732942f44e61d7bce136',1,'glm']]], + ['mediump_5fmat3x2_1552',['mediump_mat3x2',['../a00902.html#ga9e1c9ee65fef547bde793e69723e24eb',1,'glm']]], + ['mediump_5fmat3x3_1553',['mediump_mat3x3',['../a00902.html#gabc0f2f4ad21c90b341881cf056f8650e',1,'glm']]], + ['mediump_5fmat3x4_1554',['mediump_mat3x4',['../a00902.html#gaa669c6675c3405f76c0b14020d1c0d61',1,'glm']]], + ['mediump_5fmat4_1555',['mediump_mat4',['../a00902.html#gab8531bc3f269aa45835cd6e1972b7fc7',1,'glm']]], + ['mediump_5fmat4x2_1556',['mediump_mat4x2',['../a00902.html#gad75706b70545412ba9ac27d5ee210f66',1,'glm']]], + ['mediump_5fmat4x3_1557',['mediump_mat4x3',['../a00902.html#ga4a1440b5ea3cf84d5b06c79b534bd770',1,'glm']]], + ['mediump_5fmat4x4_1558',['mediump_mat4x4',['../a00902.html#ga15bca2b70917d9752231160d9da74b01',1,'glm']]], + ['mediump_5fquat_1559',['mediump_quat',['../a00861.html#gad2a59409de1bb12ccb6eb692ee7e9d8d',1,'glm']]], + ['mediump_5fu16_1560',['mediump_u16',['../a00922.html#ga9df98857be695d5a30cb30f5bfa38a80',1,'glm']]], + ['mediump_5fu16vec1_1561',['mediump_u16vec1',['../a00922.html#ga400ce8cc566de093a9b28e59e220d6e4',1,'glm']]], + ['mediump_5fu16vec2_1562',['mediump_u16vec2',['../a00922.html#ga429c201b3e92c90b4ef4356f2be52ee1',1,'glm']]], + ['mediump_5fu16vec3_1563',['mediump_u16vec3',['../a00922.html#gac9ba20234b0c3751d45ce575fc71e551',1,'glm']]], + ['mediump_5fu16vec4_1564',['mediump_u16vec4',['../a00922.html#ga5793393686ce5bd2d5968ff9144762b8',1,'glm']]], + ['mediump_5fu32_1565',['mediump_u32',['../a00922.html#ga1bd0e914158bf03135f8a317de6debe9',1,'glm']]], + ['mediump_5fu32vec1_1566',['mediump_u32vec1',['../a00922.html#ga8a11ccd2e38f674bbf3c2d1afc232aee',1,'glm']]], + ['mediump_5fu32vec2_1567',['mediump_u32vec2',['../a00922.html#ga94f74851fce338549c705b5f0d601c4f',1,'glm']]], + ['mediump_5fu32vec3_1568',['mediump_u32vec3',['../a00922.html#ga012c24c8fc69707b90260474c70275a2',1,'glm']]], + ['mediump_5fu32vec4_1569',['mediump_u32vec4',['../a00922.html#ga5d43ee8b5dbaa06c327b03b83682598a',1,'glm']]], + ['mediump_5fu64_1570',['mediump_u64',['../a00922.html#ga2af9490085ae3bdf36a544e9dd073610',1,'glm']]], + ['mediump_5fu64vec1_1571',['mediump_u64vec1',['../a00922.html#ga659f372ccb8307d5db5beca942cde5e8',1,'glm']]], + ['mediump_5fu64vec2_1572',['mediump_u64vec2',['../a00922.html#ga73a08ef5a74798f3a1a99250b5f86a7d',1,'glm']]], + ['mediump_5fu64vec3_1573',['mediump_u64vec3',['../a00922.html#ga1900c6ab74acd392809425953359ef52',1,'glm']]], + ['mediump_5fu64vec4_1574',['mediump_u64vec4',['../a00922.html#gaec7ee455cb379ec2993e81482123e1cc',1,'glm']]], + ['mediump_5fu8_1575',['mediump_u8',['../a00922.html#gad1213a22bbb9e4107f07eaa4956f8281',1,'glm']]], + ['mediump_5fu8vec1_1576',['mediump_u8vec1',['../a00922.html#ga4a43050843b141bdc7e85437faef6f55',1,'glm']]], + ['mediump_5fu8vec2_1577',['mediump_u8vec2',['../a00922.html#ga907f85d4a0eac3d8aaf571e5c2647194',1,'glm']]], + ['mediump_5fu8vec3_1578',['mediump_u8vec3',['../a00922.html#gaddc6f7748b699254942c5216b68f8f7f',1,'glm']]], + ['mediump_5fu8vec4_1579',['mediump_u8vec4',['../a00922.html#gaaf4ee3b76d43d98da02ec399b99bda4b',1,'glm']]], + ['mediump_5fuint16_1580',['mediump_uint16',['../a00922.html#ga2885a6c89916911e418c06bb76b9bdbb',1,'glm']]], + ['mediump_5fuint16_5ft_1581',['mediump_uint16_t',['../a00922.html#ga3963b1050fc65a383ee28e3f827b6e3e',1,'glm']]], + ['mediump_5fuint32_1582',['mediump_uint32',['../a00922.html#ga34dd5ec1988c443bae80f1b20a8ade5f',1,'glm']]], + ['mediump_5fuint32_5ft_1583',['mediump_uint32_t',['../a00922.html#gaf4dae276fd29623950de14a6ca2586b5',1,'glm']]], + ['mediump_5fuint64_1584',['mediump_uint64',['../a00922.html#ga30652709815ad9404272a31957daa59e',1,'glm']]], + ['mediump_5fuint64_5ft_1585',['mediump_uint64_t',['../a00922.html#ga9b170dd4a8f38448a2dc93987c7875e9',1,'glm']]], + ['mediump_5fuint8_1586',['mediump_uint8',['../a00922.html#ga1fa92a233b9110861cdbc8c2ccf0b5a3',1,'glm']]], + ['mediump_5fuint8_5ft_1587',['mediump_uint8_t',['../a00922.html#gadfe65c78231039e90507770db50c98c7',1,'glm']]], + ['mediump_5fumat2_1588',['mediump_umat2',['../a00912.html#ga43041378b3410ea951b7de0dfd2bc7ee',1,'glm']]], + ['mediump_5fumat2x2_1589',['mediump_umat2x2',['../a00912.html#ga124680e6605446ee2c5003afe6a3c5ad',1,'glm']]], + ['mediump_5fumat2x3_1590',['mediump_umat2x3',['../a00912.html#ga7fcb637b3a741d958930091049e93dc3',1,'glm']]], + ['mediump_5fumat2x4_1591',['mediump_umat2x4',['../a00912.html#ga02cf42c69be99ffd657d9e6f63c17bb5',1,'glm']]], + ['mediump_5fumat3_1592',['mediump_umat3',['../a00912.html#ga1730dbe3c67801f53520b06d1aa0a34a',1,'glm']]], + ['mediump_5fumat3x2_1593',['mediump_umat3x2',['../a00912.html#gae83b65eb313187fe4bff3f1d20cf8443',1,'glm']]], + ['mediump_5fumat3x3_1594',['mediump_umat3x3',['../a00912.html#gac84034b2c48971dcf45194c87ef30da5',1,'glm']]], + ['mediump_5fumat3x4_1595',['mediump_umat3x4',['../a00912.html#gad7e5b8bb3bfe4d8db6980743e48a8281',1,'glm']]], + ['mediump_5fumat4_1596',['mediump_umat4',['../a00912.html#ga5087c2beb26a11d9af87432e554cf9d1',1,'glm']]], + ['mediump_5fumat4x2_1597',['mediump_umat4x2',['../a00912.html#gac47efafc2e8446b53245f1cf71ee302d',1,'glm']]], + ['mediump_5fumat4x3_1598',['mediump_umat4x3',['../a00912.html#gadb5f724533a1c3cd150b8d25860fe34a',1,'glm']]], + ['mediump_5fumat4x4_1599',['mediump_umat4x4',['../a00912.html#ga331d718d5b35ab5c3d6bdf923263b8aa',1,'glm']]], + ['mediump_5fuvec1_1600',['mediump_uvec1',['../a00922.html#ga63844d22efcd376cb66a8bab1aad9c40',1,'glm']]], + ['mediump_5fuvec2_1601',['mediump_uvec2',['../a00922.html#ga5b85f66da9cf7c90e595b94cc95d237a',1,'glm']]], + ['mediump_5fuvec3_1602',['mediump_uvec3',['../a00922.html#ga394fa81d7e8d12cd2aaeabb2c9d4b031',1,'glm']]], + ['mediump_5fuvec4_1603',['mediump_uvec4',['../a00922.html#gade9d6be4502877f7e6e7ffb54d46ac3f',1,'glm']]], + ['mediump_5fvec1_1604',['mediump_vec1',['../a00881.html#ga645f53e6b8056609023a894b4e2beef4',1,'glm']]], + ['mediump_5fvec2_1605',['mediump_vec2',['../a00900.html#gabc61976261c406520c7a8e4d946dc3f0',1,'glm']]], + ['mediump_5fvec3_1606',['mediump_vec3',['../a00900.html#ga2384e263df19f1404b733016eff78fca',1,'glm']]], + ['mediump_5fvec4_1607',['mediump_vec4',['../a00900.html#ga5c6978d3ffba06738416a33083853fc0',1,'glm']]], + ['min_1608',['min',['../a00812.html#ga6cf8098827054a270ee36b18e30d471d',1,'glm::min(genType x, genType y)'],['../a00812.html#gaa7d015eba1f9f48519251f4abe69b14d',1,'glm::min(vec< L, T, Q > const &x, T y)'],['../a00812.html#ga31f49ef9e7d1beb003160c5e009b0c48',1,'glm::min(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00866.html#gae7a84710d9b7dee05eb0b2a68630cab4',1,'glm::min(T a, T b, T c)'],['../a00866.html#ga0f57f64fe8994fb4b6f7eebb6466a4e7',1,'glm::min(T a, T b, T c, T d)'],['../a00877.html#ga3cd83d80fd4f433d8e333593ec56dddf',1,'glm::min(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)'],['../a00877.html#gab66920ed064ab518d6859c5a889c4be4',1,'glm::min(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)'],['../a00939.html#ga713d3f9b3e76312c0d314e0c8611a6a6',1,'glm::min(T const &x, T const &y, T const &z)'],['../a00939.html#ga74d1a96e7cdbac40f6d35142d3bcbbd4',1,'glm::min(C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z)'],['../a00939.html#ga42b5c3fc027fd3d9a50d2ccc9126d9f0',1,'glm::min(C< T > const &x, C< T > const &y, C< T > const &z)'],['../a00939.html#ga95466987024d03039607f09e69813d69',1,'glm::min(T const &x, T const &y, T const &z, T const &w)'],['../a00939.html#ga4fe35dd31dd0c45693c9b60b830b8d47',1,'glm::min(C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z, typename C< T >::T const &w)'],['../a00939.html#ga7471ea4159eed8dd9ea4ac5d46c2fead',1,'glm::min(C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)']]], + ['mirrorclamp_1609',['mirrorClamp',['../a00866.html#gaa6856a0a048d2749252848da35e10c8b',1,'glm::mirrorClamp(genType const &Texcoord)'],['../a00877.html#gaf72b0749a21162aebcd47d9acd22e0df',1,'glm::mirrorClamp(vec< L, T, Q > const &Texcoord)']]], + ['mirrorrepeat_1610',['mirrorRepeat',['../a00866.html#ga16a89b0661b60d5bea85137bbae74d73',1,'glm::mirrorRepeat(genType const &Texcoord)'],['../a00877.html#ga9cfc26d9710a853d764dcac518fb42ec',1,'glm::mirrorRepeat(vec< L, T, Q > const &Texcoord)']]], + ['mix_1611',['mix',['../a00812.html#ga6b6e0c7ecb4a5b78f929566355bb7416',1,'glm::mix(genTypeT x, genTypeT y, genTypeU a)'],['../a00856.html#gafbfe587b8da11fb89a30c3d67dd5ccc2',1,'glm::mix(qua< T, Q > const &x, qua< T, Q > const &y, T a)']]], + ['mixed_5fproduct_2ehpp_1612',['mixed_product.hpp',['../a00683.html',1,'']]], + ['mixedproduct_1613',['mixedProduct',['../a00961.html#gab3c6048fbb67f7243b088a4fee48d020',1,'glm']]], + ['mod_1614',['mod',['../a00812.html#ga9b197a452cd52db3c5c18bac72bd7798',1,'glm::mod(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00948.html#gaabfbb41531ab7ad8d06fc176edfba785',1,'glm::mod(int x, int y)'],['../a00948.html#ga63fc8d63e7da1706439233b386ba8b6f',1,'glm::mod(uint x, uint y)']]], + ['modf_1615',['modf',['../a00812.html#ga85e33f139b8db1b39b590a5713b9e679',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_b.html b/include/glm/doc/api/search/all_b.html new file mode 100644 index 0000000..28c2413 --- /dev/null +++ b/include/glm/doc/api/search/all_b.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_b.js b/include/glm/doc/api/search/all_b.js new file mode 100644 index 0000000..ba7c106 --- /dev/null +++ b/include/glm/doc/api/search/all_b.js @@ -0,0 +1,17 @@ +var searchData= +[ + ['next_5ffloat_1616',['next_float',['../a00924.html#gab21fbe69182da4f378862feeffe24b16',1,'glm::next_float(genType x)'],['../a00924.html#gaf8540f4caeba5037dee6506184f360b0',1,'glm::next_float(genType x, int ULPs)'],['../a00924.html#ga72c18d50df8ef360960ddf1f5d09c728',1,'glm::next_float(vec< L, T, Q > const &x)'],['../a00924.html#ga78b63ddacacb9e0e8f4172d85f4373aa',1,'glm::next_float(vec< L, T, Q > const &x, int ULPs)'],['../a00924.html#ga48e17607989d47bc99e16cce74543e19',1,'glm::next_float(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)']]], + ['nextfloat_1617',['nextFloat',['../a00874.html#ga30bc0280e7cefd159867b1aa5050b94a',1,'glm::nextFloat(genType x)'],['../a00874.html#ga54eb5916c5250c8f0ad8224fb8e0d392',1,'glm::nextFloat(genType x, int ULPs)'],['../a00896.html#gadbd6e5dff9c0ae4567b3edd9019c1bee',1,'glm::nextFloat(vec< L, T, Q > const &x)'],['../a00896.html#ga92f82c4f45b5b43ccc29533990db079d',1,'glm::nextFloat(vec< L, T, Q > const &x, int ULPs)'],['../a00896.html#ga48e9b73c50fcf589e0032b8dbed9a3f9',1,'glm::nextFloat(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)']]], + ['nextmultiple_1618',['nextMultiple',['../a00869.html#gab770a3835c44c8a6fd225be4f4e6b317',1,'glm::nextMultiple(genIUType v, genIUType Multiple)'],['../a00887.html#gace38d00601cbf49cd4dc03f003ab42b7',1,'glm::nextMultiple(vec< L, T, Q > const &v, T Multiple)'],['../a00887.html#gacda365edad320c7aff19cc283a3b8ca2',1,'glm::nextMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['nextpoweroftwo_1619',['nextPowerOfTwo',['../a00869.html#ga3a37c2f2fd347886c9af6a3ca3db04dc',1,'glm::nextPowerOfTwo(genIUType v)'],['../a00887.html#gabba67f8aac9915e10fca727277274502',1,'glm::nextPowerOfTwo(vec< L, T, Q > const &v)']]], + ['nlz_1620',['nlz',['../a00948.html#ga78dff8bdb361bf0061194c93e003d189',1,'glm']]], + ['noise_2ehpp_1621',['noise.hpp',['../a00554.html',1,'']]], + ['norm_2ehpp_1622',['norm.hpp',['../a00686.html',1,'']]], + ['normal_2ehpp_1623',['normal.hpp',['../a00689.html',1,'']]], + ['normalize_1624',['normalize',['../a00862.html#gad815f4de07f2fe6502cdd2cd86c3dabd',1,'glm::normalize(qua< T, Q > const &q)'],['../a00897.html#ga3b8d3dcae77870781392ed2902cce597',1,'glm::normalize(vec< L, T, Q > const &x)'],['../a00935.html#ga299b8641509606b1958ffa104a162cfe',1,'glm::normalize(tdualquat< T, Q > const &q)']]], + ['normalize_5fdot_2ehpp_1625',['normalize_dot.hpp',['../a00692.html',1,'']]], + ['normalizedot_1626',['normalizeDot',['../a00964.html#gacb140a2b903115d318c8b0a2fb5a5daa',1,'glm']]], + ['not_5f_1627',['not_',['../a00996.html#ga610fcd175791fd246e328ffee10dbf1e',1,'glm']]], + ['notequal_1628',['notEqual',['../a00836.html#ga8504f18a7e2bf315393032c2137dad83',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)'],['../a00836.html#ga29071147d118569344d10944b7d5c378',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon)'],['../a00836.html#gad7959e14fbc35b4ed2617daf4d67f6cd',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon)'],['../a00836.html#gaa1cd7fc228ef6e26c73583fd0d9c6552',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs)'],['../a00836.html#gaa5517341754149ffba742d230afd1f32',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)'],['../a00863.html#gab441cee0de5867a868f3a586ee68cfe1',1,'glm::notEqual(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00863.html#ga5117a44c1bf21af857cd23e44a96d313',1,'glm::notEqual(qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)'],['../a00872.html#ga835ecf946c74f3d68be93e70b10821e7',1,'glm::notEqual(genType const &x, genType const &y, genType const &epsilon)'],['../a00872.html#gabd21e65b2e4c9d501d51536c4a6ef7cb',1,'glm::notEqual(genType const &x, genType const &y, int ULPs)'],['../a00890.html#ga4a99cc41341567567a608719449c1fac',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon)'],['../a00890.html#ga417cf51304359db18e819dda9bce5767',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon)'],['../a00890.html#ga8b5c2c3f83422ae5b71fa960d03b0339',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs)'],['../a00890.html#ga0b15ffe32987a6029b14398eb0def01a',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)'],['../a00996.html#ga17c19dc1b76cd5aef63e9e7ff3aa3c27',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['number_5fprecision_2ehpp_1629',['number_precision.hpp',['../a00695.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/all_c.html b/include/glm/doc/api/search/all_c.html new file mode 100644 index 0000000..39fc49b --- /dev/null +++ b/include/glm/doc/api/search/all_c.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_c.js b/include/glm/doc/api/search/all_c.js new file mode 100644 index 0000000..584327f --- /dev/null +++ b/include/glm/doc/api/search/all_c.js @@ -0,0 +1,27 @@ +var searchData= +[ + ['opengl_20mathematics_20_28glm_29_1630',['OpenGL Mathematics (GLM)',['../index.html',1,'']]], + ['one_1631',['one',['../a00908.html#ga39c2fb227631ca25894326529bdd1ee5',1,'glm']]], + ['one_5fover_5fpi_1632',['one_over_pi',['../a00908.html#ga555150da2b06d23c8738981d5013e0eb',1,'glm']]], + ['one_5fover_5froot_5ftwo_1633',['one_over_root_two',['../a00908.html#ga788fa23a0939bac4d1d0205fb4f35818',1,'glm']]], + ['one_5fover_5ftwo_5fpi_1634',['one_over_two_pi',['../a00908.html#ga7c922b427986cbb2e4c6ac69874eefbc',1,'glm']]], + ['openbounded_1635',['openBounded',['../a00932.html#gafd303042ba2ba695bf53b2315f53f93f',1,'glm']]], + ['optimum_5fpow_2ehpp_1636',['optimum_pow.hpp',['../a00698.html',1,'']]], + ['orientate2_1637',['orientate2',['../a00937.html#gae16738a9f1887cf4e4db6a124637608d',1,'glm']]], + ['orientate3_1638',['orientate3',['../a00937.html#ga7ca98668a5786f19c7b38299ebbc9b4c',1,'glm::orientate3(T const &angle)'],['../a00937.html#ga7238c8e15c7720e3ca6a45ab151eeabb',1,'glm::orientate3(vec< 3, T, Q > const &angles)']]], + ['orientate4_1639',['orientate4',['../a00937.html#ga4a044653f71a4ecec68e0b623382b48a',1,'glm']]], + ['orientation_1640',['orientation',['../a00976.html#ga1a32fceb71962e6160e8af295c91930a',1,'glm']]], + ['orientedangle_1641',['orientedAngle',['../a00989.html#ga9556a803dce87fe0f42fdabe4ebba1d5',1,'glm::orientedAngle(vec< 2, T, Q > const &x, vec< 2, T, Q > const &y)'],['../a00989.html#ga706fce3d111f485839756a64f5a48553',1,'glm::orientedAngle(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, vec< 3, T, Q > const &ref)']]], + ['ortho_1642',['ortho',['../a00814.html#gae5b6b40ed882cd56cd7cb97701909c06',1,'glm::ortho(T left, T right, T bottom, T top)'],['../a00814.html#ga6615d8a9d39432e279c4575313ecb456',1,'glm::ortho(T left, T right, T bottom, T top, T zNear, T zFar)']]], + ['ortholh_1643',['orthoLH',['../a00814.html#gad122a79aadaa5529cec4ac197203db7f',1,'glm']]], + ['ortholh_5fno_1644',['orthoLH_NO',['../a00814.html#ga526416735ea7c5c5cd255bf99d051bd8',1,'glm']]], + ['ortholh_5fzo_1645',['orthoLH_ZO',['../a00814.html#gab37ac3eec8d61f22fceda7775e836afa',1,'glm']]], + ['orthono_1646',['orthoNO',['../a00814.html#gab219d28a8f178d4517448fcd6395a073',1,'glm']]], + ['orthonormalize_1647',['orthonormalize',['../a00967.html#ga4cab5d698e6e2eccea30c8e81c74371f',1,'glm::orthonormalize(mat< 3, 3, T, Q > const &m)'],['../a00967.html#gac3bc7ef498815026bc3d361ae0b7138e',1,'glm::orthonormalize(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)']]], + ['orthonormalize_2ehpp_1648',['orthonormalize.hpp',['../a00701.html',1,'']]], + ['orthorh_1649',['orthoRH',['../a00814.html#ga16264c9b838edeb9dd1de7a1010a13a4',1,'glm']]], + ['orthorh_5fno_1650',['orthoRH_NO',['../a00814.html#gaa2f7a1373170bf0a4a2ddef9b0706780',1,'glm']]], + ['orthorh_5fzo_1651',['orthoRH_ZO',['../a00814.html#ga9aea2e515b08fd7dce47b7b6ec34d588',1,'glm']]], + ['orthozo_1652',['orthoZO',['../a00814.html#gaea11a70817af2c0801c869dea0b7a5bc',1,'glm']]], + ['outerproduct_1653',['outerProduct',['../a00834.html#ga80d31e9320fd77035336e01d0228321f',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_d.html b/include/glm/doc/api/search/all_d.html new file mode 100644 index 0000000..cc470e5 --- /dev/null +++ b/include/glm/doc/api/search/all_d.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_d.js b/include/glm/doc/api/search/all_d.js new file mode 100644 index 0000000..4951cbb --- /dev/null +++ b/include/glm/doc/api/search/all_d.js @@ -0,0 +1,274 @@ +var searchData= +[ + ['packdouble2x32_1654',['packDouble2x32',['../a00994.html#gaa916ca426b2bb0343ba17e3753e245c2',1,'glm']]], + ['packed_5fbvec1_1655',['packed_bvec1',['../a00921.html#ga88632cea9008ac0ac1388e94e804a53c',1,'glm']]], + ['packed_5fbvec2_1656',['packed_bvec2',['../a00921.html#gab85245913eaa40ab82adabcae37086cb',1,'glm']]], + ['packed_5fbvec3_1657',['packed_bvec3',['../a00921.html#ga0c48f9417f649e27f3fb0c9f733a18bd',1,'glm']]], + ['packed_5fbvec4_1658',['packed_bvec4',['../a00921.html#ga3180d7db84a74c402157df3bbc0ae3ed',1,'glm']]], + ['packed_5fdmat2_1659',['packed_dmat2',['../a00921.html#gad87408a8350918711f845f071bbe43fb',1,'glm']]], + ['packed_5fdmat2x2_1660',['packed_dmat2x2',['../a00921.html#gaaa33d8e06657a777efb0c72c44ce87a9',1,'glm']]], + ['packed_5fdmat2x3_1661',['packed_dmat2x3',['../a00921.html#gac3a5315f588ba04ad255188071ec4e22',1,'glm']]], + ['packed_5fdmat2x4_1662',['packed_dmat2x4',['../a00921.html#gae398fc3156f51d3684b08f62c1a5a6d4',1,'glm']]], + ['packed_5fdmat3_1663',['packed_dmat3',['../a00921.html#ga03dfc90d539cc87ea3a15a9caa5d2245',1,'glm']]], + ['packed_5fdmat3x2_1664',['packed_dmat3x2',['../a00921.html#gae36de20a4c0e0b1444b7903ae811d94e',1,'glm']]], + ['packed_5fdmat3x3_1665',['packed_dmat3x3',['../a00921.html#gab9b909f1392d86854334350efcae85f5',1,'glm']]], + ['packed_5fdmat3x4_1666',['packed_dmat3x4',['../a00921.html#ga199131fd279c92c2ac12df6d978f1dd6',1,'glm']]], + ['packed_5fdmat4_1667',['packed_dmat4',['../a00921.html#gada980a3485640aa8151f368f17ad3086',1,'glm']]], + ['packed_5fdmat4x2_1668',['packed_dmat4x2',['../a00921.html#ga6dc65249730698d3cc9ac5d7e1bc4d72',1,'glm']]], + ['packed_5fdmat4x3_1669',['packed_dmat4x3',['../a00921.html#gadf202aaa9ed71c09f9bbe347e43f8764',1,'glm']]], + ['packed_5fdmat4x4_1670',['packed_dmat4x4',['../a00921.html#gae20617435a6d042d7c38da2badd64a09',1,'glm']]], + ['packed_5fdquat_1671',['packed_dquat',['../a00921.html#gab81f0e92623c05b97a66c5efd1e29475',1,'glm']]], + ['packed_5fdvec1_1672',['packed_dvec1',['../a00921.html#ga532f0c940649b1ee303acd572fc35531',1,'glm']]], + ['packed_5fdvec2_1673',['packed_dvec2',['../a00921.html#ga5c194b11fbda636f2ab20c3bd0079196',1,'glm']]], + ['packed_5fdvec3_1674',['packed_dvec3',['../a00921.html#ga0581ea552d86b2b5de7a2804bed80e72',1,'glm']]], + ['packed_5fdvec4_1675',['packed_dvec4',['../a00921.html#gae8a9b181f9dc813ad6e125a52b14b935',1,'glm']]], + ['packed_5fhighp_5fbvec1_1676',['packed_highp_bvec1',['../a00921.html#ga439e97795314b81cd15abd4e5c2e6e7a',1,'glm']]], + ['packed_5fhighp_5fbvec2_1677',['packed_highp_bvec2',['../a00921.html#gad791d671f4fcf1ed1ea41f752916b70a',1,'glm']]], + ['packed_5fhighp_5fbvec3_1678',['packed_highp_bvec3',['../a00921.html#ga6a5a3250b57dfadc66735bc72911437f',1,'glm']]], + ['packed_5fhighp_5fbvec4_1679',['packed_highp_bvec4',['../a00921.html#ga09f517d88b996ef1b2f42fd54222b82d',1,'glm']]], + ['packed_5fhighp_5fdmat2_1680',['packed_highp_dmat2',['../a00921.html#gae29686632fd05efac0675d9a6370d77b',1,'glm']]], + ['packed_5fhighp_5fdmat2x2_1681',['packed_highp_dmat2x2',['../a00921.html#ga22bd6382b16052e301edbfc031b9f37a',1,'glm']]], + ['packed_5fhighp_5fdmat2x3_1682',['packed_highp_dmat2x3',['../a00921.html#ga999d82719696d4c59f4d236dd08f273d',1,'glm']]], + ['packed_5fhighp_5fdmat2x4_1683',['packed_highp_dmat2x4',['../a00921.html#ga6998ac2a8d7fe456b651a6336ed26bb0',1,'glm']]], + ['packed_5fhighp_5fdmat3_1684',['packed_highp_dmat3',['../a00921.html#gadac7c040c4810dd52b36fcd09d097400',1,'glm']]], + ['packed_5fhighp_5fdmat3x2_1685',['packed_highp_dmat3x2',['../a00921.html#gab462744977beb85fb5c782bc2eea7b15',1,'glm']]], + ['packed_5fhighp_5fdmat3x3_1686',['packed_highp_dmat3x3',['../a00921.html#ga49e5a709d098523823b2f824e48672a6',1,'glm']]], + ['packed_5fhighp_5fdmat3x4_1687',['packed_highp_dmat3x4',['../a00921.html#ga2c67b3b0adab71c8680c3d819f1fa9b7',1,'glm']]], + ['packed_5fhighp_5fdmat4_1688',['packed_highp_dmat4',['../a00921.html#ga6718822cd7af005a9b5bd6ee282f6ba6',1,'glm']]], + ['packed_5fhighp_5fdmat4x2_1689',['packed_highp_dmat4x2',['../a00921.html#ga12e39e797fb724a5b51fcbea2513a7da',1,'glm']]], + ['packed_5fhighp_5fdmat4x3_1690',['packed_highp_dmat4x3',['../a00921.html#ga79c2e9f82e67963c1ecad0ad6d0ec72e',1,'glm']]], + ['packed_5fhighp_5fdmat4x4_1691',['packed_highp_dmat4x4',['../a00921.html#ga2df58e03e5afded28707b4f7d077afb4',1,'glm']]], + ['packed_5fhighp_5fdquat_1692',['packed_highp_dquat',['../a00921.html#ga2181ff3f0e91250807f0233b1493d8eb',1,'glm']]], + ['packed_5fhighp_5fdvec1_1693',['packed_highp_dvec1',['../a00921.html#gab472b2d917b5e6efd76e8c7dbfbbf9f1',1,'glm']]], + ['packed_5fhighp_5fdvec2_1694',['packed_highp_dvec2',['../a00921.html#ga5b2dc48fa19b684d207d69c6b145eb63',1,'glm']]], + ['packed_5fhighp_5fdvec3_1695',['packed_highp_dvec3',['../a00921.html#gaaac6b356ef00154da41aaae7d1549193',1,'glm']]], + ['packed_5fhighp_5fdvec4_1696',['packed_highp_dvec4',['../a00921.html#ga81b5368fe485e2630aa9b44832d592e7',1,'glm']]], + ['packed_5fhighp_5fivec1_1697',['packed_highp_ivec1',['../a00921.html#ga7245acc887a5438f46fd85fdf076bb3b',1,'glm']]], + ['packed_5fhighp_5fivec2_1698',['packed_highp_ivec2',['../a00921.html#ga54f368ec6b514a5aa4f28d40e6f93ef7',1,'glm']]], + ['packed_5fhighp_5fivec3_1699',['packed_highp_ivec3',['../a00921.html#ga865a9c7bb22434b1b8c5ac31e164b628',1,'glm']]], + ['packed_5fhighp_5fivec4_1700',['packed_highp_ivec4',['../a00921.html#gad6f1b4e3a51c2c051814b60d5d1b8895',1,'glm']]], + ['packed_5fhighp_5fmat2_1701',['packed_highp_mat2',['../a00921.html#ga2f2d913d8cca2f935b2522964408c0b2',1,'glm']]], + ['packed_5fhighp_5fmat2x2_1702',['packed_highp_mat2x2',['../a00921.html#ga245c12d2daf67feecaa2d3277c8f6661',1,'glm']]], + ['packed_5fhighp_5fmat2x3_1703',['packed_highp_mat2x3',['../a00921.html#ga069cc8892aadae144c00f35297617d44',1,'glm']]], + ['packed_5fhighp_5fmat2x4_1704',['packed_highp_mat2x4',['../a00921.html#ga6904d09b62141d09712b76983892f95b',1,'glm']]], + ['packed_5fhighp_5fmat3_1705',['packed_highp_mat3',['../a00921.html#gabdd5fbffe8b8b8a7b33523f25b120dbe',1,'glm']]], + ['packed_5fhighp_5fmat3x2_1706',['packed_highp_mat3x2',['../a00921.html#ga2624719cb251d8de8cad1beaefc3a3f9',1,'glm']]], + ['packed_5fhighp_5fmat3x3_1707',['packed_highp_mat3x3',['../a00921.html#gaf2e07527d678440bf0c20adbeb9177c5',1,'glm']]], + ['packed_5fhighp_5fmat3x4_1708',['packed_highp_mat3x4',['../a00921.html#ga72102fa6ac2445aa3bb203128ad52449',1,'glm']]], + ['packed_5fhighp_5fmat4_1709',['packed_highp_mat4',['../a00921.html#ga253e8379b08d2dc6fe2800b2fb913203',1,'glm']]], + ['packed_5fhighp_5fmat4x2_1710',['packed_highp_mat4x2',['../a00921.html#gae389c2071cf3cdb33e7812c6fd156710',1,'glm']]], + ['packed_5fhighp_5fmat4x3_1711',['packed_highp_mat4x3',['../a00921.html#ga4584f64394bd7123b7a8534741e4916c',1,'glm']]], + ['packed_5fhighp_5fmat4x4_1712',['packed_highp_mat4x4',['../a00921.html#ga0149fe15668925147e07c94fd2c2d6ae',1,'glm']]], + ['packed_5fhighp_5fquat_1713',['packed_highp_quat',['../a00921.html#ga473ba40eeb4448ccba73dfff3cc10fe8',1,'glm']]], + ['packed_5fhighp_5fuvec1_1714',['packed_highp_uvec1',['../a00921.html#ga8c32b53f628a3616aa5061e58d66fe74',1,'glm']]], + ['packed_5fhighp_5fuvec2_1715',['packed_highp_uvec2',['../a00921.html#gab704d4fb15f6f96d70e363d5db7060cd',1,'glm']]], + ['packed_5fhighp_5fuvec3_1716',['packed_highp_uvec3',['../a00921.html#ga0b570da473fec4619db5aa0dce5133b0',1,'glm']]], + ['packed_5fhighp_5fuvec4_1717',['packed_highp_uvec4',['../a00921.html#gaa582f38c82aef61dea7aaedf15bb06a6',1,'glm']]], + ['packed_5fhighp_5fvec1_1718',['packed_highp_vec1',['../a00921.html#ga56473759d2702ee19ab7f91d0017fa70',1,'glm']]], + ['packed_5fhighp_5fvec2_1719',['packed_highp_vec2',['../a00921.html#ga6b8b9475e7c3b16aed13edbc460bbc4d',1,'glm']]], + ['packed_5fhighp_5fvec3_1720',['packed_highp_vec3',['../a00921.html#ga3815661df0e2de79beff8168c09adf1e',1,'glm']]], + ['packed_5fhighp_5fvec4_1721',['packed_highp_vec4',['../a00921.html#ga4015f36bf5a5adb6ac5d45beed959867',1,'glm']]], + ['packed_5fivec1_1722',['packed_ivec1',['../a00921.html#ga11581a06fc7bf941fa4d4b6aca29812c',1,'glm']]], + ['packed_5fivec2_1723',['packed_ivec2',['../a00921.html#ga1fe4c5f56b8087d773aa90dc88a257a7',1,'glm']]], + ['packed_5fivec3_1724',['packed_ivec3',['../a00921.html#gae157682a7847161787951ba1db4cf325',1,'glm']]], + ['packed_5fivec4_1725',['packed_ivec4',['../a00921.html#gac228b70372abd561340d5f926a7c1778',1,'glm']]], + ['packed_5flowp_5fbvec1_1726',['packed_lowp_bvec1',['../a00921.html#gae3c8750f53259ece334d3aa3b3649a40',1,'glm']]], + ['packed_5flowp_5fbvec2_1727',['packed_lowp_bvec2',['../a00921.html#gac969befedbda69eb78d4e23f751fdbee',1,'glm']]], + ['packed_5flowp_5fbvec3_1728',['packed_lowp_bvec3',['../a00921.html#ga7c20adbe1409e3fe4544677a7f6fe954',1,'glm']]], + ['packed_5flowp_5fbvec4_1729',['packed_lowp_bvec4',['../a00921.html#gae473587cff3092edc0877fc691c26a0b',1,'glm']]], + ['packed_5flowp_5fdmat2_1730',['packed_lowp_dmat2',['../a00921.html#gac93f9b1a35b9de4f456b9f2dfeaf1097',1,'glm']]], + ['packed_5flowp_5fdmat2x2_1731',['packed_lowp_dmat2x2',['../a00921.html#gaeeaff6c132ec91ebd21da3a2399548ea',1,'glm']]], + ['packed_5flowp_5fdmat2x3_1732',['packed_lowp_dmat2x3',['../a00921.html#ga2ccdcd4846775cbe4f9d12e71d55b5d2',1,'glm']]], + ['packed_5flowp_5fdmat2x4_1733',['packed_lowp_dmat2x4',['../a00921.html#gac870c47d2d9d48503f6c9ee3baec8ce1',1,'glm']]], + ['packed_5flowp_5fdmat3_1734',['packed_lowp_dmat3',['../a00921.html#ga3894a059eeaacec8791c25de398d9955',1,'glm']]], + ['packed_5flowp_5fdmat3x2_1735',['packed_lowp_dmat3x2',['../a00921.html#ga23ec236950f5859f59197663266b535d',1,'glm']]], + ['packed_5flowp_5fdmat3x3_1736',['packed_lowp_dmat3x3',['../a00921.html#ga4a7c7d8c3a663d0ec2a858cbfa14e54c',1,'glm']]], + ['packed_5flowp_5fdmat3x4_1737',['packed_lowp_dmat3x4',['../a00921.html#ga8fc0e66da83599071b7ec17510686cd9',1,'glm']]], + ['packed_5flowp_5fdmat4_1738',['packed_lowp_dmat4',['../a00921.html#ga03e1edf5666c40affe39aee35c87956f',1,'glm']]], + ['packed_5flowp_5fdmat4x2_1739',['packed_lowp_dmat4x2',['../a00921.html#ga39658fb13369db869d363684bd8399c0',1,'glm']]], + ['packed_5flowp_5fdmat4x3_1740',['packed_lowp_dmat4x3',['../a00921.html#ga30b0351eebc18c6056101359bdd3a359',1,'glm']]], + ['packed_5flowp_5fdmat4x4_1741',['packed_lowp_dmat4x4',['../a00921.html#ga0294d4c45151425c86a11deee7693c0e',1,'glm']]], + ['packed_5flowp_5fdquat_1742',['packed_lowp_dquat',['../a00921.html#gaaeaa03a3ec94cfb48e1703d70bc8a105',1,'glm']]], + ['packed_5flowp_5fdvec1_1743',['packed_lowp_dvec1',['../a00921.html#ga054050e9d4e78d81db0e6d1573b1c624',1,'glm']]], + ['packed_5flowp_5fdvec2_1744',['packed_lowp_dvec2',['../a00921.html#gadc19938ddb204bfcb4d9ef35b1e2bf93',1,'glm']]], + ['packed_5flowp_5fdvec3_1745',['packed_lowp_dvec3',['../a00921.html#ga9189210cabd6651a5e14a4c46fb20598',1,'glm']]], + ['packed_5flowp_5fdvec4_1746',['packed_lowp_dvec4',['../a00921.html#ga262dafd0c001c3a38d1cc91d024ca738',1,'glm']]], + ['packed_5flowp_5fivec1_1747',['packed_lowp_ivec1',['../a00921.html#gaf22b77f1cf3e73b8b1dddfe7f959357c',1,'glm']]], + ['packed_5flowp_5fivec2_1748',['packed_lowp_ivec2',['../a00921.html#ga52635859f5ef660ab999d22c11b7867f',1,'glm']]], + ['packed_5flowp_5fivec3_1749',['packed_lowp_ivec3',['../a00921.html#ga98c9d122a959e9f3ce10a5623c310f5d',1,'glm']]], + ['packed_5flowp_5fivec4_1750',['packed_lowp_ivec4',['../a00921.html#ga931731b8ae3b54c7ecc221509dae96bc',1,'glm']]], + ['packed_5flowp_5fmat2_1751',['packed_lowp_mat2',['../a00921.html#ga70dcb9ef0b24e832772a7405efa9669a',1,'glm']]], + ['packed_5flowp_5fmat2x2_1752',['packed_lowp_mat2x2',['../a00921.html#gac70667c7642ec8d50245e6e6936a3927',1,'glm']]], + ['packed_5flowp_5fmat2x3_1753',['packed_lowp_mat2x3',['../a00921.html#ga3e7df5a11e1be27bc29a4c0d3956f234',1,'glm']]], + ['packed_5flowp_5fmat2x4_1754',['packed_lowp_mat2x4',['../a00921.html#gaea9c555e669dc56c45d95dcc75d59bf3',1,'glm']]], + ['packed_5flowp_5fmat3_1755',['packed_lowp_mat3',['../a00921.html#ga0d22400969dd223465b2900fecfb4f53',1,'glm']]], + ['packed_5flowp_5fmat3x2_1756',['packed_lowp_mat3x2',['../a00921.html#ga128cd52649621861635fab746df91735',1,'glm']]], + ['packed_5flowp_5fmat3x3_1757',['packed_lowp_mat3x3',['../a00921.html#ga5adf1802c5375a9dfb1729691bedd94e',1,'glm']]], + ['packed_5flowp_5fmat3x4_1758',['packed_lowp_mat3x4',['../a00921.html#ga92247ca09fa03c4013ba364f3a0fca7f',1,'glm']]], + ['packed_5flowp_5fmat4_1759',['packed_lowp_mat4',['../a00921.html#ga2a1dd2387725a335413d4c4fee8609c4',1,'glm']]], + ['packed_5flowp_5fmat4x2_1760',['packed_lowp_mat4x2',['../a00921.html#ga8f22607dcd090cd280071ccc689f4079',1,'glm']]], + ['packed_5flowp_5fmat4x3_1761',['packed_lowp_mat4x3',['../a00921.html#ga7661d759d6ad218e132e3d051e7b2c6c',1,'glm']]], + ['packed_5flowp_5fmat4x4_1762',['packed_lowp_mat4x4',['../a00921.html#ga776f18d1a6e7d399f05d386167dc60f5',1,'glm']]], + ['packed_5flowp_5fquat_1763',['packed_lowp_quat',['../a00921.html#ga7ca4acb5f69c7b4e7f834d2e8e012b7f',1,'glm']]], + ['packed_5flowp_5fuvec1_1764',['packed_lowp_uvec1',['../a00921.html#gaf111fed760ecce16cb1988807569bee5',1,'glm']]], + ['packed_5flowp_5fuvec2_1765',['packed_lowp_uvec2',['../a00921.html#ga958210fe245a75b058325d367c951132',1,'glm']]], + ['packed_5flowp_5fuvec3_1766',['packed_lowp_uvec3',['../a00921.html#ga576a3f8372197a56a79dee1c8280f485',1,'glm']]], + ['packed_5flowp_5fuvec4_1767',['packed_lowp_uvec4',['../a00921.html#gafdd97922b4a2a42cd0c99a13877ff4da',1,'glm']]], + ['packed_5flowp_5fvec1_1768',['packed_lowp_vec1',['../a00921.html#ga0a6198fe64166a6a61084d43c71518a9',1,'glm']]], + ['packed_5flowp_5fvec2_1769',['packed_lowp_vec2',['../a00921.html#gafbf1c2cce307c5594b165819ed83bf5d',1,'glm']]], + ['packed_5flowp_5fvec3_1770',['packed_lowp_vec3',['../a00921.html#ga3a30c137c1f8cce478c28eab0427a570',1,'glm']]], + ['packed_5flowp_5fvec4_1771',['packed_lowp_vec4',['../a00921.html#ga3cc94fb8de80bbd8a4aa7a5b206d304a',1,'glm']]], + ['packed_5fmat2_1772',['packed_mat2',['../a00921.html#gadd019b43fcf42e1590d45dddaa504a1a',1,'glm']]], + ['packed_5fmat2x2_1773',['packed_mat2x2',['../a00921.html#ga51eaadcdc292c8750f746a5dc3e6c517',1,'glm']]], + ['packed_5fmat2x3_1774',['packed_mat2x3',['../a00921.html#ga301b76a89b8a9625501ca58815017f20',1,'glm']]], + ['packed_5fmat2x4_1775',['packed_mat2x4',['../a00921.html#gac401da1dd9177ad81d7618a2a5541e23',1,'glm']]], + ['packed_5fmat3_1776',['packed_mat3',['../a00921.html#ga9bc12b0ab7be8448836711b77cc7b83a',1,'glm']]], + ['packed_5fmat3x2_1777',['packed_mat3x2',['../a00921.html#ga134f0d99fbd2459c13cd9ebd056509fa',1,'glm']]], + ['packed_5fmat3x3_1778',['packed_mat3x3',['../a00921.html#ga6c1dbe8cde9fbb231284b01f8aeaaa99',1,'glm']]], + ['packed_5fmat3x4_1779',['packed_mat3x4',['../a00921.html#gad63515526cccfe88ffa8fe5ed64f95f8',1,'glm']]], + ['packed_5fmat4_1780',['packed_mat4',['../a00921.html#ga2c139854e5b04cf08a957dee3b510441',1,'glm']]], + ['packed_5fmat4x2_1781',['packed_mat4x2',['../a00921.html#ga379c1153f1339bdeaefd592bebf538e8',1,'glm']]], + ['packed_5fmat4x3_1782',['packed_mat4x3',['../a00921.html#gab286466e19f7399c8d25089da9400d43',1,'glm']]], + ['packed_5fmat4x4_1783',['packed_mat4x4',['../a00921.html#ga67e7102557d6067bb6ac00d4ad0e1374',1,'glm']]], + ['packed_5fmediump_5fbvec1_1784',['packed_mediump_bvec1',['../a00921.html#ga5546d828d63010a8f9cf81161ad0275a',1,'glm']]], + ['packed_5fmediump_5fbvec2_1785',['packed_mediump_bvec2',['../a00921.html#gab4c6414a59539e66a242ad4cf4b476b4',1,'glm']]], + ['packed_5fmediump_5fbvec3_1786',['packed_mediump_bvec3',['../a00921.html#ga70147763edff3fe96b03a0b98d6339a2',1,'glm']]], + ['packed_5fmediump_5fbvec4_1787',['packed_mediump_bvec4',['../a00921.html#ga7b1620f259595b9da47a6374fc44588a',1,'glm']]], + ['packed_5fmediump_5fdmat2_1788',['packed_mediump_dmat2',['../a00921.html#ga9d60e32d3fcb51f817046cd881fdbf57',1,'glm']]], + ['packed_5fmediump_5fdmat2x2_1789',['packed_mediump_dmat2x2',['../a00921.html#ga39e8bb9b70e5694964e8266a21ba534e',1,'glm']]], + ['packed_5fmediump_5fdmat2x3_1790',['packed_mediump_dmat2x3',['../a00921.html#ga8897c6d9adb4140b1c3b0a07b8f0a430',1,'glm']]], + ['packed_5fmediump_5fdmat2x4_1791',['packed_mediump_dmat2x4',['../a00921.html#gaaa4126969c765e7faa2ebf6951c22ffb',1,'glm']]], + ['packed_5fmediump_5fdmat3_1792',['packed_mediump_dmat3',['../a00921.html#gaf969eb879c76a5f4576e4a1e10095cf6',1,'glm']]], + ['packed_5fmediump_5fdmat3x2_1793',['packed_mediump_dmat3x2',['../a00921.html#ga86efe91cdaa2864c828a5d6d46356c6a',1,'glm']]], + ['packed_5fmediump_5fdmat3x3_1794',['packed_mediump_dmat3x3',['../a00921.html#gaf85877d38d8cfbc21d59d939afd72375',1,'glm']]], + ['packed_5fmediump_5fdmat3x4_1795',['packed_mediump_dmat3x4',['../a00921.html#gad5dcaf93df267bc3029174e430e0907f',1,'glm']]], + ['packed_5fmediump_5fdmat4_1796',['packed_mediump_dmat4',['../a00921.html#ga4b0ee7996651ddd04eaa0c4cdbb66332',1,'glm']]], + ['packed_5fmediump_5fdmat4x2_1797',['packed_mediump_dmat4x2',['../a00921.html#ga9a15514a0631f700de6312b9d5db3a73',1,'glm']]], + ['packed_5fmediump_5fdmat4x3_1798',['packed_mediump_dmat4x3',['../a00921.html#gab5b36cc9caee1bb1c5178fe191bf5713',1,'glm']]], + ['packed_5fmediump_5fdmat4x4_1799',['packed_mediump_dmat4x4',['../a00921.html#ga21e86cf2f6c126bacf31b8985db06bd4',1,'glm']]], + ['packed_5fmediump_5fdquat_1800',['packed_mediump_dquat',['../a00921.html#ga1dabb421595c34a9dbec085a4d0e6685',1,'glm']]], + ['packed_5fmediump_5fdvec1_1801',['packed_mediump_dvec1',['../a00921.html#ga8920e90ea9c01d9c97e604a938ce2cbd',1,'glm']]], + ['packed_5fmediump_5fdvec2_1802',['packed_mediump_dvec2',['../a00921.html#ga0c754a783b6fcf80374c013371c4dae9',1,'glm']]], + ['packed_5fmediump_5fdvec3_1803',['packed_mediump_dvec3',['../a00921.html#ga1f18ada6f7cdd8c46db33ba987280fc4',1,'glm']]], + ['packed_5fmediump_5fdvec4_1804',['packed_mediump_dvec4',['../a00921.html#ga568b850f1116b667043533cf77826968',1,'glm']]], + ['packed_5fmediump_5fivec1_1805',['packed_mediump_ivec1',['../a00921.html#ga09507ef020a49517a7bcd50438f05056',1,'glm']]], + ['packed_5fmediump_5fivec2_1806',['packed_mediump_ivec2',['../a00921.html#gaaa891048dddef4627df33809ec726219',1,'glm']]], + ['packed_5fmediump_5fivec3_1807',['packed_mediump_ivec3',['../a00921.html#ga06f26d54dca30994eb1fdadb8e69f4a2',1,'glm']]], + ['packed_5fmediump_5fivec4_1808',['packed_mediump_ivec4',['../a00921.html#ga70130dc8ed9c966ec2a221ce586d45d8',1,'glm']]], + ['packed_5fmediump_5fmat2_1809',['packed_mediump_mat2',['../a00921.html#ga43cd36d430c5187bfdca34a23cb41581',1,'glm']]], + ['packed_5fmediump_5fmat2x2_1810',['packed_mediump_mat2x2',['../a00921.html#ga2d2a73e662759e301c22b8931ff6a526',1,'glm']]], + ['packed_5fmediump_5fmat2x3_1811',['packed_mediump_mat2x3',['../a00921.html#ga99049db01faf1e95ed9fb875a47dffe2',1,'glm']]], + ['packed_5fmediump_5fmat2x4_1812',['packed_mediump_mat2x4',['../a00921.html#gad43a240533f388ce0504b495d9df3d52',1,'glm']]], + ['packed_5fmediump_5fmat3_1813',['packed_mediump_mat3',['../a00921.html#ga13a75c6cbd0a411f694bc82486cd1e55',1,'glm']]], + ['packed_5fmediump_5fmat3x2_1814',['packed_mediump_mat3x2',['../a00921.html#ga04cfaf1421284df3c24ea0985dab24e7',1,'glm']]], + ['packed_5fmediump_5fmat3x3_1815',['packed_mediump_mat3x3',['../a00921.html#gaaa9cea174d342dd9650e3436823cab23',1,'glm']]], + ['packed_5fmediump_5fmat3x4_1816',['packed_mediump_mat3x4',['../a00921.html#gabc93a9560593bd32e099c908531305f5',1,'glm']]], + ['packed_5fmediump_5fmat4_1817',['packed_mediump_mat4',['../a00921.html#gae89d72ffc149147f61df701bbc8755bf',1,'glm']]], + ['packed_5fmediump_5fmat4x2_1818',['packed_mediump_mat4x2',['../a00921.html#gaa458f9d9e0934bae3097e2a373b24707',1,'glm']]], + ['packed_5fmediump_5fmat4x3_1819',['packed_mediump_mat4x3',['../a00921.html#ga02ca6255394aa778abaeb0f733c4d2b6',1,'glm']]], + ['packed_5fmediump_5fmat4x4_1820',['packed_mediump_mat4x4',['../a00921.html#gaf304f64c06743c1571401504d3f50259',1,'glm']]], + ['packed_5fmediump_5fquat_1821',['packed_mediump_quat',['../a00921.html#ga2e5c51d9c29323b8b1d26fbf8697cfae',1,'glm']]], + ['packed_5fmediump_5fuvec1_1822',['packed_mediump_uvec1',['../a00921.html#ga2c29fb42bab9a4f9b66bc60b2e514a34',1,'glm']]], + ['packed_5fmediump_5fuvec2_1823',['packed_mediump_uvec2',['../a00921.html#gaa1f95690a78dc12e39da32943243aeef',1,'glm']]], + ['packed_5fmediump_5fuvec3_1824',['packed_mediump_uvec3',['../a00921.html#ga1ea2bbdbcb0a69242f6d884663c1b0ab',1,'glm']]], + ['packed_5fmediump_5fuvec4_1825',['packed_mediump_uvec4',['../a00921.html#ga63a73be86a4f07ea7a7499ab0bfebe45',1,'glm']]], + ['packed_5fmediump_5fvec1_1826',['packed_mediump_vec1',['../a00921.html#ga71d63cead1e113fca0bcdaaa33aad050',1,'glm']]], + ['packed_5fmediump_5fvec2_1827',['packed_mediump_vec2',['../a00921.html#ga6844c6f4691d1bf67673240850430948',1,'glm']]], + ['packed_5fmediump_5fvec3_1828',['packed_mediump_vec3',['../a00921.html#gab0eb771b708c5b2205d9b14dd1434fd8',1,'glm']]], + ['packed_5fmediump_5fvec4_1829',['packed_mediump_vec4',['../a00921.html#ga68c9bb24f387b312bae6a0a68e74d95e',1,'glm']]], + ['packed_5fquat_1830',['packed_quat',['../a00921.html#gae71d7549208159faa0f6957f9418a828',1,'glm']]], + ['packed_5fuvec1_1831',['packed_uvec1',['../a00921.html#ga5621493caac01bdd22ab6be4416b0314',1,'glm']]], + ['packed_5fuvec2_1832',['packed_uvec2',['../a00921.html#gabcc33efb4d5e83b8fe4706360e75b932',1,'glm']]], + ['packed_5fuvec3_1833',['packed_uvec3',['../a00921.html#gab96804e99e3a72a35740fec690c79617',1,'glm']]], + ['packed_5fuvec4_1834',['packed_uvec4',['../a00921.html#ga8e5d92e84ebdbe2480cf96bc17d6e2f2',1,'glm']]], + ['packed_5fvec1_1835',['packed_vec1',['../a00921.html#ga14741e3d9da9ae83765389927f837331',1,'glm']]], + ['packed_5fvec2_1836',['packed_vec2',['../a00921.html#ga3254defa5a8f0ae4b02b45fedba84a66',1,'glm']]], + ['packed_5fvec3_1837',['packed_vec3',['../a00921.html#gaccccd090e185450caa28b5b63ad4e8f0',1,'glm']]], + ['packed_5fvec4_1838',['packed_vec4',['../a00921.html#ga37a0e0bf653169b581c5eea3d547fa5d',1,'glm']]], + ['packf2x11_5f1x10_1839',['packF2x11_1x10',['../a00916.html#ga4944ad465ff950e926d49621f916c78d',1,'glm']]], + ['packf3x9_5fe1x5_1840',['packF3x9_E1x5',['../a00916.html#ga3f648fc205467792dc6d8c59c748f8a6',1,'glm']]], + ['packhalf_1841',['packHalf',['../a00916.html#ga2d8bbce673ebc04831c1fb05c47f5251',1,'glm']]], + ['packhalf1x16_1842',['packHalf1x16',['../a00916.html#ga43f2093b6ff192a79058ff7834fc3528',1,'glm']]], + ['packhalf2x16_1843',['packHalf2x16',['../a00994.html#ga20f134b07db3a3d3a38efb2617388c92',1,'glm']]], + ['packhalf4x16_1844',['packHalf4x16',['../a00916.html#gafe2f7b39caf8f5ec555e1c059ec530e6',1,'glm']]], + ['packi3x10_5f1x2_1845',['packI3x10_1x2',['../a00916.html#ga06ecb6afb902dba45419008171db9023',1,'glm']]], + ['packing_2ehpp_1846',['packing.hpp',['../a00557.html',1,'']]], + ['packint2x16_1847',['packInt2x16',['../a00916.html#ga3644163cf3a47bf1d4af1f4b03013a7e',1,'glm']]], + ['packint2x32_1848',['packInt2x32',['../a00916.html#gad1e4c8a9e67d86b61a6eec86703a827a',1,'glm']]], + ['packint2x8_1849',['packInt2x8',['../a00916.html#ga8884b1f2292414f36d59ef3be5d62914',1,'glm']]], + ['packint4x16_1850',['packInt4x16',['../a00916.html#ga1989f093a27ae69cf9207145be48b3d7',1,'glm']]], + ['packint4x8_1851',['packInt4x8',['../a00916.html#gaf2238401d5ce2aaade1a44ba19709072',1,'glm']]], + ['packrgbm_1852',['packRGBM',['../a00916.html#ga0466daf4c90f76cc64b3f105ce727295',1,'glm']]], + ['packsnorm_1853',['packSnorm',['../a00916.html#gaa54b5855a750d6aeb12c1c902f5939b8',1,'glm']]], + ['packsnorm1x16_1854',['packSnorm1x16',['../a00916.html#gab22f8bcfdb5fc65af4701b25f143c1af',1,'glm']]], + ['packsnorm1x8_1855',['packSnorm1x8',['../a00916.html#gae3592e0795e62aaa1865b3a10496a7a1',1,'glm']]], + ['packsnorm2x16_1856',['packSnorm2x16',['../a00994.html#ga977ab172da5494e5ac63e952afacfbe2',1,'glm']]], + ['packsnorm2x8_1857',['packSnorm2x8',['../a00916.html#ga6be3cfb2cce3702f03e91bbeb5286d7e',1,'glm']]], + ['packsnorm3x10_5f1x2_1858',['packSnorm3x10_1x2',['../a00916.html#gab997545661877d2c7362a5084d3897d3',1,'glm']]], + ['packsnorm4x16_1859',['packSnorm4x16',['../a00916.html#ga358943934d21da947d5bcc88c2ab7832',1,'glm']]], + ['packsnorm4x8_1860',['packSnorm4x8',['../a00994.html#ga85e8f17627516445026ab7a9c2e3531a',1,'glm']]], + ['packu3x10_5f1x2_1861',['packU3x10_1x2',['../a00916.html#gada3d88d59f0f458f9c51a9fd359a4bc0',1,'glm']]], + ['packuint2x16_1862',['packUint2x16',['../a00916.html#ga5eecc9e8cbaf51ac6cf57501e670ee19',1,'glm']]], + ['packuint2x32_1863',['packUint2x32',['../a00916.html#gaa864081097b86e83d8e4a4d79c382b22',1,'glm']]], + ['packuint2x8_1864',['packUint2x8',['../a00916.html#ga3c3c9fb53ae7823b10fa083909357590',1,'glm']]], + ['packuint4x16_1865',['packUint4x16',['../a00916.html#ga2ceb62cca347d8ace42ee90317a3f1f9',1,'glm']]], + ['packuint4x8_1866',['packUint4x8',['../a00916.html#gaa0fe2f09aeb403cd66c1a062f58861ab',1,'glm']]], + ['packunorm_1867',['packUnorm',['../a00916.html#gaccd3f27e6ba5163eb7aa9bc8ff96251a',1,'glm']]], + ['packunorm1x16_1868',['packUnorm1x16',['../a00916.html#ga9f82737bf2a44bedff1d286b76837886',1,'glm']]], + ['packunorm1x5_5f1x6_5f1x5_1869',['packUnorm1x5_1x6_1x5',['../a00916.html#ga768e0337dd6246773f14aa0a421fe9a8',1,'glm']]], + ['packunorm1x8_1870',['packUnorm1x8',['../a00916.html#ga4b2fa60df3460403817d28b082ee0736',1,'glm']]], + ['packunorm2x16_1871',['packUnorm2x16',['../a00994.html#ga0e2d107039fe608a209497af867b85fb',1,'glm']]], + ['packunorm2x3_5f1x2_1872',['packUnorm2x3_1x2',['../a00916.html#ga7f9abdb50f9be1aa1c14912504a0d98d',1,'glm']]], + ['packunorm2x4_1873',['packUnorm2x4',['../a00916.html#gab6bbd5be3b8e6db538ecb33a7844481c',1,'glm']]], + ['packunorm2x8_1874',['packUnorm2x8',['../a00916.html#ga9a666b1c688ab54100061ed06526de6e',1,'glm']]], + ['packunorm3x10_5f1x2_1875',['packUnorm3x10_1x2',['../a00916.html#ga8a1ee625d2707c60530fb3fca2980b19',1,'glm']]], + ['packunorm3x5_5f1x1_1876',['packUnorm3x5_1x1',['../a00916.html#gaec4112086d7fb133bea104a7c237de52',1,'glm']]], + ['packunorm4x16_1877',['packUnorm4x16',['../a00916.html#ga1f63c264e7ab63264e2b2a99fd393897',1,'glm']]], + ['packunorm4x4_1878',['packUnorm4x4',['../a00916.html#gad3e7e3ce521513584a53aedc5f9765c1',1,'glm']]], + ['packunorm4x8_1879',['packUnorm4x8',['../a00994.html#gaf7d2f7341a9eeb4a436929d6f9ad08f2',1,'glm']]], + ['pca_2ehpp_1880',['pca.hpp',['../a00704.html',1,'']]], + ['perlin_1881',['perlin',['../a00915.html#ga1e043ce3b51510e9bc4469227cefc38a',1,'glm::perlin(vec< L, T, Q > const &p)'],['../a00915.html#gac270edc54c5fc52f5985a45f940bb103',1,'glm::perlin(vec< L, T, Q > const &p, vec< L, T, Q > const &rep)']]], + ['perp_1882',['perp',['../a00969.html#ga264cfc4e180cf9b852e943b35089003c',1,'glm']]], + ['perpendicular_2ehpp_1883',['perpendicular.hpp',['../a00707.html',1,'']]], + ['perspective_1884',['perspective',['../a00814.html#ga747c8cf99458663dd7ad1bb3a2f07787',1,'glm']]], + ['perspectivefov_1885',['perspectiveFov',['../a00814.html#gaebd02240fd36e85ad754f02ddd9a560d',1,'glm']]], + ['perspectivefovlh_1886',['perspectiveFovLH',['../a00814.html#ga6aebe16c164bd8e52554cbe0304ef4aa',1,'glm']]], + ['perspectivefovlh_5fno_1887',['perspectiveFovLH_NO',['../a00814.html#gad18a4495b77530317327e8d466488c1a',1,'glm']]], + ['perspectivefovlh_5fzo_1888',['perspectiveFovLH_ZO',['../a00814.html#gabdd37014f529e25b2fa1b3ba06c10d5c',1,'glm']]], + ['perspectivefovno_1889',['perspectiveFovNO',['../a00814.html#gaf30e7bd3b1387a6776433dd5383e6633',1,'glm']]], + ['perspectivefovrh_1890',['perspectiveFovRH',['../a00814.html#gaf32bf563f28379c68554a44ee60c6a85',1,'glm']]], + ['perspectivefovrh_5fno_1891',['perspectiveFovRH_NO',['../a00814.html#ga257b733ff883c9a065801023cf243eb2',1,'glm']]], + ['perspectivefovrh_5fzo_1892',['perspectiveFovRH_ZO',['../a00814.html#ga7dcbb25331676f5b0795aced1a905c44',1,'glm']]], + ['perspectivefovzo_1893',['perspectiveFovZO',['../a00814.html#ga4bc69fa1d1f95128430aa3d2a712390b',1,'glm']]], + ['perspectivelh_1894',['perspectiveLH',['../a00814.html#ga9bd34951dc7022ac256fcb51d7f6fc2f',1,'glm']]], + ['perspectivelh_5fno_1895',['perspectiveLH_NO',['../a00814.html#gaead4d049d1feab463b700b5641aa590e',1,'glm']]], + ['perspectivelh_5fzo_1896',['perspectiveLH_ZO',['../a00814.html#gaca32af88c2719005c02817ad1142986c',1,'glm']]], + ['perspectiveno_1897',['perspectiveNO',['../a00814.html#gaf497e6bca61e7c87088370b126a93758',1,'glm']]], + ['perspectiverh_1898',['perspectiveRH',['../a00814.html#ga26b88757fbd90601b80768a7e1ad3aa1',1,'glm']]], + ['perspectiverh_5fno_1899',['perspectiveRH_NO',['../a00814.html#gad1526cb2cbe796095284e8f34b01c582',1,'glm']]], + ['perspectiverh_5fzo_1900',['perspectiveRH_ZO',['../a00814.html#ga4da358d6e1b8e5b9ae35d1f3f2dc3b9a',1,'glm']]], + ['perspectivezo_1901',['perspectiveZO',['../a00814.html#gaa9dfba5c2322da54f72b1eb7c7c11b47',1,'glm']]], + ['pi_1902',['pi',['../a00867.html#ga94bafeb2a0f23ab6450fed1f98ee4e45',1,'glm']]], + ['pickmatrix_1903',['pickMatrix',['../a00835.html#gaf6b21eadb7ac2ecbbe258a9a233b4c82',1,'glm']]], + ['pitch_1904',['pitch',['../a00917.html#ga7603e81477b46ddb448896909bc04928',1,'glm']]], + ['polar_1905',['polar',['../a00970.html#gab83ac2c0e55b684b06b6c46c28b1590d',1,'glm']]], + ['polar_5fcoordinates_2ehpp_1906',['polar_coordinates.hpp',['../a00710.html',1,'']]], + ['pow_1907',['pow',['../a00813.html#ga2254981952d4f333b900a6bf5167a6c4',1,'glm::pow(vec< L, T, Q > const &base, vec< L, T, Q > const &exponent)'],['../a00864.html#ga4975ffcacd312a8c0bbd046a76c5607e',1,'glm::pow(qua< T, Q > const &q, T y)'],['../a00948.html#ga465016030a81d513fa2fac881ebdaa83',1,'glm::pow(int x, uint y)'],['../a00948.html#ga998e5ee915d3769255519e2fbaa2bbf0',1,'glm::pow(uint x, uint y)']]], + ['pow2_1908',['pow2',['../a00966.html#ga7288d7bb23f192bd64a60ba2a61a1c9f',1,'glm']]], + ['pow3_1909',['pow3',['../a00966.html#ga156e452c2d630001bb07f4a6f1060a10',1,'glm']]], + ['pow4_1910',['pow4',['../a00966.html#ga830b64f3b47818374e9d03cc20fadbf3',1,'glm']]], + ['poweroftwoabove_1911',['powerOfTwoAbove',['../a00927.html#ga8cda2459871f574a0aecbe702ac93291',1,'glm::powerOfTwoAbove(genIUType Value)'],['../a00927.html#ga2bbded187c5febfefc1e524ba31b3fab',1,'glm::powerOfTwoAbove(vec< L, T, Q > const &value)']]], + ['poweroftwobelow_1912',['powerOfTwoBelow',['../a00927.html#ga3de7df63c589325101a2817a56f8e29d',1,'glm::powerOfTwoBelow(genIUType Value)'],['../a00927.html#gaf78ddcc4152c051b2a21e68fecb10980',1,'glm::powerOfTwoBelow(vec< L, T, Q > const &value)']]], + ['poweroftwonearest_1913',['powerOfTwoNearest',['../a00927.html#ga5f65973a5d2ea38c719e6a663149ead9',1,'glm::powerOfTwoNearest(genIUType Value)'],['../a00927.html#gac87e65d11e16c3d6b91c3bcfaef7da0b',1,'glm::powerOfTwoNearest(vec< L, T, Q > const &value)']]], + ['prev_5ffloat_1914',['prev_float',['../a00924.html#gaf2a8466ad7470fcafaf91b24b43d1d4d',1,'glm::prev_float(genType x)'],['../a00924.html#ga71d68bb1fff11ac1c757d44cd23ddf50',1,'glm::prev_float(genType x, int ULPs)'],['../a00924.html#gaf2268a89effe42c4d6952085fa616cee',1,'glm::prev_float(vec< L, T, Q > const &x)'],['../a00924.html#gaa761d18f8e3a93752550c9ce9556749c',1,'glm::prev_float(vec< L, T, Q > const &x, int ULPs)'],['../a00924.html#ga471608a1ffbf4472dc5c84216ea937e8',1,'glm::prev_float(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)']]], + ['prevfloat_1915',['prevFloat',['../a00874.html#ga25320ace5b3e239405077912eb4e7bf9',1,'glm::prevFloat(genType x)'],['../a00874.html#ga760b98a221f1f511edbcdf0b06c49841',1,'glm::prevFloat(genType x, int ULPs)'],['../a00896.html#ga82d4ce132256c1a70d0e7100e6eae2e1',1,'glm::prevFloat(vec< L, T, Q > const &x)'],['../a00896.html#ga4ab818050036d40994346defe41a05b9',1,'glm::prevFloat(vec< L, T, Q > const &x, int ULPs)'],['../a00896.html#ga569e3ce6771e1e4f9e425ec6d859d9f9',1,'glm::prevFloat(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)']]], + ['prevmultiple_1916',['prevMultiple',['../a00869.html#gada3bdd871ffe31f2d484aa668362f636',1,'glm::prevMultiple(genIUType v, genIUType Multiple)'],['../a00887.html#ga7b3915a7cd3d50ff4976ab7a75a6880a',1,'glm::prevMultiple(vec< L, T, Q > const &v, T Multiple)'],['../a00887.html#ga51e04379e8aebbf83e2e5ab094578ee9',1,'glm::prevMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['prevpoweroftwo_1917',['prevPowerOfTwo',['../a00869.html#gab21902a0e7e5a8451a7ad80333618727',1,'glm::prevPowerOfTwo(genIUType v)'],['../a00887.html#ga759db73f14d79f63612bd2398b577e7a',1,'glm::prevPowerOfTwo(vec< L, T, Q > const &v)']]], + ['proj_1918',['proj',['../a00971.html#ga58384b7170801dd513de46f87c7fb00e',1,'glm']]], + ['proj2d_1919',['proj2D',['../a00985.html#ga5b992a0cdc8298054edb68e228f0d93e',1,'glm']]], + ['proj3d_1920',['proj3D',['../a00985.html#gaa2b7f4f15b98f697caede11bef50509e',1,'glm']]], + ['project_1921',['project',['../a00835.html#gaf36e96033f456659e6705472a06b6e11',1,'glm']]], + ['projection_2ehpp_1922',['projection.hpp',['../a00713.html',1,'']]], + ['projectno_1923',['projectNO',['../a00835.html#ga05249751f48d14cb282e4979802b8111',1,'glm']]], + ['projectzo_1924',['projectZO',['../a00835.html#ga77d157525063dec83a557186873ee080',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_e.html b/include/glm/doc/api/search/all_e.html new file mode 100644 index 0000000..57cce76 --- /dev/null +++ b/include/glm/doc/api/search/all_e.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_e.js b/include/glm/doc/api/search/all_e.js new file mode 100644 index 0000000..fc29b46 --- /dev/null +++ b/include/glm/doc/api/search/all_e.js @@ -0,0 +1,31 @@ +var searchData= +[ + ['qr_5fdecompose_1925',['qr_decompose',['../a00955.html#ga2b88704e76f42a8894072e73101a56c3',1,'glm']]], + ['quadraticeasein_1926',['quadraticEaseIn',['../a00936.html#gaf42089d35855695132d217cd902304a0',1,'glm']]], + ['quadraticeaseinout_1927',['quadraticEaseInOut',['../a00936.html#ga03e8fc2d7945a4e63ee33b2159c14cea',1,'glm']]], + ['quadraticeaseout_1928',['quadraticEaseOut',['../a00936.html#ga283717bc2d937547ad34ec0472234ee3',1,'glm']]], + ['quarter_5fpi_1929',['quarter_pi',['../a00908.html#ga3c9df42bd73c519a995c43f0f99e77e0',1,'glm']]], + ['quarticeasein_1930',['quarticEaseIn',['../a00936.html#ga808b41f14514f47dad5dcc69eb924afd',1,'glm']]], + ['quarticeaseinout_1931',['quarticEaseInOut',['../a00936.html#ga6d000f852de12b197e154f234b20c505',1,'glm']]], + ['quarticeaseout_1932',['quarticEaseOut',['../a00936.html#ga4dfb33fa7664aa888eb647999d329b98',1,'glm']]], + ['quat_1933',['quat',['../a00860.html#gab0b441adb4509bc58d2946c2239a8942',1,'glm']]], + ['quat_5fcast_1934',['quat_cast',['../a00917.html#ga1108a4ab88ca87bac321454eea7702f8',1,'glm::quat_cast(mat< 3, 3, T, Q > const &x)'],['../a00917.html#ga4524810f07f72e8c7bdc7764fa11cb58',1,'glm::quat_cast(mat< 4, 4, T, Q > const &x)']]], + ['quat_5fidentity_1935',['quat_identity',['../a00972.html#ga77d9e2c313b98a1002a1b12408bf5b45',1,'glm']]], + ['quaternion_5fcommon_2ehpp_1936',['quaternion_common.hpp',['../a00326.html',1,'']]], + ['quaternion_5fdouble_2ehpp_1937',['quaternion_double.hpp',['../a00329.html',1,'']]], + ['quaternion_5fdouble_5fprecision_2ehpp_1938',['quaternion_double_precision.hpp',['../a00332.html',1,'']]], + ['quaternion_5fexponential_2ehpp_1939',['quaternion_exponential.hpp',['../a00335.html',1,'']]], + ['quaternion_5ffloat_2ehpp_1940',['quaternion_float.hpp',['../a00338.html',1,'']]], + ['quaternion_5ffloat_5fprecision_2ehpp_1941',['quaternion_float_precision.hpp',['../a00341.html',1,'']]], + ['quaternion_5fgeometric_2ehpp_1942',['quaternion_geometric.hpp',['../a00344.html',1,'']]], + ['quaternion_5frelational_2ehpp_1943',['quaternion_relational.hpp',['../a00347.html',1,'']]], + ['quaternion_5ftransform_2ehpp_1944',['quaternion_transform.hpp',['../a00350.html',1,'']]], + ['quaternion_5ftrigonometric_2ehpp_1945',['quaternion_trigonometric.hpp',['../a00353.html',1,'']]], + ['quatlookat_1946',['quatLookAt',['../a00917.html#gabe7fc5ec5feb41ab234d5d2b6254697f',1,'glm']]], + ['quatlookatlh_1947',['quatLookAtLH',['../a00917.html#ga2da350c73411be3bb19441b226b81a74',1,'glm']]], + ['quatlookatrh_1948',['quatLookAtRH',['../a00917.html#gaf6529ac8c04a57fcc35865b5c9437cc8',1,'glm']]], + ['quinticeasein_1949',['quinticEaseIn',['../a00936.html#ga097579d8e087dcf48037588140a21640',1,'glm']]], + ['quinticeaseinout_1950',['quinticEaseInOut',['../a00936.html#ga2a82d5c46df7e2d21cc0108eb7b83934',1,'glm']]], + ['quinticeaseout_1951',['quinticEaseOut',['../a00936.html#ga7dbd4d5c8da3f5353121f615e7b591d7',1,'glm']]], + ['qword_1952',['qword',['../a00974.html#ga4021754ffb8e5ef14c75802b15657714',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/all_f.html b/include/glm/doc/api/search/all_f.html new file mode 100644 index 0000000..ac1e704 --- /dev/null +++ b/include/glm/doc/api/search/all_f.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/all_f.js b/include/glm/doc/api/search/all_f.js new file mode 100644 index 0000000..0e12427 --- /dev/null +++ b/include/glm/doc/api/search/all_f.js @@ -0,0 +1,43 @@ +var searchData= +[ + ['recommended_20extensions_1953',['Recommended extensions',['../a00904.html',1,'']]], + ['radialgradient_1954',['radialGradient',['../a00945.html#gaaecb1e93de4cbe0758b882812d4da294',1,'glm']]], + ['radians_1955',['radians',['../a00995.html#ga6e1db4862c5e25afd553930e2fdd6a68',1,'glm']]], + ['random_2ehpp_1956',['random.hpp',['../a00563.html',1,'']]], + ['range_2ehpp_1957',['range.hpp',['../a00716.html',1,'']]], + ['raw_5fdata_2ehpp_1958',['raw_data.hpp',['../a00719.html',1,'']]], + ['reciprocal_2ehpp_1959',['reciprocal.hpp',['../a00566.html',1,'']]], + ['reflect_1960',['reflect',['../a00897.html#ga5631dd1d5618de5450b1ea3cf3e94905',1,'glm']]], + ['refract_1961',['refract',['../a00897.html#ga01da3dff9e2ef6b9d4915c3047e22b74',1,'glm']]], + ['repeat_1962',['repeat',['../a00866.html#ga809650c6310ea7c42666e918c117fb6f',1,'glm::repeat(genType const &Texcoord)'],['../a00877.html#ga3025883ad3d8b69a8a1ec65368268be7',1,'glm::repeat(vec< L, T, Q > const &Texcoord)']]], + ['rgb2ycocg_1963',['rgb2YCoCg',['../a00931.html#ga0606353ec2a9b9eaa84f1b02ec391bc5',1,'glm']]], + ['rgb2ycocgr_1964',['rgb2YCoCgR',['../a00931.html#ga0389772e44ca0fd2ba4a79bdd8efe898',1,'glm']]], + ['rgbcolor_1965',['rgbColor',['../a00930.html#ga5f9193be46f45f0655c05a0cdca006db',1,'glm']]], + ['righthanded_1966',['rightHanded',['../a00946.html#ga99386a5ab5491871b947076e21699cc8',1,'glm']]], + ['roll_1967',['roll',['../a00917.html#ga0cc5ad970d0b00829b139fe0fe5a1e13',1,'glm']]], + ['root_5ffive_1968',['root_five',['../a00908.html#gae9ebbded75b53d4faeb1e4ef8b3347a2',1,'glm']]], + ['root_5fhalf_5fpi_1969',['root_half_pi',['../a00908.html#ga4e276cb823cc5e612d4f89ed99c75039',1,'glm']]], + ['root_5fln_5ffour_1970',['root_ln_four',['../a00908.html#ga4129412e96b33707a77c1a07652e23e2',1,'glm']]], + ['root_5fpi_1971',['root_pi',['../a00908.html#ga261380796b2cd496f68d2cf1d08b8eb9',1,'glm']]], + ['root_5fthree_1972',['root_three',['../a00908.html#ga4f286be4abe88be1eed7d2a9f6cb193e',1,'glm']]], + ['root_5ftwo_1973',['root_two',['../a00908.html#ga74e607d29020f100c0d0dc46ce2ca950',1,'glm']]], + ['root_5ftwo_5fpi_1974',['root_two_pi',['../a00908.html#ga2bcedc575039fe0cd765742f8bbb0bd3',1,'glm']]], + ['rotate_1975',['rotate',['../a00837.html#gaee9e865eaa9776370996da2940873fd4',1,'glm::rotate(mat< 4, 4, T, Q > const &m, T angle, vec< 3, T, Q > const &axis)'],['../a00864.html#gabfc57de6d4d2e11970f54119c5ccf0f5',1,'glm::rotate(qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)'],['../a00960.html#gad5c84a4932a758f385a87098ce1b1660',1,'glm::rotate(mat< 3, 3, T, Q > const &m, T angle)'],['../a00972.html#ga07da6ef58646442efe93b0c273d73776',1,'glm::rotate(qua< T, Q > const &q, vec< 3, T, Q > const &v)'],['../a00972.html#gafcb78dfff45fbf19a7fcb2bd03fbf196',1,'glm::rotate(qua< T, Q > const &q, vec< 4, T, Q > const &v)'],['../a00976.html#gab64a67b52ff4f86c3ba16595a5a25af6',1,'glm::rotate(vec< 2, T, Q > const &v, T const &angle)'],['../a00976.html#ga1ba501ef83d1a009a17ac774cc560f21',1,'glm::rotate(vec< 3, T, Q > const &v, T const &angle, vec< 3, T, Q > const &normal)'],['../a00976.html#ga1005f1267ed9c57faa3f24cf6873b961',1,'glm::rotate(vec< 4, T, Q > const &v, T const &angle, vec< 3, T, Q > const &normal)'],['../a00984.html#gaf599be4c0e9d99be1f9cddba79b6018b',1,'glm::rotate(T angle, vec< 3, T, Q > const &v)']]], + ['rotate_5fnormalized_5faxis_2ehpp_1976',['rotate_normalized_axis.hpp',['../a00722.html',1,'']]], + ['rotate_5fvector_2ehpp_1977',['rotate_vector.hpp',['../a00725.html',1,'']]], + ['rotatenormalizedaxis_1978',['rotateNormalizedAxis',['../a00975.html#ga50efd7ebca0f7a603bb3cc11e34c708d',1,'glm::rotateNormalizedAxis(mat< 4, 4, T, Q > const &m, T const &angle, vec< 3, T, Q > const &axis)'],['../a00975.html#ga08f9c5411437d528019a25bfc01473d1',1,'glm::rotateNormalizedAxis(qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)']]], + ['rotatex_1979',['rotateX',['../a00976.html#ga059fdbdba4cca35cdff172a9d0d0afc9',1,'glm::rotateX(vec< 3, T, Q > const &v, T const &angle)'],['../a00976.html#ga4333b1ea8ebf1bd52bc3801a7617398a',1,'glm::rotateX(vec< 4, T, Q > const &v, T const &angle)']]], + ['rotatey_1980',['rotateY',['../a00976.html#gaebdc8b054ace27d9f62e054531c6f44d',1,'glm::rotateY(vec< 3, T, Q > const &v, T const &angle)'],['../a00976.html#ga3ce3db0867b7f8efd878ee34f95a623b',1,'glm::rotateY(vec< 4, T, Q > const &v, T const &angle)']]], + ['rotatez_1981',['rotateZ',['../a00976.html#ga5a048838a03f6249acbacb4dbacf79c4',1,'glm::rotateZ(vec< 3, T, Q > const &v, T const &angle)'],['../a00976.html#ga923b75c6448161053768822d880702e6',1,'glm::rotateZ(vec< 4, T, Q > const &v, T const &angle)']]], + ['rotation_1982',['rotation',['../a00972.html#ga03e61282831cc3f52cc76f72f52ad2c5',1,'glm']]], + ['round_1983',['round',['../a00812.html#gafa03aca8c4713e1cc892aa92ca135a7e',1,'glm']]], + ['round_2ehpp_1984',['round.hpp',['../a00569.html',1,'']]], + ['roundeven_1985',['roundEven',['../a00812.html#ga76b81785045a057989a84d99aeeb1578',1,'glm']]], + ['roundmultiple_1986',['roundMultiple',['../a00920.html#gab892defcc9c0b0618df7251253dc0fbb',1,'glm::roundMultiple(genType v, genType Multiple)'],['../a00920.html#ga2f1a68332d761804c054460a612e3a4b',1,'glm::roundMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['roundpoweroftwo_1987',['roundPowerOfTwo',['../a00920.html#gae4e1bf5d1cd179f59261a7342bdcafca',1,'glm::roundPowerOfTwo(genIUType v)'],['../a00920.html#ga258802a7d55c03c918f28cf4d241c4d0',1,'glm::roundPowerOfTwo(vec< L, T, Q > const &v)']]], + ['row_1988',['row',['../a00911.html#ga259e5ebd0f31ec3f83440f8cae7f5dba',1,'glm::row(genType const &m, length_t index)'],['../a00911.html#gaadcc64829aadf4103477679e48c7594f',1,'glm::row(genType const &m, length_t index, typename genType::row_type const &x)']]], + ['rowmajor2_1989',['rowMajor2',['../a00957.html#gaf5b1aee9e3eb1acf9d6c3c8be1e73bb8',1,'glm::rowMajor2(vec< 2, T, Q > const &v1, vec< 2, T, Q > const &v2)'],['../a00957.html#gaf66c75ed69ca9e87462550708c2c6726',1,'glm::rowMajor2(mat< 2, 2, T, Q > const &m)']]], + ['rowmajor3_1990',['rowMajor3',['../a00957.html#ga2ae46497493339f745754e40f438442e',1,'glm::rowMajor3(vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)'],['../a00957.html#gad8a3a50ab47bbe8d36cdb81d90dfcf77',1,'glm::rowMajor3(mat< 3, 3, T, Q > const &m)']]], + ['rowmajor4_1991',['rowMajor4',['../a00957.html#ga9636cd6bbe2c32a8d0c03ffb8b1ef284',1,'glm::rowMajor4(vec< 4, T, Q > const &v1, vec< 4, T, Q > const &v2, vec< 4, T, Q > const &v3, vec< 4, T, Q > const &v4)'],['../a00957.html#gac92ad1c2acdf18d3eb7be45a32f9566b',1,'glm::rowMajor4(mat< 4, 4, T, Q > const &m)']]], + ['rq_5fdecompose_1992',['rq_decompose',['../a00955.html#ga90ce5524aa7390a722817f6c9342e360',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/close.png b/include/glm/doc/api/search/close.png new file mode 100644 index 0000000..9342d3d Binary files /dev/null and b/include/glm/doc/api/search/close.png differ diff --git a/include/glm/doc/api/search/files_0.html b/include/glm/doc/api/search/files_0.html new file mode 100644 index 0000000..182d7eb --- /dev/null +++ b/include/glm/doc/api/search/files_0.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_0.js b/include/glm/doc/api/search/files_0.js new file mode 100644 index 0000000..40f1203 --- /dev/null +++ b/include/glm/doc/api/search/files_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['associated_5fmin_5fmax_2ehpp_2295',['associated_min_max.hpp',['../a00587.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_1.html b/include/glm/doc/api/search/files_1.html new file mode 100644 index 0000000..9448113 --- /dev/null +++ b/include/glm/doc/api/search/files_1.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_1.js b/include/glm/doc/api/search/files_1.js new file mode 100644 index 0000000..2be61e2 --- /dev/null +++ b/include/glm/doc/api/search/files_1.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['bit_2ehpp_2296',['bit.hpp',['../a00590.html',1,'']]], + ['bitfield_2ehpp_2297',['bitfield.hpp',['../a00533.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_10.html b/include/glm/doc/api/search/files_10.html new file mode 100644 index 0000000..1adc7e5 --- /dev/null +++ b/include/glm/doc/api/search/files_10.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_10.js b/include/glm/doc/api/search/files_10.js new file mode 100644 index 0000000..9ce04cf --- /dev/null +++ b/include/glm/doc/api/search/files_10.js @@ -0,0 +1,16 @@ +var searchData= +[ + ['scalar_5fcommon_2ehpp_2463',['scalar_common.hpp',['../a00356.html',1,'']]], + ['scalar_5fconstants_2ehpp_2464',['scalar_constants.hpp',['../a00359.html',1,'']]], + ['scalar_5fint_5fsized_2ehpp_2465',['scalar_int_sized.hpp',['../a00362.html',1,'']]], + ['scalar_5finteger_2ehpp_2466',['scalar_integer.hpp',['../a00365.html',1,'']]], + ['scalar_5fmultiplication_2ehpp_2467',['scalar_multiplication.hpp',['../a00728.html',1,'']]], + ['scalar_5fpacking_2ehpp_2468',['scalar_packing.hpp',['../a00368.html',1,'']]], + ['scalar_5freciprocal_2ehpp_2469',['scalar_reciprocal.hpp',['../a00371.html',1,'']]], + ['scalar_5fuint_5fsized_2ehpp_2470',['scalar_uint_sized.hpp',['../a00377.html',1,'']]], + ['scalar_5fulp_2ehpp_2471',['scalar_ulp.hpp',['../a00380.html',1,'']]], + ['spline_2ehpp_2472',['spline.hpp',['../a00731.html',1,'']]], + ['std_5fbased_5ftype_2ehpp_2473',['std_based_type.hpp',['../a00734.html',1,'']]], + ['string_5fcast_2ehpp_2474',['string_cast.hpp',['../a00737.html',1,'']]], + ['structured_5fbindings_2ehpp_2475',['structured_bindings.hpp',['../a00740.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_11.html b/include/glm/doc/api/search/files_11.html new file mode 100644 index 0000000..4c8b863 --- /dev/null +++ b/include/glm/doc/api/search/files_11.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_11.js b/include/glm/doc/api/search/files_11.js new file mode 100644 index 0000000..2dbe39c --- /dev/null +++ b/include/glm/doc/api/search/files_11.js @@ -0,0 +1,24 @@ +var searchData= +[ + ['texture_2ehpp_2476',['texture.hpp',['../a00743.html',1,'']]], + ['transform_2ehpp_2477',['transform.hpp',['../a00746.html',1,'']]], + ['transform2_2ehpp_2478',['transform2.hpp',['../a00749.html',1,'']]], + ['trigonometric_2ehpp_2479',['trigonometric.hpp',['../a00797.html',1,'']]], + ['type_5fmat2x2_2ehpp_2480',['type_mat2x2.hpp',['../a00044.html',1,'']]], + ['type_5fmat2x3_2ehpp_2481',['type_mat2x3.hpp',['../a00047.html',1,'']]], + ['type_5fmat2x4_2ehpp_2482',['type_mat2x4.hpp',['../a00050.html',1,'']]], + ['type_5fmat3x2_2ehpp_2483',['type_mat3x2.hpp',['../a00053.html',1,'']]], + ['type_5fmat3x3_2ehpp_2484',['type_mat3x3.hpp',['../a00056.html',1,'']]], + ['type_5fmat3x4_2ehpp_2485',['type_mat3x4.hpp',['../a00059.html',1,'']]], + ['type_5fmat4x2_2ehpp_2486',['type_mat4x2.hpp',['../a00062.html',1,'']]], + ['type_5fmat4x3_2ehpp_2487',['type_mat4x3.hpp',['../a00065.html',1,'']]], + ['type_5fmat4x4_2ehpp_2488',['type_mat4x4.hpp',['../a00068.html',1,'']]], + ['type_5fprecision_2ehpp_2489',['type_precision.hpp',['../a00575.html',1,'']]], + ['type_5fptr_2ehpp_2490',['type_ptr.hpp',['../a00578.html',1,'']]], + ['type_5fquat_2ehpp_2491',['type_quat.hpp',['../a00071.html',1,'']]], + ['type_5ftrait_2ehpp_2492',['type_trait.hpp',['../a00752.html',1,'']]], + ['type_5fvec1_2ehpp_2493',['type_vec1.hpp',['../a00074.html',1,'']]], + ['type_5fvec2_2ehpp_2494',['type_vec2.hpp',['../a00077.html',1,'']]], + ['type_5fvec3_2ehpp_2495',['type_vec3.hpp',['../a00080.html',1,'']]], + ['type_5fvec4_2ehpp_2496',['type_vec4.hpp',['../a00083.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_12.html b/include/glm/doc/api/search/files_12.html new file mode 100644 index 0000000..585c430 --- /dev/null +++ b/include/glm/doc/api/search/files_12.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_12.js b/include/glm/doc/api/search/files_12.js new file mode 100644 index 0000000..c733b34 --- /dev/null +++ b/include/glm/doc/api/search/files_12.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['ulp_2ehpp_2497',['ulp.hpp',['../a00581.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_13.html b/include/glm/doc/api/search/files_13.html new file mode 100644 index 0000000..d2ac169 --- /dev/null +++ b/include/glm/doc/api/search/files_13.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_13.js b/include/glm/doc/api/search/files_13.js new file mode 100644 index 0000000..063eda2 --- /dev/null +++ b/include/glm/doc/api/search/files_13.js @@ -0,0 +1,56 @@ +var searchData= +[ + ['vec1_2ehpp_2498',['vec1.hpp',['../a00584.html',1,'']]], + ['vec2_2ehpp_2499',['vec2.hpp',['../a00800.html',1,'']]], + ['vec3_2ehpp_2500',['vec3.hpp',['../a00803.html',1,'']]], + ['vec4_2ehpp_2501',['vec4.hpp',['../a00806.html',1,'']]], + ['vec_5fswizzle_2ehpp_2502',['vec_swizzle.hpp',['../a00755.html',1,'']]], + ['vector_5fangle_2ehpp_2503',['vector_angle.hpp',['../a00758.html',1,'']]], + ['vector_5fbool1_2ehpp_2504',['vector_bool1.hpp',['../a00383.html',1,'']]], + ['vector_5fbool1_5fprecision_2ehpp_2505',['vector_bool1_precision.hpp',['../a00386.html',1,'']]], + ['vector_5fbool2_2ehpp_2506',['vector_bool2.hpp',['../a00389.html',1,'']]], + ['vector_5fbool2_5fprecision_2ehpp_2507',['vector_bool2_precision.hpp',['../a00392.html',1,'']]], + ['vector_5fbool3_2ehpp_2508',['vector_bool3.hpp',['../a00395.html',1,'']]], + ['vector_5fbool3_5fprecision_2ehpp_2509',['vector_bool3_precision.hpp',['../a00398.html',1,'']]], + ['vector_5fbool4_2ehpp_2510',['vector_bool4.hpp',['../a00401.html',1,'']]], + ['vector_5fbool4_5fprecision_2ehpp_2511',['vector_bool4_precision.hpp',['../a00404.html',1,'']]], + ['vector_5fcommon_2ehpp_2512',['vector_common.hpp',['../a00407.html',1,'']]], + ['vector_5fdouble1_2ehpp_2513',['vector_double1.hpp',['../a00410.html',1,'']]], + ['vector_5fdouble1_5fprecision_2ehpp_2514',['vector_double1_precision.hpp',['../a00413.html',1,'']]], + ['vector_5fdouble2_2ehpp_2515',['vector_double2.hpp',['../a00416.html',1,'']]], + ['vector_5fdouble2_5fprecision_2ehpp_2516',['vector_double2_precision.hpp',['../a00419.html',1,'']]], + ['vector_5fdouble3_2ehpp_2517',['vector_double3.hpp',['../a00422.html',1,'']]], + ['vector_5fdouble3_5fprecision_2ehpp_2518',['vector_double3_precision.hpp',['../a00425.html',1,'']]], + ['vector_5fdouble4_2ehpp_2519',['vector_double4.hpp',['../a00428.html',1,'']]], + ['vector_5fdouble4_5fprecision_2ehpp_2520',['vector_double4_precision.hpp',['../a00431.html',1,'']]], + ['vector_5ffloat1_2ehpp_2521',['vector_float1.hpp',['../a00434.html',1,'']]], + ['vector_5ffloat1_5fprecision_2ehpp_2522',['vector_float1_precision.hpp',['../a00437.html',1,'']]], + ['vector_5ffloat2_2ehpp_2523',['vector_float2.hpp',['../a00440.html',1,'']]], + ['vector_5ffloat2_5fprecision_2ehpp_2524',['vector_float2_precision.hpp',['../a00443.html',1,'']]], + ['vector_5ffloat3_2ehpp_2525',['vector_float3.hpp',['../a00446.html',1,'']]], + ['vector_5ffloat3_5fprecision_2ehpp_2526',['vector_float3_precision.hpp',['../a00449.html',1,'']]], + ['vector_5ffloat4_2ehpp_2527',['vector_float4.hpp',['../a00452.html',1,'']]], + ['vector_5ffloat4_5fprecision_2ehpp_2528',['vector_float4_precision.hpp',['../a00455.html',1,'']]], + ['vector_5fint1_2ehpp_2529',['vector_int1.hpp',['../a00458.html',1,'']]], + ['vector_5fint1_5fsized_2ehpp_2530',['vector_int1_sized.hpp',['../a00461.html',1,'']]], + ['vector_5fint2_2ehpp_2531',['vector_int2.hpp',['../a00464.html',1,'']]], + ['vector_5fint2_5fsized_2ehpp_2532',['vector_int2_sized.hpp',['../a00467.html',1,'']]], + ['vector_5fint3_2ehpp_2533',['vector_int3.hpp',['../a00470.html',1,'']]], + ['vector_5fint3_5fsized_2ehpp_2534',['vector_int3_sized.hpp',['../a00473.html',1,'']]], + ['vector_5fint4_2ehpp_2535',['vector_int4.hpp',['../a00476.html',1,'']]], + ['vector_5fint4_5fsized_2ehpp_2536',['vector_int4_sized.hpp',['../a00479.html',1,'']]], + ['vector_5finteger_2ehpp_2537',['vector_integer.hpp',['../a00482.html',1,'']]], + ['vector_5fpacking_2ehpp_2538',['vector_packing.hpp',['../a00485.html',1,'']]], + ['vector_5fquery_2ehpp_2539',['vector_query.hpp',['../a00761.html',1,'']]], + ['vector_5freciprocal_2ehpp_2540',['vector_reciprocal.hpp',['../a00488.html',1,'']]], + ['vector_5frelational_2ehpp_2541',['vector_relational.hpp',['../a00491.html',1,'']]], + ['vector_5fuint1_2ehpp_2542',['vector_uint1.hpp',['../a00494.html',1,'']]], + ['vector_5fuint1_5fsized_2ehpp_2543',['vector_uint1_sized.hpp',['../a00497.html',1,'']]], + ['vector_5fuint2_2ehpp_2544',['vector_uint2.hpp',['../a00500.html',1,'']]], + ['vector_5fuint2_5fsized_2ehpp_2545',['vector_uint2_sized.hpp',['../a00503.html',1,'']]], + ['vector_5fuint3_2ehpp_2546',['vector_uint3.hpp',['../a00506.html',1,'']]], + ['vector_5fuint3_5fsized_2ehpp_2547',['vector_uint3_sized.hpp',['../a00509.html',1,'']]], + ['vector_5fuint4_2ehpp_2548',['vector_uint4.hpp',['../a00512.html',1,'']]], + ['vector_5fuint4_5fsized_2ehpp_2549',['vector_uint4_sized.hpp',['../a00515.html',1,'']]], + ['vector_5fulp_2ehpp_2550',['vector_ulp.hpp',['../a00518.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_14.html b/include/glm/doc/api/search/files_14.html new file mode 100644 index 0000000..8a65f99 --- /dev/null +++ b/include/glm/doc/api/search/files_14.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_14.js b/include/glm/doc/api/search/files_14.js new file mode 100644 index 0000000..83fe0ff --- /dev/null +++ b/include/glm/doc/api/search/files_14.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['wrap_2ehpp_2551',['wrap.hpp',['../a00764.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_2.html b/include/glm/doc/api/search/files_2.html new file mode 100644 index 0000000..16c12b8 --- /dev/null +++ b/include/glm/doc/api/search/files_2.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_2.js b/include/glm/doc/api/search/files_2.js new file mode 100644 index 0000000..a32bfe7 --- /dev/null +++ b/include/glm/doc/api/search/files_2.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['closest_5fpoint_2ehpp_2298',['closest_point.hpp',['../a00593.html',1,'']]], + ['color_5fencoding_2ehpp_2299',['color_encoding.hpp',['../a00596.html',1,'']]], + ['color_5fspace_5fycocg_2ehpp_2300',['color_space_YCoCg.hpp',['../a00599.html',1,'']]], + ['common_2ehpp_2301',['common.hpp',['../a00002.html',1,'']]], + ['compatibility_2ehpp_2302',['compatibility.hpp',['../a00602.html',1,'']]], + ['component_5fwise_2ehpp_2303',['component_wise.hpp',['../a00605.html',1,'']]], + ['constants_2ehpp_2304',['constants.hpp',['../a00539.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_3.html b/include/glm/doc/api/search/files_3.html new file mode 100644 index 0000000..d1b79b9 --- /dev/null +++ b/include/glm/doc/api/search/files_3.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_3.js b/include/glm/doc/api/search/files_3.js new file mode 100644 index 0000000..ce18136 --- /dev/null +++ b/include/glm/doc/api/search/files_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['dual_5fquaternion_2ehpp_2305',['dual_quaternion.hpp',['../a00608.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_4.html b/include/glm/doc/api/search/files_4.html new file mode 100644 index 0000000..6c31a9d --- /dev/null +++ b/include/glm/doc/api/search/files_4.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_4.js b/include/glm/doc/api/search/files_4.js new file mode 100644 index 0000000..f476752 --- /dev/null +++ b/include/glm/doc/api/search/files_4.js @@ -0,0 +1,15 @@ +var searchData= +[ + ['easing_2ehpp_2306',['easing.hpp',['../a00611.html',1,'']]], + ['epsilon_2ehpp_2307',['epsilon.hpp',['../a00542.html',1,'']]], + ['euler_5fangles_2ehpp_2308',['euler_angles.hpp',['../a00614.html',1,'']]], + ['exponential_2ehpp_2309',['exponential.hpp',['../a00086.html',1,'']]], + ['ext_2ehpp_2310',['ext.hpp',['../a00521.html',1,'']]], + ['extend_2ehpp_2311',['extend.hpp',['../a00617.html',1,'']]], + ['extended_5fmin_5fmax_2ehpp_2312',['extended_min_max.hpp',['../a00620.html',1,'']]], + ['exterior_5fproduct_2ehpp_2313',['exterior_product.hpp',['../a00623.html',1,'']]], + ['matrix_5finteger_2ehpp_2314',['matrix_integer.hpp',['../a01696.html',1,'']]], + ['matrix_5ftransform_2ehpp_2315',['matrix_transform.hpp',['../a01702.html',1,'']]], + ['scalar_5frelational_2ehpp_2316',['scalar_relational.hpp',['../a01717.html',1,'']]], + ['vector_5frelational_2ehpp_2317',['vector_relational.hpp',['../a01729.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_5.html b/include/glm/doc/api/search/files_5.html new file mode 100644 index 0000000..2ff6409 --- /dev/null +++ b/include/glm/doc/api/search/files_5.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_5.js b/include/glm/doc/api/search/files_5.js new file mode 100644 index 0000000..8e1867d --- /dev/null +++ b/include/glm/doc/api/search/files_5.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['fast_5fexponential_2ehpp_2318',['fast_exponential.hpp',['../a00626.html',1,'']]], + ['fast_5fsquare_5froot_2ehpp_2319',['fast_square_root.hpp',['../a00629.html',1,'']]], + ['fast_5ftrigonometry_2ehpp_2320',['fast_trigonometry.hpp',['../a00632.html',1,'']]], + ['functions_2ehpp_2321',['functions.hpp',['../a00635.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_6.html b/include/glm/doc/api/search/files_6.html new file mode 100644 index 0000000..82e6890 --- /dev/null +++ b/include/glm/doc/api/search/files_6.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_6.js b/include/glm/doc/api/search/files_6.js new file mode 100644 index 0000000..6018e9d --- /dev/null +++ b/include/glm/doc/api/search/files_6.js @@ -0,0 +1,14 @@ +var searchData= +[ + ['color_5fspace_2ehpp_2322',['color_space.hpp',['../a01681.html',1,'(Global Namespace)'],['../a01684.html',1,'(Global Namespace)']]], + ['common_2ehpp_2323',['common.hpp',['../a01687.html',1,'']]], + ['geometric_2ehpp_2324',['geometric.hpp',['../a00527.html',1,'']]], + ['gradient_5fpaint_2ehpp_2325',['gradient_paint.hpp',['../a00638.html',1,'']]], + ['integer_2ehpp_2326',['integer.hpp',['../a01690.html',1,'(Global Namespace)'],['../a01693.html',1,'(Global Namespace)']]], + ['matrix_5finteger_2ehpp_2327',['matrix_integer.hpp',['../a01699.html',1,'']]], + ['matrix_5ftransform_2ehpp_2328',['matrix_transform.hpp',['../a01705.html',1,'']]], + ['packing_2ehpp_2329',['packing.hpp',['../a01708.html',1,'']]], + ['quaternion_2ehpp_2330',['quaternion.hpp',['../a01711.html',1,'(Global Namespace)'],['../a01714.html',1,'(Global Namespace)']]], + ['scalar_5frelational_2ehpp_2331',['scalar_relational.hpp',['../a01720.html',1,'']]], + ['type_5faligned_2ehpp_2332',['type_aligned.hpp',['../a01723.html',1,'(Global Namespace)'],['../a01726.html',1,'(Global Namespace)']]] +]; diff --git a/include/glm/doc/api/search/files_7.html b/include/glm/doc/api/search/files_7.html new file mode 100644 index 0000000..7ce361d --- /dev/null +++ b/include/glm/doc/api/search/files_7.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_7.js b/include/glm/doc/api/search/files_7.js new file mode 100644 index 0000000..ed25333 --- /dev/null +++ b/include/glm/doc/api/search/files_7.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['handed_5fcoordinate_5fspace_2ehpp_2333',['handed_coordinate_space.hpp',['../a00641.html',1,'']]], + ['hash_2ehpp_2334',['hash.hpp',['../a00644.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_8.html b/include/glm/doc/api/search/files_8.html new file mode 100644 index 0000000..49983b8 --- /dev/null +++ b/include/glm/doc/api/search/files_8.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_8.js b/include/glm/doc/api/search/files_8.js new file mode 100644 index 0000000..f5a602d --- /dev/null +++ b/include/glm/doc/api/search/files_8.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['integer_2ehpp_2335',['integer.hpp',['../a00545.html',1,'']]], + ['intersect_2ehpp_2336',['intersect.hpp',['../a00647.html',1,'']]], + ['io_2ehpp_2337',['io.hpp',['../a00650.html',1,'']]], + ['iteration_2ehpp_2338',['iteration.hpp',['../a00653.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_9.html b/include/glm/doc/api/search/files_9.html new file mode 100644 index 0000000..7cfea7e --- /dev/null +++ b/include/glm/doc/api/search/files_9.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_9.js b/include/glm/doc/api/search/files_9.js new file mode 100644 index 0000000..e54ad5e --- /dev/null +++ b/include/glm/doc/api/search/files_9.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['log_5fbase_2ehpp_2339',['log_base.hpp',['../a00656.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_a.html b/include/glm/doc/api/search/files_a.html new file mode 100644 index 0000000..fe811ba --- /dev/null +++ b/include/glm/doc/api/search/files_a.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_a.js b/include/glm/doc/api/search/files_a.js new file mode 100644 index 0000000..87d1f88 --- /dev/null +++ b/include/glm/doc/api/search/files_a.js @@ -0,0 +1,97 @@ +var searchData= +[ + ['mat2x2_2ehpp_2340',['mat2x2.hpp',['../a00767.html',1,'']]], + ['mat2x3_2ehpp_2341',['mat2x3.hpp',['../a00770.html',1,'']]], + ['mat2x4_2ehpp_2342',['mat2x4.hpp',['../a00773.html',1,'']]], + ['mat3x2_2ehpp_2343',['mat3x2.hpp',['../a00776.html',1,'']]], + ['mat3x3_2ehpp_2344',['mat3x3.hpp',['../a00779.html',1,'']]], + ['mat3x4_2ehpp_2345',['mat3x4.hpp',['../a00782.html',1,'']]], + ['mat4x2_2ehpp_2346',['mat4x2.hpp',['../a00785.html',1,'']]], + ['mat4x3_2ehpp_2347',['mat4x3.hpp',['../a00788.html',1,'']]], + ['mat4x4_2ehpp_2348',['mat4x4.hpp',['../a00791.html',1,'']]], + ['matrix_2ehpp_2349',['matrix.hpp',['../a00794.html',1,'']]], + ['matrix_5faccess_2ehpp_2350',['matrix_access.hpp',['../a00548.html',1,'']]], + ['matrix_5fclip_5fspace_2ehpp_2351',['matrix_clip_space.hpp',['../a00092.html',1,'']]], + ['matrix_5fcommon_2ehpp_2352',['matrix_common.hpp',['../a00095.html',1,'']]], + ['matrix_5fcross_5fproduct_2ehpp_2353',['matrix_cross_product.hpp',['../a00659.html',1,'']]], + ['matrix_5fdecompose_2ehpp_2354',['matrix_decompose.hpp',['../a00662.html',1,'']]], + ['matrix_5fdouble2x2_2ehpp_2355',['matrix_double2x2.hpp',['../a00098.html',1,'']]], + ['matrix_5fdouble2x2_5fprecision_2ehpp_2356',['matrix_double2x2_precision.hpp',['../a00101.html',1,'']]], + ['matrix_5fdouble2x3_2ehpp_2357',['matrix_double2x3.hpp',['../a00104.html',1,'']]], + ['matrix_5fdouble2x3_5fprecision_2ehpp_2358',['matrix_double2x3_precision.hpp',['../a00107.html',1,'']]], + ['matrix_5fdouble2x4_2ehpp_2359',['matrix_double2x4.hpp',['../a00110.html',1,'']]], + ['matrix_5fdouble2x4_5fprecision_2ehpp_2360',['matrix_double2x4_precision.hpp',['../a00113.html',1,'']]], + ['matrix_5fdouble3x2_2ehpp_2361',['matrix_double3x2.hpp',['../a00116.html',1,'']]], + ['matrix_5fdouble3x2_5fprecision_2ehpp_2362',['matrix_double3x2_precision.hpp',['../a00119.html',1,'']]], + ['matrix_5fdouble3x3_2ehpp_2363',['matrix_double3x3.hpp',['../a00122.html',1,'']]], + ['matrix_5fdouble3x3_5fprecision_2ehpp_2364',['matrix_double3x3_precision.hpp',['../a00125.html',1,'']]], + ['matrix_5fdouble3x4_2ehpp_2365',['matrix_double3x4.hpp',['../a00128.html',1,'']]], + ['matrix_5fdouble3x4_5fprecision_2ehpp_2366',['matrix_double3x4_precision.hpp',['../a00131.html',1,'']]], + ['matrix_5fdouble4x2_2ehpp_2367',['matrix_double4x2.hpp',['../a00134.html',1,'']]], + ['matrix_5fdouble4x2_5fprecision_2ehpp_2368',['matrix_double4x2_precision.hpp',['../a00137.html',1,'']]], + ['matrix_5fdouble4x3_2ehpp_2369',['matrix_double4x3.hpp',['../a00140.html',1,'']]], + ['matrix_5fdouble4x3_5fprecision_2ehpp_2370',['matrix_double4x3_precision.hpp',['../a00143.html',1,'']]], + ['matrix_5fdouble4x4_2ehpp_2371',['matrix_double4x4.hpp',['../a00146.html',1,'']]], + ['matrix_5fdouble4x4_5fprecision_2ehpp_2372',['matrix_double4x4_precision.hpp',['../a00149.html',1,'']]], + ['matrix_5ffactorisation_2ehpp_2373',['matrix_factorisation.hpp',['../a00665.html',1,'']]], + ['matrix_5ffloat2x2_2ehpp_2374',['matrix_float2x2.hpp',['../a00152.html',1,'']]], + ['matrix_5ffloat2x2_5fprecision_2ehpp_2375',['matrix_float2x2_precision.hpp',['../a00155.html',1,'']]], + ['matrix_5ffloat2x3_2ehpp_2376',['matrix_float2x3.hpp',['../a00158.html',1,'']]], + ['matrix_5ffloat2x3_5fprecision_2ehpp_2377',['matrix_float2x3_precision.hpp',['../a00161.html',1,'']]], + ['matrix_5ffloat2x4_2ehpp_2378',['matrix_float2x4.hpp',['../a00164.html',1,'']]], + ['matrix_5ffloat2x4_5fprecision_2ehpp_2379',['matrix_float2x4_precision.hpp',['../a00167.html',1,'']]], + ['matrix_5ffloat3x2_2ehpp_2380',['matrix_float3x2.hpp',['../a00170.html',1,'']]], + ['matrix_5ffloat3x2_5fprecision_2ehpp_2381',['matrix_float3x2_precision.hpp',['../a00173.html',1,'']]], + ['matrix_5ffloat3x3_2ehpp_2382',['matrix_float3x3.hpp',['../a00176.html',1,'']]], + ['matrix_5ffloat3x3_5fprecision_2ehpp_2383',['matrix_float3x3_precision.hpp',['../a00179.html',1,'']]], + ['matrix_5ffloat3x4_2ehpp_2384',['matrix_float3x4.hpp',['../a00182.html',1,'']]], + ['matrix_5ffloat3x4_5fprecision_2ehpp_2385',['matrix_float3x4_precision.hpp',['../a00185.html',1,'']]], + ['matrix_5ffloat4x2_2ehpp_2386',['matrix_float4x2.hpp',['../a00188.html',1,'']]], + ['matrix_5ffloat4x3_2ehpp_2387',['matrix_float4x3.hpp',['../a00194.html',1,'']]], + ['matrix_5ffloat4x3_5fprecision_2ehpp_2388',['matrix_float4x3_precision.hpp',['../a00197.html',1,'']]], + ['matrix_5ffloat4x4_2ehpp_2389',['matrix_float4x4.hpp',['../a00200.html',1,'']]], + ['matrix_5ffloat4x4_5fprecision_2ehpp_2390',['matrix_float4x4_precision.hpp',['../a00203.html',1,'']]], + ['matrix_5fint2x2_2ehpp_2391',['matrix_int2x2.hpp',['../a00206.html',1,'']]], + ['matrix_5fint2x2_5fsized_2ehpp_2392',['matrix_int2x2_sized.hpp',['../a00209.html',1,'']]], + ['matrix_5fint2x3_2ehpp_2393',['matrix_int2x3.hpp',['../a00212.html',1,'']]], + ['matrix_5fint2x3_5fsized_2ehpp_2394',['matrix_int2x3_sized.hpp',['../a00215.html',1,'']]], + ['matrix_5fint2x4_2ehpp_2395',['matrix_int2x4.hpp',['../a00218.html',1,'']]], + ['matrix_5fint2x4_5fsized_2ehpp_2396',['matrix_int2x4_sized.hpp',['../a00221.html',1,'']]], + ['matrix_5fint3x2_2ehpp_2397',['matrix_int3x2.hpp',['../a00224.html',1,'']]], + ['matrix_5fint3x2_5fsized_2ehpp_2398',['matrix_int3x2_sized.hpp',['../a00227.html',1,'']]], + ['matrix_5fint3x3_2ehpp_2399',['matrix_int3x3.hpp',['../a00230.html',1,'']]], + ['matrix_5fint3x3_5fsized_2ehpp_2400',['matrix_int3x3_sized.hpp',['../a00233.html',1,'']]], + ['matrix_5fint3x4_2ehpp_2401',['matrix_int3x4.hpp',['../a00236.html',1,'']]], + ['matrix_5fint4x2_2ehpp_2402',['matrix_int4x2.hpp',['../a00242.html',1,'']]], + ['matrix_5fint4x2_5fsized_2ehpp_2403',['matrix_int4x2_sized.hpp',['../a00245.html',1,'']]], + ['matrix_5fint4x3_2ehpp_2404',['matrix_int4x3.hpp',['../a00248.html',1,'']]], + ['matrix_5fint4x3_5fsized_2ehpp_2405',['matrix_int4x3_sized.hpp',['../a00251.html',1,'']]], + ['matrix_5fint4x4_2ehpp_2406',['matrix_int4x4.hpp',['../a00254.html',1,'']]], + ['matrix_5fint4x4_5fsized_2ehpp_2407',['matrix_int4x4_sized.hpp',['../a00257.html',1,'']]], + ['matrix_5finterpolation_2ehpp_2408',['matrix_interpolation.hpp',['../a00668.html',1,'']]], + ['matrix_5finverse_2ehpp_2409',['matrix_inverse.hpp',['../a00551.html',1,'']]], + ['matrix_5fmajor_5fstorage_2ehpp_2410',['matrix_major_storage.hpp',['../a00671.html',1,'']]], + ['matrix_5foperation_2ehpp_2411',['matrix_operation.hpp',['../a00674.html',1,'']]], + ['matrix_5fprojection_2ehpp_2412',['matrix_projection.hpp',['../a00263.html',1,'']]], + ['matrix_5fquery_2ehpp_2413',['matrix_query.hpp',['../a00677.html',1,'']]], + ['matrix_5frelational_2ehpp_2414',['matrix_relational.hpp',['../a00266.html',1,'']]], + ['matrix_5ftransform_5f2d_2ehpp_2415',['matrix_transform_2d.hpp',['../a00680.html',1,'']]], + ['matrix_5fuint2x2_2ehpp_2416',['matrix_uint2x2.hpp',['../a00272.html',1,'']]], + ['matrix_5fuint2x2_5fsized_2ehpp_2417',['matrix_uint2x2_sized.hpp',['../a00275.html',1,'']]], + ['matrix_5fuint2x3_2ehpp_2418',['matrix_uint2x3.hpp',['../a00278.html',1,'']]], + ['matrix_5fuint2x3_5fsized_2ehpp_2419',['matrix_uint2x3_sized.hpp',['../a00281.html',1,'']]], + ['matrix_5fuint2x4_2ehpp_2420',['matrix_uint2x4.hpp',['../a00284.html',1,'']]], + ['matrix_5fuint2x4_5fsized_2ehpp_2421',['matrix_uint2x4_sized.hpp',['../a00287.html',1,'']]], + ['matrix_5fuint3x2_2ehpp_2422',['matrix_uint3x2.hpp',['../a00290.html',1,'']]], + ['matrix_5fuint3x2_5fsized_2ehpp_2423',['matrix_uint3x2_sized.hpp',['../a00293.html',1,'']]], + ['matrix_5fuint3x3_2ehpp_2424',['matrix_uint3x3.hpp',['../a00296.html',1,'']]], + ['matrix_5fuint3x3_5fsized_2ehpp_2425',['matrix_uint3x3_sized.hpp',['../a00299.html',1,'']]], + ['matrix_5fuint3x4_2ehpp_2426',['matrix_uint3x4.hpp',['../a00302.html',1,'']]], + ['matrix_5fuint4x2_2ehpp_2427',['matrix_uint4x2.hpp',['../a00308.html',1,'']]], + ['matrix_5fuint4x2_5fsized_2ehpp_2428',['matrix_uint4x2_sized.hpp',['../a00311.html',1,'']]], + ['matrix_5fuint4x3_2ehpp_2429',['matrix_uint4x3.hpp',['../a00314.html',1,'']]], + ['matrix_5fuint4x3_5fsized_2ehpp_2430',['matrix_uint4x3_sized.hpp',['../a00317.html',1,'']]], + ['matrix_5fuint4x4_2ehpp_2431',['matrix_uint4x4.hpp',['../a00320.html',1,'']]], + ['matrix_5fuint4x4_5fsized_2ehpp_2432',['matrix_uint4x4_sized.hpp',['../a00323.html',1,'']]], + ['mixed_5fproduct_2ehpp_2433',['mixed_product.hpp',['../a00683.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_b.html b/include/glm/doc/api/search/files_b.html new file mode 100644 index 0000000..d6bdab8 --- /dev/null +++ b/include/glm/doc/api/search/files_b.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_b.js b/include/glm/doc/api/search/files_b.js new file mode 100644 index 0000000..a75361d --- /dev/null +++ b/include/glm/doc/api/search/files_b.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['noise_2ehpp_2434',['noise.hpp',['../a00554.html',1,'']]], + ['norm_2ehpp_2435',['norm.hpp',['../a00686.html',1,'']]], + ['normal_2ehpp_2436',['normal.hpp',['../a00689.html',1,'']]], + ['normalize_5fdot_2ehpp_2437',['normalize_dot.hpp',['../a00692.html',1,'']]], + ['number_5fprecision_2ehpp_2438',['number_precision.hpp',['../a00695.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_c.html b/include/glm/doc/api/search/files_c.html new file mode 100644 index 0000000..20a22e9 --- /dev/null +++ b/include/glm/doc/api/search/files_c.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_c.js b/include/glm/doc/api/search/files_c.js new file mode 100644 index 0000000..356c516 --- /dev/null +++ b/include/glm/doc/api/search/files_c.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['optimum_5fpow_2ehpp_2439',['optimum_pow.hpp',['../a00698.html',1,'']]], + ['orthonormalize_2ehpp_2440',['orthonormalize.hpp',['../a00701.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_d.html b/include/glm/doc/api/search/files_d.html new file mode 100644 index 0000000..82d2156 --- /dev/null +++ b/include/glm/doc/api/search/files_d.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_d.js b/include/glm/doc/api/search/files_d.js new file mode 100644 index 0000000..8e1a3ed --- /dev/null +++ b/include/glm/doc/api/search/files_d.js @@ -0,0 +1,8 @@ +var searchData= +[ + ['packing_2ehpp_2441',['packing.hpp',['../a00557.html',1,'']]], + ['pca_2ehpp_2442',['pca.hpp',['../a00704.html',1,'']]], + ['perpendicular_2ehpp_2443',['perpendicular.hpp',['../a00707.html',1,'']]], + ['polar_5fcoordinates_2ehpp_2444',['polar_coordinates.hpp',['../a00710.html',1,'']]], + ['projection_2ehpp_2445',['projection.hpp',['../a00713.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_e.html b/include/glm/doc/api/search/files_e.html new file mode 100644 index 0000000..637cd55 --- /dev/null +++ b/include/glm/doc/api/search/files_e.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_e.js b/include/glm/doc/api/search/files_e.js new file mode 100644 index 0000000..0b61fc7 --- /dev/null +++ b/include/glm/doc/api/search/files_e.js @@ -0,0 +1,13 @@ +var searchData= +[ + ['quaternion_5fcommon_2ehpp_2446',['quaternion_common.hpp',['../a00326.html',1,'']]], + ['quaternion_5fdouble_2ehpp_2447',['quaternion_double.hpp',['../a00329.html',1,'']]], + ['quaternion_5fdouble_5fprecision_2ehpp_2448',['quaternion_double_precision.hpp',['../a00332.html',1,'']]], + ['quaternion_5fexponential_2ehpp_2449',['quaternion_exponential.hpp',['../a00335.html',1,'']]], + ['quaternion_5ffloat_2ehpp_2450',['quaternion_float.hpp',['../a00338.html',1,'']]], + ['quaternion_5ffloat_5fprecision_2ehpp_2451',['quaternion_float_precision.hpp',['../a00341.html',1,'']]], + ['quaternion_5fgeometric_2ehpp_2452',['quaternion_geometric.hpp',['../a00344.html',1,'']]], + ['quaternion_5frelational_2ehpp_2453',['quaternion_relational.hpp',['../a00347.html',1,'']]], + ['quaternion_5ftransform_2ehpp_2454',['quaternion_transform.hpp',['../a00350.html',1,'']]], + ['quaternion_5ftrigonometric_2ehpp_2455',['quaternion_trigonometric.hpp',['../a00353.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/files_f.html b/include/glm/doc/api/search/files_f.html new file mode 100644 index 0000000..ac88a76 --- /dev/null +++ b/include/glm/doc/api/search/files_f.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/files_f.js b/include/glm/doc/api/search/files_f.js new file mode 100644 index 0000000..a7683ce --- /dev/null +++ b/include/glm/doc/api/search/files_f.js @@ -0,0 +1,10 @@ +var searchData= +[ + ['random_2ehpp_2456',['random.hpp',['../a00563.html',1,'']]], + ['range_2ehpp_2457',['range.hpp',['../a00716.html',1,'']]], + ['raw_5fdata_2ehpp_2458',['raw_data.hpp',['../a00719.html',1,'']]], + ['reciprocal_2ehpp_2459',['reciprocal.hpp',['../a00566.html',1,'']]], + ['rotate_5fnormalized_5faxis_2ehpp_2460',['rotate_normalized_axis.hpp',['../a00722.html',1,'']]], + ['rotate_5fvector_2ehpp_2461',['rotate_vector.hpp',['../a00725.html',1,'']]], + ['round_2ehpp_2462',['round.hpp',['../a00569.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/functions_0.html b/include/glm/doc/api/search/functions_0.html new file mode 100644 index 0000000..4fcbb9c --- /dev/null +++ b/include/glm/doc/api/search/functions_0.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_0.js b/include/glm/doc/api/search/functions_0.js new file mode 100644 index 0000000..9288947 --- /dev/null +++ b/include/glm/doc/api/search/functions_0.js @@ -0,0 +1,31 @@ +var searchData= +[ + ['abs_2552',['abs',['../a00812.html#ga439e60a72eadecfeda2df5449c613a64',1,'glm::abs(genType x)'],['../a00812.html#ga81d3abddd0ef0c8de579bc541ecadab6',1,'glm::abs(vec< L, T, Q > const &x)']]], + ['acos_2553',['acos',['../a00995.html#gacc9b092df8257c68f19c9053703e2563',1,'glm']]], + ['acosh_2554',['acosh',['../a00995.html#ga858f35dc66fd2688f20c52b5f25be76a',1,'glm']]], + ['acot_2555',['acot',['../a00871.html#ga4ba4d4a791560ed05ee07e962207bb45',1,'glm']]], + ['acoth_2556',['acoth',['../a00871.html#ga6dcf17da7d24ef1c29c18bad1a5507e8',1,'glm']]], + ['acsc_2557',['acsc',['../a00871.html#ga0dbb21d8c5b660c7686e262115c3119e',1,'glm']]], + ['acsch_2558',['acsch',['../a00871.html#ga64c5b1bbbeb12731f3e765f26772373c',1,'glm']]], + ['adjugate_2559',['adjugate',['../a00958.html#ga40a38402a30860af6e508fe76211e659',1,'glm::adjugate(mat< 2, 2, T, Q > const &m)'],['../a00958.html#gaddb09f7abc1a9c56a243d32ff3538be6',1,'glm::adjugate(mat< 3, 3, T, Q > const &m)'],['../a00958.html#ga9aaa7d1f40391b0b5cacccb60e104ba8',1,'glm::adjugate(mat< 4, 4, T, Q > const &m)']]], + ['affineinverse_2560',['affineInverse',['../a00913.html#gae0fcc5fc8783291f9702272de428fa0e',1,'glm']]], + ['all_2561',['all',['../a00996.html#ga87e53f50b679f5f95c5cb4780311b3dd',1,'glm']]], + ['angle_2562',['angle',['../a00865.html#ga8aa248b31d5ade470c87304df5eb7bd8',1,'glm::angle(qua< T, Q > const &x)'],['../a00989.html#ga2e2917b4cb75ca3d043ac15ff88f14e1',1,'glm::angle(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['angleaxis_2563',['angleAxis',['../a00865.html#ga5c0095cfcb218c75a4b79d7687950036',1,'glm']]], + ['any_2564',['any',['../a00996.html#ga911b3f8e41459dd551ccb6d385d91061',1,'glm']]], + ['arecollinear_2565',['areCollinear',['../a00990.html#ga13da4a787a2ff70e95d561fb19ff91b4',1,'glm']]], + ['areorthogonal_2566',['areOrthogonal',['../a00990.html#gac7b95b3f798e3c293262b2bdaad47c57',1,'glm']]], + ['areorthonormal_2567',['areOrthonormal',['../a00990.html#ga1b091c3d7f9ee3b0708311c001c293e3',1,'glm']]], + ['asec_2568',['asec',['../a00871.html#ga0938f4ce4f0bfe414c85dd92f7c42400',1,'glm']]], + ['asech_2569',['asech',['../a00871.html#ga2db2855bc3ab46bdc83b01620f5d95f1',1,'glm']]], + ['asin_2570',['asin',['../a00995.html#ga0552d2df4865fa8c3d7cfc3ec2caac73',1,'glm']]], + ['asinh_2571',['asinh',['../a00995.html#ga3ef16b501ee859fddde88e22192a5950',1,'glm']]], + ['associatedmax_2572',['associatedMax',['../a00926.html#ga7d9c8785230c8db60f72ec8975f1ba45',1,'glm::associatedMax(T x, U a, T y, U b)'],['../a00926.html#ga66460edde3bbd331d1d8855159d80b23',1,'glm::associatedMax(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b)'],['../a00926.html#ga0d169d6ce26b03248df175f39005d77f',1,'glm::associatedMax(T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b)'],['../a00926.html#ga4086269afabcb81dd7ded33cb3448653',1,'glm::associatedMax(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b)'],['../a00926.html#gaec891e363d91abbf3a4443cf2f652209',1,'glm::associatedMax(T x, U a, T y, U b, T z, U c)'],['../a00926.html#gab84fdc35016a31e8cd0cbb8296bddf7c',1,'glm::associatedMax(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c)'],['../a00926.html#gadd2a2002f4f2144bbc39eb2336dd2fba',1,'glm::associatedMax(T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c)'],['../a00926.html#ga19f59d1141a51a3b2108a9807af78f7f',1,'glm::associatedMax(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c)'],['../a00926.html#ga3038ffcb43eaa6af75897a99a5047ccc',1,'glm::associatedMax(T x, U a, T y, U b, T z, U c, T w, U d)'],['../a00926.html#gaf5ab0c428f8d1cd9e3b45fcfbf6423a6',1,'glm::associatedMax(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c, vec< L, T, Q > const &w, vec< L, U, Q > const &d)'],['../a00926.html#ga11477c2c4b5b0bfd1b72b29df3725a9d',1,'glm::associatedMax(T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c, T w, vec< L, U, Q > const &d)'],['../a00926.html#gab9c3dd74cac899d2c625b5767ea3b3fb',1,'glm::associatedMax(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)']]], + ['associatedmin_2573',['associatedMin',['../a00926.html#ga3c550a0ac2d615bf90ab26ebc2c680f6',1,'glm::associatedMin(T x, U a, T y, U b)'],['../a00926.html#ga8392895670c92822fc81583942203220',1,'glm::associatedMin(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b)'],['../a00926.html#gacfec519c820331d023ef53a511749319',1,'glm::associatedMin(T x, const vec< L, U, Q > &a, T y, const vec< L, U, Q > &b)'],['../a00926.html#ga4757c7cab2d809124a8525d0a9deeb37',1,'glm::associatedMin(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b)'],['../a00926.html#gad0aa8f86259a26d839d34a3577a923fc',1,'glm::associatedMin(T x, U a, T y, U b, T z, U c)'],['../a00926.html#ga723e5411cebc7ffbd5c81ffeec61127d',1,'glm::associatedMin(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c)'],['../a00926.html#ga432224ebe2085eaa2b63a077ecbbbff6',1,'glm::associatedMin(T x, U a, T y, U b, T z, U c, T w, U d)'],['../a00926.html#ga66b08118bc88f0494bcacb7cdb940556',1,'glm::associatedMin(vec< L, T, Q > const &x, vec< L, U, Q > const &a, vec< L, T, Q > const &y, vec< L, U, Q > const &b, vec< L, T, Q > const &z, vec< L, U, Q > const &c, vec< L, T, Q > const &w, vec< L, U, Q > const &d)'],['../a00926.html#ga78c28fde1a7080fb7420bd88e68c6c68',1,'glm::associatedMin(T x, vec< L, U, Q > const &a, T y, vec< L, U, Q > const &b, T z, vec< L, U, Q > const &c, T w, vec< L, U, Q > const &d)'],['../a00926.html#ga2db7e351994baee78540a562d4bb6d3b',1,'glm::associatedMin(vec< L, T, Q > const &x, U a, vec< L, T, Q > const &y, U b, vec< L, T, Q > const &z, U c, vec< L, T, Q > const &w, U d)']]], + ['atan_2574',['atan',['../a00995.html#gac61629f3a4aa14057e7a8cae002291db',1,'glm::atan(vec< L, T, Q > const &y, vec< L, T, Q > const &x)'],['../a00995.html#ga5229f087eaccbc466f1c609ce3107b95',1,'glm::atan(vec< L, T, Q > const &y_over_x)']]], + ['atan2_2575',['atan2',['../a00933.html#ga9e7b4e9a672898b8cf80ef8ab414f87a',1,'glm::atan2(T y, T x)'],['../a00933.html#gac2af1a4b5c095b5a262f50e7c5ad7fb9',1,'glm::atan2(const vec< 2, T, Q > &y, const vec< 2, T, Q > &x)'],['../a00933.html#ga519d42527308dfd56e655d9ed6e1e727',1,'glm::atan2(const vec< 3, T, Q > &y, const vec< 3, T, Q > &x)'],['../a00933.html#ga8e1bdff7efb18ef15a3119773f261326',1,'glm::atan2(const vec< 4, T, Q > &y, const vec< 4, T, Q > &x)']]], + ['atanh_2576',['atanh',['../a00995.html#gabc925650e618357d07da255531658b87',1,'glm']]], + ['axis_2577',['axis',['../a00865.html#ga764254f10248b505e936e5309a88c23d',1,'glm']]], + ['axisangle_2578',['axisAngle',['../a00956.html#ga75220364722b0e367df98af61de4c3e5',1,'glm']]], + ['axisanglematrix_2579',['axisAngleMatrix',['../a00956.html#ga3a788e2f5223397df5c426413ecc2f6b',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_1.html b/include/glm/doc/api/search/functions_1.html new file mode 100644 index 0000000..9b0e1f0 --- /dev/null +++ b/include/glm/doc/api/search/functions_1.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_1.js b/include/glm/doc/api/search/functions_1.js new file mode 100644 index 0000000..7f8b75c --- /dev/null +++ b/include/glm/doc/api/search/functions_1.js @@ -0,0 +1,20 @@ +var searchData= +[ + ['backeasein_2580',['backEaseIn',['../a00936.html#ga93cddcdb6347a44d5927cc2bf2570816',1,'glm::backEaseIn(genType const &a)'],['../a00936.html#ga33777c9dd98f61d9472f96aafdf2bd36',1,'glm::backEaseIn(genType const &a, genType const &o)']]], + ['backeaseinout_2581',['backEaseInOut',['../a00936.html#gace6d24722a2f6722b56398206eb810bb',1,'glm::backEaseInOut(genType const &a)'],['../a00936.html#ga68a7b760f2afdfab298d5cd6d7611fb1',1,'glm::backEaseInOut(genType const &a, genType const &o)']]], + ['backeaseout_2582',['backEaseOut',['../a00936.html#gabf25069fa906413c858fd46903d520b9',1,'glm::backEaseOut(genType const &a)'],['../a00936.html#ga640c1ac6fe9d277a197da69daf60ee4f',1,'glm::backEaseOut(genType const &a, genType const &o)']]], + ['ballrand_2583',['ballRand',['../a00918.html#ga7c53b7797f3147af68a11c767679fa3f',1,'glm']]], + ['bitcount_2584',['bitCount',['../a00992.html#ga44abfe3379e11cbd29425a843420d0d6',1,'glm::bitCount(genType v)'],['../a00992.html#gaac7b15e40bdea8d9aa4c4cb34049f7b5',1,'glm::bitCount(vec< L, T, Q > const &v)']]], + ['bitfielddeinterleave_2585',['bitfieldDeinterleave',['../a00906.html#ga091d934233a2e121df91b8c7230357c8',1,'glm::bitfieldDeinterleave(glm::uint16 x)'],['../a00906.html#ga7d1cc24dfbcdd932c3a2abbb76235f98',1,'glm::bitfieldDeinterleave(glm::uint32 x)'],['../a00906.html#ga8dbb8c87092f33bd815dd8a840be5d60',1,'glm::bitfieldDeinterleave(glm::uint64 x)']]], + ['bitfieldextract_2586',['bitfieldExtract',['../a00992.html#ga346b25ab11e793e91a4a69c8aa6819f2',1,'glm']]], + ['bitfieldfillone_2587',['bitfieldFillOne',['../a00906.html#ga46f9295abe3b5c7658f5b13c7f819f0a',1,'glm::bitfieldFillOne(genIUType Value, int FirstBit, int BitCount)'],['../a00906.html#ga3e96dd1f0a4bc892f063251ed118c0c1',1,'glm::bitfieldFillOne(vec< L, T, Q > const &Value, int FirstBit, int BitCount)']]], + ['bitfieldfillzero_2588',['bitfieldFillZero',['../a00906.html#ga697b86998b7d74ee0a69d8e9f8819fee',1,'glm::bitfieldFillZero(genIUType Value, int FirstBit, int BitCount)'],['../a00906.html#ga0d16c9acef4be79ea9b47c082a0cf7c2',1,'glm::bitfieldFillZero(vec< L, T, Q > const &Value, int FirstBit, int BitCount)']]], + ['bitfieldinsert_2589',['bitfieldInsert',['../a00992.html#ga2e82992340d421fadb61a473df699b20',1,'glm']]], + ['bitfieldinterleave_2590',['bitfieldInterleave',['../a00906.html#ga24cad0069f9a0450abd80b3e89501adf',1,'glm::bitfieldInterleave(int8 x, int8 y)'],['../a00906.html#ga9a4976a529aec2cee56525e1165da484',1,'glm::bitfieldInterleave(uint8 x, uint8 y)'],['../a00906.html#ga4a76bbca39c40153f3203d0a1926e142',1,'glm::bitfieldInterleave(u8vec2 const &v)'],['../a00906.html#gac51c33a394593f0631fa3aa5bb778809',1,'glm::bitfieldInterleave(int16 x, int16 y)'],['../a00906.html#ga94f3646a5667f4be56f8dcf3310e963f',1,'glm::bitfieldInterleave(uint16 x, uint16 y)'],['../a00906.html#ga406c4ee56af4ca37a73f449f154eca3e',1,'glm::bitfieldInterleave(u16vec2 const &v)'],['../a00906.html#gaebb756a24a0784e3d6fba8bd011ab77a',1,'glm::bitfieldInterleave(int32 x, int32 y)'],['../a00906.html#ga2f1e2b3fe699e7d897ae38b2115ddcbd',1,'glm::bitfieldInterleave(uint32 x, uint32 y)'],['../a00906.html#ga8cb17574d60abd6ade84bc57c10e8f78',1,'glm::bitfieldInterleave(u32vec2 const &v)'],['../a00906.html#ga8fdb724dccd4a07d57efc01147102137',1,'glm::bitfieldInterleave(int8 x, int8 y, int8 z)'],['../a00906.html#ga9fc2a0dd5dcf8b00e113f272a5feca93',1,'glm::bitfieldInterleave(uint8 x, uint8 y, uint8 z)'],['../a00906.html#gaa901c36a842fa5d126ea650549f17b24',1,'glm::bitfieldInterleave(int16 x, int16 y, int16 z)'],['../a00906.html#ga3afd6d38881fe3948c53d4214d2197fd',1,'glm::bitfieldInterleave(uint16 x, uint16 y, uint16 z)'],['../a00906.html#gad2075d96a6640121edaa98ea534102ca',1,'glm::bitfieldInterleave(int32 x, int32 y, int32 z)'],['../a00906.html#gab19fbc739fc0cf7247978602c36f7da8',1,'glm::bitfieldInterleave(uint32 x, uint32 y, uint32 z)'],['../a00906.html#ga8a44ae22f5c953b296c42d067dccbe6d',1,'glm::bitfieldInterleave(int8 x, int8 y, int8 z, int8 w)'],['../a00906.html#ga14bb274d54a3c26f4919dd7ed0dd0c36',1,'glm::bitfieldInterleave(uint8 x, uint8 y, uint8 z, uint8 w)'],['../a00906.html#ga180a63161e1319fbd5a53c84d0429c7a',1,'glm::bitfieldInterleave(int16 x, int16 y, int16 z, int16 w)'],['../a00906.html#gafca8768671a14c8016facccb66a89f26',1,'glm::bitfieldInterleave(uint16 x, uint16 y, uint16 z, uint16 w)']]], + ['bitfieldreverse_2591',['bitfieldReverse',['../a00992.html#ga750a1d92464489b7711dee67aa3441b6',1,'glm']]], + ['bitfieldrotateleft_2592',['bitfieldRotateLeft',['../a00906.html#ga2eb49678a344ce1495bdb5586d9896b9',1,'glm::bitfieldRotateLeft(genIUType In, int Shift)'],['../a00906.html#gae186317091b1a39214ebf79008d44a1e',1,'glm::bitfieldRotateLeft(vec< L, T, Q > const &In, int Shift)']]], + ['bitfieldrotateright_2593',['bitfieldRotateRight',['../a00906.html#ga1c33d075c5fb8bd8dbfd5092bfc851ca',1,'glm::bitfieldRotateRight(genIUType In, int Shift)'],['../a00906.html#ga590488e1fc00a6cfe5d3bcaf93fbfe88',1,'glm::bitfieldRotateRight(vec< L, T, Q > const &In, int Shift)']]], + ['bounceeasein_2594',['bounceEaseIn',['../a00936.html#gaac30767f2e430b0c3fc859a4d59c7b5b',1,'glm']]], + ['bounceeaseinout_2595',['bounceEaseInOut',['../a00936.html#gadf9f38eff1e5f4c2fa5b629a25ae413e',1,'glm']]], + ['bounceeaseout_2596',['bounceEaseOut',['../a00936.html#ga94007005ff0dcfa0749ebfa2aec540b2',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_10.html b/include/glm/doc/api/search/functions_10.html new file mode 100644 index 0000000..7a7a444 --- /dev/null +++ b/include/glm/doc/api/search/functions_10.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_10.js b/include/glm/doc/api/search/functions_10.js new file mode 100644 index 0000000..a513d5b --- /dev/null +++ b/include/glm/doc/api/search/functions_10.js @@ -0,0 +1,32 @@ +var searchData= +[ + ['saturate_3024',['saturate',['../a00933.html#ga744b98814a35336e25cc0d1ba30f63f7',1,'glm::saturate(T x)'],['../a00933.html#gaee97b8001c794a78a44f5d59f62a8aba',1,'glm::saturate(const vec< 2, T, Q > &x)'],['../a00933.html#ga39bfe3a421286ee31680d45c31ccc161',1,'glm::saturate(const vec< 3, T, Q > &x)'],['../a00933.html#ga356f8c3a7e7d6376d3d4b0a026407183',1,'glm::saturate(const vec< 4, T, Q > &x)']]], + ['saturation_3025',['saturation',['../a00930.html#ga01a97152b44e1550edcac60bd849e884',1,'glm::saturation(T const s)'],['../a00930.html#ga2156cea600e90148ece5bc96fd6db43a',1,'glm::saturation(T const s, vec< 3, T, Q > const &color)'],['../a00930.html#gaba0eacee0736dae860e9371cc1ae4785',1,'glm::saturation(T const s, vec< 4, T, Q > const &color)']]], + ['scale_3026',['scale',['../a00837.html#ga05051adbee603fb3c5095d8cf5cc229b',1,'glm::scale(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)'],['../a00960.html#gadb47d2ad2bd984b213e8ff7d9cd8154e',1,'glm::scale(mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)'],['../a00984.html#gafbeefee8fec884d566e4ada0049174d7',1,'glm::scale(vec< 3, T, Q > const &v)']]], + ['scalebias_3027',['scaleBias',['../a00985.html#gabf249498b236e62c983d90d30d63c99c',1,'glm::scaleBias(T scale, T bias)'],['../a00985.html#gae2bdd91a76759fecfbaef97e3020aa8e',1,'glm::scaleBias(mat< 4, 4, T, Q > const &m, T scale, T bias)']]], + ['sec_3028',['sec',['../a00871.html#ga225db01831b8a4b5a3d9bd3e486ed21c',1,'glm']]], + ['sech_3029',['sech',['../a00871.html#ga0e16a0de56f2bf9a432dc2776020fc7a',1,'glm']]], + ['shear_3030',['shear',['../a00837.html#ga391e0142852ab4139dcea0d9b1bbc048',1,'glm']]], + ['shearx_3031',['shearX',['../a00960.html#ga2a118ece5db1e2022112b954846012af',1,'glm']]], + ['shearx2d_3032',['shearX2D',['../a00985.html#gabf714b8a358181572b32a45555f71948',1,'glm']]], + ['shearx3d_3033',['shearX3D',['../a00985.html#ga73e867c6cd4d700fe2054437e56106c4',1,'glm']]], + ['sheary_3034',['shearY',['../a00960.html#ga717f1833369c1ac4a40e4ac015af885e',1,'glm']]], + ['sheary2d_3035',['shearY2D',['../a00985.html#gac7998d0763d9181550c77e8af09a182c',1,'glm']]], + ['sheary3d_3036',['shearY3D',['../a00985.html#gade5bb65ffcb513973db1a1314fb5cfac',1,'glm']]], + ['shearz3d_3037',['shearZ3D',['../a00985.html#ga6591e0a3a9d2c9c0b6577bb4dace0255',1,'glm']]], + ['shortmix_3038',['shortMix',['../a00972.html#gadc576cc957adc2a568cdcbc3799175bc',1,'glm']]], + ['sign_3039',['sign',['../a00812.html#ga589807f35ad0a1d173762bfac3288929',1,'glm::sign(vec< L, T, Q > const &x)'],['../a00952.html#ga04ef803a24f3d4f8c67dbccb33b0fce0',1,'glm::sign(vec< L, T, Q > const &x, vec< L, T, Q > const &base)']]], + ['simplex_3040',['simplex',['../a00915.html#ga8122468c69015ff397349a7dcc638b27',1,'glm']]], + ['sin_3041',['sin',['../a00995.html#ga29747fd108cb7292ae5a284f69691a69',1,'glm']]], + ['sineeasein_3042',['sineEaseIn',['../a00936.html#gafb338ac6f6b2bcafee50e3dca5201dbf',1,'glm']]], + ['sineeaseinout_3043',['sineEaseInOut',['../a00936.html#gaa46e3d5fbf7a15caa28eff9ef192d7c7',1,'glm']]], + ['sineeaseout_3044',['sineEaseOut',['../a00936.html#gab3e454f883afc1606ef91363881bf5a3',1,'glm']]], + ['sinh_3045',['sinh',['../a00995.html#gac7c39ff21809e281552b4dbe46f4a39d',1,'glm']]], + ['slerp_3046',['slerp',['../a00856.html#gae7fc3c945be366b9942b842f55da428a',1,'glm::slerp(qua< T, Q > const &x, qua< T, Q > const &y, T a)'],['../a00856.html#ga8514da9c52cfee86f716cc0933ce118a',1,'glm::slerp(qua< T, Q > const &x, qua< T, Q > const &y, T a, S k)'],['../a00976.html#ga8b11b18ce824174ea1a5a69ea14e2cee',1,'glm::slerp(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, T const &a)']]], + ['smoothstep_3047',['smoothstep',['../a00812.html#ga562edf7eca082cc5b7a0aaf180436daf',1,'glm']]], + ['sorteigenvalues_3048',['sortEigenvalues',['../a00968.html#ga2824ef6f23df255f86b9c33cebd5da2f',1,'glm::sortEigenvalues(vec< 2, T, Q > &eigenvalues, mat< 2, 2, T, Q > &eigenvectors)'],['../a00968.html#gaf6fbcbcca3eb46f4fd6d491a979db7c5',1,'glm::sortEigenvalues(vec< 3, T, Q > &eigenvalues, mat< 3, 3, T, Q > &eigenvectors)'],['../a00968.html#ga3fe570b4abe7eca8afb32896d77394f5',1,'glm::sortEigenvalues(vec< 4, T, Q > &eigenvalues, mat< 4, 4, T, Q > &eigenvectors)']]], + ['sphericalrand_3049',['sphericalRand',['../a00918.html#ga22f90fcaccdf001c516ca90f6428e138',1,'glm']]], + ['sqrt_3050',['sqrt',['../a00813.html#gaa83e5f1648b7ccdf33b87c07c76cb77c',1,'glm::sqrt(vec< L, T, Q > const &v)'],['../a00864.html#ga64b7b255ed7bcba616fe6b44470b022e',1,'glm::sqrt(qua< T, Q > const &q)'],['../a00948.html#ga7ce36693a75879ccd9bb10167cfa722d',1,'glm::sqrt(int x)'],['../a00948.html#ga1975d318978d6dacf78b6444fa5ed7bc',1,'glm::sqrt(uint x)']]], + ['squad_3051',['squad',['../a00972.html#ga0b9bf3459e132ad8a18fe970669e3e35',1,'glm']]], + ['step_3052',['step',['../a00812.html#ga015a1261ff23e12650211aa872863cce',1,'glm::step(genType edge, genType x)'],['../a00812.html#ga8f9a911a48ef244b51654eaefc81c551',1,'glm::step(T edge, vec< L, T, Q > const &x)'],['../a00812.html#gaf4a5fc81619c7d3e8b22f53d4a098c7f',1,'glm::step(vec< L, T, Q > const &edge, vec< L, T, Q > const &x)']]] +]; diff --git a/include/glm/doc/api/search/functions_11.html b/include/glm/doc/api/search/functions_11.html new file mode 100644 index 0000000..e77ce3b --- /dev/null +++ b/include/glm/doc/api/search/functions_11.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_11.js b/include/glm/doc/api/search/functions_11.js new file mode 100644 index 0000000..8ddbcbb --- /dev/null +++ b/include/glm/doc/api/search/functions_11.js @@ -0,0 +1,21 @@ +var searchData= +[ + ['tan_3053',['tan',['../a00995.html#ga293a34cfb9f0115cc606b4a97c84f11f',1,'glm']]], + ['tanh_3054',['tanh',['../a00995.html#gaa1bccbfdcbe40ed2ffcddc2aa8bfd0f1',1,'glm']]], + ['tau_3055',['tau',['../a00908.html#gae645d3bb4076df6976b3c0821831b422',1,'glm']]], + ['third_3056',['third',['../a00908.html#ga3077c6311010a214b69ddc8214ec13b5',1,'glm']]], + ['three_5fover_5ftwo_5fpi_3057',['three_over_two_pi',['../a00908.html#gae94950df74b0ce382b1fc1d978ef7394',1,'glm']]], + ['to_5fstring_3058',['to_string',['../a00981.html#ga8f0dced1fd45e67e2d77e80ab93c7af5',1,'glm']]], + ['tomat3_3059',['toMat3',['../a00972.html#gac228e3fcfa813841804362fcae02b337',1,'glm']]], + ['tomat4_3060',['toMat4',['../a00972.html#gad0d0c14d7d3c852b41d6a6e4d1da6606',1,'glm']]], + ['toquat_3061',['toQuat',['../a00972.html#ga7b2be33d948db631c8815e9f2953a451',1,'glm::toQuat(mat< 3, 3, T, Q > const &x)'],['../a00972.html#ga4cf12d456770d716b590fd498bce6136',1,'glm::toQuat(mat< 4, 4, T, Q > const &x)']]], + ['translate_3062',['translate',['../a00837.html#gac6b494bda2f47615b2fd3e70f3d2c912',1,'glm::translate(mat< 4, 4, T, Q > const &m, vec< 3, T, Q > const &v)'],['../a00960.html#gaf4573ae47c80938aa9053ef6a33755ab',1,'glm::translate(mat< 3, 3, T, Q > const &m, vec< 2, T, Q > const &v)'],['../a00984.html#ga309a30e652e58c396e2c3d4db3ee7658',1,'glm::translate(vec< 3, T, Q > const &v)']]], + ['transpose_3063',['transpose',['../a00834.html#ga4bedcb9c511484f38fd30a60c95f4679',1,'glm']]], + ['trianglenormal_3064',['triangleNormal',['../a00963.html#gaff1cb5496925dfa7962df457772a7f35',1,'glm']]], + ['trunc_3065',['trunc',['../a00812.html#gaf9375e3e06173271d49e6ffa3a334259',1,'glm']]], + ['tweakedinfiniteperspective_3066',['tweakedInfinitePerspective',['../a00814.html#gaaeacc04a2a6f4b18c5899d37e7bb3ef9',1,'glm::tweakedInfinitePerspective(T fovy, T aspect, T near)'],['../a00814.html#gaf5b3c85ff6737030a1d2214474ffa7a8',1,'glm::tweakedInfinitePerspective(T fovy, T aspect, T near, T ep)']]], + ['two_5fover_5fpi_3067',['two_over_pi',['../a00908.html#ga74eadc8a211253079683219a3ea0462a',1,'glm']]], + ['two_5fover_5froot_5fpi_3068',['two_over_root_pi',['../a00908.html#ga5827301817640843cf02026a8d493894',1,'glm']]], + ['two_5fpi_3069',['two_pi',['../a00908.html#gaa5276a4617566abcfe49286f40e3a256',1,'glm']]], + ['two_5fthirds_3070',['two_thirds',['../a00908.html#ga9b4d2f4322edcf63a6737b92a29dd1f5',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_12.html b/include/glm/doc/api/search/functions_12.html new file mode 100644 index 0000000..f641914 --- /dev/null +++ b/include/glm/doc/api/search/functions_12.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_12.js b/include/glm/doc/api/search/functions_12.js new file mode 100644 index 0000000..217dc12 --- /dev/null +++ b/include/glm/doc/api/search/functions_12.js @@ -0,0 +1,52 @@ +var searchData= +[ + ['uaddcarry_3071',['uaddCarry',['../a00992.html#gaedcec48743632dff6786bcc492074b1b',1,'glm']]], + ['uintbitstofloat_3072',['uintBitsToFloat',['../a00812.html#gac427a0b389f2c585269c36ccaee9c5ed',1,'glm::uintBitsToFloat(uint v)'],['../a00812.html#ga97f46b5f7b42fe44482e13356eb394ae',1,'glm::uintBitsToFloat(vec< L, uint, Q > const &v)']]], + ['umulextended_3073',['umulExtended',['../a00992.html#gad22052a7e47d9408ad65ac675abe1663',1,'glm']]], + ['unpackdouble2x32_3074',['unpackDouble2x32',['../a00994.html#ga5f4296dc5f12f0aa67ac05b8bb322483',1,'glm']]], + ['unpackf2x11_5f1x10_3075',['unpackF2x11_1x10',['../a00916.html#ga2b1fd1e854705b1345e98409e0a25e50',1,'glm']]], + ['unpackf3x9_5fe1x5_3076',['unpackF3x9_E1x5',['../a00916.html#gab9e60ebe3ad3eeced6a9ec6eb876d74e',1,'glm']]], + ['unpackhalf_3077',['unpackHalf',['../a00916.html#ga30d6b2f1806315bcd6047131f547d33b',1,'glm']]], + ['unpackhalf1x16_3078',['unpackHalf1x16',['../a00916.html#gac37dedaba24b00adb4ec6e8f92c19dbf',1,'glm']]], + ['unpackhalf2x16_3079',['unpackHalf2x16',['../a00994.html#gaf59b52e6b28da9335322c4ae19b5d745',1,'glm']]], + ['unpackhalf4x16_3080',['unpackHalf4x16',['../a00916.html#ga57dfc41b2eb20b0ac00efae7d9c49dcd',1,'glm']]], + ['unpacki3x10_5f1x2_3081',['unpackI3x10_1x2',['../a00916.html#ga9a05330e5490be0908d3b117d82aff56',1,'glm']]], + ['unpackint2x16_3082',['unpackInt2x16',['../a00916.html#gaccde055882918a3175de82f4ca8b7d8e',1,'glm']]], + ['unpackint2x32_3083',['unpackInt2x32',['../a00916.html#gab297c0bfd38433524791eb0584d8f08d',1,'glm']]], + ['unpackint2x8_3084',['unpackInt2x8',['../a00916.html#gab0c59f1e259fca9e68adb2207a6b665e',1,'glm']]], + ['unpackint4x16_3085',['unpackInt4x16',['../a00916.html#ga52c154a9b232b62c22517a700cc0c78c',1,'glm']]], + ['unpackint4x8_3086',['unpackInt4x8',['../a00916.html#ga1cd8d2038cdd33a860801aa155a26221',1,'glm']]], + ['unpackrgbm_3087',['unpackRGBM',['../a00916.html#ga5c1ec97894b05ea21a05aea4f0204a02',1,'glm']]], + ['unpacksnorm_3088',['unpackSnorm',['../a00916.html#ga6d49b31e5c3f9df8e1f99ab62b999482',1,'glm']]], + ['unpacksnorm1x16_3089',['unpackSnorm1x16',['../a00916.html#ga96dd15002370627a443c835ab03a766c',1,'glm']]], + ['unpacksnorm1x8_3090',['unpackSnorm1x8',['../a00916.html#ga4851ff86678aa1c7ace9d67846894285',1,'glm']]], + ['unpacksnorm2x16_3091',['unpackSnorm2x16',['../a00994.html#gacd8f8971a3fe28418be0d0fa1f786b38',1,'glm']]], + ['unpacksnorm2x8_3092',['unpackSnorm2x8',['../a00916.html#ga8b128e89be449fc71336968a66bf6e1a',1,'glm']]], + ['unpacksnorm3x10_5f1x2_3093',['unpackSnorm3x10_1x2',['../a00916.html#ga7a4fbf79be9740e3c57737bc2af05e5b',1,'glm']]], + ['unpacksnorm4x16_3094',['unpackSnorm4x16',['../a00916.html#gaaddf9c353528fe896106f7181219c7f4',1,'glm']]], + ['unpacksnorm4x8_3095',['unpackSnorm4x8',['../a00994.html#ga2db488646d48b7c43d3218954523fe82',1,'glm']]], + ['unpacku3x10_5f1x2_3096',['unpackU3x10_1x2',['../a00916.html#ga48df3042a7d079767f5891a1bfd8a60a',1,'glm']]], + ['unpackuint2x16_3097',['unpackUint2x16',['../a00916.html#ga035bbbeab7ec2b28c0529757395b645b',1,'glm']]], + ['unpackuint2x32_3098',['unpackUint2x32',['../a00916.html#gaf942ff11b65e83eb5f77e68329ebc6ab',1,'glm']]], + ['unpackuint2x8_3099',['unpackUint2x8',['../a00916.html#gaa7600a6c71784b637a410869d2a5adcd',1,'glm']]], + ['unpackuint4x16_3100',['unpackUint4x16',['../a00916.html#gab173834ef14cfc23a96a959f3ff4b8dc',1,'glm']]], + ['unpackuint4x8_3101',['unpackUint4x8',['../a00916.html#gaf6dc0e4341810a641c7ed08f10e335d1',1,'glm']]], + ['unpackunorm_3102',['unpackUnorm',['../a00916.html#ga3e6ac9178b59f0b1b2f7599f2183eb7f',1,'glm']]], + ['unpackunorm1x16_3103',['unpackUnorm1x16',['../a00916.html#ga83d34160a5cb7bcb5339823210fc7501',1,'glm']]], + ['unpackunorm1x5_5f1x6_5f1x5_3104',['unpackUnorm1x5_1x6_1x5',['../a00916.html#gab3bc08ecfc0f3339be93fb2b3b56d88a',1,'glm']]], + ['unpackunorm1x8_3105',['unpackUnorm1x8',['../a00916.html#ga1319207e30874fb4931a9ee913983ee1',1,'glm']]], + ['unpackunorm2x16_3106',['unpackUnorm2x16',['../a00994.html#ga1f66188e5d65afeb9ffba1ad971e4007',1,'glm']]], + ['unpackunorm2x3_5f1x2_3107',['unpackUnorm2x3_1x2',['../a00916.html#ga6abd5a9014df3b5ce4059008d2491260',1,'glm']]], + ['unpackunorm2x4_3108',['unpackUnorm2x4',['../a00916.html#ga2e50476132fe5f27f08e273d9c70d85b',1,'glm']]], + ['unpackunorm2x8_3109',['unpackUnorm2x8',['../a00916.html#ga637cbe3913dd95c6e7b4c99c61bd611f',1,'glm']]], + ['unpackunorm3x10_5f1x2_3110',['unpackUnorm3x10_1x2',['../a00916.html#ga5156d3060355fe332865da2c7f78815f',1,'glm']]], + ['unpackunorm3x5_5f1x1_3111',['unpackUnorm3x5_1x1',['../a00916.html#ga5ff95ff5bc16f396432ab67243dbae4d',1,'glm']]], + ['unpackunorm4x16_3112',['unpackUnorm4x16',['../a00916.html#ga2ae149c5d2473ac1e5f347bb654a242d',1,'glm']]], + ['unpackunorm4x4_3113',['unpackUnorm4x4',['../a00916.html#gac58ee89d0e224bb6df5e8bbb18843a2d',1,'glm']]], + ['unpackunorm4x8_3114',['unpackUnorm4x8',['../a00994.html#ga7f903259150b67e9466f5f8edffcd197',1,'glm']]], + ['unproject_3115',['unProject',['../a00835.html#ga36641e5d60f994e01c3d8f56b10263d2',1,'glm']]], + ['unprojectno_3116',['unProjectNO',['../a00835.html#gae089ba9fc150ff69c252a20e508857b5',1,'glm']]], + ['unprojectzo_3117',['unProjectZO',['../a00835.html#gade5136413ce530f8e606124d570fba32',1,'glm']]], + ['uround_3118',['uround',['../a00866.html#ga9d915647ec33c4110946665f914d3abb',1,'glm::uround(genType const &x)'],['../a00877.html#ga6715b9d573972a0f7763d30d45bcaec4',1,'glm::uround(vec< L, T, Q > const &x)']]], + ['usubborrow_3119',['usubBorrow',['../a00992.html#gae3316ba1229ad9b9f09480833321b053',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_13.html b/include/glm/doc/api/search/functions_13.html new file mode 100644 index 0000000..65faa02 --- /dev/null +++ b/include/glm/doc/api/search/functions_13.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_13.js b/include/glm/doc/api/search/functions_13.js new file mode 100644 index 0000000..ce156a7 --- /dev/null +++ b/include/glm/doc/api/search/functions_13.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['value_5fptr_3120',['value_ptr',['../a00923.html#ga1c64669e1ba1160ad9386e43dc57569a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_14.html b/include/glm/doc/api/search/functions_14.html new file mode 100644 index 0000000..527223c --- /dev/null +++ b/include/glm/doc/api/search/functions_14.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_14.js b/include/glm/doc/api/search/functions_14.js new file mode 100644 index 0000000..ec5f483 --- /dev/null +++ b/include/glm/doc/api/search/functions_14.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['wrapangle_3121',['wrapAngle',['../a00943.html#ga069527c6dbd64f53435b8ebc4878b473',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_15.html b/include/glm/doc/api/search/functions_15.html new file mode 100644 index 0000000..932bb87 --- /dev/null +++ b/include/glm/doc/api/search/functions_15.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_15.js b/include/glm/doc/api/search/functions_15.js new file mode 100644 index 0000000..8cffa74 --- /dev/null +++ b/include/glm/doc/api/search/functions_15.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['yaw_3122',['yaw',['../a00917.html#ga8da38cdfdc452dafa660c2f46506bad5',1,'glm']]], + ['yawpitchroll_3123',['yawPitchRoll',['../a00937.html#gae6aa26ccb020d281b449619e419a609e',1,'glm']]], + ['ycocg2rgb_3124',['YCoCg2rgb',['../a00931.html#ga163596b804c7241810b2534a99eb1343',1,'glm']]], + ['ycocgr2rgb_3125',['YCoCgR2rgb',['../a00931.html#gaf8d30574c8576838097d8e20c295384a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_16.html b/include/glm/doc/api/search/functions_16.html new file mode 100644 index 0000000..a42c030 --- /dev/null +++ b/include/glm/doc/api/search/functions_16.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_16.js b/include/glm/doc/api/search/functions_16.js new file mode 100644 index 0000000..2f5a8a7 --- /dev/null +++ b/include/glm/doc/api/search/functions_16.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['zero_3126',['zero',['../a00908.html#ga788f5a421fc0f40a1296ebc094cbaa8a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_2.html b/include/glm/doc/api/search/functions_2.html new file mode 100644 index 0000000..eb51f80 --- /dev/null +++ b/include/glm/doc/api/search/functions_2.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_2.js b/include/glm/doc/api/search/functions_2.js new file mode 100644 index 0000000..cc349ad --- /dev/null +++ b/include/glm/doc/api/search/functions_2.js @@ -0,0 +1,44 @@ +var searchData= +[ + ['catmullrom_2597',['catmullRom',['../a00979.html#ga8119c04f8210fd0d292757565cd6918d',1,'glm']]], + ['ceil_2598',['ceil',['../a00812.html#gafb9d2a645a23aca12d4d6de0104b7657',1,'glm']]], + ['ceilmultiple_2599',['ceilMultiple',['../a00920.html#ga1d89ac88582aaf4d5dfa5feb4a376fd4',1,'glm::ceilMultiple(genType v, genType Multiple)'],['../a00920.html#gab77fdcc13f8e92d2e0b1b7d7aeab8e9d',1,'glm::ceilMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['ceilpoweroftwo_2600',['ceilPowerOfTwo',['../a00920.html#ga5c3ef36ae32aa4271f1544f92bd578b6',1,'glm::ceilPowerOfTwo(genIUType v)'],['../a00920.html#gab53d4a97c0d3e297be5f693cdfdfe5d2',1,'glm::ceilPowerOfTwo(vec< L, T, Q > const &v)']]], + ['circulareasein_2601',['circularEaseIn',['../a00936.html#ga34508d4b204a321ec26d6086aa047997',1,'glm']]], + ['circulareaseinout_2602',['circularEaseInOut',['../a00936.html#ga0c1027637a5b02d4bb3612aa12599d69',1,'glm']]], + ['circulareaseout_2603',['circularEaseOut',['../a00936.html#ga26fefde9ced9b72745fe21f1a3fe8da7',1,'glm']]], + ['circularrand_2604',['circularRand',['../a00918.html#ga9dd05c36025088fae25b97c869e88517',1,'glm']]], + ['clamp_2605',['clamp',['../a00812.html#ga7cd77683da6361e297c56443fc70806d',1,'glm::clamp(genType x, genType minVal, genType maxVal)'],['../a00812.html#gafba2e0674deb5953878d89483cd6323d',1,'glm::clamp(vec< L, T, Q > const &x, T minVal, T maxVal)'],['../a00812.html#gaa0f2f12e9108b09e22a3f0b2008a0b5d',1,'glm::clamp(vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)'],['../a00866.html#ga6c0cc6bd1d67ea1008d2592e998bad33',1,'glm::clamp(genType const &Texcoord)'],['../a00877.html#gab43dbf24b7d827e293106d3e8096e065',1,'glm::clamp(vec< L, T, Q > const &Texcoord)']]], + ['closebounded_2606',['closeBounded',['../a00932.html#gab7d89c14c48ad01f720fb5daf8813161',1,'glm']]], + ['closestpointonline_2607',['closestPointOnLine',['../a00928.html#ga36529c278ef716986151d58d151d697d',1,'glm::closestPointOnLine(vec< 3, T, Q > const &point, vec< 3, T, Q > const &a, vec< 3, T, Q > const &b)'],['../a00928.html#ga55bcbcc5fc06cb7ff7bc7a6e0e155eb0',1,'glm::closestPointOnLine(vec< 2, T, Q > const &point, vec< 2, T, Q > const &a, vec< 2, T, Q > const &b)']]], + ['colmajor2_2608',['colMajor2',['../a00957.html#gaaff72f11286e59a4a88ed21a347f284c',1,'glm::colMajor2(vec< 2, T, Q > const &v1, vec< 2, T, Q > const &v2)'],['../a00957.html#gafc25fd44196c92b1397b127aec1281ab',1,'glm::colMajor2(mat< 2, 2, T, Q > const &m)']]], + ['colmajor3_2609',['colMajor3',['../a00957.html#ga1e25b72b085087740c92f5c70f3b051f',1,'glm::colMajor3(vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)'],['../a00957.html#ga86bd0656e787bb7f217607572590af27',1,'glm::colMajor3(mat< 3, 3, T, Q > const &m)']]], + ['colmajor4_2610',['colMajor4',['../a00957.html#gaf4aa6c7e17bfce41a6c13bf6469fab05',1,'glm::colMajor4(vec< 4, T, Q > const &v1, vec< 4, T, Q > const &v2, vec< 4, T, Q > const &v3, vec< 4, T, Q > const &v4)'],['../a00957.html#gaf3f9511c366c20ba2e4a64c9e4cec2b3',1,'glm::colMajor4(mat< 4, 4, T, Q > const &m)']]], + ['column_2611',['column',['../a00911.html#ga96022eb0d3fae39d89fc7a954e59b374',1,'glm::column(genType const &m, length_t index)'],['../a00911.html#ga9e757377523890e8b80c5843dbe4dd15',1,'glm::column(genType const &m, length_t index, typename genType::col_type const &x)']]], + ['compadd_2612',['compAdd',['../a00934.html#gaf71833350e15e74d31cbf8a3e7f27051',1,'glm']]], + ['compmax_2613',['compMax',['../a00934.html#gabfa4bb19298c8c73d4217ba759c496b6',1,'glm']]], + ['compmin_2614',['compMin',['../a00934.html#gab5d0832b5c7bb01b8d7395973bfb1425',1,'glm']]], + ['compmul_2615',['compMul',['../a00934.html#gae8ab88024197202c9479d33bdc5a8a5d',1,'glm']]], + ['compnormalize_2616',['compNormalize',['../a00934.html#ga8f2b81ada8515875e58cb1667b6b9908',1,'glm']]], + ['compscale_2617',['compScale',['../a00934.html#ga80abc2980d65d675f435d178c36880eb',1,'glm']]], + ['computecovariancematrix_2618',['computeCovarianceMatrix',['../a00968.html#ga2d6dc3e25182cae243cdf55310059af0',1,'glm::computeCovarianceMatrix(vec< D, T, Q > const *v, size_t n)'],['../a00968.html#gabfc7aba26da1eed6726f2484584f4077',1,'glm::computeCovarianceMatrix(vec< D, T, Q > const *v, size_t n, vec< D, T, Q > const &c)'],['../a00968.html#ga2c7b5ff4e0f4132a23e58eeb0803b53a',1,'glm::computeCovarianceMatrix(I const &b, I const &e)'],['../a00968.html#ga666383aa52036f00f3b66e4e7e56da3a',1,'glm::computeCovarianceMatrix(I const &b, I const &e, vec< D, T, Q > const &c)']]], + ['conjugate_2619',['conjugate',['../a00856.html#ga5b646f1cd4422eb76ab90496bcd0b60a',1,'glm']]], + ['convertd65xyztod50xyz_2620',['convertD65XYZToD50XYZ',['../a00929.html#gad12f4f65022b2c80e33fcba2ced0dc48',1,'glm']]], + ['convertd65xyztolinearsrgb_2621',['convertD65XYZToLinearSRGB',['../a00929.html#ga5265386fc3ac29e4c580d37ed470859c',1,'glm']]], + ['convertlinearsrgbtod50xyz_2622',['convertLinearSRGBToD50XYZ',['../a00929.html#ga1522ba180e3d83d554a734056da031f9',1,'glm']]], + ['convertlinearsrgbtod65xyz_2623',['convertLinearSRGBToD65XYZ',['../a00929.html#gaf9e130d9d4ccf51cc99317de7449f369',1,'glm']]], + ['convertlineartosrgb_2624',['convertLinearToSRGB',['../a00907.html#ga42239e7b3da900f7ef37cec7e2476579',1,'glm::convertLinearToSRGB(vec< L, T, Q > const &ColorLinear)'],['../a00907.html#gaace0a21167d13d26116c283009af57f6',1,'glm::convertLinearToSRGB(vec< L, T, Q > const &ColorLinear, T Gamma)']]], + ['convertsrgbtolinear_2625',['convertSRGBToLinear',['../a00907.html#ga16c798b7a226b2c3079dedc55083d187',1,'glm::convertSRGBToLinear(vec< L, T, Q > const &ColorSRGB)'],['../a00907.html#gad1b91f27a9726c9cb403f9fee6e2e200',1,'glm::convertSRGBToLinear(vec< L, T, Q > const &ColorSRGB, T Gamma)']]], + ['cos_2626',['cos',['../a00995.html#ga6a41efc740e3b3c937447d3a6284130e',1,'glm']]], + ['cos_5fone_5fover_5ftwo_2627',['cos_one_over_two',['../a00867.html#gae8d1938913da2e5b2e102b9076cd0389',1,'glm']]], + ['cosh_2628',['cosh',['../a00995.html#ga4e260e372742c5f517aca196cf1e62b3',1,'glm']]], + ['cot_2629',['cot',['../a00871.html#ga1f347629f919b562d9d10951e3b80968',1,'glm']]], + ['coth_2630',['coth',['../a00871.html#ga35710c9529d973ad01af024f9879fdf7',1,'glm']]], + ['cross_2631',['cross',['../a00862.html#ga9a47ad9ca44bc04eeaac260d42105134',1,'glm::cross(qua< T, Q > const &q1, qua< T, Q > const &q2)'],['../a00897.html#gaefe60743d7f415a33cbdddbe3bcf0258',1,'glm::cross(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)'],['../a00940.html#gac5814d419dbc957de01dc9a3f3196be5',1,'glm::cross(vec< 2, T, Q > const &v, vec< 2, T, Q > const &u)'],['../a00972.html#gacbbbf93d24828d6bd9ba48d43abc985e',1,'glm::cross(qua< T, Q > const &q, vec< 3, T, Q > const &v)'],['../a00972.html#ga7877a1ec00e43bbfccf6dd11894c0536',1,'glm::cross(vec< 3, T, Q > const &v, qua< T, Q > const &q)']]], + ['csc_2632',['csc',['../a00871.html#gaa6bf27b118f660387753bfa75af13b6d',1,'glm']]], + ['csch_2633',['csch',['../a00871.html#ga0247051ce3b0bac747136e69b51ab853',1,'glm']]], + ['cubic_2634',['cubic',['../a00979.html#ga6b867eb52e2fc933d2e0bf26aabc9a70',1,'glm']]], + ['cubiceasein_2635',['cubicEaseIn',['../a00936.html#gaff52f746102b94864d105563ba8895ae',1,'glm']]], + ['cubiceaseinout_2636',['cubicEaseInOut',['../a00936.html#ga55134072b42d75452189321d4a2ad91c',1,'glm']]], + ['cubiceaseout_2637',['cubicEaseOut',['../a00936.html#ga40d746385d8bcc5973f5bc6a2340ca91',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_3.html b/include/glm/doc/api/search/functions_3.html new file mode 100644 index 0000000..e53b9d0 --- /dev/null +++ b/include/glm/doc/api/search/functions_3.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_3.js b/include/glm/doc/api/search/functions_3.js new file mode 100644 index 0000000..718d7eb --- /dev/null +++ b/include/glm/doc/api/search/functions_3.js @@ -0,0 +1,24 @@ +var searchData= +[ + ['decompose_2638',['decompose',['../a00954.html#gabd7878e1b23aab583bc01040c5ed2b71',1,'glm']]], + ['degrees_2639',['degrees',['../a00995.html#ga8faec9e303538065911ba8b3caf7326b',1,'glm']]], + ['derivedeuleranglex_2640',['derivedEulerAngleX',['../a00937.html#ga994b8186b3b80d91cf90bc403164692f',1,'glm']]], + ['derivedeulerangley_2641',['derivedEulerAngleY',['../a00937.html#ga0a4c56ecce7abcb69508ebe6313e9d10',1,'glm']]], + ['derivedeuleranglez_2642',['derivedEulerAngleZ',['../a00937.html#gae8b397348201c42667be983ba3f344df',1,'glm']]], + ['determinant_2643',['determinant',['../a00834.html#ga07f545826ec7726ca072e587246afdde',1,'glm']]], + ['diagonal2x2_2644',['diagonal2x2',['../a00958.html#ga58a32a2beeb2478dae2a721368cdd4ac',1,'glm']]], + ['diagonal2x3_2645',['diagonal2x3',['../a00958.html#gab69f900206a430e2875a5a073851e175',1,'glm']]], + ['diagonal2x4_2646',['diagonal2x4',['../a00958.html#ga30b4dbfed60a919d66acc8a63bcdc549',1,'glm']]], + ['diagonal3x2_2647',['diagonal3x2',['../a00958.html#ga832c805d5130d28ad76236958d15b47d',1,'glm']]], + ['diagonal3x3_2648',['diagonal3x3',['../a00958.html#ga5487ff9cdbc8e04d594adef1bcb16ee0',1,'glm']]], + ['diagonal3x4_2649',['diagonal3x4',['../a00958.html#gad7551139cff0c4208d27f0ad3437833e',1,'glm']]], + ['diagonal4x2_2650',['diagonal4x2',['../a00958.html#gacb8969e6543ba775c6638161a37ac330',1,'glm']]], + ['diagonal4x3_2651',['diagonal4x3',['../a00958.html#gae235def5049d6740f0028433f5e13f90',1,'glm']]], + ['diagonal4x4_2652',['diagonal4x4',['../a00958.html#ga0b4cd8dea436791b072356231ee8578f',1,'glm']]], + ['diskrand_2653',['diskRand',['../a00918.html#gaa0b18071f3f97dbf8bcf6f53c6fe5f73',1,'glm']]], + ['distance_2654',['distance',['../a00897.html#gaa68de6c53e20dfb2dac2d20197562e3f',1,'glm']]], + ['distance2_2655',['distance2',['../a00962.html#ga85660f1b79f66c09c7b5a6f80e68c89f',1,'glm']]], + ['dot_2656',['dot',['../a00862.html#gadaab7b4495755b4102838d7834cd9544',1,'glm::dot(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00897.html#gaec50c25dd3b13834af0bf6fd2ce3931c',1,'glm::dot(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['dual_5fquat_5fidentity_2657',['dual_quat_identity',['../a00935.html#ga0b35c0e30df8a875dbaa751e0bd800e0',1,'glm']]], + ['dualquat_5fcast_2658',['dualquat_cast',['../a00935.html#gac4064ff813759740201765350eac4236',1,'glm::dualquat_cast(mat< 2, 4, T, Q > const &x)'],['../a00935.html#ga91025ebdca0f4ea54da08497b00e8c84',1,'glm::dualquat_cast(mat< 3, 4, T, Q > const &x)']]] +]; diff --git a/include/glm/doc/api/search/functions_4.html b/include/glm/doc/api/search/functions_4.html new file mode 100644 index 0000000..d049621 --- /dev/null +++ b/include/glm/doc/api/search/functions_4.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_4.js b/include/glm/doc/api/search/functions_4.js new file mode 100644 index 0000000..3d6a175 --- /dev/null +++ b/include/glm/doc/api/search/functions_4.js @@ -0,0 +1,55 @@ +var searchData= +[ + ['e_2659',['e',['../a00908.html#ga4b7956eb6e2fbedfc7cf2e46e85c5139',1,'glm']]], + ['elasticeasein_2660',['elasticEaseIn',['../a00936.html#ga230918eccee4e113d10ec5b8cdc58695',1,'glm']]], + ['elasticeaseinout_2661',['elasticEaseInOut',['../a00936.html#ga2db4ac8959559b11b4029e54812908d6',1,'glm']]], + ['elasticeaseout_2662',['elasticEaseOut',['../a00936.html#gace9c9d1bdf88bf2ab1e7cdefa54c7365',1,'glm']]], + ['epsilon_2663',['epsilon',['../a00867.html#ga2a1e57fc5592b69cfae84174cbfc9429',1,'glm']]], + ['epsilonequal_2664',['epsilonEqual',['../a00909.html#ga91b417866cafadd076004778217a1844',1,'glm::epsilonEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)'],['../a00909.html#gaa7f227999ca09e7ca994e8b35aba47bb',1,'glm::epsilonEqual(genType const &x, genType const &y, genType const &epsilon)']]], + ['epsilonnotequal_2665',['epsilonNotEqual',['../a00909.html#gaf840d33b9a5261ec78dcd5125743b025',1,'glm::epsilonNotEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, T const &epsilon)'],['../a00909.html#ga50a92103fb0cbd796908e1bf20c79aaf',1,'glm::epsilonNotEqual(genType const &x, genType const &y, genType const &epsilon)']]], + ['equal_2666',['equal',['../a00836.html#ga27e90dcb7941c9b70e295dc3f6f6369f',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)'],['../a00836.html#gaf5d687d70d11708b68c36c6db5777040',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon)'],['../a00836.html#gafa6a053e81179fa4292b35651c83c3fb',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon)'],['../a00836.html#gab3a93f19e72e9141f50527c9de21d0c0',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs)'],['../a00836.html#ga5305af376173f1902719fa309bbae671',1,'glm::equal(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)'],['../a00863.html#gad7827af0549504ff1cd6a359786acc7a',1,'glm::equal(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00863.html#gaa001eecb91106463169a8e5ef1577b39',1,'glm::equal(qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)'],['../a00872.html#ga90ebafeace352ccc14055418ebd220be',1,'glm::equal(genType const &x, genType const &y, genType const &epsilon)'],['../a00872.html#ga865b9a427c42df73b8af9cd3f7f25394',1,'glm::equal(genType const &x, genType const &y, int ULPs)'],['../a00890.html#ga2ac7651a2fa7354f2da610dbd50d28e2',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon)'],['../a00890.html#ga37d261a65f69babc82cec2ae1af7145f',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon)'],['../a00890.html#ga2b46cb50911e97b32f4cd743c2c69771',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs)'],['../a00890.html#ga7da2b8605be7f245b39cb6fbf6d9d581',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)'],['../a00996.html#gab4c5cfdaa70834421397a85aa83ad946',1,'glm::equal(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['euclidean_2667',['euclidean',['../a00970.html#ga1821d5b3324201e60a9e2823d0b5d0c8',1,'glm']]], + ['euler_2668',['euler',['../a00908.html#gad8fe2e6f90bce9d829e9723b649fbd42',1,'glm']]], + ['eulerangles_2669',['eulerAngles',['../a00917.html#gaf4dd967dead22dd932fc7460ceecb03f',1,'glm']]], + ['euleranglex_2670',['eulerAngleX',['../a00937.html#gafba6282e4ed3ff8b5c75331abfba3489',1,'glm']]], + ['euleranglexy_2671',['eulerAngleXY',['../a00937.html#ga64036577ee17a2d24be0dbc05881d4e2',1,'glm']]], + ['euleranglexyx_2672',['eulerAngleXYX',['../a00937.html#ga29bd0787a28a6648159c0d6e69706066',1,'glm']]], + ['euleranglexyz_2673',['eulerAngleXYZ',['../a00937.html#ga1975e0f0e9bed7f716dc9946da2ab645',1,'glm']]], + ['euleranglexz_2674',['eulerAngleXZ',['../a00937.html#gaa39bd323c65c2fc0a1508be33a237ce9',1,'glm']]], + ['euleranglexzx_2675',['eulerAngleXZX',['../a00937.html#ga60171c79a17aec85d7891ae1d1533ec9',1,'glm']]], + ['euleranglexzy_2676',['eulerAngleXZY',['../a00937.html#ga996dce12a60d8a674ba6737a535fa910',1,'glm']]], + ['eulerangley_2677',['eulerAngleY',['../a00937.html#gab84bf4746805fd69b8ecbb230e3974c5',1,'glm']]], + ['eulerangleyx_2678',['eulerAngleYX',['../a00937.html#ga4f57e6dd25c3cffbbd4daa6ef3f4486d',1,'glm']]], + ['eulerangleyxy_2679',['eulerAngleYXY',['../a00937.html#ga750fba9894117f87bcc529d7349d11de',1,'glm']]], + ['eulerangleyxz_2680',['eulerAngleYXZ',['../a00937.html#gab8ba99a9814f6d9edf417b6c6d5b0c10',1,'glm']]], + ['eulerangleyz_2681',['eulerAngleYZ',['../a00937.html#ga220379e10ac8cca55e275f0c9018fed9',1,'glm']]], + ['eulerangleyzx_2682',['eulerAngleYZX',['../a00937.html#ga08bef16357b8f9b3051b3dcaec4b7848',1,'glm']]], + ['eulerangleyzy_2683',['eulerAngleYZY',['../a00937.html#ga5e5e40abc27630749b42b3327c76d6e4',1,'glm']]], + ['euleranglez_2684',['eulerAngleZ',['../a00937.html#ga5b3935248bb6c3ec6b0d9297d406e251',1,'glm']]], + ['euleranglezx_2685',['eulerAngleZX',['../a00937.html#ga483903115cd4059228961046a28d69b5',1,'glm']]], + ['euleranglezxy_2686',['eulerAngleZXY',['../a00937.html#gab4505c54d2dd654df4569fd1f04c43aa',1,'glm']]], + ['euleranglezxz_2687',['eulerAngleZXZ',['../a00937.html#ga178f966c52b01e4d65e31ebd007e3247',1,'glm']]], + ['euleranglezy_2688',['eulerAngleZY',['../a00937.html#ga400b2bd5984999efab663f3a68e1d020',1,'glm']]], + ['euleranglezyx_2689',['eulerAngleZYX',['../a00937.html#ga2e61f1e39069c47530acab9167852dd6',1,'glm']]], + ['euleranglezyz_2690',['eulerAngleZYZ',['../a00937.html#gacd795f1dbecaf74974f9c76bbcca6830',1,'glm']]], + ['exp_2691',['exp',['../a00813.html#ga071566cadc7505455e611f2a0353f4d4',1,'glm::exp(vec< L, T, Q > const &v)'],['../a00864.html#gaab2d37ef7265819f1d2939b9dc2c52ac',1,'glm::exp(qua< T, Q > const &q)']]], + ['exp2_2692',['exp2',['../a00813.html#gaff17ace6b579a03bf223ed4d1ed2cd16',1,'glm']]], + ['exponentialeasein_2693',['exponentialEaseIn',['../a00936.html#ga7f24ee9219ab4c84dc8de24be84c1e3c',1,'glm']]], + ['exponentialeaseinout_2694',['exponentialEaseInOut',['../a00936.html#ga232fb6dc093c5ce94bee105ff2947501',1,'glm']]], + ['exponentialeaseout_2695',['exponentialEaseOut',['../a00936.html#ga517f2bcfd15bc2c25c466ae50808efc3',1,'glm']]], + ['extend_2696',['extend',['../a00938.html#ga8140caae613b0f847ab0d7175dc03a37',1,'glm']]], + ['extracteuleranglexyx_2697',['extractEulerAngleXYX',['../a00937.html#gadec3152f46d46dcd32974f0a2c0a7735',1,'glm']]], + ['extracteuleranglexyz_2698',['extractEulerAngleXYZ',['../a00937.html#ga866e1524edc5daaeee54cc9e11ec892e',1,'glm']]], + ['extracteuleranglexzx_2699',['extractEulerAngleXZX',['../a00937.html#gaf58030785bc2cde1dcd95a04d50d64ff',1,'glm']]], + ['extracteuleranglexzy_2700',['extractEulerAngleXZY',['../a00937.html#gaffe92a3c19724f523678cb67144fd569',1,'glm']]], + ['extracteulerangleyxy_2701',['extractEulerAngleYXY',['../a00937.html#gae14dd2c752ed179325171f45f464c6d7',1,'glm']]], + ['extracteulerangleyxz_2702',['extractEulerAngleYXZ',['../a00937.html#ga8dd77fb7274dd8916a98749b8ccb033a',1,'glm']]], + ['extracteulerangleyzx_2703',['extractEulerAngleYZX',['../a00937.html#gadb39c3a164364100eff69e7db2a3269d',1,'glm']]], + ['extracteulerangleyzy_2704',['extractEulerAngleYZY',['../a00937.html#gabe88a80471a85be2561430194009393a',1,'glm']]], + ['extracteuleranglezxy_2705',['extractEulerAngleZXY',['../a00937.html#ga5ed7760c1140ff8ff8f8c444b8bb0612',1,'glm']]], + ['extracteuleranglezxz_2706',['extractEulerAngleZXZ',['../a00937.html#ga698604d09198fa41207abc7f1a6ae6c1',1,'glm']]], + ['extracteuleranglezyx_2707',['extractEulerAngleZYX',['../a00937.html#ga25c33ad5744c43d9601dc1c44a4b2696',1,'glm']]], + ['extracteuleranglezyz_2708',['extractEulerAngleZYZ',['../a00937.html#ga6009526e30e85db3a40a2bb63b6c9442',1,'glm']]], + ['extractmatrixrotation_2709',['extractMatrixRotation',['../a00956.html#gabbc1c7385a145f04b5c54228965df145',1,'glm']]], + ['extractrealcomponent_2710',['extractRealComponent',['../a00972.html#ga321953c1b2e7befe6f5dcfddbfc6b76b',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_5.html b/include/glm/doc/api/search/functions_5.html new file mode 100644 index 0000000..342487b --- /dev/null +++ b/include/glm/doc/api/search/functions_5.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_5.js b/include/glm/doc/api/search/functions_5.js new file mode 100644 index 0000000..4fb7d2e --- /dev/null +++ b/include/glm/doc/api/search/functions_5.js @@ -0,0 +1,56 @@ +var searchData= +[ + ['faceforward_2711',['faceforward',['../a00897.html#ga7aed0a36c738169402404a3a5d54e43b',1,'glm']]], + ['factorial_2712',['factorial',['../a00948.html#ga8cbd3120905f398ec321b5d1836e08fb',1,'glm']]], + ['fastacos_2713',['fastAcos',['../a00943.html#ga9721d63356e5d94fdc4b393a426ab26b',1,'glm']]], + ['fastasin_2714',['fastAsin',['../a00943.html#ga562cb62c51fbfe7fac7db0bce706b81f',1,'glm']]], + ['fastatan_2715',['fastAtan',['../a00943.html#ga8d197c6ef564f5e5d59af3b3f8adcc2c',1,'glm::fastAtan(T y, T x)'],['../a00943.html#gae25de86a968490ff56856fa425ec9d30',1,'glm::fastAtan(T angle)']]], + ['fastcos_2716',['fastCos',['../a00943.html#gab34c8b45c23c0165a64dcecfcc3b302a',1,'glm']]], + ['fastdistance_2717',['fastDistance',['../a00942.html#gaac333418d0c4e0cc6d3d219ed606c238',1,'glm::fastDistance(genType x, genType y)'],['../a00942.html#ga42d3e771fa7cb3c60d828e315829df19',1,'glm::fastDistance(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['fastexp_2718',['fastExp',['../a00941.html#gaa3180ac8f96ab37ab96e0cacaf608e10',1,'glm::fastExp(T x)'],['../a00941.html#ga3ba6153aec6bd74628f8b00530aa8d58',1,'glm::fastExp(vec< L, T, Q > const &x)']]], + ['fastexp2_2719',['fastExp2',['../a00941.html#ga0af50585955eb14c60bb286297fabab2',1,'glm::fastExp2(T x)'],['../a00941.html#gacaaed8b67d20d244b7de217e7816c1b6',1,'glm::fastExp2(vec< L, T, Q > const &x)']]], + ['fastinversesqrt_2720',['fastInverseSqrt',['../a00942.html#ga7f081b14d9c7035c8714eba5f7f75a8f',1,'glm::fastInverseSqrt(genType x)'],['../a00942.html#gadcd7be12b1e5ee182141359d4c45dd24',1,'glm::fastInverseSqrt(vec< L, T, Q > const &x)']]], + ['fastlength_2721',['fastLength',['../a00942.html#gafe697d6287719538346bbdf8b1367c59',1,'glm::fastLength(genType x)'],['../a00942.html#ga90f66be92ef61e705c005e7b3209edb8',1,'glm::fastLength(vec< L, T, Q > const &x)']]], + ['fastlog_2722',['fastLog',['../a00941.html#gae1bdc97b7f96a600e29c753f1cd4388a',1,'glm::fastLog(T x)'],['../a00941.html#ga937256993a7219e73f186bb348fe6be8',1,'glm::fastLog(vec< L, T, Q > const &x)']]], + ['fastlog2_2723',['fastLog2',['../a00941.html#ga6e98118685f6dc9e05fbb13dd5e5234e',1,'glm::fastLog2(T x)'],['../a00941.html#ga7562043539194ccc24649f8475bc5584',1,'glm::fastLog2(vec< L, T, Q > const &x)']]], + ['fastmix_2724',['fastMix',['../a00972.html#ga264e10708d58dd0ff53b7902a2bd2561',1,'glm']]], + ['fastnormalize_2725',['fastNormalize',['../a00942.html#gac0991240651a3f75792ff5de2e526b8c',1,'glm::fastNormalize(genType x)'],['../a00942.html#gaab477221230a6e12a3b9e22e750c8928',1,'glm::fastNormalize(vec< L, T, Q > const &x)']]], + ['fastnormalizedot_2726',['fastNormalizeDot',['../a00964.html#ga2746fb9b5bd22b06b2f7c8babba5de9e',1,'glm']]], + ['fastpow_2727',['fastPow',['../a00941.html#ga5340e98a11fcbbd936ba6e983a154d50',1,'glm::fastPow(genType x, genType y)'],['../a00941.html#ga15325a8ed2d1c4ed2412c4b3b3927aa2',1,'glm::fastPow(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00941.html#ga7f2562db9c3e02ae76169c36b086c3f6',1,'glm::fastPow(genTypeT x, genTypeU y)'],['../a00941.html#ga1abe488c0829da5b9de70ac64aeaa7e5',1,'glm::fastPow(vec< L, T, Q > const &x)']]], + ['fastsin_2728',['fastSin',['../a00943.html#ga0aab3257bb3b628d10a1e0483e2c6915',1,'glm']]], + ['fastsqrt_2729',['fastSqrt',['../a00942.html#ga6c460e9414a50b2fc455c8f64c86cdc9',1,'glm::fastSqrt(genType x)'],['../a00942.html#gae83f0c03614f73eae5478c5b6274ee6d',1,'glm::fastSqrt(vec< L, T, Q > const &x)']]], + ['fasttan_2730',['fastTan',['../a00943.html#gaf29b9c1101a10007b4f79ee89df27ba2',1,'glm']]], + ['fclamp_2731',['fclamp',['../a00866.html#ga1e28539d3a46965ed9ef92ec7cb3b18a',1,'glm::fclamp(genType x, genType minVal, genType maxVal)'],['../a00877.html#ga60796d08903489ee185373593bc16b9d',1,'glm::fclamp(vec< L, T, Q > const &x, T minVal, T maxVal)'],['../a00877.html#ga5c15fa4709763c269c86c0b8b3aa2297',1,'glm::fclamp(vec< L, T, Q > const &x, vec< L, T, Q > const &minVal, vec< L, T, Q > const &maxVal)']]], + ['fcompmax_2732',['fcompMax',['../a00934.html#gade3e58b5fb9ef711494b73bb9e77d263',1,'glm']]], + ['fcompmin_2733',['fcompMin',['../a00934.html#gafb56d801a323e921076727df524de330',1,'glm']]], + ['findeigenvaluessymreal_2734',['findEigenvaluesSymReal',['../a00968.html#ga0586007af1073c8b0f629bca0ee7c46c',1,'glm']]], + ['findlsb_2735',['findLSB',['../a00992.html#gaf74c4d969fa34ab8acb9d390f5ca5274',1,'glm::findLSB(genIUType x)'],['../a00992.html#ga4454c0331d6369888c28ab677f4810c7',1,'glm::findLSB(vec< L, T, Q > const &v)']]], + ['findmsb_2736',['findMSB',['../a00992.html#ga7e4a794d766861c70bc961630f8ef621',1,'glm::findMSB(genIUType x)'],['../a00992.html#ga39ac4d52028bb6ab08db5ad6562c2872',1,'glm::findMSB(vec< L, T, Q > const &v)']]], + ['findnsb_2737',['findNSB',['../a00869.html#ga2777901e41ad6e1e9d0ad6cc855d1075',1,'glm::findNSB(genIUType x, int significantBitCount)'],['../a00887.html#gaff61eca266da315002a3db92ff0dd604',1,'glm::findNSB(vec< L, T, Q > const &Source, vec< L, int, Q > SignificantBitCount)']]], + ['fliplr_2738',['fliplr',['../a00955.html#gaf39f4e5f78eb29c1a90277d45b9b3feb',1,'glm']]], + ['flipud_2739',['flipud',['../a00955.html#ga85003371f0ba97380dd25e8905de1870',1,'glm']]], + ['float_5fdistance_2740',['float_distance',['../a00924.html#ga2358fa840554fa36531aee28f3e14d6b',1,'glm::float_distance(float x, float y)'],['../a00924.html#ga464d5c96158df04d96a11d97b00c51a7',1,'glm::float_distance(double x, double y)'],['../a00924.html#ga15349749edb8373079f4dcd518cc3d02',1,'glm::float_distance(vec< L, float, Q > const &x, vec< L, float, Q > const &y)'],['../a00924.html#gac0726cf2e5ce7d03b0ac4c81438c07fb',1,'glm::float_distance(vec< L, double, Q > const &x, vec< L, double, Q > const &y)']]], + ['floatbitstoint_2741',['floatBitsToInt',['../a00812.html#ga8a23e454d8ae48b8f6dfdaea4b756072',1,'glm::floatBitsToInt(float v)'],['../a00812.html#ga99f7d62f78ac5ea3b49bae715c9488ed',1,'glm::floatBitsToInt(vec< L, float, Q > const &v)']]], + ['floatbitstouint_2742',['floatBitsToUint',['../a00812.html#ga1bbdafd513ece71856e66a8ab0ea10d1',1,'glm::floatBitsToUint(float v)'],['../a00812.html#ga49418ba4c8a60fbbb5d57b705f3e26db',1,'glm::floatBitsToUint(vec< L, float, Q > const &v)']]], + ['floatdistance_2743',['floatDistance',['../a00874.html#gae609a2729cacccbabe966221d61e0dc4',1,'glm::floatDistance(float x, float y)'],['../a00874.html#ga4b76118ff56adfbc41a5925908b48606',1,'glm::floatDistance(double x, double y)'],['../a00896.html#ga03f464c6a03a725ea18e72cf1ed31417',1,'glm::floatDistance(vec< L, float, Q > const &x, vec< L, float, Q > const &y)'],['../a00896.html#gabe2040cbbe66a60cafb37f6155f78e4c',1,'glm::floatDistance(vec< L, double, Q > const &x, vec< L, double, Q > const &y)']]], + ['floor_2744',['floor',['../a00812.html#gaa9d0742639e85b29c7c5de11cfd6840d',1,'glm']]], + ['floor_5flog2_2745',['floor_log2',['../a00948.html#ga7011b4e1c1e1ed492149b028feacc00e',1,'glm']]], + ['floormultiple_2746',['floorMultiple',['../a00920.html#ga2ffa3cd5f2ea746ee1bf57c46da6315e',1,'glm::floorMultiple(genType v, genType Multiple)'],['../a00920.html#gacdd8901448f51f0b192380e422fae3e4',1,'glm::floorMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['floorpoweroftwo_2747',['floorPowerOfTwo',['../a00920.html#gafe273a57935d04c9db677bf67f9a71f4',1,'glm::floorPowerOfTwo(genIUType v)'],['../a00920.html#gaf0d591a8fca8ddb9289cdeb44b989c2d',1,'glm::floorPowerOfTwo(vec< L, T, Q > const &v)']]], + ['fma_2748',['fma',['../a00812.html#gad0f444d4b81cc53c3b6edf5aa25078c2',1,'glm']]], + ['fmax_2749',['fmax',['../a00866.html#ga9181453c527b05bddd32b1b09b8c80e6',1,'glm::fmax(T a, T b)'],['../a00866.html#ga65c5b6a8d1f1607fbcbf3a8ef2f93e3c',1,'glm::fmax(T a, T b, T C)'],['../a00866.html#gaed34015c7033417014cc9198a763c3e7',1,'glm::fmax(T a, T b, T C, T D)'],['../a00877.html#gad66b6441f7200db16c9f341711733c56',1,'glm::fmax(vec< L, T, Q > const &a, T b)'],['../a00877.html#ga8df4be3f48d6717c40ea788fd30deebf',1,'glm::fmax(vec< L, T, Q > const &a, vec< L, T, Q > const &b)'],['../a00877.html#ga0f04ba924294dae4234ca93ede23229a',1,'glm::fmax(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)'],['../a00877.html#ga4ed3eb250ccbe17bfe8ded8a6b72d230',1,'glm::fmax(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)']]], + ['fmin_2750',['fmin',['../a00866.html#ga2ca01149554244bc668afb3f2f95a1a1',1,'glm::fmin(T a, T b)'],['../a00866.html#ga2caf4c39dd5ebc2bbc577b03bebe4aa0',1,'glm::fmin(T a, T b, T c)'],['../a00866.html#ga2bbac70c680668b0b1019dcf8e6c03b6',1,'glm::fmin(T a, T b, T c, T d)'],['../a00877.html#gae989203363cff9eab5093630df4fe071',1,'glm::fmin(vec< L, T, Q > const &x, T y)'],['../a00877.html#ga7c42e93cd778c9181d1cdeea4d3e43bd',1,'glm::fmin(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00877.html#ga7e62739055b49189d9355471f78fe000',1,'glm::fmin(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)'],['../a00877.html#ga4a543dd7d22ad1f3b8b839f808a9d93c',1,'glm::fmin(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)']]], + ['fmod_2751',['fmod',['../a00932.html#gae5e80425df9833164ad469e83b475fb4',1,'glm']]], + ['four_5fover_5fpi_2752',['four_over_pi',['../a00908.html#ga753950e5140e4ea6a88e4a18ba61dc09',1,'glm']]], + ['fract_2753',['fract',['../a00812.html#ga8ba89e40e55ae5cdf228548f9b7639c7',1,'glm::fract(genType x)'],['../a00812.html#ga2df623004f634b440d61e018d62c751b',1,'glm::fract(vec< L, T, Q > const &x)']]], + ['frexp_2754',['frexp',['../a00812.html#gaddf5ef73283c171730e0bcc11833fa81',1,'glm']]], + ['frustum_2755',['frustum',['../a00814.html#ga0bcd4542e0affc63a0b8c08fcb839ea9',1,'glm']]], + ['frustumlh_2756',['frustumLH',['../a00814.html#gae4277c37f61d81da01bc9db14ea90296',1,'glm']]], + ['frustumlh_5fno_2757',['frustumLH_NO',['../a00814.html#ga259520cad03b3f8bca9417920035ed01',1,'glm']]], + ['frustumlh_5fzo_2758',['frustumLH_ZO',['../a00814.html#ga94218b094862d17798370242680b9030',1,'glm']]], + ['frustumno_2759',['frustumNO',['../a00814.html#gae34ec664ad44860bf4b5ba631f0e0e90',1,'glm']]], + ['frustumrh_2760',['frustumRH',['../a00814.html#ga4366ab45880c6c5f8b3e8c371ca4b136',1,'glm']]], + ['frustumrh_5fno_2761',['frustumRH_NO',['../a00814.html#ga9236c8439f21be186b79c97b588836b9',1,'glm']]], + ['frustumrh_5fzo_2762',['frustumRH_ZO',['../a00814.html#ga7654a9227f14d5382786b9fc0eb5692d',1,'glm']]], + ['frustumzo_2763',['frustumZO',['../a00814.html#gaa73322e152edf50cf30a6edac342a757',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_6.html b/include/glm/doc/api/search/functions_6.html new file mode 100644 index 0000000..4bf3bd6 --- /dev/null +++ b/include/glm/doc/api/search/functions_6.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_6.js b/include/glm/doc/api/search/functions_6.js new file mode 100644 index 0000000..74bdfe9 --- /dev/null +++ b/include/glm/doc/api/search/functions_6.js @@ -0,0 +1,9 @@ +var searchData= +[ + ['gauss_2764',['gauss',['../a00944.html#ga0b50b197ff74261a0fad90f4b8d24702',1,'glm::gauss(T x, T ExpectedValue, T StandardDeviation)'],['../a00944.html#gad19ec8754a83c0b9a8dc16b7e60705ab',1,'glm::gauss(vec< 2, T, Q > const &Coord, vec< 2, T, Q > const &ExpectedValue, vec< 2, T, Q > const &StandardDeviation)']]], + ['gaussrand_2765',['gaussRand',['../a00918.html#ga5193a83e49e4fdc5652c084711083574',1,'glm']]], + ['glm_5faligned_5ftypedef_2766',['GLM_ALIGNED_TYPEDEF',['../a00986.html#gab5cd5c5fad228b25c782084f1cc30114',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int8, aligned_lowp_int8, 1)'],['../a00986.html#ga5bb5dd895ef625c1b113f2cf400186b0',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int16, aligned_lowp_int16, 2)'],['../a00986.html#gac6efa54cf7c6c86f7158922abdb1a430',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int32, aligned_lowp_int32, 4)'],['../a00986.html#ga6612eb77c8607048e7552279a11eeb5f',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int64, aligned_lowp_int64, 8)'],['../a00986.html#ga7ddc1848ff2223026db8968ce0c97497',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int8_t, aligned_lowp_int8_t, 1)'],['../a00986.html#ga22240dd9458b0f8c11fbcc4f48714f68',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int16_t, aligned_lowp_int16_t, 2)'],['../a00986.html#ga8130ea381d76a2cc34a93ccbb6cf487d',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int32_t, aligned_lowp_int32_t, 4)'],['../a00986.html#ga7ccb60f3215d293fd62b33b31ed0e7be',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_int64_t, aligned_lowp_int64_t, 8)'],['../a00986.html#gac20d508d2ef5cc95ad3daf083c57ec2a',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_i8, aligned_lowp_i8, 1)'],['../a00986.html#ga50257b48069a31d0c8d9c1f644d267de',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_i16, aligned_lowp_i16, 2)'],['../a00986.html#gaa07e98e67b7a3435c0746018c7a2a839',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_i32, aligned_lowp_i32, 4)'],['../a00986.html#ga62601fc6f8ca298b77285bedf03faffd',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_i64, aligned_lowp_i64, 8)'],['../a00986.html#gac8cff825951aeb54dd846037113c72db',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int8, aligned_mediump_int8, 1)'],['../a00986.html#ga78f443d88f438575a62b5df497cdf66b',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int16, aligned_mediump_int16, 2)'],['../a00986.html#ga0680cd3b5d4e8006985fb41a4f9b57af',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int32, aligned_mediump_int32, 4)'],['../a00986.html#gad9e5babb1dd3e3531b42c37bf25dd951',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int64, aligned_mediump_int64, 8)'],['../a00986.html#ga353fd9fa8a9ad952fcabd0d53ad9a6dd',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int8_t, aligned_mediump_int8_t, 1)'],['../a00986.html#ga2196442c0e5c5e8c77842de388c42521',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int16_t, aligned_mediump_int16_t, 2)'],['../a00986.html#ga1284488189daf897cf095c5eefad9744',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int32_t, aligned_mediump_int32_t, 4)'],['../a00986.html#ga73fdc86a539808af58808b7c60a1c4d8',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_int64_t, aligned_mediump_int64_t, 8)'],['../a00986.html#gafafeea923e1983262c972e2b83922d3b',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_i8, aligned_mediump_i8, 1)'],['../a00986.html#ga4b35ca5fe8f55c9d2fe54fdb8d8896f4',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_i16, aligned_mediump_i16, 2)'],['../a00986.html#ga63b882e29170d428463d99c3d630acc6',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_i32, aligned_mediump_i32, 4)'],['../a00986.html#ga8b20507bb048c1edea2d441cc953e6f0',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_i64, aligned_mediump_i64, 8)'],['../a00986.html#ga56c5ca60813027b603c7b61425a0479d',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int8, aligned_highp_int8, 1)'],['../a00986.html#ga7a751b3aff24c0259f4a7357c2969089',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int16, aligned_highp_int16, 2)'],['../a00986.html#ga70cd2144351c556469ee6119e59971fc',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int32, aligned_highp_int32, 4)'],['../a00986.html#ga46bbf08dc004d8c433041e0b5018a5d3',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int64, aligned_highp_int64, 8)'],['../a00986.html#gab3e10c77a20d1abad2de1c561c7a5c18',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int8_t, aligned_highp_int8_t, 1)'],['../a00986.html#ga968f30319ebeaca9ebcd3a25a8e139fb',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int16_t, aligned_highp_int16_t, 2)'],['../a00986.html#gaae773c28e6390c6aa76f5b678b7098a3',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int32_t, aligned_highp_int32_t, 4)'],['../a00986.html#ga790cfff1ca39d0ed696ffed980809311',1,'glm::GLM_ALIGNED_TYPEDEF(highp_int64_t, aligned_highp_int64_t, 8)'],['../a00986.html#ga8265b91eb23c120a9b0c3e381bc37b96',1,'glm::GLM_ALIGNED_TYPEDEF(highp_i8, aligned_highp_i8, 1)'],['../a00986.html#gae6d384de17588d8edb894fbe06e0d410',1,'glm::GLM_ALIGNED_TYPEDEF(highp_i16, aligned_highp_i16, 2)'],['../a00986.html#ga9c8172b745ee03fc5b2b91c350c2922f',1,'glm::GLM_ALIGNED_TYPEDEF(highp_i32, aligned_highp_i32, 4)'],['../a00986.html#ga77e0dff12aa4020ddc3f8cabbea7b2e6',1,'glm::GLM_ALIGNED_TYPEDEF(highp_i64, aligned_highp_i64, 8)'],['../a00986.html#gabd82b9faa9d4d618dbbe0fc8a1efee63',1,'glm::GLM_ALIGNED_TYPEDEF(int8, aligned_int8, 1)'],['../a00986.html#ga285649744560be21000cfd81bbb5d507',1,'glm::GLM_ALIGNED_TYPEDEF(int16, aligned_int16, 2)'],['../a00986.html#ga07732da630b2deda428ce95c0ecaf3ff',1,'glm::GLM_ALIGNED_TYPEDEF(int32, aligned_int32, 4)'],['../a00986.html#ga1a8da2a8c51f69c07a2e7f473aa420f4',1,'glm::GLM_ALIGNED_TYPEDEF(int64, aligned_int64, 8)'],['../a00986.html#ga848aedf13e2d9738acf0bb482c590174',1,'glm::GLM_ALIGNED_TYPEDEF(int8_t, aligned_int8_t, 1)'],['../a00986.html#gafd2803d39049dd45a37a63931e25d943',1,'glm::GLM_ALIGNED_TYPEDEF(int16_t, aligned_int16_t, 2)'],['../a00986.html#gae553b33349d6da832cf0724f1e024094',1,'glm::GLM_ALIGNED_TYPEDEF(int32_t, aligned_int32_t, 4)'],['../a00986.html#ga16d223a2b3409e812e1d3bd87f0e9e5c',1,'glm::GLM_ALIGNED_TYPEDEF(int64_t, aligned_int64_t, 8)'],['../a00986.html#ga2de065d2ddfdb366bcd0febca79ae2ad',1,'glm::GLM_ALIGNED_TYPEDEF(i8, aligned_i8, 1)'],['../a00986.html#gabd786bdc20a11c8cb05c92c8212e28d3',1,'glm::GLM_ALIGNED_TYPEDEF(i16, aligned_i16, 2)'],['../a00986.html#gad4aefe56691cdb640c72f0d46d3fb532',1,'glm::GLM_ALIGNED_TYPEDEF(i32, aligned_i32, 4)'],['../a00986.html#ga8fe9745f7de24a8394518152ff9fccdc',1,'glm::GLM_ALIGNED_TYPEDEF(i64, aligned_i64, 8)'],['../a00986.html#gaaad735483450099f7f882d4e3a3569bd',1,'glm::GLM_ALIGNED_TYPEDEF(ivec1, aligned_ivec1, 4)'],['../a00986.html#gac7b6f823802edbd6edbaf70ea25bf068',1,'glm::GLM_ALIGNED_TYPEDEF(ivec2, aligned_ivec2, 8)'],['../a00986.html#ga3e235bcd2b8029613f25b8d40a2d3ef7',1,'glm::GLM_ALIGNED_TYPEDEF(ivec3, aligned_ivec3, 16)'],['../a00986.html#ga50d8a9523968c77f8325b4c9bfbff41e',1,'glm::GLM_ALIGNED_TYPEDEF(ivec4, aligned_ivec4, 16)'],['../a00986.html#ga9ec20fdfb729c702032da9378c79679f',1,'glm::GLM_ALIGNED_TYPEDEF(i8vec1, aligned_i8vec1, 1)'],['../a00986.html#ga25b3fe1d9e8d0a5e86c1949c1acd8131',1,'glm::GLM_ALIGNED_TYPEDEF(i8vec2, aligned_i8vec2, 2)'],['../a00986.html#ga2958f907719d94d8109b562540c910e2',1,'glm::GLM_ALIGNED_TYPEDEF(i8vec3, aligned_i8vec3, 4)'],['../a00986.html#ga1fe6fc032a978f1c845fac9aa0668714',1,'glm::GLM_ALIGNED_TYPEDEF(i8vec4, aligned_i8vec4, 4)'],['../a00986.html#gaa4161e7a496dc96972254143fe873e55',1,'glm::GLM_ALIGNED_TYPEDEF(i16vec1, aligned_i16vec1, 2)'],['../a00986.html#ga9d7cb211ccda69b1c22ddeeb0f3e7aba',1,'glm::GLM_ALIGNED_TYPEDEF(i16vec2, aligned_i16vec2, 4)'],['../a00986.html#gaaee91dd2ab34423bcc11072ef6bd0f02',1,'glm::GLM_ALIGNED_TYPEDEF(i16vec3, aligned_i16vec3, 8)'],['../a00986.html#ga49f047ccaa8b31fad9f26c67bf9b3510',1,'glm::GLM_ALIGNED_TYPEDEF(i16vec4, aligned_i16vec4, 8)'],['../a00986.html#ga904e9c2436bb099397c0823506a0771f',1,'glm::GLM_ALIGNED_TYPEDEF(i32vec1, aligned_i32vec1, 4)'],['../a00986.html#gaf90651cf2f5e7ee2b11cfdc5a6749534',1,'glm::GLM_ALIGNED_TYPEDEF(i32vec2, aligned_i32vec2, 8)'],['../a00986.html#ga7354a4ead8cb17868aec36b9c30d6010',1,'glm::GLM_ALIGNED_TYPEDEF(i32vec3, aligned_i32vec3, 16)'],['../a00986.html#gad2ecbdea18732163e2636e27b37981ee',1,'glm::GLM_ALIGNED_TYPEDEF(i32vec4, aligned_i32vec4, 16)'],['../a00986.html#ga965b1c9aa1800e93d4abc2eb2b5afcbf',1,'glm::GLM_ALIGNED_TYPEDEF(i64vec1, aligned_i64vec1, 8)'],['../a00986.html#ga1f9e9c2ea2768675dff9bae5cde2d829',1,'glm::GLM_ALIGNED_TYPEDEF(i64vec2, aligned_i64vec2, 16)'],['../a00986.html#gad77c317b7d942322cd5be4c8127b3187',1,'glm::GLM_ALIGNED_TYPEDEF(i64vec3, aligned_i64vec3, 32)'],['../a00986.html#ga716f8ea809bdb11b5b542d8b71aeb04f',1,'glm::GLM_ALIGNED_TYPEDEF(i64vec4, aligned_i64vec4, 32)'],['../a00986.html#gad46f8e9082d5878b1bc04f9c1471cdaa',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint8, aligned_lowp_uint8, 1)'],['../a00986.html#ga1246094581af624aca6c7499aaabf801',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint16, aligned_lowp_uint16, 2)'],['../a00986.html#ga7a5009a1d0196bbf21dd7518f61f0249',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint32, aligned_lowp_uint32, 4)'],['../a00986.html#ga45213fd18b3bb1df391671afefe4d1e7',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint64, aligned_lowp_uint64, 8)'],['../a00986.html#ga0ba26b4e3fd9ecbc25358efd68d8a4ca',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint8_t, aligned_lowp_uint8_t, 1)'],['../a00986.html#gaf2b58f5fb6d4ec8ce7b76221d3af43e1',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint16_t, aligned_lowp_uint16_t, 2)'],['../a00986.html#gadc246401847dcba155f0699425e49dcd',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint32_t, aligned_lowp_uint32_t, 4)'],['../a00986.html#gaace64bddf51a9def01498da9a94fb01c',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_uint64_t, aligned_lowp_uint64_t, 8)'],['../a00986.html#gad7bb97c29d664bd86ffb1bed4abc5534',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_u8, aligned_lowp_u8, 1)'],['../a00986.html#ga404bba7785130e0b1384d695a9450b28',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_u16, aligned_lowp_u16, 2)'],['../a00986.html#ga31ba41fd896257536958ec6080203d2a',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_u32, aligned_lowp_u32, 4)'],['../a00986.html#gacca5f13627f57b3505676e40a6e43e5e',1,'glm::GLM_ALIGNED_TYPEDEF(lowp_u64, aligned_lowp_u64, 8)'],['../a00986.html#ga5faf1d3e70bf33174dd7f3d01d5b883b',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint8, aligned_mediump_uint8, 1)'],['../a00986.html#ga727e2bf2c433bb3b0182605860a48363',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint16, aligned_mediump_uint16, 2)'],['../a00986.html#ga12566ca66d5962dadb4a5eb4c74e891e',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint32, aligned_mediump_uint32, 4)'],['../a00986.html#ga7b66a97a8acaa35c5a377b947318c6bc',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint64, aligned_mediump_uint64, 8)'],['../a00986.html#gaa9cde002439b74fa66120a16a9f55fcc',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint8_t, aligned_mediump_uint8_t, 1)'],['../a00986.html#ga1ca98c67f7d1e975f7c5202f1da1df1f',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint16_t, aligned_mediump_uint16_t, 2)'],['../a00986.html#ga1dc8bc6199d785f235576948d80a597c',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint32_t, aligned_mediump_uint32_t, 4)'],['../a00986.html#gad14a0f2ec93519682b73d70b8e401d81',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_uint64_t, aligned_mediump_uint64_t, 8)'],['../a00986.html#gada8b996eb6526dc1ead813bd49539d1b',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_u8, aligned_mediump_u8, 1)'],['../a00986.html#ga28948f6bfb52b42deb9d73ae1ea8d8b0',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_u16, aligned_mediump_u16, 2)'],['../a00986.html#gad6a7c0b5630f89d3f1c5b4ef2919bb4c',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_u32, aligned_mediump_u32, 4)'],['../a00986.html#gaa0fc531cbaa972ac3a0b86d21ef4a7fa',1,'glm::GLM_ALIGNED_TYPEDEF(mediump_u64, aligned_mediump_u64, 8)'],['../a00986.html#ga0ee829f7b754b262bbfe6317c0d678ac',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint8, aligned_highp_uint8, 1)'],['../a00986.html#ga447848a817a626cae08cedc9778b331c',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint16, aligned_highp_uint16, 2)'],['../a00986.html#ga6027ae13b2734f542a6e7beee11b8820',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint32, aligned_highp_uint32, 4)'],['../a00986.html#ga2aca46c8608c95ef991ee4c332acde5f',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint64, aligned_highp_uint64, 8)'],['../a00986.html#gaff50b10dd1c48be324fdaffd18e2c7ea',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint8_t, aligned_highp_uint8_t, 1)'],['../a00986.html#ga9fc4421dbb833d5461e6d4e59dcfde55',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint16_t, aligned_highp_uint16_t, 2)'],['../a00986.html#ga329f1e2b94b33ba5e3918197030bcf03',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint32_t, aligned_highp_uint32_t, 4)'],['../a00986.html#ga71e646f7e301aa422328194162c9c998',1,'glm::GLM_ALIGNED_TYPEDEF(highp_uint64_t, aligned_highp_uint64_t, 8)'],['../a00986.html#ga8942e09f479489441a7a5004c6d8cb66',1,'glm::GLM_ALIGNED_TYPEDEF(highp_u8, aligned_highp_u8, 1)'],['../a00986.html#gaab32497d6e4db16ee439dbedd64c5865',1,'glm::GLM_ALIGNED_TYPEDEF(highp_u16, aligned_highp_u16, 2)'],['../a00986.html#gaaadbb34952eca8e3d7fe122c3e167742',1,'glm::GLM_ALIGNED_TYPEDEF(highp_u32, aligned_highp_u32, 4)'],['../a00986.html#ga92024d27c74a3650afb55ec8e024ed25',1,'glm::GLM_ALIGNED_TYPEDEF(highp_u64, aligned_highp_u64, 8)'],['../a00986.html#gabde1d0b4072df35453db76075ab896a6',1,'glm::GLM_ALIGNED_TYPEDEF(uint8, aligned_uint8, 1)'],['../a00986.html#ga06c296c9e398b294c8c9dd2a7693dcbb',1,'glm::GLM_ALIGNED_TYPEDEF(uint16, aligned_uint16, 2)'],['../a00986.html#gacf1744488c96ebd33c9f36ad33b2010a',1,'glm::GLM_ALIGNED_TYPEDEF(uint32, aligned_uint32, 4)'],['../a00986.html#ga3328061a64c20ba59d5f9da24c2cd059',1,'glm::GLM_ALIGNED_TYPEDEF(uint64, aligned_uint64, 8)'],['../a00986.html#gaf6ced36f13bae57f377bafa6f5fcc299',1,'glm::GLM_ALIGNED_TYPEDEF(uint8_t, aligned_uint8_t, 1)'],['../a00986.html#gafbc7fb7847bfc78a339d1d371c915c73',1,'glm::GLM_ALIGNED_TYPEDEF(uint16_t, aligned_uint16_t, 2)'],['../a00986.html#gaa86bc56a73fd8120b1121b5f5e6245ae',1,'glm::GLM_ALIGNED_TYPEDEF(uint32_t, aligned_uint32_t, 4)'],['../a00986.html#ga68c0b9e669060d0eb5ab8c3ddeb483d8',1,'glm::GLM_ALIGNED_TYPEDEF(uint64_t, aligned_uint64_t, 8)'],['../a00986.html#ga4f3bab577daf3343e99cc005134bce86',1,'glm::GLM_ALIGNED_TYPEDEF(u8, aligned_u8, 1)'],['../a00986.html#ga13a2391339d0790d43b76d00a7611c4f',1,'glm::GLM_ALIGNED_TYPEDEF(u16, aligned_u16, 2)'],['../a00986.html#ga197570e03acbc3d18ab698e342971e8f',1,'glm::GLM_ALIGNED_TYPEDEF(u32, aligned_u32, 4)'],['../a00986.html#ga0f033b21e145a1faa32c62ede5878993',1,'glm::GLM_ALIGNED_TYPEDEF(u64, aligned_u64, 8)'],['../a00986.html#ga509af83527f5cd512e9a7873590663aa',1,'glm::GLM_ALIGNED_TYPEDEF(uvec1, aligned_uvec1, 4)'],['../a00986.html#ga94e86186978c502c6dc0c0d9c4a30679',1,'glm::GLM_ALIGNED_TYPEDEF(uvec2, aligned_uvec2, 8)'],['../a00986.html#ga5cec574686a7f3c8ed24bb195c5e2d0a',1,'glm::GLM_ALIGNED_TYPEDEF(uvec3, aligned_uvec3, 16)'],['../a00986.html#ga47edfdcee9c89b1ebdaf20450323b1d4',1,'glm::GLM_ALIGNED_TYPEDEF(uvec4, aligned_uvec4, 16)'],['../a00986.html#ga5611d6718e3a00096918a64192e73a45',1,'glm::GLM_ALIGNED_TYPEDEF(u8vec1, aligned_u8vec1, 1)'],['../a00986.html#ga19837e6f72b60d994a805ef564c6c326',1,'glm::GLM_ALIGNED_TYPEDEF(u8vec2, aligned_u8vec2, 2)'],['../a00986.html#ga9740cf8e34f068049b42a2753f9601c2',1,'glm::GLM_ALIGNED_TYPEDEF(u8vec3, aligned_u8vec3, 4)'],['../a00986.html#ga8b8588bb221448f5541a858903822a57',1,'glm::GLM_ALIGNED_TYPEDEF(u8vec4, aligned_u8vec4, 4)'],['../a00986.html#ga991abe990c16de26b2129d6bc2f4c051',1,'glm::GLM_ALIGNED_TYPEDEF(u16vec1, aligned_u16vec1, 2)'],['../a00986.html#gac01bb9fc32a1cd76c2b80d030f71df4c',1,'glm::GLM_ALIGNED_TYPEDEF(u16vec2, aligned_u16vec2, 4)'],['../a00986.html#ga09540dbca093793a36a8997e0d4bee77',1,'glm::GLM_ALIGNED_TYPEDEF(u16vec3, aligned_u16vec3, 8)'],['../a00986.html#gaecafb5996f5a44f57e34d29c8670741e',1,'glm::GLM_ALIGNED_TYPEDEF(u16vec4, aligned_u16vec4, 8)'],['../a00986.html#gac6b161a04d2f8408fe1c9d857e8daac0',1,'glm::GLM_ALIGNED_TYPEDEF(u32vec1, aligned_u32vec1, 4)'],['../a00986.html#ga1fa0dfc8feb0fa17dab2acd43e05342b',1,'glm::GLM_ALIGNED_TYPEDEF(u32vec2, aligned_u32vec2, 8)'],['../a00986.html#ga0019500abbfa9c66eff61ca75eaaed94',1,'glm::GLM_ALIGNED_TYPEDEF(u32vec3, aligned_u32vec3, 16)'],['../a00986.html#ga14fd29d01dae7b08a04e9facbcc18824',1,'glm::GLM_ALIGNED_TYPEDEF(u32vec4, aligned_u32vec4, 16)'],['../a00986.html#gab253845f534a67136f9619843cade903',1,'glm::GLM_ALIGNED_TYPEDEF(u64vec1, aligned_u64vec1, 8)'],['../a00986.html#ga929427a7627940cdf3304f9c050b677d',1,'glm::GLM_ALIGNED_TYPEDEF(u64vec2, aligned_u64vec2, 16)'],['../a00986.html#gae373b6c04fdf9879f33d63e6949c037e',1,'glm::GLM_ALIGNED_TYPEDEF(u64vec3, aligned_u64vec3, 32)'],['../a00986.html#ga53a8a03dca2015baec4584f45b8e9cdc',1,'glm::GLM_ALIGNED_TYPEDEF(u64vec4, aligned_u64vec4, 32)'],['../a00986.html#gab3301bae94ef5bf59fbdd9a24e7d2a01',1,'glm::GLM_ALIGNED_TYPEDEF(float32, aligned_float32, 4)'],['../a00986.html#gada9b0bea273d3ae0286f891533b9568f',1,'glm::GLM_ALIGNED_TYPEDEF(float32_t, aligned_float32_t, 4)'],['../a00986.html#gadbce23b9f23d77bb3884e289a574ebd5',1,'glm::GLM_ALIGNED_TYPEDEF(float32, aligned_f32, 4)'],['../a00986.html#ga75930684ff2233171c573e603f216162',1,'glm::GLM_ALIGNED_TYPEDEF(float64, aligned_float64, 8)'],['../a00986.html#ga6e3a2d83b131336219a0f4c7cbba2a48',1,'glm::GLM_ALIGNED_TYPEDEF(float64_t, aligned_float64_t, 8)'],['../a00986.html#gaa4deaa0dea930c393d55e7a4352b0a20',1,'glm::GLM_ALIGNED_TYPEDEF(float64, aligned_f64, 8)'],['../a00986.html#ga81bc497b2bfc6f80bab690c6ee28f0f9',1,'glm::GLM_ALIGNED_TYPEDEF(vec1, aligned_vec1, 4)'],['../a00986.html#gada3e8f783e9d4b90006695a16c39d4d4',1,'glm::GLM_ALIGNED_TYPEDEF(vec2, aligned_vec2, 8)'],['../a00986.html#gab8d081fac3a38d6f55fa552f32168d32',1,'glm::GLM_ALIGNED_TYPEDEF(vec3, aligned_vec3, 16)'],['../a00986.html#ga12fe7b9769c964c5b48dcfd8b7f40198',1,'glm::GLM_ALIGNED_TYPEDEF(vec4, aligned_vec4, 16)'],['../a00986.html#gaefab04611c7f8fe1fd9be3071efea6cc',1,'glm::GLM_ALIGNED_TYPEDEF(fvec1, aligned_fvec1, 4)'],['../a00986.html#ga2543c05ba19b3bd19d45b1227390c5b4',1,'glm::GLM_ALIGNED_TYPEDEF(fvec2, aligned_fvec2, 8)'],['../a00986.html#ga009afd727fd657ef33a18754d6d28f60',1,'glm::GLM_ALIGNED_TYPEDEF(fvec3, aligned_fvec3, 16)'],['../a00986.html#ga2f26177e74bfb301a3d0e02ec3c3ef53',1,'glm::GLM_ALIGNED_TYPEDEF(fvec4, aligned_fvec4, 16)'],['../a00986.html#ga309f495a1d6b75ddf195b674b65cb1e4',1,'glm::GLM_ALIGNED_TYPEDEF(f32vec1, aligned_f32vec1, 4)'],['../a00986.html#ga5e185865a2217d0cd47187644683a8c3',1,'glm::GLM_ALIGNED_TYPEDEF(f32vec2, aligned_f32vec2, 8)'],['../a00986.html#gade4458b27b039b9ca34f8ec049f3115a',1,'glm::GLM_ALIGNED_TYPEDEF(f32vec3, aligned_f32vec3, 16)'],['../a00986.html#ga2e8a12c5e6a9c4ae4ddaeda1d1cffe3b',1,'glm::GLM_ALIGNED_TYPEDEF(f32vec4, aligned_f32vec4, 16)'],['../a00986.html#ga3e0f35fa0c626285a8bad41707e7316c',1,'glm::GLM_ALIGNED_TYPEDEF(dvec1, aligned_dvec1, 8)'],['../a00986.html#ga78bfec2f185d1d365ea0a9ef1e3d45b8',1,'glm::GLM_ALIGNED_TYPEDEF(dvec2, aligned_dvec2, 16)'],['../a00986.html#ga01fe6fee6db5df580b6724a7e681f069',1,'glm::GLM_ALIGNED_TYPEDEF(dvec3, aligned_dvec3, 32)'],['../a00986.html#ga687d5b8f551d5af32425c0b2fba15e99',1,'glm::GLM_ALIGNED_TYPEDEF(dvec4, aligned_dvec4, 32)'],['../a00986.html#ga8e842371d46842ff8f1813419ba49d0f',1,'glm::GLM_ALIGNED_TYPEDEF(f64vec1, aligned_f64vec1, 8)'],['../a00986.html#ga32814aa0f19316b43134fc25f2aad2b9',1,'glm::GLM_ALIGNED_TYPEDEF(f64vec2, aligned_f64vec2, 16)'],['../a00986.html#gaf3d3bbc1e93909b689123b085e177a14',1,'glm::GLM_ALIGNED_TYPEDEF(f64vec3, aligned_f64vec3, 32)'],['../a00986.html#ga804c654cead1139bd250f90f9bb01fad',1,'glm::GLM_ALIGNED_TYPEDEF(f64vec4, aligned_f64vec4, 32)'],['../a00986.html#gacce4ac532880b8c7469d3c31974420a1',1,'glm::GLM_ALIGNED_TYPEDEF(mat2, aligned_mat2, 16)'],['../a00986.html#ga0498e0e249a6faddaf96aa55d7f81c3b',1,'glm::GLM_ALIGNED_TYPEDEF(mat3, aligned_mat3, 16)'],['../a00986.html#ga7435d87de82a0d652b35dc5b9cc718d5',1,'glm::GLM_ALIGNED_TYPEDEF(mat4, aligned_mat4, 16)'],['../a00986.html#ga719da577361541a4c43a2dd1d0e361e1',1,'glm::GLM_ALIGNED_TYPEDEF(fmat2x2, aligned_fmat2, 16)'],['../a00986.html#ga6e7ee4f541e1d7db66cd1a224caacafb',1,'glm::GLM_ALIGNED_TYPEDEF(fmat3x3, aligned_fmat3, 16)'],['../a00986.html#gae5d672d359f2a39f63f98c7975057486',1,'glm::GLM_ALIGNED_TYPEDEF(fmat4x4, aligned_fmat4, 16)'],['../a00986.html#ga6fa2df037dbfc5fe8c8e0b4db8a34953',1,'glm::GLM_ALIGNED_TYPEDEF(fmat2x2, aligned_fmat2x2, 16)'],['../a00986.html#ga0743b4f4f69a3227b82ff58f6abbad62',1,'glm::GLM_ALIGNED_TYPEDEF(fmat2x3, aligned_fmat2x3, 16)'],['../a00986.html#ga1a76b325fdf70f961d835edd182c63dd',1,'glm::GLM_ALIGNED_TYPEDEF(fmat2x4, aligned_fmat2x4, 16)'],['../a00986.html#ga4b4e181cd041ba28c3163e7b8074aef0',1,'glm::GLM_ALIGNED_TYPEDEF(fmat3x2, aligned_fmat3x2, 16)'],['../a00986.html#ga27b13f465abc8a40705698145e222c3f',1,'glm::GLM_ALIGNED_TYPEDEF(fmat3x3, aligned_fmat3x3, 16)'],['../a00986.html#ga2608d19cc275830a6f8c0b6405625a4f',1,'glm::GLM_ALIGNED_TYPEDEF(fmat3x4, aligned_fmat3x4, 16)'],['../a00986.html#ga93f09768241358a287c4cca538f1f7e7',1,'glm::GLM_ALIGNED_TYPEDEF(fmat4x2, aligned_fmat4x2, 16)'],['../a00986.html#ga7c117e3ecca089e10247b1d41d88aff9',1,'glm::GLM_ALIGNED_TYPEDEF(fmat4x3, aligned_fmat4x3, 16)'],['../a00986.html#ga07c75cd04ba42dc37fa3e105f89455c5',1,'glm::GLM_ALIGNED_TYPEDEF(fmat4x4, aligned_fmat4x4, 16)'],['../a00986.html#ga65ff0d690a34a4d7f46f9b2eb51525ee',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat2x2, aligned_f32mat2, 16)'],['../a00986.html#gadd8ddbe2bf65ccede865ba2f510176dc',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat3x3, aligned_f32mat3, 16)'],['../a00986.html#gaf18dbff14bf13d3ff540c517659ec045',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat4x4, aligned_f32mat4, 16)'],['../a00986.html#ga66339f6139bf7ff19e245beb33f61cc8',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat2x2, aligned_f32mat2x2, 16)'],['../a00986.html#ga1558a48b3934011b52612809f443e46d',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat2x3, aligned_f32mat2x3, 16)'],['../a00986.html#gaa52e5732daa62851627021ad551c7680',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat2x4, aligned_f32mat2x4, 16)'],['../a00986.html#gac09663c42566bcb58d23c6781ac4e85a',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat3x2, aligned_f32mat3x2, 16)'],['../a00986.html#ga3f510999e59e1b309113e1d561162b29',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat3x3, aligned_f32mat3x3, 16)'],['../a00986.html#ga2c9c94f0c89cd71ce56551db6cf4aaec',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat3x4, aligned_f32mat3x4, 16)'],['../a00986.html#ga99ce8274c750fbfdf0e70c95946a2875',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat4x2, aligned_f32mat4x2, 16)'],['../a00986.html#ga9476ef66790239df53dbe66f3989c3b5',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat4x3, aligned_f32mat4x3, 16)'],['../a00986.html#gacc429b3b0b49921e12713b6d31e14e1d',1,'glm::GLM_ALIGNED_TYPEDEF(f32mat4x4, aligned_f32mat4x4, 16)'],['../a00986.html#ga88f6c6fa06e6e64479763e69444669cf',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat2x2, aligned_f64mat2, 32)'],['../a00986.html#gaae8e4639c991e64754145ab8e4c32083',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat3x3, aligned_f64mat3, 32)'],['../a00986.html#ga6e9094f3feb3b5b49d0f83683a101fde',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat4x4, aligned_f64mat4, 32)'],['../a00986.html#gadbd2c639c03de1c3e9591b5a39f65559',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat2x2, aligned_f64mat2x2, 32)'],['../a00986.html#gab059d7b9fe2094acc563b7223987499f',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat2x3, aligned_f64mat2x3, 32)'],['../a00986.html#gabbc811d1c52ed2b8cfcaff1378f75c69',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat2x4, aligned_f64mat2x4, 32)'],['../a00986.html#ga9ddf5212777734d2fd841a84439f3bdf',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat3x2, aligned_f64mat3x2, 32)'],['../a00986.html#gad1dda32ed09f94bfcf0a7d8edfb6cf13',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat3x3, aligned_f64mat3x3, 32)'],['../a00986.html#ga5875e0fa72f07e271e7931811cbbf31a',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat3x4, aligned_f64mat3x4, 32)'],['../a00986.html#ga41e82cd6ac07f912ba2a2d45799dcf0d',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat4x2, aligned_f64mat4x2, 32)'],['../a00986.html#ga0892638d6ba773043b3d63d1d092622e',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat4x3, aligned_f64mat4x3, 32)'],['../a00986.html#ga912a16432608b822f1e13607529934c1',1,'glm::GLM_ALIGNED_TYPEDEF(f64mat4x4, aligned_f64mat4x4, 32)'],['../a00986.html#gafd945a8ea86b042aba410e0560df9a3d',1,'glm::GLM_ALIGNED_TYPEDEF(quat, aligned_quat, 16)'],['../a00986.html#ga19c2ba545d1f2f36bcb7b60c9a228622',1,'glm::GLM_ALIGNED_TYPEDEF(quat, aligned_fquat, 16)'],['../a00986.html#gaabc28c84a3288b697605d4688686f9a9',1,'glm::GLM_ALIGNED_TYPEDEF(dquat, aligned_dquat, 32)'],['../a00986.html#ga1ed8aeb5ca67fade269a46105f1bf273',1,'glm::GLM_ALIGNED_TYPEDEF(f32quat, aligned_f32quat, 16)'],['../a00986.html#ga95cc03b8b475993fa50e05e38e203303',1,'glm::GLM_ALIGNED_TYPEDEF(f64quat, aligned_f64quat, 32)']]], + ['golden_5fratio_2767',['golden_ratio',['../a00908.html#ga748cf8642830657c5b7eae04d0a80899',1,'glm']]], + ['greaterthan_2768',['greaterThan',['../a00917.html#gab52513c338f90e9ba249faabdc115b67',1,'glm::greaterThan(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00996.html#gadfdb8ea82deca869ddc7e63ea5a63ae4',1,'glm::greaterThan(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['greaterthanequal_2769',['greaterThanEqual',['../a00917.html#gaa71814c544f0ed99ba6d141b17e026ae',1,'glm::greaterThanEqual(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00996.html#ga859975f538940f8d18fe62f916b9abd7',1,'glm::greaterThanEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]] +]; diff --git a/include/glm/doc/api/search/functions_7.html b/include/glm/doc/api/search/functions_7.html new file mode 100644 index 0000000..d7ad9dd --- /dev/null +++ b/include/glm/doc/api/search/functions_7.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_7.js b/include/glm/doc/api/search/functions_7.js new file mode 100644 index 0000000..7e605c9 --- /dev/null +++ b/include/glm/doc/api/search/functions_7.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['half_5fpi_2770',['half_pi',['../a00908.html#ga0c36b41d462e45641faf7d7938948bac',1,'glm']]], + ['hermite_2771',['hermite',['../a00979.html#gaa69e143f6374d32f934a8edeaa50bac9',1,'glm']]], + ['highestbitvalue_2772',['highestBitValue',['../a00927.html#ga0dcc8fe7c3d3ad60dea409281efa3d05',1,'glm::highestBitValue(genIUType Value)'],['../a00927.html#ga898ef075ccf809a1e480faab48fe96bf',1,'glm::highestBitValue(vec< L, T, Q > const &value)']]], + ['hsvcolor_2773',['hsvColor',['../a00930.html#ga789802bec2d4fe0f9741c731b4a8a7d8',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_8.html b/include/glm/doc/api/search/functions_8.html new file mode 100644 index 0000000..8600cab --- /dev/null +++ b/include/glm/doc/api/search/functions_8.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_8.js b/include/glm/doc/api/search/functions_8.js new file mode 100644 index 0000000..0fa00c9 --- /dev/null +++ b/include/glm/doc/api/search/functions_8.js @@ -0,0 +1,35 @@ +var searchData= +[ + ['identity_2774',['identity',['../a00837.html#ga81696f2b8d1db02ea1aff8da8f269314',1,'glm']]], + ['imulextended_2775',['imulExtended',['../a00992.html#ga3d262b3633cde7a67530c6172424ce37',1,'glm']]], + ['infiniteperspective_2776',['infinitePerspective',['../a00814.html#ga44fa38a18349450325cae2661bb115ca',1,'glm']]], + ['infiniteperspectivelh_2777',['infinitePerspectiveLH',['../a00814.html#ga3201b30f5b3ea0f933246d87bfb992a9',1,'glm']]], + ['infiniteperspectivelh_5fno_2778',['infinitePerspectiveLH_NO',['../a00814.html#ga8034759052b6d0f27fcb9e6d94d81d00',1,'glm']]], + ['infiniteperspectivelh_5fzo_2779',['infinitePerspectiveLH_ZO',['../a00814.html#gac814a56c1b1120aab3d10c8e6e955a89',1,'glm']]], + ['infiniteperspectiverh_2780',['infinitePerspectiveRH',['../a00814.html#ga99672ffe5714ef478dab2437255fe7e1',1,'glm']]], + ['infiniteperspectiverh_5fno_2781',['infinitePerspectiveRH_NO',['../a00814.html#gaf50823c0bed37d4f07891888f42a3a06',1,'glm']]], + ['infiniteperspectiverh_5fzo_2782',['infinitePerspectiveRH_ZO',['../a00814.html#gac8ab661bde7995c977393c5e69cb9dae',1,'glm']]], + ['intbitstofloat_2783',['intBitsToFloat',['../a00812.html#gad780bbd088b64d823ad7049c42b157da',1,'glm::intBitsToFloat(int v)'],['../a00812.html#ga7a0a8291a1cf3e1c2aee33030a1bd7b0',1,'glm::intBitsToFloat(vec< L, int, Q > const &v)']]], + ['intermediate_2784',['intermediate',['../a00972.html#gacc5cd5f3e78de61d141c2355417424de',1,'glm']]], + ['interpolate_2785',['interpolate',['../a00956.html#ga4e67863d150724b10c1ac00972dc958c',1,'glm']]], + ['intersectlinesphere_2786',['intersectLineSphere',['../a00949.html#ga9c68139f3d8a4f3d7fe45f9dbc0de5b7',1,'glm']]], + ['intersectlinetriangle_2787',['intersectLineTriangle',['../a00949.html#ga9d29b9b3acb504d43986502f42740df4',1,'glm']]], + ['intersectrayplane_2788',['intersectRayPlane',['../a00949.html#gad3697a9700ea379739a667ea02573488',1,'glm']]], + ['intersectraysphere_2789',['intersectRaySphere',['../a00949.html#ga69367b81be6a589e3a1f9661b4430a27',1,'glm::intersectRaySphere(genType const &rayStarting, genType const &rayNormalizedDirection, genType const &sphereCenter, typename genType::value_type const sphereRadiusSquared, typename genType::value_type &intersectionDistance)'],['../a00949.html#gad28c00515b823b579c608aafa1100c1d',1,'glm::intersectRaySphere(genType const &rayStarting, genType const &rayNormalizedDirection, genType const &sphereCenter, const typename genType::value_type sphereRadius, genType &intersectionPosition, genType &intersectionNormal)']]], + ['intersectraytriangle_2790',['intersectRayTriangle',['../a00949.html#ga65bf2c594482f04881c36bc761f9e946',1,'glm']]], + ['inverse_2791',['inverse',['../a00856.html#ga50db49335150de11562052667537e517',1,'glm::inverse(qua< T, Q > const &q)'],['../a00935.html#ga070f521a953f6461af4ab4cf8ccbf27e',1,'glm::inverse(tdualquat< T, Q > const &q)'],['../a00993.html#gaed509fe8129b01e4f20a6d0de5690091',1,'glm::inverse(mat< C, R, T, Q > const &m)']]], + ['inversesqrt_2792',['inversesqrt',['../a00813.html#ga523dd6bd0ad9f75ae2d24c8e4b017b7a',1,'glm']]], + ['inversetranspose_2793',['inverseTranspose',['../a00913.html#gab213cd0e3ead5f316d583f99d6312008',1,'glm']]], + ['iround_2794',['iround',['../a00866.html#gaa45ff5782fde5182afa7ab211f9758a3',1,'glm::iround(genType const &x)'],['../a00877.html#ga57824268ebe13a922f1d69a5d37f637f',1,'glm::iround(vec< L, T, Q > const &x)']]], + ['iscompnull_2795',['isCompNull',['../a00990.html#gaf6ec1688eab7442fe96fe4941d5d4e76',1,'glm']]], + ['isdenormal_2796',['isdenormal',['../a00932.html#ga74aa7c7462245d83bd5a9edf9c6c2d91',1,'glm']]], + ['isfinite_2797',['isfinite',['../a00933.html#gaf4b04dcd3526996d68c1bfe17bfc8657',1,'glm::isfinite(genType const &x)'],['../a00933.html#gac3b12b8ac3014418fe53c299478b6603',1,'glm::isfinite(const vec< 1, T, Q > &x)'],['../a00933.html#ga8e76dc3e406ce6a4155c2b12a2e4b084',1,'glm::isfinite(const vec< 2, T, Q > &x)'],['../a00933.html#ga929ef27f896d902c1771a2e5e150fc97',1,'glm::isfinite(const vec< 3, T, Q > &x)'],['../a00933.html#ga19925badbe10ce61df1d0de00be0b5ad',1,'glm::isfinite(const vec< 4, T, Q > &x)'],['../a00933.html#gac5ce300d95da1649147adddbc80af5e5',1,'glm::isfinite(const qua< T, Q > &x)']]], + ['isidentity_2798',['isIdentity',['../a00959.html#gaee935d145581c82e82b154ccfd78ad91',1,'glm']]], + ['isinf_2799',['isinf',['../a00812.html#ga2885587c23a106301f20443896365b62',1,'glm::isinf(vec< L, T, Q > const &x)'],['../a00856.html#ga45722741ea266b4e861938b365c5f362',1,'glm::isinf(qua< T, Q > const &x)']]], + ['ismultiple_2800',['isMultiple',['../a00869.html#gaec593d33956a8fe43f78fccc63ddde9a',1,'glm::isMultiple(genIUType v, genIUType Multiple)'],['../a00887.html#ga354caf634ef333d9cb4844407416256a',1,'glm::isMultiple(vec< L, T, Q > const &v, T Multiple)'],['../a00887.html#gabb4360e38c0943d8981ba965dead519d',1,'glm::isMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['isnan_2801',['isnan',['../a00812.html#ga29ef934c00306490de837b4746b4e14d',1,'glm::isnan(vec< L, T, Q > const &x)'],['../a00856.html#ga1bb55f8963616502e96dc564384d8a03',1,'glm::isnan(qua< T, Q > const &x)']]], + ['isnormalized_2802',['isNormalized',['../a00959.html#gae785af56f47ce220a1609f7f84aa077a',1,'glm::isNormalized(mat< 2, 2, T, Q > const &m, T const &epsilon)'],['../a00959.html#gaa068311695f28f5f555f5f746a6a66fb',1,'glm::isNormalized(mat< 3, 3, T, Q > const &m, T const &epsilon)'],['../a00959.html#ga4d9bb4d0465df49fedfad79adc6ce4ad',1,'glm::isNormalized(mat< 4, 4, T, Q > const &m, T const &epsilon)'],['../a00990.html#gac3c974f459fd75453134fad7ae89a39e',1,'glm::isNormalized(vec< L, T, Q > const &v, T const &epsilon)']]], + ['isnull_2803',['isNull',['../a00959.html#ga9790ec222ce948c0ff0d8ce927340dba',1,'glm::isNull(mat< 2, 2, T, Q > const &m, T const &epsilon)'],['../a00959.html#gae14501c6b14ccda6014cc5350080103d',1,'glm::isNull(mat< 3, 3, T, Q > const &m, T const &epsilon)'],['../a00959.html#ga2b98bb30a9fefa7cdea5f1dcddba677b',1,'glm::isNull(mat< 4, 4, T, Q > const &m, T const &epsilon)'],['../a00990.html#gab4a3637dbcb4bb42dc55caea7a1e0495',1,'glm::isNull(vec< L, T, Q > const &v, T const &epsilon)']]], + ['isorthogonal_2804',['isOrthogonal',['../a00959.html#ga58f3289f74dcab653387dd78ad93ca40',1,'glm']]], + ['ispoweroftwo_2805',['isPowerOfTwo',['../a00869.html#gadf491730354aa7da67fbe23d4d688763',1,'glm::isPowerOfTwo(genIUType v)'],['../a00887.html#gabf2b61ded7049bcb13e25164f832a290',1,'glm::isPowerOfTwo(vec< L, T, Q > const &v)']]] +]; diff --git a/include/glm/doc/api/search/functions_9.html b/include/glm/doc/api/search/functions_9.html new file mode 100644 index 0000000..76e3e2c --- /dev/null +++ b/include/glm/doc/api/search/functions_9.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_9.js b/include/glm/doc/api/search/functions_9.js new file mode 100644 index 0000000..fb9c154 --- /dev/null +++ b/include/glm/doc/api/search/functions_9.js @@ -0,0 +1,28 @@ +var searchData= +[ + ['l1norm_2806',['l1Norm',['../a00962.html#gae2fc0b2aa967bebfd6a244700bff6997',1,'glm::l1Norm(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)'],['../a00962.html#ga1a7491e2037ceeb37f83ce41addfc0be',1,'glm::l1Norm(vec< 3, T, Q > const &v)']]], + ['l2norm_2807',['l2Norm',['../a00962.html#ga41340b2ef40a9307ab0f137181565168',1,'glm::l2Norm(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)'],['../a00962.html#gae288bde8f0e41fb4ed62e65137b18cba',1,'glm::l2Norm(vec< 3, T, Q > const &x)']]], + ['ldexp_2808',['ldexp',['../a00812.html#gac3010e0a0c35a1b514540f2fb579c58c',1,'glm']]], + ['lefthanded_2809',['leftHanded',['../a00946.html#ga6f1bad193b9a3b048543d1935cf04dd3',1,'glm']]], + ['length_2810',['length',['../a00862.html#gab703732449be6c7199369b3f9a91ed38',1,'glm::length(qua< T, Q > const &q)'],['../a00897.html#ga0cdabbb000834d994a1d6dc56f8f5263',1,'glm::length(vec< L, T, Q > const &x)']]], + ['length2_2811',['length2',['../a00962.html#ga8d1789651050adb7024917984b41c3de',1,'glm::length2(vec< L, T, Q > const &x)'],['../a00972.html#ga08eb643306c5ba9211a81b322bc89543',1,'glm::length2(qua< T, Q > const &q)']]], + ['lerp_2812',['lerp',['../a00856.html#gaacd3d0591852faa4bc291b61da88ad44',1,'glm::lerp(qua< T, Q > const &x, qua< T, Q > const &y, T a)'],['../a00933.html#ga5494ba3a95ea6594c86fc75236886864',1,'glm::lerp(T x, T y, T a)'],['../a00933.html#gaa551c0a0e16d2d4608e49f7696df897f',1,'glm::lerp(const vec< 2, T, Q > &x, const vec< 2, T, Q > &y, T a)'],['../a00933.html#ga44a8b5fd776320f1713413dec959b32a',1,'glm::lerp(const vec< 3, T, Q > &x, const vec< 3, T, Q > &y, T a)'],['../a00933.html#ga89ac8e000199292ec7875519d27e214b',1,'glm::lerp(const vec< 4, T, Q > &x, const vec< 4, T, Q > &y, T a)'],['../a00933.html#gaf68de5baf72d16135368b8ef4f841604',1,'glm::lerp(const vec< 2, T, Q > &x, const vec< 2, T, Q > &y, const vec< 2, T, Q > &a)'],['../a00933.html#ga4ae1a616c8540a2649eab8e0cd051bb3',1,'glm::lerp(const vec< 3, T, Q > &x, const vec< 3, T, Q > &y, const vec< 3, T, Q > &a)'],['../a00933.html#gab5477ab69c40de4db5d58d3359529724',1,'glm::lerp(const vec< 4, T, Q > &x, const vec< 4, T, Q > &y, const vec< 4, T, Q > &a)'],['../a00935.html#gace8380112d16d33f520839cb35a4d173',1,'glm::lerp(tdualquat< T, Q > const &x, tdualquat< T, Q > const &y, T const &a)']]], + ['lessthan_2813',['lessThan',['../a00917.html#gae0ed978b5c2588d53b220e9ceebaca0b',1,'glm::lessThan(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00996.html#gae90ed1592c395f93e3f3dfce6b2f39c6',1,'glm::lessThan(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['lessthanequal_2814',['lessThanEqual',['../a00917.html#ga3ee1ffe56e5428f659c51a5bfd67ab33',1,'glm::lessThanEqual(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00996.html#gab0bdafc019d227257ff73fb5bcca1718',1,'glm::lessThanEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]], + ['levels_2815',['levels',['../a00983.html#gaa8c377f4e63486db4fa872d77880da73',1,'glm']]], + ['lineargradient_2816',['linearGradient',['../a00945.html#ga849241df1e55129b8ce9476200307419',1,'glm']]], + ['linearinterpolation_2817',['linearInterpolation',['../a00936.html#ga290c3e47cb0a49f2e8abe90b1872b649',1,'glm']]], + ['linearrand_2818',['linearRand',['../a00918.html#ga04e241ab88374a477a2c2ceadd2fa03d',1,'glm::linearRand(genType Min, genType Max)'],['../a00918.html#ga94731130c298a9ff5e5025fdee6d97a0',1,'glm::linearRand(vec< L, T, Q > const &Min, vec< L, T, Q > const &Max)']]], + ['lmaxnorm_2819',['lMaxNorm',['../a00962.html#gad58a8231fc32e38104a9e1c4d3c0cb64',1,'glm::lMaxNorm(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)'],['../a00962.html#ga6968a324837a8e899396d44de23d5aae',1,'glm::lMaxNorm(vec< 3, T, Q > const &x)']]], + ['ln_5fln_5ftwo_2820',['ln_ln_two',['../a00908.html#gaca94292c839ed31a405ab7a81ae7e850',1,'glm']]], + ['ln_5ften_2821',['ln_ten',['../a00908.html#gaf97ebc6c059ffd788e6c4946f71ef66c',1,'glm']]], + ['ln_5ftwo_2822',['ln_two',['../a00908.html#ga24f4d27765678116f41a2f336ab7975c',1,'glm']]], + ['log_2823',['log',['../a00813.html#ga918c9f3fd086ce20e6760c903bd30fa9',1,'glm::log(vec< L, T, Q > const &v)'],['../a00864.html#gaa5f7b20e296671b16ce25a2ab7ad5473',1,'glm::log(qua< T, Q > const &q)'],['../a00952.html#ga60a7b0a401da660869946b2b77c710c9',1,'glm::log(genType const &x, genType const &base)']]], + ['log2_2824',['log2',['../a00813.html#ga5a5bd81210e6b0c0c6038f637a8185e3',1,'glm']]], + ['lookat_2825',['lookAt',['../a00837.html#gaa64aa951a0e99136bba9008d2b59c78e',1,'glm']]], + ['lookatlh_2826',['lookAtLH',['../a00837.html#gab2c09e25b0a16d3a9d89cc85bbae41b0',1,'glm']]], + ['lookatrh_2827',['lookAtRH',['../a00837.html#gacfa12c8889c754846bc20c65d9b5c701',1,'glm']]], + ['lowestbitvalue_2828',['lowestBitValue',['../a00927.html#ga2ff6568089f3a9b67f5c30918855fc6f',1,'glm']]], + ['luminosity_2829',['luminosity',['../a00930.html#gad028e0a4f1a9c812b39439b746295b34',1,'glm']]], + ['lxnorm_2830',['lxNorm',['../a00962.html#gacad23d30497eb16f67709f2375d1f66a',1,'glm::lxNorm(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, unsigned int Depth)'],['../a00962.html#gac61b6d81d796d6eb4d4183396a19ab91',1,'glm::lxNorm(vec< 3, T, Q > const &x, unsigned int Depth)']]] +]; diff --git a/include/glm/doc/api/search/functions_a.html b/include/glm/doc/api/search/functions_a.html new file mode 100644 index 0000000..81836b9 --- /dev/null +++ b/include/glm/doc/api/search/functions_a.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_a.js b/include/glm/doc/api/search/functions_a.js new file mode 100644 index 0000000..4f55e38 --- /dev/null +++ b/include/glm/doc/api/search/functions_a.js @@ -0,0 +1,36 @@ +var searchData= +[ + ['make_5fmat2_2831',['make_mat2',['../a00923.html#ga04409e74dc3da251d2501acf5b4b546c',1,'glm']]], + ['make_5fmat2x2_2832',['make_mat2x2',['../a00923.html#gae49e1c7bcd5abec74d1c34155031f663',1,'glm']]], + ['make_5fmat2x3_2833',['make_mat2x3',['../a00923.html#ga21982104164789cf8985483aaefc25e8',1,'glm']]], + ['make_5fmat2x4_2834',['make_mat2x4',['../a00923.html#ga078b862c90b0e9a79ed43a58997d8388',1,'glm']]], + ['make_5fmat3_2835',['make_mat3',['../a00923.html#ga611ee7c4d4cadfc83a8fa8e1d10a170f',1,'glm']]], + ['make_5fmat3x2_2836',['make_mat3x2',['../a00923.html#ga27a24e121dc39e6857620e0f85b6e1a8',1,'glm']]], + ['make_5fmat3x3_2837',['make_mat3x3',['../a00923.html#gaf2e8337b15c3362aaeb6e5849e1c0536',1,'glm']]], + ['make_5fmat3x4_2838',['make_mat3x4',['../a00923.html#ga05dd66232aedb993e3b8e7b35eaf932b',1,'glm']]], + ['make_5fmat4_2839',['make_mat4',['../a00923.html#gae7bcedb710d1446c87fd1fc93ed8ee9a',1,'glm']]], + ['make_5fmat4x2_2840',['make_mat4x2',['../a00923.html#ga8b34c9b25bf3310d8ff9c828c7e2d97c',1,'glm']]], + ['make_5fmat4x3_2841',['make_mat4x3',['../a00923.html#ga0330bf6640092d7985fac92927bbd42b',1,'glm']]], + ['make_5fmat4x4_2842',['make_mat4x4',['../a00923.html#ga8f084be30e404844bfbb4a551ac2728c',1,'glm']]], + ['make_5fquat_2843',['make_quat',['../a00923.html#ga58110d7d81cf7d029e2bab7f8cd9b246',1,'glm']]], + ['make_5fvec1_2844',['make_vec1',['../a00923.html#ga4135f03f3049f0a4eb76545c4967957c',1,'glm::make_vec1(vec< 1, T, Q > const &v)'],['../a00923.html#ga13c92b81e55f201b052a6404d57da220',1,'glm::make_vec1(vec< 2, T, Q > const &v)'],['../a00923.html#ga3c23cc74086d361e22bbd5e91a334e03',1,'glm::make_vec1(vec< 3, T, Q > const &v)'],['../a00923.html#ga6af06bb60d64ca8bcd169e3c93bc2419',1,'glm::make_vec1(vec< 4, T, Q > const &v)']]], + ['make_5fvec2_2845',['make_vec2',['../a00923.html#ga8476d0e6f1b9b4a6193cc25f59d8a896',1,'glm::make_vec2(vec< 1, T, Q > const &v)'],['../a00923.html#gae54bd325a08ad26edf63929201adebc7',1,'glm::make_vec2(vec< 2, T, Q > const &v)'],['../a00923.html#ga0084fea4694cf47276e9cccbe7b1015a',1,'glm::make_vec2(vec< 3, T, Q > const &v)'],['../a00923.html#ga2b81f71f3a222fe5bba81e3983751249',1,'glm::make_vec2(vec< 4, T, Q > const &v)'],['../a00923.html#ga81253cf7b0ebfbb1e70540c5774e6824',1,'glm::make_vec2(T const *const ptr)']]], + ['make_5fvec3_2846',['make_vec3',['../a00923.html#ga9147e4b3a5d0f4772edfbfd179d7ea0b',1,'glm::make_vec3(vec< 1, T, Q > const &v)'],['../a00923.html#ga482b60a842a5b154d3eed392417a9511',1,'glm::make_vec3(vec< 2, T, Q > const &v)'],['../a00923.html#gacd57046034df557b8b1c457f58613623',1,'glm::make_vec3(vec< 3, T, Q > const &v)'],['../a00923.html#ga8b589ed7d41a298b516d2a69169248f1',1,'glm::make_vec3(vec< 4, T, Q > const &v)'],['../a00923.html#gad9e0d36ff489cb30c65ad1fa40351651',1,'glm::make_vec3(T const *const ptr)']]], + ['make_5fvec4_2847',['make_vec4',['../a00923.html#ga600cb97f70c5d50d3a4a145e1cafbf37',1,'glm::make_vec4(vec< 1, T, Q > const &v)'],['../a00923.html#gaa9bd116caf28196fd1cf00b278286fa7',1,'glm::make_vec4(vec< 2, T, Q > const &v)'],['../a00923.html#ga4036328ba4702c74cbdfad1fc03d1b8f',1,'glm::make_vec4(vec< 3, T, Q > const &v)'],['../a00923.html#gaa95cb15732f708f613e65a0578895ae5',1,'glm::make_vec4(vec< 4, T, Q > const &v)'],['../a00923.html#ga63f576518993efc22a969f18f80e29bb',1,'glm::make_vec4(T const *const ptr)']]], + ['mask_2848',['mask',['../a00906.html#gad7eba518a0b71662114571ee76939f8a',1,'glm::mask(genIUType Bits)'],['../a00906.html#ga2e64e3b922a296033b825311e7f5fff1',1,'glm::mask(vec< L, T, Q > const &v)']]], + ['mat2x4_5fcast_2849',['mat2x4_cast',['../a00935.html#gae99d143b37f9cad4cd9285571aab685a',1,'glm']]], + ['mat3_5fcast_2850',['mat3_cast',['../a00917.html#ga333ab70047fbe4132406100c292dbc89',1,'glm']]], + ['mat3x4_5fcast_2851',['mat3x4_cast',['../a00935.html#gaf59f5bb69620d2891c3795c6f2639179',1,'glm']]], + ['mat4_5fcast_2852',['mat4_cast',['../a00917.html#ga1113212d9bdefc2e31ad40e5bbb506f3',1,'glm']]], + ['matrixcompmult_2853',['matrixCompMult',['../a00834.html#ga514c5f14f88b22355731a992e683fc90',1,'glm']]], + ['matrixcross3_2854',['matrixCross3',['../a00953.html#ga5802386bb4c37b3332a3b6fd8b6960ff',1,'glm']]], + ['matrixcross4_2855',['matrixCross4',['../a00953.html#ga20057fff91ddafa102934adb25458cde',1,'glm']]], + ['max_2856',['max',['../a00812.html#gae02d42887fc5570451f880e3c624b9ac',1,'glm::max(genType x, genType y)'],['../a00812.html#ga03e45d6e60d1c36edb00c52edeea0f31',1,'glm::max(vec< L, T, Q > const &x, T y)'],['../a00812.html#gac1fec0c3303b572a6d4697a637213870',1,'glm::max(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00866.html#gae7224c683ea72d2a6a395529b8c14a4c',1,'glm::max(T a, T b, T c)'],['../a00866.html#gae7fcb461017290d4a34e688fb9ae41ab',1,'glm::max(T a, T b, T c, T d)'],['../a00877.html#gaa45d34f6a2906f8bf58ab2ba5429234d',1,'glm::max(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &z)'],['../a00877.html#ga94d42b8da2b4ded5ddf7504fbdc6bf10',1,'glm::max(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &z, vec< L, T, Q > const &w)'],['../a00939.html#ga04991ccb9865c4c4e58488cfb209ce69',1,'glm::max(T const &x, T const &y, T const &z)'],['../a00939.html#gae1b7bbe5c91de4924835ea3e14530744',1,'glm::max(C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z)'],['../a00939.html#gaf832e9d4ab4826b2dda2fda25935a3a4',1,'glm::max(C< T > const &x, C< T > const &y, C< T > const &z)'],['../a00939.html#ga78e04a0cef1c4863fcae1a2130500d87',1,'glm::max(T const &x, T const &y, T const &z, T const &w)'],['../a00939.html#ga7cca8b53cfda402040494cdf40fbdf4a',1,'glm::max(C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z, typename C< T >::T const &w)'],['../a00939.html#gaacffbc466c2d08c140b181e7fd8a4858',1,'glm::max(C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)']]], + ['min_2857',['min',['../a00812.html#ga6cf8098827054a270ee36b18e30d471d',1,'glm::min(genType x, genType y)'],['../a00812.html#gaa7d015eba1f9f48519251f4abe69b14d',1,'glm::min(vec< L, T, Q > const &x, T y)'],['../a00812.html#ga31f49ef9e7d1beb003160c5e009b0c48',1,'glm::min(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00866.html#gae7a84710d9b7dee05eb0b2a68630cab4',1,'glm::min(T a, T b, T c)'],['../a00866.html#ga0f57f64fe8994fb4b6f7eebb6466a4e7',1,'glm::min(T a, T b, T c, T d)'],['../a00877.html#ga3cd83d80fd4f433d8e333593ec56dddf',1,'glm::min(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c)'],['../a00877.html#gab66920ed064ab518d6859c5a889c4be4',1,'glm::min(vec< L, T, Q > const &a, vec< L, T, Q > const &b, vec< L, T, Q > const &c, vec< L, T, Q > const &d)'],['../a00939.html#ga713d3f9b3e76312c0d314e0c8611a6a6',1,'glm::min(T const &x, T const &y, T const &z)'],['../a00939.html#ga74d1a96e7cdbac40f6d35142d3bcbbd4',1,'glm::min(C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z)'],['../a00939.html#ga42b5c3fc027fd3d9a50d2ccc9126d9f0',1,'glm::min(C< T > const &x, C< T > const &y, C< T > const &z)'],['../a00939.html#ga95466987024d03039607f09e69813d69',1,'glm::min(T const &x, T const &y, T const &z, T const &w)'],['../a00939.html#ga4fe35dd31dd0c45693c9b60b830b8d47',1,'glm::min(C< T > const &x, typename C< T >::T const &y, typename C< T >::T const &z, typename C< T >::T const &w)'],['../a00939.html#ga7471ea4159eed8dd9ea4ac5d46c2fead',1,'glm::min(C< T > const &x, C< T > const &y, C< T > const &z, C< T > const &w)']]], + ['mirrorclamp_2858',['mirrorClamp',['../a00866.html#gaa6856a0a048d2749252848da35e10c8b',1,'glm::mirrorClamp(genType const &Texcoord)'],['../a00877.html#gaf72b0749a21162aebcd47d9acd22e0df',1,'glm::mirrorClamp(vec< L, T, Q > const &Texcoord)']]], + ['mirrorrepeat_2859',['mirrorRepeat',['../a00866.html#ga16a89b0661b60d5bea85137bbae74d73',1,'glm::mirrorRepeat(genType const &Texcoord)'],['../a00877.html#ga9cfc26d9710a853d764dcac518fb42ec',1,'glm::mirrorRepeat(vec< L, T, Q > const &Texcoord)']]], + ['mix_2860',['mix',['../a00812.html#ga6b6e0c7ecb4a5b78f929566355bb7416',1,'glm::mix(genTypeT x, genTypeT y, genTypeU a)'],['../a00856.html#gafbfe587b8da11fb89a30c3d67dd5ccc2',1,'glm::mix(qua< T, Q > const &x, qua< T, Q > const &y, T a)']]], + ['mixedproduct_2861',['mixedProduct',['../a00961.html#gab3c6048fbb67f7243b088a4fee48d020',1,'glm']]], + ['mod_2862',['mod',['../a00812.html#ga9b197a452cd52db3c5c18bac72bd7798',1,'glm::mod(vec< L, T, Q > const &x, vec< L, T, Q > const &y)'],['../a00948.html#gaabfbb41531ab7ad8d06fc176edfba785',1,'glm::mod(int x, int y)'],['../a00948.html#ga63fc8d63e7da1706439233b386ba8b6f',1,'glm::mod(uint x, uint y)']]], + ['modf_2863',['modf',['../a00812.html#ga85e33f139b8db1b39b590a5713b9e679',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_b.html b/include/glm/doc/api/search/functions_b.html new file mode 100644 index 0000000..8c270d2 --- /dev/null +++ b/include/glm/doc/api/search/functions_b.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_b.js b/include/glm/doc/api/search/functions_b.js new file mode 100644 index 0000000..bb9aee3 --- /dev/null +++ b/include/glm/doc/api/search/functions_b.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['next_5ffloat_2864',['next_float',['../a00924.html#gab21fbe69182da4f378862feeffe24b16',1,'glm::next_float(genType x)'],['../a00924.html#gaf8540f4caeba5037dee6506184f360b0',1,'glm::next_float(genType x, int ULPs)'],['../a00924.html#ga72c18d50df8ef360960ddf1f5d09c728',1,'glm::next_float(vec< L, T, Q > const &x)'],['../a00924.html#ga78b63ddacacb9e0e8f4172d85f4373aa',1,'glm::next_float(vec< L, T, Q > const &x, int ULPs)'],['../a00924.html#ga48e17607989d47bc99e16cce74543e19',1,'glm::next_float(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)']]], + ['nextfloat_2865',['nextFloat',['../a00874.html#ga30bc0280e7cefd159867b1aa5050b94a',1,'glm::nextFloat(genType x)'],['../a00874.html#ga54eb5916c5250c8f0ad8224fb8e0d392',1,'glm::nextFloat(genType x, int ULPs)'],['../a00896.html#gadbd6e5dff9c0ae4567b3edd9019c1bee',1,'glm::nextFloat(vec< L, T, Q > const &x)'],['../a00896.html#ga92f82c4f45b5b43ccc29533990db079d',1,'glm::nextFloat(vec< L, T, Q > const &x, int ULPs)'],['../a00896.html#ga48e9b73c50fcf589e0032b8dbed9a3f9',1,'glm::nextFloat(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)']]], + ['nextmultiple_2866',['nextMultiple',['../a00869.html#gab770a3835c44c8a6fd225be4f4e6b317',1,'glm::nextMultiple(genIUType v, genIUType Multiple)'],['../a00887.html#gace38d00601cbf49cd4dc03f003ab42b7',1,'glm::nextMultiple(vec< L, T, Q > const &v, T Multiple)'],['../a00887.html#gacda365edad320c7aff19cc283a3b8ca2',1,'glm::nextMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['nextpoweroftwo_2867',['nextPowerOfTwo',['../a00869.html#ga3a37c2f2fd347886c9af6a3ca3db04dc',1,'glm::nextPowerOfTwo(genIUType v)'],['../a00887.html#gabba67f8aac9915e10fca727277274502',1,'glm::nextPowerOfTwo(vec< L, T, Q > const &v)']]], + ['nlz_2868',['nlz',['../a00948.html#ga78dff8bdb361bf0061194c93e003d189',1,'glm']]], + ['normalize_2869',['normalize',['../a00862.html#gad815f4de07f2fe6502cdd2cd86c3dabd',1,'glm::normalize(qua< T, Q > const &q)'],['../a00897.html#ga3b8d3dcae77870781392ed2902cce597',1,'glm::normalize(vec< L, T, Q > const &x)'],['../a00935.html#ga299b8641509606b1958ffa104a162cfe',1,'glm::normalize(tdualquat< T, Q > const &q)']]], + ['normalizedot_2870',['normalizeDot',['../a00964.html#gacb140a2b903115d318c8b0a2fb5a5daa',1,'glm']]], + ['not_5f_2871',['not_',['../a00996.html#ga610fcd175791fd246e328ffee10dbf1e',1,'glm']]], + ['notequal_2872',['notEqual',['../a00836.html#ga8504f18a7e2bf315393032c2137dad83',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)'],['../a00836.html#ga29071147d118569344d10944b7d5c378',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, T epsilon)'],['../a00836.html#gad7959e14fbc35b4ed2617daf4d67f6cd',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, T, Q > const &epsilon)'],['../a00836.html#gaa1cd7fc228ef6e26c73583fd0d9c6552',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, int ULPs)'],['../a00836.html#gaa5517341754149ffba742d230afd1f32',1,'glm::notEqual(mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y, vec< C, int, Q > const &ULPs)'],['../a00863.html#gab441cee0de5867a868f3a586ee68cfe1',1,'glm::notEqual(qua< T, Q > const &x, qua< T, Q > const &y)'],['../a00863.html#ga5117a44c1bf21af857cd23e44a96d313',1,'glm::notEqual(qua< T, Q > const &x, qua< T, Q > const &y, T epsilon)'],['../a00872.html#ga835ecf946c74f3d68be93e70b10821e7',1,'glm::notEqual(genType const &x, genType const &y, genType const &epsilon)'],['../a00872.html#gabd21e65b2e4c9d501d51536c4a6ef7cb',1,'glm::notEqual(genType const &x, genType const &y, int ULPs)'],['../a00890.html#ga4a99cc41341567567a608719449c1fac',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, T epsilon)'],['../a00890.html#ga417cf51304359db18e819dda9bce5767',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, T, Q > const &epsilon)'],['../a00890.html#ga8b5c2c3f83422ae5b71fa960d03b0339',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, int ULPs)'],['../a00890.html#ga0b15ffe32987a6029b14398eb0def01a',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y, vec< L, int, Q > const &ULPs)'],['../a00996.html#ga17c19dc1b76cd5aef63e9e7ff3aa3c27',1,'glm::notEqual(vec< L, T, Q > const &x, vec< L, T, Q > const &y)']]] +]; diff --git a/include/glm/doc/api/search/functions_c.html b/include/glm/doc/api/search/functions_c.html new file mode 100644 index 0000000..af1234d --- /dev/null +++ b/include/glm/doc/api/search/functions_c.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_c.js b/include/glm/doc/api/search/functions_c.js new file mode 100644 index 0000000..ab11512 --- /dev/null +++ b/include/glm/doc/api/search/functions_c.js @@ -0,0 +1,24 @@ +var searchData= +[ + ['one_2873',['one',['../a00908.html#ga39c2fb227631ca25894326529bdd1ee5',1,'glm']]], + ['one_5fover_5fpi_2874',['one_over_pi',['../a00908.html#ga555150da2b06d23c8738981d5013e0eb',1,'glm']]], + ['one_5fover_5froot_5ftwo_2875',['one_over_root_two',['../a00908.html#ga788fa23a0939bac4d1d0205fb4f35818',1,'glm']]], + ['one_5fover_5ftwo_5fpi_2876',['one_over_two_pi',['../a00908.html#ga7c922b427986cbb2e4c6ac69874eefbc',1,'glm']]], + ['openbounded_2877',['openBounded',['../a00932.html#gafd303042ba2ba695bf53b2315f53f93f',1,'glm']]], + ['orientate2_2878',['orientate2',['../a00937.html#gae16738a9f1887cf4e4db6a124637608d',1,'glm']]], + ['orientate3_2879',['orientate3',['../a00937.html#ga7ca98668a5786f19c7b38299ebbc9b4c',1,'glm::orientate3(T const &angle)'],['../a00937.html#ga7238c8e15c7720e3ca6a45ab151eeabb',1,'glm::orientate3(vec< 3, T, Q > const &angles)']]], + ['orientate4_2880',['orientate4',['../a00937.html#ga4a044653f71a4ecec68e0b623382b48a',1,'glm']]], + ['orientation_2881',['orientation',['../a00976.html#ga1a32fceb71962e6160e8af295c91930a',1,'glm']]], + ['orientedangle_2882',['orientedAngle',['../a00989.html#ga9556a803dce87fe0f42fdabe4ebba1d5',1,'glm::orientedAngle(vec< 2, T, Q > const &x, vec< 2, T, Q > const &y)'],['../a00989.html#ga706fce3d111f485839756a64f5a48553',1,'glm::orientedAngle(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y, vec< 3, T, Q > const &ref)']]], + ['ortho_2883',['ortho',['../a00814.html#gae5b6b40ed882cd56cd7cb97701909c06',1,'glm::ortho(T left, T right, T bottom, T top)'],['../a00814.html#ga6615d8a9d39432e279c4575313ecb456',1,'glm::ortho(T left, T right, T bottom, T top, T zNear, T zFar)']]], + ['ortholh_2884',['orthoLH',['../a00814.html#gad122a79aadaa5529cec4ac197203db7f',1,'glm']]], + ['ortholh_5fno_2885',['orthoLH_NO',['../a00814.html#ga526416735ea7c5c5cd255bf99d051bd8',1,'glm']]], + ['ortholh_5fzo_2886',['orthoLH_ZO',['../a00814.html#gab37ac3eec8d61f22fceda7775e836afa',1,'glm']]], + ['orthono_2887',['orthoNO',['../a00814.html#gab219d28a8f178d4517448fcd6395a073',1,'glm']]], + ['orthonormalize_2888',['orthonormalize',['../a00967.html#ga4cab5d698e6e2eccea30c8e81c74371f',1,'glm::orthonormalize(mat< 3, 3, T, Q > const &m)'],['../a00967.html#gac3bc7ef498815026bc3d361ae0b7138e',1,'glm::orthonormalize(vec< 3, T, Q > const &x, vec< 3, T, Q > const &y)']]], + ['orthorh_2889',['orthoRH',['../a00814.html#ga16264c9b838edeb9dd1de7a1010a13a4',1,'glm']]], + ['orthorh_5fno_2890',['orthoRH_NO',['../a00814.html#gaa2f7a1373170bf0a4a2ddef9b0706780',1,'glm']]], + ['orthorh_5fzo_2891',['orthoRH_ZO',['../a00814.html#ga9aea2e515b08fd7dce47b7b6ec34d588',1,'glm']]], + ['orthozo_2892',['orthoZO',['../a00814.html#gaea11a70817af2c0801c869dea0b7a5bc',1,'glm']]], + ['outerproduct_2893',['outerProduct',['../a00834.html#ga80d31e9320fd77035336e01d0228321f',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_d.html b/include/glm/doc/api/search/functions_d.html new file mode 100644 index 0000000..7116594 --- /dev/null +++ b/include/glm/doc/api/search/functions_d.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_d.js b/include/glm/doc/api/search/functions_d.js new file mode 100644 index 0000000..e2568f6 --- /dev/null +++ b/include/glm/doc/api/search/functions_d.js @@ -0,0 +1,85 @@ +var searchData= +[ + ['packdouble2x32_2894',['packDouble2x32',['../a00994.html#gaa916ca426b2bb0343ba17e3753e245c2',1,'glm']]], + ['packf2x11_5f1x10_2895',['packF2x11_1x10',['../a00916.html#ga4944ad465ff950e926d49621f916c78d',1,'glm']]], + ['packf3x9_5fe1x5_2896',['packF3x9_E1x5',['../a00916.html#ga3f648fc205467792dc6d8c59c748f8a6',1,'glm']]], + ['packhalf_2897',['packHalf',['../a00916.html#ga2d8bbce673ebc04831c1fb05c47f5251',1,'glm']]], + ['packhalf1x16_2898',['packHalf1x16',['../a00916.html#ga43f2093b6ff192a79058ff7834fc3528',1,'glm']]], + ['packhalf2x16_2899',['packHalf2x16',['../a00994.html#ga20f134b07db3a3d3a38efb2617388c92',1,'glm']]], + ['packhalf4x16_2900',['packHalf4x16',['../a00916.html#gafe2f7b39caf8f5ec555e1c059ec530e6',1,'glm']]], + ['packi3x10_5f1x2_2901',['packI3x10_1x2',['../a00916.html#ga06ecb6afb902dba45419008171db9023',1,'glm']]], + ['packint2x16_2902',['packInt2x16',['../a00916.html#ga3644163cf3a47bf1d4af1f4b03013a7e',1,'glm']]], + ['packint2x32_2903',['packInt2x32',['../a00916.html#gad1e4c8a9e67d86b61a6eec86703a827a',1,'glm']]], + ['packint2x8_2904',['packInt2x8',['../a00916.html#ga8884b1f2292414f36d59ef3be5d62914',1,'glm']]], + ['packint4x16_2905',['packInt4x16',['../a00916.html#ga1989f093a27ae69cf9207145be48b3d7',1,'glm']]], + ['packint4x8_2906',['packInt4x8',['../a00916.html#gaf2238401d5ce2aaade1a44ba19709072',1,'glm']]], + ['packrgbm_2907',['packRGBM',['../a00916.html#ga0466daf4c90f76cc64b3f105ce727295',1,'glm']]], + ['packsnorm_2908',['packSnorm',['../a00916.html#gaa54b5855a750d6aeb12c1c902f5939b8',1,'glm']]], + ['packsnorm1x16_2909',['packSnorm1x16',['../a00916.html#gab22f8bcfdb5fc65af4701b25f143c1af',1,'glm']]], + ['packsnorm1x8_2910',['packSnorm1x8',['../a00916.html#gae3592e0795e62aaa1865b3a10496a7a1',1,'glm']]], + ['packsnorm2x16_2911',['packSnorm2x16',['../a00994.html#ga977ab172da5494e5ac63e952afacfbe2',1,'glm']]], + ['packsnorm2x8_2912',['packSnorm2x8',['../a00916.html#ga6be3cfb2cce3702f03e91bbeb5286d7e',1,'glm']]], + ['packsnorm3x10_5f1x2_2913',['packSnorm3x10_1x2',['../a00916.html#gab997545661877d2c7362a5084d3897d3',1,'glm']]], + ['packsnorm4x16_2914',['packSnorm4x16',['../a00916.html#ga358943934d21da947d5bcc88c2ab7832',1,'glm']]], + ['packsnorm4x8_2915',['packSnorm4x8',['../a00994.html#ga85e8f17627516445026ab7a9c2e3531a',1,'glm']]], + ['packu3x10_5f1x2_2916',['packU3x10_1x2',['../a00916.html#gada3d88d59f0f458f9c51a9fd359a4bc0',1,'glm']]], + ['packuint2x16_2917',['packUint2x16',['../a00916.html#ga5eecc9e8cbaf51ac6cf57501e670ee19',1,'glm']]], + ['packuint2x32_2918',['packUint2x32',['../a00916.html#gaa864081097b86e83d8e4a4d79c382b22',1,'glm']]], + ['packuint2x8_2919',['packUint2x8',['../a00916.html#ga3c3c9fb53ae7823b10fa083909357590',1,'glm']]], + ['packuint4x16_2920',['packUint4x16',['../a00916.html#ga2ceb62cca347d8ace42ee90317a3f1f9',1,'glm']]], + ['packuint4x8_2921',['packUint4x8',['../a00916.html#gaa0fe2f09aeb403cd66c1a062f58861ab',1,'glm']]], + ['packunorm_2922',['packUnorm',['../a00916.html#gaccd3f27e6ba5163eb7aa9bc8ff96251a',1,'glm']]], + ['packunorm1x16_2923',['packUnorm1x16',['../a00916.html#ga9f82737bf2a44bedff1d286b76837886',1,'glm']]], + ['packunorm1x5_5f1x6_5f1x5_2924',['packUnorm1x5_1x6_1x5',['../a00916.html#ga768e0337dd6246773f14aa0a421fe9a8',1,'glm']]], + ['packunorm1x8_2925',['packUnorm1x8',['../a00916.html#ga4b2fa60df3460403817d28b082ee0736',1,'glm']]], + ['packunorm2x16_2926',['packUnorm2x16',['../a00994.html#ga0e2d107039fe608a209497af867b85fb',1,'glm']]], + ['packunorm2x3_5f1x2_2927',['packUnorm2x3_1x2',['../a00916.html#ga7f9abdb50f9be1aa1c14912504a0d98d',1,'glm']]], + ['packunorm2x4_2928',['packUnorm2x4',['../a00916.html#gab6bbd5be3b8e6db538ecb33a7844481c',1,'glm']]], + ['packunorm2x8_2929',['packUnorm2x8',['../a00916.html#ga9a666b1c688ab54100061ed06526de6e',1,'glm']]], + ['packunorm3x10_5f1x2_2930',['packUnorm3x10_1x2',['../a00916.html#ga8a1ee625d2707c60530fb3fca2980b19',1,'glm']]], + ['packunorm3x5_5f1x1_2931',['packUnorm3x5_1x1',['../a00916.html#gaec4112086d7fb133bea104a7c237de52',1,'glm']]], + ['packunorm4x16_2932',['packUnorm4x16',['../a00916.html#ga1f63c264e7ab63264e2b2a99fd393897',1,'glm']]], + ['packunorm4x4_2933',['packUnorm4x4',['../a00916.html#gad3e7e3ce521513584a53aedc5f9765c1',1,'glm']]], + ['packunorm4x8_2934',['packUnorm4x8',['../a00994.html#gaf7d2f7341a9eeb4a436929d6f9ad08f2',1,'glm']]], + ['perlin_2935',['perlin',['../a00915.html#ga1e043ce3b51510e9bc4469227cefc38a',1,'glm::perlin(vec< L, T, Q > const &p)'],['../a00915.html#gac270edc54c5fc52f5985a45f940bb103',1,'glm::perlin(vec< L, T, Q > const &p, vec< L, T, Q > const &rep)']]], + ['perp_2936',['perp',['../a00969.html#ga264cfc4e180cf9b852e943b35089003c',1,'glm']]], + ['perspective_2937',['perspective',['../a00814.html#ga747c8cf99458663dd7ad1bb3a2f07787',1,'glm']]], + ['perspectivefov_2938',['perspectiveFov',['../a00814.html#gaebd02240fd36e85ad754f02ddd9a560d',1,'glm']]], + ['perspectivefovlh_2939',['perspectiveFovLH',['../a00814.html#ga6aebe16c164bd8e52554cbe0304ef4aa',1,'glm']]], + ['perspectivefovlh_5fno_2940',['perspectiveFovLH_NO',['../a00814.html#gad18a4495b77530317327e8d466488c1a',1,'glm']]], + ['perspectivefovlh_5fzo_2941',['perspectiveFovLH_ZO',['../a00814.html#gabdd37014f529e25b2fa1b3ba06c10d5c',1,'glm']]], + ['perspectivefovno_2942',['perspectiveFovNO',['../a00814.html#gaf30e7bd3b1387a6776433dd5383e6633',1,'glm']]], + ['perspectivefovrh_2943',['perspectiveFovRH',['../a00814.html#gaf32bf563f28379c68554a44ee60c6a85',1,'glm']]], + ['perspectivefovrh_5fno_2944',['perspectiveFovRH_NO',['../a00814.html#ga257b733ff883c9a065801023cf243eb2',1,'glm']]], + ['perspectivefovrh_5fzo_2945',['perspectiveFovRH_ZO',['../a00814.html#ga7dcbb25331676f5b0795aced1a905c44',1,'glm']]], + ['perspectivefovzo_2946',['perspectiveFovZO',['../a00814.html#ga4bc69fa1d1f95128430aa3d2a712390b',1,'glm']]], + ['perspectivelh_2947',['perspectiveLH',['../a00814.html#ga9bd34951dc7022ac256fcb51d7f6fc2f',1,'glm']]], + ['perspectivelh_5fno_2948',['perspectiveLH_NO',['../a00814.html#gaead4d049d1feab463b700b5641aa590e',1,'glm']]], + ['perspectivelh_5fzo_2949',['perspectiveLH_ZO',['../a00814.html#gaca32af88c2719005c02817ad1142986c',1,'glm']]], + ['perspectiveno_2950',['perspectiveNO',['../a00814.html#gaf497e6bca61e7c87088370b126a93758',1,'glm']]], + ['perspectiverh_2951',['perspectiveRH',['../a00814.html#ga26b88757fbd90601b80768a7e1ad3aa1',1,'glm']]], + ['perspectiverh_5fno_2952',['perspectiveRH_NO',['../a00814.html#gad1526cb2cbe796095284e8f34b01c582',1,'glm']]], + ['perspectiverh_5fzo_2953',['perspectiveRH_ZO',['../a00814.html#ga4da358d6e1b8e5b9ae35d1f3f2dc3b9a',1,'glm']]], + ['perspectivezo_2954',['perspectiveZO',['../a00814.html#gaa9dfba5c2322da54f72b1eb7c7c11b47',1,'glm']]], + ['pi_2955',['pi',['../a00867.html#ga94bafeb2a0f23ab6450fed1f98ee4e45',1,'glm']]], + ['pickmatrix_2956',['pickMatrix',['../a00835.html#gaf6b21eadb7ac2ecbbe258a9a233b4c82',1,'glm']]], + ['pitch_2957',['pitch',['../a00917.html#ga7603e81477b46ddb448896909bc04928',1,'glm']]], + ['polar_2958',['polar',['../a00970.html#gab83ac2c0e55b684b06b6c46c28b1590d',1,'glm']]], + ['pow_2959',['pow',['../a00813.html#ga2254981952d4f333b900a6bf5167a6c4',1,'glm::pow(vec< L, T, Q > const &base, vec< L, T, Q > const &exponent)'],['../a00864.html#ga4975ffcacd312a8c0bbd046a76c5607e',1,'glm::pow(qua< T, Q > const &q, T y)'],['../a00948.html#ga465016030a81d513fa2fac881ebdaa83',1,'glm::pow(int x, uint y)'],['../a00948.html#ga998e5ee915d3769255519e2fbaa2bbf0',1,'glm::pow(uint x, uint y)']]], + ['pow2_2960',['pow2',['../a00966.html#ga7288d7bb23f192bd64a60ba2a61a1c9f',1,'glm']]], + ['pow3_2961',['pow3',['../a00966.html#ga156e452c2d630001bb07f4a6f1060a10',1,'glm']]], + ['pow4_2962',['pow4',['../a00966.html#ga830b64f3b47818374e9d03cc20fadbf3',1,'glm']]], + ['poweroftwoabove_2963',['powerOfTwoAbove',['../a00927.html#ga8cda2459871f574a0aecbe702ac93291',1,'glm::powerOfTwoAbove(genIUType Value)'],['../a00927.html#ga2bbded187c5febfefc1e524ba31b3fab',1,'glm::powerOfTwoAbove(vec< L, T, Q > const &value)']]], + ['poweroftwobelow_2964',['powerOfTwoBelow',['../a00927.html#ga3de7df63c589325101a2817a56f8e29d',1,'glm::powerOfTwoBelow(genIUType Value)'],['../a00927.html#gaf78ddcc4152c051b2a21e68fecb10980',1,'glm::powerOfTwoBelow(vec< L, T, Q > const &value)']]], + ['poweroftwonearest_2965',['powerOfTwoNearest',['../a00927.html#ga5f65973a5d2ea38c719e6a663149ead9',1,'glm::powerOfTwoNearest(genIUType Value)'],['../a00927.html#gac87e65d11e16c3d6b91c3bcfaef7da0b',1,'glm::powerOfTwoNearest(vec< L, T, Q > const &value)']]], + ['prev_5ffloat_2966',['prev_float',['../a00924.html#gaf2a8466ad7470fcafaf91b24b43d1d4d',1,'glm::prev_float(genType x)'],['../a00924.html#ga71d68bb1fff11ac1c757d44cd23ddf50',1,'glm::prev_float(genType x, int ULPs)'],['../a00924.html#gaf2268a89effe42c4d6952085fa616cee',1,'glm::prev_float(vec< L, T, Q > const &x)'],['../a00924.html#gaa761d18f8e3a93752550c9ce9556749c',1,'glm::prev_float(vec< L, T, Q > const &x, int ULPs)'],['../a00924.html#ga471608a1ffbf4472dc5c84216ea937e8',1,'glm::prev_float(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)']]], + ['prevfloat_2967',['prevFloat',['../a00874.html#ga25320ace5b3e239405077912eb4e7bf9',1,'glm::prevFloat(genType x)'],['../a00874.html#ga760b98a221f1f511edbcdf0b06c49841',1,'glm::prevFloat(genType x, int ULPs)'],['../a00896.html#ga82d4ce132256c1a70d0e7100e6eae2e1',1,'glm::prevFloat(vec< L, T, Q > const &x)'],['../a00896.html#ga4ab818050036d40994346defe41a05b9',1,'glm::prevFloat(vec< L, T, Q > const &x, int ULPs)'],['../a00896.html#ga569e3ce6771e1e4f9e425ec6d859d9f9',1,'glm::prevFloat(vec< L, T, Q > const &x, vec< L, int, Q > const &ULPs)']]], + ['prevmultiple_2968',['prevMultiple',['../a00869.html#gada3bdd871ffe31f2d484aa668362f636',1,'glm::prevMultiple(genIUType v, genIUType Multiple)'],['../a00887.html#ga7b3915a7cd3d50ff4976ab7a75a6880a',1,'glm::prevMultiple(vec< L, T, Q > const &v, T Multiple)'],['../a00887.html#ga51e04379e8aebbf83e2e5ab094578ee9',1,'glm::prevMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['prevpoweroftwo_2969',['prevPowerOfTwo',['../a00869.html#gab21902a0e7e5a8451a7ad80333618727',1,'glm::prevPowerOfTwo(genIUType v)'],['../a00887.html#ga759db73f14d79f63612bd2398b577e7a',1,'glm::prevPowerOfTwo(vec< L, T, Q > const &v)']]], + ['proj_2970',['proj',['../a00971.html#ga58384b7170801dd513de46f87c7fb00e',1,'glm']]], + ['proj2d_2971',['proj2D',['../a00985.html#ga5b992a0cdc8298054edb68e228f0d93e',1,'glm']]], + ['proj3d_2972',['proj3D',['../a00985.html#gaa2b7f4f15b98f697caede11bef50509e',1,'glm']]], + ['project_2973',['project',['../a00835.html#gaf36e96033f456659e6705472a06b6e11',1,'glm']]], + ['projectno_2974',['projectNO',['../a00835.html#ga05249751f48d14cb282e4979802b8111',1,'glm']]], + ['projectzo_2975',['projectZO',['../a00835.html#ga77d157525063dec83a557186873ee080',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_e.html b/include/glm/doc/api/search/functions_e.html new file mode 100644 index 0000000..705e3de --- /dev/null +++ b/include/glm/doc/api/search/functions_e.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_e.js b/include/glm/doc/api/search/functions_e.js new file mode 100644 index 0000000..b85bdd3 --- /dev/null +++ b/include/glm/doc/api/search/functions_e.js @@ -0,0 +1,19 @@ +var searchData= +[ + ['qr_5fdecompose_2976',['qr_decompose',['../a00955.html#ga2b88704e76f42a8894072e73101a56c3',1,'glm']]], + ['quadraticeasein_2977',['quadraticEaseIn',['../a00936.html#gaf42089d35855695132d217cd902304a0',1,'glm']]], + ['quadraticeaseinout_2978',['quadraticEaseInOut',['../a00936.html#ga03e8fc2d7945a4e63ee33b2159c14cea',1,'glm']]], + ['quadraticeaseout_2979',['quadraticEaseOut',['../a00936.html#ga283717bc2d937547ad34ec0472234ee3',1,'glm']]], + ['quarter_5fpi_2980',['quarter_pi',['../a00908.html#ga3c9df42bd73c519a995c43f0f99e77e0',1,'glm']]], + ['quarticeasein_2981',['quarticEaseIn',['../a00936.html#ga808b41f14514f47dad5dcc69eb924afd',1,'glm']]], + ['quarticeaseinout_2982',['quarticEaseInOut',['../a00936.html#ga6d000f852de12b197e154f234b20c505',1,'glm']]], + ['quarticeaseout_2983',['quarticEaseOut',['../a00936.html#ga4dfb33fa7664aa888eb647999d329b98',1,'glm']]], + ['quat_5fcast_2984',['quat_cast',['../a00917.html#ga1108a4ab88ca87bac321454eea7702f8',1,'glm::quat_cast(mat< 3, 3, T, Q > const &x)'],['../a00917.html#ga4524810f07f72e8c7bdc7764fa11cb58',1,'glm::quat_cast(mat< 4, 4, T, Q > const &x)']]], + ['quat_5fidentity_2985',['quat_identity',['../a00972.html#ga77d9e2c313b98a1002a1b12408bf5b45',1,'glm']]], + ['quatlookat_2986',['quatLookAt',['../a00917.html#gabe7fc5ec5feb41ab234d5d2b6254697f',1,'glm']]], + ['quatlookatlh_2987',['quatLookAtLH',['../a00917.html#ga2da350c73411be3bb19441b226b81a74',1,'glm']]], + ['quatlookatrh_2988',['quatLookAtRH',['../a00917.html#gaf6529ac8c04a57fcc35865b5c9437cc8',1,'glm']]], + ['quinticeasein_2989',['quinticEaseIn',['../a00936.html#ga097579d8e087dcf48037588140a21640',1,'glm']]], + ['quinticeaseinout_2990',['quinticEaseInOut',['../a00936.html#ga2a82d5c46df7e2d21cc0108eb7b83934',1,'glm']]], + ['quinticeaseout_2991',['quinticEaseOut',['../a00936.html#ga7dbd4d5c8da3f5353121f615e7b591d7',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/functions_f.html b/include/glm/doc/api/search/functions_f.html new file mode 100644 index 0000000..7de862c --- /dev/null +++ b/include/glm/doc/api/search/functions_f.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/functions_f.js b/include/glm/doc/api/search/functions_f.js new file mode 100644 index 0000000..8ce5e64 --- /dev/null +++ b/include/glm/doc/api/search/functions_f.js @@ -0,0 +1,35 @@ +var searchData= +[ + ['radialgradient_2992',['radialGradient',['../a00945.html#gaaecb1e93de4cbe0758b882812d4da294',1,'glm']]], + ['radians_2993',['radians',['../a00995.html#ga6e1db4862c5e25afd553930e2fdd6a68',1,'glm']]], + ['reflect_2994',['reflect',['../a00897.html#ga5631dd1d5618de5450b1ea3cf3e94905',1,'glm']]], + ['refract_2995',['refract',['../a00897.html#ga01da3dff9e2ef6b9d4915c3047e22b74',1,'glm']]], + ['repeat_2996',['repeat',['../a00866.html#ga809650c6310ea7c42666e918c117fb6f',1,'glm::repeat(genType const &Texcoord)'],['../a00877.html#ga3025883ad3d8b69a8a1ec65368268be7',1,'glm::repeat(vec< L, T, Q > const &Texcoord)']]], + ['rgb2ycocg_2997',['rgb2YCoCg',['../a00931.html#ga0606353ec2a9b9eaa84f1b02ec391bc5',1,'glm']]], + ['rgb2ycocgr_2998',['rgb2YCoCgR',['../a00931.html#ga0389772e44ca0fd2ba4a79bdd8efe898',1,'glm']]], + ['rgbcolor_2999',['rgbColor',['../a00930.html#ga5f9193be46f45f0655c05a0cdca006db',1,'glm']]], + ['righthanded_3000',['rightHanded',['../a00946.html#ga99386a5ab5491871b947076e21699cc8',1,'glm']]], + ['roll_3001',['roll',['../a00917.html#ga0cc5ad970d0b00829b139fe0fe5a1e13',1,'glm']]], + ['root_5ffive_3002',['root_five',['../a00908.html#gae9ebbded75b53d4faeb1e4ef8b3347a2',1,'glm']]], + ['root_5fhalf_5fpi_3003',['root_half_pi',['../a00908.html#ga4e276cb823cc5e612d4f89ed99c75039',1,'glm']]], + ['root_5fln_5ffour_3004',['root_ln_four',['../a00908.html#ga4129412e96b33707a77c1a07652e23e2',1,'glm']]], + ['root_5fpi_3005',['root_pi',['../a00908.html#ga261380796b2cd496f68d2cf1d08b8eb9',1,'glm']]], + ['root_5fthree_3006',['root_three',['../a00908.html#ga4f286be4abe88be1eed7d2a9f6cb193e',1,'glm']]], + ['root_5ftwo_3007',['root_two',['../a00908.html#ga74e607d29020f100c0d0dc46ce2ca950',1,'glm']]], + ['root_5ftwo_5fpi_3008',['root_two_pi',['../a00908.html#ga2bcedc575039fe0cd765742f8bbb0bd3',1,'glm']]], + ['rotate_3009',['rotate',['../a00837.html#gaee9e865eaa9776370996da2940873fd4',1,'glm::rotate(mat< 4, 4, T, Q > const &m, T angle, vec< 3, T, Q > const &axis)'],['../a00864.html#gabfc57de6d4d2e11970f54119c5ccf0f5',1,'glm::rotate(qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)'],['../a00960.html#gad5c84a4932a758f385a87098ce1b1660',1,'glm::rotate(mat< 3, 3, T, Q > const &m, T angle)'],['../a00972.html#ga07da6ef58646442efe93b0c273d73776',1,'glm::rotate(qua< T, Q > const &q, vec< 3, T, Q > const &v)'],['../a00972.html#gafcb78dfff45fbf19a7fcb2bd03fbf196',1,'glm::rotate(qua< T, Q > const &q, vec< 4, T, Q > const &v)'],['../a00976.html#gab64a67b52ff4f86c3ba16595a5a25af6',1,'glm::rotate(vec< 2, T, Q > const &v, T const &angle)'],['../a00976.html#ga1ba501ef83d1a009a17ac774cc560f21',1,'glm::rotate(vec< 3, T, Q > const &v, T const &angle, vec< 3, T, Q > const &normal)'],['../a00976.html#ga1005f1267ed9c57faa3f24cf6873b961',1,'glm::rotate(vec< 4, T, Q > const &v, T const &angle, vec< 3, T, Q > const &normal)'],['../a00984.html#gaf599be4c0e9d99be1f9cddba79b6018b',1,'glm::rotate(T angle, vec< 3, T, Q > const &v)']]], + ['rotatenormalizedaxis_3010',['rotateNormalizedAxis',['../a00975.html#ga50efd7ebca0f7a603bb3cc11e34c708d',1,'glm::rotateNormalizedAxis(mat< 4, 4, T, Q > const &m, T const &angle, vec< 3, T, Q > const &axis)'],['../a00975.html#ga08f9c5411437d528019a25bfc01473d1',1,'glm::rotateNormalizedAxis(qua< T, Q > const &q, T const &angle, vec< 3, T, Q > const &axis)']]], + ['rotatex_3011',['rotateX',['../a00976.html#ga059fdbdba4cca35cdff172a9d0d0afc9',1,'glm::rotateX(vec< 3, T, Q > const &v, T const &angle)'],['../a00976.html#ga4333b1ea8ebf1bd52bc3801a7617398a',1,'glm::rotateX(vec< 4, T, Q > const &v, T const &angle)']]], + ['rotatey_3012',['rotateY',['../a00976.html#gaebdc8b054ace27d9f62e054531c6f44d',1,'glm::rotateY(vec< 3, T, Q > const &v, T const &angle)'],['../a00976.html#ga3ce3db0867b7f8efd878ee34f95a623b',1,'glm::rotateY(vec< 4, T, Q > const &v, T const &angle)']]], + ['rotatez_3013',['rotateZ',['../a00976.html#ga5a048838a03f6249acbacb4dbacf79c4',1,'glm::rotateZ(vec< 3, T, Q > const &v, T const &angle)'],['../a00976.html#ga923b75c6448161053768822d880702e6',1,'glm::rotateZ(vec< 4, T, Q > const &v, T const &angle)']]], + ['rotation_3014',['rotation',['../a00972.html#ga03e61282831cc3f52cc76f72f52ad2c5',1,'glm']]], + ['round_3015',['round',['../a00812.html#gafa03aca8c4713e1cc892aa92ca135a7e',1,'glm']]], + ['roundeven_3016',['roundEven',['../a00812.html#ga76b81785045a057989a84d99aeeb1578',1,'glm']]], + ['roundmultiple_3017',['roundMultiple',['../a00920.html#gab892defcc9c0b0618df7251253dc0fbb',1,'glm::roundMultiple(genType v, genType Multiple)'],['../a00920.html#ga2f1a68332d761804c054460a612e3a4b',1,'glm::roundMultiple(vec< L, T, Q > const &v, vec< L, T, Q > const &Multiple)']]], + ['roundpoweroftwo_3018',['roundPowerOfTwo',['../a00920.html#gae4e1bf5d1cd179f59261a7342bdcafca',1,'glm::roundPowerOfTwo(genIUType v)'],['../a00920.html#ga258802a7d55c03c918f28cf4d241c4d0',1,'glm::roundPowerOfTwo(vec< L, T, Q > const &v)']]], + ['row_3019',['row',['../a00911.html#ga259e5ebd0f31ec3f83440f8cae7f5dba',1,'glm::row(genType const &m, length_t index)'],['../a00911.html#gaadcc64829aadf4103477679e48c7594f',1,'glm::row(genType const &m, length_t index, typename genType::row_type const &x)']]], + ['rowmajor2_3020',['rowMajor2',['../a00957.html#gaf5b1aee9e3eb1acf9d6c3c8be1e73bb8',1,'glm::rowMajor2(vec< 2, T, Q > const &v1, vec< 2, T, Q > const &v2)'],['../a00957.html#gaf66c75ed69ca9e87462550708c2c6726',1,'glm::rowMajor2(mat< 2, 2, T, Q > const &m)']]], + ['rowmajor3_3021',['rowMajor3',['../a00957.html#ga2ae46497493339f745754e40f438442e',1,'glm::rowMajor3(vec< 3, T, Q > const &v1, vec< 3, T, Q > const &v2, vec< 3, T, Q > const &v3)'],['../a00957.html#gad8a3a50ab47bbe8d36cdb81d90dfcf77',1,'glm::rowMajor3(mat< 3, 3, T, Q > const &m)']]], + ['rowmajor4_3022',['rowMajor4',['../a00957.html#ga9636cd6bbe2c32a8d0c03ffb8b1ef284',1,'glm::rowMajor4(vec< 4, T, Q > const &v1, vec< 4, T, Q > const &v2, vec< 4, T, Q > const &v3, vec< 4, T, Q > const &v4)'],['../a00957.html#gac92ad1c2acdf18d3eb7be45a32f9566b',1,'glm::rowMajor4(mat< 4, 4, T, Q > const &m)']]], + ['rq_5fdecompose_3023',['rq_decompose',['../a00955.html#ga90ce5524aa7390a722817f6c9342e360',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/groups_0.html b/include/glm/doc/api/search/groups_0.html new file mode 100644 index 0000000..5d72bbb --- /dev/null +++ b/include/glm/doc/api/search/groups_0.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_0.js b/include/glm/doc/api/search/groups_0.js new file mode 100644 index 0000000..a1b0a6b --- /dev/null +++ b/include/glm/doc/api/search/groups_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['angle_20and_20trigonometry_20functions_4404',['Angle and Trigonometry Functions',['../a00995.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/groups_1.html b/include/glm/doc/api/search/groups_1.html new file mode 100644 index 0000000..2909493 --- /dev/null +++ b/include/glm/doc/api/search/groups_1.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_1.js b/include/glm/doc/api/search/groups_1.js new file mode 100644 index 0000000..914ef00 --- /dev/null +++ b/include/glm/doc/api/search/groups_1.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['core_20features_4405',['Core features',['../a00898.html',1,'']]], + ['common_20functions_4406',['Common functions',['../a00812.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/groups_2.html b/include/glm/doc/api/search/groups_2.html new file mode 100644 index 0000000..ec36b21 --- /dev/null +++ b/include/glm/doc/api/search/groups_2.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_2.js b/include/glm/doc/api/search/groups_2.js new file mode 100644 index 0000000..2289eb5 --- /dev/null +++ b/include/glm/doc/api/search/groups_2.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['exponential_20functions_4407',['Exponential functions',['../a00813.html',1,'']]], + ['experimental_20extensions_4408',['Experimental extensions',['../a00905.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/groups_3.html b/include/glm/doc/api/search/groups_3.html new file mode 100644 index 0000000..fc86ed9 --- /dev/null +++ b/include/glm/doc/api/search/groups_3.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_3.js b/include/glm/doc/api/search/groups_3.js new file mode 100644 index 0000000..a44ae95 --- /dev/null +++ b/include/glm/doc/api/search/groups_3.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['floating_2dpoint_20pack_20and_20unpack_20functions_4409',['Floating-Point Pack and Unpack Functions',['../a00994.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/groups_4.html b/include/glm/doc/api/search/groups_4.html new file mode 100644 index 0000000..0276a69 --- /dev/null +++ b/include/glm/doc/api/search/groups_4.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_4.js b/include/glm/doc/api/search/groups_4.js new file mode 100644 index 0000000..9b12136 --- /dev/null +++ b/include/glm/doc/api/search/groups_4.js @@ -0,0 +1,173 @@ +var searchData= +[ + ['geometric_20functions_4410',['Geometric functions',['../a00897.html',1,'']]], + ['glm_5fext_5fmatrix_5fclip_5fspace_4411',['GLM_EXT_matrix_clip_space',['../a00814.html',1,'']]], + ['glm_5fext_5fmatrix_5fcommon_4412',['GLM_EXT_matrix_common',['../a00815.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x2_4413',['GLM_EXT_matrix_int2x2',['../a00816.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x2_5fsized_4414',['GLM_EXT_matrix_int2x2_sized',['../a00817.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x3_4415',['GLM_EXT_matrix_int2x3',['../a00818.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x3_5fsized_4416',['GLM_EXT_matrix_int2x3_sized',['../a00819.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x4_4417',['GLM_EXT_matrix_int2x4',['../a00820.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x4_5fsized_4418',['GLM_EXT_matrix_int2x4_sized',['../a00821.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x2_4419',['GLM_EXT_matrix_int3x2',['../a00822.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x2_5fsized_4420',['GLM_EXT_matrix_int3x2_sized',['../a00823.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x3_4421',['GLM_EXT_matrix_int3x3',['../a00824.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x3_5fsized_4422',['GLM_EXT_matrix_int3x3_sized',['../a00825.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x4_4423',['GLM_EXT_matrix_int3x4',['../a00826.html',1,'']]], + ['glm_5fext_5fmatrix_5fint3x4_5fsized_4424',['GLM_EXT_matrix_int3x4_sized',['../a00827.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x2_4425',['GLM_EXT_matrix_int4x2',['../a00828.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x2_5fsized_4426',['GLM_EXT_matrix_int4x2_sized',['../a00829.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x3_4427',['GLM_EXT_matrix_int4x3',['../a00830.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x3_5fsized_4428',['GLM_EXT_matrix_int4x3_sized',['../a00831.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x4_4429',['GLM_EXT_matrix_int4x4',['../a00832.html',1,'']]], + ['glm_5fext_5fmatrix_5fint4x4_5fsized_4430',['GLM_EXT_matrix_int4x4_sized',['../a00833.html',1,'']]], + ['glm_5fext_5fmatrix_5finteger_4431',['GLM_EXT_matrix_integer',['../a00834.html',1,'']]], + ['glm_5fext_5fmatrix_5fprojection_4432',['GLM_EXT_matrix_projection',['../a00835.html',1,'']]], + ['glm_5fext_5fmatrix_5frelational_4433',['GLM_EXT_matrix_relational',['../a00836.html',1,'']]], + ['glm_5fext_5fmatrix_5ftransform_4434',['GLM_EXT_matrix_transform',['../a00837.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x2_4435',['GLM_EXT_matrix_uint2x2',['../a00838.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x2_5fsized_4436',['GLM_EXT_matrix_uint2x2_sized',['../a00839.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x3_4437',['GLM_EXT_matrix_uint2x3',['../a00840.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x3_5fsized_4438',['GLM_EXT_matrix_uint2x3_sized',['../a00841.html',1,'']]], + ['glm_5fext_5fmatrix_5fint2x4_4439',['GLM_EXT_matrix_int2x4',['../a00842.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint2x4_5fsized_4440',['GLM_EXT_matrix_uint2x4_sized',['../a00843.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x2_4441',['GLM_EXT_matrix_uint3x2',['../a00844.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x2_5fsized_4442',['GLM_EXT_matrix_uint3x2_sized',['../a00845.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x3_4443',['GLM_EXT_matrix_uint3x3',['../a00846.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x3_5fsized_4444',['GLM_EXT_matrix_uint3x3_sized',['../a00847.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x4_4445',['GLM_EXT_matrix_uint3x4',['../a00848.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint3x4_5fsized_4446',['GLM_EXT_matrix_uint3x4_sized',['../a00849.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x2_4447',['GLM_EXT_matrix_uint4x2',['../a00850.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x2_5fsized_4448',['GLM_EXT_matrix_uint4x2_sized',['../a00851.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x3_4449',['GLM_EXT_matrix_uint4x3',['../a00852.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x3_5fsized_4450',['GLM_EXT_matrix_uint4x3_sized',['../a00853.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x4_4451',['GLM_EXT_matrix_uint4x4',['../a00854.html',1,'']]], + ['glm_5fext_5fmatrix_5fuint4x4_5fsized_4452',['GLM_EXT_matrix_uint4x4_sized',['../a00855.html',1,'']]], + ['glm_5fext_5fquaternion_5fcommon_4453',['GLM_EXT_quaternion_common',['../a00856.html',1,'']]], + ['glm_5fext_5fquaternion_5fdouble_4454',['GLM_EXT_quaternion_double',['../a00857.html',1,'']]], + ['glm_5fext_5fquaternion_5fdouble_5fprecision_4455',['GLM_EXT_quaternion_double_precision',['../a00858.html',1,'']]], + ['glm_5fext_5fquaternion_5fexponential_4456',['GLM_EXT_quaternion_exponential',['../a00859.html',1,'']]], + ['glm_5fext_5fquaternion_5ffloat_4457',['GLM_EXT_quaternion_float',['../a00860.html',1,'']]], + ['glm_5fext_5fquaternion_5ffloat_5fprecision_4458',['GLM_EXT_quaternion_float_precision',['../a00861.html',1,'']]], + ['glm_5fext_5fquaternion_5fgeometric_4459',['GLM_EXT_quaternion_geometric',['../a00862.html',1,'']]], + ['glm_5fext_5fquaternion_5frelational_4460',['GLM_EXT_quaternion_relational',['../a00863.html',1,'']]], + ['glm_5fext_5fquaternion_5ftransform_4461',['GLM_EXT_quaternion_transform',['../a00864.html',1,'']]], + ['glm_5fext_5fquaternion_5ftrigonometric_4462',['GLM_EXT_quaternion_trigonometric',['../a00865.html',1,'']]], + ['glm_5fext_5fscalar_5fcommon_4463',['GLM_EXT_scalar_common',['../a00866.html',1,'']]], + ['glm_5fext_5fscalar_5fconstants_4464',['GLM_EXT_scalar_constants',['../a00867.html',1,'']]], + ['glm_5fext_5fscalar_5fint_5fsized_4465',['GLM_EXT_scalar_int_sized',['../a00868.html',1,'']]], + ['glm_5fext_5fscalar_5finteger_4466',['GLM_EXT_scalar_integer',['../a00869.html',1,'']]], + ['glm_5fext_5fscalar_5fpacking_4467',['GLM_EXT_scalar_packing',['../a00870.html',1,'']]], + ['glm_5fext_5fscalar_5freciprocal_4468',['GLM_EXT_scalar_reciprocal',['../a00871.html',1,'']]], + ['glm_5fext_5fscalar_5frelational_4469',['GLM_EXT_scalar_relational',['../a00872.html',1,'']]], + ['glm_5fext_5fscalar_5fuint_5fsized_4470',['GLM_EXT_scalar_uint_sized',['../a00873.html',1,'']]], + ['glm_5fext_5fscalar_5fulp_4471',['GLM_EXT_scalar_ulp',['../a00874.html',1,'']]], + ['glm_5fext_5fvector_5fbool1_4472',['GLM_EXT_vector_bool1',['../a00875.html',1,'']]], + ['glm_5fext_5fvector_5fbool1_5fprecision_4473',['GLM_EXT_vector_bool1_precision',['../a00876.html',1,'']]], + ['glm_5fext_5fvector_5fcommon_4474',['GLM_EXT_vector_common',['../a00877.html',1,'']]], + ['glm_5fext_5fvector_5fdouble1_4475',['GLM_EXT_vector_double1',['../a00878.html',1,'']]], + ['glm_5fext_5fvector_5fdouble1_5fprecision_4476',['GLM_EXT_vector_double1_precision',['../a00879.html',1,'']]], + ['glm_5fext_5fvector_5ffloat1_4477',['GLM_EXT_vector_float1',['../a00880.html',1,'']]], + ['glm_5fext_5fvector_5ffloat1_5fprecision_4478',['GLM_EXT_vector_float1_precision',['../a00881.html',1,'']]], + ['glm_5fext_5fvector_5fint1_4479',['GLM_EXT_vector_int1',['../a00882.html',1,'']]], + ['glm_5fext_5fvector_5fint1_5fsized_4480',['GLM_EXT_vector_int1_sized',['../a00883.html',1,'']]], + ['glm_5fext_5fvector_5fint2_5fsized_4481',['GLM_EXT_vector_int2_sized',['../a00884.html',1,'']]], + ['glm_5fext_5fvector_5fint3_5fsized_4482',['GLM_EXT_vector_int3_sized',['../a00885.html',1,'']]], + ['glm_5fext_5fvector_5fint4_5fsized_4483',['GLM_EXT_vector_int4_sized',['../a00886.html',1,'']]], + ['glm_5fext_5fvector_5finteger_4484',['GLM_EXT_vector_integer',['../a00887.html',1,'']]], + ['glm_5fext_5fvector_5fpacking_4485',['GLM_EXT_vector_packing',['../a00888.html',1,'']]], + ['glm_5fext_5fvector_5freciprocal_4486',['GLM_EXT_vector_reciprocal',['../a00889.html',1,'']]], + ['glm_5fext_5fvector_5frelational_4487',['GLM_EXT_vector_relational',['../a00890.html',1,'']]], + ['glm_5fext_5fvector_5fuint1_4488',['GLM_EXT_vector_uint1',['../a00891.html',1,'']]], + ['glm_5fext_5fvector_5fuint1_5fsized_4489',['GLM_EXT_vector_uint1_sized',['../a00892.html',1,'']]], + ['glm_5fext_5fvector_5fuint2_5fsized_4490',['GLM_EXT_vector_uint2_sized',['../a00893.html',1,'']]], + ['glm_5fext_5fvector_5fuint3_5fsized_4491',['GLM_EXT_vector_uint3_sized',['../a00894.html',1,'']]], + ['glm_5fext_5fvector_5fuint4_5fsized_4492',['GLM_EXT_vector_uint4_sized',['../a00895.html',1,'']]], + ['glm_5fext_5fvector_5fulp_4493',['GLM_EXT_vector_ulp',['../a00896.html',1,'']]], + ['glm_5fgtc_5fbitfield_4494',['GLM_GTC_bitfield',['../a00906.html',1,'']]], + ['glm_5fgtc_5fcolor_5fspace_4495',['GLM_GTC_color_space',['../a00907.html',1,'']]], + ['glm_5fgtc_5fconstants_4496',['GLM_GTC_constants',['../a00908.html',1,'']]], + ['glm_5fgtc_5fepsilon_4497',['GLM_GTC_epsilon',['../a00909.html',1,'']]], + ['glm_5fgtc_5finteger_4498',['GLM_GTC_integer',['../a00910.html',1,'']]], + ['glm_5fgtc_5fmatrix_5faccess_4499',['GLM_GTC_matrix_access',['../a00911.html',1,'']]], + ['glm_5fgtc_5fmatrix_5finteger_4500',['GLM_GTC_matrix_integer',['../a00912.html',1,'']]], + ['glm_5fgtc_5fmatrix_5finverse_4501',['GLM_GTC_matrix_inverse',['../a00913.html',1,'']]], + ['glm_5fgtc_5fmatrix_5ftransform_4502',['GLM_GTC_matrix_transform',['../a00914.html',1,'']]], + ['glm_5fgtc_5fnoise_4503',['GLM_GTC_noise',['../a00915.html',1,'']]], + ['glm_5fgtc_5fpacking_4504',['GLM_GTC_packing',['../a00916.html',1,'']]], + ['glm_5fgtc_5fquaternion_4505',['GLM_GTC_quaternion',['../a00917.html',1,'']]], + ['glm_5fgtc_5frandom_4506',['GLM_GTC_random',['../a00918.html',1,'']]], + ['glm_5fgtc_5freciprocal_4507',['GLM_GTC_reciprocal',['../a00919.html',1,'']]], + ['glm_5fgtc_5fround_4508',['GLM_GTC_round',['../a00920.html',1,'']]], + ['glm_5fgtc_5ftype_5faligned_4509',['GLM_GTC_type_aligned',['../a00921.html',1,'']]], + ['glm_5fgtc_5ftype_5fprecision_4510',['GLM_GTC_type_precision',['../a00922.html',1,'']]], + ['glm_5fgtc_5ftype_5fptr_4511',['GLM_GTC_type_ptr',['../a00923.html',1,'']]], + ['glm_5fgtc_5fulp_4512',['GLM_GTC_ulp',['../a00924.html',1,'']]], + ['glm_5fgtc_5fvec1_4513',['GLM_GTC_vec1',['../a00925.html',1,'']]], + ['glm_5fgtx_5fassociated_5fmin_5fmax_4514',['GLM_GTX_associated_min_max',['../a00926.html',1,'']]], + ['glm_5fgtx_5fbit_4515',['GLM_GTX_bit',['../a00927.html',1,'']]], + ['glm_5fgtx_5fclosest_5fpoint_4516',['GLM_GTX_closest_point',['../a00928.html',1,'']]], + ['glm_5fgtx_5fcolor_5fencoding_4517',['GLM_GTX_color_encoding',['../a00929.html',1,'']]], + ['glm_5fgtx_5fcolor_5fspace_4518',['GLM_GTX_color_space',['../a00930.html',1,'']]], + ['glm_5fgtx_5fcolor_5fspace_5fycocg_4519',['GLM_GTX_color_space_YCoCg',['../a00931.html',1,'']]], + ['glm_5fgtx_5fcommon_4520',['GLM_GTX_common',['../a00932.html',1,'']]], + ['glm_5fgtx_5fcompatibility_4521',['GLM_GTX_compatibility',['../a00933.html',1,'']]], + ['glm_5fgtx_5fcomponent_5fwise_4522',['GLM_GTX_component_wise',['../a00934.html',1,'']]], + ['glm_5fgtx_5fdual_5fquaternion_4523',['GLM_GTX_dual_quaternion',['../a00935.html',1,'']]], + ['glm_5fgtx_5feasing_4524',['GLM_GTX_easing',['../a00936.html',1,'']]], + ['glm_5fgtx_5feuler_5fangles_4525',['GLM_GTX_euler_angles',['../a00937.html',1,'']]], + ['glm_5fgtx_5fextend_4526',['GLM_GTX_extend',['../a00938.html',1,'']]], + ['glm_5fgtx_5fextended_5fmin_5fmax_4527',['GLM_GTX_extended_min_max',['../a00939.html',1,'']]], + ['glm_5fgtx_5fexterior_5fproduct_4528',['GLM_GTX_exterior_product',['../a00940.html',1,'']]], + ['glm_5fgtx_5ffast_5fexponential_4529',['GLM_GTX_fast_exponential',['../a00941.html',1,'']]], + ['glm_5fgtx_5ffast_5fsquare_5froot_4530',['GLM_GTX_fast_square_root',['../a00942.html',1,'']]], + ['glm_5fgtx_5ffast_5ftrigonometry_4531',['GLM_GTX_fast_trigonometry',['../a00943.html',1,'']]], + ['glm_5fgtx_5ffunctions_4532',['GLM_GTX_functions',['../a00944.html',1,'']]], + ['glm_5fgtx_5fgradient_5fpaint_4533',['GLM_GTX_gradient_paint',['../a00945.html',1,'']]], + ['glm_5fgtx_5fhanded_5fcoordinate_5fspace_4534',['GLM_GTX_handed_coordinate_space',['../a00946.html',1,'']]], + ['glm_5fgtx_5fhash_4535',['GLM_GTX_hash',['../a00947.html',1,'']]], + ['glm_5fgtx_5finteger_4536',['GLM_GTX_integer',['../a00948.html',1,'']]], + ['glm_5fgtx_5fintersect_4537',['GLM_GTX_intersect',['../a00949.html',1,'']]], + ['glm_5fgtx_5fio_4538',['GLM_GTX_io',['../a00950.html',1,'']]], + ['glm_5fgtx_5fiteration_4539',['GLM_GTX_iteration',['../a00951.html',1,'']]], + ['glm_5fgtx_5flog_5fbase_4540',['GLM_GTX_log_base',['../a00952.html',1,'']]], + ['glm_5fgtx_5fmatrix_5fcross_5fproduct_4541',['GLM_GTX_matrix_cross_product',['../a00953.html',1,'']]], + ['glm_5fgtx_5fmatrix_5fdecompose_4542',['GLM_GTX_matrix_decompose',['../a00954.html',1,'']]], + ['glm_5fgtx_5fmatrix_5ffactorisation_4543',['GLM_GTX_matrix_factorisation',['../a00955.html',1,'']]], + ['glm_5fgtx_5fmatrix_5finterpolation_4544',['GLM_GTX_matrix_interpolation',['../a00956.html',1,'']]], + ['glm_5fgtx_5fmatrix_5fmajor_5fstorage_4545',['GLM_GTX_matrix_major_storage',['../a00957.html',1,'']]], + ['glm_5fgtx_5fmatrix_5foperation_4546',['GLM_GTX_matrix_operation',['../a00958.html',1,'']]], + ['glm_5fgtx_5fmatrix_5fquery_4547',['GLM_GTX_matrix_query',['../a00959.html',1,'']]], + ['glm_5fgtx_5fmatrix_5ftransform_5f2d_4548',['GLM_GTX_matrix_transform_2d',['../a00960.html',1,'']]], + ['glm_5fgtx_5fmixed_5fproducte_4549',['GLM_GTX_mixed_producte',['../a00961.html',1,'']]], + ['glm_5fgtx_5fnorm_4550',['GLM_GTX_norm',['../a00962.html',1,'']]], + ['glm_5fgtx_5fnormal_4551',['GLM_GTX_normal',['../a00963.html',1,'']]], + ['glm_5fgtx_5fnormalize_5fdot_4552',['GLM_GTX_normalize_dot',['../a00964.html',1,'']]], + ['glm_5fgtx_5fnumber_5fprecision_4553',['GLM_GTX_number_precision',['../a00965.html',1,'']]], + ['glm_5fgtx_5foptimum_5fpow_4554',['GLM_GTX_optimum_pow',['../a00966.html',1,'']]], + ['glm_5fgtx_5forthonormalize_4555',['GLM_GTX_orthonormalize',['../a00967.html',1,'']]], + ['glm_5fgtx_5fpca_4556',['GLM_GTX_pca',['../a00968.html',1,'']]], + ['glm_5fgtx_5fperpendicular_4557',['GLM_GTX_perpendicular',['../a00969.html',1,'']]], + ['glm_5fgtx_5fpolar_5fcoordinates_4558',['GLM_GTX_polar_coordinates',['../a00970.html',1,'']]], + ['glm_5fgtx_5fprojection_4559',['GLM_GTX_projection',['../a00971.html',1,'']]], + ['glm_5fgtx_5fquaternion_4560',['GLM_GTX_quaternion',['../a00972.html',1,'']]], + ['glm_5fgtx_5frange_4561',['GLM_GTX_range',['../a00973.html',1,'']]], + ['glm_5fgtx_5fraw_5fdata_4562',['GLM_GTX_raw_data',['../a00974.html',1,'']]], + ['glm_5fgtx_5frotate_5fnormalized_5faxis_4563',['GLM_GTX_rotate_normalized_axis',['../a00975.html',1,'']]], + ['glm_5fgtx_5frotate_5fvector_4564',['GLM_GTX_rotate_vector',['../a00976.html',1,'']]], + ['glm_5fgtx_5fscalar_5fmultiplication_4565',['GLM_GTX_scalar_multiplication',['../a00977.html',1,'']]], + ['glm_5fgtx_5fscalar_5frelational_4566',['GLM_GTX_scalar_relational',['../a00978.html',1,'']]], + ['glm_5fgtx_5fspline_4567',['GLM_GTX_spline',['../a00979.html',1,'']]], + ['glm_5fgtx_5fstd_5fbased_5ftype_4568',['GLM_GTX_std_based_type',['../a00980.html',1,'']]], + ['glm_5fgtx_5fstring_5fcast_4569',['GLM_GTX_string_cast',['../a00981.html',1,'']]], + ['glm_5fgtx_5fstructured_5fbindings_4570',['GLM_GTX_structured_bindings',['../a00982.html',1,'']]], + ['glm_5fgtx_5ftexture_4571',['GLM_GTX_texture',['../a00983.html',1,'']]], + ['glm_5fgtx_5ftransform_4572',['GLM_GTX_transform',['../a00984.html',1,'']]], + ['glm_5fgtx_5ftransform2_4573',['GLM_GTX_transform2',['../a00985.html',1,'']]], + ['glm_5fgtx_5ftype_5faligned_4574',['GLM_GTX_type_aligned',['../a00986.html',1,'']]], + ['glm_5fgtx_5ftype_5ftrait_4575',['GLM_GTX_type_trait',['../a00987.html',1,'']]], + ['glm_5fgtx_5fvec_5fswizzle_4576',['GLM_GTX_vec_swizzle',['../a00988.html',1,'']]], + ['glm_5fgtx_5fvector_5fangle_4577',['GLM_GTX_vector_angle',['../a00989.html',1,'']]], + ['glm_5fgtx_5fvector_5fquery_4578',['GLM_GTX_vector_query',['../a00990.html',1,'']]], + ['glm_5fgtx_5fwrap_4579',['GLM_GTX_wrap',['../a00991.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/groups_5.html b/include/glm/doc/api/search/groups_5.html new file mode 100644 index 0000000..1e57d85 --- /dev/null +++ b/include/glm/doc/api/search/groups_5.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_5.js b/include/glm/doc/api/search/groups_5.js new file mode 100644 index 0000000..39ae060 --- /dev/null +++ b/include/glm/doc/api/search/groups_5.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['integer_20functions_4580',['Integer functions',['../a00992.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/groups_6.html b/include/glm/doc/api/search/groups_6.html new file mode 100644 index 0000000..329b5bc --- /dev/null +++ b/include/glm/doc/api/search/groups_6.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_6.js b/include/glm/doc/api/search/groups_6.js new file mode 100644 index 0000000..b4b7d90 --- /dev/null +++ b/include/glm/doc/api/search/groups_6.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['matrix_20functions_4581',['Matrix functions',['../a00993.html',1,'']]], + ['matrix_20types_4582',['Matrix types',['../a00901.html',1,'']]], + ['matrix_20types_20with_20precision_20qualifiers_4583',['Matrix types with precision qualifiers',['../a00902.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/groups_7.html b/include/glm/doc/api/search/groups_7.html new file mode 100644 index 0000000..c7de058 --- /dev/null +++ b/include/glm/doc/api/search/groups_7.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_7.js b/include/glm/doc/api/search/groups_7.js new file mode 100644 index 0000000..d584064 --- /dev/null +++ b/include/glm/doc/api/search/groups_7.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['recommended_20extensions_4584',['Recommended extensions',['../a00904.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/groups_8.html b/include/glm/doc/api/search/groups_8.html new file mode 100644 index 0000000..69cd6c8 --- /dev/null +++ b/include/glm/doc/api/search/groups_8.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_8.js b/include/glm/doc/api/search/groups_8.js new file mode 100644 index 0000000..6774088 --- /dev/null +++ b/include/glm/doc/api/search/groups_8.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['stable_20extensions_4585',['Stable extensions',['../a00903.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/groups_9.html b/include/glm/doc/api/search/groups_9.html new file mode 100644 index 0000000..43f6974 --- /dev/null +++ b/include/glm/doc/api/search/groups_9.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/groups_9.js b/include/glm/doc/api/search/groups_9.js new file mode 100644 index 0000000..cb67299 --- /dev/null +++ b/include/glm/doc/api/search/groups_9.js @@ -0,0 +1,6 @@ +var searchData= +[ + ['vector_20relational_20functions_4586',['Vector Relational Functions',['../a00996.html',1,'']]], + ['vector_20types_4587',['Vector types',['../a00899.html',1,'']]], + ['vector_20types_20with_20precision_20qualifiers_4588',['Vector types with precision qualifiers',['../a00900.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/mag_sel.png b/include/glm/doc/api/search/mag_sel.png new file mode 100644 index 0000000..39c0ed5 Binary files /dev/null and b/include/glm/doc/api/search/mag_sel.png differ diff --git a/include/glm/doc/api/search/nomatches.html b/include/glm/doc/api/search/nomatches.html new file mode 100644 index 0000000..4377320 --- /dev/null +++ b/include/glm/doc/api/search/nomatches.html @@ -0,0 +1,12 @@ + + + + + + + +
    +
    No Matches
    +
    + + diff --git a/include/glm/doc/api/search/pages_0.html b/include/glm/doc/api/search/pages_0.html new file mode 100644 index 0000000..ca7755f --- /dev/null +++ b/include/glm/doc/api/search/pages_0.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/pages_0.js b/include/glm/doc/api/search/pages_0.js new file mode 100644 index 0000000..94fe400 --- /dev/null +++ b/include/glm/doc/api/search/pages_0.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['opengl_20mathematics_20_28glm_29_4589',['OpenGL Mathematics (GLM)',['../index.html',1,'']]] +]; diff --git a/include/glm/doc/api/search/search.css b/include/glm/doc/api/search/search.css new file mode 100644 index 0000000..3cf9df9 --- /dev/null +++ b/include/glm/doc/api/search/search.css @@ -0,0 +1,271 @@ +/*---------------- Search Box */ + +#FSearchBox { + float: left; +} + +#MSearchBox { + white-space : nowrap; + float: none; + margin-top: 8px; + right: 0px; + width: 170px; + height: 24px; + z-index: 102; +} + +#MSearchBox .left +{ + display:block; + position:absolute; + left:10px; + width:20px; + height:19px; + background:url('search_l.png') no-repeat; + background-position:right; +} + +#MSearchSelect { + display:block; + position:absolute; + width:20px; + height:19px; +} + +.left #MSearchSelect { + left:4px; +} + +.right #MSearchSelect { + right:5px; +} + +#MSearchField { + display:block; + position:absolute; + height:19px; + background:url('search_m.png') repeat-x; + border:none; + width:115px; + margin-left:20px; + padding-left:4px; + color: #909090; + outline: none; + font: 9pt Arial, Verdana, sans-serif; + -webkit-border-radius: 0px; +} + +#FSearchBox #MSearchField { + margin-left:15px; +} + +#MSearchBox .right { + display:block; + position:absolute; + right:10px; + top:8px; + width:20px; + height:19px; + background:url('search_r.png') no-repeat; + background-position:left; +} + +#MSearchClose { + display: none; + position: absolute; + top: 4px; + background : none; + border: none; + margin: 0px 4px 0px 0px; + padding: 0px 0px; + outline: none; +} + +.left #MSearchClose { + left: 6px; +} + +.right #MSearchClose { + right: 2px; +} + +.MSearchBoxActive #MSearchField { + color: #000000; +} + +/*---------------- Search filter selection */ + +#MSearchSelectWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #90A5CE; + background-color: #F9FAFC; + z-index: 10001; + padding-top: 4px; + padding-bottom: 4px; + -moz-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +.SelectItem { + font: 8pt Arial, Verdana, sans-serif; + padding-left: 2px; + padding-right: 12px; + border: 0px; +} + +span.SelectionMark { + margin-right: 4px; + font-family: monospace; + outline-style: none; + text-decoration: none; +} + +a.SelectItem { + display: block; + outline-style: none; + color: #000000; + text-decoration: none; + padding-left: 6px; + padding-right: 12px; +} + +a.SelectItem:focus, +a.SelectItem:active { + color: #000000; + outline-style: none; + text-decoration: none; +} + +a.SelectItem:hover { + color: #FFFFFF; + background-color: #3D578C; + outline-style: none; + text-decoration: none; + cursor: pointer; + display: block; +} + +/*---------------- Search results window */ + +iframe#MSearchResults { + width: 60ex; + height: 15em; +} + +#MSearchResultsWindow { + display: none; + position: absolute; + left: 0; top: 0; + border: 1px solid #000; + background-color: #EEF1F7; + z-index:10000; +} + +/* ----------------------------------- */ + + +#SRIndex { + clear:both; + padding-bottom: 15px; +} + +.SREntry { + font-size: 10pt; + padding-left: 1ex; +} + +.SRPage .SREntry { + font-size: 8pt; + padding: 1px 5px; +} + +body.SRPage { + margin: 5px 2px; +} + +.SRChildren { + padding-left: 3ex; padding-bottom: .5em +} + +.SRPage .SRChildren { + display: none; +} + +.SRSymbol { + font-weight: bold; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRScope { + display: block; + color: #425E97; + font-family: Arial, Verdana, sans-serif; + text-decoration: none; + outline: none; +} + +a.SRSymbol:focus, a.SRSymbol:active, +a.SRScope:focus, a.SRScope:active { + text-decoration: underline; +} + +span.SRScope { + padding-left: 4px; +} + +.SRPage .SRStatus { + padding: 2px 5px; + font-size: 8pt; + font-style: italic; +} + +.SRResult { + display: none; +} + +DIV.searchresults { + margin-left: 10px; + margin-right: 10px; +} + +/*---------------- External search page results */ + +.searchresult { + background-color: #F0F3F8; +} + +.pages b { + color: white; + padding: 5px 5px 3px 5px; + background-image: url("../tab_a.png"); + background-repeat: repeat-x; + text-shadow: 0 1px 1px #000000; +} + +.pages { + line-height: 17px; + margin-left: 4px; + text-decoration: none; +} + +.hl { + font-weight: bold; +} + +#searchresults { + margin-bottom: 20px; +} + +.searchpages { + margin-top: 10px; +} + diff --git a/include/glm/doc/api/search/search.js b/include/glm/doc/api/search/search.js new file mode 100644 index 0000000..ff2b8c8 --- /dev/null +++ b/include/glm/doc/api/search/search.js @@ -0,0 +1,814 @@ +/* + @licstart The following is the entire license notice for the JavaScript code in this file. + + The MIT License (MIT) + + Copyright (C) 1997-2020 by Dimitri van Heesch + + Permission is hereby granted, free of charge, to any person obtaining a copy of this software + and associated documentation files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all copies or + substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + @licend The above is the entire license notice for the JavaScript code in this file + */ +function convertToId(search) +{ + var result = ''; + for (i=0;i do a search + { + this.Search(); + } + } + + this.OnSearchSelectKey = function(evt) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==40 && this.searchIndex0) // Up + { + this.searchIndex--; + this.OnSelectItem(this.searchIndex); + } + else if (e.keyCode==13 || e.keyCode==27) + { + this.OnSelectItem(this.searchIndex); + this.CloseSelectionWindow(); + this.DOMSearchField().focus(); + } + return false; + } + + // --------- Actions + + // Closes the results window. + this.CloseResultsWindow = function() + { + this.DOMPopupSearchResultsWindow().style.display = 'none'; + this.DOMSearchClose().style.display = 'none'; + this.Activate(false); + } + + this.CloseSelectionWindow = function() + { + this.DOMSearchSelectWindow().style.display = 'none'; + } + + // Performs a search. + this.Search = function() + { + this.keyTimeout = 0; + + // strip leading whitespace + var searchValue = this.DOMSearchField().value.replace(/^ +/, ""); + + var code = searchValue.toLowerCase().charCodeAt(0); + var idxChar = searchValue.substr(0, 1).toLowerCase(); + if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair + { + idxChar = searchValue.substr(0, 2); + } + + var resultsPage; + var resultsPageWithSearch; + var hasResultsPage; + + var idx = indexSectionsWithContent[this.searchIndex].indexOf(idxChar); + if (idx!=-1) + { + var hexCode=idx.toString(16); + resultsPage = this.resultsPath + '/' + indexSectionNames[this.searchIndex] + '_' + hexCode + '.html'; + resultsPageWithSearch = resultsPage+'?'+escape(searchValue); + hasResultsPage = true; + } + else // nothing available for this search term + { + resultsPage = this.resultsPath + '/nomatches.html'; + resultsPageWithSearch = resultsPage; + hasResultsPage = false; + } + + window.frames.MSearchResults.location = resultsPageWithSearch; + var domPopupSearchResultsWindow = this.DOMPopupSearchResultsWindow(); + + if (domPopupSearchResultsWindow.style.display!='block') + { + var domSearchBox = this.DOMSearchBox(); + this.DOMSearchClose().style.display = 'inline'; + if (this.insideFrame) + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + domPopupSearchResultsWindow.style.position = 'relative'; + domPopupSearchResultsWindow.style.display = 'block'; + var width = document.body.clientWidth - 8; // the -8 is for IE :-( + domPopupSearchResultsWindow.style.width = width + 'px'; + domPopupSearchResults.style.width = width + 'px'; + } + else + { + var domPopupSearchResults = this.DOMPopupSearchResults(); + var left = getXPos(domSearchBox) + 150; // domSearchBox.offsetWidth; + var top = getYPos(domSearchBox) + 20; // domSearchBox.offsetHeight + 1; + domPopupSearchResultsWindow.style.display = 'block'; + left -= domPopupSearchResults.offsetWidth; + domPopupSearchResultsWindow.style.top = top + 'px'; + domPopupSearchResultsWindow.style.left = left + 'px'; + } + } + + this.lastSearchValue = searchValue; + this.lastResultsPage = resultsPage; + } + + // -------- Activation Functions + + // Activates or deactivates the search panel, resetting things to + // their default values if necessary. + this.Activate = function(isActive) + { + if (isActive || // open it + this.DOMPopupSearchResultsWindow().style.display == 'block' + ) + { + this.DOMSearchBox().className = 'MSearchBoxActive'; + + var searchField = this.DOMSearchField(); + + if (searchField.value == this.searchLabel) // clear "Search" term upon entry + { + searchField.value = ''; + this.searchActive = true; + } + } + else if (!isActive) // directly remove the panel + { + this.DOMSearchBox().className = 'MSearchBoxInactive'; + this.DOMSearchField().value = this.searchLabel; + this.searchActive = false; + this.lastSearchValue = '' + this.lastResultsPage = ''; + } + } +} + +// ----------------------------------------------------------------------- + +// The class that handles everything on the search results page. +function SearchResults(name) +{ + // The number of matches from the last run of . + this.lastMatchCount = 0; + this.lastKey = 0; + this.repeatOn = false; + + // Toggles the visibility of the passed element ID. + this.FindChildElement = function(id) + { + var parentElement = document.getElementById(id); + var element = parentElement.firstChild; + + while (element && element!=parentElement) + { + if (element.nodeName == 'DIV' && element.className == 'SRChildren') + { + return element; + } + + if (element.nodeName == 'DIV' && element.hasChildNodes()) + { + element = element.firstChild; + } + else if (element.nextSibling) + { + element = element.nextSibling; + } + else + { + do + { + element = element.parentNode; + } + while (element && element!=parentElement && !element.nextSibling); + + if (element && element!=parentElement) + { + element = element.nextSibling; + } + } + } + } + + this.Toggle = function(id) + { + var element = this.FindChildElement(id); + if (element) + { + if (element.style.display == 'block') + { + element.style.display = 'none'; + } + else + { + element.style.display = 'block'; + } + } + } + + // Searches for the passed string. If there is no parameter, + // it takes it from the URL query. + // + // Always returns true, since other documents may try to call it + // and that may or may not be possible. + this.Search = function(search) + { + if (!search) // get search word from URL + { + search = window.location.search; + search = search.substring(1); // Remove the leading '?' + search = unescape(search); + } + + search = search.replace(/^ +/, ""); // strip leading spaces + search = search.replace(/ +$/, ""); // strip trailing spaces + search = search.toLowerCase(); + search = convertToId(search); + + var resultRows = document.getElementsByTagName("div"); + var matches = 0; + + var i = 0; + while (i < resultRows.length) + { + var row = resultRows.item(i); + if (row.className == "SRResult") + { + var rowMatchName = row.id.toLowerCase(); + rowMatchName = rowMatchName.replace(/^sr\d*_/, ''); // strip 'sr123_' + + if (search.length<=rowMatchName.length && + rowMatchName.substr(0, search.length)==search) + { + row.style.display = 'block'; + matches++; + } + else + { + row.style.display = 'none'; + } + } + i++; + } + document.getElementById("Searching").style.display='none'; + if (matches == 0) // no results + { + document.getElementById("NoMatches").style.display='block'; + } + else // at least one result + { + document.getElementById("NoMatches").style.display='none'; + } + this.lastMatchCount = matches; + return true; + } + + // return the first item with index index or higher that is visible + this.NavNext = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index++; + } + return focusItem; + } + + this.NavPrev = function(index) + { + var focusItem; + while (1) + { + var focusName = 'Item'+index; + focusItem = document.getElementById(focusName); + if (focusItem && focusItem.parentNode.parentNode.style.display=='block') + { + break; + } + else if (!focusItem) // last element + { + break; + } + focusItem=null; + index--; + } + return focusItem; + } + + this.ProcessKeys = function(e) + { + if (e.type == "keydown") + { + this.repeatOn = false; + this.lastKey = e.keyCode; + } + else if (e.type == "keypress") + { + if (!this.repeatOn) + { + if (this.lastKey) this.repeatOn = true; + return false; // ignore first keypress after keydown + } + } + else if (e.type == "keyup") + { + this.lastKey = 0; + this.repeatOn = false; + } + return this.lastKey!=0; + } + + this.Nav = function(evt,itemIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + var newIndex = itemIndex-1; + var focusItem = this.NavPrev(newIndex); + if (focusItem) + { + var child = this.FindChildElement(focusItem.parentNode.parentNode.id); + if (child && child.style.display == 'block') // children visible + { + var n=0; + var tmpElem; + while (1) // search for last child + { + tmpElem = document.getElementById('Item'+newIndex+'_c'+n); + if (tmpElem) + { + focusItem = tmpElem; + } + else // found it! + { + break; + } + n++; + } + } + } + if (focusItem) + { + focusItem.focus(); + } + else // return focus to search field + { + parent.document.getElementById("MSearchField").focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = itemIndex+1; + var focusItem; + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem && elem.style.display == 'block') // children visible + { + focusItem = document.getElementById('Item'+itemIndex+'_c0'); + } + if (!focusItem) focusItem = this.NavNext(newIndex); + if (focusItem) focusItem.focus(); + } + else if (this.lastKey==39) // Right + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'block'; + } + else if (this.lastKey==37) // Left + { + var item = document.getElementById('Item'+itemIndex); + var elem = this.FindChildElement(item.parentNode.parentNode.id); + if (elem) elem.style.display = 'none'; + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } + + this.NavChild = function(evt,itemIndex,childIndex) + { + var e = (evt) ? evt : window.event; // for IE + if (e.keyCode==13) return true; + if (!this.ProcessKeys(e)) return false; + + if (this.lastKey==38) // Up + { + if (childIndex>0) + { + var newIndex = childIndex-1; + document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); + } + else // already at first child, jump to parent + { + document.getElementById('Item'+itemIndex).focus(); + } + } + else if (this.lastKey==40) // Down + { + var newIndex = childIndex+1; + var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex); + if (!elem) // last child, jump to parent next parent + { + elem = this.NavNext(itemIndex+1); + } + if (elem) + { + elem.focus(); + } + } + else if (this.lastKey==27) // Escape + { + parent.searchBox.CloseResultsWindow(); + parent.document.getElementById("MSearchField").focus(); + } + else if (this.lastKey==13) // Enter + { + return true; + } + return false; + } +} + +function setKeyActions(elem,action) +{ + elem.setAttribute('onkeydown',action); + elem.setAttribute('onkeypress',action); + elem.setAttribute('onkeyup',action); +} + +function setClassAttr(elem,attr) +{ + elem.setAttribute('class',attr); + elem.setAttribute('className',attr); +} + +function createResults() +{ + var results = document.getElementById("SRResults"); + for (var e=0; e + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_0.js b/include/glm/doc/api/search/typedefs_0.js new file mode 100644 index 0000000..97df19b --- /dev/null +++ b/include/glm/doc/api/search/typedefs_0.js @@ -0,0 +1,187 @@ +var searchData= +[ + ['aligned_5fbvec1_3127',['aligned_bvec1',['../a00921.html#ga780a35f764020f553a9601a3fcdcd059',1,'glm']]], + ['aligned_5fbvec2_3128',['aligned_bvec2',['../a00921.html#gae766b317c5afec852bfb3d74a3c54bc8',1,'glm']]], + ['aligned_5fbvec3_3129',['aligned_bvec3',['../a00921.html#gae1964ba70d15915e5b710926decbb3cb',1,'glm']]], + ['aligned_5fbvec4_3130',['aligned_bvec4',['../a00921.html#gae164a1f7879f828bc35e50b79d786b05',1,'glm']]], + ['aligned_5fdmat2_3131',['aligned_dmat2',['../a00921.html#ga6783859382677d35fcd5dac7dcbefdbd',1,'glm']]], + ['aligned_5fdmat2x2_3132',['aligned_dmat2x2',['../a00921.html#ga449a3ec2dde6b6bb4bb94c49a6aad388',1,'glm']]], + ['aligned_5fdmat2x3_3133',['aligned_dmat2x3',['../a00921.html#ga53d519a7b1bfb69076b3ec206a6b3bd1',1,'glm']]], + ['aligned_5fdmat2x4_3134',['aligned_dmat2x4',['../a00921.html#ga5ccb2baeb0ab57b818c24e0d486c59d0',1,'glm']]], + ['aligned_5fdmat3_3135',['aligned_dmat3',['../a00921.html#ga19aa695ffdb45ce29f7ea0b5029627de',1,'glm']]], + ['aligned_5fdmat3x2_3136',['aligned_dmat3x2',['../a00921.html#ga5f5123d834bd1170edf8c386834e112c',1,'glm']]], + ['aligned_5fdmat3x3_3137',['aligned_dmat3x3',['../a00921.html#ga635bf3732281a2c2ca54d8f9d33d178f',1,'glm']]], + ['aligned_5fdmat3x4_3138',['aligned_dmat3x4',['../a00921.html#gaf488c6ad88c185054595d4d5c7ba5b9d',1,'glm']]], + ['aligned_5fdmat4_3139',['aligned_dmat4',['../a00921.html#ga001bb387ae8192fa94dbd8b23b600439',1,'glm']]], + ['aligned_5fdmat4x2_3140',['aligned_dmat4x2',['../a00921.html#gaa409cfb737bd59b68dc683e9b03930cc',1,'glm']]], + ['aligned_5fdmat4x3_3141',['aligned_dmat4x3',['../a00921.html#ga621e89ca1dbdcb7b5a3e7de237c44121',1,'glm']]], + ['aligned_5fdmat4x4_3142',['aligned_dmat4x4',['../a00921.html#gac9bda778d0b7ad82f656dab99b71857a',1,'glm']]], + ['aligned_5fdquat_3143',['aligned_dquat',['../a00921.html#gab13e5f42b0c1d36f883ed30b86a55d29',1,'glm']]], + ['aligned_5fdvec1_3144',['aligned_dvec1',['../a00921.html#ga4974f46ae5a19415d91316960a53617a',1,'glm']]], + ['aligned_5fdvec2_3145',['aligned_dvec2',['../a00921.html#ga18d859f87122b2b3b2992ffe86dbebc0',1,'glm']]], + ['aligned_5fdvec3_3146',['aligned_dvec3',['../a00921.html#gaa37869eea77d28419b2fb0ff70b69bf0',1,'glm']]], + ['aligned_5fdvec4_3147',['aligned_dvec4',['../a00921.html#ga8a9f0a4795ccc442fa9901845026f9f5',1,'glm']]], + ['aligned_5fhighp_5fbvec1_3148',['aligned_highp_bvec1',['../a00921.html#ga862843a45b01c35ffe4d44c47ea774ad',1,'glm']]], + ['aligned_5fhighp_5fbvec2_3149',['aligned_highp_bvec2',['../a00921.html#ga0731b593c5e33559954c80f8687e76c6',1,'glm']]], + ['aligned_5fhighp_5fbvec3_3150',['aligned_highp_bvec3',['../a00921.html#ga0913bdf048d0cb74af1d2512aec675bc',1,'glm']]], + ['aligned_5fhighp_5fbvec4_3151',['aligned_highp_bvec4',['../a00921.html#ga9df1d0c425852cf63a57e533b7a83f4f',1,'glm']]], + ['aligned_5fhighp_5fdmat2_3152',['aligned_highp_dmat2',['../a00921.html#ga3a7eeae43cb7673e14cc89bf02f7dd45',1,'glm']]], + ['aligned_5fhighp_5fdmat2x2_3153',['aligned_highp_dmat2x2',['../a00921.html#gaef26dfe3855a91644665b55c9096a8c8',1,'glm']]], + ['aligned_5fhighp_5fdmat2x3_3154',['aligned_highp_dmat2x3',['../a00921.html#gaa7c9d4ab7ab651cdf8001fe7843e238b',1,'glm']]], + ['aligned_5fhighp_5fdmat2x4_3155',['aligned_highp_dmat2x4',['../a00921.html#gaa0d2b8a75f1908dcf32c27f8524bdced',1,'glm']]], + ['aligned_5fhighp_5fdmat3_3156',['aligned_highp_dmat3',['../a00921.html#gad8f6abb2c9994850b5d5c04a5f979ed8',1,'glm']]], + ['aligned_5fhighp_5fdmat3x2_3157',['aligned_highp_dmat3x2',['../a00921.html#gab069b2fc2ec785fc4e193cf26c022679',1,'glm']]], + ['aligned_5fhighp_5fdmat3x3_3158',['aligned_highp_dmat3x3',['../a00921.html#ga66073b1ddef34b681741f572338ddb8e',1,'glm']]], + ['aligned_5fhighp_5fdmat3x4_3159',['aligned_highp_dmat3x4',['../a00921.html#ga683c8ca66de323ea533a760abedd0efc',1,'glm']]], + ['aligned_5fhighp_5fdmat4_3160',['aligned_highp_dmat4',['../a00921.html#gacaa7407ea00ffdd322ce86a57adb547e',1,'glm']]], + ['aligned_5fhighp_5fdmat4x2_3161',['aligned_highp_dmat4x2',['../a00921.html#ga93a23ca3d42818d56e0702213c66354b',1,'glm']]], + ['aligned_5fhighp_5fdmat4x3_3162',['aligned_highp_dmat4x3',['../a00921.html#gacab7374b560745cb1d0a306a90353f58',1,'glm']]], + ['aligned_5fhighp_5fdmat4x4_3163',['aligned_highp_dmat4x4',['../a00921.html#ga1fbfba14368b742972d3b58a0a303682',1,'glm']]], + ['aligned_5fhighp_5fdquat_3164',['aligned_highp_dquat',['../a00921.html#gaf4a25da5becfd7e5df53ec4befa13670',1,'glm']]], + ['aligned_5fhighp_5fdvec1_3165',['aligned_highp_dvec1',['../a00921.html#gaf0448b0f7ceb8273f7eda3a92205eefc',1,'glm']]], + ['aligned_5fhighp_5fdvec2_3166',['aligned_highp_dvec2',['../a00921.html#gab173a333e6b7ce153ceba66ac4a321cf',1,'glm']]], + ['aligned_5fhighp_5fdvec3_3167',['aligned_highp_dvec3',['../a00921.html#gae94ef61edfa047d05bc69b6065fc42ba',1,'glm']]], + ['aligned_5fhighp_5fdvec4_3168',['aligned_highp_dvec4',['../a00921.html#ga8fad35c5677f228e261fe541f15363a4',1,'glm']]], + ['aligned_5fhighp_5fivec1_3169',['aligned_highp_ivec1',['../a00921.html#gad63b8c5b4dc0500d54d7414ef555178f',1,'glm']]], + ['aligned_5fhighp_5fivec2_3170',['aligned_highp_ivec2',['../a00921.html#ga41563650f36cb7f479e080de21e08418',1,'glm']]], + ['aligned_5fhighp_5fivec3_3171',['aligned_highp_ivec3',['../a00921.html#ga6eca5170bb35eac90b4972590fd31a06',1,'glm']]], + ['aligned_5fhighp_5fivec4_3172',['aligned_highp_ivec4',['../a00921.html#ga31bfa801e1579fdba752ec3f7a45ec91',1,'glm']]], + ['aligned_5fhighp_5fmat2_3173',['aligned_highp_mat2',['../a00921.html#gaf9db5e8a929c317da5aa12cc53741b63',1,'glm']]], + ['aligned_5fhighp_5fmat2x2_3174',['aligned_highp_mat2x2',['../a00921.html#gab559d943abf92bc588bcd3f4c0e4664b',1,'glm']]], + ['aligned_5fhighp_5fmat2x3_3175',['aligned_highp_mat2x3',['../a00921.html#ga50c9af5aa3a848956d625fc64dc8488e',1,'glm']]], + ['aligned_5fhighp_5fmat2x4_3176',['aligned_highp_mat2x4',['../a00921.html#ga0edcfdd179f8a158342eead48a4d0c2a',1,'glm']]], + ['aligned_5fhighp_5fmat3_3177',['aligned_highp_mat3',['../a00921.html#gabab3afcc04459c7b123604ae5dc663f6',1,'glm']]], + ['aligned_5fhighp_5fmat3x2_3178',['aligned_highp_mat3x2',['../a00921.html#ga9fc2167b47c9be9295f2d8eea7f0ca75',1,'glm']]], + ['aligned_5fhighp_5fmat3x3_3179',['aligned_highp_mat3x3',['../a00921.html#ga2f7b8c99ba6f2d07c73a195a8143c259',1,'glm']]], + ['aligned_5fhighp_5fmat3x4_3180',['aligned_highp_mat3x4',['../a00921.html#ga52e00afd0eb181e6738f40cf41787049',1,'glm']]], + ['aligned_5fhighp_5fmat4_3181',['aligned_highp_mat4',['../a00921.html#ga058ae939bfdbcbb80521dd4a3b01afba',1,'glm']]], + ['aligned_5fhighp_5fmat4x2_3182',['aligned_highp_mat4x2',['../a00921.html#ga84e1f5e0718952a079b748825c03f956',1,'glm']]], + ['aligned_5fhighp_5fmat4x3_3183',['aligned_highp_mat4x3',['../a00921.html#gafff1684c4ff19b4a818138ccacc1e78d',1,'glm']]], + ['aligned_5fhighp_5fmat4x4_3184',['aligned_highp_mat4x4',['../a00921.html#ga40d49648083a0498a12a4bb41ae6ece8',1,'glm']]], + ['aligned_5fhighp_5fquat_3185',['aligned_highp_quat',['../a00921.html#ga1f4d1cae53972e1ccb16b6710f3ac6a3',1,'glm']]], + ['aligned_5fhighp_5fuvec1_3186',['aligned_highp_uvec1',['../a00921.html#ga5b80e28396c6ef7d32c6fd18df498451',1,'glm']]], + ['aligned_5fhighp_5fuvec2_3187',['aligned_highp_uvec2',['../a00921.html#ga04db692662a4908beeaf5a5ba6e19483',1,'glm']]], + ['aligned_5fhighp_5fuvec3_3188',['aligned_highp_uvec3',['../a00921.html#ga073fd6e8b241afade6d8afbd676b2667',1,'glm']]], + ['aligned_5fhighp_5fuvec4_3189',['aligned_highp_uvec4',['../a00921.html#gabdd60462042859f876c17c7346c732a5',1,'glm']]], + ['aligned_5fhighp_5fvec1_3190',['aligned_highp_vec1',['../a00921.html#ga4d0bd70d5fac49b800546d608b707513',1,'glm']]], + ['aligned_5fhighp_5fvec2_3191',['aligned_highp_vec2',['../a00921.html#gac9f8482dde741fb6bab7248b81a45465',1,'glm']]], + ['aligned_5fhighp_5fvec3_3192',['aligned_highp_vec3',['../a00921.html#ga65415d2d68c9cc0ca554524a8f5510b2',1,'glm']]], + ['aligned_5fhighp_5fvec4_3193',['aligned_highp_vec4',['../a00921.html#ga7cb26d354dd69d23849c34c4fba88da9',1,'glm']]], + ['aligned_5fivec1_3194',['aligned_ivec1',['../a00921.html#ga76298aed82a439063c3d55980c84aa0b',1,'glm']]], + ['aligned_5fivec2_3195',['aligned_ivec2',['../a00921.html#gae4f38fd2c86cee6940986197777b3ca4',1,'glm']]], + ['aligned_5fivec3_3196',['aligned_ivec3',['../a00921.html#ga32794322d294e5ace7fed4a61896f270',1,'glm']]], + ['aligned_5fivec4_3197',['aligned_ivec4',['../a00921.html#ga7f79eae5927c9033d84617e49f6f34e4',1,'glm']]], + ['aligned_5flowp_5fbvec1_3198',['aligned_lowp_bvec1',['../a00921.html#gac6036449ab1c4abf8efe1ea00fcdd1c9',1,'glm']]], + ['aligned_5flowp_5fbvec2_3199',['aligned_lowp_bvec2',['../a00921.html#ga59fadcd3835646e419372ae8b43c5d37',1,'glm']]], + ['aligned_5flowp_5fbvec3_3200',['aligned_lowp_bvec3',['../a00921.html#ga83aab4d191053f169c93a3e364f2e118',1,'glm']]], + ['aligned_5flowp_5fbvec4_3201',['aligned_lowp_bvec4',['../a00921.html#gaa7a76555ee4853614e5755181a8dd54e',1,'glm']]], + ['aligned_5flowp_5fdmat2_3202',['aligned_lowp_dmat2',['../a00921.html#ga79a90173d8faa9816dc852ce447d66ca',1,'glm']]], + ['aligned_5flowp_5fdmat2x2_3203',['aligned_lowp_dmat2x2',['../a00921.html#ga07cb8e846666cbf56045b064fb553d2e',1,'glm']]], + ['aligned_5flowp_5fdmat2x3_3204',['aligned_lowp_dmat2x3',['../a00921.html#ga7a4536b6e1f2ebb690f63816b5d7e48b',1,'glm']]], + ['aligned_5flowp_5fdmat2x4_3205',['aligned_lowp_dmat2x4',['../a00921.html#gab0cf4f7c9a264941519acad286e055ea',1,'glm']]], + ['aligned_5flowp_5fdmat3_3206',['aligned_lowp_dmat3',['../a00921.html#gac00e15efded8a57c9dec3aed0fb547e7',1,'glm']]], + ['aligned_5flowp_5fdmat3x2_3207',['aligned_lowp_dmat3x2',['../a00921.html#gaa281a47d5d627313984d0f8df993b648',1,'glm']]], + ['aligned_5flowp_5fdmat3x3_3208',['aligned_lowp_dmat3x3',['../a00921.html#ga7f3148a72355e39932d6855baca42ebc',1,'glm']]], + ['aligned_5flowp_5fdmat3x4_3209',['aligned_lowp_dmat3x4',['../a00921.html#gaea3ccc5ef5b178e6e49b4fa1427605d3',1,'glm']]], + ['aligned_5flowp_5fdmat4_3210',['aligned_lowp_dmat4',['../a00921.html#gab92c6d7d58d43dfb8147e9aedfe8351b',1,'glm']]], + ['aligned_5flowp_5fdmat4x2_3211',['aligned_lowp_dmat4x2',['../a00921.html#gaf806dfdaffb2e9f7681b1cd2825898ce',1,'glm']]], + ['aligned_5flowp_5fdmat4x3_3212',['aligned_lowp_dmat4x3',['../a00921.html#gab0931ac7807fa1428c7bbf249efcdf0d',1,'glm']]], + ['aligned_5flowp_5fdmat4x4_3213',['aligned_lowp_dmat4x4',['../a00921.html#gad8220a93d2fca2dd707821b4ab6f809e',1,'glm']]], + ['aligned_5flowp_5fdquat_3214',['aligned_lowp_dquat',['../a00921.html#gafe9b7a5f9e4ca385df4b5a3aee5d647e',1,'glm']]], + ['aligned_5flowp_5fdvec1_3215',['aligned_lowp_dvec1',['../a00921.html#ga7f8a2cc5a686e52b1615761f4978ca62',1,'glm']]], + ['aligned_5flowp_5fdvec2_3216',['aligned_lowp_dvec2',['../a00921.html#ga0e37cff4a43cca866101f0a35f01db6d',1,'glm']]], + ['aligned_5flowp_5fdvec3_3217',['aligned_lowp_dvec3',['../a00921.html#gab9e669c4efd52d3347fc6d5f6b20fd59',1,'glm']]], + ['aligned_5flowp_5fdvec4_3218',['aligned_lowp_dvec4',['../a00921.html#ga226f5ec7a953cea559c16fe3aff9924f',1,'glm']]], + ['aligned_5flowp_5fivec1_3219',['aligned_lowp_ivec1',['../a00921.html#ga1101d3a82b2e3f5f8828bd8f3adab3e1',1,'glm']]], + ['aligned_5flowp_5fivec2_3220',['aligned_lowp_ivec2',['../a00921.html#ga44c4accad582cfbd7226a19b83b0cadc',1,'glm']]], + ['aligned_5flowp_5fivec3_3221',['aligned_lowp_ivec3',['../a00921.html#ga65663f10a02e52cedcddbcfe36ddf38d',1,'glm']]], + ['aligned_5flowp_5fivec4_3222',['aligned_lowp_ivec4',['../a00921.html#gaae92fcec8b2e0328ffbeac31cc4fc419',1,'glm']]], + ['aligned_5flowp_5fmat2_3223',['aligned_lowp_mat2',['../a00921.html#ga17c424412207b00dba1cf587b099eea3',1,'glm']]], + ['aligned_5flowp_5fmat2x2_3224',['aligned_lowp_mat2x2',['../a00921.html#ga0e44aeb930a47f9cbf2db15b56433b0f',1,'glm']]], + ['aligned_5flowp_5fmat2x3_3225',['aligned_lowp_mat2x3',['../a00921.html#ga7dec6d96bc61312b1e56d137c9c74030',1,'glm']]], + ['aligned_5flowp_5fmat2x4_3226',['aligned_lowp_mat2x4',['../a00921.html#gaa694fab1f8df5f658846573ba8ffc563',1,'glm']]], + ['aligned_5flowp_5fmat3_3227',['aligned_lowp_mat3',['../a00921.html#ga1eb9076cc28ead5020fd3029fd0472c5',1,'glm']]], + ['aligned_5flowp_5fmat3x2_3228',['aligned_lowp_mat3x2',['../a00921.html#ga2d6639f0bd777bae1ee0eba71cd7bfdc',1,'glm']]], + ['aligned_5flowp_5fmat3x3_3229',['aligned_lowp_mat3x3',['../a00921.html#gaeaab04e378a90956eec8d68a99d777ed',1,'glm']]], + ['aligned_5flowp_5fmat3x4_3230',['aligned_lowp_mat3x4',['../a00921.html#ga1f03696ab066572c6c044e63edf635a2',1,'glm']]], + ['aligned_5flowp_5fmat4_3231',['aligned_lowp_mat4',['../a00921.html#ga25ea2f684e36aa5e978b4f2f86593824',1,'glm']]], + ['aligned_5flowp_5fmat4x2_3232',['aligned_lowp_mat4x2',['../a00921.html#ga2cb16c3fdfb15e0719d942ee3b548bc4',1,'glm']]], + ['aligned_5flowp_5fmat4x3_3233',['aligned_lowp_mat4x3',['../a00921.html#ga7e96981e872f17a780d9f1c22dc1f512',1,'glm']]], + ['aligned_5flowp_5fmat4x4_3234',['aligned_lowp_mat4x4',['../a00921.html#gadae3dcfc22d28c64d0548cbfd9d08719',1,'glm']]], + ['aligned_5flowp_5fquat_3235',['aligned_lowp_quat',['../a00921.html#ga9608c6b6a8c44cb18cb18ce914487594',1,'glm']]], + ['aligned_5flowp_5fuvec1_3236',['aligned_lowp_uvec1',['../a00921.html#gad09b93acc43c43423408d17a64f6d7ca',1,'glm']]], + ['aligned_5flowp_5fuvec2_3237',['aligned_lowp_uvec2',['../a00921.html#ga6f94fcd28dde906fc6cad5f742b55c1a',1,'glm']]], + ['aligned_5flowp_5fuvec3_3238',['aligned_lowp_uvec3',['../a00921.html#ga9e9f006970b1a00862e3e6e599eedd4c',1,'glm']]], + ['aligned_5flowp_5fuvec4_3239',['aligned_lowp_uvec4',['../a00921.html#ga46b1b0b9eb8625a5d69137bd66cd13dc',1,'glm']]], + ['aligned_5flowp_5fvec1_3240',['aligned_lowp_vec1',['../a00921.html#gab34aee3d5e121c543fea11d2c50ecc43',1,'glm']]], + ['aligned_5flowp_5fvec2_3241',['aligned_lowp_vec2',['../a00921.html#ga53ac5d252317f1fa43c2ef921857bf13',1,'glm']]], + ['aligned_5flowp_5fvec3_3242',['aligned_lowp_vec3',['../a00921.html#ga98f0b5cd65fce164ff1367c2a3b3aa1e',1,'glm']]], + ['aligned_5flowp_5fvec4_3243',['aligned_lowp_vec4',['../a00921.html#ga82f7275d6102593a69ce38cdad680409',1,'glm']]], + ['aligned_5fmat2_3244',['aligned_mat2',['../a00921.html#ga5a8a5f8c47cd7d5502dd9932f83472b9',1,'glm']]], + ['aligned_5fmat2x2_3245',['aligned_mat2x2',['../a00921.html#gabb04f459d81d753d278b2072e2375e8e',1,'glm']]], + ['aligned_5fmat2x3_3246',['aligned_mat2x3',['../a00921.html#ga832476bb1c59ef673db37433ff34e399',1,'glm']]], + ['aligned_5fmat2x4_3247',['aligned_mat2x4',['../a00921.html#gadab11a7504430825b648ff7c7e36b725',1,'glm']]], + ['aligned_5fmat3_3248',['aligned_mat3',['../a00921.html#ga43a92a24ca863e0e0f3b65834b3cf714',1,'glm']]], + ['aligned_5fmat3x2_3249',['aligned_mat3x2',['../a00921.html#ga5c0df24ba85eafafc0eb0c90690510ed',1,'glm']]], + ['aligned_5fmat3x3_3250',['aligned_mat3x3',['../a00921.html#gadb065dbe5c11271fef8cf2ea8608f187',1,'glm']]], + ['aligned_5fmat3x4_3251',['aligned_mat3x4',['../a00921.html#ga88061c72c997b94c420f2b0a60d9df26',1,'glm']]], + ['aligned_5fmat4_3252',['aligned_mat4',['../a00921.html#gab0fddcf95dd51cbcbf624ea7c40dfeb8',1,'glm']]], + ['aligned_5fmat4x2_3253',['aligned_mat4x2',['../a00921.html#gac9a2d0fb815fd5c2bd58b869c55e32d3',1,'glm']]], + ['aligned_5fmat4x3_3254',['aligned_mat4x3',['../a00921.html#ga452bbbfd26e244de216e4d004d50bb74',1,'glm']]], + ['aligned_5fmat4x4_3255',['aligned_mat4x4',['../a00921.html#ga8b8fb86973a0b768c5bd802c92fac1a1',1,'glm']]], + ['aligned_5fmediump_5fbvec1_3256',['aligned_mediump_bvec1',['../a00921.html#gadd3b8bd71a758f7fb0da8e525156f34e',1,'glm']]], + ['aligned_5fmediump_5fbvec2_3257',['aligned_mediump_bvec2',['../a00921.html#gacb183eb5e67ec0d0ea5a016cba962810',1,'glm']]], + ['aligned_5fmediump_5fbvec3_3258',['aligned_mediump_bvec3',['../a00921.html#gacfa4a542f1b20a5b63ad702dfb6fd587',1,'glm']]], + ['aligned_5fmediump_5fbvec4_3259',['aligned_mediump_bvec4',['../a00921.html#ga91bc1f513bb9b0fd60281d57ded9a48c',1,'glm']]], + ['aligned_5fmediump_5fdmat2_3260',['aligned_mediump_dmat2',['../a00921.html#ga62a2dfd668c91072b72c3109fc6cda28',1,'glm']]], + ['aligned_5fmediump_5fdmat2x2_3261',['aligned_mediump_dmat2x2',['../a00921.html#ga9b7feec247d378dd407ba81f56ea96c8',1,'glm']]], + ['aligned_5fmediump_5fdmat2x3_3262',['aligned_mediump_dmat2x3',['../a00921.html#gafcb189f4f93648fe7ca802ca4aca2eb8',1,'glm']]], + ['aligned_5fmediump_5fdmat2x4_3263',['aligned_mediump_dmat2x4',['../a00921.html#ga92f8873e3bbd5ca1323c8bbe5725cc5e',1,'glm']]], + ['aligned_5fmediump_5fdmat3_3264',['aligned_mediump_dmat3',['../a00921.html#ga6dc2832b747c00e0a0df621aba196960',1,'glm']]], + ['aligned_5fmediump_5fdmat3x2_3265',['aligned_mediump_dmat3x2',['../a00921.html#ga5a97f0355d801de3444d42c1d5b40438',1,'glm']]], + ['aligned_5fmediump_5fdmat3x3_3266',['aligned_mediump_dmat3x3',['../a00921.html#ga649d0acf01054b17e679cf00e150e025',1,'glm']]], + ['aligned_5fmediump_5fdmat3x4_3267',['aligned_mediump_dmat3x4',['../a00921.html#ga45e155a4840f69b2fa4ed8047a676860',1,'glm']]], + ['aligned_5fmediump_5fdmat4_3268',['aligned_mediump_dmat4',['../a00921.html#ga8a9376d82f0e946e25137eb55543e6ce',1,'glm']]], + ['aligned_5fmediump_5fdmat4x2_3269',['aligned_mediump_dmat4x2',['../a00921.html#gabc25e547f4de4af62403492532cd1b6d',1,'glm']]], + ['aligned_5fmediump_5fdmat4x3_3270',['aligned_mediump_dmat4x3',['../a00921.html#gae84f4763ecdc7457ecb7930bad12057c',1,'glm']]], + ['aligned_5fmediump_5fdmat4x4_3271',['aligned_mediump_dmat4x4',['../a00921.html#gaa292ebaa907afdecb2d5967fb4fb1247',1,'glm']]], + ['aligned_5fmediump_5fdquat_3272',['aligned_mediump_dquat',['../a00921.html#ga224812837186d3426283e29bbdaa98c0',1,'glm']]], + ['aligned_5fmediump_5fdvec1_3273',['aligned_mediump_dvec1',['../a00921.html#ga7180b685c581adb224406a7f831608e3',1,'glm']]], + ['aligned_5fmediump_5fdvec2_3274',['aligned_mediump_dvec2',['../a00921.html#ga9af1eabe22f569e70d9893be72eda0f5',1,'glm']]], + ['aligned_5fmediump_5fdvec3_3275',['aligned_mediump_dvec3',['../a00921.html#ga058e7ddab1428e47f2197bdd3a5a6953',1,'glm']]], + ['aligned_5fmediump_5fdvec4_3276',['aligned_mediump_dvec4',['../a00921.html#gaffd747ea2aea1e69c2ecb04e68521b21',1,'glm']]], + ['aligned_5fmediump_5fivec1_3277',['aligned_mediump_ivec1',['../a00921.html#ga20e63dd980b81af10cadbbe219316650',1,'glm']]], + ['aligned_5fmediump_5fivec2_3278',['aligned_mediump_ivec2',['../a00921.html#gaea13d89d49daca2c796aeaa82fc2c2f2',1,'glm']]], + ['aligned_5fmediump_5fivec3_3279',['aligned_mediump_ivec3',['../a00921.html#gabbf0f15e9c3d9868e43241ad018f82bd',1,'glm']]], + ['aligned_5fmediump_5fivec4_3280',['aligned_mediump_ivec4',['../a00921.html#ga6099dd7878d0a78101a4250d8cd2d736',1,'glm']]], + ['aligned_5fmediump_5fmat2_3281',['aligned_mediump_mat2',['../a00921.html#gaf6f041b212c57664d88bc6aefb7e36f3',1,'glm']]], + ['aligned_5fmediump_5fmat2x2_3282',['aligned_mediump_mat2x2',['../a00921.html#ga04bf49316ee777d42fcfe681ee37d7be',1,'glm']]], + ['aligned_5fmediump_5fmat2x3_3283',['aligned_mediump_mat2x3',['../a00921.html#ga26a0b61e444a51a37b9737cf4d84291b',1,'glm']]], + ['aligned_5fmediump_5fmat2x4_3284',['aligned_mediump_mat2x4',['../a00921.html#ga163facc9ed2692ea1300ed57c5d12b17',1,'glm']]], + ['aligned_5fmediump_5fmat3_3285',['aligned_mediump_mat3',['../a00921.html#ga3b76ba17ae5d53debeb6f7e55919a57c',1,'glm']]], + ['aligned_5fmediump_5fmat3x2_3286',['aligned_mediump_mat3x2',['../a00921.html#ga80dee705d714300378e0847f45059097',1,'glm']]], + ['aligned_5fmediump_5fmat3x3_3287',['aligned_mediump_mat3x3',['../a00921.html#ga721f5404caf40d68962dcc0529de71d9',1,'glm']]], + ['aligned_5fmediump_5fmat3x4_3288',['aligned_mediump_mat3x4',['../a00921.html#ga98f4dc6722a2541a990918c074075359',1,'glm']]], + ['aligned_5fmediump_5fmat4_3289',['aligned_mediump_mat4',['../a00921.html#gaeefee8317192174596852ce19b602720',1,'glm']]], + ['aligned_5fmediump_5fmat4x2_3290',['aligned_mediump_mat4x2',['../a00921.html#ga46f372a006345c252a41267657cc22c0',1,'glm']]], + ['aligned_5fmediump_5fmat4x3_3291',['aligned_mediump_mat4x3',['../a00921.html#ga0effece4545acdebdc2a5512a303110e',1,'glm']]], + ['aligned_5fmediump_5fmat4x4_3292',['aligned_mediump_mat4x4',['../a00921.html#ga312864244cae4e8f10f478cffd0f76de',1,'glm']]], + ['aligned_5fmediump_5fquat_3293',['aligned_mediump_quat',['../a00921.html#ga1504373315ffd788a4c08669b997ab5e',1,'glm']]], + ['aligned_5fmediump_5fuvec1_3294',['aligned_mediump_uvec1',['../a00921.html#gacb78126ea2eb779b41c7511128ff1283',1,'glm']]], + ['aligned_5fmediump_5fuvec2_3295',['aligned_mediump_uvec2',['../a00921.html#ga081d53e0a71443d0b68ea61c870f9adc',1,'glm']]], + ['aligned_5fmediump_5fuvec3_3296',['aligned_mediump_uvec3',['../a00921.html#gad6fc921bdde2bdbc7e09b028e1e9b379',1,'glm']]], + ['aligned_5fmediump_5fuvec4_3297',['aligned_mediump_uvec4',['../a00921.html#ga73ea0c1ba31580e107d21270883f51fc',1,'glm']]], + ['aligned_5fmediump_5fvec1_3298',['aligned_mediump_vec1',['../a00921.html#ga6b797eec76fa471e300158f3453b3b2e',1,'glm']]], + ['aligned_5fmediump_5fvec2_3299',['aligned_mediump_vec2',['../a00921.html#ga026a55ddbf2bafb1432f1157a2708616',1,'glm']]], + ['aligned_5fmediump_5fvec3_3300',['aligned_mediump_vec3',['../a00921.html#ga3a25e494173f6a64637b08a1b50a2132',1,'glm']]], + ['aligned_5fmediump_5fvec4_3301',['aligned_mediump_vec4',['../a00921.html#ga320d1c661cff2ef214eb50241f2928b2',1,'glm']]], + ['aligned_5fquat_3302',['aligned_quat',['../a00921.html#ga32e247c58235caf15a0f5e68356e285b',1,'glm']]], + ['aligned_5fuvec1_3303',['aligned_uvec1',['../a00921.html#ga1ff8ed402c93d280ff0597c1c5e7c548',1,'glm']]], + ['aligned_5fuvec2_3304',['aligned_uvec2',['../a00921.html#ga074137e3be58528d67041c223d49f398',1,'glm']]], + ['aligned_5fuvec3_3305',['aligned_uvec3',['../a00921.html#ga2a8d9c3046f89d854eb758adfa0811c0',1,'glm']]], + ['aligned_5fuvec4_3306',['aligned_uvec4',['../a00921.html#gabf842c45eea186170c267a328e3f3b7d',1,'glm']]], + ['aligned_5fvec1_3307',['aligned_vec1',['../a00921.html#ga05e6d4c908965d04191c2070a8d0a65e',1,'glm']]], + ['aligned_5fvec2_3308',['aligned_vec2',['../a00921.html#ga0682462f8096a226773e20fac993cde5',1,'glm']]], + ['aligned_5fvec3_3309',['aligned_vec3',['../a00921.html#ga7cf643b66664e0cd3c48759ae66c2bd0',1,'glm']]], + ['aligned_5fvec4_3310',['aligned_vec4',['../a00921.html#ga85d89e83cb8137e1be1446de8c3b643a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_1.html b/include/glm/doc/api/search/typedefs_1.html new file mode 100644 index 0000000..84e9542 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_1.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_1.js b/include/glm/doc/api/search/typedefs_1.js new file mode 100644 index 0000000..63789fe --- /dev/null +++ b/include/glm/doc/api/search/typedefs_1.js @@ -0,0 +1,22 @@ +var searchData= +[ + ['bool1_3311',['bool1',['../a00933.html#gaddcd7aa2e30e61af5b38660613d3979e',1,'glm']]], + ['bool1x1_3312',['bool1x1',['../a00933.html#ga7f895c936f0c29c8729afbbf22806090',1,'glm']]], + ['bool2_3313',['bool2',['../a00933.html#gaa09ab65ec9c3c54305ff502e2b1fe6d9',1,'glm']]], + ['bool2x2_3314',['bool2x2',['../a00933.html#gadb3703955e513632f98ba12fe051ba3e',1,'glm']]], + ['bool2x3_3315',['bool2x3',['../a00933.html#ga9ae6ee155d0f90cb1ae5b6c4546738a0',1,'glm']]], + ['bool2x4_3316',['bool2x4',['../a00933.html#ga4d7fa65be8e8e4ad6d920b45c44e471f',1,'glm']]], + ['bool3_3317',['bool3',['../a00933.html#ga99629f818737f342204071ef8296b2ed',1,'glm']]], + ['bool3x2_3318',['bool3x2',['../a00933.html#gac7d7311f7e0fa8b6163d96dab033a755',1,'glm']]], + ['bool3x3_3319',['bool3x3',['../a00933.html#ga6c97b99aac3e302053ffb58aace9033c',1,'glm']]], + ['bool3x4_3320',['bool3x4',['../a00933.html#gae7d6b679463d37d6c527d478fb470fdf',1,'glm']]], + ['bool4_3321',['bool4',['../a00933.html#ga13c3200b82708f73faac6d7f09ec91a3',1,'glm']]], + ['bool4x2_3322',['bool4x2',['../a00933.html#ga9ed830f52408b2f83c085063a3eaf1d0',1,'glm']]], + ['bool4x3_3323',['bool4x3',['../a00933.html#gad0f5dc7f22c2065b1b06d57f1c0658fe',1,'glm']]], + ['bool4x4_3324',['bool4x4',['../a00933.html#ga7d2a7d13986602ae2896bfaa394235d4',1,'glm']]], + ['bvec1_3325',['bvec1',['../a00875.html#ga067af382616d93f8e850baae5154cdcc',1,'glm']]], + ['bvec2_3326',['bvec2',['../a00899.html#ga0b6123e03653cc1bbe366fc55238a934',1,'glm']]], + ['bvec3_3327',['bvec3',['../a00899.html#ga197151b72dfaf289daf98b361760ffe7',1,'glm']]], + ['bvec4_3328',['bvec4',['../a00899.html#ga9f7b9712373ff4342d9114619b55f5e3',1,'glm']]], + ['byte_3329',['byte',['../a00974.html#ga3005cb0d839d546c616becfa6602c607',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_2.html b/include/glm/doc/api/search/typedefs_2.html new file mode 100644 index 0000000..41586e9 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_2.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_2.js b/include/glm/doc/api/search/typedefs_2.js new file mode 100644 index 0000000..8a392df --- /dev/null +++ b/include/glm/doc/api/search/typedefs_2.js @@ -0,0 +1,37 @@ +var searchData= +[ + ['ddualquat_3330',['ddualquat',['../a00935.html#ga3d71f98d84ba59dfe4e369fde4714cd6',1,'glm']]], + ['dmat2_3331',['dmat2',['../a00901.html#ga21dbd1f987775d7cc7607c139531c7e6',1,'glm']]], + ['dmat2x2_3332',['dmat2x2',['../a00901.html#ga66b6a9af787e468a46dfe24189e87f9b',1,'glm']]], + ['dmat2x3_3333',['dmat2x3',['../a00901.html#ga92cd388753d48e20de69ea2dbedf826a',1,'glm']]], + ['dmat2x4_3334',['dmat2x4',['../a00901.html#gaef2198807e937072803ae0ae45e1965e',1,'glm']]], + ['dmat3_3335',['dmat3',['../a00901.html#ga6f40aa56265b4b0ccad41b86802efe33',1,'glm']]], + ['dmat3x2_3336',['dmat3x2',['../a00901.html#ga001e3e0638fbf8719788fc64c5b8cf39',1,'glm']]], + ['dmat3x3_3337',['dmat3x3',['../a00901.html#ga970cb3306be25a5ca5db5a9456831228',1,'glm']]], + ['dmat3x4_3338',['dmat3x4',['../a00901.html#ga0412a634d183587e6188e9b11869f8f4',1,'glm']]], + ['dmat4_3339',['dmat4',['../a00901.html#ga0f34486bb7fec8e5a5b3830b6a6cbeca',1,'glm']]], + ['dmat4x2_3340',['dmat4x2',['../a00901.html#ga9bc0b3ab8b6ba2cb6782e179ad7ad156',1,'glm']]], + ['dmat4x3_3341',['dmat4x3',['../a00901.html#gacd18864049f8c83799babe7e596ca05b',1,'glm']]], + ['dmat4x4_3342',['dmat4x4',['../a00901.html#gad5a6484b983b74f9d801cab8bc4e6a10',1,'glm']]], + ['double1_3343',['double1',['../a00933.html#ga20b861a9b6e2a300323671c57a02525b',1,'glm']]], + ['double1x1_3344',['double1x1',['../a00933.html#ga45f16a4dd0db1f199afaed9fd12fe9a8',1,'glm']]], + ['double2_3345',['double2',['../a00933.html#ga31b729b04facccda73f07ed26958b3c2',1,'glm']]], + ['double2x2_3346',['double2x2',['../a00933.html#gae57d0201096834d25f2b91b319e7cdbd',1,'glm']]], + ['double2x3_3347',['double2x3',['../a00933.html#ga3655bc324008553ca61f39952d0b2d08',1,'glm']]], + ['double2x4_3348',['double2x4',['../a00933.html#gacd33061fc64a7b2dcfd7322c49d9557a',1,'glm']]], + ['double3_3349',['double3',['../a00933.html#ga3d8b9028a1053a44a98902cd1c389472',1,'glm']]], + ['double3x2_3350',['double3x2',['../a00933.html#ga5ec08fc39c9d783dfcc488be240fe975',1,'glm']]], + ['double3x3_3351',['double3x3',['../a00933.html#ga4bad5bb20c6ddaecfe4006c93841d180',1,'glm']]], + ['double3x4_3352',['double3x4',['../a00933.html#ga2ef022e453d663d70aec414b2a80f756',1,'glm']]], + ['double4_3353',['double4',['../a00933.html#gaf92f58af24f35617518aeb3d4f63fda6',1,'glm']]], + ['double4x2_3354',['double4x2',['../a00933.html#gabca29ccceea53669618b751aae0ba83d',1,'glm']]], + ['double4x3_3355',['double4x3',['../a00933.html#gafad66a02ccd360c86d6ab9ff9cfbc19c',1,'glm']]], + ['double4x4_3356',['double4x4',['../a00933.html#gaab541bed2e788e4537852a2492860806',1,'glm']]], + ['dquat_3357',['dquat',['../a00857.html#ga1181459aa5d640a3ea43861b118f3f0b',1,'glm']]], + ['dualquat_3358',['dualquat',['../a00935.html#gae93abee0c979902fbec6a7bee0f6fae1',1,'glm']]], + ['dvec1_3359',['dvec1',['../a00878.html#ga6221af17edc2d4477a4583d2cd53e569',1,'glm']]], + ['dvec2_3360',['dvec2',['../a00899.html#ga8b09c71aaac7da7867ae58377fe219a8',1,'glm']]], + ['dvec3_3361',['dvec3',['../a00899.html#ga5b83ae3d0fdec519c038e4d2cf967cf0',1,'glm']]], + ['dvec4_3362',['dvec4',['../a00899.html#ga57debab5d98ce618f7b2a97fe26eb3ac',1,'glm']]], + ['dword_3363',['dword',['../a00974.html#ga86e46fff9f80ae33893d8d697f2ca98a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_3.html b/include/glm/doc/api/search/typedefs_3.html new file mode 100644 index 0000000..294c880 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_3.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_3.js b/include/glm/doc/api/search/typedefs_3.js new file mode 100644 index 0000000..6289c3c --- /dev/null +++ b/include/glm/doc/api/search/typedefs_3.js @@ -0,0 +1,78 @@ +var searchData= +[ + ['f32_3364',['f32',['../a00922.html#gabe6a542dd6c1d5ffd847f1b9b4c9c9b7',1,'glm']]], + ['f32mat1_3365',['f32mat1',['../a00965.html#ga145ad477a2a3e152855511c3b52469a6',1,'glm']]], + ['f32mat1x1_3366',['f32mat1x1',['../a00965.html#gac88c6a4dbfc380aa26e3adbbade36348',1,'glm']]], + ['f32mat2_3367',['f32mat2',['../a00922.html#gab12383ed6ac7595ed6fde4d266c58425',1,'glm']]], + ['f32mat2x2_3368',['f32mat2x2',['../a00922.html#ga04100c76f7d55a0dd0983ccf05142bff',1,'glm']]], + ['f32mat2x3_3369',['f32mat2x3',['../a00922.html#gab256cdab5eb582e426d749ae77b5b566',1,'glm']]], + ['f32mat2x4_3370',['f32mat2x4',['../a00922.html#gaf512b74c4400b68f9fdf9388b3d6aac8',1,'glm']]], + ['f32mat3_3371',['f32mat3',['../a00922.html#ga856f3905ee7cc2e4890a8a1d56c150be',1,'glm']]], + ['f32mat3x2_3372',['f32mat3x2',['../a00922.html#ga1320a08e14fdff3821241eefab6947e9',1,'glm']]], + ['f32mat3x3_3373',['f32mat3x3',['../a00922.html#ga65261fa8a21045c8646ddff114a56174',1,'glm']]], + ['f32mat3x4_3374',['f32mat3x4',['../a00922.html#gab90ade28222f8b861d5ceaf81a3a7f5d',1,'glm']]], + ['f32mat4_3375',['f32mat4',['../a00922.html#ga99d1b85ff99956b33da7e9992aad129a',1,'glm']]], + ['f32mat4x2_3376',['f32mat4x2',['../a00922.html#ga3b32ca1e57a4ef91babbc3d35a34ea20',1,'glm']]], + ['f32mat4x3_3377',['f32mat4x3',['../a00922.html#ga239b96198771b7add8eea7e6b59840c0',1,'glm']]], + ['f32mat4x4_3378',['f32mat4x4',['../a00922.html#gaee4da0e9fbd8cfa2f89cb80889719dc3',1,'glm']]], + ['f32quat_3379',['f32quat',['../a00922.html#ga38e674196ba411d642be40c47bf33939',1,'glm']]], + ['f32vec1_3380',['f32vec1',['../a00922.html#ga701f32ab5b3fb06996b41f5c0d643805',1,'glm']]], + ['f32vec2_3381',['f32vec2',['../a00922.html#ga5d6c70e080409a76a257dc55bd8ea2c8',1,'glm']]], + ['f32vec3_3382',['f32vec3',['../a00922.html#gaea5c4518e175162e306d2c2b5ef5ac79',1,'glm']]], + ['f32vec4_3383',['f32vec4',['../a00922.html#ga31c6ca0e074a44007f49a9a3720b18c8',1,'glm']]], + ['f64_3384',['f64',['../a00922.html#ga1d794d240091678f602e8de225b8d8c9',1,'glm']]], + ['f64mat1_3385',['f64mat1',['../a00965.html#ga59bfa589419b5265d01314fcecd33435',1,'glm']]], + ['f64mat1x1_3386',['f64mat1x1',['../a00965.html#ga448eeb08d0b7d8c43a8b292c981955fd',1,'glm']]], + ['f64mat2_3387',['f64mat2',['../a00922.html#gad9771450a54785d13080cdde0fe20c1d',1,'glm']]], + ['f64mat2x2_3388',['f64mat2x2',['../a00922.html#ga9ec7c4c79e303c053e30729a95fb2c37',1,'glm']]], + ['f64mat2x3_3389',['f64mat2x3',['../a00922.html#gae3ab5719fc4c1e966631dbbcba8d412a',1,'glm']]], + ['f64mat2x4_3390',['f64mat2x4',['../a00922.html#gac87278e0c702ba8afff76316d4eeb769',1,'glm']]], + ['f64mat3_3391',['f64mat3',['../a00922.html#ga9b69181efbf8f37ae934f135137b29c0',1,'glm']]], + ['f64mat3x2_3392',['f64mat3x2',['../a00922.html#ga2473d8bf3f4abf967c4d0e18175be6f7',1,'glm']]], + ['f64mat3x3_3393',['f64mat3x3',['../a00922.html#ga916c1aed91cf91f7b41399ebe7c6e185',1,'glm']]], + ['f64mat3x4_3394',['f64mat3x4',['../a00922.html#gaab239fa9e35b65a67cbaa6ac082f3675',1,'glm']]], + ['f64mat4_3395',['f64mat4',['../a00922.html#ga0ecd3f4952536e5ef12702b44d2626fc',1,'glm']]], + ['f64mat4x2_3396',['f64mat4x2',['../a00922.html#gab7daf79d6bc06a68bea1c6f5e11b5512',1,'glm']]], + ['f64mat4x3_3397',['f64mat4x3',['../a00922.html#ga3e2e66ffbe341a80bc005ba2b9552110',1,'glm']]], + ['f64mat4x4_3398',['f64mat4x4',['../a00922.html#gae52e2b7077a9ff928a06ab5ce600b81e',1,'glm']]], + ['f64quat_3399',['f64quat',['../a00922.html#ga2b114a2f2af0fe1dfeb569c767822940',1,'glm']]], + ['f64vec1_3400',['f64vec1',['../a00922.html#gade502df1ce14f837fae7f60a03ddb9b0',1,'glm']]], + ['f64vec2_3401',['f64vec2',['../a00922.html#gadc4e1594f9555d919131ee02b17822a2',1,'glm']]], + ['f64vec3_3402',['f64vec3',['../a00922.html#gaa7a1ddca75c5f629173bf4772db7a635',1,'glm']]], + ['f64vec4_3403',['f64vec4',['../a00922.html#ga66e92e57260bdb910609b9a56bf83e97',1,'glm']]], + ['fdualquat_3404',['fdualquat',['../a00935.html#ga237c2b9b42c9a930e49de5840ae0f930',1,'glm']]], + ['float1_3405',['float1',['../a00933.html#gaf5208d01f6c6fbcb7bb55d610b9c0ead',1,'glm']]], + ['float1x1_3406',['float1x1',['../a00933.html#ga73720b8dc4620835b17f74d428f98c0c',1,'glm']]], + ['float2_3407',['float2',['../a00933.html#ga02d3c013982c183906c61d74aa3166ce',1,'glm']]], + ['float2x2_3408',['float2x2',['../a00933.html#ga33d43ecbb60a85a1366ff83f8a0ec85f',1,'glm']]], + ['float2x3_3409',['float2x3',['../a00933.html#ga939b0cff15cee3030f75c1b2e36f89fe',1,'glm']]], + ['float2x4_3410',['float2x4',['../a00933.html#gafec3cfd901ab334a92e0242b8f2269b4',1,'glm']]], + ['float3_3411',['float3',['../a00933.html#ga821ff110fc8533a053cbfcc93e078cc0',1,'glm']]], + ['float32_3412',['float32',['../a00922.html#gaacdc525d6f7bddb3ae95d5c311bd06a1',1,'glm']]], + ['float32_5ft_3413',['float32_t',['../a00922.html#gaa4947bc8b47c72fceea9bda730ecf603',1,'glm']]], + ['float3x2_3414',['float3x2',['../a00933.html#gaa6c69f04ba95f3faedf95dae874de576',1,'glm']]], + ['float3x3_3415',['float3x3',['../a00933.html#ga6ceb5d38a58becdf420026e12a6562f3',1,'glm']]], + ['float3x4_3416',['float3x4',['../a00933.html#ga4d2679c321b793ca3784fe0315bb5332',1,'glm']]], + ['float4_3417',['float4',['../a00933.html#gae2da7345087db3815a25d8837a727ef1',1,'glm']]], + ['float4x2_3418',['float4x2',['../a00933.html#ga308b9af0c221145bcfe9bfc129d9098e',1,'glm']]], + ['float4x3_3419',['float4x3',['../a00933.html#gac0a51b4812038aa81d73ffcc37f741ac',1,'glm']]], + ['float4x4_3420',['float4x4',['../a00933.html#gad3051649b3715d828a4ab92cdae7c3bf',1,'glm']]], + ['float64_3421',['float64',['../a00922.html#ga232fad1b0d6dcc7c16aabde98b2e2a80',1,'glm']]], + ['float64_5ft_3422',['float64_t',['../a00922.html#ga728366fef72cd96f0a5fa6429f05469e',1,'glm']]], + ['fmat2_3423',['fmat2',['../a00922.html#ga4541dc2feb2a31d6ecb5a303f3dd3280',1,'glm']]], + ['fmat2x2_3424',['fmat2x2',['../a00922.html#ga3350c93c3275298f940a42875388e4b4',1,'glm']]], + ['fmat2x3_3425',['fmat2x3',['../a00922.html#ga55a2d2a8eb09b5633668257eb3cad453',1,'glm']]], + ['fmat2x4_3426',['fmat2x4',['../a00922.html#ga681381f19f11c9e5ee45cda2c56937ff',1,'glm']]], + ['fmat3_3427',['fmat3',['../a00922.html#ga253d453c20e037730023fea0215cb6f6',1,'glm']]], + ['fmat3x2_3428',['fmat3x2',['../a00922.html#ga6af54d70d9beb0a7ef992a879e86b04f',1,'glm']]], + ['fmat3x3_3429',['fmat3x3',['../a00922.html#gaa07c86650253672a19dbfb898f3265b8',1,'glm']]], + ['fmat3x4_3430',['fmat3x4',['../a00922.html#ga44e158af77a670ee1b58c03cda9e1619',1,'glm']]], + ['fmat4_3431',['fmat4',['../a00922.html#ga8cb400c0f4438f2640035d7b9824a0ca',1,'glm']]], + ['fmat4x2_3432',['fmat4x2',['../a00922.html#ga8c8aa45aafcc23238edb1d5aeb801774',1,'glm']]], + ['fmat4x3_3433',['fmat4x3',['../a00922.html#ga4295048a78bdf46b8a7de77ec665b497',1,'glm']]], + ['fmat4x4_3434',['fmat4x4',['../a00922.html#gad01cc6479bde1fd1870f13d3ed9530b3',1,'glm']]], + ['fvec1_3435',['fvec1',['../a00922.html#ga98b9ed43cf8c5cf1d354b23c7df9119f',1,'glm']]], + ['fvec2_3436',['fvec2',['../a00922.html#ga24273aa02abaecaab7f160bac437a339',1,'glm']]], + ['fvec3_3437',['fvec3',['../a00922.html#ga89930533646b30d021759298aa6bf04a',1,'glm']]], + ['fvec4_3438',['fvec4',['../a00922.html#ga713c796c54875cf4092d42ff9d9096b0',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_4.html b/include/glm/doc/api/search/typedefs_4.html new file mode 100644 index 0000000..d0dbba9 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_4.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_4.js b/include/glm/doc/api/search/typedefs_4.js new file mode 100644 index 0000000..2775e0d --- /dev/null +++ b/include/glm/doc/api/search/typedefs_4.js @@ -0,0 +1,188 @@ +var searchData= +[ + ['highp_5fbvec1_3439',['highp_bvec1',['../a00876.html#gae8a1e14abae1387274f57741750c06a2',1,'glm']]], + ['highp_5fbvec2_3440',['highp_bvec2',['../a00900.html#gac6c781a85f012d77a75310a3058702c2',1,'glm']]], + ['highp_5fbvec3_3441',['highp_bvec3',['../a00900.html#gaedb70027d89a0a405046aefda4eabaa6',1,'glm']]], + ['highp_5fbvec4_3442',['highp_bvec4',['../a00900.html#gaee663ff64429443ab07a5327074192f6',1,'glm']]], + ['highp_5fddualquat_3443',['highp_ddualquat',['../a00935.html#ga8f67eafa7197d7a668dad5105a463d2a',1,'glm']]], + ['highp_5fdmat2_3444',['highp_dmat2',['../a00902.html#ga369b447bb1b312449b679ea1f90f3cea',1,'glm']]], + ['highp_5fdmat2x2_3445',['highp_dmat2x2',['../a00902.html#gae27ac20302c2e39b6c78e7fe18e62ef7',1,'glm']]], + ['highp_5fdmat2x3_3446',['highp_dmat2x3',['../a00902.html#gad4689ec33bc2c26e10132b174b49001a',1,'glm']]], + ['highp_5fdmat2x4_3447',['highp_dmat2x4',['../a00902.html#ga5ceeb46670fdc000a0701910cc5061c9',1,'glm']]], + ['highp_5fdmat3_3448',['highp_dmat3',['../a00902.html#ga86d6d4dbad92ffdcc759773340e15a97',1,'glm']]], + ['highp_5fdmat3x2_3449',['highp_dmat3x2',['../a00902.html#ga3647309010a2160e9ec89bc6f7c95c35',1,'glm']]], + ['highp_5fdmat3x3_3450',['highp_dmat3x3',['../a00902.html#gae367ea93c4ad8a7c101dd27b8b2b04ce',1,'glm']]], + ['highp_5fdmat3x4_3451',['highp_dmat3x4',['../a00902.html#ga6543eeeb64f48d79a0b96484308c50f0',1,'glm']]], + ['highp_5fdmat4_3452',['highp_dmat4',['../a00902.html#ga945254f459860741138bceb74da496b9',1,'glm']]], + ['highp_5fdmat4x2_3453',['highp_dmat4x2',['../a00902.html#gaeda1f474c668eaecc443bea85a4a4eca',1,'glm']]], + ['highp_5fdmat4x3_3454',['highp_dmat4x3',['../a00902.html#gacf237c2d8832fe8db2d7e187585d34bd',1,'glm']]], + ['highp_5fdmat4x4_3455',['highp_dmat4x4',['../a00902.html#ga118d24a3d12c034e7cccef7bf2f01b8a',1,'glm']]], + ['highp_5fdquat_3456',['highp_dquat',['../a00858.html#gaf13a25f41afc03480b40fc71bd249cec',1,'glm']]], + ['highp_5fdualquat_3457',['highp_dualquat',['../a00935.html#ga9ef5bf1da52a9d4932335a517086ceaf',1,'glm']]], + ['highp_5fdvec1_3458',['highp_dvec1',['../a00879.html#ga77c22c4426da3a6865c88d3fc907e3fe',1,'glm']]], + ['highp_5fdvec2_3459',['highp_dvec2',['../a00900.html#gab98d77cca255914f5e29697fcbc2d975',1,'glm']]], + ['highp_5fdvec3_3460',['highp_dvec3',['../a00900.html#gab24dc20dcdc5b71282634bdbf6b70105',1,'glm']]], + ['highp_5fdvec4_3461',['highp_dvec4',['../a00900.html#gab654f4ed4a99d64a6cfc65320c2a7590',1,'glm']]], + ['highp_5ff32_3462',['highp_f32',['../a00922.html#ga6906e1ef0b34064b4b675489c5c38725',1,'glm']]], + ['highp_5ff32mat2_3463',['highp_f32mat2',['../a00922.html#ga298f7d4d273678d0282812368da27fda',1,'glm']]], + ['highp_5ff32mat2x2_3464',['highp_f32mat2x2',['../a00922.html#gae5eb02d92b7d4605a4b7f37ae5cb2968',1,'glm']]], + ['highp_5ff32mat2x3_3465',['highp_f32mat2x3',['../a00922.html#ga0aeb5cb001473b08c88175012708a379',1,'glm']]], + ['highp_5ff32mat2x4_3466',['highp_f32mat2x4',['../a00922.html#ga88938ee1e7981fa3402e88da6ad74531',1,'glm']]], + ['highp_5ff32mat3_3467',['highp_f32mat3',['../a00922.html#ga24f9ef3263b1638564713892cc37981f',1,'glm']]], + ['highp_5ff32mat3x2_3468',['highp_f32mat3x2',['../a00922.html#ga36537e701456f12c20e73f469cac4967',1,'glm']]], + ['highp_5ff32mat3x3_3469',['highp_f32mat3x3',['../a00922.html#gaab691ae40c37976d268d8cac0096e0e1',1,'glm']]], + ['highp_5ff32mat3x4_3470',['highp_f32mat3x4',['../a00922.html#gaa5086dbd6efb272d13fc88829330861d',1,'glm']]], + ['highp_5ff32mat4_3471',['highp_f32mat4',['../a00922.html#ga14c90ca49885723f51d06e295587236f',1,'glm']]], + ['highp_5ff32mat4x2_3472',['highp_f32mat4x2',['../a00922.html#ga602e119c6b246b4f6edcf66845f2aa0f',1,'glm']]], + ['highp_5ff32mat4x3_3473',['highp_f32mat4x3',['../a00922.html#ga66bffdd8e5c0d3ef9958bbab9ca1ba59',1,'glm']]], + ['highp_5ff32mat4x4_3474',['highp_f32mat4x4',['../a00922.html#gaf1b712b97b2322685fbbed28febe5f84',1,'glm']]], + ['highp_5ff32quat_3475',['highp_f32quat',['../a00922.html#ga4252cf7f5b0e3cd47c3d3badf0ef43b3',1,'glm']]], + ['highp_5ff32vec1_3476',['highp_f32vec1',['../a00922.html#gab1b1c9e8667902b78b2c330e4d383a61',1,'glm']]], + ['highp_5ff32vec2_3477',['highp_f32vec2',['../a00922.html#ga0b8ebd4262331e139ff257d7cf2a4b77',1,'glm']]], + ['highp_5ff32vec3_3478',['highp_f32vec3',['../a00922.html#ga522775dbcc6d96246a1c5cf02344fd8c',1,'glm']]], + ['highp_5ff32vec4_3479',['highp_f32vec4',['../a00922.html#ga0f038d4e09862a74f03d102c59eda73e',1,'glm']]], + ['highp_5ff64_3480',['highp_f64',['../a00922.html#ga51d5266017d88f62737c1973923a7cf4',1,'glm']]], + ['highp_5ff64mat2_3481',['highp_f64mat2',['../a00922.html#gaf7adb92ce8de0afaff01436b039fd924',1,'glm']]], + ['highp_5ff64mat2x2_3482',['highp_f64mat2x2',['../a00922.html#ga773ea237a051827cfc20de960bc73ff0',1,'glm']]], + ['highp_5ff64mat2x3_3483',['highp_f64mat2x3',['../a00922.html#ga8342c7469384c6d769cacc9e309278d9',1,'glm']]], + ['highp_5ff64mat2x4_3484',['highp_f64mat2x4',['../a00922.html#ga5a67a7440b9c0d1538533540f99036a5',1,'glm']]], + ['highp_5ff64mat3_3485',['highp_f64mat3',['../a00922.html#ga609bf0ace941d6ab1bb2f9522a04e546',1,'glm']]], + ['highp_5ff64mat3x2_3486',['highp_f64mat3x2',['../a00922.html#ga5bdbfb4ce7d05ce1e1b663f50be17e8a',1,'glm']]], + ['highp_5ff64mat3x3_3487',['highp_f64mat3x3',['../a00922.html#ga7c2cadb9b85cc7e0d125db21ca19dea4',1,'glm']]], + ['highp_5ff64mat3x4_3488',['highp_f64mat3x4',['../a00922.html#gad310b1dddeec9ec837a104e7db8de580',1,'glm']]], + ['highp_5ff64mat4_3489',['highp_f64mat4',['../a00922.html#gad308e0ed27d64daa4213fb257fcbd5a5',1,'glm']]], + ['highp_5ff64mat4x2_3490',['highp_f64mat4x2',['../a00922.html#ga58c4631421e323e252fc716b6103e38c',1,'glm']]], + ['highp_5ff64mat4x3_3491',['highp_f64mat4x3',['../a00922.html#gae94823d65648e44d972863c6caa13103',1,'glm']]], + ['highp_5ff64mat4x4_3492',['highp_f64mat4x4',['../a00922.html#ga09a2374b725c4246d263ee36fb66434c',1,'glm']]], + ['highp_5ff64quat_3493',['highp_f64quat',['../a00922.html#gafcfdd74a115163af2ce1093551747352',1,'glm']]], + ['highp_5ff64vec1_3494',['highp_f64vec1',['../a00922.html#ga62c31b133ceee9984fbee05ac4c434a9',1,'glm']]], + ['highp_5ff64vec2_3495',['highp_f64vec2',['../a00922.html#ga670ea1b0a1172bc73b1d7c1e0c26cce2',1,'glm']]], + ['highp_5ff64vec3_3496',['highp_f64vec3',['../a00922.html#gacd1196090ece7a69fb5c3e43a7d4d851',1,'glm']]], + ['highp_5ff64vec4_3497',['highp_f64vec4',['../a00922.html#ga61185c44c8cc0b25d9a0f67d8a267444',1,'glm']]], + ['highp_5ffdualquat_3498',['highp_fdualquat',['../a00935.html#ga4c4e55e9c99dc57b299ed590968da564',1,'glm']]], + ['highp_5ffloat32_3499',['highp_float32',['../a00922.html#gac5a7f21136e0a78d0a1b9f60ef2f8aea',1,'glm']]], + ['highp_5ffloat32_5ft_3500',['highp_float32_t',['../a00922.html#ga5376ef18dca9d248897c3363ef5a06b2',1,'glm']]], + ['highp_5ffloat64_3501',['highp_float64',['../a00922.html#gadbb198a4d7aad82a0f4dc466ef6f6215',1,'glm']]], + ['highp_5ffloat64_5ft_3502',['highp_float64_t',['../a00922.html#gaaeeb0077198cff40e3f48b1108ece139',1,'glm']]], + ['highp_5ffmat2_3503',['highp_fmat2',['../a00922.html#gae98c88d9a7befa9b5877f49176225535',1,'glm']]], + ['highp_5ffmat2x2_3504',['highp_fmat2x2',['../a00922.html#ga28635abcddb2f3e92c33c3f0fcc682ad',1,'glm']]], + ['highp_5ffmat2x3_3505',['highp_fmat2x3',['../a00922.html#gacf111095594996fef29067b2454fccad',1,'glm']]], + ['highp_5ffmat2x4_3506',['highp_fmat2x4',['../a00922.html#ga4920a1536f161f7ded1d6909b7fef0d2',1,'glm']]], + ['highp_5ffmat3_3507',['highp_fmat3',['../a00922.html#gaed2dc69e0d507d4191092dbd44b3eb75',1,'glm']]], + ['highp_5ffmat3x2_3508',['highp_fmat3x2',['../a00922.html#gae54e4d1aeb5a0f0c64822e6f1b299e19',1,'glm']]], + ['highp_5ffmat3x3_3509',['highp_fmat3x3',['../a00922.html#gaa5b44d3ef6efcf33f44876673a7a936e',1,'glm']]], + ['highp_5ffmat3x4_3510',['highp_fmat3x4',['../a00922.html#ga961fac2a885907ffcf4d40daac6615c5',1,'glm']]], + ['highp_5ffmat4_3511',['highp_fmat4',['../a00922.html#gabf28443ce0cc0959077ec39b21f32c39',1,'glm']]], + ['highp_5ffmat4x2_3512',['highp_fmat4x2',['../a00922.html#ga076961cf2d120c7168b957cb2ed107b3',1,'glm']]], + ['highp_5ffmat4x3_3513',['highp_fmat4x3',['../a00922.html#gae406ec670f64170a7437b5e302eeb2cb',1,'glm']]], + ['highp_5ffmat4x4_3514',['highp_fmat4x4',['../a00922.html#gaee80c7cd3caa0f2635058656755f6f69',1,'glm']]], + ['highp_5ffvec1_3515',['highp_fvec1',['../a00922.html#gaa1040342c4efdedc8f90e6267db8d41c',1,'glm']]], + ['highp_5ffvec2_3516',['highp_fvec2',['../a00922.html#ga7c0d196f5fa79f7e892a2f323a0be1ae',1,'glm']]], + ['highp_5ffvec3_3517',['highp_fvec3',['../a00922.html#ga6ef77413883f48d6b53b4169b25edbd0',1,'glm']]], + ['highp_5ffvec4_3518',['highp_fvec4',['../a00922.html#ga8b839abbb44f5102609eed89f6ed61f7',1,'glm']]], + ['highp_5fi16_3519',['highp_i16',['../a00922.html#ga0336abc2604dd2c20c30e036454b64f8',1,'glm']]], + ['highp_5fi16vec1_3520',['highp_i16vec1',['../a00922.html#ga70fdfcc1fd38084bde83c3f06a8b9f19',1,'glm']]], + ['highp_5fi16vec2_3521',['highp_i16vec2',['../a00922.html#gaa7db3ad10947cf70cae6474d05ebd227',1,'glm']]], + ['highp_5fi16vec3_3522',['highp_i16vec3',['../a00922.html#ga5609c8fa2b7eac3dec337d321cb0ca96',1,'glm']]], + ['highp_5fi16vec4_3523',['highp_i16vec4',['../a00922.html#ga7a18659438828f91ccca28f1a1e067b4',1,'glm']]], + ['highp_5fi32_3524',['highp_i32',['../a00922.html#ga727675ac6b5d2fc699520e0059735e25',1,'glm']]], + ['highp_5fi32vec1_3525',['highp_i32vec1',['../a00922.html#ga6a9d71cc62745302f70422b7dc98755c',1,'glm']]], + ['highp_5fi32vec2_3526',['highp_i32vec2',['../a00922.html#gaa9b4579f8e6f3d9b649a965bcb785530',1,'glm']]], + ['highp_5fi32vec3_3527',['highp_i32vec3',['../a00922.html#ga31e070ea3bdee623e6e18a61ba5718b1',1,'glm']]], + ['highp_5fi32vec4_3528',['highp_i32vec4',['../a00922.html#gadf70eaaa230aeed5a4c9f4c9c5c55902',1,'glm']]], + ['highp_5fi64_3529',['highp_i64',['../a00922.html#gac25db6d2b1e2a0f351b77ba3409ac4cd',1,'glm']]], + ['highp_5fi64vec1_3530',['highp_i64vec1',['../a00922.html#gabd2fda3cd208acf5a370ec9b5b3c58d4',1,'glm']]], + ['highp_5fi64vec2_3531',['highp_i64vec2',['../a00922.html#gad9d1903cb20899966e8ebe0670889a5f',1,'glm']]], + ['highp_5fi64vec3_3532',['highp_i64vec3',['../a00922.html#ga62324224b9c6cce9c6b4db96bb704a8a',1,'glm']]], + ['highp_5fi64vec4_3533',['highp_i64vec4',['../a00922.html#gad23b1be9b3bf20352089a6b738f0ebba',1,'glm']]], + ['highp_5fi8_3534',['highp_i8',['../a00922.html#gacb88796f2d08ef253d0345aff20c3aee',1,'glm']]], + ['highp_5fi8vec1_3535',['highp_i8vec1',['../a00922.html#ga1d8c10949691b0fd990253476f47beb3',1,'glm']]], + ['highp_5fi8vec2_3536',['highp_i8vec2',['../a00922.html#ga50542e4cb9b2f9bec213b66e06145d07',1,'glm']]], + ['highp_5fi8vec3_3537',['highp_i8vec3',['../a00922.html#ga8396bfdc081d9113190d0c39c9f67084',1,'glm']]], + ['highp_5fi8vec4_3538',['highp_i8vec4',['../a00922.html#ga4824e3ddf6e608117dfe4809430737b4',1,'glm']]], + ['highp_5fimat2_3539',['highp_imat2',['../a00912.html#ga8499cc3b016003f835314c1c756e9db9',1,'glm']]], + ['highp_5fimat2x2_3540',['highp_imat2x2',['../a00912.html#ga02470e29b72461d18b0ca69abedd7ed9',1,'glm']]], + ['highp_5fimat2x3_3541',['highp_imat2x3',['../a00912.html#gaa9cc128d4b33a9a3d9c41945409c6a09',1,'glm']]], + ['highp_5fimat2x4_3542',['highp_imat2x4',['../a00912.html#gafc4c0a84e63da3c5dd49fb893c036f03',1,'glm']]], + ['highp_5fimat3_3543',['highp_imat3',['../a00912.html#gaca4506a3efa679eff7c006d9826291fd',1,'glm']]], + ['highp_5fimat3x2_3544',['highp_imat3x2',['../a00912.html#ga5ad2efa5da7d3331f264c9623e3def51',1,'glm']]], + ['highp_5fimat3x3_3545',['highp_imat3x3',['../a00912.html#ga92349a807c25033fad67f0d402d4cb98',1,'glm']]], + ['highp_5fimat3x4_3546',['highp_imat3x4',['../a00912.html#ga314765ba5934d6fe6e8ca189417e2ab6',1,'glm']]], + ['highp_5fimat4_3547',['highp_imat4',['../a00912.html#ga7cfb09b34e0fcf73eaf6512d6483ef56',1,'glm']]], + ['highp_5fimat4x2_3548',['highp_imat4x2',['../a00912.html#ga89f150a46de983f1e27d0045ec05b4e3',1,'glm']]], + ['highp_5fimat4x3_3549',['highp_imat4x3',['../a00912.html#gadbccb0a2e7f43c31baea7fecbfa10bbf',1,'glm']]], + ['highp_5fimat4x4_3550',['highp_imat4x4',['../a00912.html#gabb667869006fd8b1944bbd03c6d56690',1,'glm']]], + ['highp_5fint16_3551',['highp_int16',['../a00922.html#ga5fde0fa4a3852a9dd5d637a92ee74718',1,'glm']]], + ['highp_5fint16_5ft_3552',['highp_int16_t',['../a00922.html#gacaea06d0a79ef3172e887a7a6ba434ff',1,'glm']]], + ['highp_5fint32_3553',['highp_int32',['../a00922.html#ga84ed04b4e0de18c977e932d617e7c223',1,'glm']]], + ['highp_5fint32_5ft_3554',['highp_int32_t',['../a00922.html#ga2c71c8bd9e2fe7d2e93ca250d8b6157f',1,'glm']]], + ['highp_5fint64_3555',['highp_int64',['../a00922.html#ga226a8d52b4e3f77aaa6231135e886aac',1,'glm']]], + ['highp_5fint64_5ft_3556',['highp_int64_t',['../a00922.html#ga73c6abb280a45feeff60f9accaee91f3',1,'glm']]], + ['highp_5fint8_3557',['highp_int8',['../a00922.html#gad0549c902a96a7164e4ac858d5f39dbf',1,'glm']]], + ['highp_5fint8_5ft_3558',['highp_int8_t',['../a00922.html#ga1085c50dd8fbeb5e7e609b1c127492a5',1,'glm']]], + ['highp_5fivec1_3559',['highp_ivec1',['../a00922.html#gacf8589dd33b79b1637fecd546f4ce4ef',1,'glm']]], + ['highp_5fivec2_3560',['highp_ivec2',['../a00922.html#ga9003b53a8b6e86061e9713001e32fb2a',1,'glm']]], + ['highp_5fivec3_3561',['highp_ivec3',['../a00922.html#ga53216c727940d2679d1192600bd29282',1,'glm']]], + ['highp_5fivec4_3562',['highp_ivec4',['../a00922.html#ga81bd289ae2a99f7b957c1d3d7fba278b',1,'glm']]], + ['highp_5fmat2_3563',['highp_mat2',['../a00902.html#ga4d5a0055544a516237dcdace049b143d',1,'glm']]], + ['highp_5fmat2x2_3564',['highp_mat2x2',['../a00902.html#ga2352ae43b284c9f71446674c0208c05d',1,'glm']]], + ['highp_5fmat2x3_3565',['highp_mat2x3',['../a00902.html#ga7a0e3fe41512b0494e598f5c58722f19',1,'glm']]], + ['highp_5fmat2x4_3566',['highp_mat2x4',['../a00902.html#ga61f36a81f2ed1b5f9fc8bc3b26faec8f',1,'glm']]], + ['highp_5fmat3_3567',['highp_mat3',['../a00902.html#ga3fd9849f3da5ed6e3decc3fb10a20b3e',1,'glm']]], + ['highp_5fmat3x2_3568',['highp_mat3x2',['../a00902.html#ga1eda47a00027ec440eac05d63739c71b',1,'glm']]], + ['highp_5fmat3x3_3569',['highp_mat3x3',['../a00902.html#ga2ea82e12f4d7afcfce8f59894d400230',1,'glm']]], + ['highp_5fmat3x4_3570',['highp_mat3x4',['../a00902.html#ga6454b3a26ea30f69de8e44c08a63d1b7',1,'glm']]], + ['highp_5fmat4_3571',['highp_mat4',['../a00902.html#gad72e13d669d039f12ae5afa23148adc1',1,'glm']]], + ['highp_5fmat4x2_3572',['highp_mat4x2',['../a00902.html#gab68b66e6d2c37b804d0baf970fa4f0e5',1,'glm']]], + ['highp_5fmat4x3_3573',['highp_mat4x3',['../a00902.html#ga8d5a4e65fb976e4553b84995b95ecb38',1,'glm']]], + ['highp_5fmat4x4_3574',['highp_mat4x4',['../a00902.html#ga58cc504be0e3b61c48bc91554a767b9f',1,'glm']]], + ['highp_5fquat_3575',['highp_quat',['../a00861.html#gaa2fd8085774376310aeb80588e0eab6e',1,'glm']]], + ['highp_5fu16_3576',['highp_u16',['../a00922.html#ga8e62c883d13f47015f3b70ed88751369',1,'glm']]], + ['highp_5fu16vec1_3577',['highp_u16vec1',['../a00922.html#gad064202b4cf9a2972475c03de657cb39',1,'glm']]], + ['highp_5fu16vec2_3578',['highp_u16vec2',['../a00922.html#ga791b15ceb3f1e09d1a0ec6f3057ca159',1,'glm']]], + ['highp_5fu16vec3_3579',['highp_u16vec3',['../a00922.html#gacfd806749008f0ade6ac4bb9dd91082f',1,'glm']]], + ['highp_5fu16vec4_3580',['highp_u16vec4',['../a00922.html#ga8a85a3d54a8a9e14fe7a1f96196c4f61',1,'glm']]], + ['highp_5fu32_3581',['highp_u32',['../a00922.html#ga7a6f1929464dcc680b16381a4ee5f2cf',1,'glm']]], + ['highp_5fu32vec1_3582',['highp_u32vec1',['../a00922.html#ga0e35a565b9036bfc3989f5e23a0792e3',1,'glm']]], + ['highp_5fu32vec2_3583',['highp_u32vec2',['../a00922.html#ga2f256334f83fba4c2d219e414b51df6c',1,'glm']]], + ['highp_5fu32vec3_3584',['highp_u32vec3',['../a00922.html#gaf14d7a50502464e7cbfa074f24684cb1',1,'glm']]], + ['highp_5fu32vec4_3585',['highp_u32vec4',['../a00922.html#ga22166f0da65038b447f3c5e534fff1c2',1,'glm']]], + ['highp_5fu64_3586',['highp_u64',['../a00922.html#ga0c181fdf06a309691999926b6690c969',1,'glm']]], + ['highp_5fu64vec1_3587',['highp_u64vec1',['../a00922.html#gae4fe774744852c4d7d069be2e05257ab',1,'glm']]], + ['highp_5fu64vec2_3588',['highp_u64vec2',['../a00922.html#ga78f77b8b2d17b431ac5a68c0b5d7050d',1,'glm']]], + ['highp_5fu64vec3_3589',['highp_u64vec3',['../a00922.html#ga41bdabea6e589029659331ba47eb78c1',1,'glm']]], + ['highp_5fu64vec4_3590',['highp_u64vec4',['../a00922.html#ga4f15b41aa24b11cc42ad5798c04a2325',1,'glm']]], + ['highp_5fu8_3591',['highp_u8',['../a00922.html#gacd1259f3a9e8d2a9df5be2d74322ef9c',1,'glm']]], + ['highp_5fu8vec1_3592',['highp_u8vec1',['../a00922.html#ga8408cb76b6550ff01fa0a3024e7b68d2',1,'glm']]], + ['highp_5fu8vec2_3593',['highp_u8vec2',['../a00922.html#ga27585b7c3ab300059f11fcba465f6fd2',1,'glm']]], + ['highp_5fu8vec3_3594',['highp_u8vec3',['../a00922.html#ga45721c13b956eb691cbd6c6c1429167a',1,'glm']]], + ['highp_5fu8vec4_3595',['highp_u8vec4',['../a00922.html#gae0b75ad0fed8c00ddc0b5ce335d31060',1,'glm']]], + ['highp_5fuint16_3596',['highp_uint16',['../a00922.html#ga746dc6da204f5622e395f492997dbf57',1,'glm']]], + ['highp_5fuint16_5ft_3597',['highp_uint16_t',['../a00922.html#gacf54c3330ef60aa3d16cb676c7bcb8c7',1,'glm']]], + ['highp_5fuint32_3598',['highp_uint32',['../a00922.html#ga256b12b650c3f2fb86878fd1c5db8bc3',1,'glm']]], + ['highp_5fuint32_5ft_3599',['highp_uint32_t',['../a00922.html#gae978599c9711ac263ba732d4ac225b0e',1,'glm']]], + ['highp_5fuint64_3600',['highp_uint64',['../a00922.html#gaa38d732f5d4a7bc42a1b43b9d3c141ce',1,'glm']]], + ['highp_5fuint64_5ft_3601',['highp_uint64_t',['../a00922.html#gaa46172d7dc1c7ffe3e78107ff88adf08',1,'glm']]], + ['highp_5fuint8_3602',['highp_uint8',['../a00922.html#ga97432f9979e73e66567361fd01e4cffb',1,'glm']]], + ['highp_5fuint8_5ft_3603',['highp_uint8_t',['../a00922.html#gac4e00a26a2adb5f2c0a7096810df29e5',1,'glm']]], + ['highp_5fumat2_3604',['highp_umat2',['../a00912.html#ga42cbce64c4c1cd121b8437daa6e110de',1,'glm']]], + ['highp_5fumat2x2_3605',['highp_umat2x2',['../a00912.html#ga2dad0e8e8c909d3f5c74aa981384a7b9',1,'glm']]], + ['highp_5fumat2x3_3606',['highp_umat2x3',['../a00912.html#ga2c2bd3cf2b66069fcc70f5ba958ae48a',1,'glm']]], + ['highp_5fumat2x4_3607',['highp_umat2x4',['../a00912.html#ga57eed9d47bfb9a454d1310e84b11b3b8',1,'glm']]], + ['highp_5fumat3_3608',['highp_umat3',['../a00912.html#gaa1143120339b7d2d469d327662e8a172',1,'glm']]], + ['highp_5fumat3x2_3609',['highp_umat3x2',['../a00912.html#gaeed2950bed2c5014c932e78be4164ab6',1,'glm']]], + ['highp_5fumat3x3_3610',['highp_umat3x3',['../a00912.html#ga53564c99d65d1dad4835a9286cee0961',1,'glm']]], + ['highp_5fumat3x4_3611',['highp_umat3x4',['../a00912.html#gae4c04a557db14157f2627e0a5136843b',1,'glm']]], + ['highp_5fumat4_3612',['highp_umat4',['../a00912.html#gaf665e4e78c2cc32a54ab40325738f9c9',1,'glm']]], + ['highp_5fumat4x2_3613',['highp_umat4x2',['../a00912.html#ga1a236f645cb1dfb43f6207a46cd59aea',1,'glm']]], + ['highp_5fumat4x3_3614',['highp_umat4x3',['../a00912.html#ga730c61696dbb99b9a4be0732091a8fd3',1,'glm']]], + ['highp_5fumat4x4_3615',['highp_umat4x4',['../a00912.html#ga0d2e3526972ef22c088a529ebc790023',1,'glm']]], + ['highp_5fuvec1_3616',['highp_uvec1',['../a00922.html#ga1379900164b52f6495186b536e63219a',1,'glm']]], + ['highp_5fuvec2_3617',['highp_uvec2',['../a00922.html#gaff3354c7f0e39561f3594d496f2d12b1',1,'glm']]], + ['highp_5fuvec3_3618',['highp_uvec3',['../a00922.html#gab4c04fa2a3006e977f220f4f58eed009',1,'glm']]], + ['highp_5fuvec4_3619',['highp_uvec4',['../a00922.html#ga8d1fff5168a6ef78c138f99a56f0f588',1,'glm']]], + ['highp_5fvec1_3620',['highp_vec1',['../a00881.html#ga9e8ed21862a897c156c0b2abca70b1e9',1,'glm']]], + ['highp_5fvec2_3621',['highp_vec2',['../a00900.html#gaa92c1954d71b1e7914874bd787b43d1c',1,'glm']]], + ['highp_5fvec3_3622',['highp_vec3',['../a00900.html#gaca61dfaccbf2f58f2d8063a4e76b44a9',1,'glm']]], + ['highp_5fvec4_3623',['highp_vec4',['../a00900.html#gad281decae52948b82feb3a9db8f63a7b',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_5.html b/include/glm/doc/api/search/typedefs_5.html new file mode 100644 index 0000000..fa61be9 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_5.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_5.js b/include/glm/doc/api/search/typedefs_5.js new file mode 100644 index 0000000..c04ab38 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_5.js @@ -0,0 +1,109 @@ +var searchData= +[ + ['i16_3624',['i16',['../a00922.html#ga3ab5fe184343d394fb6c2723c3ee3699',1,'glm']]], + ['i16mat2_3625',['i16mat2',['../a00817.html#gad6e608aaaf7c28f1e659e40b62e1ae07',1,'glm']]], + ['i16mat2x2_3626',['i16mat2x2',['../a00817.html#ga47065ee69513dc0289a613eb3c32df60',1,'glm']]], + ['i16mat2x3_3627',['i16mat2x3',['../a00819.html#gaa71b21babc9d8a224e92d60703979448',1,'glm']]], + ['i16mat2x4_3628',['i16mat2x4',['../a00821.html#ga928a7def71f463e661f197ba9620208b',1,'glm']]], + ['i16mat3_3629',['i16mat3',['../a00825.html#ga7b4f37f881ec3362f134bd944560fe3f',1,'glm']]], + ['i16mat3x2_3630',['i16mat3x2',['../a00823.html#ga72ee4f64752177f6f5978c6a49cfe3db',1,'glm']]], + ['i16mat3x3_3631',['i16mat3x3',['../a00825.html#ga361b2094238f92774c8db5093b44566b',1,'glm']]], + ['i16mat3x4_3632',['i16mat3x4',['../a00827.html#ga71beebbf7447d8a32e5cc681d2db7849',1,'glm']]], + ['i16mat4_3633',['i16mat4',['../a00833.html#ga6ed05bec8bbe6c06fa9c7dc981c892f4',1,'glm']]], + ['i16mat4x2_3634',['i16mat4x2',['../a00829.html#ga1cd9115b5627b6e9c0ce423d450ded3b',1,'glm']]], + ['i16mat4x3_3635',['i16mat4x3',['../a00831.html#gae16035341f36e5afd002bdc7fc19ffbd',1,'glm']]], + ['i16mat4x4_3636',['i16mat4x4',['../a00833.html#ga3e9865fa750ba5a1f2a78a64d3128e96',1,'glm']]], + ['i16vec1_3637',['i16vec1',['../a00883.html#gafe730798732aa7b0647096a004db1b1c',1,'glm']]], + ['i16vec2_3638',['i16vec2',['../a00884.html#ga2996630ba7b10535af8e065cf326f761',1,'glm']]], + ['i16vec3_3639',['i16vec3',['../a00885.html#gae9c90a867a6026b1f6eab00456f3fb8b',1,'glm']]], + ['i16vec4_3640',['i16vec4',['../a00886.html#ga550831bfc26d1e0101c1cb3d79938c06',1,'glm']]], + ['i32_3641',['i32',['../a00922.html#ga96faea43ac5f875d2d3ffbf8d213e3eb',1,'glm']]], + ['i32mat2_3642',['i32mat2',['../a00817.html#ga29cc4fc2d059a71f654db8ffd6a0d1c8',1,'glm']]], + ['i32mat2x2_3643',['i32mat2x2',['../a00817.html#gaf39b46daac3fdc9580a8186d50bdc49b',1,'glm']]], + ['i32mat2x3_3644',['i32mat2x3',['../a00819.html#gabda3a64e16d3cf3826b630aee9e01421',1,'glm']]], + ['i32mat2x4_3645',['i32mat2x4',['../a00821.html#gac91b19cd25751d92107963f2eb819477',1,'glm']]], + ['i32mat3_3646',['i32mat3',['../a00825.html#gaeee8d25ed2061b68720bcb831327ffd4',1,'glm']]], + ['i32mat3x2_3647',['i32mat3x2',['../a00823.html#ga57877f8bbc5921651ad29935792f41a0',1,'glm']]], + ['i32mat3x3_3648',['i32mat3x3',['../a00825.html#ga75af30ee79bc6f01be007e6762e369aa',1,'glm']]], + ['i32mat3x4_3649',['i32mat3x4',['../a00827.html#gaa08c324017c156ad33b5240f38b1e2ae',1,'glm']]], + ['i32mat4_3650',['i32mat4',['../a00833.html#gae251517f782cb11ff0d9b79fcd13540e',1,'glm']]], + ['i32mat4x2_3651',['i32mat4x2',['../a00829.html#ga9b4aeda66c6da4e92c97977ac9c8423c',1,'glm']]], + ['i32mat4x3_3652',['i32mat4x3',['../a00831.html#gaeac0a48bdf2051127669ea8f52661b1f',1,'glm']]], + ['i32mat4x4_3653',['i32mat4x4',['../a00833.html#ga70bc41754e5d5a63ea90b04fd29a7e38',1,'glm']]], + ['i32vec1_3654',['i32vec1',['../a00883.html#ga54b8a4e0f5a7203a821bf8e9c1265bcf',1,'glm']]], + ['i32vec2_3655',['i32vec2',['../a00884.html#ga8b44026374982dcd1e52d22bac99247e',1,'glm']]], + ['i32vec3_3656',['i32vec3',['../a00885.html#ga7f526b5cccef126a2ebcf9bdd890394e',1,'glm']]], + ['i32vec4_3657',['i32vec4',['../a00886.html#ga866a05905c49912309ed1fa5f5980e61',1,'glm']]], + ['i64_3658',['i64',['../a00922.html#gadb997e409103d4da18abd837e636a496',1,'glm']]], + ['i64mat2_3659',['i64mat2',['../a00817.html#ga991f07e78a27044a26b55befae3a769a',1,'glm']]], + ['i64mat2x2_3660',['i64mat2x2',['../a00817.html#ga41c7a91e1c92094912f8bc5b823c1ce7',1,'glm']]], + ['i64mat2x3_3661',['i64mat2x3',['../a00819.html#ga086f53f13530ed954ed6845c27e2f765',1,'glm']]], + ['i64mat2x4_3662',['i64mat2x4',['../a00821.html#ga2b589f8bcde400f09bd606476c715f28',1,'glm']]], + ['i64mat3_3663',['i64mat3',['../a00825.html#ga94bbe4d004cd4507d370e529540e5c40',1,'glm']]], + ['i64mat3x2_3664',['i64mat3x2',['../a00823.html#ga87de638d4758ece144b404acbdbaaa74',1,'glm']]], + ['i64mat3x3_3665',['i64mat3x3',['../a00825.html#ga2d994eec234bb2f1f12d6c89519099e3',1,'glm']]], + ['i64mat3x4_3666',['i64mat3x4',['../a00827.html#gae298b2ac37981b232789b5a313c81ccc',1,'glm']]], + ['i64mat4_3667',['i64mat4',['../a00833.html#ga137dbc4ffc97899595676e737df3de71',1,'glm']]], + ['i64mat4x2_3668',['i64mat4x2',['../a00829.html#gaa078eeba33f2ee96c60cf7cab7299e66',1,'glm']]], + ['i64mat4x3_3669',['i64mat4x3',['../a00831.html#gafa6ab9b0940008de60ee78bbebba2306',1,'glm']]], + ['i64mat4x4_3670',['i64mat4x4',['../a00833.html#gaa56fe396b8efe61daadfd55782e1df93',1,'glm']]], + ['i64vec1_3671',['i64vec1',['../a00883.html#ga2b65767f8b5aed1bd1cf86c541662b50',1,'glm']]], + ['i64vec2_3672',['i64vec2',['../a00884.html#ga48310188e1d0c616bf8d78c92447523b',1,'glm']]], + ['i64vec3_3673',['i64vec3',['../a00885.html#ga667948cfe6fb3d6606c750729ec49f77',1,'glm']]], + ['i64vec4_3674',['i64vec4',['../a00886.html#gaa4e31c3d9de067029efeb161a44b0232',1,'glm']]], + ['i8_3675',['i8',['../a00922.html#ga302ec977b0c0c3ea245b6c9275495355',1,'glm']]], + ['i8mat2_3676',['i8mat2',['../a00817.html#ga982fb047723bc5fd4dd2106d8bcf0dfe',1,'glm']]], + ['i8mat2x2_3677',['i8mat2x2',['../a00817.html#ga2588340ecf113b18a1bb08c20f7c2989',1,'glm']]], + ['i8mat2x3_3678',['i8mat2x3',['../a00819.html#ga07be66899f390d383f7c9b59d03a711d',1,'glm']]], + ['i8mat2x4_3679',['i8mat2x4',['../a00821.html#ga16f963e233d40cae586c0670605acf64',1,'glm']]], + ['i8mat3_3680',['i8mat3',['../a00825.html#ga09dd4ed01cbdbaabea98ee994b6ae578',1,'glm']]], + ['i8mat3x2_3681',['i8mat3x2',['../a00823.html#ga457df325132fb92e9f023fae7ee6ecec',1,'glm']]], + ['i8mat3x3_3682',['i8mat3x3',['../a00825.html#gac6702a5f34779f892e8bcd4f9db8cc96',1,'glm']]], + ['i8mat3x4_3683',['i8mat3x4',['../a00827.html#ga92da3ce32ed1bdede71bc7028a856c25',1,'glm']]], + ['i8mat4_3684',['i8mat4',['../a00833.html#ga5a13150a001c529121c442acf997c1da',1,'glm']]], + ['i8mat4x2_3685',['i8mat4x2',['../a00829.html#ga9a40d61581a8f4db0c94eb6507fc441a',1,'glm']]], + ['i8mat4x3_3686',['i8mat4x3',['../a00831.html#ga81ddc1238242fea1d7462050e5609889',1,'glm']]], + ['i8mat4x4_3687',['i8mat4x4',['../a00833.html#gace28977d2e296a7d23fa466f55b114f7',1,'glm']]], + ['i8vec1_3688',['i8vec1',['../a00883.html#ga7e80d927ff0a3861ced68dfff8a4020b',1,'glm']]], + ['i8vec2_3689',['i8vec2',['../a00884.html#gad06935764d78f43f9d542c784c2212ec',1,'glm']]], + ['i8vec3_3690',['i8vec3',['../a00885.html#ga5a08d36cf7917cd19d081a603d0eae3e',1,'glm']]], + ['i8vec4_3691',['i8vec4',['../a00886.html#ga4177a44206121dabc8c4ff1c0f544574',1,'glm']]], + ['imat2_3692',['imat2',['../a00816.html#gaea0d06425d5020c7302df6cb412b9477',1,'glm']]], + ['imat2x2_3693',['imat2x2',['../a00816.html#ga8f9969e26ffeef99610abfd22577f5f1',1,'glm']]], + ['imat2x3_3694',['imat2x3',['../a00818.html#ga73766aa25add75d432e8d12890558edf',1,'glm']]], + ['imat2x4_3695',['imat2x4',['../a00820.html#ga4b0d247c6fe04618569092682ce26934',1,'glm']]], + ['imat3_3696',['imat3',['../a00824.html#gaf317be550c62aa66309b251526ee40ec',1,'glm']]], + ['imat3x2_3697',['imat3x2',['../a00822.html#gad47291b91ea6304a7c7e2c02caf5fad1',1,'glm']]], + ['imat3x3_3698',['imat3x3',['../a00824.html#gab82b19595eb6bad1bdc164b8d1ace60f',1,'glm']]], + ['imat3x4_3699',['imat3x4',['../a00826.html#ga03dcdd1a5cc6a0f59afaee28f68649c2',1,'glm']]], + ['imat4_3700',['imat4',['../a00832.html#gace7a6b13b37c7a530c676caf07e8876c',1,'glm']]], + ['imat4x2_3701',['imat4x2',['../a00828.html#ga422267d95355713db46e782b39746c0a',1,'glm']]], + ['imat4x3_3702',['imat4x3',['../a00830.html#ga5b02c51f7ee5924911b3d82faf3e2cc2',1,'glm']]], + ['imat4x4_3703',['imat4x4',['../a00832.html#ga76545537d9bf3a1be1458dd0a5ebbe1d',1,'glm']]], + ['int1_3704',['int1',['../a00933.html#ga0670a2111b5e4a6410bd027fa0232fc3',1,'glm']]], + ['int16_3705',['int16',['../a00868.html#ga259fa4834387bd68627ddf37bb3ebdb9',1,'glm']]], + ['int16_5ft_3706',['int16_t',['../a00922.html#gae8f5e3e964ca2ae240adc2c0d74adede',1,'glm']]], + ['int1x1_3707',['int1x1',['../a00933.html#ga056ffe02d3a45af626f8e62221881c7a',1,'glm']]], + ['int2_3708',['int2',['../a00933.html#gafe3a8fd56354caafe24bfe1b1e3ad22a',1,'glm']]], + ['int2x2_3709',['int2x2',['../a00933.html#ga4e5ce477c15836b21e3c42daac68554d',1,'glm']]], + ['int2x3_3710',['int2x3',['../a00933.html#ga197ded5ad8354f6b6fb91189d7a269b3',1,'glm']]], + ['int2x4_3711',['int2x4',['../a00933.html#ga2749d59a7fddbac44f34ba78e57ef807',1,'glm']]], + ['int3_3712',['int3',['../a00933.html#ga909c38a425f215a50c847145d7da09f0',1,'glm']]], + ['int32_3713',['int32',['../a00868.html#ga43d43196463bde49cb067f5c20ab8481',1,'glm']]], + ['int32_5ft_3714',['int32_t',['../a00922.html#ga042ef09ff2f0cb24a36f541bcb3a3710',1,'glm']]], + ['int3x2_3715',['int3x2',['../a00933.html#gaa4cbe16a92cf3664376c7a2fc5126aa8',1,'glm']]], + ['int3x3_3716',['int3x3',['../a00933.html#ga15c9649286f0bf431bdf9b3509580048',1,'glm']]], + ['int3x4_3717',['int3x4',['../a00933.html#gaacac46ddc7d15d0f9529d05c92946a0f',1,'glm']]], + ['int4_3718',['int4',['../a00933.html#gaecdef18c819c205aeee9f94dc93de56a',1,'glm']]], + ['int4x2_3719',['int4x2',['../a00933.html#ga97a39dd9bc7d572810d80b8467cbffa1',1,'glm']]], + ['int4x3_3720',['int4x3',['../a00933.html#gae4a2c53f14aeec9a17c2b81142b7e82d',1,'glm']]], + ['int4x4_3721',['int4x4',['../a00933.html#ga04dee1552424198b8f58b377c2ee00d8',1,'glm']]], + ['int64_3722',['int64',['../a00868.html#gaff5189f97f9e842d9636a0f240001b2e',1,'glm']]], + ['int64_5ft_3723',['int64_t',['../a00922.html#ga322a7d7d2c2c68994dc872a33de63c61',1,'glm']]], + ['int8_3724',['int8',['../a00868.html#ga1b956fe1df85f3c132b21edb4e116458',1,'glm']]], + ['int8_5ft_3725',['int8_t',['../a00922.html#ga4bf09d8838a86866b39ee6e109341645',1,'glm']]], + ['ivec1_3726',['ivec1',['../a00882.html#gac5197e18f85a147ad178c1a786afcc4d',1,'glm']]], + ['ivec2_3727',['ivec2',['../a00899.html#gaed4cbdb97920de4fabfdff438379ba40',1,'glm']]], + ['ivec3_3728',['ivec3',['../a00899.html#gad540fb5cf526e14b4729c2cb34e7b962',1,'glm']]], + ['ivec4_3729',['ivec4',['../a00899.html#ga791d3c7534500f15ef3eb97113f3f82a',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_6.html b/include/glm/doc/api/search/typedefs_6.html new file mode 100644 index 0000000..8cd2ed2 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_6.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_6.js b/include/glm/doc/api/search/typedefs_6.js new file mode 100644 index 0000000..01ad9c6 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_6.js @@ -0,0 +1,188 @@ +var searchData= +[ + ['lowp_5fbvec1_3730',['lowp_bvec1',['../a00876.html#ga24a3d364e2ddd444f5b9e7975bbef8f9',1,'glm']]], + ['lowp_5fbvec2_3731',['lowp_bvec2',['../a00900.html#ga5a5452140650988b94d5716e4d872465',1,'glm']]], + ['lowp_5fbvec3_3732',['lowp_bvec3',['../a00900.html#ga79e0922a977662a8fd39d7829be3908b',1,'glm']]], + ['lowp_5fbvec4_3733',['lowp_bvec4',['../a00900.html#ga15ac87724048ab7169bb5d3572939dd3',1,'glm']]], + ['lowp_5fddualquat_3734',['lowp_ddualquat',['../a00935.html#gab4c5103338af3dac7e0fbc86895a3f1a',1,'glm']]], + ['lowp_5fdmat2_3735',['lowp_dmat2',['../a00902.html#gad8e2727a6e7aa68280245bb0022118e1',1,'glm']]], + ['lowp_5fdmat2x2_3736',['lowp_dmat2x2',['../a00902.html#gac61b94f5d9775f83f321bac899322fe2',1,'glm']]], + ['lowp_5fdmat2x3_3737',['lowp_dmat2x3',['../a00902.html#gaf6bf2f5bde7ad5b9c289f777b93094af',1,'glm']]], + ['lowp_5fdmat2x4_3738',['lowp_dmat2x4',['../a00902.html#ga97507a31ecee8609887d0f23bbde92c7',1,'glm']]], + ['lowp_5fdmat3_3739',['lowp_dmat3',['../a00902.html#ga0cab80beee64a5f8d2ae4e823983063a',1,'glm']]], + ['lowp_5fdmat3x2_3740',['lowp_dmat3x2',['../a00902.html#ga1e0ea3fba496bc7c6f620d2590acb66b',1,'glm']]], + ['lowp_5fdmat3x3_3741',['lowp_dmat3x3',['../a00902.html#gac017848a9df570f60916a21a297b1e8e',1,'glm']]], + ['lowp_5fdmat3x4_3742',['lowp_dmat3x4',['../a00902.html#ga93add35d2a44c5830978b827e8c295e8',1,'glm']]], + ['lowp_5fdmat4_3743',['lowp_dmat4',['../a00902.html#ga708bc5b91bbfedd21debac8dcf2a64cd',1,'glm']]], + ['lowp_5fdmat4x2_3744',['lowp_dmat4x2',['../a00902.html#ga382dc5295cead78766239a8457abfa98',1,'glm']]], + ['lowp_5fdmat4x3_3745',['lowp_dmat4x3',['../a00902.html#ga3d7ea07da7c6e5c81a3f4c8b3d44056e',1,'glm']]], + ['lowp_5fdmat4x4_3746',['lowp_dmat4x4',['../a00902.html#ga5b0413198b7e9f061f7534a221c9dac9',1,'glm']]], + ['lowp_5fdquat_3747',['lowp_dquat',['../a00858.html#ga9e6e5f42e67dd5877350ba485c191f1c',1,'glm']]], + ['lowp_5fdualquat_3748',['lowp_dualquat',['../a00935.html#gade05d29ebd4deea0f883d0e1bb4169aa',1,'glm']]], + ['lowp_5fdvec1_3749',['lowp_dvec1',['../a00879.html#gaf906eb86b6e96c35138d0e4928e1435a',1,'glm']]], + ['lowp_5fdvec2_3750',['lowp_dvec2',['../a00900.html#ga108086730d086b7f6f7a033955dfb9c3',1,'glm']]], + ['lowp_5fdvec3_3751',['lowp_dvec3',['../a00900.html#ga42c518b2917e19ce6946a84c64a3a4b2',1,'glm']]], + ['lowp_5fdvec4_3752',['lowp_dvec4',['../a00900.html#ga0b4432cb8d910e406576d10d802e190d',1,'glm']]], + ['lowp_5ff32_3753',['lowp_f32',['../a00922.html#gaeea53879fc327293cf3352a409b7867b',1,'glm']]], + ['lowp_5ff32mat2_3754',['lowp_f32mat2',['../a00922.html#ga52409bc6d4a2ce3421526c069220d685',1,'glm']]], + ['lowp_5ff32mat2x2_3755',['lowp_f32mat2x2',['../a00922.html#ga1d091b6abfba1772450e1745a06525bc',1,'glm']]], + ['lowp_5ff32mat2x3_3756',['lowp_f32mat2x3',['../a00922.html#ga961ccb34cd1a5654c772c8709e001dc5',1,'glm']]], + ['lowp_5ff32mat2x4_3757',['lowp_f32mat2x4',['../a00922.html#gacc6bf0209dda0c7c14851a646071c974',1,'glm']]], + ['lowp_5ff32mat3_3758',['lowp_f32mat3',['../a00922.html#ga4187f89f196505b40e63f516139511e5',1,'glm']]], + ['lowp_5ff32mat3x2_3759',['lowp_f32mat3x2',['../a00922.html#gac53f9d7ab04eace67adad026092fb1e8',1,'glm']]], + ['lowp_5ff32mat3x3_3760',['lowp_f32mat3x3',['../a00922.html#ga841211b641cff1fcf861bdb14e5e4abc',1,'glm']]], + ['lowp_5ff32mat3x4_3761',['lowp_f32mat3x4',['../a00922.html#ga21b1b22dec013a72656e3644baf8a1e1',1,'glm']]], + ['lowp_5ff32mat4_3762',['lowp_f32mat4',['../a00922.html#ga766aed2871e6173a81011a877f398f04',1,'glm']]], + ['lowp_5ff32mat4x2_3763',['lowp_f32mat4x2',['../a00922.html#gae6f3fcb702a666de07650c149cfa845a',1,'glm']]], + ['lowp_5ff32mat4x3_3764',['lowp_f32mat4x3',['../a00922.html#gac21eda58a1475449a5709b412ebd776c',1,'glm']]], + ['lowp_5ff32mat4x4_3765',['lowp_f32mat4x4',['../a00922.html#ga4143d129898f91545948c46859adce44',1,'glm']]], + ['lowp_5ff32quat_3766',['lowp_f32quat',['../a00922.html#gaa3ba60ef8f69c6aeb1629594eaa95347',1,'glm']]], + ['lowp_5ff32vec1_3767',['lowp_f32vec1',['../a00922.html#ga43e5b41c834fcaf4db5a831c0e28128e',1,'glm']]], + ['lowp_5ff32vec2_3768',['lowp_f32vec2',['../a00922.html#gaf3b694b2b8ded7e0b9f07b061917e1a0',1,'glm']]], + ['lowp_5ff32vec3_3769',['lowp_f32vec3',['../a00922.html#gaf739a2cd7b81783a43148b53e40d983b',1,'glm']]], + ['lowp_5ff32vec4_3770',['lowp_f32vec4',['../a00922.html#ga4e2e1debe022074ab224c9faf856d374',1,'glm']]], + ['lowp_5ff64_3771',['lowp_f64',['../a00922.html#gabc7a97c07cbfac8e35eb5e63beb4b679',1,'glm']]], + ['lowp_5ff64mat2_3772',['lowp_f64mat2',['../a00922.html#gafc730f6b4242763b0eda0ffa25150292',1,'glm']]], + ['lowp_5ff64mat2x2_3773',['lowp_f64mat2x2',['../a00922.html#ga771fda9109933db34f808d92b9b84d7e',1,'glm']]], + ['lowp_5ff64mat2x3_3774',['lowp_f64mat2x3',['../a00922.html#ga39e90adcffe33264bd608fa9c6bd184b',1,'glm']]], + ['lowp_5ff64mat2x4_3775',['lowp_f64mat2x4',['../a00922.html#ga50265a202fbfe0a25fc70066c31d9336',1,'glm']]], + ['lowp_5ff64mat3_3776',['lowp_f64mat3',['../a00922.html#ga58119a41d143ebaea0df70fe882e8a40',1,'glm']]], + ['lowp_5ff64mat3x2_3777',['lowp_f64mat3x2',['../a00922.html#gab0eb2d65514ee3e49905aa2caad8c0ad',1,'glm']]], + ['lowp_5ff64mat3x3_3778',['lowp_f64mat3x3',['../a00922.html#gac8f8a12ee03105ef8861dc652434e3b7',1,'glm']]], + ['lowp_5ff64mat3x4_3779',['lowp_f64mat3x4',['../a00922.html#gade8d1edfb23996ab6c622e65e3893271',1,'glm']]], + ['lowp_5ff64mat4_3780',['lowp_f64mat4',['../a00922.html#ga7451266e67794bd1125163502bc4a570',1,'glm']]], + ['lowp_5ff64mat4x2_3781',['lowp_f64mat4x2',['../a00922.html#gab0cecb80fd106bc369b9e46a165815ce',1,'glm']]], + ['lowp_5ff64mat4x3_3782',['lowp_f64mat4x3',['../a00922.html#gae731613b25db3a5ef5a05d21e57a57d3',1,'glm']]], + ['lowp_5ff64mat4x4_3783',['lowp_f64mat4x4',['../a00922.html#ga8c9cd734e03cd49674f3e287aa4a6f95',1,'glm']]], + ['lowp_5ff64quat_3784',['lowp_f64quat',['../a00922.html#gaa3ee2bc4af03cc06578b66b3e3f878ae',1,'glm']]], + ['lowp_5ff64vec1_3785',['lowp_f64vec1',['../a00922.html#gaf2d02c5f4d59135b9bc524fe317fd26b',1,'glm']]], + ['lowp_5ff64vec2_3786',['lowp_f64vec2',['../a00922.html#ga4e641a54d70c81eabf56c25c966d04bd',1,'glm']]], + ['lowp_5ff64vec3_3787',['lowp_f64vec3',['../a00922.html#gae7a4711107b7d078fc5f03ce2227b90b',1,'glm']]], + ['lowp_5ff64vec4_3788',['lowp_f64vec4',['../a00922.html#gaa666bb9e6d204d3bea0b3a39a3a335f4',1,'glm']]], + ['lowp_5ffdualquat_3789',['lowp_fdualquat',['../a00935.html#gaa38f671be25a7f3b136a452a8bb42860',1,'glm']]], + ['lowp_5ffloat32_3790',['lowp_float32',['../a00922.html#ga41b0d390bd8cc827323b1b3816ff4bf8',1,'glm']]], + ['lowp_5ffloat32_5ft_3791',['lowp_float32_t',['../a00922.html#gaea881cae4ddc6c0fbf7cc5b08177ca5b',1,'glm']]], + ['lowp_5ffloat64_3792',['lowp_float64',['../a00922.html#ga3714dab2c16a6545a405cb0c3b3aaa6f',1,'glm']]], + ['lowp_5ffloat64_5ft_3793',['lowp_float64_t',['../a00922.html#ga7286a37076a09da140df18bfa75d4e38',1,'glm']]], + ['lowp_5ffmat2_3794',['lowp_fmat2',['../a00922.html#ga5bba0ce31210e274f73efacd3364c03f',1,'glm']]], + ['lowp_5ffmat2x2_3795',['lowp_fmat2x2',['../a00922.html#gab0feb11edd0d3ab3e8ed996d349a5066',1,'glm']]], + ['lowp_5ffmat2x3_3796',['lowp_fmat2x3',['../a00922.html#ga71cdb53801ed4c3aadb3603c04723210',1,'glm']]], + ['lowp_5ffmat2x4_3797',['lowp_fmat2x4',['../a00922.html#gaab217601c74974a84acbca428123ecf7',1,'glm']]], + ['lowp_5ffmat3_3798',['lowp_fmat3',['../a00922.html#ga83079315e230e8f39728f4bf0d2f9a9b',1,'glm']]], + ['lowp_5ffmat3x2_3799',['lowp_fmat3x2',['../a00922.html#ga49b98e7d71804af45d86886a489e633c',1,'glm']]], + ['lowp_5ffmat3x3_3800',['lowp_fmat3x3',['../a00922.html#gaba56275dd04a7a61560b0e8fa5d365b4',1,'glm']]], + ['lowp_5ffmat3x4_3801',['lowp_fmat3x4',['../a00922.html#ga28733aec7288191b314d42154fd0b690',1,'glm']]], + ['lowp_5ffmat4_3802',['lowp_fmat4',['../a00922.html#ga5803cb9ae26399762d8bba9e0b2fc09f',1,'glm']]], + ['lowp_5ffmat4x2_3803',['lowp_fmat4x2',['../a00922.html#ga5868c2dcce41cc3ea5edcaeae239f62c',1,'glm']]], + ['lowp_5ffmat4x3_3804',['lowp_fmat4x3',['../a00922.html#ga5e649bbdb135fbcb4bfe950f4c73a444',1,'glm']]], + ['lowp_5ffmat4x4_3805',['lowp_fmat4x4',['../a00922.html#gac2f5263708ac847b361a9841e74ddf9f',1,'glm']]], + ['lowp_5ffvec1_3806',['lowp_fvec1',['../a00922.html#ga346b2336fff168a7e0df1583aae3e5a5',1,'glm']]], + ['lowp_5ffvec2_3807',['lowp_fvec2',['../a00922.html#ga62a32c31f4e2e8ca859663b6e3289a2d',1,'glm']]], + ['lowp_5ffvec3_3808',['lowp_fvec3',['../a00922.html#ga40b5c557efebb5bb99d6b9aa81095afa',1,'glm']]], + ['lowp_5ffvec4_3809',['lowp_fvec4',['../a00922.html#ga755484ffbe39ae3db2875953ed04e7b7',1,'glm']]], + ['lowp_5fi16_3810',['lowp_i16',['../a00922.html#ga392b673fd10847bfb78fb808c6cf8ff7',1,'glm']]], + ['lowp_5fi16vec1_3811',['lowp_i16vec1',['../a00922.html#ga501a2f313f1c220eef4ab02bdabdc3c6',1,'glm']]], + ['lowp_5fi16vec2_3812',['lowp_i16vec2',['../a00922.html#ga7cac84b520a6b57f2fbd880d3d63c51b',1,'glm']]], + ['lowp_5fi16vec3_3813',['lowp_i16vec3',['../a00922.html#gab69ef9cbc2a9214bf5596c528c801b72',1,'glm']]], + ['lowp_5fi16vec4_3814',['lowp_i16vec4',['../a00922.html#ga1d47d94d17c2406abdd1f087a816e387',1,'glm']]], + ['lowp_5fi32_3815',['lowp_i32',['../a00922.html#ga7ff73a45cea9613ebf1a9fad0b9f82ac',1,'glm']]], + ['lowp_5fi32vec1_3816',['lowp_i32vec1',['../a00922.html#gae31ac3608cf643ceffd6554874bec4a0',1,'glm']]], + ['lowp_5fi32vec2_3817',['lowp_i32vec2',['../a00922.html#ga867a3c2d99ab369a454167d2c0a24dbd',1,'glm']]], + ['lowp_5fi32vec3_3818',['lowp_i32vec3',['../a00922.html#ga5fe17c87ede1b1b4d92454cff4da076d',1,'glm']]], + ['lowp_5fi32vec4_3819',['lowp_i32vec4',['../a00922.html#gac9b2eb4296ffe50a32eacca9ed932c08',1,'glm']]], + ['lowp_5fi64_3820',['lowp_i64',['../a00922.html#ga354736e0c645099cd44c42fb2f87c2b8',1,'glm']]], + ['lowp_5fi64vec1_3821',['lowp_i64vec1',['../a00922.html#gab0f7d875db5f3cc9f3168c5a0ed56437',1,'glm']]], + ['lowp_5fi64vec2_3822',['lowp_i64vec2',['../a00922.html#gab485c48f06a4fdd6b8d58d343bb49f3c',1,'glm']]], + ['lowp_5fi64vec3_3823',['lowp_i64vec3',['../a00922.html#ga5cb1dc9e8d300c2cdb0d7ff2308fa36c',1,'glm']]], + ['lowp_5fi64vec4_3824',['lowp_i64vec4',['../a00922.html#gabb4229a4c1488bf063eed0c45355bb9c',1,'glm']]], + ['lowp_5fi8_3825',['lowp_i8',['../a00922.html#ga552a6bde5e75984efb0f863278da2e54',1,'glm']]], + ['lowp_5fi8vec1_3826',['lowp_i8vec1',['../a00922.html#ga036d6c7ca9fbbdc5f3871bfcb937c85c',1,'glm']]], + ['lowp_5fi8vec2_3827',['lowp_i8vec2',['../a00922.html#gac03e5099d27eeaa74b6016ea435a1df2',1,'glm']]], + ['lowp_5fi8vec3_3828',['lowp_i8vec3',['../a00922.html#gae2f43ace6b5b33ab49516d9e40af1845',1,'glm']]], + ['lowp_5fi8vec4_3829',['lowp_i8vec4',['../a00922.html#ga6d388e9b9aa1b389f0672d9c7dfc61c5',1,'glm']]], + ['lowp_5fimat2_3830',['lowp_imat2',['../a00912.html#gaa0bff0be804142bb16d441aec0a7962e',1,'glm']]], + ['lowp_5fimat2x2_3831',['lowp_imat2x2',['../a00912.html#ga1437ac5564f56cbce31a920f363e166b',1,'glm']]], + ['lowp_5fimat2x3_3832',['lowp_imat2x3',['../a00912.html#ga8ac369996a5362cdf1abf8c36e3172f3',1,'glm']]], + ['lowp_5fimat2x4_3833',['lowp_imat2x4',['../a00912.html#ga6fe559c2ca940c01b91cf8c1de37c026',1,'glm']]], + ['lowp_5fimat3_3834',['lowp_imat3',['../a00912.html#ga69bfe668f4170379fc1f35d82b060c43',1,'glm']]], + ['lowp_5fimat3x2_3835',['lowp_imat3x2',['../a00912.html#gac59ceadfa1b442c50784b5e16523d1a1',1,'glm']]], + ['lowp_5fimat3x3_3836',['lowp_imat3x3',['../a00912.html#gaedb738acb8400e3dd8ab0ea6ee3a60cb',1,'glm']]], + ['lowp_5fimat3x4_3837',['lowp_imat3x4',['../a00912.html#ga05c27e87f62296a72f96d3cc4d9b3b9e',1,'glm']]], + ['lowp_5fimat4_3838',['lowp_imat4',['../a00912.html#gad1e77f7270cad461ca4fcb4c3ec2e98c',1,'glm']]], + ['lowp_5fimat4x2_3839',['lowp_imat4x2',['../a00912.html#ga838ff669fc2f7693f34356481603815a',1,'glm']]], + ['lowp_5fimat4x3_3840',['lowp_imat4x3',['../a00912.html#gaf3951f4c614e337fcd66b7bd43c688fb',1,'glm']]], + ['lowp_5fimat4x4_3841',['lowp_imat4x4',['../a00912.html#gadb109b0a3ddb1471ddff260980eace7d',1,'glm']]], + ['lowp_5fint16_3842',['lowp_int16',['../a00922.html#ga698e36b01167fc0f037889334dce8def',1,'glm']]], + ['lowp_5fint16_5ft_3843',['lowp_int16_t',['../a00922.html#ga8b2cd8d31eb345b2d641d9261c38db1a',1,'glm']]], + ['lowp_5fint32_3844',['lowp_int32',['../a00922.html#ga864aabca5f3296e176e0c3ed9cc16b02',1,'glm']]], + ['lowp_5fint32_5ft_3845',['lowp_int32_t',['../a00922.html#ga0350631d35ff800e6133ac6243b13cbc',1,'glm']]], + ['lowp_5fint64_3846',['lowp_int64',['../a00922.html#gaf645b1a60203b39c0207baff5e3d8c3c',1,'glm']]], + ['lowp_5fint64_5ft_3847',['lowp_int64_t',['../a00922.html#gaebf341fc4a5be233f7dde962c2e33847',1,'glm']]], + ['lowp_5fint8_3848',['lowp_int8',['../a00922.html#ga760bcf26fdb23a2c3ecad3c928a19ae6',1,'glm']]], + ['lowp_5fint8_5ft_3849',['lowp_int8_t',['../a00922.html#ga119c41d73fe9977358174eb3ac1035a3',1,'glm']]], + ['lowp_5fivec1_3850',['lowp_ivec1',['../a00922.html#ga68a0c853c31c372ee8e41358810b0c17',1,'glm']]], + ['lowp_5fivec2_3851',['lowp_ivec2',['../a00922.html#gaf6e144ceb74bc745aee2d2acaf19b1fd',1,'glm']]], + ['lowp_5fivec3_3852',['lowp_ivec3',['../a00922.html#ga0b0ead399b82f280988acb3b8c3f9995',1,'glm']]], + ['lowp_5fivec4_3853',['lowp_ivec4',['../a00922.html#gaec9094fb1d7d627a1410f3a10330df6d',1,'glm']]], + ['lowp_5fmat2_3854',['lowp_mat2',['../a00902.html#gae400c4ce1f5f3e1fa12861b2baed331a',1,'glm']]], + ['lowp_5fmat2x2_3855',['lowp_mat2x2',['../a00902.html#ga2df7cdaf9a571ce7a1b09435f502c694',1,'glm']]], + ['lowp_5fmat2x3_3856',['lowp_mat2x3',['../a00902.html#ga3eee3a74d0f1de8635d846dfb29ec4bb',1,'glm']]], + ['lowp_5fmat2x4_3857',['lowp_mat2x4',['../a00902.html#gade27f8324a16626cbce5d3e7da66b070',1,'glm']]], + ['lowp_5fmat3_3858',['lowp_mat3',['../a00902.html#ga6271ebc85ed778ccc15458c3d86fc854',1,'glm']]], + ['lowp_5fmat3x2_3859',['lowp_mat3x2',['../a00902.html#gaabf6cf90fd31efe25c94965507e98390',1,'glm']]], + ['lowp_5fmat3x3_3860',['lowp_mat3x3',['../a00902.html#ga63362cb4a63fc1be7d2e49cd5d574c84',1,'glm']]], + ['lowp_5fmat3x4_3861',['lowp_mat3x4',['../a00902.html#gac5fc6786688eff02904ca5e7d6960092',1,'glm']]], + ['lowp_5fmat4_3862',['lowp_mat4',['../a00902.html#ga2dedee030500865267cd5851c00c139d',1,'glm']]], + ['lowp_5fmat4x2_3863',['lowp_mat4x2',['../a00902.html#gafa3cdb8f24d09d761ec9ae2a4c7e5e21',1,'glm']]], + ['lowp_5fmat4x3_3864',['lowp_mat4x3',['../a00902.html#ga534c3ef5c3b8fdd8656b6afc205b4b77',1,'glm']]], + ['lowp_5fmat4x4_3865',['lowp_mat4x4',['../a00902.html#ga686468a9a815bd4db8cddae42a6d6b87',1,'glm']]], + ['lowp_5fquat_3866',['lowp_quat',['../a00861.html#gade62c5316c1c11a79c34c00c189558eb',1,'glm']]], + ['lowp_5fu16_3867',['lowp_u16',['../a00922.html#ga504ce1631cb2ac02fcf1d44d8c2aa126',1,'glm']]], + ['lowp_5fu16vec1_3868',['lowp_u16vec1',['../a00922.html#gaa6aab4ee7189b86716f5d7015d43021d',1,'glm']]], + ['lowp_5fu16vec2_3869',['lowp_u16vec2',['../a00922.html#ga2a7d997da9ac29cb931e35bd399f58df',1,'glm']]], + ['lowp_5fu16vec3_3870',['lowp_u16vec3',['../a00922.html#gac0253db6c3d3bae1f591676307a9dd8c',1,'glm']]], + ['lowp_5fu16vec4_3871',['lowp_u16vec4',['../a00922.html#gaa7f00459b9a2e5b2757e70afc0c189e1',1,'glm']]], + ['lowp_5fu32_3872',['lowp_u32',['../a00922.html#ga4f072ada9552e1e480bbb3b1acde5250',1,'glm']]], + ['lowp_5fu32vec1_3873',['lowp_u32vec1',['../a00922.html#gabed3be8dfdc4a0df4bf3271dbd7344c4',1,'glm']]], + ['lowp_5fu32vec2_3874',['lowp_u32vec2',['../a00922.html#gaf7e286e81347011e257ee779524e73b9',1,'glm']]], + ['lowp_5fu32vec3_3875',['lowp_u32vec3',['../a00922.html#gad3ad390560a671b1f676fbf03cd3aa15',1,'glm']]], + ['lowp_5fu32vec4_3876',['lowp_u32vec4',['../a00922.html#ga4502885718742aa238c36a312c3f3f20',1,'glm']]], + ['lowp_5fu64_3877',['lowp_u64',['../a00922.html#ga30069d1f02b19599cbfadf98c23ac6ed',1,'glm']]], + ['lowp_5fu64vec1_3878',['lowp_u64vec1',['../a00922.html#ga859be7b9d3a3765c1cafc14dbcf249a6',1,'glm']]], + ['lowp_5fu64vec2_3879',['lowp_u64vec2',['../a00922.html#ga581485db4ba6ddb501505ee711fd8e42',1,'glm']]], + ['lowp_5fu64vec3_3880',['lowp_u64vec3',['../a00922.html#gaa4a8682bec7ec8af666ef87fae38d5d1',1,'glm']]], + ['lowp_5fu64vec4_3881',['lowp_u64vec4',['../a00922.html#ga6fccc89c34045c86339f6fa781ce96de',1,'glm']]], + ['lowp_5fu8_3882',['lowp_u8',['../a00922.html#ga1b09f03da7ac43055c68a349d5445083',1,'glm']]], + ['lowp_5fu8vec1_3883',['lowp_u8vec1',['../a00922.html#ga4b2e0e10d8d154fec9cab50e216588ec',1,'glm']]], + ['lowp_5fu8vec2_3884',['lowp_u8vec2',['../a00922.html#gae6f63fa38635431e51a8f2602f15c566',1,'glm']]], + ['lowp_5fu8vec3_3885',['lowp_u8vec3',['../a00922.html#ga150dc47e31c6b8cf8461803c8d56f7bd',1,'glm']]], + ['lowp_5fu8vec4_3886',['lowp_u8vec4',['../a00922.html#ga9910927f3a4d1addb3da6a82542a8287',1,'glm']]], + ['lowp_5fuint16_3887',['lowp_uint16',['../a00922.html#gad68bfd9f881856fc863a6ebca0b67f78',1,'glm']]], + ['lowp_5fuint16_5ft_3888',['lowp_uint16_t',['../a00922.html#ga91c4815f93177eb423362fd296a87e9f',1,'glm']]], + ['lowp_5fuint32_3889',['lowp_uint32',['../a00922.html#gaa6a5b461bbf5fe20982472aa51896d4b',1,'glm']]], + ['lowp_5fuint32_5ft_3890',['lowp_uint32_t',['../a00922.html#gaf1b735b4b1145174f4e4167d13778f9b',1,'glm']]], + ['lowp_5fuint64_3891',['lowp_uint64',['../a00922.html#gaa212b805736a759998e312cbdd550fae',1,'glm']]], + ['lowp_5fuint64_5ft_3892',['lowp_uint64_t',['../a00922.html#ga8dd3a3281ae5c970ffe0c41d538aa153',1,'glm']]], + ['lowp_5fuint8_3893',['lowp_uint8',['../a00922.html#gaf49470869e9be2c059629b250619804e',1,'glm']]], + ['lowp_5fuint8_5ft_3894',['lowp_uint8_t',['../a00922.html#ga667b2ece2b258be898812dc2177995d1',1,'glm']]], + ['lowp_5fumat2_3895',['lowp_umat2',['../a00912.html#gaf2fba702d990437fc88ff3f3a76846ee',1,'glm']]], + ['lowp_5fumat2x2_3896',['lowp_umat2x2',['../a00912.html#gaa0e5a396da00c84e9d25666f83249bd4',1,'glm']]], + ['lowp_5fumat2x3_3897',['lowp_umat2x3',['../a00912.html#ga85ee1aa570068452f193970783ff2f4c',1,'glm']]], + ['lowp_5fumat2x4_3898',['lowp_umat2x4',['../a00912.html#ga23d07feb07f73d74a2f1e332869f1607',1,'glm']]], + ['lowp_5fumat3_3899',['lowp_umat3',['../a00912.html#gaf1145f72bcdd590f5808c4bc170c2924',1,'glm']]], + ['lowp_5fumat3x2_3900',['lowp_umat3x2',['../a00912.html#gafdc099cf3533b3fcdedd8547afa3670c',1,'glm']]], + ['lowp_5fumat3x3_3901',['lowp_umat3x3',['../a00912.html#gac02216341c63cd454968a81d4859bff2',1,'glm']]], + ['lowp_5fumat3x4_3902',['lowp_umat3x4',['../a00912.html#ga8a0ee76f801a451ff1c4c55c97c6204b',1,'glm']]], + ['lowp_5fumat4_3903',['lowp_umat4',['../a00912.html#gac092c6105827bf9ea080db38074b78eb',1,'glm']]], + ['lowp_5fumat4x2_3904',['lowp_umat4x2',['../a00912.html#ga25ec0b4a1dfcd2b9e37a5026a85e04a1',1,'glm']]], + ['lowp_5fumat4x3_3905',['lowp_umat4x3',['../a00912.html#ga0d7cf5fef436d7368b4a3d9bc3284549',1,'glm']]], + ['lowp_5fumat4x4_3906',['lowp_umat4x4',['../a00912.html#ga9dd0a988cce4208c4b3d43d50af7d056',1,'glm']]], + ['lowp_5fuvec1_3907',['lowp_uvec1',['../a00922.html#ga02cec5a492d6603014b6138e4ec876de',1,'glm']]], + ['lowp_5fuvec2_3908',['lowp_uvec2',['../a00922.html#ga87227fe1e39b5b03ab9a163d1984965e',1,'glm']]], + ['lowp_5fuvec3_3909',['lowp_uvec3',['../a00922.html#ga19866dd9e66f20301de4d084f0063c59',1,'glm']]], + ['lowp_5fuvec4_3910',['lowp_uvec4',['../a00922.html#ga247ee8f72db6d7cbc822721822d57e28',1,'glm']]], + ['lowp_5fvec1_3911',['lowp_vec1',['../a00881.html#ga0a57630f03031706b1d26a7d70d9184c',1,'glm']]], + ['lowp_5fvec2_3912',['lowp_vec2',['../a00900.html#ga30e8baef5d56d5c166872a2bc00f36e9',1,'glm']]], + ['lowp_5fvec3_3913',['lowp_vec3',['../a00900.html#ga868e8e4470a3ef97c7ee3032bf90dc79',1,'glm']]], + ['lowp_5fvec4_3914',['lowp_vec4',['../a00900.html#gace3acb313c800552a9411953eb8b2ed7',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_7.html b/include/glm/doc/api/search/typedefs_7.html new file mode 100644 index 0000000..3900507 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_7.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_7.js b/include/glm/doc/api/search/typedefs_7.js new file mode 100644 index 0000000..cf0a618 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_7.js @@ -0,0 +1,200 @@ +var searchData= +[ + ['mat2_3915',['mat2',['../a00901.html#ga8dd59e7fc6913ac5d61b86553e9148ba',1,'glm']]], + ['mat2x2_3916',['mat2x2',['../a00901.html#gaaa17ef6bfa4e4f2692348b1460c8efcb',1,'glm']]], + ['mat2x3_3917',['mat2x3',['../a00901.html#ga493ab21243abe564b3f7d381e677d29a',1,'glm']]], + ['mat2x4_3918',['mat2x4',['../a00901.html#ga8e879b57ddd81e5bf5a88929844e8b40',1,'glm']]], + ['mat3_3919',['mat3',['../a00901.html#gaefb0fc7a4960b782c18708bb6b655262',1,'glm']]], + ['mat3x2_3920',['mat3x2',['../a00901.html#ga2c27aea32de57d58aec8e92d5d2181e2',1,'glm']]], + ['mat3x3_3921',['mat3x3',['../a00901.html#gab91887d7565059dac640e3a1921c914a',1,'glm']]], + ['mat3x4_3922',['mat3x4',['../a00901.html#gaf991cad0b34f64e33af186326dbc4d66',1,'glm']]], + ['mat4_3923',['mat4',['../a00901.html#ga0db98d836c5549d31cf64ecd043b7af7',1,'glm']]], + ['mat4x2_3924',['mat4x2',['../a00901.html#gad941c947ad6cdd117a0e8554a4754983',1,'glm']]], + ['mat4x3_3925',['mat4x3',['../a00901.html#gac7574544bb94777bdbd2eb224eb72fd0',1,'glm']]], + ['mat4x4_3926',['mat4x4',['../a00901.html#gab2d35cc2655f44d60958d60a1de34e81',1,'glm']]], + ['mediump_5fbvec1_3927',['mediump_bvec1',['../a00876.html#ga7b4ccb989ba179fa44f7b0879c782621',1,'glm']]], + ['mediump_5fbvec2_3928',['mediump_bvec2',['../a00900.html#ga1e743764869efa9223c2bcefccedaddc',1,'glm']]], + ['mediump_5fbvec3_3929',['mediump_bvec3',['../a00900.html#ga50c783c25082882ef00fe2e5cddba4aa',1,'glm']]], + ['mediump_5fbvec4_3930',['mediump_bvec4',['../a00900.html#ga0be2c682258604a35004f088782a9645',1,'glm']]], + ['mediump_5fddualquat_3931',['mediump_ddualquat',['../a00935.html#ga0fb11e48e2d16348ccb06a25213641b4',1,'glm']]], + ['mediump_5fdmat2_3932',['mediump_dmat2',['../a00902.html#ga6205fd19be355600334edef6af0b27cb',1,'glm']]], + ['mediump_5fdmat2x2_3933',['mediump_dmat2x2',['../a00902.html#ga51dc36a7719cb458fa5114831c20d64f',1,'glm']]], + ['mediump_5fdmat2x3_3934',['mediump_dmat2x3',['../a00902.html#ga741e05adf1f12d5d913f67088db1009a',1,'glm']]], + ['mediump_5fdmat2x4_3935',['mediump_dmat2x4',['../a00902.html#ga685bda24922d112786af385deb4deb43',1,'glm']]], + ['mediump_5fdmat3_3936',['mediump_dmat3',['../a00902.html#ga939fbf9c53008a8e84c7dd7cf8de29e2',1,'glm']]], + ['mediump_5fdmat3x2_3937',['mediump_dmat3x2',['../a00902.html#ga2076157df85e49b8c021e03e46a376c1',1,'glm']]], + ['mediump_5fdmat3x3_3938',['mediump_dmat3x3',['../a00902.html#ga47bd2aae4701ee2fc865674a9df3d7a6',1,'glm']]], + ['mediump_5fdmat3x4_3939',['mediump_dmat3x4',['../a00902.html#ga3a132bd05675c2e46556f67cf738600b',1,'glm']]], + ['mediump_5fdmat4_3940',['mediump_dmat4',['../a00902.html#gaf650bc667bf2a0e496b5a9182bc8d378',1,'glm']]], + ['mediump_5fdmat4x2_3941',['mediump_dmat4x2',['../a00902.html#gae220fa4c5a7b13ef2ab0420340de645c',1,'glm']]], + ['mediump_5fdmat4x3_3942',['mediump_dmat4x3',['../a00902.html#ga43ef60e4d996db15c9c8f069a96ff763',1,'glm']]], + ['mediump_5fdmat4x4_3943',['mediump_dmat4x4',['../a00902.html#ga5389b3ab32dc0d72bea00057ab6d1dd3',1,'glm']]], + ['mediump_5fdquat_3944',['mediump_dquat',['../a00858.html#gacdf73b1f7fd8f5a0c79a3934e99c1a14',1,'glm']]], + ['mediump_5fdualquat_3945',['mediump_dualquat',['../a00935.html#gaa7aeb54c167712b38f2178a1be2360ad',1,'glm']]], + ['mediump_5fdvec1_3946',['mediump_dvec1',['../a00879.html#ga79a789ebb176b37a45848f7ccdd3b3dd',1,'glm']]], + ['mediump_5fdvec2_3947',['mediump_dvec2',['../a00900.html#ga2f4f6e9a69a0281d06940fd0990cafc3',1,'glm']]], + ['mediump_5fdvec3_3948',['mediump_dvec3',['../a00900.html#ga61c3b1dff4ec7c878af80503141b9f37',1,'glm']]], + ['mediump_5fdvec4_3949',['mediump_dvec4',['../a00900.html#ga23a8bca00914a51542bfea13a4778186',1,'glm']]], + ['mediump_5ff32_3950',['mediump_f32',['../a00922.html#ga3b27fcd9eaa2757f0aaf6b0ce0d85c80',1,'glm']]], + ['mediump_5ff32mat2_3951',['mediump_f32mat2',['../a00922.html#gaf9020c6176a75bc84828ab01ea7dac25',1,'glm']]], + ['mediump_5ff32mat2x2_3952',['mediump_f32mat2x2',['../a00922.html#gaa3ca74a44102035b3ffb5c9c52dfdd3f',1,'glm']]], + ['mediump_5ff32mat2x3_3953',['mediump_f32mat2x3',['../a00922.html#gad4cc829ab1ad3e05ac0a24828a3c95cf',1,'glm']]], + ['mediump_5ff32mat2x4_3954',['mediump_f32mat2x4',['../a00922.html#gae71445ac6cd0b9fba3e5c905cd030fb1',1,'glm']]], + ['mediump_5ff32mat3_3955',['mediump_f32mat3',['../a00922.html#gaaaf878d0d7bfc0aac054fe269a886ca8',1,'glm']]], + ['mediump_5ff32mat3x2_3956',['mediump_f32mat3x2',['../a00922.html#gaaab39454f56cf9fc6d940358ce5e6a0f',1,'glm']]], + ['mediump_5ff32mat3x3_3957',['mediump_f32mat3x3',['../a00922.html#gacd80ad7640e9e32f2edcb8330b1ffe4f',1,'glm']]], + ['mediump_5ff32mat3x4_3958',['mediump_f32mat3x4',['../a00922.html#ga8df705d775b776f5ae6b39e2ab892899',1,'glm']]], + ['mediump_5ff32mat4_3959',['mediump_f32mat4',['../a00922.html#ga4491baaebbc46a20f1cb5da985576bf4',1,'glm']]], + ['mediump_5ff32mat4x2_3960',['mediump_f32mat4x2',['../a00922.html#gab005efe0fa4de1a928e8ddec4bc2c43f',1,'glm']]], + ['mediump_5ff32mat4x3_3961',['mediump_f32mat4x3',['../a00922.html#gade108f16633cf95fa500b5b8c36c8b00',1,'glm']]], + ['mediump_5ff32mat4x4_3962',['mediump_f32mat4x4',['../a00922.html#ga936e95b881ecd2d109459ca41913fa99',1,'glm']]], + ['mediump_5ff32quat_3963',['mediump_f32quat',['../a00922.html#gaa40c03d52dbfbfaf03e75773b9606ff3',1,'glm']]], + ['mediump_5ff32vec1_3964',['mediump_f32vec1',['../a00922.html#gabb33cab7d7c74cc14aa95455d0690865',1,'glm']]], + ['mediump_5ff32vec2_3965',['mediump_f32vec2',['../a00922.html#gad6eb11412a3161ca8dc1d63b2a307c4b',1,'glm']]], + ['mediump_5ff32vec3_3966',['mediump_f32vec3',['../a00922.html#ga062ffef2973bd8241df993c3b30b327c',1,'glm']]], + ['mediump_5ff32vec4_3967',['mediump_f32vec4',['../a00922.html#gad80c84bcd5f585840faa6179f6fd446c',1,'glm']]], + ['mediump_5ff64_3968',['mediump_f64',['../a00922.html#ga6d40381d78472553f878f66e443feeef',1,'glm']]], + ['mediump_5ff64mat2_3969',['mediump_f64mat2',['../a00922.html#gac1281da5ded55047e8892b0e1f1ae965',1,'glm']]], + ['mediump_5ff64mat2x2_3970',['mediump_f64mat2x2',['../a00922.html#ga4fd527644cccbca4cb205320eab026f3',1,'glm']]], + ['mediump_5ff64mat2x3_3971',['mediump_f64mat2x3',['../a00922.html#gafd9a6ebc0c7b95f5c581d00d16a17c54',1,'glm']]], + ['mediump_5ff64mat2x4_3972',['mediump_f64mat2x4',['../a00922.html#gaf306dd69e53633636aee38cea79d4cb7',1,'glm']]], + ['mediump_5ff64mat3_3973',['mediump_f64mat3',['../a00922.html#gad35fb67eb1d03c5a514f0bd7aed1c776',1,'glm']]], + ['mediump_5ff64mat3x2_3974',['mediump_f64mat3x2',['../a00922.html#gacd926d36a72433f6cac51dd60fa13107',1,'glm']]], + ['mediump_5ff64mat3x3_3975',['mediump_f64mat3x3',['../a00922.html#ga84d88a6e3a54ccd2b67e195af4a4c23e',1,'glm']]], + ['mediump_5ff64mat3x4_3976',['mediump_f64mat3x4',['../a00922.html#gad38c544d332b8c4bd0b70b1bd9feccc2',1,'glm']]], + ['mediump_5ff64mat4_3977',['mediump_f64mat4',['../a00922.html#gaa805ef691c711dc41e2776cfb67f5cf5',1,'glm']]], + ['mediump_5ff64mat4x2_3978',['mediump_f64mat4x2',['../a00922.html#ga17d36f0ea22314117e1cec9594b33945',1,'glm']]], + ['mediump_5ff64mat4x3_3979',['mediump_f64mat4x3',['../a00922.html#ga54697a78f9a4643af6a57fc2e626ec0d',1,'glm']]], + ['mediump_5ff64mat4x4_3980',['mediump_f64mat4x4',['../a00922.html#ga66edb8de17b9235029472f043ae107e9',1,'glm']]], + ['mediump_5ff64quat_3981',['mediump_f64quat',['../a00922.html#ga5e52f485059ce6e3010c590b882602c9',1,'glm']]], + ['mediump_5ff64vec1_3982',['mediump_f64vec1',['../a00922.html#gac30fdf8afa489400053275b6a3350127',1,'glm']]], + ['mediump_5ff64vec2_3983',['mediump_f64vec2',['../a00922.html#ga8ebc04ecf6440c4ee24718a16600ce6b',1,'glm']]], + ['mediump_5ff64vec3_3984',['mediump_f64vec3',['../a00922.html#ga461c4c7d0757404dd0dba931760b25cf',1,'glm']]], + ['mediump_5ff64vec4_3985',['mediump_f64vec4',['../a00922.html#gacfea053bd6bb3eddb996a4f94de22a3e',1,'glm']]], + ['mediump_5ffdualquat_3986',['mediump_fdualquat',['../a00935.html#ga4a6b594ff7e81150d8143001367a9431',1,'glm']]], + ['mediump_5ffloat32_3987',['mediump_float32',['../a00922.html#ga7812bf00676fb1a86dcd62cca354d2c7',1,'glm']]], + ['mediump_5ffloat32_5ft_3988',['mediump_float32_t',['../a00922.html#gae4dee61f8fe1caccec309fbed02faf12',1,'glm']]], + ['mediump_5ffloat64_3989',['mediump_float64',['../a00922.html#gab83d8aae6e4f115e97a785e8574a115f',1,'glm']]], + ['mediump_5ffloat64_5ft_3990',['mediump_float64_t',['../a00922.html#gac61843e4fa96c1f4e9d8316454f32a8e',1,'glm']]], + ['mediump_5ffmat2_3991',['mediump_fmat2',['../a00922.html#ga74e9133378fd0b4da8ac0bc0876702ff',1,'glm']]], + ['mediump_5ffmat2x2_3992',['mediump_fmat2x2',['../a00922.html#ga98a687c17b174ea316b5f397b64f44bc',1,'glm']]], + ['mediump_5ffmat2x3_3993',['mediump_fmat2x3',['../a00922.html#gaa03f939d90d5ef157df957d93f0b9a64',1,'glm']]], + ['mediump_5ffmat2x4_3994',['mediump_fmat2x4',['../a00922.html#ga35223623e9ccebd8a281873b71b7d213',1,'glm']]], + ['mediump_5ffmat3_3995',['mediump_fmat3',['../a00922.html#ga80823dfad5dba98512c76af498343847',1,'glm']]], + ['mediump_5ffmat3x2_3996',['mediump_fmat3x2',['../a00922.html#ga42569e5b92f8635cedeadb1457ee1467',1,'glm']]], + ['mediump_5ffmat3x3_3997',['mediump_fmat3x3',['../a00922.html#gaa6f526388c74a66b3d52315a14d434ae',1,'glm']]], + ['mediump_5ffmat3x4_3998',['mediump_fmat3x4',['../a00922.html#gaefe8ef520c6cb78590ebbefe648da4d4',1,'glm']]], + ['mediump_5ffmat4_3999',['mediump_fmat4',['../a00922.html#gac1c38778c0b5a1263f07753c05a4f7b9',1,'glm']]], + ['mediump_5ffmat4x2_4000',['mediump_fmat4x2',['../a00922.html#gacea38a85893e17e6834b6cb09a9ad0cf',1,'glm']]], + ['mediump_5ffmat4x3_4001',['mediump_fmat4x3',['../a00922.html#ga41ad497f7eae211556aefd783cb02b90',1,'glm']]], + ['mediump_5ffmat4x4_4002',['mediump_fmat4x4',['../a00922.html#ga22e27beead07bff4d5ce9d6065a57279',1,'glm']]], + ['mediump_5ffvec1_4003',['mediump_fvec1',['../a00922.html#ga367964fc2133d3f1b5b3755ff9cf6c9b',1,'glm']]], + ['mediump_5ffvec2_4004',['mediump_fvec2',['../a00922.html#ga44bfa55cda5dbf53f24a1fb7610393d6',1,'glm']]], + ['mediump_5ffvec3_4005',['mediump_fvec3',['../a00922.html#ga999dc6703ad16e3d3c26b74ea8083f07',1,'glm']]], + ['mediump_5ffvec4_4006',['mediump_fvec4',['../a00922.html#ga1bed890513c0f50b7e7ba4f7f359dbfb',1,'glm']]], + ['mediump_5fi16_4007',['mediump_i16',['../a00922.html#ga62a17cddeb4dffb4e18fe3aea23f051a',1,'glm']]], + ['mediump_5fi16vec1_4008',['mediump_i16vec1',['../a00922.html#gacc44265ed440bf5e6e566782570de842',1,'glm']]], + ['mediump_5fi16vec2_4009',['mediump_i16vec2',['../a00922.html#ga4b5e2c9aaa5d7717bf71179aefa12e88',1,'glm']]], + ['mediump_5fi16vec3_4010',['mediump_i16vec3',['../a00922.html#ga3be6c7fc5fe08fa2274bdb001d5f2633',1,'glm']]], + ['mediump_5fi16vec4_4011',['mediump_i16vec4',['../a00922.html#gaf52982bb23e3a3772649b2c5bb84b107',1,'glm']]], + ['mediump_5fi32_4012',['mediump_i32',['../a00922.html#gaf5e94bf2a20af7601787c154751dc2e1',1,'glm']]], + ['mediump_5fi32vec1_4013',['mediump_i32vec1',['../a00922.html#ga46a57f71e430637559097a732b550a7e',1,'glm']]], + ['mediump_5fi32vec2_4014',['mediump_i32vec2',['../a00922.html#ga20bf224bd4f8a24ecc4ed2004a40c219',1,'glm']]], + ['mediump_5fi32vec3_4015',['mediump_i32vec3',['../a00922.html#ga13a221b910aa9eb1b04ca1c86e81015a',1,'glm']]], + ['mediump_5fi32vec4_4016',['mediump_i32vec4',['../a00922.html#ga6addd4dfee87fc09ab9525e3d07db4c8',1,'glm']]], + ['mediump_5fi64_4017',['mediump_i64',['../a00922.html#ga3ebcb1f6d8d8387253de8bccb058d77f',1,'glm']]], + ['mediump_5fi64vec1_4018',['mediump_i64vec1',['../a00922.html#ga8343e9d244fb17a5bbf0d94d36b3695e',1,'glm']]], + ['mediump_5fi64vec2_4019',['mediump_i64vec2',['../a00922.html#ga2c94aeae3457325944ca1059b0b68330',1,'glm']]], + ['mediump_5fi64vec3_4020',['mediump_i64vec3',['../a00922.html#ga8089722ffdf868cdfe721dea1fb6a90e',1,'glm']]], + ['mediump_5fi64vec4_4021',['mediump_i64vec4',['../a00922.html#gabf1f16c5ab8cb0484bd1e846ae4368f1',1,'glm']]], + ['mediump_5fi8_4022',['mediump_i8',['../a00922.html#gacf1ded173e1e2d049c511d095b259e21',1,'glm']]], + ['mediump_5fi8vec1_4023',['mediump_i8vec1',['../a00922.html#ga85e8893f4ae3630065690a9000c0c483',1,'glm']]], + ['mediump_5fi8vec2_4024',['mediump_i8vec2',['../a00922.html#ga2a8bdc32184ea0a522ef7bd90640cf67',1,'glm']]], + ['mediump_5fi8vec3_4025',['mediump_i8vec3',['../a00922.html#ga6dd1c1618378c6f94d522a61c28773c9',1,'glm']]], + ['mediump_5fi8vec4_4026',['mediump_i8vec4',['../a00922.html#gac7bb04fb857ef7b520e49f6c381432be',1,'glm']]], + ['mediump_5fimat2_4027',['mediump_imat2',['../a00912.html#ga20f4cc7ab23e2aa1f4db9fdb5496d378',1,'glm']]], + ['mediump_5fimat2x2_4028',['mediump_imat2x2',['../a00912.html#gaaa39fcf19d3b30ace619e1cd813be8c1',1,'glm']]], + ['mediump_5fimat2x3_4029',['mediump_imat2x3',['../a00912.html#gace3b4f5065f6e6793db8179161bc0c15',1,'glm']]], + ['mediump_5fimat2x4_4030',['mediump_imat2x4',['../a00912.html#gabf8b6cc6c5250d43e57c6a9d419d11d0',1,'glm']]], + ['mediump_5fimat3_4031',['mediump_imat3',['../a00912.html#ga6c63bdc736efd3466e0730de0251cb71',1,'glm']]], + ['mediump_5fimat3x2_4032',['mediump_imat3x2',['../a00912.html#ga4a85a15738d7a789f81a0ac8d2147c5f',1,'glm']]], + ['mediump_5fimat3x3_4033',['mediump_imat3x3',['../a00912.html#gad3d76765685183bab97e9a9cf91ea26e',1,'glm']]], + ['mediump_5fimat3x4_4034',['mediump_imat3x4',['../a00912.html#ga3cef6f8fd891e0e8a44aabafb2df1d58',1,'glm']]], + ['mediump_5fimat4_4035',['mediump_imat4',['../a00912.html#gaf348552978553630d2a00b78eb887ced',1,'glm']]], + ['mediump_5fimat4x2_4036',['mediump_imat4x2',['../a00912.html#ga8254ea8195f5675afea4be98e64dd04d',1,'glm']]], + ['mediump_5fimat4x3_4037',['mediump_imat4x3',['../a00912.html#gad15630b8337c9becd8c3f4e9b901bce9',1,'glm']]], + ['mediump_5fimat4x4_4038',['mediump_imat4x4',['../a00912.html#ga93d485d0de7835c4679e2cced1b7f033',1,'glm']]], + ['mediump_5fint16_4039',['mediump_int16',['../a00922.html#gadff3608baa4b5bd3ed28f95c1c2c345d',1,'glm']]], + ['mediump_5fint16_5ft_4040',['mediump_int16_t',['../a00922.html#ga80e72fe94c88498537e8158ba7591c54',1,'glm']]], + ['mediump_5fint32_4041',['mediump_int32',['../a00922.html#ga5244cef85d6e870e240c76428a262ae8',1,'glm']]], + ['mediump_5fint32_5ft_4042',['mediump_int32_t',['../a00922.html#ga26fc7ced1ad7ca5024f1c973c8dc9180',1,'glm']]], + ['mediump_5fint64_4043',['mediump_int64',['../a00922.html#ga7b968f2b86a0442a89c7359171e1d866',1,'glm']]], + ['mediump_5fint64_5ft_4044',['mediump_int64_t',['../a00922.html#gac3bc41bcac61d1ba8f02a6f68ce23f64',1,'glm']]], + ['mediump_5fint8_4045',['mediump_int8',['../a00922.html#ga6fbd69cbdaa44345bff923a2cf63de7e',1,'glm']]], + ['mediump_5fint8_5ft_4046',['mediump_int8_t',['../a00922.html#ga6d7b3789ecb932c26430009478cac7ae',1,'glm']]], + ['mediump_5fivec1_4047',['mediump_ivec1',['../a00922.html#ga6fde13de973ad9ae82839389353f8529',1,'glm']]], + ['mediump_5fivec2_4048',['mediump_ivec2',['../a00922.html#gaf39bf0b097a5c16905c28a31766b7e27',1,'glm']]], + ['mediump_5fivec3_4049',['mediump_ivec3',['../a00922.html#gaebbb60a777cc21c3e63154c23b02817d',1,'glm']]], + ['mediump_5fivec4_4050',['mediump_ivec4',['../a00922.html#ga15c4b5e063630bef11347f98de373ed9',1,'glm']]], + ['mediump_5fmat2_4051',['mediump_mat2',['../a00902.html#ga745452bd9c89f5ad948203e4fb4b4ea3',1,'glm']]], + ['mediump_5fmat2x2_4052',['mediump_mat2x2',['../a00902.html#ga0cdf57d29f9448864237b2fb3e39aa1d',1,'glm']]], + ['mediump_5fmat2x3_4053',['mediump_mat2x3',['../a00902.html#ga497d513d552d927537d61fa11e3701ab',1,'glm']]], + ['mediump_5fmat2x4_4054',['mediump_mat2x4',['../a00902.html#gae7b75ea2e09fa686a79bbe9b6ca68ee5',1,'glm']]], + ['mediump_5fmat3_4055',['mediump_mat3',['../a00902.html#ga5aae49834d02732942f44e61d7bce136',1,'glm']]], + ['mediump_5fmat3x2_4056',['mediump_mat3x2',['../a00902.html#ga9e1c9ee65fef547bde793e69723e24eb',1,'glm']]], + ['mediump_5fmat3x3_4057',['mediump_mat3x3',['../a00902.html#gabc0f2f4ad21c90b341881cf056f8650e',1,'glm']]], + ['mediump_5fmat3x4_4058',['mediump_mat3x4',['../a00902.html#gaa669c6675c3405f76c0b14020d1c0d61',1,'glm']]], + ['mediump_5fmat4_4059',['mediump_mat4',['../a00902.html#gab8531bc3f269aa45835cd6e1972b7fc7',1,'glm']]], + ['mediump_5fmat4x2_4060',['mediump_mat4x2',['../a00902.html#gad75706b70545412ba9ac27d5ee210f66',1,'glm']]], + ['mediump_5fmat4x3_4061',['mediump_mat4x3',['../a00902.html#ga4a1440b5ea3cf84d5b06c79b534bd770',1,'glm']]], + ['mediump_5fmat4x4_4062',['mediump_mat4x4',['../a00902.html#ga15bca2b70917d9752231160d9da74b01',1,'glm']]], + ['mediump_5fquat_4063',['mediump_quat',['../a00861.html#gad2a59409de1bb12ccb6eb692ee7e9d8d',1,'glm']]], + ['mediump_5fu16_4064',['mediump_u16',['../a00922.html#ga9df98857be695d5a30cb30f5bfa38a80',1,'glm']]], + ['mediump_5fu16vec1_4065',['mediump_u16vec1',['../a00922.html#ga400ce8cc566de093a9b28e59e220d6e4',1,'glm']]], + ['mediump_5fu16vec2_4066',['mediump_u16vec2',['../a00922.html#ga429c201b3e92c90b4ef4356f2be52ee1',1,'glm']]], + ['mediump_5fu16vec3_4067',['mediump_u16vec3',['../a00922.html#gac9ba20234b0c3751d45ce575fc71e551',1,'glm']]], + ['mediump_5fu16vec4_4068',['mediump_u16vec4',['../a00922.html#ga5793393686ce5bd2d5968ff9144762b8',1,'glm']]], + ['mediump_5fu32_4069',['mediump_u32',['../a00922.html#ga1bd0e914158bf03135f8a317de6debe9',1,'glm']]], + ['mediump_5fu32vec1_4070',['mediump_u32vec1',['../a00922.html#ga8a11ccd2e38f674bbf3c2d1afc232aee',1,'glm']]], + ['mediump_5fu32vec2_4071',['mediump_u32vec2',['../a00922.html#ga94f74851fce338549c705b5f0d601c4f',1,'glm']]], + ['mediump_5fu32vec3_4072',['mediump_u32vec3',['../a00922.html#ga012c24c8fc69707b90260474c70275a2',1,'glm']]], + ['mediump_5fu32vec4_4073',['mediump_u32vec4',['../a00922.html#ga5d43ee8b5dbaa06c327b03b83682598a',1,'glm']]], + ['mediump_5fu64_4074',['mediump_u64',['../a00922.html#ga2af9490085ae3bdf36a544e9dd073610',1,'glm']]], + ['mediump_5fu64vec1_4075',['mediump_u64vec1',['../a00922.html#ga659f372ccb8307d5db5beca942cde5e8',1,'glm']]], + ['mediump_5fu64vec2_4076',['mediump_u64vec2',['../a00922.html#ga73a08ef5a74798f3a1a99250b5f86a7d',1,'glm']]], + ['mediump_5fu64vec3_4077',['mediump_u64vec3',['../a00922.html#ga1900c6ab74acd392809425953359ef52',1,'glm']]], + ['mediump_5fu64vec4_4078',['mediump_u64vec4',['../a00922.html#gaec7ee455cb379ec2993e81482123e1cc',1,'glm']]], + ['mediump_5fu8_4079',['mediump_u8',['../a00922.html#gad1213a22bbb9e4107f07eaa4956f8281',1,'glm']]], + ['mediump_5fu8vec1_4080',['mediump_u8vec1',['../a00922.html#ga4a43050843b141bdc7e85437faef6f55',1,'glm']]], + ['mediump_5fu8vec2_4081',['mediump_u8vec2',['../a00922.html#ga907f85d4a0eac3d8aaf571e5c2647194',1,'glm']]], + ['mediump_5fu8vec3_4082',['mediump_u8vec3',['../a00922.html#gaddc6f7748b699254942c5216b68f8f7f',1,'glm']]], + ['mediump_5fu8vec4_4083',['mediump_u8vec4',['../a00922.html#gaaf4ee3b76d43d98da02ec399b99bda4b',1,'glm']]], + ['mediump_5fuint16_4084',['mediump_uint16',['../a00922.html#ga2885a6c89916911e418c06bb76b9bdbb',1,'glm']]], + ['mediump_5fuint16_5ft_4085',['mediump_uint16_t',['../a00922.html#ga3963b1050fc65a383ee28e3f827b6e3e',1,'glm']]], + ['mediump_5fuint32_4086',['mediump_uint32',['../a00922.html#ga34dd5ec1988c443bae80f1b20a8ade5f',1,'glm']]], + ['mediump_5fuint32_5ft_4087',['mediump_uint32_t',['../a00922.html#gaf4dae276fd29623950de14a6ca2586b5',1,'glm']]], + ['mediump_5fuint64_4088',['mediump_uint64',['../a00922.html#ga30652709815ad9404272a31957daa59e',1,'glm']]], + ['mediump_5fuint64_5ft_4089',['mediump_uint64_t',['../a00922.html#ga9b170dd4a8f38448a2dc93987c7875e9',1,'glm']]], + ['mediump_5fuint8_4090',['mediump_uint8',['../a00922.html#ga1fa92a233b9110861cdbc8c2ccf0b5a3',1,'glm']]], + ['mediump_5fuint8_5ft_4091',['mediump_uint8_t',['../a00922.html#gadfe65c78231039e90507770db50c98c7',1,'glm']]], + ['mediump_5fumat2_4092',['mediump_umat2',['../a00912.html#ga43041378b3410ea951b7de0dfd2bc7ee',1,'glm']]], + ['mediump_5fumat2x2_4093',['mediump_umat2x2',['../a00912.html#ga124680e6605446ee2c5003afe6a3c5ad',1,'glm']]], + ['mediump_5fumat2x3_4094',['mediump_umat2x3',['../a00912.html#ga7fcb637b3a741d958930091049e93dc3',1,'glm']]], + ['mediump_5fumat2x4_4095',['mediump_umat2x4',['../a00912.html#ga02cf42c69be99ffd657d9e6f63c17bb5',1,'glm']]], + ['mediump_5fumat3_4096',['mediump_umat3',['../a00912.html#ga1730dbe3c67801f53520b06d1aa0a34a',1,'glm']]], + ['mediump_5fumat3x2_4097',['mediump_umat3x2',['../a00912.html#gae83b65eb313187fe4bff3f1d20cf8443',1,'glm']]], + ['mediump_5fumat3x3_4098',['mediump_umat3x3',['../a00912.html#gac84034b2c48971dcf45194c87ef30da5',1,'glm']]], + ['mediump_5fumat3x4_4099',['mediump_umat3x4',['../a00912.html#gad7e5b8bb3bfe4d8db6980743e48a8281',1,'glm']]], + ['mediump_5fumat4_4100',['mediump_umat4',['../a00912.html#ga5087c2beb26a11d9af87432e554cf9d1',1,'glm']]], + ['mediump_5fumat4x2_4101',['mediump_umat4x2',['../a00912.html#gac47efafc2e8446b53245f1cf71ee302d',1,'glm']]], + ['mediump_5fumat4x3_4102',['mediump_umat4x3',['../a00912.html#gadb5f724533a1c3cd150b8d25860fe34a',1,'glm']]], + ['mediump_5fumat4x4_4103',['mediump_umat4x4',['../a00912.html#ga331d718d5b35ab5c3d6bdf923263b8aa',1,'glm']]], + ['mediump_5fuvec1_4104',['mediump_uvec1',['../a00922.html#ga63844d22efcd376cb66a8bab1aad9c40',1,'glm']]], + ['mediump_5fuvec2_4105',['mediump_uvec2',['../a00922.html#ga5b85f66da9cf7c90e595b94cc95d237a',1,'glm']]], + ['mediump_5fuvec3_4106',['mediump_uvec3',['../a00922.html#ga394fa81d7e8d12cd2aaeabb2c9d4b031',1,'glm']]], + ['mediump_5fuvec4_4107',['mediump_uvec4',['../a00922.html#gade9d6be4502877f7e6e7ffb54d46ac3f',1,'glm']]], + ['mediump_5fvec1_4108',['mediump_vec1',['../a00881.html#ga645f53e6b8056609023a894b4e2beef4',1,'glm']]], + ['mediump_5fvec2_4109',['mediump_vec2',['../a00900.html#gabc61976261c406520c7a8e4d946dc3f0',1,'glm']]], + ['mediump_5fvec3_4110',['mediump_vec3',['../a00900.html#ga2384e263df19f1404b733016eff78fca',1,'glm']]], + ['mediump_5fvec4_4111',['mediump_vec4',['../a00900.html#ga5c6978d3ffba06738416a33083853fc0',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_8.html b/include/glm/doc/api/search/typedefs_8.html new file mode 100644 index 0000000..66884e1 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_8.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_8.js b/include/glm/doc/api/search/typedefs_8.js new file mode 100644 index 0000000..b7c3374 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_8.js @@ -0,0 +1,187 @@ +var searchData= +[ + ['packed_5fbvec1_4112',['packed_bvec1',['../a00921.html#ga88632cea9008ac0ac1388e94e804a53c',1,'glm']]], + ['packed_5fbvec2_4113',['packed_bvec2',['../a00921.html#gab85245913eaa40ab82adabcae37086cb',1,'glm']]], + ['packed_5fbvec3_4114',['packed_bvec3',['../a00921.html#ga0c48f9417f649e27f3fb0c9f733a18bd',1,'glm']]], + ['packed_5fbvec4_4115',['packed_bvec4',['../a00921.html#ga3180d7db84a74c402157df3bbc0ae3ed',1,'glm']]], + ['packed_5fdmat2_4116',['packed_dmat2',['../a00921.html#gad87408a8350918711f845f071bbe43fb',1,'glm']]], + ['packed_5fdmat2x2_4117',['packed_dmat2x2',['../a00921.html#gaaa33d8e06657a777efb0c72c44ce87a9',1,'glm']]], + ['packed_5fdmat2x3_4118',['packed_dmat2x3',['../a00921.html#gac3a5315f588ba04ad255188071ec4e22',1,'glm']]], + ['packed_5fdmat2x4_4119',['packed_dmat2x4',['../a00921.html#gae398fc3156f51d3684b08f62c1a5a6d4',1,'glm']]], + ['packed_5fdmat3_4120',['packed_dmat3',['../a00921.html#ga03dfc90d539cc87ea3a15a9caa5d2245',1,'glm']]], + ['packed_5fdmat3x2_4121',['packed_dmat3x2',['../a00921.html#gae36de20a4c0e0b1444b7903ae811d94e',1,'glm']]], + ['packed_5fdmat3x3_4122',['packed_dmat3x3',['../a00921.html#gab9b909f1392d86854334350efcae85f5',1,'glm']]], + ['packed_5fdmat3x4_4123',['packed_dmat3x4',['../a00921.html#ga199131fd279c92c2ac12df6d978f1dd6',1,'glm']]], + ['packed_5fdmat4_4124',['packed_dmat4',['../a00921.html#gada980a3485640aa8151f368f17ad3086',1,'glm']]], + ['packed_5fdmat4x2_4125',['packed_dmat4x2',['../a00921.html#ga6dc65249730698d3cc9ac5d7e1bc4d72',1,'glm']]], + ['packed_5fdmat4x3_4126',['packed_dmat4x3',['../a00921.html#gadf202aaa9ed71c09f9bbe347e43f8764',1,'glm']]], + ['packed_5fdmat4x4_4127',['packed_dmat4x4',['../a00921.html#gae20617435a6d042d7c38da2badd64a09',1,'glm']]], + ['packed_5fdquat_4128',['packed_dquat',['../a00921.html#gab81f0e92623c05b97a66c5efd1e29475',1,'glm']]], + ['packed_5fdvec1_4129',['packed_dvec1',['../a00921.html#ga532f0c940649b1ee303acd572fc35531',1,'glm']]], + ['packed_5fdvec2_4130',['packed_dvec2',['../a00921.html#ga5c194b11fbda636f2ab20c3bd0079196',1,'glm']]], + ['packed_5fdvec3_4131',['packed_dvec3',['../a00921.html#ga0581ea552d86b2b5de7a2804bed80e72',1,'glm']]], + ['packed_5fdvec4_4132',['packed_dvec4',['../a00921.html#gae8a9b181f9dc813ad6e125a52b14b935',1,'glm']]], + ['packed_5fhighp_5fbvec1_4133',['packed_highp_bvec1',['../a00921.html#ga439e97795314b81cd15abd4e5c2e6e7a',1,'glm']]], + ['packed_5fhighp_5fbvec2_4134',['packed_highp_bvec2',['../a00921.html#gad791d671f4fcf1ed1ea41f752916b70a',1,'glm']]], + ['packed_5fhighp_5fbvec3_4135',['packed_highp_bvec3',['../a00921.html#ga6a5a3250b57dfadc66735bc72911437f',1,'glm']]], + ['packed_5fhighp_5fbvec4_4136',['packed_highp_bvec4',['../a00921.html#ga09f517d88b996ef1b2f42fd54222b82d',1,'glm']]], + ['packed_5fhighp_5fdmat2_4137',['packed_highp_dmat2',['../a00921.html#gae29686632fd05efac0675d9a6370d77b',1,'glm']]], + ['packed_5fhighp_5fdmat2x2_4138',['packed_highp_dmat2x2',['../a00921.html#ga22bd6382b16052e301edbfc031b9f37a',1,'glm']]], + ['packed_5fhighp_5fdmat2x3_4139',['packed_highp_dmat2x3',['../a00921.html#ga999d82719696d4c59f4d236dd08f273d',1,'glm']]], + ['packed_5fhighp_5fdmat2x4_4140',['packed_highp_dmat2x4',['../a00921.html#ga6998ac2a8d7fe456b651a6336ed26bb0',1,'glm']]], + ['packed_5fhighp_5fdmat3_4141',['packed_highp_dmat3',['../a00921.html#gadac7c040c4810dd52b36fcd09d097400',1,'glm']]], + ['packed_5fhighp_5fdmat3x2_4142',['packed_highp_dmat3x2',['../a00921.html#gab462744977beb85fb5c782bc2eea7b15',1,'glm']]], + ['packed_5fhighp_5fdmat3x3_4143',['packed_highp_dmat3x3',['../a00921.html#ga49e5a709d098523823b2f824e48672a6',1,'glm']]], + ['packed_5fhighp_5fdmat3x4_4144',['packed_highp_dmat3x4',['../a00921.html#ga2c67b3b0adab71c8680c3d819f1fa9b7',1,'glm']]], + ['packed_5fhighp_5fdmat4_4145',['packed_highp_dmat4',['../a00921.html#ga6718822cd7af005a9b5bd6ee282f6ba6',1,'glm']]], + ['packed_5fhighp_5fdmat4x2_4146',['packed_highp_dmat4x2',['../a00921.html#ga12e39e797fb724a5b51fcbea2513a7da',1,'glm']]], + ['packed_5fhighp_5fdmat4x3_4147',['packed_highp_dmat4x3',['../a00921.html#ga79c2e9f82e67963c1ecad0ad6d0ec72e',1,'glm']]], + ['packed_5fhighp_5fdmat4x4_4148',['packed_highp_dmat4x4',['../a00921.html#ga2df58e03e5afded28707b4f7d077afb4',1,'glm']]], + ['packed_5fhighp_5fdquat_4149',['packed_highp_dquat',['../a00921.html#ga2181ff3f0e91250807f0233b1493d8eb',1,'glm']]], + ['packed_5fhighp_5fdvec1_4150',['packed_highp_dvec1',['../a00921.html#gab472b2d917b5e6efd76e8c7dbfbbf9f1',1,'glm']]], + ['packed_5fhighp_5fdvec2_4151',['packed_highp_dvec2',['../a00921.html#ga5b2dc48fa19b684d207d69c6b145eb63',1,'glm']]], + ['packed_5fhighp_5fdvec3_4152',['packed_highp_dvec3',['../a00921.html#gaaac6b356ef00154da41aaae7d1549193',1,'glm']]], + ['packed_5fhighp_5fdvec4_4153',['packed_highp_dvec4',['../a00921.html#ga81b5368fe485e2630aa9b44832d592e7',1,'glm']]], + ['packed_5fhighp_5fivec1_4154',['packed_highp_ivec1',['../a00921.html#ga7245acc887a5438f46fd85fdf076bb3b',1,'glm']]], + ['packed_5fhighp_5fivec2_4155',['packed_highp_ivec2',['../a00921.html#ga54f368ec6b514a5aa4f28d40e6f93ef7',1,'glm']]], + ['packed_5fhighp_5fivec3_4156',['packed_highp_ivec3',['../a00921.html#ga865a9c7bb22434b1b8c5ac31e164b628',1,'glm']]], + ['packed_5fhighp_5fivec4_4157',['packed_highp_ivec4',['../a00921.html#gad6f1b4e3a51c2c051814b60d5d1b8895',1,'glm']]], + ['packed_5fhighp_5fmat2_4158',['packed_highp_mat2',['../a00921.html#ga2f2d913d8cca2f935b2522964408c0b2',1,'glm']]], + ['packed_5fhighp_5fmat2x2_4159',['packed_highp_mat2x2',['../a00921.html#ga245c12d2daf67feecaa2d3277c8f6661',1,'glm']]], + ['packed_5fhighp_5fmat2x3_4160',['packed_highp_mat2x3',['../a00921.html#ga069cc8892aadae144c00f35297617d44',1,'glm']]], + ['packed_5fhighp_5fmat2x4_4161',['packed_highp_mat2x4',['../a00921.html#ga6904d09b62141d09712b76983892f95b',1,'glm']]], + ['packed_5fhighp_5fmat3_4162',['packed_highp_mat3',['../a00921.html#gabdd5fbffe8b8b8a7b33523f25b120dbe',1,'glm']]], + ['packed_5fhighp_5fmat3x2_4163',['packed_highp_mat3x2',['../a00921.html#ga2624719cb251d8de8cad1beaefc3a3f9',1,'glm']]], + ['packed_5fhighp_5fmat3x3_4164',['packed_highp_mat3x3',['../a00921.html#gaf2e07527d678440bf0c20adbeb9177c5',1,'glm']]], + ['packed_5fhighp_5fmat3x4_4165',['packed_highp_mat3x4',['../a00921.html#ga72102fa6ac2445aa3bb203128ad52449',1,'glm']]], + ['packed_5fhighp_5fmat4_4166',['packed_highp_mat4',['../a00921.html#ga253e8379b08d2dc6fe2800b2fb913203',1,'glm']]], + ['packed_5fhighp_5fmat4x2_4167',['packed_highp_mat4x2',['../a00921.html#gae389c2071cf3cdb33e7812c6fd156710',1,'glm']]], + ['packed_5fhighp_5fmat4x3_4168',['packed_highp_mat4x3',['../a00921.html#ga4584f64394bd7123b7a8534741e4916c',1,'glm']]], + ['packed_5fhighp_5fmat4x4_4169',['packed_highp_mat4x4',['../a00921.html#ga0149fe15668925147e07c94fd2c2d6ae',1,'glm']]], + ['packed_5fhighp_5fquat_4170',['packed_highp_quat',['../a00921.html#ga473ba40eeb4448ccba73dfff3cc10fe8',1,'glm']]], + ['packed_5fhighp_5fuvec1_4171',['packed_highp_uvec1',['../a00921.html#ga8c32b53f628a3616aa5061e58d66fe74',1,'glm']]], + ['packed_5fhighp_5fuvec2_4172',['packed_highp_uvec2',['../a00921.html#gab704d4fb15f6f96d70e363d5db7060cd',1,'glm']]], + ['packed_5fhighp_5fuvec3_4173',['packed_highp_uvec3',['../a00921.html#ga0b570da473fec4619db5aa0dce5133b0',1,'glm']]], + ['packed_5fhighp_5fuvec4_4174',['packed_highp_uvec4',['../a00921.html#gaa582f38c82aef61dea7aaedf15bb06a6',1,'glm']]], + ['packed_5fhighp_5fvec1_4175',['packed_highp_vec1',['../a00921.html#ga56473759d2702ee19ab7f91d0017fa70',1,'glm']]], + ['packed_5fhighp_5fvec2_4176',['packed_highp_vec2',['../a00921.html#ga6b8b9475e7c3b16aed13edbc460bbc4d',1,'glm']]], + ['packed_5fhighp_5fvec3_4177',['packed_highp_vec3',['../a00921.html#ga3815661df0e2de79beff8168c09adf1e',1,'glm']]], + ['packed_5fhighp_5fvec4_4178',['packed_highp_vec4',['../a00921.html#ga4015f36bf5a5adb6ac5d45beed959867',1,'glm']]], + ['packed_5fivec1_4179',['packed_ivec1',['../a00921.html#ga11581a06fc7bf941fa4d4b6aca29812c',1,'glm']]], + ['packed_5fivec2_4180',['packed_ivec2',['../a00921.html#ga1fe4c5f56b8087d773aa90dc88a257a7',1,'glm']]], + ['packed_5fivec3_4181',['packed_ivec3',['../a00921.html#gae157682a7847161787951ba1db4cf325',1,'glm']]], + ['packed_5fivec4_4182',['packed_ivec4',['../a00921.html#gac228b70372abd561340d5f926a7c1778',1,'glm']]], + ['packed_5flowp_5fbvec1_4183',['packed_lowp_bvec1',['../a00921.html#gae3c8750f53259ece334d3aa3b3649a40',1,'glm']]], + ['packed_5flowp_5fbvec2_4184',['packed_lowp_bvec2',['../a00921.html#gac969befedbda69eb78d4e23f751fdbee',1,'glm']]], + ['packed_5flowp_5fbvec3_4185',['packed_lowp_bvec3',['../a00921.html#ga7c20adbe1409e3fe4544677a7f6fe954',1,'glm']]], + ['packed_5flowp_5fbvec4_4186',['packed_lowp_bvec4',['../a00921.html#gae473587cff3092edc0877fc691c26a0b',1,'glm']]], + ['packed_5flowp_5fdmat2_4187',['packed_lowp_dmat2',['../a00921.html#gac93f9b1a35b9de4f456b9f2dfeaf1097',1,'glm']]], + ['packed_5flowp_5fdmat2x2_4188',['packed_lowp_dmat2x2',['../a00921.html#gaeeaff6c132ec91ebd21da3a2399548ea',1,'glm']]], + ['packed_5flowp_5fdmat2x3_4189',['packed_lowp_dmat2x3',['../a00921.html#ga2ccdcd4846775cbe4f9d12e71d55b5d2',1,'glm']]], + ['packed_5flowp_5fdmat2x4_4190',['packed_lowp_dmat2x4',['../a00921.html#gac870c47d2d9d48503f6c9ee3baec8ce1',1,'glm']]], + ['packed_5flowp_5fdmat3_4191',['packed_lowp_dmat3',['../a00921.html#ga3894a059eeaacec8791c25de398d9955',1,'glm']]], + ['packed_5flowp_5fdmat3x2_4192',['packed_lowp_dmat3x2',['../a00921.html#ga23ec236950f5859f59197663266b535d',1,'glm']]], + ['packed_5flowp_5fdmat3x3_4193',['packed_lowp_dmat3x3',['../a00921.html#ga4a7c7d8c3a663d0ec2a858cbfa14e54c',1,'glm']]], + ['packed_5flowp_5fdmat3x4_4194',['packed_lowp_dmat3x4',['../a00921.html#ga8fc0e66da83599071b7ec17510686cd9',1,'glm']]], + ['packed_5flowp_5fdmat4_4195',['packed_lowp_dmat4',['../a00921.html#ga03e1edf5666c40affe39aee35c87956f',1,'glm']]], + ['packed_5flowp_5fdmat4x2_4196',['packed_lowp_dmat4x2',['../a00921.html#ga39658fb13369db869d363684bd8399c0',1,'glm']]], + ['packed_5flowp_5fdmat4x3_4197',['packed_lowp_dmat4x3',['../a00921.html#ga30b0351eebc18c6056101359bdd3a359',1,'glm']]], + ['packed_5flowp_5fdmat4x4_4198',['packed_lowp_dmat4x4',['../a00921.html#ga0294d4c45151425c86a11deee7693c0e',1,'glm']]], + ['packed_5flowp_5fdquat_4199',['packed_lowp_dquat',['../a00921.html#gaaeaa03a3ec94cfb48e1703d70bc8a105',1,'glm']]], + ['packed_5flowp_5fdvec1_4200',['packed_lowp_dvec1',['../a00921.html#ga054050e9d4e78d81db0e6d1573b1c624',1,'glm']]], + ['packed_5flowp_5fdvec2_4201',['packed_lowp_dvec2',['../a00921.html#gadc19938ddb204bfcb4d9ef35b1e2bf93',1,'glm']]], + ['packed_5flowp_5fdvec3_4202',['packed_lowp_dvec3',['../a00921.html#ga9189210cabd6651a5e14a4c46fb20598',1,'glm']]], + ['packed_5flowp_5fdvec4_4203',['packed_lowp_dvec4',['../a00921.html#ga262dafd0c001c3a38d1cc91d024ca738',1,'glm']]], + ['packed_5flowp_5fivec1_4204',['packed_lowp_ivec1',['../a00921.html#gaf22b77f1cf3e73b8b1dddfe7f959357c',1,'glm']]], + ['packed_5flowp_5fivec2_4205',['packed_lowp_ivec2',['../a00921.html#ga52635859f5ef660ab999d22c11b7867f',1,'glm']]], + ['packed_5flowp_5fivec3_4206',['packed_lowp_ivec3',['../a00921.html#ga98c9d122a959e9f3ce10a5623c310f5d',1,'glm']]], + ['packed_5flowp_5fivec4_4207',['packed_lowp_ivec4',['../a00921.html#ga931731b8ae3b54c7ecc221509dae96bc',1,'glm']]], + ['packed_5flowp_5fmat2_4208',['packed_lowp_mat2',['../a00921.html#ga70dcb9ef0b24e832772a7405efa9669a',1,'glm']]], + ['packed_5flowp_5fmat2x2_4209',['packed_lowp_mat2x2',['../a00921.html#gac70667c7642ec8d50245e6e6936a3927',1,'glm']]], + ['packed_5flowp_5fmat2x3_4210',['packed_lowp_mat2x3',['../a00921.html#ga3e7df5a11e1be27bc29a4c0d3956f234',1,'glm']]], + ['packed_5flowp_5fmat2x4_4211',['packed_lowp_mat2x4',['../a00921.html#gaea9c555e669dc56c45d95dcc75d59bf3',1,'glm']]], + ['packed_5flowp_5fmat3_4212',['packed_lowp_mat3',['../a00921.html#ga0d22400969dd223465b2900fecfb4f53',1,'glm']]], + ['packed_5flowp_5fmat3x2_4213',['packed_lowp_mat3x2',['../a00921.html#ga128cd52649621861635fab746df91735',1,'glm']]], + ['packed_5flowp_5fmat3x3_4214',['packed_lowp_mat3x3',['../a00921.html#ga5adf1802c5375a9dfb1729691bedd94e',1,'glm']]], + ['packed_5flowp_5fmat3x4_4215',['packed_lowp_mat3x4',['../a00921.html#ga92247ca09fa03c4013ba364f3a0fca7f',1,'glm']]], + ['packed_5flowp_5fmat4_4216',['packed_lowp_mat4',['../a00921.html#ga2a1dd2387725a335413d4c4fee8609c4',1,'glm']]], + ['packed_5flowp_5fmat4x2_4217',['packed_lowp_mat4x2',['../a00921.html#ga8f22607dcd090cd280071ccc689f4079',1,'glm']]], + ['packed_5flowp_5fmat4x3_4218',['packed_lowp_mat4x3',['../a00921.html#ga7661d759d6ad218e132e3d051e7b2c6c',1,'glm']]], + ['packed_5flowp_5fmat4x4_4219',['packed_lowp_mat4x4',['../a00921.html#ga776f18d1a6e7d399f05d386167dc60f5',1,'glm']]], + ['packed_5flowp_5fquat_4220',['packed_lowp_quat',['../a00921.html#ga7ca4acb5f69c7b4e7f834d2e8e012b7f',1,'glm']]], + ['packed_5flowp_5fuvec1_4221',['packed_lowp_uvec1',['../a00921.html#gaf111fed760ecce16cb1988807569bee5',1,'glm']]], + ['packed_5flowp_5fuvec2_4222',['packed_lowp_uvec2',['../a00921.html#ga958210fe245a75b058325d367c951132',1,'glm']]], + ['packed_5flowp_5fuvec3_4223',['packed_lowp_uvec3',['../a00921.html#ga576a3f8372197a56a79dee1c8280f485',1,'glm']]], + ['packed_5flowp_5fuvec4_4224',['packed_lowp_uvec4',['../a00921.html#gafdd97922b4a2a42cd0c99a13877ff4da',1,'glm']]], + ['packed_5flowp_5fvec1_4225',['packed_lowp_vec1',['../a00921.html#ga0a6198fe64166a6a61084d43c71518a9',1,'glm']]], + ['packed_5flowp_5fvec2_4226',['packed_lowp_vec2',['../a00921.html#gafbf1c2cce307c5594b165819ed83bf5d',1,'glm']]], + ['packed_5flowp_5fvec3_4227',['packed_lowp_vec3',['../a00921.html#ga3a30c137c1f8cce478c28eab0427a570',1,'glm']]], + ['packed_5flowp_5fvec4_4228',['packed_lowp_vec4',['../a00921.html#ga3cc94fb8de80bbd8a4aa7a5b206d304a',1,'glm']]], + ['packed_5fmat2_4229',['packed_mat2',['../a00921.html#gadd019b43fcf42e1590d45dddaa504a1a',1,'glm']]], + ['packed_5fmat2x2_4230',['packed_mat2x2',['../a00921.html#ga51eaadcdc292c8750f746a5dc3e6c517',1,'glm']]], + ['packed_5fmat2x3_4231',['packed_mat2x3',['../a00921.html#ga301b76a89b8a9625501ca58815017f20',1,'glm']]], + ['packed_5fmat2x4_4232',['packed_mat2x4',['../a00921.html#gac401da1dd9177ad81d7618a2a5541e23',1,'glm']]], + ['packed_5fmat3_4233',['packed_mat3',['../a00921.html#ga9bc12b0ab7be8448836711b77cc7b83a',1,'glm']]], + ['packed_5fmat3x2_4234',['packed_mat3x2',['../a00921.html#ga134f0d99fbd2459c13cd9ebd056509fa',1,'glm']]], + ['packed_5fmat3x3_4235',['packed_mat3x3',['../a00921.html#ga6c1dbe8cde9fbb231284b01f8aeaaa99',1,'glm']]], + ['packed_5fmat3x4_4236',['packed_mat3x4',['../a00921.html#gad63515526cccfe88ffa8fe5ed64f95f8',1,'glm']]], + ['packed_5fmat4_4237',['packed_mat4',['../a00921.html#ga2c139854e5b04cf08a957dee3b510441',1,'glm']]], + ['packed_5fmat4x2_4238',['packed_mat4x2',['../a00921.html#ga379c1153f1339bdeaefd592bebf538e8',1,'glm']]], + ['packed_5fmat4x3_4239',['packed_mat4x3',['../a00921.html#gab286466e19f7399c8d25089da9400d43',1,'glm']]], + ['packed_5fmat4x4_4240',['packed_mat4x4',['../a00921.html#ga67e7102557d6067bb6ac00d4ad0e1374',1,'glm']]], + ['packed_5fmediump_5fbvec1_4241',['packed_mediump_bvec1',['../a00921.html#ga5546d828d63010a8f9cf81161ad0275a',1,'glm']]], + ['packed_5fmediump_5fbvec2_4242',['packed_mediump_bvec2',['../a00921.html#gab4c6414a59539e66a242ad4cf4b476b4',1,'glm']]], + ['packed_5fmediump_5fbvec3_4243',['packed_mediump_bvec3',['../a00921.html#ga70147763edff3fe96b03a0b98d6339a2',1,'glm']]], + ['packed_5fmediump_5fbvec4_4244',['packed_mediump_bvec4',['../a00921.html#ga7b1620f259595b9da47a6374fc44588a',1,'glm']]], + ['packed_5fmediump_5fdmat2_4245',['packed_mediump_dmat2',['../a00921.html#ga9d60e32d3fcb51f817046cd881fdbf57',1,'glm']]], + ['packed_5fmediump_5fdmat2x2_4246',['packed_mediump_dmat2x2',['../a00921.html#ga39e8bb9b70e5694964e8266a21ba534e',1,'glm']]], + ['packed_5fmediump_5fdmat2x3_4247',['packed_mediump_dmat2x3',['../a00921.html#ga8897c6d9adb4140b1c3b0a07b8f0a430',1,'glm']]], + ['packed_5fmediump_5fdmat2x4_4248',['packed_mediump_dmat2x4',['../a00921.html#gaaa4126969c765e7faa2ebf6951c22ffb',1,'glm']]], + ['packed_5fmediump_5fdmat3_4249',['packed_mediump_dmat3',['../a00921.html#gaf969eb879c76a5f4576e4a1e10095cf6',1,'glm']]], + ['packed_5fmediump_5fdmat3x2_4250',['packed_mediump_dmat3x2',['../a00921.html#ga86efe91cdaa2864c828a5d6d46356c6a',1,'glm']]], + ['packed_5fmediump_5fdmat3x3_4251',['packed_mediump_dmat3x3',['../a00921.html#gaf85877d38d8cfbc21d59d939afd72375',1,'glm']]], + ['packed_5fmediump_5fdmat3x4_4252',['packed_mediump_dmat3x4',['../a00921.html#gad5dcaf93df267bc3029174e430e0907f',1,'glm']]], + ['packed_5fmediump_5fdmat4_4253',['packed_mediump_dmat4',['../a00921.html#ga4b0ee7996651ddd04eaa0c4cdbb66332',1,'glm']]], + ['packed_5fmediump_5fdmat4x2_4254',['packed_mediump_dmat4x2',['../a00921.html#ga9a15514a0631f700de6312b9d5db3a73',1,'glm']]], + ['packed_5fmediump_5fdmat4x3_4255',['packed_mediump_dmat4x3',['../a00921.html#gab5b36cc9caee1bb1c5178fe191bf5713',1,'glm']]], + ['packed_5fmediump_5fdmat4x4_4256',['packed_mediump_dmat4x4',['../a00921.html#ga21e86cf2f6c126bacf31b8985db06bd4',1,'glm']]], + ['packed_5fmediump_5fdquat_4257',['packed_mediump_dquat',['../a00921.html#ga1dabb421595c34a9dbec085a4d0e6685',1,'glm']]], + ['packed_5fmediump_5fdvec1_4258',['packed_mediump_dvec1',['../a00921.html#ga8920e90ea9c01d9c97e604a938ce2cbd',1,'glm']]], + ['packed_5fmediump_5fdvec2_4259',['packed_mediump_dvec2',['../a00921.html#ga0c754a783b6fcf80374c013371c4dae9',1,'glm']]], + ['packed_5fmediump_5fdvec3_4260',['packed_mediump_dvec3',['../a00921.html#ga1f18ada6f7cdd8c46db33ba987280fc4',1,'glm']]], + ['packed_5fmediump_5fdvec4_4261',['packed_mediump_dvec4',['../a00921.html#ga568b850f1116b667043533cf77826968',1,'glm']]], + ['packed_5fmediump_5fivec1_4262',['packed_mediump_ivec1',['../a00921.html#ga09507ef020a49517a7bcd50438f05056',1,'glm']]], + ['packed_5fmediump_5fivec2_4263',['packed_mediump_ivec2',['../a00921.html#gaaa891048dddef4627df33809ec726219',1,'glm']]], + ['packed_5fmediump_5fivec3_4264',['packed_mediump_ivec3',['../a00921.html#ga06f26d54dca30994eb1fdadb8e69f4a2',1,'glm']]], + ['packed_5fmediump_5fivec4_4265',['packed_mediump_ivec4',['../a00921.html#ga70130dc8ed9c966ec2a221ce586d45d8',1,'glm']]], + ['packed_5fmediump_5fmat2_4266',['packed_mediump_mat2',['../a00921.html#ga43cd36d430c5187bfdca34a23cb41581',1,'glm']]], + ['packed_5fmediump_5fmat2x2_4267',['packed_mediump_mat2x2',['../a00921.html#ga2d2a73e662759e301c22b8931ff6a526',1,'glm']]], + ['packed_5fmediump_5fmat2x3_4268',['packed_mediump_mat2x3',['../a00921.html#ga99049db01faf1e95ed9fb875a47dffe2',1,'glm']]], + ['packed_5fmediump_5fmat2x4_4269',['packed_mediump_mat2x4',['../a00921.html#gad43a240533f388ce0504b495d9df3d52',1,'glm']]], + ['packed_5fmediump_5fmat3_4270',['packed_mediump_mat3',['../a00921.html#ga13a75c6cbd0a411f694bc82486cd1e55',1,'glm']]], + ['packed_5fmediump_5fmat3x2_4271',['packed_mediump_mat3x2',['../a00921.html#ga04cfaf1421284df3c24ea0985dab24e7',1,'glm']]], + ['packed_5fmediump_5fmat3x3_4272',['packed_mediump_mat3x3',['../a00921.html#gaaa9cea174d342dd9650e3436823cab23',1,'glm']]], + ['packed_5fmediump_5fmat3x4_4273',['packed_mediump_mat3x4',['../a00921.html#gabc93a9560593bd32e099c908531305f5',1,'glm']]], + ['packed_5fmediump_5fmat4_4274',['packed_mediump_mat4',['../a00921.html#gae89d72ffc149147f61df701bbc8755bf',1,'glm']]], + ['packed_5fmediump_5fmat4x2_4275',['packed_mediump_mat4x2',['../a00921.html#gaa458f9d9e0934bae3097e2a373b24707',1,'glm']]], + ['packed_5fmediump_5fmat4x3_4276',['packed_mediump_mat4x3',['../a00921.html#ga02ca6255394aa778abaeb0f733c4d2b6',1,'glm']]], + ['packed_5fmediump_5fmat4x4_4277',['packed_mediump_mat4x4',['../a00921.html#gaf304f64c06743c1571401504d3f50259',1,'glm']]], + ['packed_5fmediump_5fquat_4278',['packed_mediump_quat',['../a00921.html#ga2e5c51d9c29323b8b1d26fbf8697cfae',1,'glm']]], + ['packed_5fmediump_5fuvec1_4279',['packed_mediump_uvec1',['../a00921.html#ga2c29fb42bab9a4f9b66bc60b2e514a34',1,'glm']]], + ['packed_5fmediump_5fuvec2_4280',['packed_mediump_uvec2',['../a00921.html#gaa1f95690a78dc12e39da32943243aeef',1,'glm']]], + ['packed_5fmediump_5fuvec3_4281',['packed_mediump_uvec3',['../a00921.html#ga1ea2bbdbcb0a69242f6d884663c1b0ab',1,'glm']]], + ['packed_5fmediump_5fuvec4_4282',['packed_mediump_uvec4',['../a00921.html#ga63a73be86a4f07ea7a7499ab0bfebe45',1,'glm']]], + ['packed_5fmediump_5fvec1_4283',['packed_mediump_vec1',['../a00921.html#ga71d63cead1e113fca0bcdaaa33aad050',1,'glm']]], + ['packed_5fmediump_5fvec2_4284',['packed_mediump_vec2',['../a00921.html#ga6844c6f4691d1bf67673240850430948',1,'glm']]], + ['packed_5fmediump_5fvec3_4285',['packed_mediump_vec3',['../a00921.html#gab0eb771b708c5b2205d9b14dd1434fd8',1,'glm']]], + ['packed_5fmediump_5fvec4_4286',['packed_mediump_vec4',['../a00921.html#ga68c9bb24f387b312bae6a0a68e74d95e',1,'glm']]], + ['packed_5fquat_4287',['packed_quat',['../a00921.html#gae71d7549208159faa0f6957f9418a828',1,'glm']]], + ['packed_5fuvec1_4288',['packed_uvec1',['../a00921.html#ga5621493caac01bdd22ab6be4416b0314',1,'glm']]], + ['packed_5fuvec2_4289',['packed_uvec2',['../a00921.html#gabcc33efb4d5e83b8fe4706360e75b932',1,'glm']]], + ['packed_5fuvec3_4290',['packed_uvec3',['../a00921.html#gab96804e99e3a72a35740fec690c79617',1,'glm']]], + ['packed_5fuvec4_4291',['packed_uvec4',['../a00921.html#ga8e5d92e84ebdbe2480cf96bc17d6e2f2',1,'glm']]], + ['packed_5fvec1_4292',['packed_vec1',['../a00921.html#ga14741e3d9da9ae83765389927f837331',1,'glm']]], + ['packed_5fvec2_4293',['packed_vec2',['../a00921.html#ga3254defa5a8f0ae4b02b45fedba84a66',1,'glm']]], + ['packed_5fvec3_4294',['packed_vec3',['../a00921.html#gaccccd090e185450caa28b5b63ad4e8f0',1,'glm']]], + ['packed_5fvec4_4295',['packed_vec4',['../a00921.html#ga37a0e0bf653169b581c5eea3d547fa5d',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_9.html b/include/glm/doc/api/search/typedefs_9.html new file mode 100644 index 0000000..88fe092 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_9.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_9.js b/include/glm/doc/api/search/typedefs_9.js new file mode 100644 index 0000000..265f387 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_9.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['quat_4296',['quat',['../a00860.html#gab0b441adb4509bc58d2946c2239a8942',1,'glm']]], + ['qword_4297',['qword',['../a00974.html#ga4021754ffb8e5ef14c75802b15657714',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_a.html b/include/glm/doc/api/search/typedefs_a.html new file mode 100644 index 0000000..eb315ca --- /dev/null +++ b/include/glm/doc/api/search/typedefs_a.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_a.js b/include/glm/doc/api/search/typedefs_a.js new file mode 100644 index 0000000..f7e95cc --- /dev/null +++ b/include/glm/doc/api/search/typedefs_a.js @@ -0,0 +1,12 @@ +var searchData= +[ + ['sint_4298',['sint',['../a00948.html#gada7e83fdfe943aba4f1d5bf80cb66f40',1,'glm']]], + ['size1_4299',['size1',['../a00980.html#gaeb877ac8f9a3703961736c1c5072cf68',1,'glm']]], + ['size1_5ft_4300',['size1_t',['../a00980.html#gaaf6accc57f5aa50447ba7310ce3f0d6f',1,'glm']]], + ['size2_4301',['size2',['../a00980.html#ga1bfe8c4975ff282bce41be2bacd524fe',1,'glm']]], + ['size2_5ft_4302',['size2_t',['../a00980.html#ga5976c25657d4e2b5f73f39364c3845d6',1,'glm']]], + ['size3_4303',['size3',['../a00980.html#gae1c72956d0359b0db332c6c8774d3b04',1,'glm']]], + ['size3_5ft_4304',['size3_t',['../a00980.html#gaf2654983c60d641fd3808e65a8dfad8d',1,'glm']]], + ['size4_4305',['size4',['../a00980.html#ga3a19dde617beaf8ce3cfc2ac5064e9aa',1,'glm']]], + ['size4_5ft_4306',['size4_t',['../a00980.html#gaa423efcea63675a2df26990dbcb58656',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_b.html b/include/glm/doc/api/search/typedefs_b.html new file mode 100644 index 0000000..06a7a03 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_b.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_b.js b/include/glm/doc/api/search/typedefs_b.js new file mode 100644 index 0000000..a221534 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_b.js @@ -0,0 +1,95 @@ +var searchData= +[ + ['u16_4307',['u16',['../a00922.html#gaa2d7acc0adb536fab71fe261232a40ff',1,'glm']]], + ['u16mat2_4308',['u16mat2',['../a00839.html#gab5b9f6f94a5b7190466cbce9a96f2151',1,'glm']]], + ['u16mat2x2_4309',['u16mat2x2',['../a00839.html#ga820fe7dddf5e891cf4345a23ce2ea813',1,'glm']]], + ['u16mat2x3_4310',['u16mat2x3',['../a00841.html#ga19d5860baba684549bd0774c36e48af2',1,'glm']]], + ['u16mat2x4_4311',['u16mat2x4',['../a00843.html#ga055726c5e617b57196bb8f4c695f5728',1,'glm']]], + ['u16mat3_4312',['u16mat3',['../a00847.html#ga8c37f20870755f50b73a689e08af8f88',1,'glm']]], + ['u16mat3x2_4313',['u16mat3x2',['../a00845.html#ga3311ce83a726e0153773bc42683434ed',1,'glm']]], + ['u16mat3x3_4314',['u16mat3x3',['../a00847.html#ga36803d6b625e15cda1579525b47eb859',1,'glm']]], + ['u16mat3x4_4315',['u16mat3x4',['../a00849.html#ga80afc1a131374aea2e16719c89cc9632',1,'glm']]], + ['u16mat4_4316',['u16mat4',['../a00855.html#gaabfaeee7099a24ea040a21c315564faf',1,'glm']]], + ['u16mat4x2_4317',['u16mat4x2',['../a00851.html#gad8c9aaf9191198e686af800ce8217449',1,'glm']]], + ['u16mat4x3_4318',['u16mat4x3',['../a00853.html#ga76c2c7a20b1012b4cc3374c47e2fe79c',1,'glm']]], + ['u16mat4x4_4319',['u16mat4x4',['../a00855.html#gadcf5da976c2ee709de8dd6dd65bca436',1,'glm']]], + ['u16vec1_4320',['u16vec1',['../a00892.html#ga08c05ba8ffb19f5d14ab584e1e9e9ee5',1,'glm']]], + ['u16vec2_4321',['u16vec2',['../a00893.html#ga2a78447eb9d66a114b193f4a25899c16',1,'glm']]], + ['u16vec3_4322',['u16vec3',['../a00894.html#ga1c522ca821c27b862fe51cf4024b064b',1,'glm']]], + ['u16vec4_4323',['u16vec4',['../a00895.html#ga529496d75775fb656a07993ea9af2450',1,'glm']]], + ['u32_4324',['u32',['../a00922.html#ga8165913e068444f7842302d40ba897b9',1,'glm']]], + ['u32mat2_4325',['u32mat2',['../a00839.html#ga811a43d955ef7caa919787e38abb1bab',1,'glm']]], + ['u32mat2x2_4326',['u32mat2x2',['../a00839.html#ga8426c09e876dc3837c2107b78a6a59b6',1,'glm']]], + ['u32mat2x3_4327',['u32mat2x3',['../a00841.html#ga0fd0b888a5973cfa8fcdab0dff8b6993',1,'glm']]], + ['u32mat2x4_4328',['u32mat2x4',['../a00843.html#ga544507f62e26969e98ce9a6afb5d2cad',1,'glm']]], + ['u32mat3_4329',['u32mat3',['../a00847.html#gac5c09be9a4646331e6e5d595316a3c29',1,'glm']]], + ['u32mat3x2_4330',['u32mat3x2',['../a00845.html#ga3ef030ce44dbd2e68bd12f1f7d47d242',1,'glm']]], + ['u32mat3x3_4331',['u32mat3x3',['../a00847.html#ga820b13b067c3bd0da9384d93b70ce9a6',1,'glm']]], + ['u32mat3x4_4332',['u32mat3x4',['../a00849.html#ga3fe03e2f7c65ded47c83f0efc3c584a1',1,'glm']]], + ['u32mat4_4333',['u32mat4',['../a00855.html#ga92fa0dd48e3a180a548e36ecd594224b',1,'glm']]], + ['u32mat4x2_4334',['u32mat4x2',['../a00851.html#gae4c874b9c833bedd7e67afaf159c350e',1,'glm']]], + ['u32mat4x3_4335',['u32mat4x3',['../a00853.html#ga03a1e404b5cd44e15f78cec8c9be1f58',1,'glm']]], + ['u32mat4x4_4336',['u32mat4x4',['../a00855.html#ga16e259d66272b5af0bb327896f461db6',1,'glm']]], + ['u32vec1_4337',['u32vec1',['../a00892.html#gae627372cfd5f20dd87db490387b71195',1,'glm']]], + ['u32vec2_4338',['u32vec2',['../a00893.html#ga2a266e46ee218d0c680f12b35c500cc0',1,'glm']]], + ['u32vec3_4339',['u32vec3',['../a00894.html#gae267358ff2a41d156d97f5762630235a',1,'glm']]], + ['u32vec4_4340',['u32vec4',['../a00895.html#ga31cef34e4cd04840c54741ff2f7005f0',1,'glm']]], + ['u64_4341',['u64',['../a00922.html#gaf3f312156984c365e9f65620354da70b',1,'glm']]], + ['u64mat2_4342',['u64mat2',['../a00839.html#ga19bf0cb18a85b0e0879f0f8f7fce6f43',1,'glm']]], + ['u64mat2x2_4343',['u64mat2x2',['../a00839.html#ga9e462f9cfd9026089ed140aadc91975b',1,'glm']]], + ['u64mat2x3_4344',['u64mat2x3',['../a00841.html#ga301b8f80a3a17c5bfa49f5225dec6888',1,'glm']]], + ['u64mat2x4_4345',['u64mat2x4',['../a00843.html#gaade09898ba32793e1a252330e881ebf4',1,'glm']]], + ['u64mat3_4346',['u64mat3',['../a00847.html#gafaaf26f1562308e1dc0889311e6e7a20',1,'glm']]], + ['u64mat3x2_4347',['u64mat3x2',['../a00845.html#ga4dc2fdfe9a3d2461101e017e1a24fef6',1,'glm']]], + ['u64mat3x3_4348',['u64mat3x3',['../a00847.html#ga5a750d248e0d1e2436b5b2c81b3b5896',1,'glm']]], + ['u64mat3x4_4349',['u64mat3x4',['../a00849.html#gaf7143266570d2647825063a9ede9f088',1,'glm']]], + ['u64mat4_4350',['u64mat4',['../a00855.html#ga878c0ff8a8ed0a7381216311bf0b9235',1,'glm']]], + ['u64mat4x2_4351',['u64mat4x2',['../a00851.html#ga4ca9245422ee360303ec8daab16e8572',1,'glm']]], + ['u64mat4x3_4352',['u64mat4x3',['../a00853.html#ga91a05c8024b2e745460a6606f17fc602',1,'glm']]], + ['u64mat4x4_4353',['u64mat4x4',['../a00855.html#gac1abc008e8233c926c8ee188c3958142',1,'glm']]], + ['u64vec1_4354',['u64vec1',['../a00892.html#gaf09f3ca4b671a4a4f84505eb4cc865fd',1,'glm']]], + ['u64vec2_4355',['u64vec2',['../a00893.html#gaef3824ed4fe435a019c5b9dddf53fec5',1,'glm']]], + ['u64vec3_4356',['u64vec3',['../a00894.html#ga489b89ba93d4f7b3934df78debc52276',1,'glm']]], + ['u64vec4_4357',['u64vec4',['../a00895.html#ga3945dd6515d4498cb603e65ff867ab03',1,'glm']]], + ['u8_4358',['u8',['../a00922.html#gaecc7082561fc9028b844b6cf3d305d36',1,'glm']]], + ['u8mat2_4359',['u8mat2',['../a00839.html#ga222219d3aab9c3b2d835b55d7a961b4e',1,'glm']]], + ['u8mat2x2_4360',['u8mat2x2',['../a00839.html#gadc76d570d23f338a90e9d41d3279199e',1,'glm']]], + ['u8mat2x3_4361',['u8mat2x3',['../a00841.html#ga69282ea3f7a720c1b17c15d9add5444d',1,'glm']]], + ['u8mat2x4_4362',['u8mat2x4',['../a00843.html#gaf23eaa003d78c2eff52e35af503b4774',1,'glm']]], + ['u8mat3_4363',['u8mat3',['../a00847.html#ga765e47b3da32d6f8d7eafc246628a9a6',1,'glm']]], + ['u8mat3x2_4364',['u8mat3x2',['../a00845.html#ga61551e90468eb24390b045e6733fa9b4',1,'glm']]], + ['u8mat3x3_4365',['u8mat3x3',['../a00847.html#ga8bf749cc271c29f7042f9ea6c6907c82',1,'glm']]], + ['u8mat3x4_4366',['u8mat3x4',['../a00849.html#gaf76f5f883e1d87d56d6d3e53ec3c89b3',1,'glm']]], + ['u8mat4_4367',['u8mat4',['../a00855.html#ga5adf8e1402abec3ea43c1788832065ed',1,'glm']]], + ['u8mat4x2_4368',['u8mat4x2',['../a00851.html#gabf8d4cbe77031670484fd35eac3168b0',1,'glm']]], + ['u8mat4x3_4369',['u8mat4x3',['../a00853.html#ga43c213a100d91f4606b8008284aa4967',1,'glm']]], + ['u8mat4x4_4370',['u8mat4x4',['../a00855.html#gaa54ad379d3d259c67aa2f75f64670408',1,'glm']]], + ['u8vec1_4371',['u8vec1',['../a00892.html#ga29b349e037f0b24320b4548a143daee2',1,'glm']]], + ['u8vec2_4372',['u8vec2',['../a00893.html#ga518b8d948a6b4ddb72f84d5c3b7b6611',1,'glm']]], + ['u8vec3_4373',['u8vec3',['../a00894.html#ga7c5706f6bbe5282e5598acf7e7b377e2',1,'glm']]], + ['u8vec4_4374',['u8vec4',['../a00895.html#ga20779a61de2fd526a17f12fe53ec46b1',1,'glm']]], + ['uint16_4375',['uint16',['../a00873.html#ga05f6b0ae8f6a6e135b0e290c25fe0e4e',1,'glm']]], + ['uint16_5ft_4376',['uint16_t',['../a00922.html#ga91f91f411080c37730856ff5887f5bcf',1,'glm']]], + ['uint32_4377',['uint32',['../a00873.html#ga1134b580f8da4de94ca6b1de4d37975e',1,'glm']]], + ['uint32_5ft_4378',['uint32_t',['../a00922.html#ga2171d9dc1fefb1c82e2817f45b622eac',1,'glm']]], + ['uint64_4379',['uint64',['../a00873.html#gab630f76c26b50298187f7889104d4b9c',1,'glm']]], + ['uint64_5ft_4380',['uint64_t',['../a00922.html#ga3999d3e7ff22025c16ddb601e14dfdee',1,'glm']]], + ['uint8_4381',['uint8',['../a00873.html#gadde6aaee8457bee49c2a92621fe22b79',1,'glm']]], + ['uint8_5ft_4382',['uint8_t',['../a00922.html#ga28d97808322d3c92186e4a0c067d7e8e',1,'glm']]], + ['umat2_4383',['umat2',['../a00838.html#gac41defbdac8ca0edf9b21f4d4d16a508',1,'glm']]], + ['umat2x2_4384',['umat2x2',['../a00838.html#ga02daa4c5f3b185e8f99cd8a2f8bc7554',1,'glm']]], + ['umat2x3_4385',['umat2x3',['../a00840.html#ga89375c2308a3fa15f878394c7b38b224',1,'glm']]], + ['umat2x4_4386',['umat2x4',['../a00842.html#ga396cc751951467cc6ed570e158900813',1,'glm']]], + ['umat3_4387',['umat3',['../a00846.html#gaffdc395cb4be217d92a17235e8e0fc99',1,'glm']]], + ['umat3x2_4388',['umat3x2',['../a00844.html#ga9ca0dd40c861ee6307a97a242a91f119',1,'glm']]], + ['umat3x3_4389',['umat3x3',['../a00846.html#gaebb9027bcbaeb05e0678a00f03d2c312',1,'glm']]], + ['umat3x4_4390',['umat3x4',['../a00848.html#gafd52ce3ed03df04b38208e7ef7a6db28',1,'glm']]], + ['umat4_4391',['umat4',['../a00854.html#ga428a8d4d3e62d81b91c0fd4c3d5a905f',1,'glm']]], + ['umat4x2_4392',['umat4x2',['../a00850.html#ga03f2451aa64f11c36398dbc4db4b4ca5',1,'glm']]], + ['umat4x3_4393',['umat4x3',['../a00852.html#ga0aec0e4ce9f3197ec65d2d34c8fb69d2',1,'glm']]], + ['umat4x4_4394',['umat4x4',['../a00854.html#ga623eaba1dfb104d0ce01b3bb6852540a',1,'glm']]], + ['uvec1_4395',['uvec1',['../a00891.html#ga94fab575ce384c7ed3720debde574030',1,'glm']]], + ['uvec2_4396',['uvec2',['../a00899.html#gab173892ee0fd88db1e13a17b1d861326',1,'glm']]], + ['uvec3_4397',['uvec3',['../a00899.html#ga126b028d481b6dba20c90b1f87f09dbd',1,'glm']]], + ['uvec4_4398',['uvec4',['../a00899.html#ga4bb78ab04327c88f8e0eb8af30734851',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_c.html b/include/glm/doc/api/search/typedefs_c.html new file mode 100644 index 0000000..97fc29d --- /dev/null +++ b/include/glm/doc/api/search/typedefs_c.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_c.js b/include/glm/doc/api/search/typedefs_c.js new file mode 100644 index 0000000..f376f54 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_c.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['vec1_4399',['vec1',['../a00880.html#gadfc071d934d8dae7955a1d530a3cf656',1,'glm']]], + ['vec2_4400',['vec2',['../a00899.html#gabe65c061834f61b4f7cb6037b19006a4',1,'glm']]], + ['vec3_4401',['vec3',['../a00899.html#ga9c3019b13faf179e4ad3626ea66df334',1,'glm']]], + ['vec4_4402',['vec4',['../a00899.html#gac215a35481a6597d1bf622a382e9d6e2',1,'glm']]] +]; diff --git a/include/glm/doc/api/search/typedefs_d.html b/include/glm/doc/api/search/typedefs_d.html new file mode 100644 index 0000000..b5e9e44 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_d.html @@ -0,0 +1,36 @@ + + + + + + + + + +
    +
    Loading...
    +
    + +
    Searching...
    +
    No Matches
    + +
    + + diff --git a/include/glm/doc/api/search/typedefs_d.js b/include/glm/doc/api/search/typedefs_d.js new file mode 100644 index 0000000..c587c27 --- /dev/null +++ b/include/glm/doc/api/search/typedefs_d.js @@ -0,0 +1,4 @@ +var searchData= +[ + ['word_4403',['word',['../a00974.html#ga16e9fea0ef1e6c4ef472d3d1731c49a5',1,'glm']]] +]; diff --git a/include/glm/doc/api/splitbar.png b/include/glm/doc/api/splitbar.png new file mode 100644 index 0000000..d5bc78b Binary files /dev/null and b/include/glm/doc/api/splitbar.png differ diff --git a/include/glm/doc/api/sync_off.png b/include/glm/doc/api/sync_off.png new file mode 100644 index 0000000..9402c10 Binary files /dev/null and b/include/glm/doc/api/sync_off.png differ diff --git a/include/glm/doc/api/sync_on.png b/include/glm/doc/api/sync_on.png new file mode 100644 index 0000000..85d9754 Binary files /dev/null and b/include/glm/doc/api/sync_on.png differ diff --git a/include/glm/doc/api/tab_a.png b/include/glm/doc/api/tab_a.png new file mode 100644 index 0000000..cd087e7 Binary files /dev/null and b/include/glm/doc/api/tab_a.png differ diff --git a/include/glm/doc/api/tab_b.png b/include/glm/doc/api/tab_b.png new file mode 100644 index 0000000..e14114d Binary files /dev/null and b/include/glm/doc/api/tab_b.png differ diff --git a/include/glm/doc/api/tab_h.png b/include/glm/doc/api/tab_h.png new file mode 100644 index 0000000..eddb3f2 Binary files /dev/null and b/include/glm/doc/api/tab_h.png differ diff --git a/include/glm/doc/api/tab_s.png b/include/glm/doc/api/tab_s.png new file mode 100644 index 0000000..8d36eef Binary files /dev/null and b/include/glm/doc/api/tab_s.png differ diff --git a/include/glm/doc/api/tabs.css b/include/glm/doc/api/tabs.css new file mode 100644 index 0000000..85a0cd5 --- /dev/null +++ b/include/glm/doc/api/tabs.css @@ -0,0 +1 @@ +.sm{position:relative;z-index:9999}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;direction:ltr;text-align:left;-webkit-tap-highlight-color:rgba(0,0,0,0)}.sm-rtl,.sm-rtl ul,.sm-rtl li{direction:rtl;text-align:right}.sm>li>h1,.sm>li>h2,.sm>li>h3,.sm>li>h4,.sm>li>h5,.sm>li>h6{margin:0;padding:0}.sm ul{display:none}.sm li,.sm a{position:relative}.sm a{display:block}.sm a.disabled{cursor:not-allowed}.sm:after{content:"\00a0";display:block;height:0;font:0/0 serif;clear:both;visibility:hidden;overflow:hidden}.sm,.sm *,.sm *:before,.sm *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sm-dox{background-image:url("tab_b.png")}.sm-dox a,.sm-dox a:focus,.sm-dox a:hover,.sm-dox a:active{padding:0 12px;padding-right:43px;font-family:"Lucida Grande","Geneva","Helvetica",Arial,sans-serif;font-size:13px;font-weight:bold;line-height:36px;text-decoration:none;text-shadow:0 1px 1px rgba(255,255,255,0.9);color:#283a5d;outline:0}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a.current{color:#d23600}.sm-dox a.disabled{color:#bbb}.sm-dox a span.sub-arrow{position:absolute;top:50%;margin-top:-14px;left:auto;right:3px;width:28px;height:28px;overflow:hidden;font:bold 12px/28px monospace!important;text-align:center;text-shadow:none;background:rgba(255,255,255,0.5);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox a.highlighted span.sub-arrow:before{display:block;content:'-'}.sm-dox>li:first-child>a,.sm-dox>li:first-child>:not(ul) a{-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px;border-radius:5px 5px 0 0}.sm-dox>li:last-child>a,.sm-dox>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul{-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0;border-radius:0 0 5px 5px}.sm-dox>li:last-child>a.highlighted,.sm-dox>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>a.highlighted,.sm-dox>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>ul>li:last-child>*:not(ul) a.highlighted{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox ul{background:rgba(162,162,162,0.1)}.sm-dox ul a,.sm-dox ul a:focus,.sm-dox ul a:hover,.sm-dox ul a:active{font-size:12px;border-left:8px solid transparent;line-height:36px;text-shadow:none;background-color:white;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul ul a,.sm-dox ul ul a:hover,.sm-dox ul ul a:focus,.sm-dox ul ul a:active{border-left:16px solid transparent}.sm-dox ul ul ul a,.sm-dox ul ul ul a:hover,.sm-dox ul ul ul a:focus,.sm-dox ul ul ul a:active{border-left:24px solid transparent}.sm-dox ul ul ul ul a,.sm-dox ul ul ul ul a:hover,.sm-dox ul ul ul ul a:focus,.sm-dox ul ul ul ul a:active{border-left:32px solid transparent}.sm-dox ul ul ul ul ul a,.sm-dox ul ul ul ul ul a:hover,.sm-dox ul ul ul ul ul a:focus,.sm-dox ul ul ul ul ul a:active{border-left:40px solid transparent}@media(min-width:768px){.sm-dox ul{position:absolute;width:12em}.sm-dox li{float:left}.sm-dox.sm-rtl li{float:right}.sm-dox ul li,.sm-dox.sm-rtl ul li,.sm-dox.sm-vertical li{float:none}.sm-dox a{white-space:nowrap}.sm-dox ul a,.sm-dox.sm-vertical a{white-space:normal}.sm-dox .sm-nowrap>li>a,.sm-dox .sm-nowrap>li>:not(ul) a{white-space:nowrap}.sm-dox{padding:0 10px;background-image:url("tab_b.png");line-height:36px}.sm-dox a span.sub-arrow{top:50%;margin-top:-2px;right:12px;width:0;height:0;border-width:4px;border-style:solid dashed dashed dashed;border-color:#283a5d transparent transparent transparent;background:transparent;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.sm-dox a,.sm-dox a:focus,.sm-dox a:active,.sm-dox a:hover,.sm-dox a.highlighted{padding:0 12px;background-image:url("tab_s.png");background-repeat:no-repeat;background-position:right;-moz-border-radius:0!important;-webkit-border-radius:0;border-radius:0!important}.sm-dox a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox a:hover span.sub-arrow{border-color:white transparent transparent transparent}.sm-dox a.has-submenu{padding-right:24px}.sm-dox li{border-top:0}.sm-dox>li>ul:before,.sm-dox>li>ul:after{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-dox>li>ul:after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-dox ul{border:1px solid #bbb;padding:5px 0;background:#fff;-moz-border-radius:5px!important;-webkit-border-radius:5px;border-radius:5px!important;-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);box-shadow:0 5px 9px rgba(0,0,0,0.2)}.sm-dox ul a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-color:transparent transparent transparent #555;border-style:dashed dashed dashed solid}.sm-dox ul a,.sm-dox ul a:hover,.sm-dox ul a:focus,.sm-dox ul a:active,.sm-dox ul a.highlighted{color:#555;background-image:none;border:0!important;color:#555;background-image:none}.sm-dox ul a:hover{background-image:url("tab_a.png");background-repeat:repeat-x;color:white;text-shadow:0 1px 1px black}.sm-dox ul a:hover span.sub-arrow{border-color:transparent transparent transparent white}.sm-dox span.scroll-up,.sm-dox span.scroll-down{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:36px}.sm-dox span.scroll-up:hover,.sm-dox span.scroll-down:hover{background:#eee}.sm-dox span.scroll-up:hover span.scroll-up-arrow,.sm-dox span.scroll-up:hover span.scroll-down-arrow{border-color:transparent transparent #d23600 transparent}.sm-dox span.scroll-down:hover span.scroll-down-arrow{border-color:#d23600 transparent transparent transparent}.sm-dox span.scroll-up-arrow,.sm-dox span.scroll-down-arrow{position:absolute;top:0;left:50%;margin-left:-6px;width:0;height:0;overflow:hidden;border-width:6px;border-style:dashed dashed solid dashed;border-color:transparent transparent #555 transparent}.sm-dox span.scroll-down-arrow{top:8px;border-style:solid dashed dashed dashed;border-color:#555 transparent transparent transparent}.sm-dox.sm-rtl a.has-submenu{padding-right:12px;padding-left:24px}.sm-dox.sm-rtl a span.sub-arrow{right:auto;left:12px}.sm-dox.sm-rtl.sm-vertical a.has-submenu{padding:10px 20px}.sm-dox.sm-rtl.sm-vertical a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-rtl>li>ul:before{left:auto;right:30px}.sm-dox.sm-rtl>li>ul:after{left:auto;right:31px}.sm-dox.sm-rtl ul a.has-submenu{padding:10px 20px!important}.sm-dox.sm-rtl ul a span.sub-arrow{right:auto;left:8px;border-style:dashed solid dashed dashed;border-color:transparent #555 transparent transparent}.sm-dox.sm-vertical{padding:10px 0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sm-dox.sm-vertical a{padding:10px 20px}.sm-dox.sm-vertical a:hover,.sm-dox.sm-vertical a:focus,.sm-dox.sm-vertical a:active,.sm-dox.sm-vertical a.highlighted{background:#fff}.sm-dox.sm-vertical a.disabled{background-image:url("tab_b.png")}.sm-dox.sm-vertical a span.sub-arrow{right:8px;top:50%;margin-top:-5px;border-width:5px;border-style:dashed dashed dashed solid;border-color:transparent transparent transparent #555}.sm-dox.sm-vertical>li>ul:before,.sm-dox.sm-vertical>li>ul:after{display:none}.sm-dox.sm-vertical ul a{padding:10px 20px}.sm-dox.sm-vertical ul a:hover,.sm-dox.sm-vertical ul a:focus,.sm-dox.sm-vertical ul a:active,.sm-dox.sm-vertical ul a.highlighted{background:#eee}.sm-dox.sm-vertical ul a.disabled{background:#fff}} \ No newline at end of file diff --git a/include/glm/doc/man.doxy b/include/glm/doc/man.doxy new file mode 100644 index 0000000..98284fe --- /dev/null +++ b/include/glm/doc/man.doxy @@ -0,0 +1,2538 @@ +# Doxyfile 1.8.18 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "1.0.0 API documentation" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = theme/logo-mini.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = . + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all generated output in the proper direction. +# Possible values are: None, LTR, RTL and Context. +# The default value is: None. + +OUTPUT_TEXT_DIRECTION = None + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class " \ + "The $name widget " \ + "The $name file " \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = NO + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = "C:/Documents and Settings/Groove/ " + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = YES + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = YES + +# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines (in the resulting output). You can put ^^ in the value part of an +# alias to insert a newline as if a physical newline was in the original file. +# When you need a literal { or } or , in the value part of an alias you have to +# escape them by means of a backslash (\), this can lead to conflicts with the +# commands \{ and \} for these it is advised to use the version @{ and @} or use +# a double escape (\\{ and \\}) + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, +# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 5. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 5 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = NO + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = NO + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = YES + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = YES + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# declarations. If set to NO, these declarations will be included in the +# documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = YES + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = YES + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# (including Cygwin) ands Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = YES + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = NO + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = NO + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = YES + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = YES + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. If +# EXTRACT_ALL is set to YES then this flag will automatically be disabled. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = ../glm \ + . + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: https://www.gnu.org/software/libiconv/) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), +# *.doc (to be provided as doxygen C comment), *.txt (to be provided as doxygen +# C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, +# *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.hpp \ + *.doxy + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +# If clang assisted parsing is enabled you can provide the clang parser with the +# path to the compilation database (see: +# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) used when the files +# were built. This is equivalent to specifying the "-p" option to a clang tool, +# such as clang-check. These options will then be passed to the parser. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. + +CLANG_DATABASE_PATH = + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = NO + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: https://developer.apple.com/xcode/), introduced with OSX +# 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png The default and svg Looks nicer but requires the +# pdf2svg tool. +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANSPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. +# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://www.mathjax.org/mathjax + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /