diff --git a/SDL2-2.24.0/docs/README-emscripten.md b/SDL2-2.24.0/docs/README-emscripten.md deleted file mode 100644 index 9712084..0000000 --- a/SDL2-2.24.0/docs/README-emscripten.md +++ /dev/null @@ -1,35 +0,0 @@ -Emscripten -================================================================================ - -Build: - - $ mkdir build - $ cd build - $ emconfigure ../configure --host=asmjs-unknown-emscripten --disable-assembly --disable-threads --disable-cpuinfo CFLAGS="-O2" - $ emmake make - -Or with cmake: - - $ mkdir build - $ cd build - $ emcmake cmake .. - $ emmake make - -To build one of the tests: - - $ cd test/ - $ emcc -O2 --js-opts 0 -g4 testdraw2.c -I../include ../build/.libs/libSDL2.a ../build/libSDL2_test.a -o a.html - -Uses GLES2 renderer or software - -Some other SDL2 libraries can be easily built (assuming SDL2 is installed somewhere): - -SDL_mixer (http://www.libsdl.org/projects/SDL_mixer/): - - $ EMCONFIGURE_JS=1 emconfigure ../configure - build as usual... - -SDL_gfx (http://cms.ferzkopp.net/index.php/software/13-sdl-gfx): - - $ EMCONFIGURE_JS=1 emconfigure ../configure --disable-mmx - build as usual... diff --git a/SDL2-2.24.0/docs/release_checklist.md b/SDL2-2.24.0/docs/release_checklist.md deleted file mode 100644 index 3376994..0000000 --- a/SDL2-2.24.0/docs/release_checklist.md +++ /dev/null @@ -1,91 +0,0 @@ -# Release checklist - -## New feature release - -* Update `WhatsNew.txt` - -* Bump version number to 2.EVEN.0 in all these locations: - - * `configure.ac`, `CMakeLists.txt`: `SDL_*_VERSION` - * `Xcode/SDL/Info-Framework.plist`: `CFBundleShortVersionString`, - `CFBundleVersion` - * `Makefile.os2`: `VERSION` - * `Makefile.w32`: `*_VERSION` - * `include/SDL_version.h`: `SDL_*_VERSION`, `SDL_PATCHLEVEL` - * `src/main/windows/version.rc`: `FILEVERSION`, `PRODUCTVERSION`, - `FileVersion`, `ProductVersion` - -* Bump ABI version information - - * `CMakeLists.txt`, `Xcode/SDL/SDL.xcodeproj/project.pbxproj`: - `DYLIB_CURRENT_VERSION`, `DYLIB_COMPATIBILITY_VERSION` - * set first number in `DYLIB_CURRENT_VERSION` to - (100 * *minor*) + 1 - * set second number in `DYLIB_CURRENT_VERSION` to 0 - * if backwards compatibility has been broken, - increase `DYLIB_COMPATIBILITY_VERSION` (?) - -* Run test/versioning.sh to verify that everything is consistent - -* Regenerate `configure` - -* Do the release - -## New bugfix release - -* Check that no new API/ABI was added - - * If it was, do a new feature release (see above) instead - -* Bump version number from 2.Y.Z to 2.Y.(Z+1) (Y is even) - - * Same places as listed above - -* Bump ABI version information - - * `CMakeLists.txt`, `Xcode/SDL/SDL.xcodeproj/project.pbxproj`: - `DYLIB_CURRENT_VERSION`, `DYLIB_COMPATIBILITY_VERSION` - * set second number in `DYLIB_CURRENT_VERSION` to *patchlevel* - -* Run test/versioning.sh to verify that everything is consistent - -* Regenerate `configure` - -* Do the release - -## After a feature release - -* Create a branch like `release-2.24.x` - -* Bump version number to 2.ODD.0 for next development branch - - * Same places as listed above - -* Bump ABI version information - - * Same places as listed above - * Assume that the next feature release will contain new API/ABI - -* Run test/versioning.sh to verify that everything is consistent - -## New development prerelease - -* Bump version number from 2.Y.Z to 2.Y.(Z+1) (Y is odd) - - * Same places as listed above - -* Bump ABI version information - - * `CMakeLists.txt`, `Xcode/SDL/SDL.xcodeproj/project.pbxproj`: - `DYLIB_CURRENT_VERSION`, `DYLIB_COMPATIBILITY_VERSION` - * set first number in `DYLIB_CURRENT_VERSION` to - (100 * *minor*) + *patchlevel* + 1 - * set second number in `DYLIB_CURRENT_VERSION` to 0 - * if backwards compatibility has been broken, - increase `DYLIB_COMPATIBILITY_VERSION` (?) - -* Run test/versioning.sh to verify that everything is consistent - -* Regenerate `configure` - -* Do the release diff --git a/SDL2-2.24.0/include/SDL_opengles2_gl2.h b/SDL2-2.24.0/include/SDL_opengles2_gl2.h deleted file mode 100644 index c62fb0a..0000000 --- a/SDL2-2.24.0/include/SDL_opengles2_gl2.h +++ /dev/null @@ -1,621 +0,0 @@ -#ifndef __gl2_h_ -#define __gl2_h_ - -/* $Revision: 20555 $ on $Date:: 2013-02-12 14:32:47 -0800 #$ */ - -/*#include */ - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * This document is licensed under the SGI Free Software B License Version - * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ . - */ - -/*------------------------------------------------------------------------- - * Data type definitions - *-----------------------------------------------------------------------*/ - -typedef void GLvoid; -typedef char GLchar; -typedef unsigned int GLenum; -typedef unsigned char GLboolean; -typedef unsigned int GLbitfield; -typedef khronos_int8_t GLbyte; -typedef short GLshort; -typedef int GLint; -typedef int GLsizei; -typedef khronos_uint8_t GLubyte; -typedef unsigned short GLushort; -typedef unsigned int GLuint; -typedef khronos_float_t GLfloat; -typedef khronos_float_t GLclampf; -typedef khronos_int32_t GLfixed; - -/* GL types for handling large vertex buffer objects */ -typedef khronos_intptr_t GLintptr; -typedef khronos_ssize_t GLsizeiptr; - -/* OpenGL ES core versions */ -#define GL_ES_VERSION_2_0 1 - -/* ClearBufferMask */ -#define GL_DEPTH_BUFFER_BIT 0x00000100 -#define GL_STENCIL_BUFFER_BIT 0x00000400 -#define GL_COLOR_BUFFER_BIT 0x00004000 - -/* Boolean */ -#define GL_FALSE 0 -#define GL_TRUE 1 - -/* BeginMode */ -#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 - -/* AlphaFunction (not supported in ES20) */ -/* GL_NEVER */ -/* GL_LESS */ -/* GL_EQUAL */ -/* GL_LEQUAL */ -/* GL_GREATER */ -/* GL_NOTEQUAL */ -/* GL_GEQUAL */ -/* GL_ALWAYS */ - -/* BlendingFactorDest */ -#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 - -/* BlendingFactorSrc */ -/* GL_ZERO */ -/* GL_ONE */ -#define GL_DST_COLOR 0x0306 -#define GL_ONE_MINUS_DST_COLOR 0x0307 -#define GL_SRC_ALPHA_SATURATE 0x0308 -/* GL_SRC_ALPHA */ -/* GL_ONE_MINUS_SRC_ALPHA */ -/* GL_DST_ALPHA */ -/* GL_ONE_MINUS_DST_ALPHA */ - -/* BlendEquationSeparate */ -#define GL_FUNC_ADD 0x8006 -#define GL_BLEND_EQUATION 0x8009 -#define GL_BLEND_EQUATION_RGB 0x8009 /* same as BLEND_EQUATION */ -#define GL_BLEND_EQUATION_ALPHA 0x883D - -/* BlendSubtract */ -#define GL_FUNC_SUBTRACT 0x800A -#define GL_FUNC_REVERSE_SUBTRACT 0x800B - -/* Separate Blend Functions */ -#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_CONSTANT_COLOR 0x8001 -#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 -#define GL_CONSTANT_ALPHA 0x8003 -#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 -#define GL_BLEND_COLOR 0x8005 - -/* Buffer Objects */ -#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_STREAM_DRAW 0x88E0 -#define GL_STATIC_DRAW 0x88E4 -#define GL_DYNAMIC_DRAW 0x88E8 - -#define GL_BUFFER_SIZE 0x8764 -#define GL_BUFFER_USAGE 0x8765 - -#define GL_CURRENT_VERTEX_ATTRIB 0x8626 - -/* CullFaceMode */ -#define GL_FRONT 0x0404 -#define GL_BACK 0x0405 -#define GL_FRONT_AND_BACK 0x0408 - -/* DepthFunction */ -/* GL_NEVER */ -/* GL_LESS */ -/* GL_EQUAL */ -/* GL_LEQUAL */ -/* GL_GREATER */ -/* GL_NOTEQUAL */ -/* GL_GEQUAL */ -/* GL_ALWAYS */ - -/* EnableCap */ -#define GL_TEXTURE_2D 0x0DE1 -#define GL_CULL_FACE 0x0B44 -#define GL_BLEND 0x0BE2 -#define GL_DITHER 0x0BD0 -#define GL_STENCIL_TEST 0x0B90 -#define GL_DEPTH_TEST 0x0B71 -#define GL_SCISSOR_TEST 0x0C11 -#define GL_POLYGON_OFFSET_FILL 0x8037 -#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E -#define GL_SAMPLE_COVERAGE 0x80A0 - -/* ErrorCode */ -#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 - -/* FrontFaceDirection */ -#define GL_CW 0x0900 -#define GL_CCW 0x0901 - -/* GetPName */ -#define GL_LINE_WIDTH 0x0B21 -#define GL_ALIASED_POINT_SIZE_RANGE 0x846D -#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E -#define GL_CULL_FACE_MODE 0x0B45 -#define GL_FRONT_FACE 0x0B46 -#define GL_DEPTH_RANGE 0x0B70 -#define GL_DEPTH_WRITEMASK 0x0B72 -#define GL_DEPTH_CLEAR_VALUE 0x0B73 -#define GL_DEPTH_FUNC 0x0B74 -#define GL_STENCIL_CLEAR_VALUE 0x0B91 -#define GL_STENCIL_FUNC 0x0B92 -#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_VALUE_MASK 0x0B93 -#define GL_STENCIL_WRITEMASK 0x0B98 -#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_STENCIL_BACK_REF 0x8CA3 -#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 -#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 -#define GL_VIEWPORT 0x0BA2 -#define GL_SCISSOR_BOX 0x0C10 -/* GL_SCISSOR_TEST */ -#define GL_COLOR_CLEAR_VALUE 0x0C22 -#define GL_COLOR_WRITEMASK 0x0C23 -#define GL_UNPACK_ALIGNMENT 0x0CF5 -#define GL_PACK_ALIGNMENT 0x0D05 -#define GL_MAX_TEXTURE_SIZE 0x0D33 -#define GL_MAX_VIEWPORT_DIMS 0x0D3A -#define GL_SUBPIXEL_BITS 0x0D50 -#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_POLYGON_OFFSET_UNITS 0x2A00 -/* GL_POLYGON_OFFSET_FILL */ -#define GL_POLYGON_OFFSET_FACTOR 0x8038 -#define GL_TEXTURE_BINDING_2D 0x8069 -#define GL_SAMPLE_BUFFERS 0x80A8 -#define GL_SAMPLES 0x80A9 -#define GL_SAMPLE_COVERAGE_VALUE 0x80AA -#define GL_SAMPLE_COVERAGE_INVERT 0x80AB - -/* GetTextureParameter */ -/* GL_TEXTURE_MAG_FILTER */ -/* GL_TEXTURE_MIN_FILTER */ -/* GL_TEXTURE_WRAP_S */ -/* GL_TEXTURE_WRAP_T */ - -#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 -#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 - -/* HintMode */ -#define GL_DONT_CARE 0x1100 -#define GL_FASTEST 0x1101 -#define GL_NICEST 0x1102 - -/* HintTarget */ -#define GL_GENERATE_MIPMAP_HINT 0x8192 - -/* DataType */ -#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_FIXED 0x140C - -/* PixelFormat */ -#define GL_DEPTH_COMPONENT 0x1902 -#define GL_ALPHA 0x1906 -#define GL_RGB 0x1907 -#define GL_RGBA 0x1908 -#define GL_LUMINANCE 0x1909 -#define GL_LUMINANCE_ALPHA 0x190A - -/* PixelType */ -/* GL_UNSIGNED_BYTE */ -#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 -#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 -#define GL_UNSIGNED_SHORT_5_6_5 0x8363 - -/* Shaders */ -#define GL_FRAGMENT_SHADER 0x8B30 -#define GL_VERTEX_SHADER 0x8B31 -#define GL_MAX_VERTEX_ATTRIBS 0x8869 -#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB -#define GL_MAX_VARYING_VECTORS 0x8DFC -#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D -#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C -#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 -#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD -#define GL_SHADER_TYPE 0x8B4F -#define GL_DELETE_STATUS 0x8B80 -#define GL_LINK_STATUS 0x8B82 -#define GL_VALIDATE_STATUS 0x8B83 -#define GL_ATTACHED_SHADERS 0x8B85 -#define GL_ACTIVE_UNIFORMS 0x8B86 -#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 -#define GL_ACTIVE_ATTRIBUTES 0x8B89 -#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A -#define GL_SHADING_LANGUAGE_VERSION 0x8B8C -#define GL_CURRENT_PROGRAM 0x8B8D - -/* StencilFunction */ -#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 - -/* StencilOp */ -/* GL_ZERO */ -#define GL_KEEP 0x1E00 -#define GL_REPLACE 0x1E01 -#define GL_INCR 0x1E02 -#define GL_DECR 0x1E03 -#define GL_INVERT 0x150A -#define GL_INCR_WRAP 0x8507 -#define GL_DECR_WRAP 0x8508 - -/* StringName */ -#define GL_VENDOR 0x1F00 -#define GL_RENDERER 0x1F01 -#define GL_VERSION 0x1F02 -#define GL_EXTENSIONS 0x1F03 - -/* TextureMagFilter */ -#define GL_NEAREST 0x2600 -#define GL_LINEAR 0x2601 - -/* TextureMinFilter */ -/* GL_NEAREST */ -/* GL_LINEAR */ -#define GL_NEAREST_MIPMAP_NEAREST 0x2700 -#define GL_LINEAR_MIPMAP_NEAREST 0x2701 -#define GL_NEAREST_MIPMAP_LINEAR 0x2702 -#define GL_LINEAR_MIPMAP_LINEAR 0x2703 - -/* TextureParameterName */ -#define GL_TEXTURE_MAG_FILTER 0x2800 -#define GL_TEXTURE_MIN_FILTER 0x2801 -#define GL_TEXTURE_WRAP_S 0x2802 -#define GL_TEXTURE_WRAP_T 0x2803 - -/* TextureTarget */ -/* GL_TEXTURE_2D */ -#define GL_TEXTURE 0x1702 - -#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_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C - -/* TextureUnit */ -#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 - -/* TextureWrapMode */ -#define GL_REPEAT 0x2901 -#define GL_CLAMP_TO_EDGE 0x812F -#define GL_MIRRORED_REPEAT 0x8370 - -/* Uniform Types */ -#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_2D 0x8B5E -#define GL_SAMPLER_CUBE 0x8B60 - -/* Vertex Arrays */ -#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_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A -#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 -#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F - -/* Read Format */ -#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A -#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B - -/* Shader Source */ -#define GL_COMPILE_STATUS 0x8B81 -#define GL_INFO_LOG_LENGTH 0x8B84 -#define GL_SHADER_SOURCE_LENGTH 0x8B88 -#define GL_SHADER_COMPILER 0x8DFA - -/* Shader Binary */ -#define GL_SHADER_BINARY_FORMATS 0x8DF8 -#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 - -/* Shader Precision-Specified Types */ -#define GL_LOW_FLOAT 0x8DF0 -#define GL_MEDIUM_FLOAT 0x8DF1 -#define GL_HIGH_FLOAT 0x8DF2 -#define GL_LOW_INT 0x8DF3 -#define GL_MEDIUM_INT 0x8DF4 -#define GL_HIGH_INT 0x8DF5 - -/* Framebuffer Object. */ -#define GL_FRAMEBUFFER 0x8D40 -#define GL_RENDERBUFFER 0x8D41 - -#define GL_RGBA4 0x8056 -#define GL_RGB5_A1 0x8057 -#define GL_RGB565 0x8D62 -#define GL_DEPTH_COMPONENT16 0x81A5 -#define GL_STENCIL_INDEX8 0x8D48 - -#define GL_RENDERBUFFER_WIDTH 0x8D42 -#define GL_RENDERBUFFER_HEIGHT 0x8D43 -#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 -#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_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_COLOR_ATTACHMENT0 0x8CE0 -#define GL_DEPTH_ATTACHMENT 0x8D00 -#define GL_STENCIL_ATTACHMENT 0x8D20 - -#define GL_NONE 0 - -#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 -#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 -#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 -#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9 -#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD - -#define GL_FRAMEBUFFER_BINDING 0x8CA6 -#define GL_RENDERBUFFER_BINDING 0x8CA7 -#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 - -#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 - -/*------------------------------------------------------------------------- - * GL core functions. - *-----------------------------------------------------------------------*/ - -GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); -GL_APICALL void GL_APIENTRY glAttachShader (GLuint program, GLuint shader); -GL_APICALL void GL_APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar* name); -GL_APICALL void GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer); -GL_APICALL void GL_APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); -GL_APICALL void GL_APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); -GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture); -GL_APICALL void GL_APIENTRY glBlendColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); -GL_APICALL void GL_APIENTRY glBlendEquation ( GLenum mode ); -GL_APICALL void GL_APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); -GL_APICALL void GL_APIENTRY glBlendFunc (GLenum sfactor, GLenum dfactor); -GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); -GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage); -GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data); -GL_APICALL GLenum GL_APIENTRY glCheckFramebufferStatus (GLenum target); -GL_APICALL void GL_APIENTRY glClear (GLbitfield mask); -GL_APICALL void GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); -GL_APICALL void GL_APIENTRY glClearDepthf (GLclampf depth); -GL_APICALL void GL_APIENTRY glClearStencil (GLint s); -GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); -GL_APICALL void GL_APIENTRY glCompileShader (GLuint shader); -GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const GLvoid* data); -GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data); -GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); -GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); -GL_APICALL GLuint GL_APIENTRY glCreateProgram (void); -GL_APICALL GLuint GL_APIENTRY glCreateShader (GLenum type); -GL_APICALL void GL_APIENTRY glCullFace (GLenum mode); -GL_APICALL void GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint* buffers); -GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint* framebuffers); -GL_APICALL void GL_APIENTRY glDeleteProgram (GLuint program); -GL_APICALL void GL_APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint* renderbuffers); -GL_APICALL void GL_APIENTRY glDeleteShader (GLuint shader); -GL_APICALL void GL_APIENTRY glDeleteTextures (GLsizei n, const GLuint* textures); -GL_APICALL void GL_APIENTRY glDepthFunc (GLenum func); -GL_APICALL void GL_APIENTRY glDepthMask (GLboolean flag); -GL_APICALL void GL_APIENTRY glDepthRangef (GLclampf zNear, GLclampf zFar); -GL_APICALL void GL_APIENTRY glDetachShader (GLuint program, GLuint shader); -GL_APICALL void GL_APIENTRY glDisable (GLenum cap); -GL_APICALL void GL_APIENTRY glDisableVertexAttribArray (GLuint index); -GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count); -GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const GLvoid* indices); -GL_APICALL void GL_APIENTRY glEnable (GLenum cap); -GL_APICALL void GL_APIENTRY glEnableVertexAttribArray (GLuint index); -GL_APICALL void GL_APIENTRY glFinish (void); -GL_APICALL void GL_APIENTRY glFlush (void); -GL_APICALL void GL_APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); -GL_APICALL void GL_APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); -GL_APICALL void GL_APIENTRY glFrontFace (GLenum mode); -GL_APICALL void GL_APIENTRY glGenBuffers (GLsizei n, GLuint* buffers); -GL_APICALL void GL_APIENTRY glGenerateMipmap (GLenum target); -GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint* framebuffers); -GL_APICALL void GL_APIENTRY glGenRenderbuffers (GLsizei n, GLuint* renderbuffers); -GL_APICALL void GL_APIENTRY glGenTextures (GLsizei n, GLuint* textures); -GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name); -GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name); -GL_APICALL void GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxcount, GLsizei* count, GLuint* shaders); -GL_APICALL GLint GL_APIENTRY glGetAttribLocation (GLuint program, const GLchar* name); -GL_APICALL void GL_APIENTRY glGetBooleanv (GLenum pname, GLboolean* params); -GL_APICALL void GL_APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint* params); -GL_APICALL GLenum GL_APIENTRY glGetError (void); -GL_APICALL void GL_APIENTRY glGetFloatv (GLenum pname, GLfloat* params); -GL_APICALL void GL_APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint* params); -GL_APICALL void GL_APIENTRY glGetIntegerv (GLenum pname, GLint* params); -GL_APICALL void GL_APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint* params); -GL_APICALL void GL_APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufsize, GLsizei* length, GLchar* infolog); -GL_APICALL void GL_APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint* params); -GL_APICALL void GL_APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint* params); -GL_APICALL void GL_APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* infolog); -GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint* range, GLint* precision); -GL_APICALL void GL_APIENTRY glGetShaderSource (GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source); -GL_APICALL const GLubyte* GL_APIENTRY glGetString (GLenum name); -GL_APICALL void GL_APIENTRY glGetTexParameterfv (GLenum target, GLenum pname, GLfloat* params); -GL_APICALL void GL_APIENTRY glGetTexParameteriv (GLenum target, GLenum pname, GLint* params); -GL_APICALL void GL_APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat* params); -GL_APICALL void GL_APIENTRY glGetUniformiv (GLuint program, GLint location, GLint* params); -GL_APICALL GLint GL_APIENTRY glGetUniformLocation (GLuint program, const GLchar* name); -GL_APICALL void GL_APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat* params); -GL_APICALL void GL_APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint* params); -GL_APICALL void GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, GLvoid** pointer); -GL_APICALL void GL_APIENTRY glHint (GLenum target, GLenum mode); -GL_APICALL GLboolean GL_APIENTRY glIsBuffer (GLuint buffer); -GL_APICALL GLboolean GL_APIENTRY glIsEnabled (GLenum cap); -GL_APICALL GLboolean GL_APIENTRY glIsFramebuffer (GLuint framebuffer); -GL_APICALL GLboolean GL_APIENTRY glIsProgram (GLuint program); -GL_APICALL GLboolean GL_APIENTRY glIsRenderbuffer (GLuint renderbuffer); -GL_APICALL GLboolean GL_APIENTRY glIsShader (GLuint shader); -GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture); -GL_APICALL void GL_APIENTRY glLineWidth (GLfloat width); -GL_APICALL void GL_APIENTRY glLinkProgram (GLuint program); -GL_APICALL void GL_APIENTRY glPixelStorei (GLenum pname, GLint param); -GL_APICALL void GL_APIENTRY glPolygonOffset (GLfloat factor, GLfloat units); -GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels); -GL_APICALL void GL_APIENTRY glReleaseShaderCompiler (void); -GL_APICALL void GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); -GL_APICALL void GL_APIENTRY glSampleCoverage (GLclampf value, GLboolean invert); -GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height); -GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei n, const GLuint* shaders, GLenum binaryformat, const GLvoid* binary, GLsizei length); -GL_APICALL void GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar* const* string, const GLint* length); -GL_APICALL void GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask); -GL_APICALL void GL_APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); -GL_APICALL void GL_APIENTRY glStencilMask (GLuint mask); -GL_APICALL void GL_APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); -GL_APICALL void GL_APIENTRY glStencilOp (GLenum fail, GLenum zfail, GLenum zpass); -GL_APICALL void GL_APIENTRY glStencilOpSeparate (GLenum face, GLenum fail, GLenum zfail, GLenum zpass); -GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const GLvoid* pixels); -GL_APICALL void GL_APIENTRY glTexParameterf (GLenum target, GLenum pname, GLfloat param); -GL_APICALL void GL_APIENTRY glTexParameterfv (GLenum target, GLenum pname, const GLfloat* params); -GL_APICALL void GL_APIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param); -GL_APICALL void GL_APIENTRY glTexParameteriv (GLenum target, GLenum pname, const GLint* params); -GL_APICALL void GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid* pixels); -GL_APICALL void GL_APIENTRY glUniform1f (GLint location, GLfloat x); -GL_APICALL void GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat* v); -GL_APICALL void GL_APIENTRY glUniform1i (GLint location, GLint x); -GL_APICALL void GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint* v); -GL_APICALL void GL_APIENTRY glUniform2f (GLint location, GLfloat x, GLfloat y); -GL_APICALL void GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat* v); -GL_APICALL void GL_APIENTRY glUniform2i (GLint location, GLint x, GLint y); -GL_APICALL void GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint* v); -GL_APICALL void GL_APIENTRY glUniform3f (GLint location, GLfloat x, GLfloat y, GLfloat z); -GL_APICALL void GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat* v); -GL_APICALL void GL_APIENTRY glUniform3i (GLint location, GLint x, GLint y, GLint z); -GL_APICALL void GL_APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint* v); -GL_APICALL void GL_APIENTRY glUniform4f (GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w); -GL_APICALL void GL_APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat* v); -GL_APICALL void GL_APIENTRY glUniform4i (GLint location, GLint x, GLint y, GLint z, GLint w); -GL_APICALL void GL_APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint* v); -GL_APICALL void GL_APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); -GL_APICALL void GL_APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); -GL_APICALL void GL_APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat* value); -GL_APICALL void GL_APIENTRY glUseProgram (GLuint program); -GL_APICALL void GL_APIENTRY glValidateProgram (GLuint program); -GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint indx, GLfloat x); -GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint indx, const GLfloat* values); -GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint indx, GLfloat x, GLfloat y); -GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint indx, const GLfloat* values); -GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint indx, GLfloat x, GLfloat y, GLfloat z); -GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint indx, const GLfloat* values); -GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint indx, GLfloat x, GLfloat y, GLfloat z, GLfloat w); -GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint indx, const GLfloat* values); -GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr); -GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height); - -#ifdef __cplusplus -} -#endif - -#endif /* __gl2_h_ */ - diff --git a/SDL2-2.24.0/include/SDL_opengles2_gl2ext.h b/SDL2-2.24.0/include/SDL_opengles2_gl2ext.h deleted file mode 100644 index e8ca8b1..0000000 --- a/SDL2-2.24.0/include/SDL_opengles2_gl2ext.h +++ /dev/null @@ -1,2050 +0,0 @@ -#ifndef __gl2ext_h_ -#define __gl2ext_h_ - -/* $Revision: 22801 $ on $Date:: 2013-08-21 03:20:48 -0700 #$ */ - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * This document is licensed under the SGI Free Software B License Version - * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ . - */ - -#ifndef GL_APIENTRYP -# define GL_APIENTRYP GL_APIENTRY* -#endif - -/* New types shared by several extensions */ - -#ifndef __gl3_h_ -/* These are defined with respect to in the - * Apple extension spec, but they are also used by non-APPLE - * extensions, and in the Khronos header we use the Khronos - * portable types in khrplatform.h, which must be defined. - */ -typedef khronos_int64_t GLint64; -typedef khronos_uint64_t GLuint64; -typedef struct __GLsync *GLsync; -#endif - - -/*------------------------------------------------------------------------* - * OES extension tokens - *------------------------------------------------------------------------*/ - -/* GL_OES_compressed_ETC1_RGB8_texture */ -#ifndef GL_OES_compressed_ETC1_RGB8_texture -#define GL_ETC1_RGB8_OES 0x8D64 -#endif - -/* GL_OES_compressed_paletted_texture */ -#ifndef GL_OES_compressed_paletted_texture -#define GL_PALETTE4_RGB8_OES 0x8B90 -#define GL_PALETTE4_RGBA8_OES 0x8B91 -#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 -#define GL_PALETTE4_RGBA4_OES 0x8B93 -#define GL_PALETTE4_RGB5_A1_OES 0x8B94 -#define GL_PALETTE8_RGB8_OES 0x8B95 -#define GL_PALETTE8_RGBA8_OES 0x8B96 -#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 -#define GL_PALETTE8_RGBA4_OES 0x8B98 -#define GL_PALETTE8_RGB5_A1_OES 0x8B99 -#endif - -/* GL_OES_depth24 */ -#ifndef GL_OES_depth24 -#define GL_DEPTH_COMPONENT24_OES 0x81A6 -#endif - -/* GL_OES_depth32 */ -#ifndef GL_OES_depth32 -#define GL_DEPTH_COMPONENT32_OES 0x81A7 -#endif - -/* GL_OES_depth_texture */ -/* No new tokens introduced by this extension. */ - -/* GL_OES_EGL_image */ -#ifndef GL_OES_EGL_image -typedef void* GLeglImageOES; -#endif - -/* GL_OES_EGL_image_external */ -#ifndef GL_OES_EGL_image_external -/* GLeglImageOES defined in GL_OES_EGL_image already. */ -#define GL_TEXTURE_EXTERNAL_OES 0x8D65 -#define GL_SAMPLER_EXTERNAL_OES 0x8D66 -#define GL_TEXTURE_BINDING_EXTERNAL_OES 0x8D67 -#define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES 0x8D68 -#endif - -/* GL_OES_element_index_uint */ -#ifndef GL_OES_element_index_uint -#define GL_UNSIGNED_INT 0x1405 -#endif - -/* GL_OES_get_program_binary */ -#ifndef GL_OES_get_program_binary -#define GL_PROGRAM_BINARY_LENGTH_OES 0x8741 -#define GL_NUM_PROGRAM_BINARY_FORMATS_OES 0x87FE -#define GL_PROGRAM_BINARY_FORMATS_OES 0x87FF -#endif - -/* GL_OES_mapbuffer */ -#ifndef GL_OES_mapbuffer -#define GL_WRITE_ONLY_OES 0x88B9 -#define GL_BUFFER_ACCESS_OES 0x88BB -#define GL_BUFFER_MAPPED_OES 0x88BC -#define GL_BUFFER_MAP_POINTER_OES 0x88BD -#endif - -/* GL_OES_packed_depth_stencil */ -#ifndef GL_OES_packed_depth_stencil -#define GL_DEPTH_STENCIL_OES 0x84F9 -#define GL_UNSIGNED_INT_24_8_OES 0x84FA -#define GL_DEPTH24_STENCIL8_OES 0x88F0 -#endif - -/* GL_OES_required_internalformat */ -#ifndef GL_OES_required_internalformat -#define GL_ALPHA8_OES 0x803C -#define GL_DEPTH_COMPONENT16_OES 0x81A5 -/* reuse GL_DEPTH_COMPONENT24_OES */ -/* reuse GL_DEPTH24_STENCIL8_OES */ -/* reuse GL_DEPTH_COMPONENT32_OES */ -#define GL_LUMINANCE4_ALPHA4_OES 0x8043 -#define GL_LUMINANCE8_ALPHA8_OES 0x8045 -#define GL_LUMINANCE8_OES 0x8040 -#define GL_RGBA4_OES 0x8056 -#define GL_RGB5_A1_OES 0x8057 -#define GL_RGB565_OES 0x8D62 -/* reuse GL_RGB8_OES */ -/* reuse GL_RGBA8_OES */ -/* reuse GL_RGB10_EXT */ -/* reuse GL_RGB10_A2_EXT */ -#endif - -/* GL_OES_rgb8_rgba8 */ -#ifndef GL_OES_rgb8_rgba8 -#define GL_RGB8_OES 0x8051 -#define GL_RGBA8_OES 0x8058 -#endif - -/* GL_OES_standard_derivatives */ -#ifndef GL_OES_standard_derivatives -#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES 0x8B8B -#endif - -/* GL_OES_stencil1 */ -#ifndef GL_OES_stencil1 -#define GL_STENCIL_INDEX1_OES 0x8D46 -#endif - -/* GL_OES_stencil4 */ -#ifndef GL_OES_stencil4 -#define GL_STENCIL_INDEX4_OES 0x8D47 -#endif - -#ifndef GL_OES_surfaceless_context -#define GL_FRAMEBUFFER_UNDEFINED_OES 0x8219 -#endif - -/* GL_OES_texture_3D */ -#ifndef GL_OES_texture_3D -#define GL_TEXTURE_WRAP_R_OES 0x8072 -#define GL_TEXTURE_3D_OES 0x806F -#define GL_TEXTURE_BINDING_3D_OES 0x806A -#define GL_MAX_3D_TEXTURE_SIZE_OES 0x8073 -#define GL_SAMPLER_3D_OES 0x8B5F -#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES 0x8CD4 -#endif - -/* GL_OES_texture_float */ -/* No new tokens introduced by this extension. */ - -/* GL_OES_texture_float_linear */ -/* No new tokens introduced by this extension. */ - -/* GL_OES_texture_half_float */ -#ifndef GL_OES_texture_half_float -#define GL_HALF_FLOAT_OES 0x8D61 -#endif - -/* GL_OES_texture_half_float_linear */ -/* No new tokens introduced by this extension. */ - -/* GL_OES_texture_npot */ -/* No new tokens introduced by this extension. */ - -/* GL_OES_vertex_array_object */ -#ifndef GL_OES_vertex_array_object -#define GL_VERTEX_ARRAY_BINDING_OES 0x85B5 -#endif - -/* GL_OES_vertex_half_float */ -/* GL_HALF_FLOAT_OES defined in GL_OES_texture_half_float already. */ - -/* GL_OES_vertex_type_10_10_10_2 */ -#ifndef GL_OES_vertex_type_10_10_10_2 -#define GL_UNSIGNED_INT_10_10_10_2_OES 0x8DF6 -#define GL_INT_10_10_10_2_OES 0x8DF7 -#endif - -/*------------------------------------------------------------------------* - * KHR extension tokens - *------------------------------------------------------------------------*/ - -#ifndef GL_KHR_debug -typedef void (GL_APIENTRYP GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); -#define GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR 0x8242 -#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR 0x8243 -#define GL_DEBUG_CALLBACK_FUNCTION_KHR 0x8244 -#define GL_DEBUG_CALLBACK_USER_PARAM_KHR 0x8245 -#define GL_DEBUG_SOURCE_API_KHR 0x8246 -#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR 0x8247 -#define GL_DEBUG_SOURCE_SHADER_COMPILER_KHR 0x8248 -#define GL_DEBUG_SOURCE_THIRD_PARTY_KHR 0x8249 -#define GL_DEBUG_SOURCE_APPLICATION_KHR 0x824A -#define GL_DEBUG_SOURCE_OTHER_KHR 0x824B -#define GL_DEBUG_TYPE_ERROR_KHR 0x824C -#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR 0x824D -#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR 0x824E -#define GL_DEBUG_TYPE_PORTABILITY_KHR 0x824F -#define GL_DEBUG_TYPE_PERFORMANCE_KHR 0x8250 -#define GL_DEBUG_TYPE_OTHER_KHR 0x8251 -#define GL_DEBUG_TYPE_MARKER_KHR 0x8268 -#define GL_DEBUG_TYPE_PUSH_GROUP_KHR 0x8269 -#define GL_DEBUG_TYPE_POP_GROUP_KHR 0x826A -#define GL_DEBUG_SEVERITY_NOTIFICATION_KHR 0x826B -#define GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR 0x826C -#define GL_DEBUG_GROUP_STACK_DEPTH_KHR 0x826D -#define GL_BUFFER_KHR 0x82E0 -#define GL_SHADER_KHR 0x82E1 -#define GL_PROGRAM_KHR 0x82E2 -#define GL_QUERY_KHR 0x82E3 -/* PROGRAM_PIPELINE only in GL */ -#define GL_SAMPLER_KHR 0x82E6 -/* DISPLAY_LIST only in GL */ -#define GL_MAX_LABEL_LENGTH_KHR 0x82E8 -#define GL_MAX_DEBUG_MESSAGE_LENGTH_KHR 0x9143 -#define GL_MAX_DEBUG_LOGGED_MESSAGES_KHR 0x9144 -#define GL_DEBUG_LOGGED_MESSAGES_KHR 0x9145 -#define GL_DEBUG_SEVERITY_HIGH_KHR 0x9146 -#define GL_DEBUG_SEVERITY_MEDIUM_KHR 0x9147 -#define GL_DEBUG_SEVERITY_LOW_KHR 0x9148 -#define GL_DEBUG_OUTPUT_KHR 0x92E0 -#define GL_CONTEXT_FLAG_DEBUG_BIT_KHR 0x00000002 -#define GL_STACK_OVERFLOW_KHR 0x0503 -#define GL_STACK_UNDERFLOW_KHR 0x0504 -#endif - -#ifndef GL_KHR_texture_compression_astc_ldr -#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 -#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 -#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 -#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 -#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 -#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 -#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 -#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 -#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 -#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 -#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA -#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB -#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC -#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC -#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD -#endif - -/*------------------------------------------------------------------------* - * AMD extension tokens - *------------------------------------------------------------------------*/ - -/* GL_AMD_compressed_3DC_texture */ -#ifndef GL_AMD_compressed_3DC_texture -#define GL_3DC_X_AMD 0x87F9 -#define GL_3DC_XY_AMD 0x87FA -#endif - -/* GL_AMD_compressed_ATC_texture */ -#ifndef GL_AMD_compressed_ATC_texture -#define GL_ATC_RGB_AMD 0x8C92 -#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93 -#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE -#endif - -/* GL_AMD_performance_monitor */ -#ifndef GL_AMD_performance_monitor -#define GL_COUNTER_TYPE_AMD 0x8BC0 -#define GL_COUNTER_RANGE_AMD 0x8BC1 -#define GL_UNSIGNED_INT64_AMD 0x8BC2 -#define GL_PERCENTAGE_AMD 0x8BC3 -#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 -#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 -#define GL_PERFMON_RESULT_AMD 0x8BC6 -#endif - -/* GL_AMD_program_binary_Z400 */ -#ifndef GL_AMD_program_binary_Z400 -#define GL_Z400_BINARY_AMD 0x8740 -#endif - -/*------------------------------------------------------------------------* - * ANGLE extension tokens - *------------------------------------------------------------------------*/ - -/* GL_ANGLE_depth_texture */ -#ifndef GL_ANGLE_depth_texture -#define GL_DEPTH_COMPONENT 0x1902 -#define GL_DEPTH_STENCIL_OES 0x84F9 -#define GL_UNSIGNED_SHORT 0x1403 -#define GL_UNSIGNED_INT 0x1405 -#define GL_UNSIGNED_INT_24_8_OES 0x84FA -#define GL_DEPTH_COMPONENT16 0x81A5 -#define GL_DEPTH_COMPONENT32_OES 0x81A7 -#define GL_DEPTH24_STENCIL8_OES 0x88F0 -#endif - -/* GL_ANGLE_framebuffer_blit */ -#ifndef GL_ANGLE_framebuffer_blit -#define GL_READ_FRAMEBUFFER_ANGLE 0x8CA8 -#define GL_DRAW_FRAMEBUFFER_ANGLE 0x8CA9 -#define GL_DRAW_FRAMEBUFFER_BINDING_ANGLE 0x8CA6 -#define GL_READ_FRAMEBUFFER_BINDING_ANGLE 0x8CAA -#endif - -/* GL_ANGLE_framebuffer_multisample */ -#ifndef GL_ANGLE_framebuffer_multisample -#define GL_RENDERBUFFER_SAMPLES_ANGLE 0x8CAB -#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE 0x8D56 -#define GL_MAX_SAMPLES_ANGLE 0x8D57 -#endif - -/* GL_ANGLE_instanced_arrays */ -#ifndef GL_ANGLE_instanced_arrays -#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE 0x88FE -#endif - -/* GL_ANGLE_pack_reverse_row_order */ -#ifndef GL_ANGLE_pack_reverse_row_order -#define GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 -#endif - -/* GL_ANGLE_program_binary */ -#ifndef GL_ANGLE_program_binary -#define GL_PROGRAM_BINARY_ANGLE 0x93A6 -#endif - -/* GL_ANGLE_texture_compression_dxt3 */ -#ifndef GL_ANGLE_texture_compression_dxt3 -#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 -#endif - -/* GL_ANGLE_texture_compression_dxt5 */ -#ifndef GL_ANGLE_texture_compression_dxt5 -#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 -#endif - -/* GL_ANGLE_texture_usage */ -#ifndef GL_ANGLE_texture_usage -#define GL_TEXTURE_USAGE_ANGLE 0x93A2 -#define GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 -#endif - -/* GL_ANGLE_translated_shader_source */ -#ifndef GL_ANGLE_translated_shader_source -#define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 -#endif - -/*------------------------------------------------------------------------* - * APPLE extension tokens - *------------------------------------------------------------------------*/ - -/* GL_APPLE_copy_texture_levels */ -/* No new tokens introduced by this extension. */ - -/* GL_APPLE_framebuffer_multisample */ -#ifndef GL_APPLE_framebuffer_multisample -#define GL_RENDERBUFFER_SAMPLES_APPLE 0x8CAB -#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE 0x8D56 -#define GL_MAX_SAMPLES_APPLE 0x8D57 -#define GL_READ_FRAMEBUFFER_APPLE 0x8CA8 -#define GL_DRAW_FRAMEBUFFER_APPLE 0x8CA9 -#define GL_DRAW_FRAMEBUFFER_BINDING_APPLE 0x8CA6 -#define GL_READ_FRAMEBUFFER_BINDING_APPLE 0x8CAA -#endif - -/* GL_APPLE_rgb_422 */ -#ifndef GL_APPLE_rgb_422 -#define GL_RGB_422_APPLE 0x8A1F -#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA -#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB -#endif - -/* GL_APPLE_sync */ -#ifndef GL_APPLE_sync - -#define GL_SYNC_OBJECT_APPLE 0x8A53 -#define GL_MAX_SERVER_WAIT_TIMEOUT_APPLE 0x9111 -#define GL_OBJECT_TYPE_APPLE 0x9112 -#define GL_SYNC_CONDITION_APPLE 0x9113 -#define GL_SYNC_STATUS_APPLE 0x9114 -#define GL_SYNC_FLAGS_APPLE 0x9115 -#define GL_SYNC_FENCE_APPLE 0x9116 -#define GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE 0x9117 -#define GL_UNSIGNALED_APPLE 0x9118 -#define GL_SIGNALED_APPLE 0x9119 -#define GL_ALREADY_SIGNALED_APPLE 0x911A -#define GL_TIMEOUT_EXPIRED_APPLE 0x911B -#define GL_CONDITION_SATISFIED_APPLE 0x911C -#define GL_WAIT_FAILED_APPLE 0x911D -#define GL_SYNC_FLUSH_COMMANDS_BIT_APPLE 0x00000001 -#define GL_TIMEOUT_IGNORED_APPLE 0xFFFFFFFFFFFFFFFFull -#endif - -/* GL_APPLE_texture_format_BGRA8888 */ -#ifndef GL_APPLE_texture_format_BGRA8888 -#define GL_BGRA_EXT 0x80E1 -#endif - -/* GL_APPLE_texture_max_level */ -#ifndef GL_APPLE_texture_max_level -#define GL_TEXTURE_MAX_LEVEL_APPLE 0x813D -#endif - -/*------------------------------------------------------------------------* - * ARM extension tokens - *------------------------------------------------------------------------*/ - -/* GL_ARM_mali_program_binary */ -#ifndef GL_ARM_mali_program_binary -#define GL_MALI_PROGRAM_BINARY_ARM 0x8F61 -#endif - -/* GL_ARM_mali_shader_binary */ -#ifndef GL_ARM_mali_shader_binary -#define GL_MALI_SHADER_BINARY_ARM 0x8F60 -#endif - -/* GL_ARM_rgba8 */ -/* No new tokens introduced by this extension. */ - -/*------------------------------------------------------------------------* - * EXT extension tokens - *------------------------------------------------------------------------*/ - -/* GL_EXT_blend_minmax */ -#ifndef GL_EXT_blend_minmax -#define GL_MIN_EXT 0x8007 -#define GL_MAX_EXT 0x8008 -#endif - -/* GL_EXT_color_buffer_half_float */ -#ifndef GL_EXT_color_buffer_half_float -#define GL_RGBA16F_EXT 0x881A -#define GL_RGB16F_EXT 0x881B -#define GL_RG16F_EXT 0x822F -#define GL_R16F_EXT 0x822D -#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT 0x8211 -#define GL_UNSIGNED_NORMALIZED_EXT 0x8C17 -#endif - -/* GL_EXT_debug_label */ -#ifndef GL_EXT_debug_label -#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F -#define GL_PROGRAM_OBJECT_EXT 0x8B40 -#define GL_SHADER_OBJECT_EXT 0x8B48 -#define GL_BUFFER_OBJECT_EXT 0x9151 -#define GL_QUERY_OBJECT_EXT 0x9153 -#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 -#endif - -/* GL_EXT_debug_marker */ -/* No new tokens introduced by this extension. */ - -/* GL_EXT_discard_framebuffer */ -#ifndef GL_EXT_discard_framebuffer -#define GL_COLOR_EXT 0x1800 -#define GL_DEPTH_EXT 0x1801 -#define GL_STENCIL_EXT 0x1802 -#endif - -#ifndef GL_EXT_disjoint_timer_query -#define GL_QUERY_COUNTER_BITS_EXT 0x8864 -#define GL_CURRENT_QUERY_EXT 0x8865 -#define GL_QUERY_RESULT_EXT 0x8866 -#define GL_QUERY_RESULT_AVAILABLE_EXT 0x8867 -#define GL_TIME_ELAPSED_EXT 0x88BF -#define GL_TIMESTAMP_EXT 0x8E28 -#define GL_GPU_DISJOINT_EXT 0x8FBB -#endif - -#ifndef GL_EXT_draw_buffers -#define GL_EXT_draw_buffers 1 -#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF -#define GL_MAX_DRAW_BUFFERS_EXT 0x8824 -#define GL_DRAW_BUFFER0_EXT 0x8825 -#define GL_DRAW_BUFFER1_EXT 0x8826 -#define GL_DRAW_BUFFER2_EXT 0x8827 -#define GL_DRAW_BUFFER3_EXT 0x8828 -#define GL_DRAW_BUFFER4_EXT 0x8829 -#define GL_DRAW_BUFFER5_EXT 0x882A -#define GL_DRAW_BUFFER6_EXT 0x882B -#define GL_DRAW_BUFFER7_EXT 0x882C -#define GL_DRAW_BUFFER8_EXT 0x882D -#define GL_DRAW_BUFFER9_EXT 0x882E -#define GL_DRAW_BUFFER10_EXT 0x882F -#define GL_DRAW_BUFFER11_EXT 0x8830 -#define GL_DRAW_BUFFER12_EXT 0x8831 -#define GL_DRAW_BUFFER13_EXT 0x8832 -#define GL_DRAW_BUFFER14_EXT 0x8833 -#define GL_DRAW_BUFFER15_EXT 0x8834 -#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 -#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 -#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 -#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 -#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 -#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 -#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 -#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 -#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 -#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 -#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA -#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB -#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC -#define GL_COLOR_ATTACHMENT13_EXT 0x8CED -#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE -#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF -#endif - -/* GL_EXT_map_buffer_range */ -#ifndef GL_EXT_map_buffer_range -#define GL_MAP_READ_BIT_EXT 0x0001 -#define GL_MAP_WRITE_BIT_EXT 0x0002 -#define GL_MAP_INVALIDATE_RANGE_BIT_EXT 0x0004 -#define GL_MAP_INVALIDATE_BUFFER_BIT_EXT 0x0008 -#define GL_MAP_FLUSH_EXPLICIT_BIT_EXT 0x0010 -#define GL_MAP_UNSYNCHRONIZED_BIT_EXT 0x0020 -#endif - -/* GL_EXT_multisampled_render_to_texture */ -#ifndef GL_EXT_multisampled_render_to_texture -#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT 0x8D6C -/* reuse values from GL_EXT_framebuffer_multisample (desktop extension) */ -#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB -#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 -#define GL_MAX_SAMPLES_EXT 0x8D57 -#endif - -/* GL_EXT_multiview_draw_buffers */ -#ifndef GL_EXT_multiview_draw_buffers -#define GL_COLOR_ATTACHMENT_EXT 0x90F0 -#define GL_MULTIVIEW_EXT 0x90F1 -#define GL_DRAW_BUFFER_EXT 0x0C01 -#define GL_READ_BUFFER_EXT 0x0C02 -#define GL_MAX_MULTIVIEW_BUFFERS_EXT 0x90F2 -#endif - -/* GL_EXT_multi_draw_arrays */ -/* No new tokens introduced by this extension. */ - -/* GL_EXT_occlusion_query_boolean */ -#ifndef GL_EXT_occlusion_query_boolean -#define GL_ANY_SAMPLES_PASSED_EXT 0x8C2F -#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT 0x8D6A -#define GL_CURRENT_QUERY_EXT 0x8865 -#define GL_QUERY_RESULT_EXT 0x8866 -#define GL_QUERY_RESULT_AVAILABLE_EXT 0x8867 -#endif - -/* GL_EXT_read_format_bgra */ -#ifndef GL_EXT_read_format_bgra -#define GL_BGRA_EXT 0x80E1 -#define GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT 0x8365 -#define GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT 0x8366 -#endif - -/* GL_EXT_robustness */ -#ifndef GL_EXT_robustness -/* reuse GL_NO_ERROR */ -#define GL_GUILTY_CONTEXT_RESET_EXT 0x8253 -#define GL_INNOCENT_CONTEXT_RESET_EXT 0x8254 -#define GL_UNKNOWN_CONTEXT_RESET_EXT 0x8255 -#define GL_CONTEXT_ROBUST_ACCESS_EXT 0x90F3 -#define GL_RESET_NOTIFICATION_STRATEGY_EXT 0x8256 -#define GL_LOSE_CONTEXT_ON_RESET_EXT 0x8252 -#define GL_NO_RESET_NOTIFICATION_EXT 0x8261 -#endif - -/* GL_EXT_separate_shader_objects */ -#ifndef GL_EXT_separate_shader_objects -#define GL_VERTEX_SHADER_BIT_EXT 0x00000001 -#define GL_FRAGMENT_SHADER_BIT_EXT 0x00000002 -#define GL_ALL_SHADER_BITS_EXT 0xFFFFFFFF -#define GL_PROGRAM_SEPARABLE_EXT 0x8258 -#define GL_ACTIVE_PROGRAM_EXT 0x8259 -#define GL_PROGRAM_PIPELINE_BINDING_EXT 0x825A -#endif - -/* GL_EXT_shader_framebuffer_fetch */ -#ifndef GL_EXT_shader_framebuffer_fetch -#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 -#endif - -/* GL_EXT_shader_texture_lod */ -/* No new tokens introduced by this extension. */ - -/* GL_EXT_shadow_samplers */ -#ifndef GL_EXT_shadow_samplers -#define GL_TEXTURE_COMPARE_MODE_EXT 0x884C -#define GL_TEXTURE_COMPARE_FUNC_EXT 0x884D -#define GL_COMPARE_REF_TO_TEXTURE_EXT 0x884E -#define GL_SAMPLER_2D_SHADOW_EXT 0x8B62 -#endif - -/* GL_EXT_sRGB */ -#ifndef GL_EXT_sRGB -#define GL_SRGB_EXT 0x8C40 -#define GL_SRGB_ALPHA_EXT 0x8C42 -#define GL_SRGB8_ALPHA8_EXT 0x8C43 -#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT 0x8210 -#endif - -/* GL_EXT_sRGB_write_control */ -#ifndef GL_EXT_sRGB_write_control -#define GL_EXT_sRGB_write_control 1 -#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 -#endif - -/* GL_EXT_texture_compression_dxt1 */ -#ifndef GL_EXT_texture_compression_dxt1 -#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 -#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 -#endif - -/* GL_EXT_texture_filter_anisotropic */ -#ifndef GL_EXT_texture_filter_anisotropic -#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE -#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF -#endif - -/* GL_EXT_texture_format_BGRA8888 */ -#ifndef GL_EXT_texture_format_BGRA8888 -#define GL_BGRA_EXT 0x80E1 -#endif - -/* GL_EXT_texture_rg */ -#ifndef GL_EXT_texture_rg -#define GL_RED_EXT 0x1903 -#define GL_RG_EXT 0x8227 -#define GL_R8_EXT 0x8229 -#define GL_RG8_EXT 0x822B -#endif - -/* GL_EXT_texture_sRGB_decode */ -#ifndef GL_EXT_texture_sRGB_decode -#define GL_EXT_texture_sRGB_decode 1 -#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 -#define GL_DECODE_EXT 0x8A49 -#define GL_SKIP_DECODE_EXT 0x8A4A -#endif - -/* GL_EXT_texture_storage */ -#ifndef GL_EXT_texture_storage -#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F -#define GL_ALPHA8_EXT 0x803C -#define GL_LUMINANCE8_EXT 0x8040 -#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 -#define GL_RGBA32F_EXT 0x8814 -#define GL_RGB32F_EXT 0x8815 -#define GL_ALPHA32F_EXT 0x8816 -#define GL_LUMINANCE32F_EXT 0x8818 -#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 -/* reuse GL_RGBA16F_EXT */ -/* reuse GL_RGB16F_EXT */ -#define GL_ALPHA16F_EXT 0x881C -#define GL_LUMINANCE16F_EXT 0x881E -#define GL_LUMINANCE_ALPHA16F_EXT 0x881F -#define GL_RGB10_A2_EXT 0x8059 -#define GL_RGB10_EXT 0x8052 -#define GL_BGRA8_EXT 0x93A1 -#define GL_R8_EXT 0x8229 -#define GL_RG8_EXT 0x822B -#define GL_R32F_EXT 0x822E -#define GL_RG32F_EXT 0x8230 -#define GL_R16F_EXT 0x822D -#define GL_RG16F_EXT 0x822F -#endif - -/* GL_EXT_texture_type_2_10_10_10_REV */ -#ifndef GL_EXT_texture_type_2_10_10_10_REV -#define GL_UNSIGNED_INT_2_10_10_10_REV_EXT 0x8368 -#endif - -/* GL_EXT_unpack_subimage */ -#ifndef GL_EXT_unpack_subimage -#define GL_UNPACK_ROW_LENGTH_EXT 0x0CF2 -#define GL_UNPACK_SKIP_ROWS_EXT 0x0CF3 -#define GL_UNPACK_SKIP_PIXELS_EXT 0x0CF4 -#endif - -/*------------------------------------------------------------------------* - * DMP extension tokens - *------------------------------------------------------------------------*/ - -/* GL_DMP_shader_binary */ -#ifndef GL_DMP_shader_binary -#define GL_SHADER_BINARY_DMP 0x9250 -#endif - -/*------------------------------------------------------------------------* - * FJ extension tokens - *------------------------------------------------------------------------*/ - -/* GL_FJ_shader_binary_GCCSO */ -#ifndef GL_FJ_shader_binary_GCCSO -#define GL_GCCSO_SHADER_BINARY_FJ 0x9260 -#endif - -/*------------------------------------------------------------------------* - * IMG extension tokens - *------------------------------------------------------------------------*/ - -/* GL_IMG_program_binary */ -#ifndef GL_IMG_program_binary -#define GL_SGX_PROGRAM_BINARY_IMG 0x9130 -#endif - -/* GL_IMG_read_format */ -#ifndef GL_IMG_read_format -#define GL_BGRA_IMG 0x80E1 -#define GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG 0x8365 -#endif - -/* GL_IMG_shader_binary */ -#ifndef GL_IMG_shader_binary -#define GL_SGX_BINARY_IMG 0x8C0A -#endif - -/* GL_IMG_texture_compression_pvrtc */ -#ifndef GL_IMG_texture_compression_pvrtc -#define GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG 0x8C00 -#define GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG 0x8C01 -#define GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG 0x8C02 -#define GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG 0x8C03 -#endif - -/* GL_IMG_texture_compression_pvrtc2 */ -#ifndef GL_IMG_texture_compression_pvrtc2 -#define GL_COMPRESSED_RGBA_PVRTC_2BPPV2_IMG 0x9137 -#define GL_COMPRESSED_RGBA_PVRTC_4BPPV2_IMG 0x9138 -#endif - -/* GL_IMG_multisampled_render_to_texture */ -#ifndef GL_IMG_multisampled_render_to_texture -#define GL_RENDERBUFFER_SAMPLES_IMG 0x9133 -#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG 0x9134 -#define GL_MAX_SAMPLES_IMG 0x9135 -#define GL_TEXTURE_SAMPLES_IMG 0x9136 -#endif - -/*------------------------------------------------------------------------* - * NV extension tokens - *------------------------------------------------------------------------*/ - -/* GL_NV_coverage_sample */ -#ifndef GL_NV_coverage_sample -#define GL_COVERAGE_COMPONENT_NV 0x8ED0 -#define GL_COVERAGE_COMPONENT4_NV 0x8ED1 -#define GL_COVERAGE_ATTACHMENT_NV 0x8ED2 -#define GL_COVERAGE_BUFFERS_NV 0x8ED3 -#define GL_COVERAGE_SAMPLES_NV 0x8ED4 -#define GL_COVERAGE_ALL_FRAGMENTS_NV 0x8ED5 -#define GL_COVERAGE_EDGE_FRAGMENTS_NV 0x8ED6 -#define GL_COVERAGE_AUTOMATIC_NV 0x8ED7 -#define GL_COVERAGE_BUFFER_BIT_NV 0x00008000 -#endif - -/* GL_NV_depth_nonlinear */ -#ifndef GL_NV_depth_nonlinear -#define GL_DEPTH_COMPONENT16_NONLINEAR_NV 0x8E2C -#endif - -/* GL_NV_draw_buffers */ -#ifndef GL_NV_draw_buffers -#define GL_MAX_DRAW_BUFFERS_NV 0x8824 -#define GL_DRAW_BUFFER0_NV 0x8825 -#define GL_DRAW_BUFFER1_NV 0x8826 -#define GL_DRAW_BUFFER2_NV 0x8827 -#define GL_DRAW_BUFFER3_NV 0x8828 -#define GL_DRAW_BUFFER4_NV 0x8829 -#define GL_DRAW_BUFFER5_NV 0x882A -#define GL_DRAW_BUFFER6_NV 0x882B -#define GL_DRAW_BUFFER7_NV 0x882C -#define GL_DRAW_BUFFER8_NV 0x882D -#define GL_DRAW_BUFFER9_NV 0x882E -#define GL_DRAW_BUFFER10_NV 0x882F -#define GL_DRAW_BUFFER11_NV 0x8830 -#define GL_DRAW_BUFFER12_NV 0x8831 -#define GL_DRAW_BUFFER13_NV 0x8832 -#define GL_DRAW_BUFFER14_NV 0x8833 -#define GL_DRAW_BUFFER15_NV 0x8834 -#define GL_COLOR_ATTACHMENT0_NV 0x8CE0 -#define GL_COLOR_ATTACHMENT1_NV 0x8CE1 -#define GL_COLOR_ATTACHMENT2_NV 0x8CE2 -#define GL_COLOR_ATTACHMENT3_NV 0x8CE3 -#define GL_COLOR_ATTACHMENT4_NV 0x8CE4 -#define GL_COLOR_ATTACHMENT5_NV 0x8CE5 -#define GL_COLOR_ATTACHMENT6_NV 0x8CE6 -#define GL_COLOR_ATTACHMENT7_NV 0x8CE7 -#define GL_COLOR_ATTACHMENT8_NV 0x8CE8 -#define GL_COLOR_ATTACHMENT9_NV 0x8CE9 -#define GL_COLOR_ATTACHMENT10_NV 0x8CEA -#define GL_COLOR_ATTACHMENT11_NV 0x8CEB -#define GL_COLOR_ATTACHMENT12_NV 0x8CEC -#define GL_COLOR_ATTACHMENT13_NV 0x8CED -#define GL_COLOR_ATTACHMENT14_NV 0x8CEE -#define GL_COLOR_ATTACHMENT15_NV 0x8CEF -#endif - -/* GL_NV_draw_instanced */ -/* No new tokens introduced by this extension. */ - -/* GL_NV_fbo_color_attachments */ -#ifndef GL_NV_fbo_color_attachments -#define GL_MAX_COLOR_ATTACHMENTS_NV 0x8CDF -/* GL_COLOR_ATTACHMENT{0-15}_NV defined in GL_NV_draw_buffers already. */ -#endif - -/* GL_NV_fence */ -#ifndef GL_NV_fence -#define GL_ALL_COMPLETED_NV 0x84F2 -#define GL_FENCE_STATUS_NV 0x84F3 -#define GL_FENCE_CONDITION_NV 0x84F4 -#endif - -/* GL_NV_framebuffer_blit */ -#ifndef GL_NV_framebuffer_blit -#define GL_READ_FRAMEBUFFER_NV 0x8CA8 -#define GL_DRAW_FRAMEBUFFER_NV 0x8CA9 -#define GL_DRAW_FRAMEBUFFER_BINDING_NV 0x8CA6 -#define GL_READ_FRAMEBUFFER_BINDING_NV 0x8CAA -#endif - -/* GL_NV_framebuffer_multisample */ -#ifndef GL_NV_framebuffer_multisample -#define GL_RENDERBUFFER_SAMPLES_NV 0x8CAB -#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV 0x8D56 -#define GL_MAX_SAMPLES_NV 0x8D57 -#endif - -/* GL_NV_generate_mipmap_sRGB */ -/* No new tokens introduced by this extension. */ - -/* GL_NV_instanced_arrays */ -#ifndef GL_NV_instanced_arrays -#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV 0x88FE -#endif - -/* GL_NV_read_buffer */ -#ifndef GL_NV_read_buffer -#define GL_READ_BUFFER_NV 0x0C02 -#endif - -/* GL_NV_read_buffer_front */ -/* No new tokens introduced by this extension. */ - -/* GL_NV_read_depth */ -/* No new tokens introduced by this extension. */ - -/* GL_NV_read_depth_stencil */ -/* No new tokens introduced by this extension. */ - -/* GL_NV_read_stencil */ -/* No new tokens introduced by this extension. */ - -/* GL_NV_shadow_samplers_array */ -#ifndef GL_NV_shadow_samplers_array -#define GL_SAMPLER_2D_ARRAY_SHADOW_NV 0x8DC4 -#endif - -/* GL_NV_shadow_samplers_cube */ -#ifndef GL_NV_shadow_samplers_cube -#define GL_SAMPLER_CUBE_SHADOW_NV 0x8DC5 -#endif - -/* GL_NV_sRGB_formats */ -#ifndef GL_NV_sRGB_formats -#define GL_SLUMINANCE_NV 0x8C46 -#define GL_SLUMINANCE_ALPHA_NV 0x8C44 -#define GL_SRGB8_NV 0x8C41 -#define GL_SLUMINANCE8_NV 0x8C47 -#define GL_SLUMINANCE8_ALPHA8_NV 0x8C45 -#define GL_COMPRESSED_SRGB_S3TC_DXT1_NV 0x8C4C -#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV 0x8C4D -#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV 0x8C4E -#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV 0x8C4F -#define GL_ETC1_SRGB8_NV 0x88EE -#endif - -/* GL_NV_texture_border_clamp */ -#ifndef GL_NV_texture_border_clamp -#define GL_TEXTURE_BORDER_COLOR_NV 0x1004 -#define GL_CLAMP_TO_BORDER_NV 0x812D -#endif - -/* GL_NV_texture_compression_s3tc_update */ -/* No new tokens introduced by this extension. */ - -/* GL_NV_texture_npot_2D_mipmap */ -/* No new tokens introduced by this extension. */ - -/*------------------------------------------------------------------------* - * QCOM extension tokens - *------------------------------------------------------------------------*/ - -/* GL_QCOM_alpha_test */ -#ifndef GL_QCOM_alpha_test -#define GL_ALPHA_TEST_QCOM 0x0BC0 -#define GL_ALPHA_TEST_FUNC_QCOM 0x0BC1 -#define GL_ALPHA_TEST_REF_QCOM 0x0BC2 -#endif - -/* GL_QCOM_binning_control */ -#ifndef GL_QCOM_binning_control -#define GL_BINNING_CONTROL_HINT_QCOM 0x8FB0 -#define GL_CPU_OPTIMIZED_QCOM 0x8FB1 -#define GL_GPU_OPTIMIZED_QCOM 0x8FB2 -#define GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM 0x8FB3 -#endif - -/* GL_QCOM_driver_control */ -/* No new tokens introduced by this extension. */ - -/* GL_QCOM_extended_get */ -#ifndef GL_QCOM_extended_get -#define GL_TEXTURE_WIDTH_QCOM 0x8BD2 -#define GL_TEXTURE_HEIGHT_QCOM 0x8BD3 -#define GL_TEXTURE_DEPTH_QCOM 0x8BD4 -#define GL_TEXTURE_INTERNAL_FORMAT_QCOM 0x8BD5 -#define GL_TEXTURE_FORMAT_QCOM 0x8BD6 -#define GL_TEXTURE_TYPE_QCOM 0x8BD7 -#define GL_TEXTURE_IMAGE_VALID_QCOM 0x8BD8 -#define GL_TEXTURE_NUM_LEVELS_QCOM 0x8BD9 -#define GL_TEXTURE_TARGET_QCOM 0x8BDA -#define GL_TEXTURE_OBJECT_VALID_QCOM 0x8BDB -#define GL_STATE_RESTORE 0x8BDC -#endif - -/* GL_QCOM_extended_get2 */ -/* No new tokens introduced by this extension. */ - -/* GL_QCOM_perfmon_global_mode */ -#ifndef GL_QCOM_perfmon_global_mode -#define GL_PERFMON_GLOBAL_MODE_QCOM 0x8FA0 -#endif - -/* GL_QCOM_writeonly_rendering */ -#ifndef GL_QCOM_writeonly_rendering -#define GL_WRITEONLY_RENDERING_QCOM 0x8823 -#endif - -/* GL_QCOM_tiled_rendering */ -#ifndef GL_QCOM_tiled_rendering -#define GL_COLOR_BUFFER_BIT0_QCOM 0x00000001 -#define GL_COLOR_BUFFER_BIT1_QCOM 0x00000002 -#define GL_COLOR_BUFFER_BIT2_QCOM 0x00000004 -#define GL_COLOR_BUFFER_BIT3_QCOM 0x00000008 -#define GL_COLOR_BUFFER_BIT4_QCOM 0x00000010 -#define GL_COLOR_BUFFER_BIT5_QCOM 0x00000020 -#define GL_COLOR_BUFFER_BIT6_QCOM 0x00000040 -#define GL_COLOR_BUFFER_BIT7_QCOM 0x00000080 -#define GL_DEPTH_BUFFER_BIT0_QCOM 0x00000100 -#define GL_DEPTH_BUFFER_BIT1_QCOM 0x00000200 -#define GL_DEPTH_BUFFER_BIT2_QCOM 0x00000400 -#define GL_DEPTH_BUFFER_BIT3_QCOM 0x00000800 -#define GL_DEPTH_BUFFER_BIT4_QCOM 0x00001000 -#define GL_DEPTH_BUFFER_BIT5_QCOM 0x00002000 -#define GL_DEPTH_BUFFER_BIT6_QCOM 0x00004000 -#define GL_DEPTH_BUFFER_BIT7_QCOM 0x00008000 -#define GL_STENCIL_BUFFER_BIT0_QCOM 0x00010000 -#define GL_STENCIL_BUFFER_BIT1_QCOM 0x00020000 -#define GL_STENCIL_BUFFER_BIT2_QCOM 0x00040000 -#define GL_STENCIL_BUFFER_BIT3_QCOM 0x00080000 -#define GL_STENCIL_BUFFER_BIT4_QCOM 0x00100000 -#define GL_STENCIL_BUFFER_BIT5_QCOM 0x00200000 -#define GL_STENCIL_BUFFER_BIT6_QCOM 0x00400000 -#define GL_STENCIL_BUFFER_BIT7_QCOM 0x00800000 -#define GL_MULTISAMPLE_BUFFER_BIT0_QCOM 0x01000000 -#define GL_MULTISAMPLE_BUFFER_BIT1_QCOM 0x02000000 -#define GL_MULTISAMPLE_BUFFER_BIT2_QCOM 0x04000000 -#define GL_MULTISAMPLE_BUFFER_BIT3_QCOM 0x08000000 -#define GL_MULTISAMPLE_BUFFER_BIT4_QCOM 0x10000000 -#define GL_MULTISAMPLE_BUFFER_BIT5_QCOM 0x20000000 -#define GL_MULTISAMPLE_BUFFER_BIT6_QCOM 0x40000000 -#define GL_MULTISAMPLE_BUFFER_BIT7_QCOM 0x80000000 -#endif - -/*------------------------------------------------------------------------* - * VIV extension tokens - *------------------------------------------------------------------------*/ - -/* GL_VIV_shader_binary */ -#ifndef GL_VIV_shader_binary -#define GL_SHADER_BINARY_VIV 0x8FC4 -#endif - -/*------------------------------------------------------------------------* - * End of extension tokens, start of corresponding extension functions - *------------------------------------------------------------------------*/ - -/*------------------------------------------------------------------------* - * OES extension functions - *------------------------------------------------------------------------*/ - -/* GL_OES_compressed_ETC1_RGB8_texture */ -#ifndef GL_OES_compressed_ETC1_RGB8_texture -#define GL_OES_compressed_ETC1_RGB8_texture 1 -#endif - -/* GL_OES_compressed_paletted_texture */ -#ifndef GL_OES_compressed_paletted_texture -#define GL_OES_compressed_paletted_texture 1 -#endif - -/* GL_OES_depth24 */ -#ifndef GL_OES_depth24 -#define GL_OES_depth24 1 -#endif - -/* GL_OES_depth32 */ -#ifndef GL_OES_depth32 -#define GL_OES_depth32 1 -#endif - -/* GL_OES_depth_texture */ -#ifndef GL_OES_depth_texture -#define GL_OES_depth_texture 1 -#endif - -/* GL_OES_EGL_image */ -#ifndef GL_OES_EGL_image -#define GL_OES_EGL_image 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); -GL_APICALL void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); -#endif -typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); -typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image); -#endif - -/* GL_OES_EGL_image_external */ -#ifndef GL_OES_EGL_image_external -#define GL_OES_EGL_image_external 1 -/* glEGLImageTargetTexture2DOES defined in GL_OES_EGL_image already. */ -#endif - -/* GL_OES_element_index_uint */ -#ifndef GL_OES_element_index_uint -#define GL_OES_element_index_uint 1 -#endif - -/* GL_OES_fbo_render_mipmap */ -#ifndef GL_OES_fbo_render_mipmap -#define GL_OES_fbo_render_mipmap 1 -#endif - -/* GL_OES_fragment_precision_high */ -#ifndef GL_OES_fragment_precision_high -#define GL_OES_fragment_precision_high 1 -#endif - -/* GL_OES_get_program_binary */ -#ifndef GL_OES_get_program_binary -#define GL_OES_get_program_binary 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); -GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length); -#endif -typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); -typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const GLvoid *binary, GLint length); -#endif - -/* GL_OES_mapbuffer */ -#ifndef GL_OES_mapbuffer -#define GL_OES_mapbuffer 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void* GL_APIENTRY glMapBufferOES (GLenum target, GLenum access); -GL_APICALL GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target); -GL_APICALL void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, GLvoid **params); -#endif -typedef void* (GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access); -typedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target); -typedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, GLvoid **params); -#endif - -/* GL_OES_packed_depth_stencil */ -#ifndef GL_OES_packed_depth_stencil -#define GL_OES_packed_depth_stencil 1 -#endif - -/* GL_OES_required_internalformat */ -#ifndef GL_OES_required_internalformat -#define GL_OES_required_internalformat 1 -#endif - -/* GL_OES_rgb8_rgba8 */ -#ifndef GL_OES_rgb8_rgba8 -#define GL_OES_rgb8_rgba8 1 -#endif - -/* GL_OES_standard_derivatives */ -#ifndef GL_OES_standard_derivatives -#define GL_OES_standard_derivatives 1 -#endif - -/* GL_OES_stencil1 */ -#ifndef GL_OES_stencil1 -#define GL_OES_stencil1 1 -#endif - -/* GL_OES_stencil4 */ -#ifndef GL_OES_stencil4 -#define GL_OES_stencil4 1 -#endif - -#ifndef GL_OES_surfaceless_context -#define GL_OES_surfaceless_context 1 -#endif - -/* GL_OES_texture_3D */ -#ifndef GL_OES_texture_3D -#define GL_OES_texture_3D 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); -GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels); -GL_APICALL void GL_APIENTRY glCopyTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); -GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data); -GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data); -GL_APICALL void GL_APIENTRY glFramebufferTexture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); -#endif -typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const GLvoid* pixels); -typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const GLvoid* pixels); -typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); -typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid* data); -typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const GLvoid* data); -typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); -#endif - -/* GL_OES_texture_float */ -#ifndef GL_OES_texture_float -#define GL_OES_texture_float 1 -#endif - -/* GL_OES_texture_float_linear */ -#ifndef GL_OES_texture_float_linear -#define GL_OES_texture_float_linear 1 -#endif - -/* GL_OES_texture_half_float */ -#ifndef GL_OES_texture_half_float -#define GL_OES_texture_half_float 1 -#endif - -/* GL_OES_texture_half_float_linear */ -#ifndef GL_OES_texture_half_float_linear -#define GL_OES_texture_half_float_linear 1 -#endif - -/* GL_OES_texture_npot */ -#ifndef GL_OES_texture_npot -#define GL_OES_texture_npot 1 -#endif - -/* GL_OES_vertex_array_object */ -#ifndef GL_OES_vertex_array_object -#define GL_OES_vertex_array_object 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glBindVertexArrayOES (GLuint array); -GL_APICALL void GL_APIENTRY glDeleteVertexArraysOES (GLsizei n, const GLuint *arrays); -GL_APICALL void GL_APIENTRY glGenVertexArraysOES (GLsizei n, GLuint *arrays); -GL_APICALL GLboolean GL_APIENTRY glIsVertexArrayOES (GLuint array); -#endif -typedef void (GL_APIENTRYP PFNGLBINDVERTEXARRAYOESPROC) (GLuint array); -typedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSOESPROC) (GLsizei n, const GLuint *arrays); -typedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSOESPROC) (GLsizei n, GLuint *arrays); -typedef GLboolean (GL_APIENTRYP PFNGLISVERTEXARRAYOESPROC) (GLuint array); -#endif - -/* GL_OES_vertex_half_float */ -#ifndef GL_OES_vertex_half_float -#define GL_OES_vertex_half_float 1 -#endif - -/* GL_OES_vertex_type_10_10_10_2 */ -#ifndef GL_OES_vertex_type_10_10_10_2 -#define GL_OES_vertex_type_10_10_10_2 1 -#endif - -/*------------------------------------------------------------------------* - * KHR extension functions - *------------------------------------------------------------------------*/ - -#ifndef GL_KHR_debug -#define GL_KHR_debug 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glDebugMessageControlKHR (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); -GL_APICALL void GL_APIENTRY glDebugMessageInsertKHR (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); -GL_APICALL void GL_APIENTRY glDebugMessageCallbackKHR (GLDEBUGPROCKHR callback, const void *userParam); -GL_APICALL GLuint GL_APIENTRY glGetDebugMessageLogKHR (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); -GL_APICALL void GL_APIENTRY glPushDebugGroupKHR (GLenum source, GLuint id, GLsizei length, const GLchar *message); -GL_APICALL void GL_APIENTRY glPopDebugGroupKHR (void); -GL_APICALL void GL_APIENTRY glObjectLabelKHR (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); -GL_APICALL void GL_APIENTRY glGetObjectLabelKHR (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); -GL_APICALL void GL_APIENTRY glObjectPtrLabelKHR (const void *ptr, GLsizei length, const GLchar *label); -GL_APICALL void GL_APIENTRY glGetObjectPtrLabelKHR (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); -GL_APICALL void GL_APIENTRY glGetPointervKHR (GLenum pname, GLvoid **params); -#endif -typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECONTROLKHRPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); -typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGEINSERTKHRPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); -typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECALLBACKKHRPROC) (GLDEBUGPROCKHR callback, const void *userParam); -typedef GLuint (GL_APIENTRYP PFNGLGETDEBUGMESSAGELOGKHRPROC) (GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); -typedef void (GL_APIENTRYP PFNGLPUSHDEBUGGROUPKHRPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); -typedef void (GL_APIENTRYP PFNGLPOPDEBUGGROUPKHRPROC) (void); -typedef void (GL_APIENTRYP PFNGLOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); -typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); -typedef void (GL_APIENTRYP PFNGLOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei length, const GLchar *label); -typedef void (GL_APIENTRYP PFNGLGETOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); -typedef void (GL_APIENTRYP PFNGLGETPOINTERVKHRPROC) (GLenum pname, GLvoid **params); -#endif - -#ifndef GL_KHR_texture_compression_astc_ldr -#define GL_KHR_texture_compression_astc_ldr 1 -#endif - - -/*------------------------------------------------------------------------* - * AMD extension functions - *------------------------------------------------------------------------*/ - -/* GL_AMD_compressed_3DC_texture */ -#ifndef GL_AMD_compressed_3DC_texture -#define GL_AMD_compressed_3DC_texture 1 -#endif - -/* GL_AMD_compressed_ATC_texture */ -#ifndef GL_AMD_compressed_ATC_texture -#define GL_AMD_compressed_ATC_texture 1 -#endif - -/* AMD_performance_monitor */ -#ifndef GL_AMD_performance_monitor -#define GL_AMD_performance_monitor 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); -GL_APICALL void GL_APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); -GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); -GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); -GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, GLvoid *data); -GL_APICALL void GL_APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); -GL_APICALL void GL_APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); -GL_APICALL void GL_APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *countersList); -GL_APICALL void GL_APIENTRY glBeginPerfMonitorAMD (GLuint monitor); -GL_APICALL void GL_APIENTRY glEndPerfMonitorAMD (GLuint monitor); -GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); -#endif -typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); -typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); -typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); -typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); -typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, GLvoid *data); -typedef void (GL_APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); -typedef void (GL_APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); -typedef void (GL_APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *countersList); -typedef void (GL_APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); -typedef void (GL_APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); -typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); -#endif - -/* GL_AMD_program_binary_Z400 */ -#ifndef GL_AMD_program_binary_Z400 -#define GL_AMD_program_binary_Z400 1 -#endif - -/*------------------------------------------------------------------------* - * ANGLE extension functions - *------------------------------------------------------------------------*/ - -/* GL_ANGLE_depth_texture */ -#ifndef GL_ANGLE_depth_texture -#define GL_ANGLE_depth_texture 1 -#endif - -/* GL_ANGLE_framebuffer_blit */ -#ifndef GL_ANGLE_framebuffer_blit -#define GL_ANGLE_framebuffer_blit 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); -#endif -typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); -#endif - -/* GL_ANGLE_framebuffer_multisample */ -#ifndef GL_ANGLE_framebuffer_multisample -#define GL_ANGLE_framebuffer_multisample 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleANGLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -#endif -typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -#endif - -#ifndef GL_ANGLE_instanced_arrays -#define GL_ANGLE_instanced_arrays 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenum mode, GLint first, GLsizei count, GLsizei primcount); -GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); -GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GLuint divisor); -#endif -typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDANGLEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); -typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDANGLEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); -typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORANGLEPROC) (GLuint index, GLuint divisor); -#endif - -/* GL_ANGLE_pack_reverse_row_order */ -#ifndef GL_ANGLE_pack_reverse_row_order -#define GL_ANGLE_pack_reverse_row_order 1 -#endif - -/* GL_ANGLE_program_binary */ -#ifndef GL_ANGLE_program_binary -#define GL_ANGLE_program_binary 1 -#endif - -/* GL_ANGLE_texture_compression_dxt3 */ -#ifndef GL_ANGLE_texture_compression_dxt3 -#define GL_ANGLE_texture_compression_dxt3 1 -#endif - -/* GL_ANGLE_texture_compression_dxt5 */ -#ifndef GL_ANGLE_texture_compression_dxt5 -#define GL_ANGLE_texture_compression_dxt5 1 -#endif - -/* GL_ANGLE_texture_usage */ -#ifndef GL_ANGLE_texture_usage -#define GL_ANGLE_texture_usage 1 -#endif - -#ifndef GL_ANGLE_translated_shader_source -#define GL_ANGLE_translated_shader_source 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glGetTranslatedShaderSourceANGLE (GLuint shader, GLsizei bufsize, GLsizei *length, GLchar *source); -#endif -typedef void (GL_APIENTRYP PFNGLGETTRANSLATEDSHADERSOURCEANGLEPROC) (GLuint shader, GLsizei bufsize, GLsizei *length, GLchar *source); -#endif - -/*------------------------------------------------------------------------* - * APPLE extension functions - *------------------------------------------------------------------------*/ - -/* GL_APPLE_copy_texture_levels */ -#ifndef GL_APPLE_copy_texture_levels -#define GL_APPLE_copy_texture_levels 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glCopyTextureLevelsAPPLE (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); -#endif -typedef void (GL_APIENTRYP PFNGLCOPYTEXTURELEVELSAPPLEPROC) (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); -#endif - -/* GL_APPLE_framebuffer_multisample */ -#ifndef GL_APPLE_framebuffer_multisample -#define GL_APPLE_framebuffer_multisample 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAPPLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -GL_APICALL void GL_APIENTRY glResolveMultisampleFramebufferAPPLE (void); -#endif /* GL_GLEXT_PROTOTYPES */ -typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -typedef void (GL_APIENTRYP PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC) (void); -#endif - -/* GL_APPLE_rgb_422 */ -#ifndef GL_APPLE_rgb_422 -#define GL_APPLE_rgb_422 1 -#endif - -/* GL_APPLE_sync */ -#ifndef GL_APPLE_sync -#define GL_APPLE_sync 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL GLsync GL_APIENTRY glFenceSyncAPPLE (GLenum condition, GLbitfield flags); -GL_APICALL GLboolean GL_APIENTRY glIsSyncAPPLE (GLsync sync); -GL_APICALL void GL_APIENTRY glDeleteSyncAPPLE (GLsync sync); -GL_APICALL GLenum GL_APIENTRY glClientWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); -GL_APICALL void GL_APIENTRY glWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); -GL_APICALL void GL_APIENTRY glGetInteger64vAPPLE (GLenum pname, GLint64 *params); -GL_APICALL void GL_APIENTRY glGetSyncivAPPLE (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); -#endif -typedef GLsync (GL_APIENTRYP PFNGLFENCESYNCAPPLEPROC) (GLenum condition, GLbitfield flags); -typedef GLboolean (GL_APIENTRYP PFNGLISSYNCAPPLEPROC) (GLsync sync); -typedef void (GL_APIENTRYP PFNGLDELETESYNCAPPLEPROC) (GLsync sync); -typedef GLenum (GL_APIENTRYP PFNGLCLIENTWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); -typedef void (GL_APIENTRYP PFNGLWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); -typedef void (GL_APIENTRYP PFNGLGETINTEGER64VAPPLEPROC) (GLenum pname, GLint64 *params); -typedef void (GL_APIENTRYP PFNGLGETSYNCIVAPPLEPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); -#endif - -/* GL_APPLE_texture_format_BGRA8888 */ -#ifndef GL_APPLE_texture_format_BGRA8888 -#define GL_APPLE_texture_format_BGRA8888 1 -#endif - -/* GL_APPLE_texture_max_level */ -#ifndef GL_APPLE_texture_max_level -#define GL_APPLE_texture_max_level 1 -#endif - -/*------------------------------------------------------------------------* - * ARM extension functions - *------------------------------------------------------------------------*/ - -/* GL_ARM_mali_program_binary */ -#ifndef GL_ARM_mali_program_binary -#define GL_ARM_mali_program_binary 1 -#endif - -/* GL_ARM_mali_shader_binary */ -#ifndef GL_ARM_mali_shader_binary -#define GL_ARM_mali_shader_binary 1 -#endif - -/* GL_ARM_rgba8 */ -#ifndef GL_ARM_rgba8 -#define GL_ARM_rgba8 1 -#endif - -/*------------------------------------------------------------------------* - * EXT extension functions - *------------------------------------------------------------------------*/ - -/* GL_EXT_blend_minmax */ -#ifndef GL_EXT_blend_minmax -#define GL_EXT_blend_minmax 1 -#endif - -/* GL_EXT_color_buffer_half_float */ -#ifndef GL_EXT_color_buffer_half_float -#define GL_EXT_color_buffer_half_float 1 -#endif - -/* GL_EXT_debug_label */ -#ifndef GL_EXT_debug_label -#define GL_EXT_debug_label 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); -GL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); -#endif -typedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); -typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); -#endif - -/* GL_EXT_debug_marker */ -#ifndef GL_EXT_debug_marker -#define GL_EXT_debug_marker 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); -GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); -GL_APICALL void GL_APIENTRY glPopGroupMarkerEXT (void); -#endif -typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); -typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); -typedef void (GL_APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); -#endif - -/* GL_EXT_discard_framebuffer */ -#ifndef GL_EXT_discard_framebuffer -#define GL_EXT_discard_framebuffer 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments); -#endif -typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); -#endif - -#ifndef GL_EXT_disjoint_timer_query -#define GL_EXT_disjoint_timer_query 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glGenQueriesEXT (GLsizei n, GLuint *ids); -GL_APICALL void GL_APIENTRY glDeleteQueriesEXT (GLsizei n, const GLuint *ids); -GL_APICALL GLboolean GL_APIENTRY glIsQueryEXT (GLuint id); -GL_APICALL void GL_APIENTRY glBeginQueryEXT (GLenum target, GLuint id); -GL_APICALL void GL_APIENTRY glEndQueryEXT (GLenum target); -GL_APICALL void GL_APIENTRY glQueryCounterEXT (GLuint id, GLenum target); -GL_APICALL void GL_APIENTRY glGetQueryivEXT (GLenum target, GLenum pname, GLint *params); -GL_APICALL void GL_APIENTRY glGetQueryObjectivEXT (GLuint id, GLenum pname, GLint *params); -GL_APICALL void GL_APIENTRY glGetQueryObjectuivEXT (GLuint id, GLenum pname, GLuint *params); -GL_APICALL void GL_APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); -GL_APICALL void GL_APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); -#endif -typedef void (GL_APIENTRYP PFNGLGENQUERIESEXTPROC) (GLsizei n, GLuint *ids); -typedef void (GL_APIENTRYP PFNGLDELETEQUERIESEXTPROC) (GLsizei n, const GLuint *ids); -typedef GLboolean (GL_APIENTRYP PFNGLISQUERYEXTPROC) (GLuint id); -typedef void (GL_APIENTRYP PFNGLBEGINQUERYEXTPROC) (GLenum target, GLuint id); -typedef void (GL_APIENTRYP PFNGLENDQUERYEXTPROC) (GLenum target); -typedef void (GL_APIENTRYP PFNGLQUERYCOUNTEREXTPROC) (GLuint id, GLenum target); -typedef void (GL_APIENTRYP PFNGLGETQUERYIVEXTPROC) (GLenum target, GLenum pname, GLint *params); -typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTIVEXTPROC) (GLuint id, GLenum pname, GLint *params); -typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUIVEXTPROC) (GLuint id, GLenum pname, GLuint *params); -typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); -typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); -#endif /* GL_EXT_disjoint_timer_query */ - -#ifndef GL_EXT_draw_buffers -#define GL_EXT_draw_buffers 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glDrawBuffersEXT (GLsizei n, const GLenum *bufs); -#endif -typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSEXTPROC) (GLsizei n, const GLenum *bufs); -#endif /* GL_EXT_draw_buffers */ - -/* GL_EXT_map_buffer_range */ -#ifndef GL_EXT_map_buffer_range -#define GL_EXT_map_buffer_range 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void* GL_APIENTRY glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); -GL_APICALL void GL_APIENTRY glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length); -#endif -typedef void* (GL_APIENTRYP PFNGLMAPBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); -typedef void (GL_APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length); -#endif - -/* GL_EXT_multisampled_render_to_texture */ -#ifndef GL_EXT_multisampled_render_to_texture -#define GL_EXT_multisampled_render_to_texture 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); -#endif -typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); -#endif - -/* GL_EXT_multiview_draw_buffers */ -#ifndef GL_EXT_multiview_draw_buffers -#define GL_EXT_multiview_draw_buffers 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glReadBufferIndexedEXT (GLenum src, GLint index); -GL_APICALL void GL_APIENTRY glDrawBuffersIndexedEXT (GLint n, const GLenum *location, const GLint *indices); -GL_APICALL void GL_APIENTRY glGetIntegeri_vEXT (GLenum target, GLuint index, GLint *data); -#endif -typedef void (GL_APIENTRYP PFNGLREADBUFFERINDEXEDEXTPROC) (GLenum src, GLint index); -typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum *location, const GLint *indices); -typedef void (GL_APIENTRYP PFNGLGETINTEGERI_VEXTPROC) (GLenum target, GLuint index, GLint *data); -#endif - -#ifndef GL_EXT_multi_draw_arrays -#define GL_EXT_multi_draw_arrays 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); -GL_APICALL void GL_APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount); -#endif /* GL_GLEXT_PROTOTYPES */ -typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); -typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount); -#endif - -/* GL_EXT_occlusion_query_boolean */ -#ifndef GL_EXT_occlusion_query_boolean -#define GL_EXT_occlusion_query_boolean 1 -/* All entry points also exist in GL_EXT_disjoint_timer_query */ -#endif - -/* GL_EXT_read_format_bgra */ -#ifndef GL_EXT_read_format_bgra -#define GL_EXT_read_format_bgra 1 -#endif - -/* GL_EXT_robustness */ -#ifndef GL_EXT_robustness -#define GL_EXT_robustness 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusEXT (void); -GL_APICALL void GL_APIENTRY glReadnPixelsEXT (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data); -GL_APICALL void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); -GL_APICALL void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params); -#endif -typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSEXTPROC) (void); -typedef void (GL_APIENTRYP PFNGLREADNPIXELSEXTPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data); -typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); -typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); -#endif - -/* GL_EXT_separate_shader_objects */ -#ifndef GL_EXT_separate_shader_objects -#define GL_EXT_separate_shader_objects 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glUseProgramStagesEXT (GLuint pipeline, GLbitfield stages, GLuint program); -GL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program); -GL_APICALL GLuint GL_APIENTRY glCreateShaderProgramvEXT (GLenum type, GLsizei count, const GLchar **strings); -GL_APICALL void GL_APIENTRY glBindProgramPipelineEXT (GLuint pipeline); -GL_APICALL void GL_APIENTRY glDeleteProgramPipelinesEXT (GLsizei n, const GLuint *pipelines); -GL_APICALL void GL_APIENTRY glGenProgramPipelinesEXT (GLsizei n, GLuint *pipelines); -GL_APICALL GLboolean GL_APIENTRY glIsProgramPipelineEXT (GLuint pipeline); -GL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); -GL_APICALL void GL_APIENTRY glGetProgramPipelineivEXT (GLuint pipeline, GLenum pname, GLint *params); -GL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint x); -GL_APICALL void GL_APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint x, GLint y); -GL_APICALL void GL_APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint x, GLint y, GLint z); -GL_APICALL void GL_APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint x, GLint y, GLint z, GLint w); -GL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat x); -GL_APICALL void GL_APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat x, GLfloat y); -GL_APICALL void GL_APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z); -GL_APICALL void GL_APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w); -GL_APICALL void GL_APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); -GL_APICALL void GL_APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); -GL_APICALL void GL_APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); -GL_APICALL void GL_APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); -GL_APICALL void GL_APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); -GL_APICALL void GL_APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); -GL_APICALL void GL_APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); -GL_APICALL void GL_APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); -GL_APICALL void GL_APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); -GL_APICALL void GL_APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); -GL_APICALL void GL_APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); -GL_APICALL void GL_APIENTRY glValidateProgramPipelineEXT (GLuint pipeline); -GL_APICALL void GL_APIENTRY glGetProgramPipelineInfoLogEXT (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); -#endif -typedef void (GL_APIENTRYP PFNGLUSEPROGRAMSTAGESEXTPROC) (GLuint pipeline, GLbitfield stages, GLuint program); -typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program); -typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROGRAMVEXTPROC) (GLenum type, GLsizei count, const GLchar **strings); -typedef void (GL_APIENTRYP PFNGLBINDPROGRAMPIPELINEEXTPROC) (GLuint pipeline); -typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPIPELINESEXTPROC) (GLsizei n, const GLuint *pipelines); -typedef void (GL_APIENTRYP PFNGLGENPROGRAMPIPELINESEXTPROC) (GLsizei n, GLuint *pipelines); -typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPIPELINEEXTPROC) (GLuint pipeline); -typedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); -typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEIVEXTPROC) (GLuint pipeline, GLenum pname, GLint *params); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint x); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint x, GLint y); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint x, GLint y, GLint z); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint x, GLint y, GLint z, GLint w); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat x); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat x, GLfloat y); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat x, GLfloat y, GLfloat z, GLfloat w); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); -typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); -typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEEXTPROC) (GLuint pipeline); -typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGEXTPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); -#endif - -/* GL_EXT_shader_framebuffer_fetch */ -#ifndef GL_EXT_shader_framebuffer_fetch -#define GL_EXT_shader_framebuffer_fetch 1 -#endif - -/* GL_EXT_shader_texture_lod */ -#ifndef GL_EXT_shader_texture_lod -#define GL_EXT_shader_texture_lod 1 -#endif - -/* GL_EXT_shadow_samplers */ -#ifndef GL_EXT_shadow_samplers -#define GL_EXT_shadow_samplers 1 -#endif - -/* GL_EXT_sRGB */ -#ifndef GL_EXT_sRGB -#define GL_EXT_sRGB 1 -#endif - -/* GL_EXT_texture_compression_dxt1 */ -#ifndef GL_EXT_texture_compression_dxt1 -#define GL_EXT_texture_compression_dxt1 1 -#endif - -/* GL_EXT_texture_filter_anisotropic */ -#ifndef GL_EXT_texture_filter_anisotropic -#define GL_EXT_texture_filter_anisotropic 1 -#endif - -/* GL_EXT_texture_format_BGRA8888 */ -#ifndef GL_EXT_texture_format_BGRA8888 -#define GL_EXT_texture_format_BGRA8888 1 -#endif - -/* GL_EXT_texture_rg */ -#ifndef GL_EXT_texture_rg -#define GL_EXT_texture_rg 1 -#endif - -/* GL_EXT_texture_storage */ -#ifndef GL_EXT_texture_storage -#define GL_EXT_texture_storage 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); -GL_APICALL void GL_APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); -GL_APICALL void GL_APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); -GL_APICALL void GL_APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); -GL_APICALL void GL_APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); -GL_APICALL void GL_APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); -#endif -typedef void (GL_APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); -typedef void (GL_APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); -typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); -typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); -typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); -typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); -#endif - -/* GL_EXT_texture_type_2_10_10_10_REV */ -#ifndef GL_EXT_texture_type_2_10_10_10_REV -#define GL_EXT_texture_type_2_10_10_10_REV 1 -#endif - -/* GL_EXT_unpack_subimage */ -#ifndef GL_EXT_unpack_subimage -#define GL_EXT_unpack_subimage 1 -#endif - -/*------------------------------------------------------------------------* - * DMP extension functions - *------------------------------------------------------------------------*/ - -/* GL_DMP_shader_binary */ -#ifndef GL_DMP_shader_binary -#define GL_DMP_shader_binary 1 -#endif - -/*------------------------------------------------------------------------* - * FJ extension functions - *------------------------------------------------------------------------*/ - -/* GL_FJ_shader_binary_GCCSO */ -#ifndef GL_FJ_shader_binary_GCCSO -#define GL_FJ_shader_binary_GCCSO 1 -#endif - -/*------------------------------------------------------------------------* - * IMG extension functions - *------------------------------------------------------------------------*/ - -/* GL_IMG_program_binary */ -#ifndef GL_IMG_program_binary -#define GL_IMG_program_binary 1 -#endif - -/* GL_IMG_read_format */ -#ifndef GL_IMG_read_format -#define GL_IMG_read_format 1 -#endif - -/* GL_IMG_shader_binary */ -#ifndef GL_IMG_shader_binary -#define GL_IMG_shader_binary 1 -#endif - -/* GL_IMG_texture_compression_pvrtc */ -#ifndef GL_IMG_texture_compression_pvrtc -#define GL_IMG_texture_compression_pvrtc 1 -#endif - -/* GL_IMG_texture_compression_pvrtc2 */ -#ifndef GL_IMG_texture_compression_pvrtc2 -#define GL_IMG_texture_compression_pvrtc2 1 -#endif - -/* GL_IMG_multisampled_render_to_texture */ -#ifndef GL_IMG_multisampled_render_to_texture -#define GL_IMG_multisampled_render_to_texture 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleIMG (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); -#endif -typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEIMGPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); -#endif - -/*------------------------------------------------------------------------* - * NV extension functions - *------------------------------------------------------------------------*/ - -/* GL_NV_coverage_sample */ -#ifndef GL_NV_coverage_sample -#define GL_NV_coverage_sample 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glCoverageMaskNV (GLboolean mask); -GL_APICALL void GL_APIENTRY glCoverageOperationNV (GLenum operation); -#endif -typedef void (GL_APIENTRYP PFNGLCOVERAGEMASKNVPROC) (GLboolean mask); -typedef void (GL_APIENTRYP PFNGLCOVERAGEOPERATIONNVPROC) (GLenum operation); -#endif - -/* GL_NV_depth_nonlinear */ -#ifndef GL_NV_depth_nonlinear -#define GL_NV_depth_nonlinear 1 -#endif - -/* GL_NV_draw_buffers */ -#ifndef GL_NV_draw_buffers -#define GL_NV_draw_buffers 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glDrawBuffersNV (GLsizei n, const GLenum *bufs); -#endif -typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSNVPROC) (GLsizei n, const GLenum *bufs); -#endif - -/* GL_NV_draw_instanced */ -#ifndef GL_NV_draw_instanced -#define GL_NV_draw_instanced 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glDrawArraysInstancedNV (GLenum mode, GLint first, GLsizei count, GLsizei primcount); -GL_APICALL void GL_APIENTRY glDrawElementsInstancedNV (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount); -#endif -typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDNVPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); -typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDNVPROC) (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount); -#endif - -/* GL_NV_fbo_color_attachments */ -#ifndef GL_NV_fbo_color_attachments -#define GL_NV_fbo_color_attachments 1 -#endif - -/* GL_NV_fence */ -#ifndef GL_NV_fence -#define GL_NV_fence 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); -GL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); -GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence); -GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence); -GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); -GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence); -GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition); -#endif -typedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); -typedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); -typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); -typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); -typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); -typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); -typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); -#endif - -/* GL_NV_framebuffer_blit */ -#ifndef GL_NV_framebuffer_blit -#define GL_NV_framebuffer_blit 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glBlitFramebufferNV (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); -#endif -typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); -#endif - -/* GL_NV_framebuffer_multisample */ -#ifndef GL_NV_framebuffer_multisample -#define GL_NV_framebuffer_multisample 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleNV ( GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -#endif -typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLENVPROC) ( GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); -#endif - -/* GL_NV_generate_mipmap_sRGB */ -#ifndef GL_NV_generate_mipmap_sRGB -#define GL_NV_generate_mipmap_sRGB 1 -#endif - -/* GL_NV_instanced_arrays */ -#ifndef GL_NV_instanced_arrays -#define GL_NV_instanced_arrays 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glVertexAttribDivisorNV (GLuint index, GLuint divisor); -#endif -typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORNVPROC) (GLuint index, GLuint divisor); -#endif - -/* GL_NV_read_buffer */ -#ifndef GL_NV_read_buffer -#define GL_NV_read_buffer 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glReadBufferNV (GLenum mode); -#endif -typedef void (GL_APIENTRYP PFNGLREADBUFFERNVPROC) (GLenum mode); -#endif - -/* GL_NV_read_buffer_front */ -#ifndef GL_NV_read_buffer_front -#define GL_NV_read_buffer_front 1 -#endif - -/* GL_NV_read_depth */ -#ifndef GL_NV_read_depth -#define GL_NV_read_depth 1 -#endif - -/* GL_NV_read_depth_stencil */ -#ifndef GL_NV_read_depth_stencil -#define GL_NV_read_depth_stencil 1 -#endif - -/* GL_NV_read_stencil */ -#ifndef GL_NV_read_stencil -#define GL_NV_read_stencil 1 -#endif - -/* GL_NV_shadow_samplers_array */ -#ifndef GL_NV_shadow_samplers_array -#define GL_NV_shadow_samplers_array 1 -#endif - -/* GL_NV_shadow_samplers_cube */ -#ifndef GL_NV_shadow_samplers_cube -#define GL_NV_shadow_samplers_cube 1 -#endif - -/* GL_NV_sRGB_formats */ -#ifndef GL_NV_sRGB_formats -#define GL_NV_sRGB_formats 1 -#endif - -/* GL_NV_texture_border_clamp */ -#ifndef GL_NV_texture_border_clamp -#define GL_NV_texture_border_clamp 1 -#endif - -/* GL_NV_texture_compression_s3tc_update */ -#ifndef GL_NV_texture_compression_s3tc_update -#define GL_NV_texture_compression_s3tc_update 1 -#endif - -/* GL_NV_texture_npot_2D_mipmap */ -#ifndef GL_NV_texture_npot_2D_mipmap -#define GL_NV_texture_npot_2D_mipmap 1 -#endif - -/*------------------------------------------------------------------------* - * QCOM extension functions - *------------------------------------------------------------------------*/ - -/* GL_QCOM_alpha_test */ -#ifndef GL_QCOM_alpha_test -#define GL_QCOM_alpha_test 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glAlphaFuncQCOM (GLenum func, GLclampf ref); -#endif -typedef void (GL_APIENTRYP PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref); -#endif - -/* GL_QCOM_binning_control */ -#ifndef GL_QCOM_binning_control -#define GL_QCOM_binning_control 1 -#endif - -/* GL_QCOM_driver_control */ -#ifndef GL_QCOM_driver_control -#define GL_QCOM_driver_control 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glGetDriverControlsQCOM (GLint *num, GLsizei size, GLuint *driverControls); -GL_APICALL void GL_APIENTRY glGetDriverControlStringQCOM (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); -GL_APICALL void GL_APIENTRY glEnableDriverControlQCOM (GLuint driverControl); -GL_APICALL void GL_APIENTRY glDisableDriverControlQCOM (GLuint driverControl); -#endif -typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSQCOMPROC) (GLint *num, GLsizei size, GLuint *driverControls); -typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSTRINGQCOMPROC) (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); -typedef void (GL_APIENTRYP PFNGLENABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); -typedef void (GL_APIENTRYP PFNGLDISABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); -#endif - -/* GL_QCOM_extended_get */ -#ifndef GL_QCOM_extended_get -#define GL_QCOM_extended_get 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glExtGetTexturesQCOM (GLuint *textures, GLint maxTextures, GLint *numTextures); -GL_APICALL void GL_APIENTRY glExtGetBuffersQCOM (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); -GL_APICALL void GL_APIENTRY glExtGetRenderbuffersQCOM (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); -GL_APICALL void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); -GL_APICALL void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); -GL_APICALL void GL_APIENTRY glExtTexObjectStateOverrideiQCOM (GLenum target, GLenum pname, GLint param); -GL_APICALL void GL_APIENTRY glExtGetTexSubImageQCOM (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLvoid *texels); -GL_APICALL void GL_APIENTRY glExtGetBufferPointervQCOM (GLenum target, GLvoid **params); -#endif -typedef void (GL_APIENTRYP PFNGLEXTGETTEXTURESQCOMPROC) (GLuint *textures, GLint maxTextures, GLint *numTextures); -typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERSQCOMPROC) (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); -typedef void (GL_APIENTRYP PFNGLEXTGETRENDERBUFFERSQCOMPROC) (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); -typedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); -typedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); -typedef void (GL_APIENTRYP PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC) (GLenum target, GLenum pname, GLint param); -typedef void (GL_APIENTRYP PFNGLEXTGETTEXSUBIMAGEQCOMPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLvoid *texels); -typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERPOINTERVQCOMPROC) (GLenum target, GLvoid **params); -#endif - -/* GL_QCOM_extended_get2 */ -#ifndef GL_QCOM_extended_get2 -#define GL_QCOM_extended_get2 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glExtGetShadersQCOM (GLuint *shaders, GLint maxShaders, GLint *numShaders); -GL_APICALL void GL_APIENTRY glExtGetProgramsQCOM (GLuint *programs, GLint maxPrograms, GLint *numPrograms); -GL_APICALL GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program); -GL_APICALL void GL_APIENTRY glExtGetProgramBinarySourceQCOM (GLuint program, GLenum shadertype, GLchar *source, GLint *length); -#endif -typedef void (GL_APIENTRYP PFNGLEXTGETSHADERSQCOMPROC) (GLuint *shaders, GLint maxShaders, GLint *numShaders); -typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMSQCOMPROC) (GLuint *programs, GLint maxPrograms, GLint *numPrograms); -typedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program); -typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar *source, GLint *length); -#endif - -/* GL_QCOM_perfmon_global_mode */ -#ifndef GL_QCOM_perfmon_global_mode -#define GL_QCOM_perfmon_global_mode 1 -#endif - -/* GL_QCOM_writeonly_rendering */ -#ifndef GL_QCOM_writeonly_rendering -#define GL_QCOM_writeonly_rendering 1 -#endif - -/* GL_QCOM_tiled_rendering */ -#ifndef GL_QCOM_tiled_rendering -#define GL_QCOM_tiled_rendering 1 -#ifdef GL_GLEXT_PROTOTYPES -GL_APICALL void GL_APIENTRY glStartTilingQCOM (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); -GL_APICALL void GL_APIENTRY glEndTilingQCOM (GLbitfield preserveMask); -#endif -typedef void (GL_APIENTRYP PFNGLSTARTTILINGQCOMPROC) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); -typedef void (GL_APIENTRYP PFNGLENDTILINGQCOMPROC) (GLbitfield preserveMask); -#endif - -/*------------------------------------------------------------------------* - * VIV extension tokens - *------------------------------------------------------------------------*/ - -/* GL_VIV_shader_binary */ -#ifndef GL_VIV_shader_binary -#define GL_VIV_shader_binary 1 -#endif - -#ifdef __cplusplus -} -#endif - -#endif /* __gl2ext_h_ */ diff --git a/SDL2-2.24.0/include/SDL_opengles2_gl2platform.h b/SDL2-2.24.0/include/SDL_opengles2_gl2platform.h deleted file mode 100644 index c325686..0000000 --- a/SDL2-2.24.0/include/SDL_opengles2_gl2platform.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef __gl2platform_h_ -#define __gl2platform_h_ - -/* $Revision: 10602 $ on $Date:: 2010-03-04 22:35:34 -0800 #$ */ - -/* - * This document is licensed under the SGI Free Software B License Version - * 2.0. For details, see http://oss.sgi.com/projects/FreeB/ . - */ - -/* Platform-specific types and definitions for OpenGL ES 2.X gl2.h - * - * Adopters may modify khrplatform.h and this file to suit their platform. - * You are encouraged to submit all modifications to the Khronos group so that - * they can be included in future versions of this file. Please submit changes - * by sending them to the public Khronos Bugzilla (http://khronos.org/bugzilla) - * by filing a bug against product "OpenGL-ES" component "Registry". - */ - -/*#include */ - -#ifndef GL_APICALL -#define GL_APICALL KHRONOS_APICALL -#endif - -#ifndef GL_APIENTRY -#define GL_APIENTRY KHRONOS_APIENTRY -#endif - -#endif /* __gl2platform_h_ */ diff --git a/SDL2-2.24.0/include/SDL_revision.h b/SDL2-2.24.0/include/SDL_revision.h deleted file mode 100644 index f285b72..0000000 --- a/SDL2-2.24.0/include/SDL_revision.h +++ /dev/null @@ -1,2 +0,0 @@ -#define SDL_REVISION "https://github.com/libsdl-org/SDL.git@8c9beb0c873f6ca5efbd88f1ad2648bfc793b2ac" -#define SDL_REVISION_NUMBER 0 diff --git a/SDL2-2.24.0/lib/x64/SDL2.dll b/SDL2-2.24.0/lib/x64/SDL2.dll deleted file mode 100644 index 2282f93..0000000 Binary files a/SDL2-2.24.0/lib/x64/SDL2.dll and /dev/null differ diff --git a/SDL2-2.24.0/lib/x64/SDL2.lib b/SDL2-2.24.0/lib/x64/SDL2.lib deleted file mode 100644 index 9dc90c0..0000000 Binary files a/SDL2-2.24.0/lib/x64/SDL2.lib and /dev/null differ diff --git a/SDL2-2.24.0/lib/x64/SDL2main.lib b/SDL2-2.24.0/lib/x64/SDL2main.lib deleted file mode 100644 index de0a9cf..0000000 Binary files a/SDL2-2.24.0/lib/x64/SDL2main.lib and /dev/null differ diff --git a/SDL2-2.24.0/lib/x86/SDL2.dll b/SDL2-2.24.0/lib/x86/SDL2.dll deleted file mode 100644 index 24eb044..0000000 Binary files a/SDL2-2.24.0/lib/x86/SDL2.dll and /dev/null differ diff --git a/SDL2-2.24.0/lib/x86/SDL2.lib b/SDL2-2.24.0/lib/x86/SDL2.lib deleted file mode 100644 index b286885..0000000 Binary files a/SDL2-2.24.0/lib/x86/SDL2.lib and /dev/null differ diff --git a/SDL2-2.24.0/BUGS.txt b/SDL2-2.26.3/BUGS.txt similarity index 100% rename from SDL2-2.24.0/BUGS.txt rename to SDL2-2.26.3/BUGS.txt diff --git a/SDL2-2.24.0/COPYING.txt b/SDL2-2.26.3/COPYING.txt similarity index 100% rename from SDL2-2.24.0/COPYING.txt rename to SDL2-2.26.3/COPYING.txt diff --git a/SDL2-2.24.0/README-SDL.txt b/SDL2-2.26.3/README-SDL.txt similarity index 100% rename from SDL2-2.24.0/README-SDL.txt rename to SDL2-2.26.3/README-SDL.txt diff --git a/SDL2-2.24.0/README.txt b/SDL2-2.26.3/README.txt similarity index 100% rename from SDL2-2.24.0/README.txt rename to SDL2-2.26.3/README.txt diff --git a/SDL2-2.24.0/WhatsNew.txt b/SDL2-2.26.3/WhatsNew.txt similarity index 94% rename from SDL2-2.24.0/WhatsNew.txt rename to SDL2-2.26.3/WhatsNew.txt index 9c0c375..a7cdf84 100644 --- a/SDL2-2.24.0/WhatsNew.txt +++ b/SDL2-2.26.3/WhatsNew.txt @@ -1,6 +1,47 @@ This is a list of major changes in SDL's version history. +--------------------------------------------------------------------------- +2.26.0: +--------------------------------------------------------------------------- + +General: +* Updated OpenGL headers to the latest API from The Khronos Group Inc. +* Added SDL_GetWindowSizeInPixels() to get the window size in pixels, which may differ from the window coordinate size for windows with high-DPI support +* Added simulated vsync synchronization for the software renderer +* Added the mouse position to SDL_MouseWheelEvent +* Added SDL_ResetHints() to reset all hints to their default values +* Added SDL_GetJoystickGUIDInfo() to get device information encoded in a joystick GUID +* Added the hint SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 to control whether the HIDAPI driver for XBox 360 controllers should be used +* Added the hint SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED to control whether the player LEDs should be lit to indicate which player is associated with an Xbox 360 controller +* Added the hint SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_WIRELESS to control whether the HIDAPI driver for XBox 360 wireless controllers should be used +* Added the hint SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE to control whether the HIDAPI driver for XBox One controllers should be used +* Added the hint SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED to control the brightness of the XBox One guide button LED +* Added support for PS3 controllers to the HIDAPI driver, enabled by default on macOS, controlled by the SDL_HINT_JOYSTICK_HIDAPI_PS3 hint +* Added support for Nintendo Wii controllers to the HIDAPI driver, not enabled by default, controlled by the SDL_HINT_JOYSTICK_HIDAPI_WII hint +* Added the hint SDL_HINT_JOYSTICK_HIDAPI_WII_PLAYER_LED to control whether the player LED should be lit on the Nintendo Wii controllers +* Added the hint SDL_HINT_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS to control whether Nintendo Switch Joy-Con controllers will be in vertical mode when using the HIDAPI driver +* Added access to the individual left and right gyro sensors of the combined Joy-Cons controller +* Added a microsecond timestamp to SDL_SensorEvent and SDL_ControllerSensorEvent, when the hardware provides that information +* Added SDL_SensorGetDataWithTimestamp() and SDL_GameControllerGetSensorDataWithTimestamp() to retrieve the last sensor data with the associated microsecond timestamp +* Added the hint SDL_HINT_HIDAPI_IGNORE_DEVICES to have the SDL HID API ignore specific devices +* SDL_GetRevision() now includes more information about the SDL build, including the git commit hash if available + +Windows: +* Added the hint SDL_HINT_MOUSE_RELATIVE_SYSTEM_SCALE to control whether the system mouse acceleration curve is used for relative mouse motion + +macOS: +* Implemented vsync synchronization on macOS 12 + +Linux: +* Added SDL_SetPrimarySelectionText(), SDL_GetPrimarySelectionText(), and SDL_HasPrimarySelectionText() to interact with the X11 primary selection clipboard +* Added the hint SDL_HINT_VIDEO_WAYLAND_EMULATE_MOUSE_WARP to control whether mouse pointer warp emulation is enabled under Wayland + +Android: +* Enabled IME soft keyboard input +* Added version checking to make sure the SDL Java and C code are compatible + + --------------------------------------------------------------------------- 2.24.0: --------------------------------------------------------------------------- diff --git a/SDL2-2.24.0/cmake/sdl2-config-version.cmake b/SDL2-2.26.3/cmake/sdl2-config-version.cmake similarity index 100% rename from SDL2-2.24.0/cmake/sdl2-config-version.cmake rename to SDL2-2.26.3/cmake/sdl2-config-version.cmake diff --git a/SDL2-2.24.0/cmake/sdl2-config.cmake b/SDL2-2.26.3/cmake/sdl2-config.cmake similarity index 100% rename from SDL2-2.24.0/cmake/sdl2-config.cmake rename to SDL2-2.26.3/cmake/sdl2-config.cmake diff --git a/SDL2-2.24.0/docs/CONTRIBUTING.md b/SDL2-2.26.3/docs/CONTRIBUTING.md similarity index 100% rename from SDL2-2.24.0/docs/CONTRIBUTING.md rename to SDL2-2.26.3/docs/CONTRIBUTING.md diff --git a/SDL2-2.24.0/docs/README-android.md b/SDL2-2.26.3/docs/README-android.md similarity index 99% rename from SDL2-2.24.0/docs/README-android.md rename to SDL2-2.26.3/docs/README-android.md index 0b112f0..5227d7e 100644 --- a/SDL2-2.24.0/docs/README-android.md +++ b/SDL2-2.26.3/docs/README-android.md @@ -13,7 +13,7 @@ supported, but you can use the "android-project-ant" directory as a template. Requirements ================================================================================ -Android SDK (version 26 or later) +Android SDK (version 31 or later) https://developer.android.com/sdk/index.html Android NDK r15c or later diff --git a/SDL2-2.24.0/docs/README-cmake.md b/SDL2-2.26.3/docs/README-cmake.md similarity index 100% rename from SDL2-2.24.0/docs/README-cmake.md rename to SDL2-2.26.3/docs/README-cmake.md diff --git a/SDL2-2.24.0/docs/README-directfb.md b/SDL2-2.26.3/docs/README-directfb.md similarity index 100% rename from SDL2-2.24.0/docs/README-directfb.md rename to SDL2-2.26.3/docs/README-directfb.md diff --git a/SDL2-2.24.0/docs/README-dynapi.md b/SDL2-2.26.3/docs/README-dynapi.md similarity index 100% rename from SDL2-2.24.0/docs/README-dynapi.md rename to SDL2-2.26.3/docs/README-dynapi.md diff --git a/SDL2-2.26.3/docs/README-emscripten.md b/SDL2-2.26.3/docs/README-emscripten.md new file mode 100644 index 0000000..82aa720 --- /dev/null +++ b/SDL2-2.26.3/docs/README-emscripten.md @@ -0,0 +1,76 @@ +# Emscripten + +(This documentation is not very robust; we will update and expand this later.) + +## A quick note about audio + +Modern web browsers will not permit web pages to produce sound before the +user has interacted with them; this is for several reasons, not the least +of which being that no one likes when a random browser tab suddenly starts +making noise and the user has to scramble to figure out which and silence +it. + +To solve this, most browsers will refuse to let a web app use the audio +subsystem at all before the user has interacted with (clicked on) the page +in a meaningful way. SDL-based apps also have to deal with this problem; if +the user hasn't interacted with the page, SDL_OpenAudioDevice will fail. + +There are two reasonable ways to deal with this: if you are writing some +sort of media player thing, where the user expects there to be a volume +control when you mouseover the canvas, just default that control to a muted +state; if the user clicks on the control to unmute it, on this first click, +open the audio device. This allows the media to play at start, the user can +reasonably opt-in to listening, and you never get access denied to the audio +device. + +Many games do not have this sort of UI, and are more rigid about starting +audio along with everything else at the start of the process. For these, your +best bet is to write a little Javascript that puts up a "Click here to play!" +UI, and upon the user clicking, remove that UI and then call the Emscripten +app's main() function. As far as the application knows, the audio device was +available to be opened as soon as the program started, and since this magic +happens in a little Javascript, you don't have to change your C/C++ code at +all to make it happen. + +Please see the discussion at https://github.com/libsdl-org/SDL/issues/6385 +for some Javascript code to steal for this approach. + + +## Building SDL/emscripten + +SDL currently requires at least Emscripten 2.0.32 to build. Newer versions +are likely to work, as well. + + +Build: + + $ mkdir build + $ cd build + $ emconfigure ../configure --host=asmjs-unknown-emscripten --disable-assembly --disable-threads --disable-cpuinfo CFLAGS="-O2" + $ emmake make + +Or with cmake: + + $ mkdir build + $ cd build + $ emcmake cmake .. + $ emmake make + +To build one of the tests: + + $ cd test/ + $ emcc -O2 --js-opts 0 -g4 testdraw2.c -I../include ../build/.libs/libSDL2.a ../build/libSDL2_test.a -o a.html + +Uses GLES2 renderer or software + +Some other SDL2 libraries can be easily built (assuming SDL2 is installed somewhere): + +SDL_mixer (http://www.libsdl.org/projects/SDL_mixer/): + + $ EMCONFIGURE_JS=1 emconfigure ../configure + build as usual... + +SDL_gfx (http://cms.ferzkopp.net/index.php/software/13-sdl-gfx): + + $ EMCONFIGURE_JS=1 emconfigure ../configure --disable-mmx + build as usual... diff --git a/SDL2-2.24.0/docs/README-gdk.md b/SDL2-2.26.3/docs/README-gdk.md similarity index 100% rename from SDL2-2.24.0/docs/README-gdk.md rename to SDL2-2.26.3/docs/README-gdk.md diff --git a/SDL2-2.24.0/docs/README-gesture.md b/SDL2-2.26.3/docs/README-gesture.md similarity index 100% rename from SDL2-2.24.0/docs/README-gesture.md rename to SDL2-2.26.3/docs/README-gesture.md diff --git a/SDL2-2.24.0/docs/README-git.md b/SDL2-2.26.3/docs/README-git.md similarity index 100% rename from SDL2-2.24.0/docs/README-git.md rename to SDL2-2.26.3/docs/README-git.md diff --git a/SDL2-2.24.0/docs/README-hg.md b/SDL2-2.26.3/docs/README-hg.md similarity index 100% rename from SDL2-2.24.0/docs/README-hg.md rename to SDL2-2.26.3/docs/README-hg.md diff --git a/SDL2-2.24.0/docs/README-ios.md b/SDL2-2.26.3/docs/README-ios.md similarity index 85% rename from SDL2-2.24.0/docs/README-ios.md rename to SDL2-2.26.3/docs/README-ios.md index 9489979..966d674 100644 --- a/SDL2-2.24.0/docs/README-ios.md +++ b/SDL2-2.26.3/docs/README-ios.md @@ -191,6 +191,38 @@ More information on this subject is available here: http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Introduction/Introduction.html +Notes -- xcFramework +============================================================================== + +The SDL.xcodeproj file now includes a target to build SDL2.xcframework. An xcframework is a new (Xcode 11) uber-framework which can handle any combination of processor type and target OS platform. + +In the past, iOS devices were always an ARM variant processor, and the simulator was always i386 or x86_64, and thus libraries could be combined into a single framework for both simulator and device. With the introduction of the Apple Silicon ARM-based machines, regular frameworks would collide as CPU type was no longer sufficient to differentiate the platform. So Apple created the new xcframework library package. + +The xcframework target builds into a Products directory alongside the SDL.xcodeproj file, as SDL2.xcframework. This can be brought in to any iOS project and will function properly for both simulator and device, no matter their CPUs. Note that Intel Macs cannot cross-compile for Apple Silicon Macs. If you need AS compatibility, perform this build on an Apple Silicon Mac. + +This target requires Xcode 11 or later. The target will simply fail to build if attempted on older Xcodes. + +In addition, on Apple platforms, main() cannot be in a dynamically loaded library. This means that iOS apps which used the statically-linked libSDL2.lib and now link with the xcframwork will need to define their own main() to call SDL_UIKitRunApp(), like this: + +#ifndef SDL_MAIN_HANDLED +#ifdef main +#undef main +#endif + +int +main(int argc, char *argv[]) +{ + return SDL_UIKitRunApp(argc, argv, SDL_main); +} +#endif /* !SDL_MAIN_HANDLED */ + +Using an xcFramework is similar to using a regular framework. However, issues have been seen with the build system not seeing the headers in the xcFramework. To remedy this, add the path to the xcFramework in your app's target ==> Build Settings ==> Framework Search Paths and mark it recursive (this is critical). Also critical is to remove "*.framework" from Build Settings ==> Sub-Directories to Exclude in Recursive Searches. Clean the build folder, and on your next build the build system should be able to see any of these in your code, as expected: + +#include "SDL_main.h" +#include +#include + + Notes -- iPhone SDL limitations ============================================================================== @@ -261,7 +293,7 @@ e.g. Deploying to older versions of iOS ============================================================================== -SDL supports deploying to older versions of iOS than are supported by the latest version of Xcode, all the way back to iOS 6.1 +SDL supports deploying to older versions of iOS than are supported by the latest version of Xcode, all the way back to iOS 8.0 In order to do that you need to download an older version of Xcode: https://developer.apple.com/download/more/?name=Xcode diff --git a/SDL2-2.24.0/docs/README-kmsbsd.md b/SDL2-2.26.3/docs/README-kmsbsd.md similarity index 100% rename from SDL2-2.24.0/docs/README-kmsbsd.md rename to SDL2-2.26.3/docs/README-kmsbsd.md diff --git a/SDL2-2.24.0/docs/README-linux.md b/SDL2-2.26.3/docs/README-linux.md similarity index 100% rename from SDL2-2.24.0/docs/README-linux.md rename to SDL2-2.26.3/docs/README-linux.md diff --git a/SDL2-2.24.0/docs/README-macos.md b/SDL2-2.26.3/docs/README-macos.md similarity index 100% rename from SDL2-2.24.0/docs/README-macos.md rename to SDL2-2.26.3/docs/README-macos.md diff --git a/SDL2-2.26.3/docs/README-n3ds.md b/SDL2-2.26.3/docs/README-n3ds.md new file mode 100644 index 0000000..5be0961 --- /dev/null +++ b/SDL2-2.26.3/docs/README-n3ds.md @@ -0,0 +1,27 @@ +# Nintendo 3DS + +SDL port for the Nintendo 3DS [Homebrew toolchain](https://devkitpro.org/) contributed by: + +- [Pierre Wendling](https://github.com/FtZPetruska) + +Credits to: + +- The awesome people who ported SDL to other homebrew platforms. +- The Devkitpro team for making all the tools necessary to achieve this. + +## Building + +To build for the Nintendo 3DS, make sure you have devkitARM and cmake installed and run: + +```bash +cmake -S. -Bbuild -DCMAKE_TOOLCHAIN_FILE="$DEVKITPRO/cmake/3DS.cmake" -DCMAKE_BUILD_TYPE=Release +cmake --build build +cmake --install build +``` + +## Notes + +- Currently only software rendering is supported. +- SDL2main should be used to ensure ROMFS is enabled. +- By default, the extra L2 cache and higher clock speeds of the New 2/3DS lineup are enabled. If you wish to turn it off, use `osSetSpeedupEnable(false)` in your main function. +- `SDL_GetBasePath` returns the romfs root instead of the executable's directory. diff --git a/SDL2-2.24.0/docs/README-nacl.md b/SDL2-2.26.3/docs/README-nacl.md similarity index 100% rename from SDL2-2.24.0/docs/README-nacl.md rename to SDL2-2.26.3/docs/README-nacl.md diff --git a/SDL2-2.24.0/docs/README-ngage.md b/SDL2-2.26.3/docs/README-ngage.md similarity index 100% rename from SDL2-2.24.0/docs/README-ngage.md rename to SDL2-2.26.3/docs/README-ngage.md diff --git a/SDL2-2.24.0/docs/README-os2.md b/SDL2-2.26.3/docs/README-os2.md similarity index 100% rename from SDL2-2.24.0/docs/README-os2.md rename to SDL2-2.26.3/docs/README-os2.md diff --git a/SDL2-2.24.0/docs/README-pandora.md b/SDL2-2.26.3/docs/README-pandora.md similarity index 100% rename from SDL2-2.24.0/docs/README-pandora.md rename to SDL2-2.26.3/docs/README-pandora.md diff --git a/SDL2-2.24.0/docs/README-platforms.md b/SDL2-2.26.3/docs/README-platforms.md similarity index 100% rename from SDL2-2.24.0/docs/README-platforms.md rename to SDL2-2.26.3/docs/README-platforms.md diff --git a/SDL2-2.24.0/docs/README-porting.md b/SDL2-2.26.3/docs/README-porting.md similarity index 100% rename from SDL2-2.24.0/docs/README-porting.md rename to SDL2-2.26.3/docs/README-porting.md diff --git a/SDL2-2.24.0/docs/README-ps2.md b/SDL2-2.26.3/docs/README-ps2.md similarity index 79% rename from SDL2-2.24.0/docs/README-ps2.md rename to SDL2-2.26.3/docs/README-ps2.md index b330b7e..d9fb800 100644 --- a/SDL2-2.24.0/docs/README-ps2.md +++ b/SDL2-2.26.3/docs/README-ps2.md @@ -16,6 +16,10 @@ cmake --build build cmake --install build ``` +## Hints +The PS2 port has a special Hint for having a dynamic VSYNC. The Hint is `SDL_HINT_PS2_DYNAMIC_VSYNC`. +If you enabled the dynamic vsync having as well `SDL_RENDERER_PRESENTVSYNC` enabled, then if the app is not able to run at 60 FPS, automatically the `vsync` will be disabled having a better performance, instead of droping FPS to 30. + ## Notes If you trying to debug a SDL app through [ps2client](https://github.com/ps2dev/ps2client) you need to avoid the IOP reset, otherwise you will lose the conection with your computer. So to avoid the reset of the IOP CPU, you need to call to the macro `SDL_PS2_SKIP_IOP_RESET();`. diff --git a/SDL2-2.24.0/docs/README-psp.md b/SDL2-2.26.3/docs/README-psp.md similarity index 100% rename from SDL2-2.24.0/docs/README-psp.md rename to SDL2-2.26.3/docs/README-psp.md diff --git a/SDL2-2.24.0/docs/README-raspberrypi.md b/SDL2-2.26.3/docs/README-raspberrypi.md similarity index 100% rename from SDL2-2.24.0/docs/README-raspberrypi.md rename to SDL2-2.26.3/docs/README-raspberrypi.md diff --git a/SDL2-2.24.0/docs/README-riscos.md b/SDL2-2.26.3/docs/README-riscos.md similarity index 100% rename from SDL2-2.24.0/docs/README-riscos.md rename to SDL2-2.26.3/docs/README-riscos.md diff --git a/SDL2-2.24.0/docs/README-touch.md b/SDL2-2.26.3/docs/README-touch.md similarity index 100% rename from SDL2-2.24.0/docs/README-touch.md rename to SDL2-2.26.3/docs/README-touch.md diff --git a/SDL2-2.24.0/docs/README-versions.md b/SDL2-2.26.3/docs/README-versions.md similarity index 100% rename from SDL2-2.24.0/docs/README-versions.md rename to SDL2-2.26.3/docs/README-versions.md diff --git a/SDL2-2.24.0/docs/README-visualc.md b/SDL2-2.26.3/docs/README-visualc.md similarity index 100% rename from SDL2-2.24.0/docs/README-visualc.md rename to SDL2-2.26.3/docs/README-visualc.md diff --git a/SDL2-2.24.0/docs/README-vita.md b/SDL2-2.26.3/docs/README-vita.md similarity index 100% rename from SDL2-2.24.0/docs/README-vita.md rename to SDL2-2.26.3/docs/README-vita.md diff --git a/SDL2-2.24.0/docs/README-wince.md b/SDL2-2.26.3/docs/README-wince.md similarity index 100% rename from SDL2-2.24.0/docs/README-wince.md rename to SDL2-2.26.3/docs/README-wince.md diff --git a/SDL2-2.24.0/docs/README-windows.md b/SDL2-2.26.3/docs/README-windows.md similarity index 100% rename from SDL2-2.24.0/docs/README-windows.md rename to SDL2-2.26.3/docs/README-windows.md diff --git a/SDL2-2.24.0/docs/README-winrt.md b/SDL2-2.26.3/docs/README-winrt.md similarity index 100% rename from SDL2-2.24.0/docs/README-winrt.md rename to SDL2-2.26.3/docs/README-winrt.md diff --git a/SDL2-2.24.0/docs/README.md b/SDL2-2.26.3/docs/README.md similarity index 92% rename from SDL2-2.24.0/docs/README.md rename to SDL2-2.26.3/docs/README.md index eafa111..c6084cf 100644 --- a/SDL2-2.24.0/docs/README.md +++ b/SDL2-2.26.3/docs/README.md @@ -1,12 +1,6 @@ -Simple DirectMedia Layer {#mainpage} -======================== +# Simple DirectMedia Layer - (SDL) - - Version 2.0 - ---- -http://www.libsdl.org/ +https://www.libsdl.org/ Simple DirectMedia Layer is a cross-platform development library designed to provide low level access to audio, keyboard, mouse, joystick, and graphics diff --git a/SDL2-2.24.0/docs/doxyfile b/SDL2-2.26.3/docs/doxyfile similarity index 100% rename from SDL2-2.24.0/docs/doxyfile rename to SDL2-2.26.3/docs/doxyfile diff --git a/SDL2-2.26.3/docs/release_checklist.md b/SDL2-2.26.3/docs/release_checklist.md new file mode 100644 index 0000000..37d8b6d --- /dev/null +++ b/SDL2-2.26.3/docs/release_checklist.md @@ -0,0 +1,49 @@ +# Release checklist + +When changing the version, run `build-scripts/update-version.sh X Y Z`, +where `X Y Z` are the major version, minor version, and patch level. So +`2 28 1` means "change the version to 2.28.1". This script does much of the +mechanical work. + + +## New feature release + +* Update `WhatsNew.txt` + +* Bump version number to 2.EVEN.0: + + * `./build-scripts/update-version.sh 2 EVEN 0` + +* Do the release + +* Update the website file include/header.inc.php to reflect the new version + +## New bugfix release + +* Check that no new API/ABI was added + + * If it was, do a new feature release (see above) instead + +* Bump version number from 2.Y.Z to 2.Y.(Z+1) (Y is even) + + * `./build-scripts/update-version.sh 2 Y Z+1` + +* Do the release + +* Update the website file include/header.inc.php to reflect the new version + +## After a feature release + +* Create a branch like `release-2.24.x` + +* Bump version number to 2.ODD.0 for next development branch + + * `./build-scripts/update-version.sh 2 ODD 0` + +## New development prerelease + +* Bump version number from 2.Y.Z to 2.Y.(Z+1) (Y is odd) + + * `./build-scripts/update-version.sh 2 Y Z+1` + +* Do the release diff --git a/SDL2-2.24.0/include/SDL.h b/SDL2-2.26.3/include/SDL.h similarity index 99% rename from SDL2-2.24.0/include/SDL.h rename to SDL2-2.26.3/include/SDL.h index 12e7f31..9ba8f68 100644 --- a/SDL2-2.24.0/include/SDL.h +++ b/SDL2-2.26.3/include/SDL.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_assert.h b/SDL2-2.26.3/include/SDL_assert.h similarity index 99% rename from SDL2-2.24.0/include/SDL_assert.h rename to SDL2-2.26.3/include/SDL_assert.h index e71cf97..ba6dcd1 100644 --- a/SDL2-2.24.0/include/SDL_assert.h +++ b/SDL2-2.26.3/include/SDL_assert.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_atomic.h b/SDL2-2.26.3/include/SDL_atomic.h similarity index 99% rename from SDL2-2.24.0/include/SDL_atomic.h rename to SDL2-2.26.3/include/SDL_atomic.h index 2eace20..22ea019 100644 --- a/SDL2-2.24.0/include/SDL_atomic.h +++ b/SDL2-2.26.3/include/SDL_atomic.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -240,7 +240,7 @@ typedef void (*SDL_KernelMemoryBarrierFunc)(); /* "REP NOP" is PAUSE, coded for tools that don't know it by that name. */ #if (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__)) #define SDL_CPUPauseInstruction() __asm__ __volatile__("pause\n") /* Some assemblers can't do REP NOP, so go with PAUSE. */ -#elif (defined(__arm__) && __ARM_ARCH__ >= 7) || defined(__aarch64__) +#elif (defined(__arm__) && __ARM_ARCH >= 7) || defined(__aarch64__) #define SDL_CPUPauseInstruction() __asm__ __volatile__("yield" ::: "memory") #elif (defined(__powerpc__) || defined(__powerpc64__)) #define SDL_CPUPauseInstruction() __asm__ __volatile__("or 27,27,27"); diff --git a/SDL2-2.24.0/include/SDL_audio.h b/SDL2-2.26.3/include/SDL_audio.h similarity index 99% rename from SDL2-2.24.0/include/SDL_audio.h rename to SDL2-2.26.3/include/SDL_audio.h index c42de3e..2c0f211 100644 --- a/SDL2-2.24.0/include/SDL_audio.h +++ b/SDL2-2.26.3/include/SDL_audio.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_bits.h b/SDL2-2.26.3/include/SDL_bits.h similarity index 98% rename from SDL2-2.24.0/include/SDL_bits.h rename to SDL2-2.26.3/include/SDL_bits.h index 22cb853..81161ae 100644 --- a/SDL2-2.24.0/include/SDL_bits.h +++ b/SDL2-2.26.3/include/SDL_bits.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_blendmode.h b/SDL2-2.26.3/include/SDL_blendmode.h similarity index 99% rename from SDL2-2.24.0/include/SDL_blendmode.h rename to SDL2-2.26.3/include/SDL_blendmode.h index 08c9f9d..b862116 100644 --- a/SDL2-2.24.0/include/SDL_blendmode.h +++ b/SDL2-2.26.3/include/SDL_blendmode.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_clipboard.h b/SDL2-2.26.3/include/SDL_clipboard.h similarity index 63% rename from SDL2-2.24.0/include/SDL_clipboard.h rename to SDL2-2.26.3/include/SDL_clipboard.h index 9351363..7c351fb 100644 --- a/SDL2-2.24.0/include/SDL_clipboard.h +++ b/SDL2-2.26.3/include/SDL_clipboard.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -82,6 +82,53 @@ extern DECLSPEC char * SDLCALL SDL_GetClipboardText(void); */ extern DECLSPEC SDL_bool SDLCALL SDL_HasClipboardText(void); +/** + * Put UTF-8 text into the primary selection. + * + * \param text the text to store in the primary selection + * \returns 0 on success or a negative error code on failure; call + * SDL_GetError() for more information. + * + * \since This function is available since SDL 2.26.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_HasPrimarySelectionText + */ +extern DECLSPEC int SDLCALL SDL_SetPrimarySelectionText(const char *text); + +/** + * Get UTF-8 text from the primary selection, which must be freed with + * SDL_free(). + * + * This functions returns empty string if there was not enough memory left for + * a copy of the primary selection's content. + * + * \returns the primary selection text on success or an empty string on + * failure; call SDL_GetError() for more information. Caller must + * call SDL_free() on the returned pointer when done with it (even if + * there was an error). + * + * \since This function is available since SDL 2.26.0. + * + * \sa SDL_HasPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern DECLSPEC char * SDLCALL SDL_GetPrimarySelectionText(void); + +/** + * Query whether the primary selection exists and contains a non-empty text + * string. + * + * \returns SDL_TRUE if the primary selection has text, or SDL_FALSE if it + * does not. + * + * \since This function is available since SDL 2.26.0. + * + * \sa SDL_GetPrimarySelectionText + * \sa SDL_SetPrimarySelectionText + */ +extern DECLSPEC SDL_bool SDLCALL SDL_HasPrimarySelectionText(void); + /* Ends C function definitions when using C++ */ #ifdef __cplusplus diff --git a/SDL2-2.24.0/include/SDL_config.h b/SDL2-2.26.3/include/SDL_config.h similarity index 89% rename from SDL2-2.24.0/include/SDL_config.h rename to SDL2-2.26.3/include/SDL_config.h index 3ad3e8f..01322c1 100644 --- a/SDL2-2.24.0/include/SDL_config.h +++ b/SDL2-2.26.3/include/SDL_config.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -52,10 +52,9 @@ /* This is a set of defines to configure the SDL features */ -#if !defined(_STDINT_H_) && (!defined(HAVE_STDINT_H) || !_HAVE_STDINT_H) -#if defined(__GNUC__) || defined(__DMC__) || defined(__WATCOMC__) || defined(__clang__) || defined(__BORLANDC__) || defined(__CODEGEARC__) -#define HAVE_STDINT_H 1 -#elif defined(_MSC_VER) +#if !defined(HAVE_STDINT_H) && !defined(_STDINT_H_) +/* Most everything except Visual Studio 2008 and earlier has stdint.h now */ +#if defined(_MSC_VER) && (_MSC_VER < 1600) typedef signed __int8 int8_t; typedef unsigned __int8 uint8_t; typedef signed __int16 int16_t; @@ -72,28 +71,9 @@ typedef unsigned int uintptr_t; #endif #define _UINTPTR_T_DEFINED #endif -/* Older Visual C++ headers don't have the Win64-compatible typedefs... */ -#if ((_MSC_VER <= 1200) && (!defined(DWORD_PTR))) -#define DWORD_PTR DWORD -#endif -#if ((_MSC_VER <= 1200) && (!defined(LONG_PTR))) -#define LONG_PTR LONG -#endif -#else /* !__GNUC__ && !_MSC_VER */ -typedef signed char int8_t; -typedef unsigned char uint8_t; -typedef signed short int16_t; -typedef unsigned short uint16_t; -typedef signed int int32_t; -typedef unsigned int uint32_t; -typedef signed long long int64_t; -typedef unsigned long long uint64_t; -#ifndef _SIZE_T_DEFINED_ -#define _SIZE_T_DEFINED_ -typedef unsigned int size_t; -#endif -typedef unsigned int uintptr_t; -#endif /* __GNUC__ || _MSC_VER */ +#else +#define HAVE_STDINT_H 1 +#endif /* Visual Studio 2008 */ #endif /* !_STDINT_H_ && !HAVE_STDINT_H */ #ifdef _WIN64 diff --git a/SDL2-2.24.0/include/SDL_config.h.cmake b/SDL2-2.26.3/include/SDL_config.h.cmake similarity index 100% rename from SDL2-2.24.0/include/SDL_config.h.cmake rename to SDL2-2.26.3/include/SDL_config.h.cmake diff --git a/SDL2-2.24.0/include/SDL_config.h.in b/SDL2-2.26.3/include/SDL_config.h.in similarity index 100% rename from SDL2-2.24.0/include/SDL_config.h.in rename to SDL2-2.26.3/include/SDL_config.h.in diff --git a/SDL2-2.24.0/include/SDL_config_android.h b/SDL2-2.26.3/include/SDL_config_android.h similarity index 100% rename from SDL2-2.24.0/include/SDL_config_android.h rename to SDL2-2.26.3/include/SDL_config_android.h diff --git a/SDL2-2.24.0/include/SDL_config_iphoneos.h b/SDL2-2.26.3/include/SDL_config_iphoneos.h similarity index 100% rename from SDL2-2.24.0/include/SDL_config_iphoneos.h rename to SDL2-2.26.3/include/SDL_config_iphoneos.h diff --git a/SDL2-2.24.0/include/SDL_config_macosx.h b/SDL2-2.26.3/include/SDL_config_macosx.h similarity index 100% rename from SDL2-2.24.0/include/SDL_config_macosx.h rename to SDL2-2.26.3/include/SDL_config_macosx.h diff --git a/SDL2-2.24.0/include/SDL_config_macosx.h.orig b/SDL2-2.26.3/include/SDL_config_macosx.h.orig similarity index 100% rename from SDL2-2.24.0/include/SDL_config_macosx.h.orig rename to SDL2-2.26.3/include/SDL_config_macosx.h.orig diff --git a/SDL2-2.24.0/include/SDL_config_minimal.h b/SDL2-2.26.3/include/SDL_config_minimal.h similarity index 100% rename from SDL2-2.24.0/include/SDL_config_minimal.h rename to SDL2-2.26.3/include/SDL_config_minimal.h diff --git a/SDL2-2.24.0/include/SDL_config_pandora.h b/SDL2-2.26.3/include/SDL_config_pandora.h similarity index 100% rename from SDL2-2.24.0/include/SDL_config_pandora.h rename to SDL2-2.26.3/include/SDL_config_pandora.h diff --git a/SDL2-2.24.0/include/SDL_config_psp.h b/SDL2-2.26.3/include/SDL_config_psp.h similarity index 100% rename from SDL2-2.24.0/include/SDL_config_psp.h rename to SDL2-2.26.3/include/SDL_config_psp.h diff --git a/SDL2-2.24.0/include/SDL_config_windows.h b/SDL2-2.26.3/include/SDL_config_windows.h similarity index 100% rename from SDL2-2.24.0/include/SDL_config_windows.h rename to SDL2-2.26.3/include/SDL_config_windows.h diff --git a/SDL2-2.24.0/include/SDL_config_winrt.h b/SDL2-2.26.3/include/SDL_config_winrt.h similarity index 100% rename from SDL2-2.24.0/include/SDL_config_winrt.h rename to SDL2-2.26.3/include/SDL_config_winrt.h diff --git a/SDL2-2.24.0/include/SDL_config_wiz.h b/SDL2-2.26.3/include/SDL_config_wiz.h similarity index 100% rename from SDL2-2.24.0/include/SDL_config_wiz.h rename to SDL2-2.26.3/include/SDL_config_wiz.h diff --git a/SDL2-2.24.0/include/SDL_copying.h b/SDL2-2.26.3/include/SDL_copying.h similarity index 100% rename from SDL2-2.24.0/include/SDL_copying.h rename to SDL2-2.26.3/include/SDL_copying.h diff --git a/SDL2-2.24.0/include/SDL_cpuinfo.h b/SDL2-2.26.3/include/SDL_cpuinfo.h similarity index 99% rename from SDL2-2.24.0/include/SDL_cpuinfo.h rename to SDL2-2.26.3/include/SDL_cpuinfo.h index 43a8ac5..ed5e979 100644 --- a/SDL2-2.24.0/include/SDL_cpuinfo.h +++ b/SDL2-2.26.3/include/SDL_cpuinfo.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -90,6 +90,7 @@ _m_prefetch(void *__P) # include # include # define __ARM_NEON 1 /* Set __ARM_NEON so that it can be used elsewhere, at compile time */ +# define __ARM_ARCH 8 # endif # endif #endif diff --git a/SDL2-2.24.0/include/SDL_egl.h b/SDL2-2.26.3/include/SDL_egl.h similarity index 97% rename from SDL2-2.24.0/include/SDL_egl.h rename to SDL2-2.26.3/include/SDL_egl.h index f90e27b..6f51c08 100644 --- a/SDL2-2.24.0/include/SDL_egl.h +++ b/SDL2-2.26.3/include/SDL_egl.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -192,6 +192,20 @@ 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) @@ -274,14 +288,21 @@ typedef unsigned short int khronos_uint16_t; * pointers are 64 bits, but 'long' is still 32 bits. Win64 appears * to be the only LLP64 architecture in current use. */ -#ifdef _WIN64 +#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; -typedef signed long long int khronos_ssize_t; -typedef unsigned long long int khronos_usize_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 @@ -516,7 +537,7 @@ extern "C" { ** used to make the header, and the header can be found at ** http://www.khronos.org/registry/egl ** -** Khronos $Git commit SHA1: b35e89ca9a $ on $Git commit date: 2021-09-01 09:34:00 +0530 $ +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ */ /*#include */ @@ -525,7 +546,7 @@ extern "C" { #define EGL_EGL_PROTOTYPES 1 #endif -/* Generated on date 20210901 */ +/* Generated on date 20220525 */ /* Generated C header for: * API: egl @@ -860,12 +881,12 @@ extern "C" { ** used to make the header, and the header can be found at ** http://www.khronos.org/registry/egl ** -** Khronos $Git commit SHA1: b35e89ca9a $ on $Git commit date: 2021-09-01 09:34:00 +0530 $ +** Khronos $Git commit SHA1: 6fb1daea15 $ on $Git commit date: 2022-05-25 09:41:13 -0600 $ */ /*#include */ -#define EGL_EGLEXT_VERSION 20210901 +#define EGL_EGLEXT_VERSION 20220525 /* Generated C header for: * API: egl @@ -1569,6 +1590,10 @@ EGLAPI EGLBoolean EGLAPIENTRY eglQueryDeviceBinaryEXT (EGLDeviceEXT device, EGLi #define EGL_RENDERER_EXT 0x335F #endif /* EGL_EXT_device_query_name */ +#ifndef EGL_EXT_explicit_device +#define EGL_EXT_explicit_device 1 +#endif /* EGL_EXT_explicit_device */ + #ifndef EGL_EXT_gl_colorspace_bt2020_linear #define EGL_EXT_gl_colorspace_bt2020_linear 1 #define EGL_GL_COLORSPACE_BT2020_LINEAR_EXT 0x333F @@ -1794,6 +1819,31 @@ EGLAPI EGLBoolean EGLAPIENTRY eglStreamConsumerOutputEXT (EGLDisplay dpy, EGLStr #define EGL_METADATA_SCALING_EXT 50000 #endif /* EGL_EXT_surface_SMPTE2086_metadata */ +#ifndef EGL_EXT_surface_compression +#define EGL_EXT_surface_compression 1 +#define EGL_SURFACE_COMPRESSION_EXT 0x34B0 +#define EGL_SURFACE_COMPRESSION_PLANE1_EXT 0x328E +#define EGL_SURFACE_COMPRESSION_PLANE2_EXT 0x328F +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x34B1 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x34B2 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x34B4 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x34B5 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x34B6 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x34B7 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x34B8 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x34B9 +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x34BA +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x34BB +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x34BC +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x34BD +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x34BE +#define EGL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x34BF +typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSUPPORTEDCOMPRESSIONRATESEXTPROC) (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#ifdef EGL_EGLEXT_PROTOTYPES +EGLAPI EGLBoolean EGLAPIENTRY eglQuerySupportedCompressionRatesEXT (EGLDisplay dpy, EGLConfig config, const EGLAttrib *attrib_list, EGLint *rates, EGLint rate_size, EGLint *num_rates); +#endif +#endif /* EGL_EXT_surface_compression */ + #ifndef EGL_EXT_swap_buffers_with_damage #define EGL_EXT_swap_buffers_with_damage 1 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSWAPBUFFERSWITHDAMAGEEXTPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint n_rects); @@ -2028,12 +2078,12 @@ EGLAPI EGLBoolean EGLAPIENTRY eglPostSubBufferNV (EGLDisplay dpy, EGLSurface sur #define EGL_STREAM_IMAGE_ADD_NV 0x3374 #define EGL_STREAM_IMAGE_REMOVE_NV 0x3375 #define EGL_STREAM_IMAGE_AVAILABLE_NV 0x3376 -typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMIMAGECONSUMERCONNECTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, EGLuint64KHR *modifiers, EGLAttrib *attrib_list); +typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMIMAGECONSUMERCONNECTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); typedef EGLint (EGLAPIENTRYP PFNEGLQUERYSTREAMCONSUMEREVENTNVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMACQUIREIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); typedef EGLBoolean (EGLAPIENTRYP PFNEGLSTREAMRELEASEIMAGENVPROC) (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); #ifdef EGL_EGLEXT_PROTOTYPES -EGLAPI EGLBoolean EGLAPIENTRY eglStreamImageConsumerConnectNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, EGLuint64KHR *modifiers, EGLAttrib *attrib_list); +EGLAPI EGLBoolean EGLAPIENTRY eglStreamImageConsumerConnectNV (EGLDisplay dpy, EGLStreamKHR stream, EGLint num_modifiers, const EGLuint64KHR *modifiers, const EGLAttrib *attrib_list); EGLAPI EGLint EGLAPIENTRY eglQueryStreamConsumerEventNV (EGLDisplay dpy, EGLStreamKHR stream, EGLTime timeout, EGLenum *event, EGLAttrib *aux); EGLAPI EGLBoolean EGLAPIENTRY eglStreamAcquireImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage *pImage, EGLSync sync); EGLAPI EGLBoolean EGLAPIENTRY eglStreamReleaseImageNV (EGLDisplay dpy, EGLStreamKHR stream, EGLImage image, EGLSync sync); diff --git a/SDL2-2.24.0/include/SDL_endian.h b/SDL2-2.26.3/include/SDL_endian.h similarity index 99% rename from SDL2-2.24.0/include/SDL_endian.h rename to SDL2-2.26.3/include/SDL_endian.h index c3f8431..582c3a8 100644 --- a/SDL2-2.24.0/include/SDL_endian.h +++ b/SDL2-2.26.3/include/SDL_endian.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_error.h b/SDL2-2.26.3/include/SDL_error.h similarity index 98% rename from SDL2-2.24.0/include/SDL_error.h rename to SDL2-2.26.3/include/SDL_error.h index 5c961e4..31c2261 100644 --- a/SDL2-2.24.0/include/SDL_error.h +++ b/SDL2-2.26.3/include/SDL_error.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_events.h b/SDL2-2.26.3/include/SDL_events.h similarity index 98% rename from SDL2-2.24.0/include/SDL_events.h rename to SDL2-2.26.3/include/SDL_events.h index c0fc9bb..9d09703 100644 --- a/SDL2-2.24.0/include/SDL_events.h +++ b/SDL2-2.26.3/include/SDL_events.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -143,7 +143,7 @@ typedef enum SDL_MULTIGESTURE, /* Clipboard events */ - SDL_CLIPBOARDUPDATE = 0x900, /**< The clipboard changed */ + SDL_CLIPBOARDUPDATE = 0x900, /**< The clipboard or primary selection changed */ /* Drag and drop events */ SDL_DROPFILE = 0x1000, /**< The system requests a file open */ @@ -318,6 +318,8 @@ typedef struct SDL_MouseWheelEvent Uint32 direction; /**< Set to one of the SDL_MOUSEWHEEL_* defines. When FLIPPED the values in X and Y will be opposite. Multiply by -1 to change them back */ float preciseX; /**< The amount scrolled horizontally, positive to the right and negative to the left, with float precision (added in 2.0.18) */ float preciseY; /**< The amount scrolled vertically, positive away from the user and negative toward the user, with float precision (added in 2.0.18) */ + Sint32 mouseX; /**< X coordinate, relative to window (added in 2.26.0) */ + Sint32 mouseY; /**< Y coordinate, relative to window (added in 2.26.0) */ } SDL_MouseWheelEvent; /** @@ -474,6 +476,7 @@ typedef struct SDL_ControllerSensorEvent SDL_JoystickID which; /**< The joystick instance id */ Sint32 sensor; /**< The type of the sensor, one of the values of ::SDL_SensorType */ float data[3]; /**< Up to 3 values from the sensor, as defined in SDL_sensor.h */ + Uint64 timestamp_us; /**< The timestamp of the sensor reading in microseconds, if the hardware provides this information. */ } SDL_ControllerSensorEvent; /** @@ -565,6 +568,7 @@ typedef struct SDL_SensorEvent Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ Sint32 which; /**< The instance ID of the sensor */ float data[6]; /**< Up to 6 values from the sensor - additional values can be queried using SDL_SensorGetData() */ + Uint64 timestamp_us; /**< The timestamp of the sensor reading in microseconds, if the hardware provides this information. */ } SDL_SensorEvent; /** diff --git a/SDL2-2.24.0/include/SDL_filesystem.h b/SDL2-2.26.3/include/SDL_filesystem.h similarity index 95% rename from SDL2-2.24.0/include/SDL_filesystem.h rename to SDL2-2.26.3/include/SDL_filesystem.h index a7606bd..4cad657 100644 --- a/SDL2-2.24.0/include/SDL_filesystem.h +++ b/SDL2-2.26.3/include/SDL_filesystem.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -60,6 +60,10 @@ extern "C" { * - `parent`: the containing directory of the bundle. For example: * `/Applications/SDLApp/` * + * **Nintendo 3DS Specific Functionality**: This function returns "romfs" + * directory of the application as it is uncommon to store resources outside + * the executable. As such it is not a writable directory. + * * The returned path is guaranteed to end with a path separator ('\' on * Windows, '/' on most other platforms). * diff --git a/SDL2-2.24.0/include/SDL_gamecontroller.h b/SDL2-2.26.3/include/SDL_gamecontroller.h similarity index 97% rename from SDL2-2.24.0/include/SDL_gamecontroller.h rename to SDL2-2.26.3/include/SDL_gamecontroller.h index ace1c16..d66e1b0 100644 --- a/SDL2-2.24.0/include/SDL_gamecontroller.h +++ b/SDL2-2.26.3/include/SDL_gamecontroller.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -754,7 +754,7 @@ extern DECLSPEC SDL_GameControllerButton SDLCALL SDL_GameControllerGetButtonFrom * The caller should not SDL_free() the returned string. * * \param button an enum value for a given SDL_GameControllerButton - * \returns a string for the given button, or NULL if an invalid axis is + * \returns a string for the given button, or NULL if an invalid button is * specified. The string returned is of the format used by * SDL_GameController mapping strings. * @@ -895,6 +895,25 @@ extern DECLSPEC float SDLCALL SDL_GameControllerGetSensorDataRate(SDL_GameContro */ extern DECLSPEC int SDLCALL SDL_GameControllerGetSensorData(SDL_GameController *gamecontroller, SDL_SensorType type, float *data, int num_values); +/** + * Get the current state of a game controller sensor with the timestamp of the + * last update. + * + * The number of values and interpretation of the data is sensor dependent. + * See SDL_sensor.h for the details for each type of sensor. + * + * \param gamecontroller The controller to query + * \param type The type of sensor to query + * \param timestamp A pointer filled with the timestamp in microseconds of the + * current sensor reading if available, or 0 if not + * \param data A pointer filled with the current sensor state + * \param num_values The number of values to write to data + * \return 0 or -1 if an error occurred. + * + * \since This function is available since SDL 2.26.0. + */ +extern DECLSPEC int SDLCALL SDL_GameControllerGetSensorDataWithTimestamp(SDL_GameController *gamecontroller, SDL_SensorType type, Uint64 *timestamp, float *data, int num_values); + /** * Start a rumble effect on a game controller. * diff --git a/SDL2-2.24.0/include/SDL_gesture.h b/SDL2-2.26.3/include/SDL_gesture.h similarity index 98% rename from SDL2-2.24.0/include/SDL_gesture.h rename to SDL2-2.26.3/include/SDL_gesture.h index e2caea2..db70b4d 100644 --- a/SDL2-2.24.0/include/SDL_gesture.h +++ b/SDL2-2.26.3/include/SDL_gesture.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_guid.h b/SDL2-2.26.3/include/SDL_guid.h similarity index 98% rename from SDL2-2.24.0/include/SDL_guid.h rename to SDL2-2.26.3/include/SDL_guid.h index b971636..d964223 100644 --- a/SDL2-2.24.0/include/SDL_guid.h +++ b/SDL2-2.26.3/include/SDL_guid.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_haptic.h b/SDL2-2.26.3/include/SDL_haptic.h similarity index 99% rename from SDL2-2.24.0/include/SDL_haptic.h rename to SDL2-2.26.3/include/SDL_haptic.h index f240ae9..2462a1e 100644 --- a/SDL2-2.24.0/include/SDL_haptic.h +++ b/SDL2-2.26.3/include/SDL_haptic.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_hidapi.h b/SDL2-2.26.3/include/SDL_hidapi.h similarity index 99% rename from SDL2-2.24.0/include/SDL_hidapi.h rename to SDL2-2.26.3/include/SDL_hidapi.h index 354af5c..0575100 100644 --- a/SDL2-2.24.0/include/SDL_hidapi.h +++ b/SDL2-2.26.3/include/SDL_hidapi.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_hints.h b/SDL2-2.26.3/include/SDL_hints.h similarity index 93% rename from SDL2-2.24.0/include/SDL_hints.h rename to SDL2-2.26.3/include/SDL_hints.h index e7cddba..1317924 100644 --- a/SDL2-2.24.0/include/SDL_hints.h +++ b/SDL2-2.26.3/include/SDL_hints.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -278,10 +278,7 @@ extern "C" { * If this hint isn't specified to a valid setting, or libsamplerate isn't * available, SDL will use the default, internal resampling algorithm. * - * Note that this is currently only applicable to resampling audio that is - * being written to a device for playback or audio being read from a device - * for capture. SDL_AudioCVT always uses the default resampler (although this - * might change for SDL 2.1). + * As of SDL 2.26, SDL_ConvertAudio() respects this hint when libsamplerate is available. * * This hint is currently only checked at audio subsystem initialization. * @@ -542,6 +539,14 @@ extern "C" { */ #define SDL_HINT_GRAB_KEYBOARD "SDL_GRAB_KEYBOARD" +/** + * \brief A variable containing a list of devices to ignore in SDL_hid_enumerate() + * + * For example, to ignore the Shanwan DS3 controller and any Valve controller, you might + * have the string "0x2563/0x0523,0x28de/0x0000" + */ +#define SDL_HINT_HIDAPI_IGNORE_DEVICES "SDL_HIDAPI_IGNORE_DEVICES" + /** * \brief A variable controlling whether the idle timer is disabled on iOS. * @@ -672,6 +677,17 @@ extern "C" { */ #define SDL_HINT_JOYSTICK_HIDAPI_COMBINE_JOY_CONS "SDL_JOYSTICK_HIDAPI_COMBINE_JOY_CONS" +/** + * \brief A variable controlling whether Nintendo Switch Joy-Con controllers will be in vertical mode when using the HIDAPI driver + * + * This variable can be set to the following values: + * "0" - Left and right Joy-Con controllers will not be in vertical mode (the default) + * "1" - Left and right Joy-Con controllers will be in vertical mode + * + * This hint must be set before calling SDL_Init(SDL_INIT_GAMECONTROLLER) + */ +#define SDL_HINT_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS "SDL_JOYSTICK_HIDAPI_VERTICAL_JOY_CONS" + /** * \brief A variable controlling whether the HIDAPI driver for Amazon Luna controllers connected via Bluetooth should be used. * @@ -705,6 +721,20 @@ extern "C" { */ #define SDL_HINT_JOYSTICK_HIDAPI_SHIELD "SDL_JOYSTICK_HIDAPI_SHIELD" +/** + * \brief A variable controlling whether the HIDAPI driver for PS3 controllers should be used. + * + * This variable can be set to the following values: + * "0" - HIDAPI driver is not used + * "1" - HIDAPI driver is used + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI on macOS, and "0" on other platforms. + * + * It is not possible to use this driver on Windows, due to limitations in the default drivers + * installed. See https://github.com/ViGEm/DsHidMini for an alternative driver on Windows. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_PS3 "SDL_JOYSTICK_HIDAPI_PS3" + /** * \brief A variable controlling whether the HIDAPI driver for PS4 controllers should be used. * @@ -787,7 +817,7 @@ extern "C" { #define SDL_HINT_JOYSTICK_HIDAPI_STADIA "SDL_JOYSTICK_HIDAPI_STADIA" /** - * \brief A variable controlling whether the HIDAPI driver for Steam Controllers should be used. + * \brief A variable controlling whether the HIDAPI driver for Bluetooth Steam Controllers should be used. * * This variable can be set to the following values: * "0" - HIDAPI driver is not used @@ -840,6 +870,26 @@ extern "C" { */ #define SDL_HINT_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED "SDL_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED" +/** + * \brief A variable controlling whether the HIDAPI driver for Nintendo Wii and Wii U controllers should be used. + * + * This variable can be set to the following values: + * "0" - HIDAPI driver is not used + * "1" - HIDAPI driver is used + * + * This driver doesn't work with the dolphinbar, so the default is SDL_FALSE for now. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII "SDL_JOYSTICK_HIDAPI_WII" + +/** + * \brief A variable controlling whether the player LEDs should be lit to indicate which player is associated with a Wii controller. + * + * This variable can be set to the following values: + * "0" - player LEDs are not enabled + * "1" - player LEDs are enabled (the default) + */ +#define SDL_HINT_JOYSTICK_HIDAPI_WII_PLAYER_LED "SDL_JOYSTICK_HIDAPI_WII_PLAYER_LED" + /** * \brief A variable controlling whether the HIDAPI driver for XBox controllers should be used. * @@ -851,6 +901,59 @@ extern "C" { */ #define SDL_HINT_JOYSTICK_HIDAPI_XBOX "SDL_JOYSTICK_HIDAPI_XBOX" +/** + * \brief A variable controlling whether the HIDAPI driver for XBox 360 controllers should be used. + * + * This variable can be set to the following values: + * "0" - HIDAPI driver is not used + * "1" - HIDAPI driver is used + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 "SDL_JOYSTICK_HIDAPI_XBOX_360" + +/** + * \brief A variable controlling whether the player LEDs should be lit to indicate which player is associated with an Xbox 360 controller. + * + * This variable can be set to the following values: + * "0" - player LEDs are not enabled + * "1" - player LEDs are enabled (the default) + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED "SDL_JOYSTICK_HIDAPI_XBOX_360_PLAYER_LED" + +/** + * \brief A variable controlling whether the HIDAPI driver for XBox 360 wireless controllers should be used. + * + * This variable can be set to the following values: + * "0" - HIDAPI driver is not used + * "1" - HIDAPI driver is used + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX_360 + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_360_WIRELESS "SDL_JOYSTICK_HIDAPI_XBOX_360_WIRELESS" + +/** + * \brief A variable controlling whether the HIDAPI driver for XBox One controllers should be used. + * + * This variable can be set to the following values: + * "0" - HIDAPI driver is not used + * "1" - HIDAPI driver is used + * + * The default is the value of SDL_HINT_JOYSTICK_HIDAPI_XBOX + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE "SDL_JOYSTICK_HIDAPI_XBOX_ONE" + +/** + * \brief A variable controlling whether the Home button LED should be turned on when an Xbox One controller is opened + * + * This variable can be set to the following values: + * "0" - home button LED is turned off + * "1" - home button LED is turned on + * + * By default the Home button LED state is not changed. This hint can also be set to a floating point value between 0.0 and 1.0 which controls the brightness of the Home button LED. The default brightness is 0.4. + */ +#define SDL_HINT_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED "SDL_JOYSTICK_HIDAPI_XBOX_ONE_HOME_LED" + /** * \brief A variable controlling whether the RAWINPUT joystick drivers should be used for better handling XInput-capable devices. * @@ -1064,6 +1167,17 @@ extern "C" { */ #define SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE "SDL_MOUSE_RELATIVE_SPEED_SCALE" +/** + * \brief A variable controlling whether the system mouse acceleration curve is used for relative mouse motion. + * + * This variable can be set to the following values: + * "0" - Relative mouse motion will be unscaled (the default) + * "1" - Relative mouse motion will be scaled using the system mouse acceleration curve. + * + * If SDL_HINT_MOUSE_RELATIVE_SPEED_SCALE is set, that will override the system speed scale. + */ +#define SDL_HINT_MOUSE_RELATIVE_SYSTEM_SCALE "SDL_MOUSE_RELATIVE_SYSTEM_SCALE" + /** * \brief A variable controlling whether a motion event should be generated for mouse warping in relative mode. * @@ -1162,7 +1276,7 @@ extern "C" { * When polling for events, SDL_PumpEvents is used to gather new events from devices. * If a device keeps producing new events between calls to SDL_PumpEvents, a poll loop will * become stuck until the new events stop. - * This is most noticable when moving a high frequency mouse. + * This is most noticeable when moving a high frequency mouse. * * By default, poll sentinels are enabled. */ @@ -1338,6 +1452,17 @@ extern "C" { */ #define SDL_HINT_RENDER_VSYNC "SDL_RENDER_VSYNC" +/** + * \brief A variable controlling if VSYNC is automatically disable if doesn't reach the enough FPS + * + * This variable can be set to the following values: + * "0" - It will be using VSYNC as defined in the main flag. Default + * "1" - If VSYNC was previously enabled, then it will disable VSYNC if doesn't reach enough speed + * + * By default SDL does not enable the automatic VSYNC + */ +#define SDL_HINT_PS2_DYNAMIC_VSYNC "SDL_PS2_DYNAMIC_VSYNC" + /** * \brief A variable to control whether the return key on the soft keyboard * should hide the soft keyboard on Android and iOS. @@ -1603,6 +1728,23 @@ extern "C" { */ #define SDL_HINT_VIDEO_WAYLAND_MODE_EMULATION "SDL_VIDEO_WAYLAND_MODE_EMULATION" +/** + * \brief Enable or disable mouse pointer warp emulation, needed by some older games. + * + * When this hint is set, any SDL will emulate mouse warps using relative mouse mode. + * This is required for some older games (such as Source engine games), which warp the + * mouse to the centre of the screen rather than using relative mouse motion. Note that + * relative mouse mode may have different mouse acceleration behaviour than pointer warps. + * + * This variable can be set to the following values: + * "0" - All mouse warps fail, as mouse warping is not available under wayland. + * "1" - Some mouse warps will be emulated by forcing relative mouse mode. + * + * If not set, this is automatically enabled unless an application uses relative mouse + * mode directly. + */ +#define SDL_HINT_VIDEO_WAYLAND_EMULATE_MOUSE_WARP "SDL_VIDEO_WAYLAND_EMULATE_MOUSE_WARP" + /** * \brief A variable that is the address of another SDL_Window* (as a hex string formatted with "%p"). * @@ -2314,6 +2456,21 @@ extern DECLSPEC SDL_bool SDLCALL SDL_SetHint(const char *name, */ extern DECLSPEC SDL_bool SDLCALL SDL_ResetHint(const char *name); +/** + * Reset all hints to the default values. + * + * This will reset all hints to the value of the associated environment + * variable, or NULL if the environment isn't set. Callbacks will be called + * normally with this change. + * + * \since This function is available since SDL 2.26.0. + * + * \sa SDL_GetHint + * \sa SDL_SetHint + * \sa SDL_ResetHint + */ +extern DECLSPEC void SDLCALL SDL_ResetHints(void); + /** * Get the value of a hint. * @@ -2387,9 +2544,16 @@ extern DECLSPEC void SDLCALL SDL_DelHintCallback(const char *name, /** * Clear all hints. * - * This function is automatically called during SDL_Quit(). + * This function is automatically called during SDL_Quit(), and deletes all + * callbacks without calling them and frees all memory associated with hints. + * If you're calling this from application code you probably want to call + * SDL_ResetHints() instead. + * + * This function will be removed from the API the next time we rev the ABI. * * \since This function is available since SDL 2.0.0. + * + * \sa SDL_ResetHints */ extern DECLSPEC void SDLCALL SDL_ClearHints(void); diff --git a/SDL2-2.24.0/include/SDL_joystick.h b/SDL2-2.26.3/include/SDL_joystick.h similarity index 96% rename from SDL2-2.24.0/include/SDL_joystick.h rename to SDL2-2.26.3/include/SDL_joystick.h index 1a7c66e..07d6a2e 100644 --- a/SDL2-2.24.0/include/SDL_joystick.h +++ b/SDL2-2.26.3/include/SDL_joystick.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -124,6 +124,11 @@ typedef enum * the API functions that take a joystick index will be valid, and joystick * and game controller events will not be delivered. * + * As of SDL 2.26.0, you can take the joystick lock around reinitializing the + * joystick subsystem, to prevent other threads from seeing joysticks in an + * uninitialized state. However, all open joysticks will be closed and SDL + * functions called with them will fail. + * * \since This function is available since SDL 2.0.7. */ extern DECLSPEC void SDLCALL SDL_LockJoysticks(void); @@ -425,6 +430,10 @@ extern DECLSPEC SDL_bool SDLCALL SDL_JoystickIsVirtual(int device_index); * the following: SDL_PollEvent, SDL_PumpEvents, SDL_WaitEventTimeout, * SDL_WaitEvent. * + * Note that when sending trigger axes, you should scale the value to the full + * range of Sint16. For example, a trigger at rest would have the value of + * `SDL_JOYSTICK_AXIS_MIN`. + * * \param joystick the virtual joystick on which to set state. * \param axis the specific axis on the virtual joystick to set. * \param value the new value for the specified axis. @@ -643,6 +652,25 @@ extern DECLSPEC void SDLCALL SDL_JoystickGetGUIDString(SDL_JoystickGUID guid, ch */ extern DECLSPEC SDL_JoystickGUID SDLCALL SDL_JoystickGetGUIDFromString(const char *pchGUID); +/** + * Get the device information encoded in a SDL_JoystickGUID structure + * + * \param guid the SDL_JoystickGUID you wish to get info about + * \param vendor A pointer filled in with the device VID, or 0 if not + * available + * \param product A pointer filled in with the device PID, or 0 if not + * available + * \param version A pointer filled in with the device version, or 0 if not + * available + * \param crc16 A pointer filled in with a CRC used to distinguish different + * products with the same VID/PID, or 0 if not available + * + * \since This function is available since SDL 2.26.0. + * + * \sa SDL_JoystickGetDeviceGUID + */ +extern DECLSPEC void SDLCALL SDL_GetJoystickGUIDInfo(SDL_JoystickGUID guid, Uint16 *vendor, Uint16 *product, Uint16 *version, Uint16 *crc16); + /** * Get the status of a specified joystick. * diff --git a/SDL2-2.24.0/include/SDL_keyboard.h b/SDL2-2.26.3/include/SDL_keyboard.h similarity index 99% rename from SDL2-2.24.0/include/SDL_keyboard.h rename to SDL2-2.26.3/include/SDL_keyboard.h index e7663fb..86a37ad 100644 --- a/SDL2-2.24.0/include/SDL_keyboard.h +++ b/SDL2-2.26.3/include/SDL_keyboard.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_keycode.h b/SDL2-2.26.3/include/SDL_keycode.h similarity index 99% rename from SDL2-2.24.0/include/SDL_keycode.h rename to SDL2-2.26.3/include/SDL_keycode.h index 65420f2..2523506 100644 --- a/SDL2-2.24.0/include/SDL_keycode.h +++ b/SDL2-2.26.3/include/SDL_keycode.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_loadso.h b/SDL2-2.26.3/include/SDL_loadso.h similarity index 98% rename from SDL2-2.24.0/include/SDL_loadso.h rename to SDL2-2.26.3/include/SDL_loadso.h index 61857c8..ca59b68 100644 --- a/SDL2-2.24.0/include/SDL_loadso.h +++ b/SDL2-2.26.3/include/SDL_loadso.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_locale.h b/SDL2-2.26.3/include/SDL_locale.h similarity index 98% rename from SDL2-2.24.0/include/SDL_locale.h rename to SDL2-2.26.3/include/SDL_locale.h index 7515779..482dbef 100644 --- a/SDL2-2.24.0/include/SDL_locale.h +++ b/SDL2-2.26.3/include/SDL_locale.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_log.h b/SDL2-2.26.3/include/SDL_log.h similarity index 99% rename from SDL2-2.24.0/include/SDL_log.h rename to SDL2-2.26.3/include/SDL_log.h index 1d8b20b..da733c4 100644 --- a/SDL2-2.24.0/include/SDL_log.h +++ b/SDL2-2.26.3/include/SDL_log.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_main.h b/SDL2-2.26.3/include/SDL_main.h similarity index 97% rename from SDL2-2.24.0/include/SDL_main.h rename to SDL2-2.26.3/include/SDL_main.h index 8b26708..14d39f1 100644 --- a/SDL2-2.24.0/include/SDL_main.h +++ b/SDL2-2.26.3/include/SDL_main.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -108,6 +108,15 @@ void reset_IOP(); \ void reset_IOP() {} +#elif defined(__3DS__) +/* + On N3DS, SDL provides a main function that sets up the screens + and storage. + + If you provide this yourself, you may define SDL_MAIN_HANDLED +*/ +#define SDL_MAIN_AVAILABLE + #endif #endif /* SDL_MAIN_HANDLED */ diff --git a/SDL2-2.24.0/include/SDL_messagebox.h b/SDL2-2.26.3/include/SDL_messagebox.h similarity index 99% rename from SDL2-2.24.0/include/SDL_messagebox.h rename to SDL2-2.26.3/include/SDL_messagebox.h index d763534..7896fd1 100644 --- a/SDL2-2.24.0/include/SDL_messagebox.h +++ b/SDL2-2.26.3/include/SDL_messagebox.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_metal.h b/SDL2-2.26.3/include/SDL_metal.h similarity index 97% rename from SDL2-2.24.0/include/SDL_metal.h rename to SDL2-2.26.3/include/SDL_metal.h index eb30828..f36e348 100644 --- a/SDL2-2.24.0/include/SDL_metal.h +++ b/SDL2-2.26.3/include/SDL_metal.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -82,7 +82,7 @@ extern DECLSPEC void SDLCALL SDL_Metal_DestroyView(SDL_MetalView view); * * \since This function is available since SDL 2.0.14. * - * \sa SDL_MetalCreateView + * \sa SDL_Metal_CreateView */ extern DECLSPEC void *SDLCALL SDL_Metal_GetLayer(SDL_MetalView view); diff --git a/SDL2-2.24.0/include/SDL_misc.h b/SDL2-2.26.3/include/SDL_misc.h similarity index 97% rename from SDL2-2.24.0/include/SDL_misc.h rename to SDL2-2.26.3/include/SDL_misc.h index 261b6b8..13ed9c7 100644 --- a/SDL2-2.24.0/include/SDL_misc.h +++ b/SDL2-2.26.3/include/SDL_misc.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_mouse.h b/SDL2-2.26.3/include/SDL_mouse.h similarity index 99% rename from SDL2-2.24.0/include/SDL_mouse.h rename to SDL2-2.26.3/include/SDL_mouse.h index b318c70..c5712ef 100644 --- a/SDL2-2.24.0/include/SDL_mouse.h +++ b/SDL2-2.26.3/include/SDL_mouse.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_mutex.h b/SDL2-2.26.3/include/SDL_mutex.h similarity index 99% rename from SDL2-2.24.0/include/SDL_mutex.h rename to SDL2-2.26.3/include/SDL_mutex.h index 173468f..54b6a53 100644 --- a/SDL2-2.24.0/include/SDL_mutex.h +++ b/SDL2-2.26.3/include/SDL_mutex.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_name.h b/SDL2-2.26.3/include/SDL_name.h similarity index 94% rename from SDL2-2.24.0/include/SDL_name.h rename to SDL2-2.26.3/include/SDL_name.h index 6ff35b4..5c3e07a 100644 --- a/SDL2-2.24.0/include/SDL_name.h +++ b/SDL2-2.26.3/include/SDL_name.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_opengl.h b/SDL2-2.26.3/include/SDL_opengl.h similarity index 98% rename from SDL2-2.24.0/include/SDL_opengl.h rename to SDL2-2.26.3/include/SDL_opengl.h index 9aed503..0ba8912 100644 --- a/SDL2-2.24.0/include/SDL_opengl.h +++ b/SDL2-2.26.3/include/SDL_opengl.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -2107,57 +2107,6 @@ typedef void (APIENTRYP PFNGLMULTITEXCOORD4SVARBPROC) (GLenum target, const GLsh -/* - * ???. GL_MESA_packed_depth_stencil - * XXX obsolete - */ -#ifndef GL_MESA_packed_depth_stencil -#define GL_MESA_packed_depth_stencil 1 - -#define GL_DEPTH_STENCIL_MESA 0x8750 -#define GL_UNSIGNED_INT_24_8_MESA 0x8751 -#define GL_UNSIGNED_INT_8_24_REV_MESA 0x8752 -#define GL_UNSIGNED_SHORT_15_1_MESA 0x8753 -#define GL_UNSIGNED_SHORT_1_15_REV_MESA 0x8754 - -#endif /* GL_MESA_packed_depth_stencil */ - - -#ifndef GL_ATI_blend_equation_separate -#define GL_ATI_blend_equation_separate 1 - -#define GL_ALPHA_BLEND_EQUATION_ATI 0x883D - -GLAPI void GLAPIENTRY glBlendEquationSeparateATI( GLenum modeRGB, GLenum modeA ); -typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEATIPROC) (GLenum modeRGB, GLenum modeA); - -#endif /* GL_ATI_blend_equation_separate */ - - -/* GL_OES_EGL_image */ -#ifndef GL_OES_EGL_image -typedef void* GLeglImageOES; -#endif - -#ifndef GL_OES_EGL_image -#define GL_OES_EGL_image 1 -#ifdef GL_GLEXT_PROTOTYPES -GLAPI void APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); -GLAPI void APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); -#endif -typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); -typedef void (APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image); -#endif - - -/** - ** NOTE!!!!! If you add new functions to this file, or update - ** glext.h be sure to regenerate the gl_mangle.h file. See comments - ** in that file for details. - **/ - - - /********************************************************************** * Begin system-specific stuff */ diff --git a/SDL2-2.24.0/include/SDL_opengl_glext.h b/SDL2-2.26.3/include/SDL_opengl_glext.h similarity index 84% rename from SDL2-2.24.0/include/SDL_opengl_glext.h rename to SDL2-2.26.3/include/SDL_opengl_glext.h index 6a402b1..8527e17 100644 --- a/SDL2-2.24.0/include/SDL_opengl_glext.h +++ b/SDL2-2.26.3/include/SDL_opengl_glext.h @@ -1,12 +1,45 @@ -#ifndef __glext_h_ -#define __glext_h_ 1 +#ifndef __gl_glext_h_ +#define __gl_glext_h_ 1 #ifdef __cplusplus extern "C" { #endif /* -** Copyright (c) 2013-2014 The Khronos Group Inc. +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN 1 +#endif +#include +#endif + +#ifndef APIENTRY +#define APIENTRY +#endif +#ifndef APIENTRYP +#define APIENTRYP APIENTRY * +#endif +#ifndef GLAPI +#define GLAPI extern +#endif + +#define GL_GLEXT_VERSION 20220530 + +/*#include */ +#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 @@ -27,36 +60,292 @@ extern "C" { ** 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__) + + /* -** This header is generated from the Khronos OpenGL / OpenGL ES XML -** API Registry. The current version of the Registry, generator scripts -** used to make the header, and the header can be found at -** http://www.opengl.org/registry/ -** -** Khronos $Revision: 26745 $ on $Date: 2014-05-21 03:12:26 -0700 (Wed, 21 May 2014) $ -*/ - -#if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__) -#ifndef WIN32_LEAN_AND_MEAN -#define WIN32_LEAN_AND_MEAN 1 + * 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 -#ifndef NOMINMAX /* don't define min() and max(). */ -#define NOMINMAX -#endif -#include #endif -#ifndef APIENTRY -#define APIENTRY -#endif -#ifndef APIENTRYP -#define APIENTRYP APIENTRY * -#endif -#ifndef GLAPI -#define GLAPI extern +#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 -#define GL_GLEXT_VERSION 20140521 + +/* + * 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_ */ /* Generated C header for: * API: gl @@ -358,15 +647,17 @@ GLAPI void APIENTRY glMultTransposeMatrixd (const GLdouble *m); #define GL_TEXTURE_FILTER_CONTROL 0x8500 #define GL_DEPTH_TEXTURE_MODE 0x884B #define GL_COMPARE_R_TO_TEXTURE 0x884E -#define GL_FUNC_ADD 0x8006 -#define GL_FUNC_SUBTRACT 0x800A -#define GL_FUNC_REVERSE_SUBTRACT 0x800B -#define GL_MIN 0x8007 -#define GL_MAX 0x8008 +#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 typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei drawcount); typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount); @@ -467,14 +758,8 @@ GLAPI void APIENTRY glBlendEquation (GLenum mode); #ifndef GL_VERSION_1_5 #define GL_VERSION_1_5 1 -#include -#ifdef __MACOSX__ -typedef long GLsizeiptr; -typedef long GLintptr; -#else -typedef ptrdiff_t GLsizeiptr; -typedef ptrdiff_t GLintptr; -#endif +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; #define GL_BUFFER_SIZE 0x8764 #define GL_BUFFER_USAGE 0x8765 #define GL_QUERY_COUNTER_BITS 0x8864 @@ -887,7 +1172,7 @@ GLAPI void APIENTRY glUniformMatrix4x3fv (GLint location, GLsizei count, GLboole #ifndef GL_VERSION_3_0 #define GL_VERSION_3_0 1 -typedef unsigned short GLhalf; +typedef khronos_uint16_t GLhalf; #define GL_COMPARE_REF_TO_TEXTURE 0x884E #define GL_CLIP_DISTANCE0 0x3000 #define GL_CLIP_DISTANCE1 0x3001 @@ -1049,6 +1334,22 @@ typedef unsigned short GLhalf; #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 @@ -1316,11 +1617,13 @@ GLAPI GLboolean APIENTRY glIsVertexArray (GLuint array); #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 @@ -1339,6 +1642,7 @@ GLAPI GLboolean APIENTRY glIsVertexArray (GLuint array); #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 0xFFFFFFFFu typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount); @@ -1372,45 +1676,8 @@ GLAPI void APIENTRY glUniformBlockBinding (GLuint program, GLuint uniformBlockIn #ifndef GL_VERSION_3_2 #define GL_VERSION_3_2 1 typedef struct __GLsync *GLsync; -#ifndef GLEXT_64_TYPES_DEFINED -/* This code block is duplicated in glxext.h, so must be protected */ -#define GLEXT_64_TYPES_DEFINED -/* Define int32_t, int64_t, and uint64_t types for UST/MSC */ -/* (as used in the GL_EXT_timer_query extension). */ -#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L -#include -#elif defined(__sun__) || defined(__digital__) -#include -#if defined(__STDC__) -#if defined(__arch64__) || defined(_LP64) -typedef long int int64_t; -typedef unsigned long int uint64_t; -#else -typedef long long int int64_t; -typedef unsigned long long int uint64_t; -#endif /* __arch64__ */ -#endif /* __STDC__ */ -#elif defined( __VMS ) || defined(__sgi) -#include -#elif defined(__SCO__) || defined(__USLC__) -#include -#elif defined(__UNIXOS2__) || defined(__SOL64__) -typedef long int int32_t; -typedef long long int int64_t; -typedef unsigned long long int uint64_t; -#elif defined(_WIN32) && defined(__GNUC__) -#include -#elif defined(_WIN32) -typedef __int32 int32_t; -typedef __int64 int64_t; -typedef unsigned __int64 uint64_t; -#else -/* Fallback if nothing above works */ -#include -#endif -#endif -typedef uint64_t GLuint64; -typedef int64_t GLint64; +typedef khronos_uint64_t GLuint64; +typedef khronos_int64_t GLint64; #define GL_CONTEXT_CORE_PROFILE_BIT 0x00000001 #define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x00000002 #define GL_LINES_ADJACENCY 0x000A @@ -1486,7 +1753,7 @@ typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync); typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *data); -typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data); typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 *params); typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); @@ -1506,7 +1773,7 @@ GLAPI void APIENTRY glDeleteSync (GLsync sync); GLAPI GLenum APIENTRY glClientWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); GLAPI void APIENTRY glWaitSync (GLsync sync, GLbitfield flags, GLuint64 timeout); GLAPI void APIENTRY glGetInteger64v (GLenum pname, GLint64 *data); -GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +GLAPI void APIENTRY glGetSynciv (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); GLAPI void APIENTRY glGetInteger64i_v (GLenum target, GLuint index, GLint64 *data); GLAPI void APIENTRY glGetBufferParameteri64v (GLenum target, GLenum pname, GLint64 *params); GLAPI void APIENTRY glFramebufferTexture (GLenum target, GLenum attachment, GLuint texture, GLint level); @@ -1762,8 +2029,8 @@ typedef void (APIENTRYP PFNGLGETUNIFORMDVPROC) (GLuint program, GLint location, typedef GLint (APIENTRYP PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC) (GLuint program, GLenum shadertype, const GLchar *name); typedef GLuint (APIENTRYP PFNGLGETSUBROUTINEINDEXPROC) (GLuint program, GLenum shadertype, const GLchar *name); typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); -typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name); -typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); typedef void (APIENTRYP PFNGLUNIFORMSUBROUTINESUIVPROC) (GLenum shadertype, GLsizei count, const GLuint *indices); typedef void (APIENTRYP PFNGLGETUNIFORMSUBROUTINEUIVPROC) (GLenum shadertype, GLint location, GLuint *params); typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum pname, GLint *values); @@ -1809,8 +2076,8 @@ GLAPI void APIENTRY glGetUniformdv (GLuint program, GLint location, GLdouble *pa GLAPI GLint APIENTRY glGetSubroutineUniformLocation (GLuint program, GLenum shadertype, const GLchar *name); GLAPI GLuint APIENTRY glGetSubroutineIndex (GLuint program, GLenum shadertype, const GLchar *name); GLAPI void APIENTRY glGetActiveSubroutineUniformiv (GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values); -GLAPI void APIENTRY glGetActiveSubroutineUniformName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name); -GLAPI void APIENTRY glGetActiveSubroutineName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineUniformName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); +GLAPI void APIENTRY glGetActiveSubroutineName (GLuint program, GLenum shadertype, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); GLAPI void APIENTRY glUniformSubroutinesuiv (GLenum shadertype, GLsizei count, const GLuint *indices); GLAPI void APIENTRY glGetUniformSubroutineuiv (GLenum shadertype, GLint location, GLuint *params); GLAPI void APIENTRY glGetProgramStageiv (GLuint program, GLenum shadertype, GLenum pname, GLint *values); @@ -1868,7 +2135,7 @@ GLAPI void APIENTRY glGetQueryIndexediv (GLenum target, GLuint index, GLenum pna #define GL_VIEWPORT_INDEX_PROVOKING_VERTEX 0x825F #define GL_UNDEFINED_VERTEX 0x8260 typedef void (APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); -typedef void (APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); +typedef void (APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); typedef void (APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); typedef void (APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); typedef void (APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); @@ -1957,7 +2224,7 @@ typedef void (APIENTRYP PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfl typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble *data); #ifdef GL_GLEXT_PROTOTYPES GLAPI void APIENTRY glReleaseShaderCompiler (void); -GLAPI void APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryformat, const void *binary, GLsizei length); +GLAPI void APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); GLAPI void APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); GLAPI void APIENTRY glDepthRangef (GLfloat n, GLfloat f); GLAPI void APIENTRY glClearDepthf (GLfloat d); @@ -2049,6 +2316,10 @@ GLAPI void APIENTRY glGetDoublei_v (GLenum target, GLuint index, GLdouble *data) #ifndef GL_VERSION_4_2 #define GL_VERSION_4_2 1 +#define GL_COPY_READ_BUFFER_BINDING 0x8F36 +#define GL_COPY_WRITE_BUFFER_BINDING 0x8F37 +#define GL_TRANSFORM_FEEDBACK_ACTIVE 0x8E24 +#define GL_TRANSFORM_FEEDBACK_PAUSED 0x8E23 #define GL_UNPACK_COMPRESSED_BLOCK_WIDTH 0x9127 #define GL_UNPACK_COMPRESSED_BLOCK_HEIGHT 0x9128 #define GL_UNPACK_COMPRESSED_BLOCK_DEPTH 0x9129 @@ -2160,7 +2431,7 @@ GLAPI void APIENTRY glGetDoublei_v (GLenum target, GLuint index, GLdouble *data) typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); -typedef void (APIENTRYP PFNGLGETINTERNALFORMATIVPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATIVPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); typedef void (APIENTRYP PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC) (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREPROC) (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); typedef void (APIENTRYP PFNGLMEMORYBARRIERPROC) (GLbitfield barriers); @@ -2173,7 +2444,7 @@ typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC) (GLenum m GLAPI void APIENTRY glDrawArraysInstancedBaseInstance (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); GLAPI void APIENTRY glDrawElementsInstancedBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); GLAPI void APIENTRY glDrawElementsInstancedBaseVertexBaseInstance (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); -GLAPI void APIENTRY glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint *params); GLAPI void APIENTRY glGetActiveAtomicCounterBufferiv (GLuint program, GLuint bufferIndex, GLenum pname, GLint *params); GLAPI void APIENTRY glBindImageTexture (GLuint unit, GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum access, GLenum format); GLAPI void APIENTRY glMemoryBarrier (GLbitfield barriers); @@ -2220,6 +2491,7 @@ typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum #define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER 0x90ED #define GL_DISPATCH_INDIRECT_BUFFER 0x90EE #define GL_DISPATCH_INDIRECT_BUFFER_BINDING 0x90EF +#define GL_COMPUTE_SHADER_BIT 0x00000020 #define GL_DEBUG_OUTPUT_SYNCHRONOUS 0x8242 #define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH 0x8243 #define GL_DEBUG_CALLBACK_FUNCTION 0x8244 @@ -2453,7 +2725,7 @@ typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEINDIRECTPROC) (GLintptr indirect); typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATAPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); -typedef void (APIENTRYP PFNGLGETINTERNALFORMATI64VPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint64 *params); +typedef void (APIENTRYP PFNGLGETINTERNALFORMATI64VPROC) (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); typedef void (APIENTRYP PFNGLINVALIDATETEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); typedef void (APIENTRYP PFNGLINVALIDATETEXIMAGEPROC) (GLuint texture, GLint level); typedef void (APIENTRYP PFNGLINVALIDATEBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); @@ -2465,7 +2737,7 @@ typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum typedef void (APIENTRYP PFNGLGETPROGRAMINTERFACEIVPROC) (GLuint program, GLenum programInterface, GLenum pname, GLint *params); typedef GLuint (APIENTRYP PFNGLGETPROGRAMRESOURCEINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCENAMEPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); -typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEIVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEIVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONPROC) (GLuint program, GLenum programInterface, const GLchar *name); typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC) (GLuint program, GLenum programInterface, const GLchar *name); typedef void (APIENTRYP PFNGLSHADERSTORAGEBLOCKBINDINGPROC) (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); @@ -2497,7 +2769,7 @@ GLAPI void APIENTRY glDispatchComputeIndirect (GLintptr indirect); GLAPI void APIENTRY glCopyImageSubData (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); GLAPI void APIENTRY glFramebufferParameteri (GLenum target, GLenum pname, GLint param); GLAPI void APIENTRY glGetFramebufferParameteriv (GLenum target, GLenum pname, GLint *params); -GLAPI void APIENTRY glGetInternalformati64v (GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint64 *params); +GLAPI void APIENTRY glGetInternalformati64v (GLenum target, GLenum internalformat, GLenum pname, GLsizei count, GLint64 *params); GLAPI void APIENTRY glInvalidateTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth); GLAPI void APIENTRY glInvalidateTexImage (GLuint texture, GLint level); GLAPI void APIENTRY glInvalidateBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr length); @@ -2509,7 +2781,7 @@ GLAPI void APIENTRY glMultiDrawElementsIndirect (GLenum mode, GLenum type, const GLAPI void APIENTRY glGetProgramInterfaceiv (GLuint program, GLenum programInterface, GLenum pname, GLint *params); GLAPI GLuint APIENTRY glGetProgramResourceIndex (GLuint program, GLenum programInterface, const GLchar *name); GLAPI void APIENTRY glGetProgramResourceName (GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name); -GLAPI void APIENTRY glGetProgramResourceiv (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params); +GLAPI void APIENTRY glGetProgramResourceiv (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLint *params); GLAPI GLint APIENTRY glGetProgramResourceLocation (GLuint program, GLenum programInterface, const GLchar *name); GLAPI GLint APIENTRY glGetProgramResourceLocationIndex (GLuint program, GLenum programInterface, const GLchar *name); GLAPI void APIENTRY glShaderStorageBlockBinding (GLuint program, GLuint storageBlockIndex, GLuint storageBlockBinding); @@ -2579,10 +2851,345 @@ GLAPI void APIENTRY glBindVertexBuffers (GLuint first, GLsizei count, const GLui #endif #endif /* GL_VERSION_4_4 */ +#ifndef GL_VERSION_4_5 +#define GL_VERSION_4_5 1 +#define GL_CONTEXT_LOST 0x0507 +#define GL_NEGATIVE_ONE_TO_ONE 0x935E +#define GL_ZERO_TO_ONE 0x935F +#define GL_CLIP_ORIGIN 0x935C +#define GL_CLIP_DEPTH_MODE 0x935D +#define GL_QUERY_WAIT_INVERTED 0x8E17 +#define GL_QUERY_NO_WAIT_INVERTED 0x8E18 +#define GL_QUERY_BY_REGION_WAIT_INVERTED 0x8E19 +#define GL_QUERY_BY_REGION_NO_WAIT_INVERTED 0x8E1A +#define GL_MAX_CULL_DISTANCES 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES 0x82FA +#define GL_TEXTURE_TARGET 0x1006 +#define GL_QUERY_TARGET 0x82EA +#define GL_GUILTY_CONTEXT_RESET 0x8253 +#define GL_INNOCENT_CONTEXT_RESET 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET 0x8252 +#define GL_NO_RESET_NOTIFICATION 0x8261 +#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT 0x00000004 +#define GL_COLOR_TABLE 0x80D0 +#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 +#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 +#define GL_PROXY_COLOR_TABLE 0x80D3 +#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 +#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 +#define GL_CONVOLUTION_1D 0x8010 +#define GL_CONVOLUTION_2D 0x8011 +#define GL_SEPARABLE_2D 0x8012 +#define GL_HISTOGRAM 0x8024 +#define GL_PROXY_HISTOGRAM 0x8025 +#define GL_MINMAX 0x802E +#define GL_CONTEXT_RELEASE_BEHAVIOR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x82FC +typedef void (APIENTRYP PFNGLCLIPCONTROLPROC) (GLenum origin, GLenum depth); +typedef void (APIENTRYP PFNGLCREATETRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERBASEPROC) (GLuint xfb, GLuint index, GLuint buffer); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKBUFFERRANGEPROC) (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKIVPROC) (GLuint xfb, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint *param); +typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKI64_VPROC) (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATEBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERDATAPROC) (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLCOPYNAMEDBUFFERSUBDATAPROC) (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAPROC) (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERPROC) (GLuint buffer, GLenum access); +typedef void *(APIENTRYP PFNGLMAPNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef GLboolean (APIENTRYP PFNGLUNMAPNAMEDBUFFERPROC) (GLuint buffer); +typedef void (APIENTRYP PFNGLFLUSHMAPPEDNAMEDBUFFERRANGEPROC) (GLuint buffer, GLintptr offset, GLsizeiptr length); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERIVPROC) (GLuint buffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPARAMETERI64VPROC) (GLuint buffer, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERPOINTERVPROC) (GLuint buffer, GLenum pname, void **params); +typedef void (APIENTRYP PFNGLGETNAMEDBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +typedef void (APIENTRYP PFNGLCREATEFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERRENDERBUFFERPROC) (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIPROC) (GLuint framebuffer, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTUREPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERTEXTURELAYERPROC) (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERPROC) (GLuint framebuffer, GLenum buf); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERDRAWBUFFERSPROC) (GLuint framebuffer, GLsizei n, const GLenum *bufs); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERREADBUFFERPROC) (GLuint framebuffer, GLenum src); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +typedef void (APIENTRYP PFNGLINVALIDATENAMEDFRAMEBUFFERSUBDATAPROC) (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERUIVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFVPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +typedef void (APIENTRYP PFNGLCLEARNAMEDFRAMEBUFFERFIPROC) (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +typedef void (APIENTRYP PFNGLBLITNAMEDFRAMEBUFFERPROC) (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef GLenum (APIENTRYP PFNGLCHECKNAMEDFRAMEBUFFERSTATUSPROC) (GLuint framebuffer, GLenum target); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVPROC) (GLuint framebuffer, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATERENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEPROC) (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLGETNAMEDRENDERBUFFERPARAMETERIVPROC) (GLuint renderbuffer, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATETEXTURESPROC) (GLenum target, GLsizei n, GLuint *textures); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERPROC) (GLuint texture, GLenum internalformat, GLuint buffer); +typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEPROC) (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DPROC) (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEPROC) (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOMPRESSEDTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE1DPROC) (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE2DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLCOPYTEXTURESUBIMAGE3DPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFPROC) (GLuint texture, GLenum pname, GLfloat param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, const GLfloat *param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIPROC) (GLuint texture, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, const GLuint *params); +typedef void (APIENTRYP PFNGLTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, const GLint *param); +typedef void (APIENTRYP PFNGLGENERATETEXTUREMIPMAPPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLBINDTEXTUREUNITPROC) (GLuint unit, GLuint texture); +typedef void (APIENTRYP PFNGLGETTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTUREIMAGEPROC) (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERFVPROC) (GLuint texture, GLint level, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTURELEVELPARAMETERIVPROC) (GLuint texture, GLint level, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERFVPROC) (GLuint texture, GLenum pname, GLfloat *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIUIVPROC) (GLuint texture, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLGETTEXTUREPARAMETERIVPROC) (GLuint texture, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLCREATEVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays); +typedef void (APIENTRYP PFNGLDISABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLENABLEVERTEXARRAYATTRIBPROC) (GLuint vaobj, GLuint index); +typedef void (APIENTRYP PFNGLVERTEXARRAYELEMENTBUFFERPROC) (GLuint vaobj, GLuint buffer); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERPROC) (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBUFFERSPROC) (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBBINDINGPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBIFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYATTRIBLFORMATPROC) (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +typedef void (APIENTRYP PFNGLVERTEXARRAYBINDINGDIVISORPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYIVPROC) (GLuint vaobj, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXEDIVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +typedef void (APIENTRYP PFNGLGETVERTEXARRAYINDEXED64IVPROC) (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +typedef void (APIENTRYP PFNGLCREATESAMPLERSPROC) (GLsizei n, GLuint *samplers); +typedef void (APIENTRYP PFNGLCREATEPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines); +typedef void (APIENTRYP PFNGLCREATEQUERIESPROC) (GLenum target, GLsizei n, GLuint *ids); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUI64VPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLGETQUERYBUFFEROBJECTUIVPROC) (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +typedef void (APIENTRYP PFNGLMEMORYBARRIERBYREGIONPROC) (GLbitfield barriers); +typedef void (APIENTRYP PFNGLGETTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXTURESUBIMAGEPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSPROC) (void); +typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNTEXIMAGEPROC) (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +typedef void (APIENTRYP PFNGLGETNUNIFORMDVPROC) (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMFVPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUIVPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +typedef void (APIENTRYP PFNGLREADNPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (APIENTRYP PFNGLGETNMAPDVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +typedef void (APIENTRYP PFNGLGETNMAPFVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLGETNMAPIVPROC) (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +typedef void (APIENTRYP PFNGLGETNPIXELMAPFVPROC) (GLenum map, GLsizei bufSize, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUIVPROC) (GLenum map, GLsizei bufSize, GLuint *values); +typedef void (APIENTRYP PFNGLGETNPIXELMAPUSVPROC) (GLenum map, GLsizei bufSize, GLushort *values); +typedef void (APIENTRYP PFNGLGETNPOLYGONSTIPPLEPROC) (GLsizei bufSize, GLubyte *pattern); +typedef void (APIENTRYP PFNGLGETNCOLORTABLEPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +typedef void (APIENTRYP PFNGLGETNCONVOLUTIONFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +typedef void (APIENTRYP PFNGLGETNSEPARABLEFILTERPROC) (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +typedef void (APIENTRYP PFNGLGETNHISTOGRAMPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLGETNMINMAXPROC) (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +typedef void (APIENTRYP PFNGLTEXTUREBARRIERPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glClipControl (GLenum origin, GLenum depth); +GLAPI void APIENTRY glCreateTransformFeedbacks (GLsizei n, GLuint *ids); +GLAPI void APIENTRY glTransformFeedbackBufferBase (GLuint xfb, GLuint index, GLuint buffer); +GLAPI void APIENTRY glTransformFeedbackBufferRange (GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glGetTransformFeedbackiv (GLuint xfb, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki_v (GLuint xfb, GLenum pname, GLuint index, GLint *param); +GLAPI void APIENTRY glGetTransformFeedbacki64_v (GLuint xfb, GLenum pname, GLuint index, GLint64 *param); +GLAPI void APIENTRY glCreateBuffers (GLsizei n, GLuint *buffers); +GLAPI void APIENTRY glNamedBufferStorage (GLuint buffer, GLsizeiptr size, const void *data, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferData (GLuint buffer, GLsizeiptr size, const void *data, GLenum usage); +GLAPI void APIENTRY glNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glCopyNamedBufferSubData (GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glClearNamedBufferData (GLuint buffer, GLenum internalformat, GLenum format, GLenum type, const void *data); +GLAPI void APIENTRY glClearNamedBufferSubData (GLuint buffer, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data); +GLAPI void *APIENTRY glMapNamedBuffer (GLuint buffer, GLenum access); +GLAPI void *APIENTRY glMapNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length, GLbitfield access); +GLAPI GLboolean APIENTRY glUnmapNamedBuffer (GLuint buffer); +GLAPI void APIENTRY glFlushMappedNamedBufferRange (GLuint buffer, GLintptr offset, GLsizeiptr length); +GLAPI void APIENTRY glGetNamedBufferParameteriv (GLuint buffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetNamedBufferParameteri64v (GLuint buffer, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glGetNamedBufferPointerv (GLuint buffer, GLenum pname, void **params); +GLAPI void APIENTRY glGetNamedBufferSubData (GLuint buffer, GLintptr offset, GLsizeiptr size, void *data); +GLAPI void APIENTRY glCreateFramebuffers (GLsizei n, GLuint *framebuffers); +GLAPI void APIENTRY glNamedFramebufferRenderbuffer (GLuint framebuffer, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GLAPI void APIENTRY glNamedFramebufferParameteri (GLuint framebuffer, GLenum pname, GLint param); +GLAPI void APIENTRY glNamedFramebufferTexture (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level); +GLAPI void APIENTRY glNamedFramebufferTextureLayer (GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); +GLAPI void APIENTRY glNamedFramebufferDrawBuffer (GLuint framebuffer, GLenum buf); +GLAPI void APIENTRY glNamedFramebufferDrawBuffers (GLuint framebuffer, GLsizei n, const GLenum *bufs); +GLAPI void APIENTRY glNamedFramebufferReadBuffer (GLuint framebuffer, GLenum src); +GLAPI void APIENTRY glInvalidateNamedFramebufferData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments); +GLAPI void APIENTRY glInvalidateNamedFramebufferSubData (GLuint framebuffer, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glClearNamedFramebufferiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLint *value); +GLAPI void APIENTRY glClearNamedFramebufferuiv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLuint *value); +GLAPI void APIENTRY glClearNamedFramebufferfv (GLuint framebuffer, GLenum buffer, GLint drawbuffer, const GLfloat *value); +GLAPI void APIENTRY glClearNamedFramebufferfi (GLuint framebuffer, GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil); +GLAPI void APIENTRY glBlitNamedFramebuffer (GLuint readFramebuffer, GLuint drawFramebuffer, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI GLenum APIENTRY glCheckNamedFramebufferStatus (GLuint framebuffer, GLenum target); +GLAPI void APIENTRY glGetNamedFramebufferParameteriv (GLuint framebuffer, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetNamedFramebufferAttachmentParameteriv (GLuint framebuffer, GLenum attachment, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateRenderbuffers (GLsizei n, GLuint *renderbuffers); +GLAPI void APIENTRY glNamedRenderbufferStorage (GLuint renderbuffer, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisample (GLuint renderbuffer, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glGetNamedRenderbufferParameteriv (GLuint renderbuffer, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateTextures (GLenum target, GLsizei n, GLuint *textures); +GLAPI void APIENTRY glTextureBuffer (GLuint texture, GLenum internalformat, GLuint buffer); +GLAPI void APIENTRY glTextureBufferRange (GLuint texture, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +GLAPI void APIENTRY glTextureStorage1D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTextureStorage2D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureStorage3D (GLuint texture, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glTextureStorage2DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureStorage3DMultisample (GLuint texture, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +GLAPI void APIENTRY glTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GLAPI void APIENTRY glCompressedTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCompressedTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GLAPI void APIENTRY glCopyTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width); +GLAPI void APIENTRY glCopyTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glCopyTextureSubImage3D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTextureParameterf (GLuint texture, GLenum pname, GLfloat param); +GLAPI void APIENTRY glTextureParameterfv (GLuint texture, GLenum pname, const GLfloat *param); +GLAPI void APIENTRY glTextureParameteri (GLuint texture, GLenum pname, GLint param); +GLAPI void APIENTRY glTextureParameterIiv (GLuint texture, GLenum pname, const GLint *params); +GLAPI void APIENTRY glTextureParameterIuiv (GLuint texture, GLenum pname, const GLuint *params); +GLAPI void APIENTRY glTextureParameteriv (GLuint texture, GLenum pname, const GLint *param); +GLAPI void APIENTRY glGenerateTextureMipmap (GLuint texture); +GLAPI void APIENTRY glBindTextureUnit (GLuint unit, GLuint texture); +GLAPI void APIENTRY glGetTextureImage (GLuint texture, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureImage (GLuint texture, GLint level, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetTextureLevelParameterfv (GLuint texture, GLint level, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureLevelParameteriv (GLuint texture, GLint level, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterfv (GLuint texture, GLenum pname, GLfloat *params); +GLAPI void APIENTRY glGetTextureParameterIiv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetTextureParameterIuiv (GLuint texture, GLenum pname, GLuint *params); +GLAPI void APIENTRY glGetTextureParameteriv (GLuint texture, GLenum pname, GLint *params); +GLAPI void APIENTRY glCreateVertexArrays (GLsizei n, GLuint *arrays); +GLAPI void APIENTRY glDisableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glEnableVertexArrayAttrib (GLuint vaobj, GLuint index); +GLAPI void APIENTRY glVertexArrayElementBuffer (GLuint vaobj, GLuint buffer); +GLAPI void APIENTRY glVertexArrayVertexBuffer (GLuint vaobj, GLuint bindingindex, GLuint buffer, GLintptr offset, GLsizei stride); +GLAPI void APIENTRY glVertexArrayVertexBuffers (GLuint vaobj, GLuint first, GLsizei count, const GLuint *buffers, const GLintptr *offsets, const GLsizei *strides); +GLAPI void APIENTRY glVertexArrayAttribBinding (GLuint vaobj, GLuint attribindex, GLuint bindingindex); +GLAPI void APIENTRY glVertexArrayAttribFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribIFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayAttribLFormat (GLuint vaobj, GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); +GLAPI void APIENTRY glVertexArrayBindingDivisor (GLuint vaobj, GLuint bindingindex, GLuint divisor); +GLAPI void APIENTRY glGetVertexArrayiv (GLuint vaobj, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexediv (GLuint vaobj, GLuint index, GLenum pname, GLint *param); +GLAPI void APIENTRY glGetVertexArrayIndexed64iv (GLuint vaobj, GLuint index, GLenum pname, GLint64 *param); +GLAPI void APIENTRY glCreateSamplers (GLsizei n, GLuint *samplers); +GLAPI void APIENTRY glCreateProgramPipelines (GLsizei n, GLuint *pipelines); +GLAPI void APIENTRY glCreateQueries (GLenum target, GLsizei n, GLuint *ids); +GLAPI void APIENTRY glGetQueryBufferObjecti64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectui64v (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glGetQueryBufferObjectuiv (GLuint id, GLuint buffer, GLenum pname, GLintptr offset); +GLAPI void APIENTRY glMemoryBarrierByRegion (GLbitfield barriers); +GLAPI void APIENTRY glGetTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetCompressedTextureSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei bufSize, void *pixels); +GLAPI GLenum APIENTRY glGetGraphicsResetStatus (void); +GLAPI void APIENTRY glGetnCompressedTexImage (GLenum target, GLint lod, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnTexImage (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels); +GLAPI void APIENTRY glGetnUniformdv (GLuint program, GLint location, GLsizei bufSize, GLdouble *params); +GLAPI void APIENTRY glGetnUniformfv (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GLAPI void APIENTRY glGetnUniformiv (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GLAPI void APIENTRY glGetnUniformuiv (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +GLAPI void APIENTRY glReadnPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GLAPI void APIENTRY glGetnMapdv (GLenum target, GLenum query, GLsizei bufSize, GLdouble *v); +GLAPI void APIENTRY glGetnMapfv (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glGetnMapiv (GLenum target, GLenum query, GLsizei bufSize, GLint *v); +GLAPI void APIENTRY glGetnPixelMapfv (GLenum map, GLsizei bufSize, GLfloat *values); +GLAPI void APIENTRY glGetnPixelMapuiv (GLenum map, GLsizei bufSize, GLuint *values); +GLAPI void APIENTRY glGetnPixelMapusv (GLenum map, GLsizei bufSize, GLushort *values); +GLAPI void APIENTRY glGetnPolygonStipple (GLsizei bufSize, GLubyte *pattern); +GLAPI void APIENTRY glGetnColorTable (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table); +GLAPI void APIENTRY glGetnConvolutionFilter (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *image); +GLAPI void APIENTRY glGetnSeparableFilter (GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, void *row, GLsizei columnBufSize, void *column, void *span); +GLAPI void APIENTRY glGetnHistogram (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glGetnMinmax (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values); +GLAPI void APIENTRY glTextureBarrier (void); +#endif +#endif /* GL_VERSION_4_5 */ + +#ifndef GL_VERSION_4_6 +#define GL_VERSION_4_6 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V 0x9551 +#define GL_SPIR_V_BINARY 0x9552 +#define GL_PARAMETER_BUFFER 0x80EE +#define GL_PARAMETER_BUFFER_BINDING 0x80EF +#define GL_CONTEXT_FLAG_NO_ERROR_BIT 0x00000008 +#define GL_VERTICES_SUBMITTED 0x82EE +#define GL_PRIMITIVES_SUBMITTED 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES 0x82F7 +#define GL_POLYGON_OFFSET_CLAMP 0x8E1B +#define GL_SPIR_V_EXTENSIONS 0x9553 +#define GL_NUM_SPIR_V_EXTENSIONS 0x9554 +#define GL_TEXTURE_MAX_ANISOTROPY 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY 0x84FF +#define GL_TRANSFORM_FEEDBACK_OVERFLOW 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW 0x82ED +typedef void (APIENTRYP PFNGLSPECIALIZESHADERPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShader (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +GLAPI void APIENTRY glMultiDrawArraysIndirectCount (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCount (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glPolygonOffsetClamp (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_VERSION_4_6 */ + #ifndef GL_ARB_ES2_compatibility #define GL_ARB_ES2_compatibility 1 #endif /* GL_ARB_ES2_compatibility */ +#ifndef GL_ARB_ES3_1_compatibility +#define GL_ARB_ES3_1_compatibility 1 +#endif /* GL_ARB_ES3_1_compatibility */ + +#ifndef GL_ARB_ES3_2_compatibility +#define GL_ARB_ES3_2_compatibility 1 +#define GL_PRIMITIVE_BOUNDING_BOX_ARB 0x92BE +#define GL_MULTISAMPLE_LINE_WIDTH_RANGE_ARB 0x9381 +#define GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY_ARB 0x9382 +typedef void (APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXARBPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPrimitiveBoundingBoxARB (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_ARB_ES3_2_compatibility */ + #ifndef GL_ARB_ES3_compatibility #define GL_ARB_ES3_compatibility 1 #endif /* GL_ARB_ES3_compatibility */ @@ -2597,7 +3204,7 @@ GLAPI void APIENTRY glBindVertexBuffers (GLuint first, GLsizei count, const GLui #ifndef GL_ARB_bindless_texture #define GL_ARB_bindless_texture 1 -typedef uint64_t GLuint64EXT; +typedef khronos_uint64_t GLuint64EXT; #define GL_UNSIGNED_INT64_ARB 0x140F typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLEARBPROC) (GLuint texture); typedef GLuint64 (APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEARBPROC) (GLuint texture, GLuint sampler); @@ -2663,6 +3270,10 @@ GLAPI GLsync APIENTRY glCreateSyncFromCLeventARB (struct _cl_context *context, s #define GL_ARB_clear_texture 1 #endif /* GL_ARB_clear_texture */ +#ifndef GL_ARB_clip_control +#define GL_ARB_clip_control 1 +#endif /* GL_ARB_clip_control */ + #ifndef GL_ARB_color_buffer_float #define GL_ARB_color_buffer_float 1 #define GL_RGBA_FLOAT_MODE_ARB 0x8820 @@ -2686,7 +3297,6 @@ GLAPI void APIENTRY glClampColorARB (GLenum target, GLenum clamp); #ifndef GL_ARB_compute_shader #define GL_ARB_compute_shader 1 -#define GL_COMPUTE_SHADER_BIT 0x00000020 #endif /* GL_ARB_compute_shader */ #ifndef GL_ARB_compute_variable_group_size @@ -2701,20 +3311,26 @@ GLAPI void APIENTRY glDispatchComputeGroupSizeARB (GLuint num_groups_x, GLuint n #endif #endif /* GL_ARB_compute_variable_group_size */ +#ifndef GL_ARB_conditional_render_inverted +#define GL_ARB_conditional_render_inverted 1 +#endif /* GL_ARB_conditional_render_inverted */ + #ifndef GL_ARB_conservative_depth #define GL_ARB_conservative_depth 1 #endif /* GL_ARB_conservative_depth */ #ifndef GL_ARB_copy_buffer #define GL_ARB_copy_buffer 1 -#define GL_COPY_READ_BUFFER_BINDING 0x8F36 -#define GL_COPY_WRITE_BUFFER_BINDING 0x8F37 #endif /* GL_ARB_copy_buffer */ #ifndef GL_ARB_copy_image #define GL_ARB_copy_image 1 #endif /* GL_ARB_copy_image */ +#ifndef GL_ARB_cull_distance +#define GL_ARB_cull_distance 1 +#endif /* GL_ARB_cull_distance */ + #ifndef GL_ARB_debug_output #define GL_ARB_debug_output 1 typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); @@ -2769,6 +3385,14 @@ GLAPI GLuint APIENTRY glGetDebugMessageLogARB (GLuint count, GLsizei bufSize, GL #define GL_DEPTH_TEXTURE_MODE_ARB 0x884B #endif /* GL_ARB_depth_texture */ +#ifndef GL_ARB_derivative_control +#define GL_ARB_derivative_control 1 +#endif /* GL_ARB_derivative_control */ + +#ifndef GL_ARB_direct_state_access +#define GL_ARB_direct_state_access 1 +#endif /* GL_ARB_direct_state_access */ + #ifndef GL_ARB_draw_buffers #define GL_ARB_draw_buffers 1 #define GL_MAX_DRAW_BUFFERS_ARB 0x8824 @@ -2979,6 +3603,10 @@ GLAPI GLboolean APIENTRY glIsProgramARB (GLuint program); #define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B #endif /* GL_ARB_fragment_shader */ +#ifndef GL_ARB_fragment_shader_interlock +#define GL_ARB_fragment_shader_interlock 1 +#endif /* GL_ARB_fragment_shader_interlock */ + #ifndef GL_ARB_framebuffer_no_attachments #define GL_ARB_framebuffer_no_attachments 1 #endif /* GL_ARB_framebuffer_no_attachments */ @@ -2991,11 +3619,6 @@ GLAPI GLboolean APIENTRY glIsProgramARB (GLuint program); #define GL_ARB_framebuffer_sRGB 1 #endif /* GL_ARB_framebuffer_sRGB */ -#ifndef GL_KHR_context_flush_control -#define GL_CONTEXT_RELEASE_BEHAVIOR 0x82FB -#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x82FC -#endif /* GL_KHR_context_flush_control */ - #ifndef GL_ARB_geometry_shader4 #define GL_ARB_geometry_shader4 1 #define GL_LINES_ADJACENCY_ARB 0x000A @@ -3032,6 +3655,20 @@ GLAPI void APIENTRY glFramebufferTextureFaceARB (GLenum target, GLenum attachmen #define GL_ARB_get_program_binary 1 #endif /* GL_ARB_get_program_binary */ +#ifndef GL_ARB_get_texture_sub_image +#define GL_ARB_get_texture_sub_image 1 +#endif /* GL_ARB_get_texture_sub_image */ + +#ifndef GL_ARB_gl_spirv +#define GL_ARB_gl_spirv 1 +#define GL_SHADER_BINARY_FORMAT_SPIR_V_ARB 0x9551 +#define GL_SPIR_V_BINARY_ARB 0x9552 +typedef void (APIENTRYP PFNGLSPECIALIZESHADERARBPROC) (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSpecializeShaderARB (GLuint shader, const GLchar *pEntryPoint, GLuint numSpecializationConstants, const GLuint *pConstantIndex, const GLuint *pConstantValue); +#endif +#endif /* GL_ARB_gl_spirv */ + #ifndef GL_ARB_gpu_shader5 #define GL_ARB_gpu_shader5 1 #endif /* GL_ARB_gpu_shader5 */ @@ -3040,9 +3677,94 @@ GLAPI void APIENTRY glFramebufferTextureFaceARB (GLenum target, GLenum attachmen #define GL_ARB_gpu_shader_fp64 1 #endif /* GL_ARB_gpu_shader_fp64 */ +#ifndef GL_ARB_gpu_shader_int64 +#define GL_ARB_gpu_shader_int64 1 +#define GL_INT64_ARB 0x140E +#define GL_INT64_VEC2_ARB 0x8FE9 +#define GL_INT64_VEC3_ARB 0x8FEA +#define GL_INT64_VEC4_ARB 0x8FEB +#define GL_UNSIGNED_INT64_VEC2_ARB 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_ARB 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_ARB 0x8FF7 +typedef void (APIENTRYP PFNGLUNIFORM1I64ARBPROC) (GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2I64ARBPROC) (GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4I64ARBPROC) (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4I64VARBPROC) (GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM1UI64ARBPROC) (GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLUNIFORM2UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLUNIFORM3UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLUNIFORM4UI64ARBPROC) (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLUNIFORM1UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM2UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM3UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLUNIFORM4UI64VARBPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLGETUNIFORMI64VARBPROC) (GLuint program, GLint location, GLint64 *params); +typedef void (APIENTRYP PFNGLGETUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLuint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +typedef void (APIENTRYP PFNGLGETNUNIFORMUI64VARBPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64ARBPROC) (GLuint program, GLint location, GLint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64ARBPROC) (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4I64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64ARBPROC) (GLuint program, GLint location, GLuint64 x); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64ARBPROC) (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UI64VARBPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUniform1i64ARB (GLint location, GLint64 x); +GLAPI void APIENTRY glUniform2i64ARB (GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glUniform3i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glUniform4i64ARB (GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glUniform1i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform2i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform3i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform4i64vARB (GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glUniform1ui64ARB (GLint location, GLuint64 x); +GLAPI void APIENTRY glUniform2ui64ARB (GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glUniform3ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glUniform4ui64ARB (GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glUniform1ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform2ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform3ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glUniform4ui64vARB (GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glGetUniformi64vARB (GLuint program, GLint location, GLint64 *params); +GLAPI void APIENTRY glGetUniformui64vARB (GLuint program, GLint location, GLuint64 *params); +GLAPI void APIENTRY glGetnUniformi64vARB (GLuint program, GLint location, GLsizei bufSize, GLint64 *params); +GLAPI void APIENTRY glGetnUniformui64vARB (GLuint program, GLint location, GLsizei bufSize, GLuint64 *params); +GLAPI void APIENTRY glProgramUniform1i64ARB (GLuint program, GLint location, GLint64 x); +GLAPI void APIENTRY glProgramUniform2i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y); +GLAPI void APIENTRY glProgramUniform3i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z); +GLAPI void APIENTRY glProgramUniform4i64ARB (GLuint program, GLint location, GLint64 x, GLint64 y, GLint64 z, GLint64 w); +GLAPI void APIENTRY glProgramUniform1i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform2i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform3i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform4i64vARB (GLuint program, GLint location, GLsizei count, const GLint64 *value); +GLAPI void APIENTRY glProgramUniform1ui64ARB (GLuint program, GLint location, GLuint64 x); +GLAPI void APIENTRY glProgramUniform2ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y); +GLAPI void APIENTRY glProgramUniform3ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z); +GLAPI void APIENTRY glProgramUniform4ui64ARB (GLuint program, GLint location, GLuint64 x, GLuint64 y, GLuint64 z, GLuint64 w); +GLAPI void APIENTRY glProgramUniform1ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform2ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform3ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +GLAPI void APIENTRY glProgramUniform4ui64vARB (GLuint program, GLint location, GLsizei count, const GLuint64 *value); +#endif +#endif /* GL_ARB_gpu_shader_int64 */ + #ifndef GL_ARB_half_float_pixel #define GL_ARB_half_float_pixel 1 -typedef unsigned short GLhalfARB; +typedef khronos_uint16_t GLhalfARB; #define GL_HALF_FLOAT_ARB 0x140B #endif /* GL_ARB_half_float_pixel */ @@ -3052,11 +3774,6 @@ typedef unsigned short GLhalfARB; #ifndef GL_ARB_imaging #define GL_ARB_imaging 1 -#define GL_BLEND_COLOR 0x8005 -#define GL_BLEND_EQUATION 0x8009 -#define GL_CONVOLUTION_1D 0x8010 -#define GL_CONVOLUTION_2D 0x8011 -#define GL_SEPARABLE_2D 0x8012 #define GL_CONVOLUTION_BORDER_MODE 0x8013 #define GL_CONVOLUTION_FILTER_SCALE 0x8014 #define GL_CONVOLUTION_FILTER_BIAS 0x8015 @@ -3074,8 +3791,6 @@ typedef unsigned short GLhalfARB; #define GL_POST_CONVOLUTION_GREEN_BIAS 0x8021 #define GL_POST_CONVOLUTION_BLUE_BIAS 0x8022 #define GL_POST_CONVOLUTION_ALPHA_BIAS 0x8023 -#define GL_HISTOGRAM 0x8024 -#define GL_PROXY_HISTOGRAM 0x8025 #define GL_HISTOGRAM_WIDTH 0x8026 #define GL_HISTOGRAM_FORMAT 0x8027 #define GL_HISTOGRAM_RED_SIZE 0x8028 @@ -3084,7 +3799,6 @@ typedef unsigned short GLhalfARB; #define GL_HISTOGRAM_ALPHA_SIZE 0x802B #define GL_HISTOGRAM_LUMINANCE_SIZE 0x802C #define GL_HISTOGRAM_SINK 0x802D -#define GL_MINMAX 0x802E #define GL_MINMAX_FORMAT 0x802F #define GL_MINMAX_SINK 0x8030 #define GL_TABLE_TOO_LARGE 0x8031 @@ -3099,12 +3813,6 @@ typedef unsigned short GLhalfARB; #define GL_POST_COLOR_MATRIX_GREEN_BIAS 0x80B9 #define GL_POST_COLOR_MATRIX_BLUE_BIAS 0x80BA #define GL_POST_COLOR_MATRIX_ALPHA_BIAS 0x80BB -#define GL_COLOR_TABLE 0x80D0 -#define GL_POST_CONVOLUTION_COLOR_TABLE 0x80D1 -#define GL_POST_COLOR_MATRIX_COLOR_TABLE 0x80D2 -#define GL_PROXY_COLOR_TABLE 0x80D3 -#define GL_PROXY_POST_CONVOLUTION_COLOR_TABLE 0x80D4 -#define GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE 0x80D5 #define GL_COLOR_TABLE_SCALE 0x80D6 #define GL_COLOR_TABLE_BIAS 0x80D7 #define GL_COLOR_TABLE_FORMAT 0x80D8 @@ -3190,11 +3898,11 @@ GLAPI void APIENTRY glResetMinmax (GLenum target); #define GL_ARB_indirect_parameters 1 #define GL_PARAMETER_BUFFER_ARB 0x80EE #define GL_PARAMETER_BUFFER_BINDING_ARB 0x80EF -typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTARBPROC) (GLenum mode, GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); -typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTARBPROC) (GLenum mode, GLenum type, GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTCOUNTARBPROC) (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTCOUNTARBPROC) (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); #ifdef GL_GLEXT_PROTOTYPES -GLAPI void APIENTRY glMultiDrawArraysIndirectCountARB (GLenum mode, GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); -GLAPI void APIENTRY glMultiDrawElementsIndirectCountARB (GLenum mode, GLenum type, GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawArraysIndirectCountARB (GLenum mode, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawElementsIndirectCountARB (GLenum mode, GLenum type, const void *indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); #endif #endif /* GL_ARB_indirect_parameters */ @@ -3214,6 +3922,25 @@ GLAPI void APIENTRY glVertexAttribDivisorARB (GLuint index, GLuint divisor); #ifndef GL_ARB_internalformat_query2 #define GL_ARB_internalformat_query2 1 #define GL_SRGB_DECODE_ARB 0x8299 +#define GL_VIEW_CLASS_EAC_R11 0x9383 +#define GL_VIEW_CLASS_EAC_RG11 0x9384 +#define GL_VIEW_CLASS_ETC2_RGB 0x9385 +#define GL_VIEW_CLASS_ETC2_RGBA 0x9386 +#define GL_VIEW_CLASS_ETC2_EAC_RGBA 0x9387 +#define GL_VIEW_CLASS_ASTC_4x4_RGBA 0x9388 +#define GL_VIEW_CLASS_ASTC_5x4_RGBA 0x9389 +#define GL_VIEW_CLASS_ASTC_5x5_RGBA 0x938A +#define GL_VIEW_CLASS_ASTC_6x5_RGBA 0x938B +#define GL_VIEW_CLASS_ASTC_6x6_RGBA 0x938C +#define GL_VIEW_CLASS_ASTC_8x5_RGBA 0x938D +#define GL_VIEW_CLASS_ASTC_8x6_RGBA 0x938E +#define GL_VIEW_CLASS_ASTC_8x8_RGBA 0x938F +#define GL_VIEW_CLASS_ASTC_10x5_RGBA 0x9390 +#define GL_VIEW_CLASS_ASTC_10x6_RGBA 0x9391 +#define GL_VIEW_CLASS_ASTC_10x8_RGBA 0x9392 +#define GL_VIEW_CLASS_ASTC_10x10_RGBA 0x9393 +#define GL_VIEW_CLASS_ASTC_12x10_RGBA 0x9394 +#define GL_VIEW_CLASS_ASTC_12x12_RGBA 0x9395 #endif /* GL_ARB_internalformat_query2 */ #ifndef GL_ARB_invalidate_subdata @@ -3419,6 +4146,30 @@ GLAPI void APIENTRY glGetQueryObjectuivARB (GLuint id, GLenum pname, GLuint *par #define GL_ARB_occlusion_query2 1 #endif /* GL_ARB_occlusion_query2 */ +#ifndef GL_ARB_parallel_shader_compile +#define GL_ARB_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_ARB 0x91B0 +#define GL_COMPLETION_STATUS_ARB 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSARBPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsARB (GLuint count); +#endif +#endif /* GL_ARB_parallel_shader_compile */ + +#ifndef GL_ARB_pipeline_statistics_query +#define GL_ARB_pipeline_statistics_query 1 +#define GL_VERTICES_SUBMITTED_ARB 0x82EE +#define GL_PRIMITIVES_SUBMITTED_ARB 0x82EF +#define GL_VERTEX_SHADER_INVOCATIONS_ARB 0x82F0 +#define GL_TESS_CONTROL_SHADER_PATCHES_ARB 0x82F1 +#define GL_TESS_EVALUATION_SHADER_INVOCATIONS_ARB 0x82F2 +#define GL_GEOMETRY_SHADER_PRIMITIVES_EMITTED_ARB 0x82F3 +#define GL_FRAGMENT_SHADER_INVOCATIONS_ARB 0x82F4 +#define GL_COMPUTE_SHADER_INVOCATIONS_ARB 0x82F5 +#define GL_CLIPPING_INPUT_PRIMITIVES_ARB 0x82F6 +#define GL_CLIPPING_OUTPUT_PRIMITIVES_ARB 0x82F7 +#endif /* GL_ARB_pipeline_statistics_query */ + #ifndef GL_ARB_pixel_buffer_object #define GL_ARB_pixel_buffer_object 1 #define GL_PIXEL_PACK_BUFFER_ARB 0x88EB @@ -3447,6 +4198,14 @@ GLAPI void APIENTRY glPointParameterfvARB (GLenum pname, const GLfloat *params); #define GL_COORD_REPLACE_ARB 0x8862 #endif /* GL_ARB_point_sprite */ +#ifndef GL_ARB_polygon_offset_clamp +#define GL_ARB_polygon_offset_clamp 1 +#endif /* GL_ARB_polygon_offset_clamp */ + +#ifndef GL_ARB_post_depth_coverage +#define GL_ARB_post_depth_coverage 1 +#endif /* GL_ARB_post_depth_coverage */ + #ifndef GL_ARB_program_interface_query #define GL_ARB_program_interface_query 1 #endif /* GL_ARB_program_interface_query */ @@ -3520,6 +4279,26 @@ GLAPI void APIENTRY glGetnMinmaxARB (GLenum target, GLboolean reset, GLenum form #define GL_ARB_robustness_isolation 1 #endif /* GL_ARB_robustness_isolation */ +#ifndef GL_ARB_sample_locations +#define GL_ARB_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_ARB 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_ARB 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_ARB 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_ARB 0x9340 +#define GL_SAMPLE_LOCATION_ARB 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_ARB 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_ARB 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_ARB 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVARBPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLEVALUATEDEPTHVALUESARBPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvARB (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvARB (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glEvaluateDepthValuesARB (void); +#endif +#endif /* GL_ARB_sample_locations */ + #ifndef GL_ARB_sample_shading #define GL_ARB_sample_shading 1 #define GL_SAMPLE_SHADING_ARB 0x8C36 @@ -3546,14 +4325,26 @@ GLAPI void APIENTRY glMinSampleShadingARB (GLfloat value); #define GL_ARB_separate_shader_objects 1 #endif /* GL_ARB_separate_shader_objects */ +#ifndef GL_ARB_shader_atomic_counter_ops +#define GL_ARB_shader_atomic_counter_ops 1 +#endif /* GL_ARB_shader_atomic_counter_ops */ + #ifndef GL_ARB_shader_atomic_counters #define GL_ARB_shader_atomic_counters 1 #endif /* GL_ARB_shader_atomic_counters */ +#ifndef GL_ARB_shader_ballot +#define GL_ARB_shader_ballot 1 +#endif /* GL_ARB_shader_ballot */ + #ifndef GL_ARB_shader_bit_encoding #define GL_ARB_shader_bit_encoding 1 #endif /* GL_ARB_shader_bit_encoding */ +#ifndef GL_ARB_shader_clock +#define GL_ARB_shader_clock 1 +#endif /* GL_ARB_shader_clock */ + #ifndef GL_ARB_shader_draw_parameters #define GL_ARB_shader_draw_parameters 1 #endif /* GL_ARB_shader_draw_parameters */ @@ -3710,10 +4501,18 @@ GLAPI void APIENTRY glGetShaderSourceARB (GLhandleARB obj, GLsizei maxLength, GL #define GL_ARB_shader_subroutine 1 #endif /* GL_ARB_shader_subroutine */ +#ifndef GL_ARB_shader_texture_image_samples +#define GL_ARB_shader_texture_image_samples 1 +#endif /* GL_ARB_shader_texture_image_samples */ + #ifndef GL_ARB_shader_texture_lod #define GL_ARB_shader_texture_lod 1 #endif /* GL_ARB_shader_texture_lod */ +#ifndef GL_ARB_shader_viewport_layer_array +#define GL_ARB_shader_viewport_layer_array 1 +#endif /* GL_ARB_shader_viewport_layer_array */ + #ifndef GL_ARB_shading_language_100 #define GL_ARB_shading_language_100 1 #define GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C @@ -3760,11 +4559,25 @@ GLAPI void APIENTRY glGetNamedStringivARB (GLint namelen, const GLchar *name, GL #define GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF #endif /* GL_ARB_shadow_ambient */ +#ifndef GL_ARB_sparse_buffer +#define GL_ARB_sparse_buffer 1 +#define GL_SPARSE_STORAGE_BIT_ARB 0x0400 +#define GL_SPARSE_BUFFER_PAGE_SIZE_ARB 0x82F8 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTARBPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTARBPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentARB (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentARB (GLuint buffer, GLintptr offset, GLsizeiptr size, GLboolean commit); +#endif +#endif /* GL_ARB_sparse_buffer */ + #ifndef GL_ARB_sparse_texture #define GL_ARB_sparse_texture 1 #define GL_TEXTURE_SPARSE_ARB 0x91A6 #define GL_VIRTUAL_PAGE_SIZE_INDEX_ARB 0x91A7 -#define GL_MIN_SPARSE_LEVEL_ARB 0x919B +#define GL_NUM_SPARSE_LEVELS_ARB 0x91AA #define GL_NUM_VIRTUAL_PAGE_SIZES_ARB 0x91A8 #define GL_VIRTUAL_PAGE_SIZE_X_ARB 0x9195 #define GL_VIRTUAL_PAGE_SIZE_Y_ARB 0x9196 @@ -3773,12 +4586,24 @@ GLAPI void APIENTRY glGetNamedStringivARB (GLint namelen, const GLchar *name, GL #define GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB 0x9199 #define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB 0x919A #define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB 0x91A9 -typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean resident); +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTARBPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); #ifdef GL_GLEXT_PROTOTYPES -GLAPI void APIENTRY glTexPageCommitmentARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean resident); +GLAPI void APIENTRY glTexPageCommitmentARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); #endif #endif /* GL_ARB_sparse_texture */ +#ifndef GL_ARB_sparse_texture2 +#define GL_ARB_sparse_texture2 1 +#endif /* GL_ARB_sparse_texture2 */ + +#ifndef GL_ARB_sparse_texture_clamp +#define GL_ARB_sparse_texture_clamp 1 +#endif /* GL_ARB_sparse_texture_clamp */ + +#ifndef GL_ARB_spirv_extensions +#define GL_ARB_spirv_extensions 1 +#endif /* GL_ARB_spirv_extensions */ + #ifndef GL_ARB_stencil_texturing #define GL_ARB_stencil_texturing 1 #endif /* GL_ARB_stencil_texturing */ @@ -3791,6 +4616,10 @@ GLAPI void APIENTRY glTexPageCommitmentARB (GLenum target, GLint level, GLint xo #define GL_ARB_tessellation_shader 1 #endif /* GL_ARB_tessellation_shader */ +#ifndef GL_ARB_texture_barrier +#define GL_ARB_texture_barrier 1 +#endif /* GL_ARB_texture_barrier */ + #ifndef GL_ARB_texture_border_clamp #define GL_ARB_texture_border_clamp 1 #define GL_CLAMP_TO_BORDER_ARB 0x812D @@ -3927,6 +4756,16 @@ GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum target, GLint level, void #define GL_DOT3_RGBA_ARB 0x86AF #endif /* GL_ARB_texture_env_dot3 */ +#ifndef GL_ARB_texture_filter_anisotropic +#define GL_ARB_texture_filter_anisotropic 1 +#endif /* GL_ARB_texture_filter_anisotropic */ + +#ifndef GL_ARB_texture_filter_minmax +#define GL_ARB_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_ARB 0x9366 +#define GL_WEIGHTED_AVERAGE_ARB 0x9367 +#endif /* GL_ARB_texture_filter_minmax */ + #ifndef GL_ARB_texture_float #define GL_ARB_texture_float 1 #define GL_TEXTURE_RED_TYPE_ARB 0x8C10 @@ -4025,8 +4864,6 @@ GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum target, GLint level, void #ifndef GL_ARB_transform_feedback2 #define GL_ARB_transform_feedback2 1 -#define GL_TRANSFORM_FEEDBACK_PAUSED 0x8E23 -#define GL_TRANSFORM_FEEDBACK_ACTIVE 0x8E24 #endif /* GL_ARB_transform_feedback2 */ #ifndef GL_ARB_transform_feedback3 @@ -4037,6 +4874,12 @@ GLAPI void APIENTRY glGetCompressedTexImageARB (GLenum target, GLint level, void #define GL_ARB_transform_feedback_instanced 1 #endif /* GL_ARB_transform_feedback_instanced */ +#ifndef GL_ARB_transform_feedback_overflow_query +#define GL_ARB_transform_feedback_overflow_query 1 +#define GL_TRANSFORM_FEEDBACK_OVERFLOW_ARB 0x82EC +#define GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW_ARB 0x82ED +#endif /* GL_ARB_transform_feedback_overflow_query */ + #ifndef GL_ARB_transpose_matrix #define GL_ARB_transpose_matrix 1 #define GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 @@ -4057,9 +4900,6 @@ GLAPI void APIENTRY glMultTransposeMatrixdARB (const GLdouble *m); #ifndef GL_ARB_uniform_buffer_object #define GL_ARB_uniform_buffer_object 1 -#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS 0x8A2C -#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS 0x8A32 -#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER 0x8A45 #endif /* GL_ARB_uniform_buffer_object */ #ifndef GL_ARB_vertex_array_bgra @@ -4148,13 +4988,8 @@ GLAPI void APIENTRY glVertexBlendARB (GLint count); #ifndef GL_ARB_vertex_buffer_object #define GL_ARB_vertex_buffer_object 1 -#ifdef __MACOSX__ /* The OS X headers haven't caught up with Khronos yet */ -typedef long GLsizeiptrARB; -typedef long GLintptrARB; -#else -typedef ptrdiff_t GLsizeiptrARB; -typedef ptrdiff_t GLintptrARB; -#endif +typedef khronos_ssize_t GLsizeiptrARB; +typedef khronos_intptr_t GLintptrARB; #define GL_BUFFER_SIZE_ARB 0x8764 #define GL_BUFFER_USAGE_ARB 0x8765 #define GL_ARRAY_BUFFER_ARB 0x8892 @@ -4349,6 +5184,12 @@ GLAPI GLint APIENTRY glGetAttribLocationARB (GLhandleARB programObj, const GLcha #ifndef GL_ARB_viewport_array #define GL_ARB_viewport_array 1 +typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYDVNVPROC) (GLuint first, GLsizei count, const GLdouble *v); +typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDDNVPROC) (GLuint index, GLdouble n, GLdouble f); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDepthRangeArraydvNV (GLuint first, GLsizei count, const GLdouble *v); +GLAPI void APIENTRY glDepthRangeIndexeddNV (GLuint index, GLdouble n, GLdouble f); +#endif #endif /* GL_ARB_viewport_array */ #ifndef GL_ARB_window_pos @@ -4389,10 +5230,82 @@ GLAPI void APIENTRY glWindowPos3svARB (const GLshort *v); #endif #endif /* GL_ARB_window_pos */ +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#endif /* GL_KHR_context_flush_control */ + #ifndef GL_KHR_debug #define GL_KHR_debug 1 #endif /* GL_KHR_debug */ +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS 0x90F3 +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + #ifndef GL_KHR_texture_compression_astc_hdr #define GL_KHR_texture_compression_astc_hdr 1 #define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 @@ -4429,6 +5342,10 @@ GLAPI void APIENTRY glWindowPos3svARB (const GLshort *v); #define GL_KHR_texture_compression_astc_ldr 1 #endif /* GL_KHR_texture_compression_astc_ldr */ +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + #ifndef GL_OES_byte_coordinates #define GL_OES_byte_coordinates 1 typedef void (APIENTRYP PFNGLMULTITEXCOORD1BOESPROC) (GLenum texture, GLbyte s); @@ -4447,11 +5364,11 @@ typedef void (APIENTRYP PFNGLTEXCOORD3BOESPROC) (GLbyte s, GLbyte t, GLbyte r); typedef void (APIENTRYP PFNGLTEXCOORD3BVOESPROC) (const GLbyte *coords); typedef void (APIENTRYP PFNGLTEXCOORD4BOESPROC) (GLbyte s, GLbyte t, GLbyte r, GLbyte q); typedef void (APIENTRYP PFNGLTEXCOORD4BVOESPROC) (const GLbyte *coords); -typedef void (APIENTRYP PFNGLVERTEX2BOESPROC) (GLbyte x); +typedef void (APIENTRYP PFNGLVERTEX2BOESPROC) (GLbyte x, GLbyte y); typedef void (APIENTRYP PFNGLVERTEX2BVOESPROC) (const GLbyte *coords); -typedef void (APIENTRYP PFNGLVERTEX3BOESPROC) (GLbyte x, GLbyte y); +typedef void (APIENTRYP PFNGLVERTEX3BOESPROC) (GLbyte x, GLbyte y, GLbyte z); typedef void (APIENTRYP PFNGLVERTEX3BVOESPROC) (const GLbyte *coords); -typedef void (APIENTRYP PFNGLVERTEX4BOESPROC) (GLbyte x, GLbyte y, GLbyte z); +typedef void (APIENTRYP PFNGLVERTEX4BOESPROC) (GLbyte x, GLbyte y, GLbyte z, GLbyte w); typedef void (APIENTRYP PFNGLVERTEX4BVOESPROC) (const GLbyte *coords); #ifdef GL_GLEXT_PROTOTYPES GLAPI void APIENTRY glMultiTexCoord1bOES (GLenum texture, GLbyte s); @@ -4470,11 +5387,11 @@ GLAPI void APIENTRY glTexCoord3bOES (GLbyte s, GLbyte t, GLbyte r); GLAPI void APIENTRY glTexCoord3bvOES (const GLbyte *coords); GLAPI void APIENTRY glTexCoord4bOES (GLbyte s, GLbyte t, GLbyte r, GLbyte q); GLAPI void APIENTRY glTexCoord4bvOES (const GLbyte *coords); -GLAPI void APIENTRY glVertex2bOES (GLbyte x); +GLAPI void APIENTRY glVertex2bOES (GLbyte x, GLbyte y); GLAPI void APIENTRY glVertex2bvOES (const GLbyte *coords); -GLAPI void APIENTRY glVertex3bOES (GLbyte x, GLbyte y); +GLAPI void APIENTRY glVertex3bOES (GLbyte x, GLbyte y, GLbyte z); GLAPI void APIENTRY glVertex3bvOES (const GLbyte *coords); -GLAPI void APIENTRY glVertex4bOES (GLbyte x, GLbyte y, GLbyte z); +GLAPI void APIENTRY glVertex4bOES (GLbyte x, GLbyte y, GLbyte z, GLbyte w); GLAPI void APIENTRY glVertex4bvOES (const GLbyte *coords); #endif #endif /* GL_OES_byte_coordinates */ @@ -4495,7 +5412,7 @@ GLAPI void APIENTRY glVertex4bvOES (const GLbyte *coords); #ifndef GL_OES_fixed_point #define GL_OES_fixed_point 1 -typedef GLint GLfixed; +typedef khronos_int32_t GLfixed; #define GL_FIXED_OES 0x140C typedef void (APIENTRYP PFNGLALPHAFUNCXOESPROC) (GLenum func, GLfixed ref); typedef void (APIENTRYP PFNGLCLEARCOLORXOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); @@ -4526,7 +5443,6 @@ typedef void (APIENTRYP PFNGLPOINTPARAMETERXVOESPROC) (GLenum pname, const GLfix typedef void (APIENTRYP PFNGLPOINTSIZEXOESPROC) (GLfixed size); typedef void (APIENTRYP PFNGLPOLYGONOFFSETXOESPROC) (GLfixed factor, GLfixed units); typedef void (APIENTRYP PFNGLROTATEXOESPROC) (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); -typedef void (APIENTRYP PFNGLSAMPLECOVERAGEOESPROC) (GLfixed value, GLboolean invert); typedef void (APIENTRYP PFNGLSCALEXOESPROC) (GLfixed x, GLfixed y, GLfixed z); typedef void (APIENTRYP PFNGLTEXENVXOESPROC) (GLenum target, GLenum pname, GLfixed param); typedef void (APIENTRYP PFNGLTEXENVXVOESPROC) (GLenum target, GLenum pname, const GLfixed *params); @@ -4631,7 +5547,6 @@ GLAPI void APIENTRY glPointParameterxvOES (GLenum pname, const GLfixed *params); GLAPI void APIENTRY glPointSizexOES (GLfixed size); GLAPI void APIENTRY glPolygonOffsetxOES (GLfixed factor, GLfixed units); GLAPI void APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z); -GLAPI void APIENTRY glSampleCoverageOES (GLfixed value, GLboolean invert); GLAPI void APIENTRY glScalexOES (GLfixed x, GLfixed y, GLfixed z); GLAPI void APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param); GLAPI void APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params); @@ -4793,12 +5708,12 @@ typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severi typedef void (APIENTRYP PFNGLDEBUGMESSAGEENABLEAMDPROC) (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTAMDPROC) (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKAMDPROC) (GLDEBUGPROCAMD callback, void *userParam); -typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGAMDPROC) (GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGAMDPROC) (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); #ifdef GL_GLEXT_PROTOTYPES GLAPI void APIENTRY glDebugMessageEnableAMD (GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); GLAPI void APIENTRY glDebugMessageInsertAMD (GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf); GLAPI void APIENTRY glDebugMessageCallbackAMD (GLDEBUGPROCAMD callback, void *userParam); -GLAPI GLuint APIENTRY glGetDebugMessageLogAMD (GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); +GLAPI GLuint APIENTRY glGetDebugMessageLogAMD (GLuint count, GLsizei bufSize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message); #endif #endif /* GL_AMD_debug_output */ @@ -4822,13 +5737,68 @@ GLAPI void APIENTRY glBlendEquationSeparateIndexedAMD (GLuint buf, GLenum modeRG #endif #endif /* GL_AMD_draw_buffers_blend */ +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_framebuffer_sample_positions +#define GL_AMD_framebuffer_sample_positions 1 +#define GL_SUBSAMPLE_DISTANCE_AMD 0x883F +#define GL_PIXELS_PER_SAMPLE_PATTERN_X_AMD 0x91AE +#define GL_PIXELS_PER_SAMPLE_PATTERN_Y_AMD 0x91AF +#define GL_ALL_PIXELS_AMD 0xFFFFFFFF +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLEPOSITIONSFVAMDPROC) (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERFVAMDPROC) (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERFVAMDPROC) (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSamplePositionsfvAMD (GLenum target, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glNamedFramebufferSamplePositionsfvAMD (GLuint framebuffer, GLuint numsamples, GLuint pixelindex, const GLfloat *values); +GLAPI void APIENTRY glGetFramebufferParameterfvAMD (GLenum target, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +GLAPI void APIENTRY glGetNamedFramebufferParameterfvAMD (GLuint framebuffer, GLenum pname, GLuint numsamples, GLuint pixelindex, GLsizei size, GLfloat *values); +#endif +#endif /* GL_AMD_framebuffer_sample_positions */ + #ifndef GL_AMD_gcn_shader #define GL_AMD_gcn_shader 1 #endif /* GL_AMD_gcn_shader */ +#ifndef GL_AMD_gpu_shader_half_float +#define GL_AMD_gpu_shader_half_float 1 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_FLOAT16_MAT2_AMD 0x91C5 +#define GL_FLOAT16_MAT3_AMD 0x91C6 +#define GL_FLOAT16_MAT4_AMD 0x91C7 +#define GL_FLOAT16_MAT2x3_AMD 0x91C8 +#define GL_FLOAT16_MAT2x4_AMD 0x91C9 +#define GL_FLOAT16_MAT3x2_AMD 0x91CA +#define GL_FLOAT16_MAT3x4_AMD 0x91CB +#define GL_FLOAT16_MAT4x2_AMD 0x91CC +#define GL_FLOAT16_MAT4x3_AMD 0x91CD +#endif /* GL_AMD_gpu_shader_half_float */ + +#ifndef GL_AMD_gpu_shader_int16 +#define GL_AMD_gpu_shader_int16 1 +#endif /* GL_AMD_gpu_shader_int16 */ + #ifndef GL_AMD_gpu_shader_int64 #define GL_AMD_gpu_shader_int64 1 -typedef int64_t GLint64EXT; +typedef khronos_int64_t GLint64EXT; #define GL_INT64_NV 0x140E #define GL_UNSIGNED_INT64_NV 0x140F #define GL_INT8_NV 0x8FE0 @@ -4853,10 +5823,6 @@ typedef int64_t GLint64EXT; #define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 #define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 #define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 -#define GL_FLOAT16_NV 0x8FF8 -#define GL_FLOAT16_VEC2_NV 0x8FF9 -#define GL_FLOAT16_VEC3_NV 0x8FFA -#define GL_FLOAT16_VEC4_NV 0x8FFB typedef void (APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); typedef void (APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); typedef void (APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); @@ -5029,7 +5995,6 @@ GLAPI void APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname #ifndef GL_AMD_sample_positions #define GL_AMD_sample_positions 1 -#define GL_SUBSAMPLE_DISTANCE_AMD 0x883F typedef void (APIENTRYP PFNGLSETMULTISAMPLEFVAMDPROC) (GLenum pname, GLuint index, const GLfloat *val); #ifdef GL_GLEXT_PROTOTYPES GLAPI void APIENTRY glSetMultisamplefvAMD (GLenum pname, GLuint index, const GLfloat *val); @@ -5044,6 +6009,22 @@ GLAPI void APIENTRY glSetMultisamplefvAMD (GLenum pname, GLuint index, const GLf #define GL_AMD_shader_atomic_counter_ops 1 #endif /* GL_AMD_shader_atomic_counter_ops */ +#ifndef GL_AMD_shader_ballot +#define GL_AMD_shader_ballot 1 +#endif /* GL_AMD_shader_ballot */ + +#ifndef GL_AMD_shader_explicit_vertex_parameter +#define GL_AMD_shader_explicit_vertex_parameter 1 +#endif /* GL_AMD_shader_explicit_vertex_parameter */ + +#ifndef GL_AMD_shader_gpu_shader_half_float_fetch +#define GL_AMD_shader_gpu_shader_half_float_fetch 1 +#endif /* GL_AMD_shader_gpu_shader_half_float_fetch */ + +#ifndef GL_AMD_shader_image_load_store_lod +#define GL_AMD_shader_image_load_store_lod 1 +#endif /* GL_AMD_shader_image_load_store_lod */ + #ifndef GL_AMD_shader_stencil_export #define GL_AMD_shader_stencil_export 1 #endif /* GL_AMD_shader_stencil_export */ @@ -5083,6 +6064,10 @@ GLAPI void APIENTRY glStencilOpValueAMD (GLenum face, GLuint value); #endif #endif /* GL_AMD_stencil_operation_extended */ +#ifndef GL_AMD_texture_gather_bias_lod +#define GL_AMD_texture_gather_bias_lod 1 +#endif /* GL_AMD_texture_gather_bias_lod */ + #ifndef GL_AMD_texture_texture4 #define GL_AMD_texture_texture4 1 #endif /* GL_AMD_texture_texture4 */ @@ -5783,6 +6768,21 @@ GLAPI void APIENTRY glVertexBlendEnvfATI (GLenum pname, GLfloat param); #define GL_422_REV_AVERAGE_EXT 0x80CF #endif /* GL_EXT_422_pixels */ +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void *GLeglImageOES; +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GLAPI void APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_sync +#define GL_EXT_EGL_sync 1 +#endif /* GL_EXT_EGL_sync */ + #ifndef GL_EXT_abgr #define GL_EXT_abgr 1 #define GL_ABGR_EXT 0x8000 @@ -6345,7 +7345,7 @@ typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC) (GLuint vaob typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC) (GLuint vaobj, GLuint attribindex, GLuint bindingindex); typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC) (GLuint vaobj, GLuint bindingindex, GLuint divisor); typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLOFFSETEXTPROC) (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); -typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean resident); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBDIVISOREXTPROC) (GLuint vaobj, GLuint index, GLuint divisor); #ifdef GL_GLEXT_PROTOTYPES GLAPI void APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); @@ -6601,7 +7601,7 @@ GLAPI void APIENTRY glVertexArrayVertexAttribLFormatEXT (GLuint vaobj, GLuint at GLAPI void APIENTRY glVertexArrayVertexAttribBindingEXT (GLuint vaobj, GLuint attribindex, GLuint bindingindex); GLAPI void APIENTRY glVertexArrayVertexBindingDivisorEXT (GLuint vaobj, GLuint bindingindex, GLuint divisor); GLAPI void APIENTRY glVertexArrayVertexAttribLOffsetEXT (GLuint vaobj, GLuint buffer, GLuint index, GLint size, GLenum type, GLsizei stride, GLintptr offset); -GLAPI void APIENTRY glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean resident); +GLAPI void APIENTRY glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); GLAPI void APIENTRY glVertexArrayVertexAttribDivisorEXT (GLuint vaobj, GLuint index, GLuint divisor); #endif #endif /* GL_EXT_direct_state_access */ @@ -6634,6 +7634,17 @@ GLAPI void APIENTRY glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint en #endif #endif /* GL_EXT_draw_range_elements */ +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GLAPI void APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + #ifndef GL_EXT_fog_coord #define GL_EXT_fog_coord 1 #define GL_FOG_COORDINATE_SOURCE_EXT 0x8450 @@ -6824,7 +7835,6 @@ GLAPI void APIENTRY glProgramLocalParameters4fvEXT (GLenum target, GLuint index, #ifndef GL_EXT_gpu_shader4 #define GL_EXT_gpu_shader4 1 -#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT 0x88FD #define GL_SAMPLER_1D_ARRAY_EXT 0x8DC0 #define GL_SAMPLER_2D_ARRAY_EXT 0x8DC1 #define GL_SAMPLER_BUFFER_EXT 0x8DC2 @@ -6852,6 +7862,7 @@ GLAPI void APIENTRY glProgramLocalParameters4fvEXT (GLenum target, GLuint index, #define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 #define GL_MIN_PROGRAM_TEXEL_OFFSET_EXT 0x8904 #define GL_MAX_PROGRAM_TEXEL_OFFSET_EXT 0x8905 +#define GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT 0x88FD typedef void (APIENTRYP PFNGLGETUNIFORMUIVEXTPROC) (GLuint program, GLint location, GLuint *params); typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONEXTPROC) (GLuint program, const GLchar *name); @@ -6863,6 +7874,29 @@ typedef void (APIENTRYP PFNGLUNIFORM1UIVEXTPROC) (GLint location, GLsizei count, typedef void (APIENTRYP PFNGLUNIFORM2UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); typedef void (APIENTRYP PFNGLUNIFORM3UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); typedef void (APIENTRYP PFNGLUNIFORM4UIVEXTPROC) (GLint location, GLsizei count, const GLuint *value); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IEXTPROC) (GLuint index, GLint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IEXTPROC) (GLuint index, GLint x, GLint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IEXTPROC) (GLuint index, GLint x, GLint y, GLint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IEXTPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIEXTPROC) (GLuint index, GLuint x); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIEXTPROC) (GLuint index, GLuint x, GLuint y); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVEXTPROC) (GLuint index, const GLint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVEXTPROC) (GLuint index, const GLuint *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVEXTPROC) (GLuint index, const GLbyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVEXTPROC) (GLuint index, const GLshort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVEXTPROC) (GLuint index, const GLubyte *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVEXTPROC) (GLuint index, const GLushort *v); +typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVEXTPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVEXTPROC) (GLuint index, GLenum pname, GLuint *params); #ifdef GL_GLEXT_PROTOTYPES GLAPI void APIENTRY glGetUniformuivEXT (GLuint program, GLint location, GLuint *params); GLAPI void APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); @@ -6875,6 +7909,29 @@ GLAPI void APIENTRY glUniform1uivEXT (GLint location, GLsizei count, const GLuin GLAPI void APIENTRY glUniform2uivEXT (GLint location, GLsizei count, const GLuint *value); GLAPI void APIENTRY glUniform3uivEXT (GLint location, GLsizei count, const GLuint *value); GLAPI void APIENTRY glUniform4uivEXT (GLint location, GLsizei count, const GLuint *value); +GLAPI void APIENTRY glVertexAttribI1iEXT (GLuint index, GLint x); +GLAPI void APIENTRY glVertexAttribI2iEXT (GLuint index, GLint x, GLint y); +GLAPI void APIENTRY glVertexAttribI3iEXT (GLuint index, GLint x, GLint y, GLint z); +GLAPI void APIENTRY glVertexAttribI4iEXT (GLuint index, GLint x, GLint y, GLint z, GLint w); +GLAPI void APIENTRY glVertexAttribI1uiEXT (GLuint index, GLuint x); +GLAPI void APIENTRY glVertexAttribI2uiEXT (GLuint index, GLuint x, GLuint y); +GLAPI void APIENTRY glVertexAttribI3uiEXT (GLuint index, GLuint x, GLuint y, GLuint z); +GLAPI void APIENTRY glVertexAttribI4uiEXT (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); +GLAPI void APIENTRY glVertexAttribI1ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI2ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI3ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI4ivEXT (GLuint index, const GLint *v); +GLAPI void APIENTRY glVertexAttribI1uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI2uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI3uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4uivEXT (GLuint index, const GLuint *v); +GLAPI void APIENTRY glVertexAttribI4bvEXT (GLuint index, const GLbyte *v); +GLAPI void APIENTRY glVertexAttribI4svEXT (GLuint index, const GLshort *v); +GLAPI void APIENTRY glVertexAttribI4ubvEXT (GLuint index, const GLubyte *v); +GLAPI void APIENTRY glVertexAttribI4usvEXT (GLuint index, const GLushort *v); +GLAPI void APIENTRY glVertexAttribIPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); +GLAPI void APIENTRY glGetVertexAttribIivEXT (GLuint index, GLenum pname, GLint *params); +GLAPI void APIENTRY glGetVertexAttribIuivEXT (GLuint index, GLenum pname, GLuint *params); #endif #endif /* GL_EXT_gpu_shader4 */ @@ -6977,6 +8034,89 @@ GLAPI void APIENTRY glTextureMaterialEXT (GLenum face, GLenum mode); #endif #endif /* GL_EXT_light_texture */ +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXSTORAGEMEM1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTURESTORAGEMEM1DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GLAPI void APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GLAPI void APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GLAPI GLboolean APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GLAPI void APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GLAPI void APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GLAPI void APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTexStorageMem1DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureStorageMem1DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + #ifndef GL_EXT_misc_attribute #define GL_EXT_misc_attribute 1 #endif /* GL_EXT_misc_attribute */ @@ -7018,6 +8158,18 @@ GLAPI void APIENTRY glSamplePatternEXT (GLenum pattern); #endif #endif /* GL_EXT_multisample */ +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + #ifndef GL_EXT_packed_depth_stencil #define GL_EXT_packed_depth_stencil 1 #define GL_DEPTH_STENCIL_EXT 0x84F9 @@ -7127,6 +8279,19 @@ GLAPI void APIENTRY glPolygonOffsetEXT (GLfloat factor, GLfloat bias); #endif #endif /* GL_EXT_polygon_offset */ +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + #ifndef GL_EXT_provoking_vertex #define GL_EXT_provoking_vertex 1 #define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C @@ -7139,6 +8304,20 @@ GLAPI void APIENTRY glProvokingVertexEXT (GLenum mode); #endif #endif /* GL_EXT_provoking_vertex */ +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + #ifndef GL_EXT_rescale_normal #define GL_EXT_rescale_normal 1 #define GL_RESCALE_NORMAL_EXT 0x803A @@ -7191,6 +8370,55 @@ GLAPI void APIENTRY glSecondaryColorPointerEXT (GLint size, GLenum type, GLsizei #endif #endif /* GL_EXT_secondary_color */ +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GLAPI GLboolean APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GLAPI void APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GLAPI void APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GLAPI void APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GLAPI void APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GLAPI void APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + #ifndef GL_EXT_separate_shader_objects #define GL_EXT_separate_shader_objects 1 #define GL_ACTIVE_PROGRAM_EXT 0x8B8D @@ -7211,6 +8439,19 @@ GLAPI GLuint APIENTRY glCreateShaderProgramEXT (GLenum type, const GLchar *strin #define GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA #endif /* GL_EXT_separate_specular_color */ +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + #ifndef GL_EXT_shader_image_load_formatted #define GL_EXT_shader_image_load_formatted 1 #endif /* GL_EXT_shader_image_load_formatted */ @@ -7284,6 +8525,10 @@ GLAPI void APIENTRY glMemoryBarrierEXT (GLbitfield barriers); #define GL_EXT_shader_integer_mix 1 #endif /* GL_EXT_shader_integer_mix */ +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + #ifndef GL_EXT_shadow_funcs #define GL_EXT_shadow_funcs 1 #endif /* GL_EXT_shadow_funcs */ @@ -7293,6 +8538,10 @@ GLAPI void APIENTRY glMemoryBarrierEXT (GLbitfield barriers); #define GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB #endif /* GL_EXT_shared_texture_palette */ +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + #ifndef GL_EXT_stencil_clear_tag #define GL_EXT_stencil_clear_tag 1 #define GL_STENCIL_TAG_BITS_EXT 0x88F2 @@ -7405,6 +8654,10 @@ GLAPI void APIENTRY glTexSubImage3DEXT (GLenum target, GLint level, GLint xoffse #define GL_TEXTURE_BINDING_2D_ARRAY_EXT 0x8C1D #define GL_MAX_ARRAY_TEXTURE_LAYERS_EXT 0x88FF #define GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT 0x884E +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureLayerEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); +#endif #endif /* GL_EXT_texture_array */ #ifndef GL_EXT_texture_buffer_object @@ -7501,6 +8754,12 @@ GLAPI void APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint #define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF #endif /* GL_EXT_texture_filter_anisotropic */ +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + #ifndef GL_EXT_texture_integer #define GL_EXT_texture_integer 1 #define GL_RGBA32UI_EXT 0x8D70 @@ -7633,6 +8892,16 @@ GLAPI void APIENTRY glTextureNormalEXT (GLenum mode); #define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F #endif /* GL_EXT_texture_sRGB */ +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + #ifndef GL_EXT_texture_sRGB_decode #define GL_EXT_texture_sRGB_decode 1 #define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 @@ -7640,6 +8909,10 @@ GLAPI void APIENTRY glTextureNormalEXT (GLenum mode); #define GL_SKIP_DECODE_EXT 0x8A4A #endif /* GL_EXT_texture_sRGB_decode */ +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + #ifndef GL_EXT_texture_shared_exponent #define GL_EXT_texture_shared_exponent 1 #define GL_RGB9_E5_EXT 0x8C3D @@ -7667,6 +8940,36 @@ GLAPI void APIENTRY glTextureNormalEXT (GLenum mode); #define GL_RGBA_SNORM 0x8F93 #endif /* GL_EXT_texture_snorm */ +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_BGRA8_EXT 0x93A1 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +#define GL_R16F_EXT 0x822D +#define GL_RG16F_EXT 0x822F +typedef void (APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GLAPI void APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GLAPI void APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + #ifndef GL_EXT_texture_swizzle #define GL_EXT_texture_swizzle 1 #define GL_TEXTURE_SWIZZLE_R_EXT 0x8E42 @@ -8045,6 +9348,30 @@ GLAPI void APIENTRY glVertexWeightPointerEXT (GLint size, GLenum type, GLsizei s #endif #endif /* GL_EXT_vertex_weighting */ +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLboolean APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GLAPI GLboolean APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + #ifndef GL_EXT_x11_sync_object #define GL_EXT_x11_sync_object 1 #define GL_SYNC_X11_FENCE_EXT 0x90E1 @@ -8222,10 +9549,28 @@ GLAPI void APIENTRY glBlendFuncSeparateINGR (GLenum sfactorRGB, GLenum dfactorRG #define GL_INTERLACE_READ_INGR 0x8568 #endif /* GL_INGR_interlace_read */ +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + #ifndef GL_INTEL_fragment_shader_ordering #define GL_INTEL_fragment_shader_ordering 1 #endif /* GL_INTEL_fragment_shader_ordering */ +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + #ifndef GL_INTEL_map_texture #define GL_INTEL_map_texture 1 #define GL_TEXTURE_MEMORY_LAYOUT_INTEL 0x83FF @@ -8290,7 +9635,7 @@ typedef void (APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); typedef void (APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); typedef void (APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); typedef void (APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); -typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, GLvoid *data, GLuint *bytesWritten); +typedef void (APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); typedef void (APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); typedef void (APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); #ifdef GL_GLEXT_PROTOTYPES @@ -8301,7 +9646,7 @@ GLAPI void APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); GLAPI void APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); GLAPI void APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); GLAPI void APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); -GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, GLvoid *data, GLuint *bytesWritten); +GLAPI void APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); GLAPI void APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); GLAPI void APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); #endif @@ -8317,11 +9662,37 @@ GLAPI void APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLen #define GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E #endif /* GL_MESAX_texture_stack */ +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GLAPI void APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + #ifndef GL_MESA_pack_invert #define GL_MESA_pack_invert 1 #define GL_PACK_INVERT_MESA 0x8758 #endif /* GL_MESA_pack_invert */ +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + #ifndef GL_MESA_resize_buffers #define GL_MESA_resize_buffers 1 typedef void (APIENTRYP PFNGLRESIZEBUFFERSMESAPROC) (void); @@ -8330,6 +9701,17 @@ GLAPI void APIENTRY glResizeBuffersMESA (void); #endif #endif /* GL_MESA_resize_buffers */ +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_MESA_tile_raster_order +#define GL_MESA_tile_raster_order 1 +#define GL_TILE_RASTER_ORDER_FIXED_MESA 0x8BB8 +#define GL_TILE_RASTER_ORDER_INCREASING_X_MESA 0x8BB9 +#define GL_TILE_RASTER_ORDER_INCREASING_Y_MESA 0x8BBA +#endif /* GL_MESA_tile_raster_order */ + #ifndef GL_MESA_window_pos #define GL_MESA_window_pos 1 typedef void (APIENTRYP PFNGLWINDOWPOS2DMESAPROC) (GLdouble x, GLdouble y); @@ -8391,6 +9773,10 @@ GLAPI void APIENTRY glWindowPos4svMESA (const GLshort *v); #define GL_YCBCR_MESA 0x8757 #endif /* GL_MESA_ycbcr_texture */ +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + #ifndef GL_NVX_conditional_render #define GL_NVX_conditional_render 1 typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERNVXPROC) (GLuint id); @@ -8410,6 +9796,65 @@ GLAPI void APIENTRY glEndConditionalRenderNVX (void); #define GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B #endif /* GL_NVX_gpu_memory_info */ +#ifndef GL_NVX_gpu_multicast2 +#define GL_NVX_gpu_multicast2 1 +#define GL_UPLOAD_GPU_MASK_NVX 0x954A +typedef void (APIENTRYP PFNGLUPLOADGPUMASKNVXPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTVIEWPORTPOSITIONWSCALENVXPROC) (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +typedef void (APIENTRYP PFNGLMULTICASTSCISSORARRAYVNVXPROC) (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYBUFFERSUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGpu, GLbitfield writeGpuMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +typedef GLuint (APIENTRYP PFNGLASYNCCOPYIMAGESUBDATANVXPROC) (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGpu, GLbitfield dstGpuMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glUploadGpuMaskNVX (GLbitfield mask); +GLAPI void APIENTRY glMulticastViewportArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastViewportPositionWScaleNVX (GLuint gpu, GLuint index, GLfloat xcoeff, GLfloat ycoeff); +GLAPI void APIENTRY glMulticastScissorArrayvNVX (GLuint gpu, GLuint first, GLsizei count, const GLint *v); +GLAPI GLuint APIENTRY glAsyncCopyBufferSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *fenceValueArray, GLuint readGpu, GLbitfield writeGpuMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +GLAPI GLuint APIENTRY glAsyncCopyImageSubDataNVX (GLsizei waitSemaphoreCount, const GLuint *waitSemaphoreArray, const GLuint64 *waitValueArray, GLuint srcGpu, GLbitfield dstGpuMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth, GLsizei signalSemaphoreCount, const GLuint *signalSemaphoreArray, const GLuint64 *signalValueArray); +#endif +#endif /* GL_NVX_gpu_multicast2 */ + +#ifndef GL_NVX_linked_gpu_multicast +#define GL_NVX_linked_gpu_multicast 1 +#define GL_LGPU_SEPARATE_STORAGE_BIT_NVX 0x0800 +#define GL_MAX_LGPU_GPUS_NVX 0x92BA +typedef void (APIENTRYP PFNGLLGPUNAMEDBUFFERSUBDATANVXPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLLGPUCOPYIMAGESUBDATANVXPROC) (GLuint sourceGpu, GLbitfield destinationGpuMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +typedef void (APIENTRYP PFNGLLGPUINTERLOCKNVXPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glLGPUNamedBufferSubDataNVX (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glLGPUCopyImageSubDataNVX (GLuint sourceGpu, GLbitfield destinationGpuMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srxY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth); +GLAPI void APIENTRY glLGPUInterlockNVX (void); +#endif +#endif /* GL_NVX_linked_gpu_multicast */ + +#ifndef GL_NVX_progress_fence +#define GL_NVX_progress_fence 1 +typedef GLuint (APIENTRYP PFNGLCREATEPROGRESSFENCENVXPROC) (void); +typedef void (APIENTRYP PFNGLSIGNALSEMAPHOREUI64NVXPROC) (GLuint signalGpu, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLWAITSEMAPHOREUI64NVXPROC) (GLuint waitGpu, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +typedef void (APIENTRYP PFNGLCLIENTWAITSEMAPHOREUI64NVXPROC) (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLuint APIENTRY glCreateProgressFenceNVX (void); +GLAPI void APIENTRY glSignalSemaphoreui64NVX (GLuint signalGpu, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glWaitSemaphoreui64NVX (GLuint waitGpu, GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +GLAPI void APIENTRY glClientWaitSemaphoreui64NVX (GLsizei fenceObjectCount, const GLuint *semaphoreArray, const GLuint64 *fenceValueArray); +#endif +#endif /* GL_NVX_progress_fence */ + +#ifndef GL_NV_alpha_to_coverage_dither_control +#define GL_NV_alpha_to_coverage_dither_control 1 +#define GL_ALPHA_TO_COVERAGE_DITHER_DEFAULT_NV 0x934D +#define GL_ALPHA_TO_COVERAGE_DITHER_ENABLE_NV 0x934E +#define GL_ALPHA_TO_COVERAGE_DITHER_DISABLE_NV 0x934F +#define GL_ALPHA_TO_COVERAGE_DITHER_MODE_NV 0x92BF +typedef void (APIENTRYP PFNGLALPHATOCOVERAGEDITHERCONTROLNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glAlphaToCoverageDitherControlNV (GLenum mode); +#endif +#endif /* GL_NV_alpha_to_coverage_dither_control */ + #ifndef GL_NV_bindless_multi_draw_indirect #define GL_NV_bindless_multi_draw_indirect 1 typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei stride, GLint vertexBufferCount); @@ -8420,6 +9865,16 @@ GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessNV (GLenum mode, GLenum t #endif #endif /* GL_NV_bindless_multi_draw_indirect */ +#ifndef GL_NV_bindless_multi_draw_indirect_count +#define GL_NV_bindless_multi_draw_indirect_count 1 +typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTBINDLESSCOUNTNVPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glMultiDrawArraysIndirectBindlessCountNV (GLenum mode, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +GLAPI void APIENTRY glMultiDrawElementsIndirectBindlessCountNV (GLenum mode, GLenum type, const void *indirect, GLsizei drawCount, GLsizei maxDrawCount, GLsizei stride, GLint vertexBufferCount); +#endif +#endif /* GL_NV_bindless_multi_draw_indirect_count */ + #ifndef GL_NV_bindless_texture #define GL_NV_bindless_texture 1 typedef GLuint64 (APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); @@ -8516,16 +9971,94 @@ GLAPI void APIENTRY glBlendBarrierNV (void); #define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 #endif /* GL_NV_blend_equation_advanced_coherent */ +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#endif /* GL_NV_blend_minmax_factor */ + #ifndef GL_NV_blend_square #define GL_NV_blend_square 1 #endif /* GL_NV_blend_square */ +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_command_list +#define GL_NV_command_list 1 +#define GL_TERMINATE_SEQUENCE_COMMAND_NV 0x0000 +#define GL_NOP_COMMAND_NV 0x0001 +#define GL_DRAW_ELEMENTS_COMMAND_NV 0x0002 +#define GL_DRAW_ARRAYS_COMMAND_NV 0x0003 +#define GL_DRAW_ELEMENTS_STRIP_COMMAND_NV 0x0004 +#define GL_DRAW_ARRAYS_STRIP_COMMAND_NV 0x0005 +#define GL_DRAW_ELEMENTS_INSTANCED_COMMAND_NV 0x0006 +#define GL_DRAW_ARRAYS_INSTANCED_COMMAND_NV 0x0007 +#define GL_ELEMENT_ADDRESS_COMMAND_NV 0x0008 +#define GL_ATTRIBUTE_ADDRESS_COMMAND_NV 0x0009 +#define GL_UNIFORM_ADDRESS_COMMAND_NV 0x000A +#define GL_BLEND_COLOR_COMMAND_NV 0x000B +#define GL_STENCIL_REF_COMMAND_NV 0x000C +#define GL_LINE_WIDTH_COMMAND_NV 0x000D +#define GL_POLYGON_OFFSET_COMMAND_NV 0x000E +#define GL_ALPHA_REF_COMMAND_NV 0x000F +#define GL_VIEWPORT_COMMAND_NV 0x0010 +#define GL_SCISSOR_COMMAND_NV 0x0011 +#define GL_FRONT_FACE_COMMAND_NV 0x0012 +typedef void (APIENTRYP PFNGLCREATESTATESNVPROC) (GLsizei n, GLuint *states); +typedef void (APIENTRYP PFNGLDELETESTATESNVPROC) (GLsizei n, const GLuint *states); +typedef GLboolean (APIENTRYP PFNGLISSTATENVPROC) (GLuint state); +typedef void (APIENTRYP PFNGLSTATECAPTURENVPROC) (GLuint state, GLenum mode); +typedef GLuint (APIENTRYP PFNGLGETCOMMANDHEADERNVPROC) (GLenum tokenID, GLuint size); +typedef GLushort (APIENTRYP PFNGLGETSTAGEINDEXNVPROC) (GLenum shadertype); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSNVPROC) (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSADDRESSNVPROC) (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESNVPROC) (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLDRAWCOMMANDSSTATESADDRESSNVPROC) (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCREATECOMMANDLISTSNVPROC) (GLsizei n, GLuint *lists); +typedef void (APIENTRYP PFNGLDELETECOMMANDLISTSNVPROC) (GLsizei n, const GLuint *lists); +typedef GLboolean (APIENTRYP PFNGLISCOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLLISTDRAWCOMMANDSSTATESCLIENTNVPROC) (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +typedef void (APIENTRYP PFNGLCOMMANDLISTSEGMENTSNVPROC) (GLuint list, GLuint segments); +typedef void (APIENTRYP PFNGLCOMPILECOMMANDLISTNVPROC) (GLuint list); +typedef void (APIENTRYP PFNGLCALLCOMMANDLISTNVPROC) (GLuint list); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateStatesNV (GLsizei n, GLuint *states); +GLAPI void APIENTRY glDeleteStatesNV (GLsizei n, const GLuint *states); +GLAPI GLboolean APIENTRY glIsStateNV (GLuint state); +GLAPI void APIENTRY glStateCaptureNV (GLuint state, GLenum mode); +GLAPI GLuint APIENTRY glGetCommandHeaderNV (GLenum tokenID, GLuint size); +GLAPI GLushort APIENTRY glGetStageIndexNV (GLenum shadertype); +GLAPI void APIENTRY glDrawCommandsNV (GLenum primitiveMode, GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsAddressNV (GLenum primitiveMode, const GLuint64 *indirects, const GLsizei *sizes, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesNV (GLuint buffer, const GLintptr *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glDrawCommandsStatesAddressNV (const GLuint64 *indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCreateCommandListsNV (GLsizei n, GLuint *lists); +GLAPI void APIENTRY glDeleteCommandListsNV (GLsizei n, const GLuint *lists); +GLAPI GLboolean APIENTRY glIsCommandListNV (GLuint list); +GLAPI void APIENTRY glListDrawCommandsStatesClientNV (GLuint list, GLuint segment, const void **indirects, const GLsizei *sizes, const GLuint *states, const GLuint *fbos, GLuint count); +GLAPI void APIENTRY glCommandListSegmentsNV (GLuint list, GLuint segments); +GLAPI void APIENTRY glCompileCommandListNV (GLuint list); +GLAPI void APIENTRY glCallCommandListNV (GLuint list); +#endif +#endif /* GL_NV_command_list */ + #ifndef GL_NV_compute_program5 #define GL_NV_compute_program5 1 #define GL_COMPUTE_PROGRAM_NV 0x90FB #define GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV 0x90FC #endif /* GL_NV_compute_program5 */ +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + #ifndef GL_NV_conditional_render #define GL_NV_conditional_render 1 #define GL_QUERY_WAIT_NV 0x8E13 @@ -8540,6 +10073,49 @@ GLAPI void APIENTRY glEndConditionalRenderNV (void); #endif #endif /* GL_NV_conditional_render */ +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_dilate +#define GL_NV_conservative_raster_dilate 1 +#define GL_CONSERVATIVE_RASTER_DILATE_NV 0x9379 +#define GL_CONSERVATIVE_RASTER_DILATE_RANGE_NV 0x937A +#define GL_CONSERVATIVE_RASTER_DILATE_GRANULARITY_NV 0x937B +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERFNVPROC) (GLenum pname, GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameterfNV (GLenum pname, GLfloat value); +#endif +#endif /* GL_NV_conservative_raster_dilate */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_conservative_raster_underestimation +#define GL_NV_conservative_raster_underestimation 1 +#endif /* GL_NV_conservative_raster_underestimation */ + #ifndef GL_NV_copy_depth_to_color #define GL_NV_copy_depth_to_color 1 #define GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E @@ -8589,6 +10165,23 @@ GLAPI void APIENTRY glDrawTextureNV (GLuint texture, GLuint sampler, GLfloat x0, #endif #endif /* GL_NV_draw_texture */ +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (APIENTRY *GLVULKANPROCNV)(void); +typedef void (APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GLAPI GLVULKANPROCNV APIENTRY glGetVkProcAddrNV (const GLchar *name); +GLAPI void APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GLAPI void APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + #ifndef GL_NV_evaluators #define GL_NV_evaluators 1 #define GL_EVAL_2D_NV 0x86C0 @@ -8682,6 +10275,11 @@ GLAPI void APIENTRY glSetFenceNV (GLuint fence, GLenum condition); #endif #endif /* GL_NV_fence */ +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + #ifndef GL_NV_float_buffer #define GL_NV_float_buffer 1 #define GL_FLOAT_R_NV 0x8880 @@ -8708,6 +10306,16 @@ GLAPI void APIENTRY glSetFenceNV (GLuint fence, GLenum condition); #define GL_EYE_PLANE_ABSOLUTE_NV 0x855C #endif /* GL_NV_fog_distance */ +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + #ifndef GL_NV_fragment_program #define GL_NV_fragment_program 1 #define GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV 0x8868 @@ -8749,6 +10357,34 @@ GLAPI void APIENTRY glGetProgramNamedParameterdvNV (GLuint id, GLsizei len, cons #define GL_NV_fragment_program_option 1 #endif /* GL_NV_fragment_program_option */ +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GLAPI void APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GLAPI void APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + #ifndef GL_NV_framebuffer_multisample_coverage #define GL_NV_framebuffer_multisample_coverage 1 #define GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB @@ -8768,12 +10404,10 @@ GLAPI void APIENTRY glRenderbufferStorageMultisampleCoverageNV (GLenum target, G #define GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 typedef void (APIENTRYP PFNGLPROGRAMVERTEXLIMITNVPROC) (GLenum target, GLint limit); typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); -typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYEREXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREFACEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); #ifdef GL_GLEXT_PROTOTYPES GLAPI void APIENTRY glProgramVertexLimitNV (GLenum target, GLint limit); GLAPI void APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); -GLAPI void APIENTRY glFramebufferTextureLayerEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); GLAPI void APIENTRY glFramebufferTextureFaceEXT (GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); #endif #endif /* GL_NV_geometry_program4 */ @@ -8782,6 +10416,45 @@ GLAPI void APIENTRY glFramebufferTextureFaceEXT (GLenum target, GLenum attachmen #define GL_NV_geometry_shader4 1 #endif /* GL_NV_geometry_shader4 */ +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_multicast +#define GL_NV_gpu_multicast 1 +#define GL_PER_GPU_STORAGE_BIT_NV 0x0800 +#define GL_MULTICAST_GPUS_NV 0x92BA +#define GL_RENDER_GPU_MASK_NV 0x9558 +#define GL_PER_GPU_STORAGE_NV 0x9548 +#define GL_MULTICAST_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9549 +typedef void (APIENTRYP PFNGLRENDERGPUMASKNVPROC) (GLbitfield mask); +typedef void (APIENTRYP PFNGLMULTICASTBUFFERSUBDATANVPROC) (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +typedef void (APIENTRYP PFNGLMULTICASTCOPYBUFFERSUBDATANVPROC) (GLuint readGpu, GLbitfield writeGpuMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +typedef void (APIENTRYP PFNGLMULTICASTCOPYIMAGESUBDATANVPROC) (GLuint srcGpu, GLbitfield dstGpuMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +typedef void (APIENTRYP PFNGLMULTICASTBLITFRAMEBUFFERNVPROC) (GLuint srcGpu, GLuint dstGpu, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +typedef void (APIENTRYP PFNGLMULTICASTFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLMULTICASTBARRIERNVPROC) (void); +typedef void (APIENTRYP PFNGLMULTICASTWAITSYNCNVPROC) (GLuint signalGpu, GLbitfield waitGpuMask); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUIVNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +typedef void (APIENTRYP PFNGLMULTICASTGETQUERYOBJECTUI64VNVPROC) (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glRenderGpuMaskNV (GLbitfield mask); +GLAPI void APIENTRY glMulticastBufferSubDataNV (GLbitfield gpuMask, GLuint buffer, GLintptr offset, GLsizeiptr size, const void *data); +GLAPI void APIENTRY glMulticastCopyBufferSubDataNV (GLuint readGpu, GLbitfield writeGpuMask, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +GLAPI void APIENTRY glMulticastCopyImageSubDataNV (GLuint srcGpu, GLbitfield dstGpuMask, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +GLAPI void APIENTRY glMulticastBlitFramebufferNV (GLuint srcGpu, GLuint dstGpu, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +GLAPI void APIENTRY glMulticastFramebufferSampleLocationsfvNV (GLuint gpu, GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glMulticastBarrierNV (void); +GLAPI void APIENTRY glMulticastWaitSyncNV (GLuint signalGpu, GLbitfield waitGpuMask); +GLAPI void APIENTRY glMulticastGetQueryObjectivNV (GLuint gpu, GLuint id, GLenum pname, GLint *params); +GLAPI void APIENTRY glMulticastGetQueryObjectuivNV (GLuint gpu, GLuint id, GLenum pname, GLuint *params); +GLAPI void APIENTRY glMulticastGetQueryObjecti64vNV (GLuint gpu, GLuint id, GLenum pname, GLint64 *params); +GLAPI void APIENTRY glMulticastGetQueryObjectui64vNV (GLuint gpu, GLuint id, GLenum pname, GLuint64 *params); +#endif +#endif /* GL_NV_gpu_multicast */ + #ifndef GL_NV_gpu_program4 #define GL_NV_gpu_program4 1 #define GL_MIN_PROGRAM_TEXEL_OFFSET_NV 0x8904 @@ -8954,15 +10627,130 @@ GLAPI void APIENTRY glVertexAttribs4hvNV (GLuint index, GLsizei n, const GLhalfN #endif #endif /* GL_NV_half_float */ +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + #ifndef GL_NV_light_max_exponent #define GL_NV_light_max_exponent 1 #define GL_MAX_SHININESS_NV 0x8504 #define GL_MAX_SPOT_EXPONENT_NV 0x8505 #endif /* GL_NV_light_max_exponent */ +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GLAPI void APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GLAPI void APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GLAPI void APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GLAPI void APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GLAPI void APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GLAPI void APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GLAPI void APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + #ifndef GL_NV_multisample_coverage #define GL_NV_multisample_coverage 1 -#define GL_COLOR_SAMPLES_NV 0x8E20 #endif /* GL_NV_multisample_coverage */ #ifndef GL_NV_multisample_filter_hint @@ -9075,13 +10863,11 @@ GLAPI void APIENTRY glProgramBufferParametersIuivNV (GLenum target, GLuint bindi #define GL_SKIP_MISSING_GLYPH_NV 0x90A9 #define GL_USE_MISSING_GLYPH_NV 0x90AA #define GL_PATH_ERROR_POSITION_NV 0x90AB -#define GL_PATH_FOG_GEN_MODE_NV 0x90AC #define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD #define GL_ADJACENT_PAIRS_NV 0x90AE #define GL_FIRST_TO_REST_NV 0x90AF #define GL_PATH_GEN_MODE_NV 0x90B0 #define GL_PATH_GEN_COEFF_NV 0x90B1 -#define GL_PATH_GEN_COLOR_FORMAT_NV 0x90B2 #define GL_PATH_GEN_COMPONENTS_NV 0x90B3 #define GL_PATH_STENCIL_FUNC_NV 0x90B7 #define GL_PATH_STENCIL_REF_NV 0x90B8 @@ -9150,8 +10936,44 @@ GLAPI void APIENTRY glProgramBufferParametersIuivNV (GLenum target, GLuint bindi #define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 #define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 #define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_2_BYTES_NV 0x1407 +#define GL_3_BYTES_NV 0x1408 +#define GL_4_BYTES_NV 0x1409 +#define GL_EYE_LINEAR_NV 0x2400 +#define GL_OBJECT_LINEAR_NV 0x2401 +#define GL_CONSTANT_NV 0x8576 +#define GL_PATH_FOG_GEN_MODE_NV 0x90AC #define GL_PRIMARY_COLOR_NV 0x852C #define GL_SECONDARY_COLOR_NV 0x852D +#define GL_PATH_GEN_COLOR_FORMAT_NV 0x90B2 +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D typedef GLuint (APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); typedef void (APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); typedef GLboolean (APIENTRYP PFNGLISPATHNVPROC) (GLuint path); @@ -9178,9 +11000,6 @@ typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint refere typedef void (APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); typedef void (APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); typedef void (APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); -typedef void (APIENTRYP PFNGLPATHCOLORGENNVPROC) (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); -typedef void (APIENTRYP PFNGLPATHTEXGENNVPROC) (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); -typedef void (APIENTRYP PFNGLPATHFOGGENNVPROC) (GLenum genMode); typedef void (APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); typedef void (APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); typedef void (APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); @@ -9193,14 +11012,32 @@ typedef void (APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dash typedef void (APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); typedef void (APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); typedef void (APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); -typedef void (APIENTRYP PFNGLGETPATHCOLORGENIVNVPROC) (GLenum color, GLenum pname, GLint *value); -typedef void (APIENTRYP PFNGLGETPATHCOLORGENFVNVPROC) (GLenum color, GLenum pname, GLfloat *value); -typedef void (APIENTRYP PFNGLGETPATHTEXGENIVNVPROC) (GLenum texCoordSet, GLenum pname, GLint *value); -typedef void (APIENTRYP PFNGLGETPATHTEXGENFVNVPROC) (GLenum texCoordSet, GLenum pname, GLfloat *value); typedef GLboolean (APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); typedef GLboolean (APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); typedef GLfloat (APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); typedef GLboolean (APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (APIENTRYP PFNGLPATHCOLORGENNVPROC) (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHTEXGENNVPROC) (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (APIENTRYP PFNGLPATHFOGGENNVPROC) (GLenum genMode); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENIVNVPROC) (GLenum color, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHCOLORGENFVNVPROC) (GLenum color, GLenum pname, GLfloat *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENIVNVPROC) (GLenum texCoordSet, GLenum pname, GLint *value); +typedef void (APIENTRYP PFNGLGETPATHTEXGENFVNVPROC) (GLenum texCoordSet, GLenum pname, GLfloat *value); #ifdef GL_GLEXT_PROTOTYPES GLAPI GLuint APIENTRY glGenPathsNV (GLsizei range); GLAPI void APIENTRY glDeletePathsNV (GLuint path, GLsizei range); @@ -9228,9 +11065,6 @@ GLAPI void APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint GLAPI void APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); GLAPI void APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); GLAPI void APIENTRY glPathCoverDepthFuncNV (GLenum func); -GLAPI void APIENTRY glPathColorGenNV (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); -GLAPI void APIENTRY glPathTexGenNV (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); -GLAPI void APIENTRY glPathFogGenNV (GLenum genMode); GLAPI void APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); GLAPI void APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); GLAPI void APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); @@ -9243,17 +11077,40 @@ GLAPI void APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); GLAPI void APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); GLAPI void APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); GLAPI void APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); -GLAPI void APIENTRY glGetPathColorGenivNV (GLenum color, GLenum pname, GLint *value); -GLAPI void APIENTRY glGetPathColorGenfvNV (GLenum color, GLenum pname, GLfloat *value); -GLAPI void APIENTRY glGetPathTexGenivNV (GLenum texCoordSet, GLenum pname, GLint *value); -GLAPI void APIENTRY glGetPathTexGenfvNV (GLenum texCoordSet, GLenum pname, GLfloat *value); GLAPI GLboolean APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); GLAPI GLboolean APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); GLAPI GLfloat APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); GLAPI GLboolean APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GLAPI void APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GLAPI void APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GLAPI void APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI void APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GLAPI GLenum APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GLAPI GLenum APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI GLenum APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GLAPI void APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GLAPI void APIENTRY glPathColorGenNV (GLenum color, GLenum genMode, GLenum colorFormat, const GLfloat *coeffs); +GLAPI void APIENTRY glPathTexGenNV (GLenum texCoordSet, GLenum genMode, GLint components, const GLfloat *coeffs); +GLAPI void APIENTRY glPathFogGenNV (GLenum genMode); +GLAPI void APIENTRY glGetPathColorGenivNV (GLenum color, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathColorGenfvNV (GLenum color, GLenum pname, GLfloat *value); +GLAPI void APIENTRY glGetPathTexGenivNV (GLenum texCoordSet, GLenum pname, GLint *value); +GLAPI void APIENTRY glGetPathTexGenfvNV (GLenum texCoordSet, GLenum pname, GLfloat *value); #endif #endif /* GL_NV_path_rendering */ +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + #ifndef GL_NV_pixel_data_range #define GL_NV_pixel_data_range 1 #define GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878 @@ -9319,6 +11176,38 @@ GLAPI void APIENTRY glPrimitiveRestartIndexNV (GLuint index); #endif #endif /* GL_NV_primitive_restart */ +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_query_resource +#define GL_NV_query_resource 1 +#define GL_QUERY_RESOURCE_TYPE_VIDMEM_ALLOC_NV 0x9540 +#define GL_QUERY_RESOURCE_MEMTYPE_VIDMEM_NV 0x9542 +#define GL_QUERY_RESOURCE_SYS_RESERVED_NV 0x9544 +#define GL_QUERY_RESOURCE_TEXTURE_NV 0x9545 +#define GL_QUERY_RESOURCE_RENDERBUFFER_NV 0x9546 +#define GL_QUERY_RESOURCE_BUFFEROBJECT_NV 0x9547 +typedef GLint (APIENTRYP PFNGLQUERYRESOURCENVPROC) (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLint APIENTRY glQueryResourceNV (GLenum queryType, GLint tagId, GLuint count, GLint *buffer); +#endif +#endif /* GL_NV_query_resource */ + +#ifndef GL_NV_query_resource_tag +#define GL_NV_query_resource_tag 1 +typedef void (APIENTRYP PFNGLGENQUERYRESOURCETAGNVPROC) (GLsizei n, GLint *tagIds); +typedef void (APIENTRYP PFNGLDELETEQUERYRESOURCETAGNVPROC) (GLsizei n, const GLint *tagIds); +typedef void (APIENTRYP PFNGLQUERYRESOURCETAGNVPROC) (GLint tagId, const GLchar *tagString); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glGenQueryResourceTagNV (GLsizei n, GLint *tagIds); +GLAPI void APIENTRY glDeleteQueryResourceTagNV (GLsizei n, const GLint *tagIds); +GLAPI void APIENTRY glQueryResourceTagNV (GLint tagId, const GLchar *tagString); +#endif +#endif /* GL_NV_query_resource_tag */ + #ifndef GL_NV_register_combiners #define GL_NV_register_combiners 1 #define GL_REGISTER_COMBINERS_NV 0x8522 @@ -9411,6 +11300,52 @@ GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, #endif #endif /* GL_NV_register_combiners2 */ +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_robustness_video_memory_purge +#define GL_NV_robustness_video_memory_purge 1 +#define GL_PURGED_CONTEXT_RESET_NV 0x92BB +#endif /* GL_NV_robustness_video_memory_purge */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GLAPI void APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GLAPI void APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + #ifndef GL_NV_shader_atomic_counters #define GL_NV_shader_atomic_counters 1 #endif /* GL_NV_shader_atomic_counters */ @@ -9419,6 +11354,18 @@ GLAPI void APIENTRY glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, #define GL_NV_shader_atomic_float 1 #endif /* GL_NV_shader_atomic_float */ +#ifndef GL_NV_shader_atomic_float64 +#define GL_NV_shader_atomic_float64 1 +#endif /* GL_NV_shader_atomic_float64 */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_atomic_int64 +#define GL_NV_shader_atomic_int64 1 +#endif /* GL_NV_shader_atomic_int64 */ + #ifndef GL_NV_shader_buffer_load #define GL_NV_shader_buffer_load 1 #define GL_BUFFER_GPU_ADDRESS_NV 0x8F1D @@ -9463,6 +11410,15 @@ GLAPI void APIENTRY glProgramUniformui64vNV (GLuint program, GLint location, GLs #define GL_NV_shader_storage_buffer_object 1 #endif /* GL_NV_shader_storage_buffer_object */ +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + #ifndef GL_NV_shader_thread_group #define GL_NV_shader_thread_group 1 #define GL_WARP_SIZE_NV 0x9339 @@ -9474,6 +11430,51 @@ GLAPI void APIENTRY glProgramUniformui64vNV (GLuint program, GLint location, GLs #define GL_NV_shader_thread_shuffle 1 #endif /* GL_NV_shader_thread_shuffle */ +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glBindShadingRateImageNV (GLuint texture); +GLAPI void APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GLAPI void APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GLAPI void APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GLAPI void APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GLAPI void APIENTRY glShadingRateSampleOrderNV (GLenum order); +GLAPI void APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + #ifndef GL_NV_tessellation_program5 #define GL_NV_tessellation_program5 1 #define GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 @@ -9550,6 +11551,10 @@ GLAPI void APIENTRY glTextureImage3DMultisampleCoverageNV (GLuint texture, GLenu #define GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 #endif /* GL_NV_texture_rectangle */ +#ifndef GL_NV_texture_rectangle_compressed +#define GL_NV_texture_rectangle_compressed 1 +#endif /* GL_NV_texture_rectangle_compressed */ + #ifndef GL_NV_texture_shader #define GL_NV_texture_shader 1 #define GL_OFFSET_TEXTURE_RECTANGLE_NV 0x864C @@ -9653,6 +11658,23 @@ GLAPI void APIENTRY glTextureImage3DMultisampleCoverageNV (GLuint texture, GLenu #define GL_FORCE_BLUE_TO_ONE_NV 0x8860 #endif /* GL_NV_texture_shader3 */ +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GLAPI void APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GLAPI void APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + #ifndef GL_NV_transform_feedback #define GL_NV_transform_feedback 1 #define GL_BACK_PRIMARY_COLOR_NV 0x8C77 @@ -9688,7 +11710,7 @@ GLAPI void APIENTRY glTextureImage3DMultisampleCoverageNV (GLuint texture, GLenu #define GL_SKIP_COMPONENTS1_NV -6 typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKNVPROC) (GLenum primitiveMode); typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKNVPROC) (void); -typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC) (GLuint count, const GLint *attribs, GLenum bufferMode); +typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKATTRIBSNVPROC) (GLsizei count, const GLint *attribs, GLenum bufferMode); typedef void (APIENTRYP PFNGLBINDBUFFERRANGENVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); typedef void (APIENTRYP PFNGLBINDBUFFEROFFSETNVPROC) (GLenum target, GLuint index, GLuint buffer, GLintptr offset); typedef void (APIENTRYP PFNGLBINDBUFFERBASENVPROC) (GLenum target, GLuint index, GLuint buffer); @@ -9701,7 +11723,7 @@ typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKSTREAMATTRIBSNVPROC) (GLsizei coun #ifdef GL_GLEXT_PROTOTYPES GLAPI void APIENTRY glBeginTransformFeedbackNV (GLenum primitiveMode); GLAPI void APIENTRY glEndTransformFeedbackNV (void); -GLAPI void APIENTRY glTransformFeedbackAttribsNV (GLuint count, const GLint *attribs, GLenum bufferMode); +GLAPI void APIENTRY glTransformFeedbackAttribsNV (GLsizei count, const GLint *attribs, GLenum bufferMode); GLAPI void APIENTRY glBindBufferRangeNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); GLAPI void APIENTRY glBindBufferOffsetNV (GLenum target, GLuint index, GLuint buffer, GLintptr offset); GLAPI void APIENTRY glBindBufferBaseNV (GLenum target, GLuint index, GLuint buffer); @@ -9738,6 +11760,13 @@ GLAPI void APIENTRY glDrawTransformFeedbackNV (GLenum mode, GLuint id); #endif #endif /* GL_NV_transform_feedback2 */ +#ifndef GL_NV_uniform_buffer_unified_memory +#define GL_NV_uniform_buffer_unified_memory 1 +#define GL_UNIFORM_BUFFER_UNIFIED_NV 0x936E +#define GL_UNIFORM_BUFFER_ADDRESS_NV 0x936F +#define GL_UNIFORM_BUFFER_LENGTH_NV 0x9370 +#endif /* GL_NV_uniform_buffer_unified_memory */ + #ifndef GL_NV_vdpau_interop #define GL_NV_vdpau_interop 1 typedef GLintptr GLvdpauSurfaceNV; @@ -9751,7 +11780,7 @@ typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACENVPROC) (const typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTEROUTPUTSURFACENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); typedef GLboolean (APIENTRYP PFNGLVDPAUISSURFACENVPROC) (GLvdpauSurfaceNV surface); typedef void (APIENTRYP PFNGLVDPAUUNREGISTERSURFACENVPROC) (GLvdpauSurfaceNV surface); -typedef void (APIENTRYP PFNGLVDPAUGETSURFACEIVNVPROC) (GLvdpauSurfaceNV surface, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +typedef void (APIENTRYP PFNGLVDPAUGETSURFACEIVNVPROC) (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); typedef void (APIENTRYP PFNGLVDPAUSURFACEACCESSNVPROC) (GLvdpauSurfaceNV surface, GLenum access); typedef void (APIENTRYP PFNGLVDPAUMAPSURFACESNVPROC) (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); typedef void (APIENTRYP PFNGLVDPAUUNMAPSURFACESNVPROC) (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); @@ -9762,13 +11791,21 @@ GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceNV (const void *vdpSu GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterOutputSurfaceNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames); GLAPI GLboolean APIENTRY glVDPAUIsSurfaceNV (GLvdpauSurfaceNV surface); GLAPI void APIENTRY glVDPAUUnregisterSurfaceNV (GLvdpauSurfaceNV surface); -GLAPI void APIENTRY glVDPAUGetSurfaceivNV (GLvdpauSurfaceNV surface, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); +GLAPI void APIENTRY glVDPAUGetSurfaceivNV (GLvdpauSurfaceNV surface, GLenum pname, GLsizei count, GLsizei *length, GLint *values); GLAPI void APIENTRY glVDPAUSurfaceAccessNV (GLvdpauSurfaceNV surface, GLenum access); GLAPI void APIENTRY glVDPAUMapSurfacesNV (GLsizei numSurfaces, const GLvdpauSurfaceNV *surfaces); GLAPI void APIENTRY glVDPAUUnmapSurfacesNV (GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); #endif #endif /* GL_NV_vdpau_interop */ +#ifndef GL_NV_vdpau_interop2 +#define GL_NV_vdpau_interop2 1 +typedef GLvdpauSurfaceNV (APIENTRYP PFNGLVDPAUREGISTERVIDEOSURFACEWITHPICTURESTRUCTURENVPROC) (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI GLvdpauSurfaceNV APIENTRY glVDPAURegisterVideoSurfaceWithPictureStructureNV (const void *vdpSurface, GLenum target, GLsizei numTextureNames, const GLuint *textureNames, GLboolean isFrameStructure); +#endif +#endif /* GL_NV_vdpau_interop2 */ + #ifndef GL_NV_vertex_array_range #define GL_NV_vertex_array_range 1 #define GL_VERTEX_ARRAY_RANGE_NV 0x851D @@ -10124,54 +12161,6 @@ GLAPI void APIENTRY glVertexAttribs4ubvNV (GLuint index, GLsizei count, const GL #ifndef GL_NV_vertex_program4 #define GL_NV_vertex_program4 1 #define GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD -typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IEXTPROC) (GLuint index, GLint x); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IEXTPROC) (GLuint index, GLint x, GLint y); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IEXTPROC) (GLuint index, GLint x, GLint y, GLint z); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IEXTPROC) (GLuint index, GLint x, GLint y, GLint z, GLint w); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIEXTPROC) (GLuint index, GLuint x); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIEXTPROC) (GLuint index, GLuint x, GLuint y); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIEXTPROC) (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVEXTPROC) (GLuint index, const GLint *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVEXTPROC) (GLuint index, const GLint *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVEXTPROC) (GLuint index, const GLint *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVEXTPROC) (GLuint index, const GLint *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVEXTPROC) (GLuint index, const GLuint *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVEXTPROC) (GLuint index, const GLuint *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVEXTPROC) (GLuint index, const GLuint *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVEXTPROC) (GLuint index, const GLuint *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVEXTPROC) (GLuint index, const GLbyte *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVEXTPROC) (GLuint index, const GLshort *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVEXTPROC) (GLuint index, const GLubyte *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVEXTPROC) (GLuint index, const GLushort *v); -typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTEREXTPROC) (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); -typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVEXTPROC) (GLuint index, GLenum pname, GLint *params); -typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVEXTPROC) (GLuint index, GLenum pname, GLuint *params); -#ifdef GL_GLEXT_PROTOTYPES -GLAPI void APIENTRY glVertexAttribI1iEXT (GLuint index, GLint x); -GLAPI void APIENTRY glVertexAttribI2iEXT (GLuint index, GLint x, GLint y); -GLAPI void APIENTRY glVertexAttribI3iEXT (GLuint index, GLint x, GLint y, GLint z); -GLAPI void APIENTRY glVertexAttribI4iEXT (GLuint index, GLint x, GLint y, GLint z, GLint w); -GLAPI void APIENTRY glVertexAttribI1uiEXT (GLuint index, GLuint x); -GLAPI void APIENTRY glVertexAttribI2uiEXT (GLuint index, GLuint x, GLuint y); -GLAPI void APIENTRY glVertexAttribI3uiEXT (GLuint index, GLuint x, GLuint y, GLuint z); -GLAPI void APIENTRY glVertexAttribI4uiEXT (GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); -GLAPI void APIENTRY glVertexAttribI1ivEXT (GLuint index, const GLint *v); -GLAPI void APIENTRY glVertexAttribI2ivEXT (GLuint index, const GLint *v); -GLAPI void APIENTRY glVertexAttribI3ivEXT (GLuint index, const GLint *v); -GLAPI void APIENTRY glVertexAttribI4ivEXT (GLuint index, const GLint *v); -GLAPI void APIENTRY glVertexAttribI1uivEXT (GLuint index, const GLuint *v); -GLAPI void APIENTRY glVertexAttribI2uivEXT (GLuint index, const GLuint *v); -GLAPI void APIENTRY glVertexAttribI3uivEXT (GLuint index, const GLuint *v); -GLAPI void APIENTRY glVertexAttribI4uivEXT (GLuint index, const GLuint *v); -GLAPI void APIENTRY glVertexAttribI4bvEXT (GLuint index, const GLbyte *v); -GLAPI void APIENTRY glVertexAttribI4svEXT (GLuint index, const GLshort *v); -GLAPI void APIENTRY glVertexAttribI4ubvEXT (GLuint index, const GLubyte *v); -GLAPI void APIENTRY glVertexAttribI4usvEXT (GLuint index, const GLushort *v); -GLAPI void APIENTRY glVertexAttribIPointerEXT (GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer); -GLAPI void APIENTRY glGetVertexAttribIivEXT (GLuint index, GLenum pname, GLint *params); -GLAPI void APIENTRY glGetVertexAttribIuivEXT (GLuint index, GLenum pname, GLuint *params); -#endif #endif /* GL_NV_vertex_program4 */ #ifndef GL_NV_video_capture @@ -10233,6 +12222,30 @@ GLAPI void APIENTRY glVideoCaptureStreamParameterdvNV (GLuint video_capture_slot #endif #endif /* GL_NV_video_capture */ +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + #ifndef GL_OML_interlace #define GL_OML_interlace 1 #define GL_INTERLACE_OML 0x8980 @@ -10255,6 +12268,22 @@ GLAPI void APIENTRY glVideoCaptureStreamParameterdvNV (GLuint video_capture_slot #define GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 #endif /* GL_OML_subsample */ +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GLAPI void APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + #ifndef GL_PGI_misc_hints #define GL_PGI_misc_hints 1 #define GL_PREFER_DOUBLEBUFFER_HINT_PGI 0x1A1F8 @@ -10811,10 +12840,10 @@ GLAPI void APIENTRY glReferencePlaneSGIX (const GLdouble *equation); #ifndef GL_SGIX_resample #define GL_SGIX_resample 1 -#define GL_PACK_RESAMPLE_SGIX 0x842C -#define GL_UNPACK_RESAMPLE_SGIX 0x842D -#define GL_RESAMPLE_REPLICATE_SGIX 0x842E -#define GL_RESAMPLE_ZERO_FILL_SGIX 0x842F +#define GL_PACK_RESAMPLE_SGIX 0x842E +#define GL_UNPACK_RESAMPLE_SGIX 0x842F +#define GL_RESAMPLE_REPLICATE_SGIX 0x8433 +#define GL_RESAMPLE_ZERO_FILL_SGIX 0x8434 #define GL_RESAMPLE_DECIMATE_SGIX 0x8430 #endif /* GL_SGIX_resample */ diff --git a/SDL2-2.24.0/include/SDL_opengles.h b/SDL2-2.26.3/include/SDL_opengles.h similarity index 95% rename from SDL2-2.24.0/include/SDL_opengles.h rename to SDL2-2.26.3/include/SDL_opengles.h index 8511b96..f4465ea 100644 --- a/SDL2-2.24.0/include/SDL_opengles.h +++ b/SDL2-2.26.3/include/SDL_opengles.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_opengles2.h b/SDL2-2.26.3/include/SDL_opengles2.h similarity index 96% rename from SDL2-2.24.0/include/SDL_opengles2.h rename to SDL2-2.26.3/include/SDL_opengles2.h index 172fcb3..5e3b717 100644 --- a/SDL2-2.24.0/include/SDL_opengles2.h +++ b/SDL2-2.26.3/include/SDL_opengles2.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.26.3/include/SDL_opengles2_gl2.h b/SDL2-2.26.3/include/SDL_opengles2_gl2.h new file mode 100644 index 0000000..d13622a --- /dev/null +++ b/SDL2-2.26.3/include/SDL_opengles2_gl2.h @@ -0,0 +1,656 @@ +#ifndef __gles2_gl2_h_ +#define __gles2_gl2_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +/*#include */ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +#ifndef GL_GLES_PROTOTYPES +#define GL_GLES_PROTOTYPES 1 +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: .* + * Default extensions included: None + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_ES_VERSION_2_0 +#define GL_ES_VERSION_2_0 1 +/*#include */ +typedef khronos_int8_t GLbyte; +typedef khronos_float_t GLclampf; +typedef khronos_int32_t GLfixed; +typedef khronos_int16_t GLshort; +typedef khronos_uint16_t GLushort; +typedef void GLvoid; +typedef struct __GLsync *GLsync; +typedef khronos_int64_t GLint64; +typedef khronos_uint64_t GLuint64; +typedef unsigned int GLenum; +typedef unsigned int GLuint; +typedef char GLchar; +typedef khronos_float_t GLfloat; +typedef khronos_ssize_t GLsizeiptr; +typedef khronos_intptr_t GLintptr; +typedef unsigned int GLbitfield; +typedef int GLint; +typedef unsigned char GLboolean; +typedef int GLsizei; +typedef khronos_uint8_t GLubyte; +#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_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_FUNC_ADD 0x8006 +#define GL_BLEND_EQUATION 0x8009 +#define GL_BLEND_EQUATION_RGB 0x8009 +#define GL_BLEND_EQUATION_ALPHA 0x883D +#define GL_FUNC_SUBTRACT 0x800A +#define GL_FUNC_REVERSE_SUBTRACT 0x800B +#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_CONSTANT_COLOR 0x8001 +#define GL_ONE_MINUS_CONSTANT_COLOR 0x8002 +#define GL_CONSTANT_ALPHA 0x8003 +#define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004 +#define GL_BLEND_COLOR 0x8005 +#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_STREAM_DRAW 0x88E0 +#define GL_STATIC_DRAW 0x88E4 +#define GL_DYNAMIC_DRAW 0x88E8 +#define GL_BUFFER_SIZE 0x8764 +#define GL_BUFFER_USAGE 0x8765 +#define GL_CURRENT_VERTEX_ATTRIB 0x8626 +#define GL_FRONT 0x0404 +#define GL_BACK 0x0405 +#define GL_FRONT_AND_BACK 0x0408 +#define GL_TEXTURE_2D 0x0DE1 +#define GL_CULL_FACE 0x0B44 +#define GL_BLEND 0x0BE2 +#define GL_DITHER 0x0BD0 +#define GL_STENCIL_TEST 0x0B90 +#define GL_DEPTH_TEST 0x0B71 +#define GL_SCISSOR_TEST 0x0C11 +#define GL_POLYGON_OFFSET_FILL 0x8037 +#define GL_SAMPLE_ALPHA_TO_COVERAGE 0x809E +#define GL_SAMPLE_COVERAGE 0x80A0 +#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_LINE_WIDTH 0x0B21 +#define GL_ALIASED_POINT_SIZE_RANGE 0x846D +#define GL_ALIASED_LINE_WIDTH_RANGE 0x846E +#define GL_CULL_FACE_MODE 0x0B45 +#define GL_FRONT_FACE 0x0B46 +#define GL_DEPTH_RANGE 0x0B70 +#define GL_DEPTH_WRITEMASK 0x0B72 +#define GL_DEPTH_CLEAR_VALUE 0x0B73 +#define GL_DEPTH_FUNC 0x0B74 +#define GL_STENCIL_CLEAR_VALUE 0x0B91 +#define GL_STENCIL_FUNC 0x0B92 +#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_VALUE_MASK 0x0B93 +#define GL_STENCIL_WRITEMASK 0x0B98 +#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_STENCIL_BACK_REF 0x8CA3 +#define GL_STENCIL_BACK_VALUE_MASK 0x8CA4 +#define GL_STENCIL_BACK_WRITEMASK 0x8CA5 +#define GL_VIEWPORT 0x0BA2 +#define GL_SCISSOR_BOX 0x0C10 +#define GL_COLOR_CLEAR_VALUE 0x0C22 +#define GL_COLOR_WRITEMASK 0x0C23 +#define GL_UNPACK_ALIGNMENT 0x0CF5 +#define GL_PACK_ALIGNMENT 0x0D05 +#define GL_MAX_TEXTURE_SIZE 0x0D33 +#define GL_MAX_VIEWPORT_DIMS 0x0D3A +#define GL_SUBPIXEL_BITS 0x0D50 +#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_POLYGON_OFFSET_UNITS 0x2A00 +#define GL_POLYGON_OFFSET_FACTOR 0x8038 +#define GL_TEXTURE_BINDING_2D 0x8069 +#define GL_SAMPLE_BUFFERS 0x80A8 +#define GL_SAMPLES 0x80A9 +#define GL_SAMPLE_COVERAGE_VALUE 0x80AA +#define GL_SAMPLE_COVERAGE_INVERT 0x80AB +#define GL_NUM_COMPRESSED_TEXTURE_FORMATS 0x86A2 +#define GL_COMPRESSED_TEXTURE_FORMATS 0x86A3 +#define GL_DONT_CARE 0x1100 +#define GL_FASTEST 0x1101 +#define GL_NICEST 0x1102 +#define GL_GENERATE_MIPMAP_HINT 0x8192 +#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_FIXED 0x140C +#define GL_DEPTH_COMPONENT 0x1902 +#define GL_ALPHA 0x1906 +#define GL_RGB 0x1907 +#define GL_RGBA 0x1908 +#define GL_LUMINANCE 0x1909 +#define GL_LUMINANCE_ALPHA 0x190A +#define GL_UNSIGNED_SHORT_4_4_4_4 0x8033 +#define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 +#define GL_UNSIGNED_SHORT_5_6_5 0x8363 +#define GL_FRAGMENT_SHADER 0x8B30 +#define GL_VERTEX_SHADER 0x8B31 +#define GL_MAX_VERTEX_ATTRIBS 0x8869 +#define GL_MAX_VERTEX_UNIFORM_VECTORS 0x8DFB +#define GL_MAX_VARYING_VECTORS 0x8DFC +#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 0x8B4D +#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0x8B4C +#define GL_MAX_TEXTURE_IMAGE_UNITS 0x8872 +#define GL_MAX_FRAGMENT_UNIFORM_VECTORS 0x8DFD +#define GL_SHADER_TYPE 0x8B4F +#define GL_DELETE_STATUS 0x8B80 +#define GL_LINK_STATUS 0x8B82 +#define GL_VALIDATE_STATUS 0x8B83 +#define GL_ATTACHED_SHADERS 0x8B85 +#define GL_ACTIVE_UNIFORMS 0x8B86 +#define GL_ACTIVE_UNIFORM_MAX_LENGTH 0x8B87 +#define GL_ACTIVE_ATTRIBUTES 0x8B89 +#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH 0x8B8A +#define GL_SHADING_LANGUAGE_VERSION 0x8B8C +#define GL_CURRENT_PROGRAM 0x8B8D +#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_KEEP 0x1E00 +#define GL_REPLACE 0x1E01 +#define GL_INCR 0x1E02 +#define GL_DECR 0x1E03 +#define GL_INVERT 0x150A +#define GL_INCR_WRAP 0x8507 +#define GL_DECR_WRAP 0x8508 +#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_TEXTURE 0x1702 +#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_MAX_CUBE_MAP_TEXTURE_SIZE 0x851C +#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_REPEAT 0x2901 +#define GL_CLAMP_TO_EDGE 0x812F +#define GL_MIRRORED_REPEAT 0x8370 +#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_2D 0x8B5E +#define GL_SAMPLER_CUBE 0x8B60 +#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_VERTEX_ATTRIB_ARRAY_NORMALIZED 0x886A +#define GL_VERTEX_ATTRIB_ARRAY_POINTER 0x8645 +#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING 0x889F +#define GL_IMPLEMENTATION_COLOR_READ_TYPE 0x8B9A +#define GL_IMPLEMENTATION_COLOR_READ_FORMAT 0x8B9B +#define GL_COMPILE_STATUS 0x8B81 +#define GL_INFO_LOG_LENGTH 0x8B84 +#define GL_SHADER_SOURCE_LENGTH 0x8B88 +#define GL_SHADER_COMPILER 0x8DFA +#define GL_SHADER_BINARY_FORMATS 0x8DF8 +#define GL_NUM_SHADER_BINARY_FORMATS 0x8DF9 +#define GL_LOW_FLOAT 0x8DF0 +#define GL_MEDIUM_FLOAT 0x8DF1 +#define GL_HIGH_FLOAT 0x8DF2 +#define GL_LOW_INT 0x8DF3 +#define GL_MEDIUM_INT 0x8DF4 +#define GL_HIGH_INT 0x8DF5 +#define GL_FRAMEBUFFER 0x8D40 +#define GL_RENDERBUFFER 0x8D41 +#define GL_RGBA4 0x8056 +#define GL_RGB5_A1 0x8057 +#define GL_RGB565 0x8D62 +#define GL_DEPTH_COMPONENT16 0x81A5 +#define GL_STENCIL_INDEX8 0x8D48 +#define GL_RENDERBUFFER_WIDTH 0x8D42 +#define GL_RENDERBUFFER_HEIGHT 0x8D43 +#define GL_RENDERBUFFER_INTERNAL_FORMAT 0x8D44 +#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_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_COLOR_ATTACHMENT0 0x8CE0 +#define GL_DEPTH_ATTACHMENT 0x8D00 +#define GL_STENCIL_ATTACHMENT 0x8D20 +#define GL_NONE 0 +#define GL_FRAMEBUFFER_COMPLETE 0x8CD5 +#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT 0x8CD6 +#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT 0x8CD7 +#define GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS 0x8CD9 +#define GL_FRAMEBUFFER_UNSUPPORTED 0x8CDD +#define GL_FRAMEBUFFER_BINDING 0x8CA6 +#define GL_RENDERBUFFER_BINDING 0x8CA7 +#define GL_MAX_RENDERBUFFER_SIZE 0x84E8 +#define GL_INVALID_FRAMEBUFFER_OPERATION 0x0506 +typedef void (GL_APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture); +typedef void (GL_APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer); +typedef void (GL_APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture); +typedef void (GL_APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCPROC) (GLenum sfactor, GLenum dfactor); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +typedef GLenum (GL_APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLCLEARPROC) (GLbitfield mask); +typedef void (GL_APIENTRYP PFNGLCLEARCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +typedef void (GL_APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d); +typedef void (GL_APIENTRYP PFNGLCLEARSTENCILPROC) (GLint s); +typedef void (GL_APIENTRYP PFNGLCOLORMASKPROC) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +typedef void (GL_APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef GLuint (GL_APIENTRYP PFNGLCREATEPROGRAMPROC) (void); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROC) (GLenum type); +typedef void (GL_APIENTRYP PFNGLCULLFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader); +typedef void (GL_APIENTRYP PFNGLDELETETEXTURESPROC) (GLsizei n, const GLuint *textures); +typedef void (GL_APIENTRYP PFNGLDEPTHFUNCPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLDEPTHMASKPROC) (GLboolean flag); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader); +typedef void (GL_APIENTRYP PFNGLDISABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSPROC) (GLenum mode, GLint first, GLsizei count); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices); +typedef void (GL_APIENTRYP PFNGLENABLEPROC) (GLenum cap); +typedef void (GL_APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index); +typedef void (GL_APIENTRYP PFNGLFINISHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFLUSHPROC) (void); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +typedef void (GL_APIENTRYP PFNGLFRONTFACEPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers); +typedef void (GL_APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers); +typedef void (GL_APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers); +typedef void (GL_APIENTRYP PFNGLGENTEXTURESPROC) (GLsizei n, GLuint *textures); +typedef void (GL_APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +typedef GLint (GL_APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETBOOLEANVPROC) (GLenum pname, GLboolean *data); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef GLenum (GL_APIENTRYP PFNGLGETERRORPROC) (void); +typedef void (GL_APIENTRYP PFNGLGETFLOATVPROC) (GLenum pname, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGERVPROC) (GLenum pname, GLint *data); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +typedef void (GL_APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +typedef const GLubyte *(GL_APIENTRYP PFNGLGETSTRINGPROC) (GLenum name); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params); +typedef GLint (GL_APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer); +typedef void (GL_APIENTRYP PFNGLHINTPROC) (GLenum target, GLenum mode); +typedef GLboolean (GL_APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDPROC) (GLenum cap); +typedef GLboolean (GL_APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPROC) (GLuint program); +typedef GLboolean (GL_APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer); +typedef GLboolean (GL_APIENTRYP PFNGLISSHADERPROC) (GLuint shader); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLLINEWIDTHPROC) (GLfloat width); +typedef void (GL_APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLPIXELSTOREIPROC) (GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLREADPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +typedef void (GL_APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void); +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert); +typedef void (GL_APIENTRYP PFNGLSCISSORPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +typedef void (GL_APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKPROC) (GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILOPPROC) (GLenum fail, GLenum zfail, GLenum zpass); +typedef void (GL_APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +typedef void (GL_APIENTRYP PFNGLTEXIMAGE2DPROC) (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +typedef void (GL_APIENTRYP PFNGLVIEWPORTPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +#if GL_GLES_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveTexture (GLenum texture); +GL_APICALL void GL_APIENTRY glAttachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glBindAttribLocation (GLuint program, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindBuffer (GLenum target, GLuint buffer); +GL_APICALL void GL_APIENTRY glBindFramebuffer (GLenum target, GLuint framebuffer); +GL_APICALL void GL_APIENTRY glBindRenderbuffer (GLenum target, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glBindTexture (GLenum target, GLuint texture); +GL_APICALL void GL_APIENTRY glBlendColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glBlendEquation (GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparate (GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunc (GLenum sfactor, GLenum dfactor); +GL_APICALL void GL_APIENTRY glBlendFuncSeparate (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); +GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); +GL_APICALL GLenum GL_APIENTRY glCheckFramebufferStatus (GLenum target); +GL_APICALL void GL_APIENTRY glClear (GLbitfield mask); +GL_APICALL void GL_APIENTRY glClearColor (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); +GL_APICALL void GL_APIENTRY glClearDepthf (GLfloat d); +GL_APICALL void GL_APIENTRY glClearStencil (GLint s); +GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); +GL_APICALL void GL_APIENTRY glCompileShader (GLuint shader); +GL_APICALL void GL_APIENTRY glCompressedTexImage2D (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCopyTexImage2D (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border); +GL_APICALL void GL_APIENTRY glCopyTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL GLuint GL_APIENTRY glCreateProgram (void); +GL_APICALL GLuint GL_APIENTRY glCreateShader (GLenum type); +GL_APICALL void GL_APIENTRY glCullFace (GLenum mode); +GL_APICALL void GL_APIENTRY glDeleteBuffers (GLsizei n, const GLuint *buffers); +GL_APICALL void GL_APIENTRY glDeleteFramebuffers (GLsizei n, const GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glDeleteProgram (GLuint program); +GL_APICALL void GL_APIENTRY glDeleteRenderbuffers (GLsizei n, const GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glDeleteShader (GLuint shader); +GL_APICALL void GL_APIENTRY glDeleteTextures (GLsizei n, const GLuint *textures); +GL_APICALL void GL_APIENTRY glDepthFunc (GLenum func); +GL_APICALL void GL_APIENTRY glDepthMask (GLboolean flag); +GL_APICALL void GL_APIENTRY glDepthRangef (GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glDetachShader (GLuint program, GLuint shader); +GL_APICALL void GL_APIENTRY glDisable (GLenum cap); +GL_APICALL void GL_APIENTRY glDisableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glDrawArrays (GLenum mode, GLint first, GLsizei count); +GL_APICALL void GL_APIENTRY glDrawElements (GLenum mode, GLsizei count, GLenum type, const void *indices); +GL_APICALL void GL_APIENTRY glEnable (GLenum cap); +GL_APICALL void GL_APIENTRY glEnableVertexAttribArray (GLuint index); +GL_APICALL void GL_APIENTRY glFinish (void); +GL_APICALL void GL_APIENTRY glFlush (void); +GL_APICALL void GL_APIENTRY glFramebufferRenderbuffer (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); +GL_APICALL void GL_APIENTRY glFramebufferTexture2D (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); +GL_APICALL void GL_APIENTRY glFrontFace (GLenum mode); +GL_APICALL void GL_APIENTRY glGenBuffers (GLsizei n, GLuint *buffers); +GL_APICALL void GL_APIENTRY glGenerateMipmap (GLenum target); +GL_APICALL void GL_APIENTRY glGenFramebuffers (GLsizei n, GLuint *framebuffers); +GL_APICALL void GL_APIENTRY glGenRenderbuffers (GLsizei n, GLuint *renderbuffers); +GL_APICALL void GL_APIENTRY glGenTextures (GLsizei n, GLuint *textures); +GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); +GL_APICALL void GL_APIENTRY glGetAttachedShaders (GLuint program, GLsizei maxCount, GLsizei *count, GLuint *shaders); +GL_APICALL GLint GL_APIENTRY glGetAttribLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetBooleanv (GLenum pname, GLboolean *data); +GL_APICALL void GL_APIENTRY glGetBufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL GLenum GL_APIENTRY glGetError (void); +GL_APICALL void GL_APIENTRY glGetFloatv (GLenum pname, GLfloat *data); +GL_APICALL void GL_APIENTRY glGetFramebufferAttachmentParameteriv (GLenum target, GLenum attachment, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetIntegerv (GLenum pname, GLint *data); +GL_APICALL void GL_APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetProgramInfoLog (GLuint program, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetRenderbufferParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderiv (GLuint shader, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetShaderInfoLog (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); +GL_APICALL void GL_APIENTRY glGetShaderSource (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +GL_APICALL const GLubyte *GL_APIENTRY glGetString (GLenum name); +GL_APICALL void GL_APIENTRY glGetTexParameterfv (GLenum target, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetTexParameteriv (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetUniformfv (GLuint program, GLint location, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetUniformiv (GLuint program, GLint location, GLint *params); +GL_APICALL GLint GL_APIENTRY glGetUniformLocation (GLuint program, const GLchar *name); +GL_APICALL void GL_APIENTRY glGetVertexAttribfv (GLuint index, GLenum pname, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribiv (GLuint index, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetVertexAttribPointerv (GLuint index, GLenum pname, void **pointer); +GL_APICALL void GL_APIENTRY glHint (GLenum target, GLenum mode); +GL_APICALL GLboolean GL_APIENTRY glIsBuffer (GLuint buffer); +GL_APICALL GLboolean GL_APIENTRY glIsEnabled (GLenum cap); +GL_APICALL GLboolean GL_APIENTRY glIsFramebuffer (GLuint framebuffer); +GL_APICALL GLboolean GL_APIENTRY glIsProgram (GLuint program); +GL_APICALL GLboolean GL_APIENTRY glIsRenderbuffer (GLuint renderbuffer); +GL_APICALL GLboolean GL_APIENTRY glIsShader (GLuint shader); +GL_APICALL GLboolean GL_APIENTRY glIsTexture (GLuint texture); +GL_APICALL void GL_APIENTRY glLineWidth (GLfloat width); +GL_APICALL void GL_APIENTRY glLinkProgram (GLuint program); +GL_APICALL void GL_APIENTRY glPixelStorei (GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glPolygonOffset (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glReadPixels (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void *pixels); +GL_APICALL void GL_APIENTRY glReleaseShaderCompiler (void); +GL_APICALL void GL_APIENTRY glRenderbufferStorage (GLenum target, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glSampleCoverage (GLfloat value, GLboolean invert); +GL_APICALL void GL_APIENTRY glScissor (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glShaderBinary (GLsizei count, const GLuint *shaders, GLenum binaryFormat, const void *binary, GLsizei length); +GL_APICALL void GL_APIENTRY glShaderSource (GLuint shader, GLsizei count, const GLchar *const*string, const GLint *length); +GL_APICALL void GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMask (GLuint mask); +GL_APICALL void GL_APIENTRY glStencilMaskSeparate (GLenum face, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilOp (GLenum fail, GLenum zfail, GLenum zpass); +GL_APICALL void GL_APIENTRY glStencilOpSeparate (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass); +GL_APICALL void GL_APIENTRY glTexImage2D (GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexParameterf (GLenum target, GLenum pname, GLfloat param); +GL_APICALL void GL_APIENTRY glTexParameterfv (GLenum target, GLenum pname, const GLfloat *params); +GL_APICALL void GL_APIENTRY glTexParameteri (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glTexParameteriv (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glUniform1f (GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glUniform1fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform1i (GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glUniform1iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform2f (GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glUniform2fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform2i (GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glUniform2iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform3f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glUniform3fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform3i (GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glUniform3iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniform4f (GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glUniform4fv (GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniform4i (GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glUniform4iv (GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4fv (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgram (GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgram (GLuint program); +GL_APICALL void GL_APIENTRY glVertexAttrib1f (GLuint index, GLfloat x); +GL_APICALL void GL_APIENTRY glVertexAttrib1fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib2f (GLuint index, GLfloat x, GLfloat y); +GL_APICALL void GL_APIENTRY glVertexAttrib2fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib3f (GLuint index, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glVertexAttrib3fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttrib4f (GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +GL_APICALL void GL_APIENTRY glVertexAttrib4fv (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); +GL_APICALL void GL_APIENTRY glViewport (GLint x, GLint y, GLsizei width, GLsizei height); +#endif +#endif /* GL_ES_VERSION_2_0 */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/SDL2-2.26.3/include/SDL_opengles2_gl2ext.h b/SDL2-2.26.3/include/SDL_opengles2_gl2ext.h new file mode 100644 index 0000000..9448ce0 --- /dev/null +++ b/SDL2-2.26.3/include/SDL_opengles2_gl2ext.h @@ -0,0 +1,4033 @@ +#ifndef __gles2_gl2ext_h_ +#define __gles2_gl2ext_h_ 1 + +#ifdef __cplusplus +extern "C" { +#endif + +/* +** Copyright 2013-2020 The Khronos Group Inc. +** SPDX-License-Identifier: MIT +** +** This header is generated from the Khronos OpenGL / OpenGL ES XML +** API Registry. The current version of the Registry, generator scripts +** used to make the header, and the header can be found at +** https://github.com/KhronosGroup/OpenGL-Registry +*/ + +#ifndef GL_APIENTRYP +#define GL_APIENTRYP GL_APIENTRY* +#endif + +/* Generated on date 20220530 */ + +/* Generated C header for: + * API: gles2 + * Profile: common + * Versions considered: 2\.[0-9] + * Versions emitted: _nomatch_^ + * Default extensions included: gles2 + * Additional extensions included: _nomatch_^ + * Extensions removed: _nomatch_^ + */ + +#ifndef GL_KHR_blend_equation_advanced +#define GL_KHR_blend_equation_advanced 1 +#define GL_MULTIPLY_KHR 0x9294 +#define GL_SCREEN_KHR 0x9295 +#define GL_OVERLAY_KHR 0x9296 +#define GL_DARKEN_KHR 0x9297 +#define GL_LIGHTEN_KHR 0x9298 +#define GL_COLORDODGE_KHR 0x9299 +#define GL_COLORBURN_KHR 0x929A +#define GL_HARDLIGHT_KHR 0x929B +#define GL_SOFTLIGHT_KHR 0x929C +#define GL_DIFFERENCE_KHR 0x929E +#define GL_EXCLUSION_KHR 0x92A0 +#define GL_HSL_HUE_KHR 0x92AD +#define GL_HSL_SATURATION_KHR 0x92AE +#define GL_HSL_COLOR_KHR 0x92AF +#define GL_HSL_LUMINOSITY_KHR 0x92B0 +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERKHRPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendBarrierKHR (void); +#endif +#endif /* GL_KHR_blend_equation_advanced */ + +#ifndef GL_KHR_blend_equation_advanced_coherent +#define GL_KHR_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_KHR 0x9285 +#endif /* GL_KHR_blend_equation_advanced_coherent */ + +#ifndef GL_KHR_context_flush_control +#define GL_KHR_context_flush_control 1 +#define GL_CONTEXT_RELEASE_BEHAVIOR_KHR 0x82FB +#define GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_KHR 0x82FC +#endif /* GL_KHR_context_flush_control */ + +#ifndef GL_KHR_debug +#define GL_KHR_debug 1 +typedef void (GL_APIENTRY *GLDEBUGPROCKHR)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar *message,const void *userParam); +#define GL_SAMPLER 0x82E6 +#define GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR 0x8242 +#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR 0x8243 +#define GL_DEBUG_CALLBACK_FUNCTION_KHR 0x8244 +#define GL_DEBUG_CALLBACK_USER_PARAM_KHR 0x8245 +#define GL_DEBUG_SOURCE_API_KHR 0x8246 +#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR 0x8247 +#define GL_DEBUG_SOURCE_SHADER_COMPILER_KHR 0x8248 +#define GL_DEBUG_SOURCE_THIRD_PARTY_KHR 0x8249 +#define GL_DEBUG_SOURCE_APPLICATION_KHR 0x824A +#define GL_DEBUG_SOURCE_OTHER_KHR 0x824B +#define GL_DEBUG_TYPE_ERROR_KHR 0x824C +#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR 0x824D +#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR 0x824E +#define GL_DEBUG_TYPE_PORTABILITY_KHR 0x824F +#define GL_DEBUG_TYPE_PERFORMANCE_KHR 0x8250 +#define GL_DEBUG_TYPE_OTHER_KHR 0x8251 +#define GL_DEBUG_TYPE_MARKER_KHR 0x8268 +#define GL_DEBUG_TYPE_PUSH_GROUP_KHR 0x8269 +#define GL_DEBUG_TYPE_POP_GROUP_KHR 0x826A +#define GL_DEBUG_SEVERITY_NOTIFICATION_KHR 0x826B +#define GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR 0x826C +#define GL_DEBUG_GROUP_STACK_DEPTH_KHR 0x826D +#define GL_BUFFER_KHR 0x82E0 +#define GL_SHADER_KHR 0x82E1 +#define GL_PROGRAM_KHR 0x82E2 +#define GL_VERTEX_ARRAY_KHR 0x8074 +#define GL_QUERY_KHR 0x82E3 +#define GL_PROGRAM_PIPELINE_KHR 0x82E4 +#define GL_SAMPLER_KHR 0x82E6 +#define GL_MAX_LABEL_LENGTH_KHR 0x82E8 +#define GL_MAX_DEBUG_MESSAGE_LENGTH_KHR 0x9143 +#define GL_MAX_DEBUG_LOGGED_MESSAGES_KHR 0x9144 +#define GL_DEBUG_LOGGED_MESSAGES_KHR 0x9145 +#define GL_DEBUG_SEVERITY_HIGH_KHR 0x9146 +#define GL_DEBUG_SEVERITY_MEDIUM_KHR 0x9147 +#define GL_DEBUG_SEVERITY_LOW_KHR 0x9148 +#define GL_DEBUG_OUTPUT_KHR 0x92E0 +#define GL_CONTEXT_FLAG_DEBUG_BIT_KHR 0x00000002 +#define GL_STACK_OVERFLOW_KHR 0x0503 +#define GL_STACK_UNDERFLOW_KHR 0x0504 +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECONTROLKHRPROC) (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGEINSERTKHRPROC) (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +typedef void (GL_APIENTRYP PFNGLDEBUGMESSAGECALLBACKKHRPROC) (GLDEBUGPROCKHR callback, const void *userParam); +typedef GLuint (GL_APIENTRYP PFNGLGETDEBUGMESSAGELOGKHRPROC) (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +typedef void (GL_APIENTRYP PFNGLPUSHDEBUGGROUPKHRPROC) (GLenum source, GLuint id, GLsizei length, const GLchar *message); +typedef void (GL_APIENTRYP PFNGLPOPDEBUGGROUPKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELKHRPROC) (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTPTRLABELKHRPROC) (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETPOINTERVKHRPROC) (GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDebugMessageControlKHR (GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); +GL_APICALL void GL_APIENTRY glDebugMessageInsertKHR (GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf); +GL_APICALL void GL_APIENTRY glDebugMessageCallbackKHR (GLDEBUGPROCKHR callback, const void *userParam); +GL_APICALL GLuint GL_APIENTRY glGetDebugMessageLogKHR (GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog); +GL_APICALL void GL_APIENTRY glPushDebugGroupKHR (GLenum source, GLuint id, GLsizei length, const GLchar *message); +GL_APICALL void GL_APIENTRY glPopDebugGroupKHR (void); +GL_APICALL void GL_APIENTRY glObjectLabelKHR (GLenum identifier, GLuint name, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelKHR (GLenum identifier, GLuint name, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glObjectPtrLabelKHR (const void *ptr, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectPtrLabelKHR (const void *ptr, GLsizei bufSize, GLsizei *length, GLchar *label); +GL_APICALL void GL_APIENTRY glGetPointervKHR (GLenum pname, void **params); +#endif +#endif /* GL_KHR_debug */ + +#ifndef GL_KHR_no_error +#define GL_KHR_no_error 1 +#define GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 +#endif /* GL_KHR_no_error */ + +#ifndef GL_KHR_parallel_shader_compile +#define GL_KHR_parallel_shader_compile 1 +#define GL_MAX_SHADER_COMPILER_THREADS_KHR 0x91B0 +#define GL_COMPLETION_STATUS_KHR 0x91B1 +typedef void (GL_APIENTRYP PFNGLMAXSHADERCOMPILERTHREADSKHRPROC) (GLuint count); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMaxShaderCompilerThreadsKHR (GLuint count); +#endif +#endif /* GL_KHR_parallel_shader_compile */ + +#ifndef GL_KHR_robust_buffer_access_behavior +#define GL_KHR_robust_buffer_access_behavior 1 +#endif /* GL_KHR_robust_buffer_access_behavior */ + +#ifndef GL_KHR_robustness +#define GL_KHR_robustness 1 +#define GL_CONTEXT_ROBUST_ACCESS_KHR 0x90F3 +#define GL_LOSE_CONTEXT_ON_RESET_KHR 0x8252 +#define GL_GUILTY_CONTEXT_RESET_KHR 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_KHR 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_KHR 0x8255 +#define GL_RESET_NOTIFICATION_STRATEGY_KHR 0x8256 +#define GL_NO_RESET_NOTIFICATION_KHR 0x8261 +#define GL_CONTEXT_LOST_KHR 0x0507 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSKHRPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSKHRPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMUIVKHRPROC) (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusKHR (void); +GL_APICALL void GL_APIENTRY glReadnPixelsKHR (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvKHR (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivKHR (GLuint program, GLint location, GLsizei bufSize, GLint *params); +GL_APICALL void GL_APIENTRY glGetnUniformuivKHR (GLuint program, GLint location, GLsizei bufSize, GLuint *params); +#endif +#endif /* GL_KHR_robustness */ + +#ifndef GL_KHR_shader_subgroup +#define GL_KHR_shader_subgroup 1 +#define GL_SUBGROUP_SIZE_KHR 0x9532 +#define GL_SUBGROUP_SUPPORTED_STAGES_KHR 0x9533 +#define GL_SUBGROUP_SUPPORTED_FEATURES_KHR 0x9534 +#define GL_SUBGROUP_QUAD_ALL_STAGES_KHR 0x9535 +#define GL_SUBGROUP_FEATURE_BASIC_BIT_KHR 0x00000001 +#define GL_SUBGROUP_FEATURE_VOTE_BIT_KHR 0x00000002 +#define GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR 0x00000004 +#define GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR 0x00000008 +#define GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR 0x00000010 +#define GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR 0x00000020 +#define GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR 0x00000040 +#define GL_SUBGROUP_FEATURE_QUAD_BIT_KHR 0x00000080 +#endif /* GL_KHR_shader_subgroup */ + +#ifndef GL_KHR_texture_compression_astc_hdr +#define GL_KHR_texture_compression_astc_hdr 1 +#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR 0x93B0 +#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR 0x93B1 +#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR 0x93B2 +#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR 0x93B3 +#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR 0x93B4 +#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR 0x93B5 +#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR 0x93B6 +#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR 0x93B7 +#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR 0x93B8 +#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR 0x93B9 +#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR 0x93BA +#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR 0x93BB +#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR 0x93BC +#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR 0x93BD +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR 0x93D0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR 0x93D1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR 0x93D2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR 0x93D3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR 0x93D4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR 0x93D5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR 0x93D6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR 0x93D7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR 0x93D8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR 0x93D9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR 0x93DA +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR 0x93DB +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR 0x93DC +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR 0x93DD +#endif /* GL_KHR_texture_compression_astc_hdr */ + +#ifndef GL_KHR_texture_compression_astc_ldr +#define GL_KHR_texture_compression_astc_ldr 1 +#endif /* GL_KHR_texture_compression_astc_ldr */ + +#ifndef GL_KHR_texture_compression_astc_sliced_3d +#define GL_KHR_texture_compression_astc_sliced_3d 1 +#endif /* GL_KHR_texture_compression_astc_sliced_3d */ + +#ifndef GL_OES_EGL_image +#define GL_OES_EGL_image 1 +typedef void *GLeglImageOES; +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); +GL_APICALL void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); +#endif +#endif /* GL_OES_EGL_image */ + +#ifndef GL_OES_EGL_image_external +#define GL_OES_EGL_image_external 1 +#define GL_TEXTURE_EXTERNAL_OES 0x8D65 +#define GL_TEXTURE_BINDING_EXTERNAL_OES 0x8D67 +#define GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES 0x8D68 +#define GL_SAMPLER_EXTERNAL_OES 0x8D66 +#endif /* GL_OES_EGL_image_external */ + +#ifndef GL_OES_EGL_image_external_essl3 +#define GL_OES_EGL_image_external_essl3 1 +#endif /* GL_OES_EGL_image_external_essl3 */ + +#ifndef GL_OES_compressed_ETC1_RGB8_sub_texture +#define GL_OES_compressed_ETC1_RGB8_sub_texture 1 +#endif /* GL_OES_compressed_ETC1_RGB8_sub_texture */ + +#ifndef GL_OES_compressed_ETC1_RGB8_texture +#define GL_OES_compressed_ETC1_RGB8_texture 1 +#define GL_ETC1_RGB8_OES 0x8D64 +#endif /* GL_OES_compressed_ETC1_RGB8_texture */ + +#ifndef GL_OES_compressed_paletted_texture +#define GL_OES_compressed_paletted_texture 1 +#define GL_PALETTE4_RGB8_OES 0x8B90 +#define GL_PALETTE4_RGBA8_OES 0x8B91 +#define GL_PALETTE4_R5_G6_B5_OES 0x8B92 +#define GL_PALETTE4_RGBA4_OES 0x8B93 +#define GL_PALETTE4_RGB5_A1_OES 0x8B94 +#define GL_PALETTE8_RGB8_OES 0x8B95 +#define GL_PALETTE8_RGBA8_OES 0x8B96 +#define GL_PALETTE8_R5_G6_B5_OES 0x8B97 +#define GL_PALETTE8_RGBA4_OES 0x8B98 +#define GL_PALETTE8_RGB5_A1_OES 0x8B99 +#endif /* GL_OES_compressed_paletted_texture */ + +#ifndef GL_OES_copy_image +#define GL_OES_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAOESPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataOES (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_OES_copy_image */ + +#ifndef GL_OES_depth24 +#define GL_OES_depth24 1 +#define GL_DEPTH_COMPONENT24_OES 0x81A6 +#endif /* GL_OES_depth24 */ + +#ifndef GL_OES_depth32 +#define GL_OES_depth32 1 +#define GL_DEPTH_COMPONENT32_OES 0x81A7 +#endif /* GL_OES_depth32 */ + +#ifndef GL_OES_depth_texture +#define GL_OES_depth_texture 1 +#endif /* GL_OES_depth_texture */ + +#ifndef GL_OES_draw_buffers_indexed +#define GL_OES_draw_buffers_indexed 1 +#define GL_MIN 0x8007 +#define GL_MAX 0x8008 +typedef void (GL_APIENTRYP PFNGLENABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIOESPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIOESPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIOESPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIOESPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIOESPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIOESPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIOESPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiOES (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiOES (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiOES (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciOES (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiOES (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiOES (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediOES (GLenum target, GLuint index); +#endif +#endif /* GL_OES_draw_buffers_indexed */ + +#ifndef GL_OES_draw_elements_base_vertex +#define GL_OES_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXOESPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXOESPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexOES (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexOES (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +GL_APICALL void GL_APIENTRY glMultiDrawElementsBaseVertexEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei drawcount, const GLint *basevertex); +#endif +#endif /* GL_OES_draw_elements_base_vertex */ + +#ifndef GL_OES_element_index_uint +#define GL_OES_element_index_uint 1 +#endif /* GL_OES_element_index_uint */ + +#ifndef GL_OES_fbo_render_mipmap +#define GL_OES_fbo_render_mipmap 1 +#endif /* GL_OES_fbo_render_mipmap */ + +#ifndef GL_OES_fragment_precision_high +#define GL_OES_fragment_precision_high 1 +#endif /* GL_OES_fragment_precision_high */ + +#ifndef GL_OES_geometry_point_size +#define GL_OES_geometry_point_size 1 +#endif /* GL_OES_geometry_point_size */ + +#ifndef GL_OES_geometry_shader +#define GL_OES_geometry_shader 1 +#define GL_GEOMETRY_SHADER_OES 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_OES 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_OES 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_OES 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_OES 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_OES 0x887F +#define GL_LAYER_PROVOKING_VERTEX_OES 0x825E +#define GL_LINES_ADJACENCY_OES 0x000A +#define GL_LINE_STRIP_ADJACENCY_OES 0x000B +#define GL_TRIANGLES_ADJACENCY_OES 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_OES 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_OES 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_OES 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_OES 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_OES 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_OES 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_OES 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_OES 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_OES 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_OES 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_OES 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_OES 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_OES 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_OES 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_OES 0x8E4E +#define GL_UNDEFINED_VERTEX_OES 0x8260 +#define GL_PRIMITIVES_GENERATED_OES 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_OES 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_OES 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_OES 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_OES 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_OES 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREOESPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureOES (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_OES_geometry_shader */ + +#ifndef GL_OES_get_program_binary +#define GL_OES_get_program_binary 1 +#define GL_PROGRAM_BINARY_LENGTH_OES 0x8741 +#define GL_NUM_PROGRAM_BINARY_FORMATS_OES 0x87FE +#define GL_PROGRAM_BINARY_FORMATS_OES 0x87FF +typedef void (GL_APIENTRYP PFNGLGETPROGRAMBINARYOESPROC) (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +typedef void (GL_APIENTRYP PFNGLPROGRAMBINARYOESPROC) (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetProgramBinaryOES (GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, void *binary); +GL_APICALL void GL_APIENTRY glProgramBinaryOES (GLuint program, GLenum binaryFormat, const void *binary, GLint length); +#endif +#endif /* GL_OES_get_program_binary */ + +#ifndef GL_OES_gpu_shader5 +#define GL_OES_gpu_shader5 1 +#endif /* GL_OES_gpu_shader5 */ + +#ifndef GL_OES_mapbuffer +#define GL_OES_mapbuffer 1 +#define GL_WRITE_ONLY_OES 0x88B9 +#define GL_BUFFER_ACCESS_OES 0x88BB +#define GL_BUFFER_MAPPED_OES 0x88BC +#define GL_BUFFER_MAP_POINTER_OES 0x88BD +typedef void *(GL_APIENTRYP PFNGLMAPBUFFEROESPROC) (GLenum target, GLenum access); +typedef GLboolean (GL_APIENTRYP PFNGLUNMAPBUFFEROESPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLGETBUFFERPOINTERVOESPROC) (GLenum target, GLenum pname, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferOES (GLenum target, GLenum access); +GL_APICALL GLboolean GL_APIENTRY glUnmapBufferOES (GLenum target); +GL_APICALL void GL_APIENTRY glGetBufferPointervOES (GLenum target, GLenum pname, void **params); +#endif +#endif /* GL_OES_mapbuffer */ + +#ifndef GL_OES_packed_depth_stencil +#define GL_OES_packed_depth_stencil 1 +#define GL_DEPTH_STENCIL_OES 0x84F9 +#define GL_UNSIGNED_INT_24_8_OES 0x84FA +#define GL_DEPTH24_STENCIL8_OES 0x88F0 +#endif /* GL_OES_packed_depth_stencil */ + +#ifndef GL_OES_primitive_bounding_box +#define GL_OES_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_OES 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXOESPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxOES (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_OES_primitive_bounding_box */ + +#ifndef GL_OES_required_internalformat +#define GL_OES_required_internalformat 1 +#define GL_ALPHA8_OES 0x803C +#define GL_DEPTH_COMPONENT16_OES 0x81A5 +#define GL_LUMINANCE4_ALPHA4_OES 0x8043 +#define GL_LUMINANCE8_ALPHA8_OES 0x8045 +#define GL_LUMINANCE8_OES 0x8040 +#define GL_RGBA4_OES 0x8056 +#define GL_RGB5_A1_OES 0x8057 +#define GL_RGB565_OES 0x8D62 +#define GL_RGB8_OES 0x8051 +#define GL_RGBA8_OES 0x8058 +#define GL_RGB10_EXT 0x8052 +#define GL_RGB10_A2_EXT 0x8059 +#endif /* GL_OES_required_internalformat */ + +#ifndef GL_OES_rgb8_rgba8 +#define GL_OES_rgb8_rgba8 1 +#endif /* GL_OES_rgb8_rgba8 */ + +#ifndef GL_OES_sample_shading +#define GL_OES_sample_shading 1 +#define GL_SAMPLE_SHADING_OES 0x8C36 +#define GL_MIN_SAMPLE_SHADING_VALUE_OES 0x8C37 +typedef void (GL_APIENTRYP PFNGLMINSAMPLESHADINGOESPROC) (GLfloat value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMinSampleShadingOES (GLfloat value); +#endif +#endif /* GL_OES_sample_shading */ + +#ifndef GL_OES_sample_variables +#define GL_OES_sample_variables 1 +#endif /* GL_OES_sample_variables */ + +#ifndef GL_OES_shader_image_atomic +#define GL_OES_shader_image_atomic 1 +#endif /* GL_OES_shader_image_atomic */ + +#ifndef GL_OES_shader_io_blocks +#define GL_OES_shader_io_blocks 1 +#endif /* GL_OES_shader_io_blocks */ + +#ifndef GL_OES_shader_multisample_interpolation +#define GL_OES_shader_multisample_interpolation 1 +#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5B +#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_OES 0x8E5C +#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS_OES 0x8E5D +#endif /* GL_OES_shader_multisample_interpolation */ + +#ifndef GL_OES_standard_derivatives +#define GL_OES_standard_derivatives 1 +#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES 0x8B8B +#endif /* GL_OES_standard_derivatives */ + +#ifndef GL_OES_stencil1 +#define GL_OES_stencil1 1 +#define GL_STENCIL_INDEX1_OES 0x8D46 +#endif /* GL_OES_stencil1 */ + +#ifndef GL_OES_stencil4 +#define GL_OES_stencil4 1 +#define GL_STENCIL_INDEX4_OES 0x8D47 +#endif /* GL_OES_stencil4 */ + +#ifndef GL_OES_surfaceless_context +#define GL_OES_surfaceless_context 1 +#define GL_FRAMEBUFFER_UNDEFINED_OES 0x8219 +#endif /* GL_OES_surfaceless_context */ + +#ifndef GL_OES_tessellation_point_size +#define GL_OES_tessellation_point_size 1 +#endif /* GL_OES_tessellation_point_size */ + +#ifndef GL_OES_tessellation_shader +#define GL_OES_tessellation_shader 1 +#define GL_PATCHES_OES 0x000E +#define GL_PATCH_VERTICES_OES 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_OES 0x8E75 +#define GL_TESS_GEN_MODE_OES 0x8E76 +#define GL_TESS_GEN_SPACING_OES 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_OES 0x8E78 +#define GL_TESS_GEN_POINT_MODE_OES 0x8E79 +#define GL_ISOLINES_OES 0x8E7A +#define GL_QUADS_OES 0x0007 +#define GL_FRACTIONAL_ODD_OES 0x8E7B +#define GL_FRACTIONAL_EVEN_OES 0x8E7C +#define GL_MAX_PATCH_VERTICES_OES 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_OES 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_OES 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_OES 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_OES 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_OES 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_OES 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_OES 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_OES 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_OES 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_OES 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_OES 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_OES 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_OES 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_OES 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_OES 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_OES 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_OES 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_OES 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_OES 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_OES 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_OES 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED_OES 0x8221 +#define GL_IS_PER_PATCH_OES 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_OES 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_OES 0x9308 +#define GL_TESS_CONTROL_SHADER_OES 0x8E88 +#define GL_TESS_EVALUATION_SHADER_OES 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_OES 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_OES 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIOESPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriOES (GLenum pname, GLint value); +#endif +#endif /* GL_OES_tessellation_shader */ + +#ifndef GL_OES_texture_3D +#define GL_OES_texture_3D 1 +#define GL_TEXTURE_WRAP_R_OES 0x8072 +#define GL_TEXTURE_3D_OES 0x806F +#define GL_TEXTURE_BINDING_3D_OES 0x806A +#define GL_MAX_3D_TEXTURE_SIZE_OES 0x8073 +#define GL_SAMPLER_3D_OES 0x8B5F +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES 0x8CD4 +typedef void (GL_APIENTRYP PFNGLTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +typedef void (GL_APIENTRYP PFNGLCOPYTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DOESPROC) (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DOESPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DOESPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels); +GL_APICALL void GL_APIENTRY glCopyTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glCompressedTexImage3DOES (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glCompressedTexSubImage3DOES (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data); +GL_APICALL void GL_APIENTRY glFramebufferTexture3DOES (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); +#endif +#endif /* GL_OES_texture_3D */ + +#ifndef GL_OES_texture_border_clamp +#define GL_OES_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_OES 0x1004 +#define GL_CLAMP_TO_BORDER_OES 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVOESPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVOESPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVOESPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVOESPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivOES (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivOES (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivOES (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivOES (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivOES (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivOES (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivOES (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivOES (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_OES_texture_border_clamp */ + +#ifndef GL_OES_texture_buffer +#define GL_OES_texture_buffer 1 +#define GL_TEXTURE_BUFFER_OES 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_OES 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_OES 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_OES 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_OES 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_OES 0x919F +#define GL_SAMPLER_BUFFER_OES 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_OES 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_OES 0x8DD8 +#define GL_IMAGE_BUFFER_OES 0x9051 +#define GL_INT_IMAGE_BUFFER_OES 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_OES 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_OES 0x919D +#define GL_TEXTURE_BUFFER_SIZE_OES 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEROESPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEOESPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferOES (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeOES (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_OES_texture_buffer */ + +#ifndef GL_OES_texture_compression_astc +#define GL_OES_texture_compression_astc 1 +#define GL_COMPRESSED_RGBA_ASTC_3x3x3_OES 0x93C0 +#define GL_COMPRESSED_RGBA_ASTC_4x3x3_OES 0x93C1 +#define GL_COMPRESSED_RGBA_ASTC_4x4x3_OES 0x93C2 +#define GL_COMPRESSED_RGBA_ASTC_4x4x4_OES 0x93C3 +#define GL_COMPRESSED_RGBA_ASTC_5x4x4_OES 0x93C4 +#define GL_COMPRESSED_RGBA_ASTC_5x5x4_OES 0x93C5 +#define GL_COMPRESSED_RGBA_ASTC_5x5x5_OES 0x93C6 +#define GL_COMPRESSED_RGBA_ASTC_6x5x5_OES 0x93C7 +#define GL_COMPRESSED_RGBA_ASTC_6x6x5_OES 0x93C8 +#define GL_COMPRESSED_RGBA_ASTC_6x6x6_OES 0x93C9 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES 0x93E0 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES 0x93E1 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES 0x93E2 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES 0x93E3 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES 0x93E4 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES 0x93E5 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES 0x93E6 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES 0x93E7 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES 0x93E8 +#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES 0x93E9 +#endif /* GL_OES_texture_compression_astc */ + +#ifndef GL_OES_texture_cube_map_array +#define GL_OES_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_OES 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_OES 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_OES 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_OES 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_OES 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_OES 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_OES 0x906A +#endif /* GL_OES_texture_cube_map_array */ + +#ifndef GL_OES_texture_float +#define GL_OES_texture_float 1 +#endif /* GL_OES_texture_float */ + +#ifndef GL_OES_texture_float_linear +#define GL_OES_texture_float_linear 1 +#endif /* GL_OES_texture_float_linear */ + +#ifndef GL_OES_texture_half_float +#define GL_OES_texture_half_float 1 +#define GL_HALF_FLOAT_OES 0x8D61 +#endif /* GL_OES_texture_half_float */ + +#ifndef GL_OES_texture_half_float_linear +#define GL_OES_texture_half_float_linear 1 +#endif /* GL_OES_texture_half_float_linear */ + +#ifndef GL_OES_texture_npot +#define GL_OES_texture_npot 1 +#endif /* GL_OES_texture_npot */ + +#ifndef GL_OES_texture_stencil8 +#define GL_OES_texture_stencil8 1 +#define GL_STENCIL_INDEX_OES 0x1901 +#define GL_STENCIL_INDEX8_OES 0x8D48 +#endif /* GL_OES_texture_stencil8 */ + +#ifndef GL_OES_texture_storage_multisample_2d_array +#define GL_OES_texture_storage_multisample_2d_array 1 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY_OES 0x9102 +#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY_OES 0x9105 +#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910B +#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910C +#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY_OES 0x910D +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEOESPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage3DMultisampleOES (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations); +#endif +#endif /* GL_OES_texture_storage_multisample_2d_array */ + +#ifndef GL_OES_texture_view +#define GL_OES_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_OES 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_OES 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_OES 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_OES 0x82DE +#define GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWOESPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewOES (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_OES_texture_view */ + +#ifndef GL_OES_vertex_array_object +#define GL_OES_vertex_array_object 1 +#define GL_VERTEX_ARRAY_BINDING_OES 0x85B5 +typedef void (GL_APIENTRYP PFNGLBINDVERTEXARRAYOESPROC) (GLuint array); +typedef void (GL_APIENTRYP PFNGLDELETEVERTEXARRAYSOESPROC) (GLsizei n, const GLuint *arrays); +typedef void (GL_APIENTRYP PFNGLGENVERTEXARRAYSOESPROC) (GLsizei n, GLuint *arrays); +typedef GLboolean (GL_APIENTRYP PFNGLISVERTEXARRAYOESPROC) (GLuint array); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindVertexArrayOES (GLuint array); +GL_APICALL void GL_APIENTRY glDeleteVertexArraysOES (GLsizei n, const GLuint *arrays); +GL_APICALL void GL_APIENTRY glGenVertexArraysOES (GLsizei n, GLuint *arrays); +GL_APICALL GLboolean GL_APIENTRY glIsVertexArrayOES (GLuint array); +#endif +#endif /* GL_OES_vertex_array_object */ + +#ifndef GL_OES_vertex_half_float +#define GL_OES_vertex_half_float 1 +#endif /* GL_OES_vertex_half_float */ + +#ifndef GL_OES_vertex_type_10_10_10_2 +#define GL_OES_vertex_type_10_10_10_2 1 +#define GL_UNSIGNED_INT_10_10_10_2_OES 0x8DF6 +#define GL_INT_10_10_10_2_OES 0x8DF7 +#endif /* GL_OES_vertex_type_10_10_10_2 */ + +#ifndef GL_OES_viewport_array +#define GL_OES_viewport_array 1 +#define GL_MAX_VIEWPORTS_OES 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_OES 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_OES 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_OES 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFOESPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVOESPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVOESPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDOESPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVOESPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVOESPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFOESPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VOESPROC) (GLenum target, GLuint index, GLfloat *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfOES (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvOES (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvOES (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedOES (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvOES (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvOES (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfOES (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vOES (GLenum target, GLuint index, GLfloat *data); +#endif +#endif /* GL_OES_viewport_array */ + +#ifndef GL_AMD_compressed_3DC_texture +#define GL_AMD_compressed_3DC_texture 1 +#define GL_3DC_X_AMD 0x87F9 +#define GL_3DC_XY_AMD 0x87FA +#endif /* GL_AMD_compressed_3DC_texture */ + +#ifndef GL_AMD_compressed_ATC_texture +#define GL_AMD_compressed_ATC_texture 1 +#define GL_ATC_RGB_AMD 0x8C92 +#define GL_ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93 +#define GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE +#endif /* GL_AMD_compressed_ATC_texture */ + +#ifndef GL_AMD_framebuffer_multisample_advanced +#define GL_AMD_framebuffer_multisample_advanced 1 +#define GL_RENDERBUFFER_STORAGE_SAMPLES_AMD 0x91B2 +#define GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD 0x91B3 +#define GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD 0x91B4 +#define GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD 0x91B5 +#define GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B6 +#define GL_SUPPORTED_MULTISAMPLE_MODES_AMD 0x91B7 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLNAMEDRENDERBUFFERSTORAGEMULTISAMPLEADVANCEDAMDPROC) (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAdvancedAMD (GLenum target, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glNamedRenderbufferStorageMultisampleAdvancedAMD (GLuint renderbuffer, GLsizei samples, GLsizei storageSamples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_AMD_framebuffer_multisample_advanced */ + +#ifndef GL_AMD_performance_monitor +#define GL_AMD_performance_monitor 1 +#define GL_COUNTER_TYPE_AMD 0x8BC0 +#define GL_COUNTER_RANGE_AMD 0x8BC1 +#define GL_UNSIGNED_INT64_AMD 0x8BC2 +#define GL_PERCENTAGE_AMD 0x8BC3 +#define GL_PERFMON_RESULT_AVAILABLE_AMD 0x8BC4 +#define GL_PERFMON_RESULT_SIZE_AMD 0x8BC5 +#define GL_PERFMON_RESULT_AMD 0x8BC6 +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSAMDPROC) (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORGROUPSTRINGAMDPROC) (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERSTRINGAMDPROC) (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERINFOAMDPROC) (GLuint group, GLuint counter, GLenum pname, void *data); +typedef void (GL_APIENTRYP PFNGLGENPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLDELETEPERFMONITORSAMDPROC) (GLsizei n, GLuint *monitors); +typedef void (GL_APIENTRYP PFNGLSELECTPERFMONITORCOUNTERSAMDPROC) (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +typedef void (GL_APIENTRYP PFNGLBEGINPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLENDPERFMONITORAMDPROC) (GLuint monitor); +typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCountersAMD (GLuint group, GLint *numCounters, GLint *maxActiveCounters, GLsizei counterSize, GLuint *counters); +GL_APICALL void GL_APIENTRY glGetPerfMonitorGroupStringAMD (GLuint group, GLsizei bufSize, GLsizei *length, GLchar *groupString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterStringAMD (GLuint group, GLuint counter, GLsizei bufSize, GLsizei *length, GLchar *counterString); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterInfoAMD (GLuint group, GLuint counter, GLenum pname, void *data); +GL_APICALL void GL_APIENTRY glGenPerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glDeletePerfMonitorsAMD (GLsizei n, GLuint *monitors); +GL_APICALL void GL_APIENTRY glSelectPerfMonitorCountersAMD (GLuint monitor, GLboolean enable, GLuint group, GLint numCounters, GLuint *counterList); +GL_APICALL void GL_APIENTRY glBeginPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glEndPerfMonitorAMD (GLuint monitor); +GL_APICALL void GL_APIENTRY glGetPerfMonitorCounterDataAMD (GLuint monitor, GLenum pname, GLsizei dataSize, GLuint *data, GLint *bytesWritten); +#endif +#endif /* GL_AMD_performance_monitor */ + +#ifndef GL_AMD_program_binary_Z400 +#define GL_AMD_program_binary_Z400 1 +#define GL_Z400_BINARY_AMD 0x8740 +#endif /* GL_AMD_program_binary_Z400 */ + +#ifndef GL_ANDROID_extension_pack_es31a +#define GL_ANDROID_extension_pack_es31a 1 +#endif /* GL_ANDROID_extension_pack_es31a */ + +#ifndef GL_ANGLE_depth_texture +#define GL_ANGLE_depth_texture 1 +#endif /* GL_ANGLE_depth_texture */ + +#ifndef GL_ANGLE_framebuffer_blit +#define GL_ANGLE_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_ANGLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_ANGLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_ANGLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_ANGLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERANGLEPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferANGLE (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_ANGLE_framebuffer_blit */ + +#ifndef GL_ANGLE_framebuffer_multisample +#define GL_ANGLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_ANGLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE 0x8D56 +#define GL_MAX_SAMPLES_ANGLE 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEANGLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleANGLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_ANGLE_framebuffer_multisample */ + +#ifndef GL_ANGLE_instanced_arrays +#define GL_ANGLE_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE 0x88FE +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDANGLEPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDANGLEPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORANGLEPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedANGLE (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedANGLE (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +GL_APICALL void GL_APIENTRY glVertexAttribDivisorANGLE (GLuint index, GLuint divisor); +#endif +#endif /* GL_ANGLE_instanced_arrays */ + +#ifndef GL_ANGLE_pack_reverse_row_order +#define GL_ANGLE_pack_reverse_row_order 1 +#define GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 +#endif /* GL_ANGLE_pack_reverse_row_order */ + +#ifndef GL_ANGLE_program_binary +#define GL_ANGLE_program_binary 1 +#define GL_PROGRAM_BINARY_ANGLE 0x93A6 +#endif /* GL_ANGLE_program_binary */ + +#ifndef GL_ANGLE_texture_compression_dxt3 +#define GL_ANGLE_texture_compression_dxt3 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 +#endif /* GL_ANGLE_texture_compression_dxt3 */ + +#ifndef GL_ANGLE_texture_compression_dxt5 +#define GL_ANGLE_texture_compression_dxt5 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 +#endif /* GL_ANGLE_texture_compression_dxt5 */ + +#ifndef GL_ANGLE_texture_usage +#define GL_ANGLE_texture_usage 1 +#define GL_TEXTURE_USAGE_ANGLE 0x93A2 +#define GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 +#endif /* GL_ANGLE_texture_usage */ + +#ifndef GL_ANGLE_translated_shader_source +#define GL_ANGLE_translated_shader_source 1 +#define GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 +typedef void (GL_APIENTRYP PFNGLGETTRANSLATEDSHADERSOURCEANGLEPROC) (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetTranslatedShaderSourceANGLE (GLuint shader, GLsizei bufSize, GLsizei *length, GLchar *source); +#endif +#endif /* GL_ANGLE_translated_shader_source */ + +#ifndef GL_APPLE_clip_distance +#define GL_APPLE_clip_distance 1 +#define GL_MAX_CLIP_DISTANCES_APPLE 0x0D32 +#define GL_CLIP_DISTANCE0_APPLE 0x3000 +#define GL_CLIP_DISTANCE1_APPLE 0x3001 +#define GL_CLIP_DISTANCE2_APPLE 0x3002 +#define GL_CLIP_DISTANCE3_APPLE 0x3003 +#define GL_CLIP_DISTANCE4_APPLE 0x3004 +#define GL_CLIP_DISTANCE5_APPLE 0x3005 +#define GL_CLIP_DISTANCE6_APPLE 0x3006 +#define GL_CLIP_DISTANCE7_APPLE 0x3007 +#endif /* GL_APPLE_clip_distance */ + +#ifndef GL_APPLE_color_buffer_packed_float +#define GL_APPLE_color_buffer_packed_float 1 +#endif /* GL_APPLE_color_buffer_packed_float */ + +#ifndef GL_APPLE_copy_texture_levels +#define GL_APPLE_copy_texture_levels 1 +typedef void (GL_APIENTRYP PFNGLCOPYTEXTURELEVELSAPPLEPROC) (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyTextureLevelsAPPLE (GLuint destinationTexture, GLuint sourceTexture, GLint sourceBaseLevel, GLsizei sourceLevelCount); +#endif +#endif /* GL_APPLE_copy_texture_levels */ + +#ifndef GL_APPLE_framebuffer_multisample +#define GL_APPLE_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_APPLE 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE 0x8D56 +#define GL_MAX_SAMPLES_APPLE 0x8D57 +#define GL_READ_FRAMEBUFFER_APPLE 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_APPLE 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_APPLE 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_APPLE 0x8CAA +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEAPPLEPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLRESOLVEMULTISAMPLEFRAMEBUFFERAPPLEPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleAPPLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glResolveMultisampleFramebufferAPPLE (void); +#endif +#endif /* GL_APPLE_framebuffer_multisample */ + +#ifndef GL_APPLE_rgb_422 +#define GL_APPLE_rgb_422 1 +#define GL_RGB_422_APPLE 0x8A1F +#define GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA +#define GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB +#define GL_RGB_RAW_422_APPLE 0x8A51 +#endif /* GL_APPLE_rgb_422 */ + +#ifndef GL_APPLE_sync +#define GL_APPLE_sync 1 +#define GL_SYNC_OBJECT_APPLE 0x8A53 +#define GL_MAX_SERVER_WAIT_TIMEOUT_APPLE 0x9111 +#define GL_OBJECT_TYPE_APPLE 0x9112 +#define GL_SYNC_CONDITION_APPLE 0x9113 +#define GL_SYNC_STATUS_APPLE 0x9114 +#define GL_SYNC_FLAGS_APPLE 0x9115 +#define GL_SYNC_FENCE_APPLE 0x9116 +#define GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE 0x9117 +#define GL_UNSIGNALED_APPLE 0x9118 +#define GL_SIGNALED_APPLE 0x9119 +#define GL_ALREADY_SIGNALED_APPLE 0x911A +#define GL_TIMEOUT_EXPIRED_APPLE 0x911B +#define GL_CONDITION_SATISFIED_APPLE 0x911C +#define GL_WAIT_FAILED_APPLE 0x911D +#define GL_SYNC_FLUSH_COMMANDS_BIT_APPLE 0x00000001 +#define GL_TIMEOUT_IGNORED_APPLE 0xFFFFFFFFFFFFFFFFull +typedef GLsync (GL_APIENTRYP PFNGLFENCESYNCAPPLEPROC) (GLenum condition, GLbitfield flags); +typedef GLboolean (GL_APIENTRYP PFNGLISSYNCAPPLEPROC) (GLsync sync); +typedef void (GL_APIENTRYP PFNGLDELETESYNCAPPLEPROC) (GLsync sync); +typedef GLenum (GL_APIENTRYP PFNGLCLIENTWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLWAITSYNCAPPLEPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VAPPLEPROC) (GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSYNCIVAPPLEPROC) (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLsync GL_APIENTRY glFenceSyncAPPLE (GLenum condition, GLbitfield flags); +GL_APICALL GLboolean GL_APIENTRY glIsSyncAPPLE (GLsync sync); +GL_APICALL void GL_APIENTRY glDeleteSyncAPPLE (GLsync sync); +GL_APICALL GLenum GL_APIENTRY glClientWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glWaitSyncAPPLE (GLsync sync, GLbitfield flags, GLuint64 timeout); +GL_APICALL void GL_APIENTRY glGetInteger64vAPPLE (GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetSyncivAPPLE (GLsync sync, GLenum pname, GLsizei count, GLsizei *length, GLint *values); +#endif +#endif /* GL_APPLE_sync */ + +#ifndef GL_APPLE_texture_format_BGRA8888 +#define GL_APPLE_texture_format_BGRA8888 1 +#define GL_BGRA_EXT 0x80E1 +#define GL_BGRA8_EXT 0x93A1 +#endif /* GL_APPLE_texture_format_BGRA8888 */ + +#ifndef GL_APPLE_texture_max_level +#define GL_APPLE_texture_max_level 1 +#define GL_TEXTURE_MAX_LEVEL_APPLE 0x813D +#endif /* GL_APPLE_texture_max_level */ + +#ifndef GL_APPLE_texture_packed_float +#define GL_APPLE_texture_packed_float 1 +#define GL_UNSIGNED_INT_10F_11F_11F_REV_APPLE 0x8C3B +#define GL_UNSIGNED_INT_5_9_9_9_REV_APPLE 0x8C3E +#define GL_R11F_G11F_B10F_APPLE 0x8C3A +#define GL_RGB9_E5_APPLE 0x8C3D +#endif /* GL_APPLE_texture_packed_float */ + +#ifndef GL_ARM_mali_program_binary +#define GL_ARM_mali_program_binary 1 +#define GL_MALI_PROGRAM_BINARY_ARM 0x8F61 +#endif /* GL_ARM_mali_program_binary */ + +#ifndef GL_ARM_mali_shader_binary +#define GL_ARM_mali_shader_binary 1 +#define GL_MALI_SHADER_BINARY_ARM 0x8F60 +#endif /* GL_ARM_mali_shader_binary */ + +#ifndef GL_ARM_rgba8 +#define GL_ARM_rgba8 1 +#endif /* GL_ARM_rgba8 */ + +#ifndef GL_ARM_shader_framebuffer_fetch +#define GL_ARM_shader_framebuffer_fetch 1 +#define GL_FETCH_PER_SAMPLE_ARM 0x8F65 +#define GL_FRAGMENT_SHADER_FRAMEBUFFER_FETCH_MRT_ARM 0x8F66 +#endif /* GL_ARM_shader_framebuffer_fetch */ + +#ifndef GL_ARM_shader_framebuffer_fetch_depth_stencil +#define GL_ARM_shader_framebuffer_fetch_depth_stencil 1 +#endif /* GL_ARM_shader_framebuffer_fetch_depth_stencil */ + +#ifndef GL_ARM_texture_unnormalized_coordinates +#define GL_ARM_texture_unnormalized_coordinates 1 +#define GL_TEXTURE_UNNORMALIZED_COORDINATES_ARM 0x8F6A +#endif /* GL_ARM_texture_unnormalized_coordinates */ + +#ifndef GL_DMP_program_binary +#define GL_DMP_program_binary 1 +#define GL_SMAPHS30_PROGRAM_BINARY_DMP 0x9251 +#define GL_SMAPHS_PROGRAM_BINARY_DMP 0x9252 +#define GL_DMP_PROGRAM_BINARY_DMP 0x9253 +#endif /* GL_DMP_program_binary */ + +#ifndef GL_DMP_shader_binary +#define GL_DMP_shader_binary 1 +#define GL_SHADER_BINARY_DMP 0x9250 +#endif /* GL_DMP_shader_binary */ + +#ifndef GL_EXT_EGL_image_array +#define GL_EXT_EGL_image_array 1 +#endif /* GL_EXT_EGL_image_array */ + +#ifndef GL_EXT_EGL_image_storage +#define GL_EXT_EGL_image_storage 1 +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXSTORAGEEXTPROC) (GLenum target, GLeglImageOES image, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEGLImageTargetTexStorageEXT (GLenum target, GLeglImageOES image, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glEGLImageTargetTextureStorageEXT (GLuint texture, GLeglImageOES image, const GLint* attrib_list); +#endif +#endif /* GL_EXT_EGL_image_storage */ + +#ifndef GL_EXT_EGL_image_storage_compression +#define GL_EXT_EGL_image_storage_compression 1 +#define GL_SURFACE_COMPRESSION_EXT 0x96C0 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_NONE_EXT 0x96C1 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_DEFAULT_EXT 0x96C2 +#endif /* GL_EXT_EGL_image_storage_compression */ + +#ifndef GL_EXT_YUV_target +#define GL_EXT_YUV_target 1 +#define GL_SAMPLER_EXTERNAL_2D_Y2Y_EXT 0x8BE7 +#endif /* GL_EXT_YUV_target */ + +#ifndef GL_EXT_base_instance +#define GL_EXT_base_instance 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedBaseInstanceEXT (GLenum mode, GLint first, GLsizei count, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLuint baseinstance); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexBaseInstanceEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex, GLuint baseinstance); +#endif +#endif /* GL_EXT_base_instance */ + +#ifndef GL_EXT_blend_func_extended +#define GL_EXT_blend_func_extended 1 +#define GL_SRC1_COLOR_EXT 0x88F9 +#define GL_SRC1_ALPHA_EXT 0x8589 +#define GL_ONE_MINUS_SRC1_COLOR_EXT 0x88FA +#define GL_ONE_MINUS_SRC1_ALPHA_EXT 0x88FB +#define GL_SRC_ALPHA_SATURATE_EXT 0x0308 +#define GL_LOCATION_INDEX_EXT 0x930F +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT 0x88FC +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDEXTPROC) (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +typedef void (GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONEXTPROC) (GLuint program, GLuint color, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXEXTPROC) (GLuint program, GLenum programInterface, const GLchar *name); +typedef GLint (GL_APIENTRYP PFNGLGETFRAGDATAINDEXEXTPROC) (GLuint program, const GLchar *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindFragDataLocationIndexedEXT (GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GL_APICALL void GL_APIENTRY glBindFragDataLocationEXT (GLuint program, GLuint color, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetProgramResourceLocationIndexEXT (GLuint program, GLenum programInterface, const GLchar *name); +GL_APICALL GLint GL_APIENTRY glGetFragDataIndexEXT (GLuint program, const GLchar *name); +#endif +#endif /* GL_EXT_blend_func_extended */ + +#ifndef GL_EXT_blend_minmax +#define GL_EXT_blend_minmax 1 +#define GL_MIN_EXT 0x8007 +#define GL_MAX_EXT 0x8008 +#endif /* GL_EXT_blend_minmax */ + +#ifndef GL_EXT_buffer_storage +#define GL_EXT_buffer_storage 1 +#define GL_MAP_READ_BIT 0x0001 +#define GL_MAP_WRITE_BIT 0x0002 +#define GL_MAP_PERSISTENT_BIT_EXT 0x0040 +#define GL_MAP_COHERENT_BIT_EXT 0x0080 +#define GL_DYNAMIC_STORAGE_BIT_EXT 0x0100 +#define GL_CLIENT_STORAGE_BIT_EXT 0x0200 +#define GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT_EXT 0x00004000 +#define GL_BUFFER_IMMUTABLE_STORAGE_EXT 0x821F +#define GL_BUFFER_STORAGE_FLAGS_EXT 0x8220 +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTPROC) (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageEXT (GLenum target, GLsizeiptr size, const void *data, GLbitfield flags); +#endif +#endif /* GL_EXT_buffer_storage */ + +#ifndef GL_EXT_clear_texture +#define GL_EXT_clear_texture 1 +typedef void (GL_APIENTRYP PFNGLCLEARTEXIMAGEEXTPROC) (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +typedef void (GL_APIENTRYP PFNGLCLEARTEXSUBIMAGEEXTPROC) (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClearTexImageEXT (GLuint texture, GLint level, GLenum format, GLenum type, const void *data); +GL_APICALL void GL_APIENTRY glClearTexSubImageEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data); +#endif +#endif /* GL_EXT_clear_texture */ + +#ifndef GL_EXT_clip_control +#define GL_EXT_clip_control 1 +#define GL_LOWER_LEFT_EXT 0x8CA1 +#define GL_UPPER_LEFT_EXT 0x8CA2 +#define GL_NEGATIVE_ONE_TO_ONE_EXT 0x935E +#define GL_ZERO_TO_ONE_EXT 0x935F +#define GL_CLIP_ORIGIN_EXT 0x935C +#define GL_CLIP_DEPTH_MODE_EXT 0x935D +typedef void (GL_APIENTRYP PFNGLCLIPCONTROLEXTPROC) (GLenum origin, GLenum depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glClipControlEXT (GLenum origin, GLenum depth); +#endif +#endif /* GL_EXT_clip_control */ + +#ifndef GL_EXT_clip_cull_distance +#define GL_EXT_clip_cull_distance 1 +#define GL_MAX_CLIP_DISTANCES_EXT 0x0D32 +#define GL_MAX_CULL_DISTANCES_EXT 0x82F9 +#define GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES_EXT 0x82FA +#define GL_CLIP_DISTANCE0_EXT 0x3000 +#define GL_CLIP_DISTANCE1_EXT 0x3001 +#define GL_CLIP_DISTANCE2_EXT 0x3002 +#define GL_CLIP_DISTANCE3_EXT 0x3003 +#define GL_CLIP_DISTANCE4_EXT 0x3004 +#define GL_CLIP_DISTANCE5_EXT 0x3005 +#define GL_CLIP_DISTANCE6_EXT 0x3006 +#define GL_CLIP_DISTANCE7_EXT 0x3007 +#endif /* GL_EXT_clip_cull_distance */ + +#ifndef GL_EXT_color_buffer_float +#define GL_EXT_color_buffer_float 1 +#endif /* GL_EXT_color_buffer_float */ + +#ifndef GL_EXT_color_buffer_half_float +#define GL_EXT_color_buffer_half_float 1 +#define GL_RGBA16F_EXT 0x881A +#define GL_RGB16F_EXT 0x881B +#define GL_RG16F_EXT 0x822F +#define GL_R16F_EXT 0x822D +#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT 0x8211 +#define GL_UNSIGNED_NORMALIZED_EXT 0x8C17 +#endif /* GL_EXT_color_buffer_half_float */ + +#ifndef GL_EXT_conservative_depth +#define GL_EXT_conservative_depth 1 +#endif /* GL_EXT_conservative_depth */ + +#ifndef GL_EXT_copy_image +#define GL_EXT_copy_image 1 +typedef void (GL_APIENTRYP PFNGLCOPYIMAGESUBDATAEXTPROC) (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyImageSubDataEXT (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth); +#endif +#endif /* GL_EXT_copy_image */ + +#ifndef GL_EXT_debug_label +#define GL_EXT_debug_label 1 +#define GL_PROGRAM_PIPELINE_OBJECT_EXT 0x8A4F +#define GL_PROGRAM_OBJECT_EXT 0x8B40 +#define GL_SHADER_OBJECT_EXT 0x8B48 +#define GL_BUFFER_OBJECT_EXT 0x9151 +#define GL_QUERY_OBJECT_EXT 0x9153 +#define GL_VERTEX_ARRAY_OBJECT_EXT 0x9154 +#define GL_TRANSFORM_FEEDBACK 0x8E22 +typedef void (GL_APIENTRYP PFNGLLABELOBJECTEXTPROC) (GLenum type, GLuint object, GLsizei length, const GLchar *label); +typedef void (GL_APIENTRYP PFNGLGETOBJECTLABELEXTPROC) (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glLabelObjectEXT (GLenum type, GLuint object, GLsizei length, const GLchar *label); +GL_APICALL void GL_APIENTRY glGetObjectLabelEXT (GLenum type, GLuint object, GLsizei bufSize, GLsizei *length, GLchar *label); +#endif +#endif /* GL_EXT_debug_label */ + +#ifndef GL_EXT_debug_marker +#define GL_EXT_debug_marker 1 +typedef void (GL_APIENTRYP PFNGLINSERTEVENTMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPUSHGROUPMARKEREXTPROC) (GLsizei length, const GLchar *marker); +typedef void (GL_APIENTRYP PFNGLPOPGROUPMARKEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glInsertEventMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPushGroupMarkerEXT (GLsizei length, const GLchar *marker); +GL_APICALL void GL_APIENTRY glPopGroupMarkerEXT (void); +#endif +#endif /* GL_EXT_debug_marker */ + +#ifndef GL_EXT_depth_clamp +#define GL_EXT_depth_clamp 1 +#define GL_DEPTH_CLAMP_EXT 0x864F +#endif /* GL_EXT_depth_clamp */ + +#ifndef GL_EXT_discard_framebuffer +#define GL_EXT_discard_framebuffer 1 +#define GL_COLOR_EXT 0x1800 +#define GL_DEPTH_EXT 0x1801 +#define GL_STENCIL_EXT 0x1802 +typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments); +#endif +#endif /* GL_EXT_discard_framebuffer */ + +#ifndef GL_EXT_disjoint_timer_query +#define GL_EXT_disjoint_timer_query 1 +#define GL_QUERY_COUNTER_BITS_EXT 0x8864 +#define GL_CURRENT_QUERY_EXT 0x8865 +#define GL_QUERY_RESULT_EXT 0x8866 +#define GL_QUERY_RESULT_AVAILABLE_EXT 0x8867 +#define GL_TIME_ELAPSED_EXT 0x88BF +#define GL_TIMESTAMP_EXT 0x8E28 +#define GL_GPU_DISJOINT_EXT 0x8FBB +typedef void (GL_APIENTRYP PFNGLGENQUERIESEXTPROC) (GLsizei n, GLuint *ids); +typedef void (GL_APIENTRYP PFNGLDELETEQUERIESEXTPROC) (GLsizei n, const GLuint *ids); +typedef GLboolean (GL_APIENTRYP PFNGLISQUERYEXTPROC) (GLuint id); +typedef void (GL_APIENTRYP PFNGLBEGINQUERYEXTPROC) (GLenum target, GLuint id); +typedef void (GL_APIENTRYP PFNGLENDQUERYEXTPROC) (GLenum target); +typedef void (GL_APIENTRYP PFNGLQUERYCOUNTEREXTPROC) (GLuint id, GLenum target); +typedef void (GL_APIENTRYP PFNGLGETQUERYIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTIVEXTPROC) (GLuint id, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUIVEXTPROC) (GLuint id, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTI64VEXTPROC) (GLuint id, GLenum pname, GLint64 *params); +typedef void (GL_APIENTRYP PFNGLGETQUERYOBJECTUI64VEXTPROC) (GLuint id, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETINTEGER64VEXTPROC) (GLenum pname, GLint64 *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenQueriesEXT (GLsizei n, GLuint *ids); +GL_APICALL void GL_APIENTRY glDeleteQueriesEXT (GLsizei n, const GLuint *ids); +GL_APICALL GLboolean GL_APIENTRY glIsQueryEXT (GLuint id); +GL_APICALL void GL_APIENTRY glBeginQueryEXT (GLenum target, GLuint id); +GL_APICALL void GL_APIENTRY glEndQueryEXT (GLenum target); +GL_APICALL void GL_APIENTRY glQueryCounterEXT (GLuint id, GLenum target); +GL_APICALL void GL_APIENTRY glGetQueryivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectivEXT (GLuint id, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectuivEXT (GLuint id, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64 *params); +GL_APICALL void GL_APIENTRY glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetInteger64vEXT (GLenum pname, GLint64 *data); +#endif +#endif /* GL_EXT_disjoint_timer_query */ + +#ifndef GL_EXT_draw_buffers +#define GL_EXT_draw_buffers 1 +#define GL_MAX_COLOR_ATTACHMENTS_EXT 0x8CDF +#define GL_MAX_DRAW_BUFFERS_EXT 0x8824 +#define GL_DRAW_BUFFER0_EXT 0x8825 +#define GL_DRAW_BUFFER1_EXT 0x8826 +#define GL_DRAW_BUFFER2_EXT 0x8827 +#define GL_DRAW_BUFFER3_EXT 0x8828 +#define GL_DRAW_BUFFER4_EXT 0x8829 +#define GL_DRAW_BUFFER5_EXT 0x882A +#define GL_DRAW_BUFFER6_EXT 0x882B +#define GL_DRAW_BUFFER7_EXT 0x882C +#define GL_DRAW_BUFFER8_EXT 0x882D +#define GL_DRAW_BUFFER9_EXT 0x882E +#define GL_DRAW_BUFFER10_EXT 0x882F +#define GL_DRAW_BUFFER11_EXT 0x8830 +#define GL_DRAW_BUFFER12_EXT 0x8831 +#define GL_DRAW_BUFFER13_EXT 0x8832 +#define GL_DRAW_BUFFER14_EXT 0x8833 +#define GL_DRAW_BUFFER15_EXT 0x8834 +#define GL_COLOR_ATTACHMENT0_EXT 0x8CE0 +#define GL_COLOR_ATTACHMENT1_EXT 0x8CE1 +#define GL_COLOR_ATTACHMENT2_EXT 0x8CE2 +#define GL_COLOR_ATTACHMENT3_EXT 0x8CE3 +#define GL_COLOR_ATTACHMENT4_EXT 0x8CE4 +#define GL_COLOR_ATTACHMENT5_EXT 0x8CE5 +#define GL_COLOR_ATTACHMENT6_EXT 0x8CE6 +#define GL_COLOR_ATTACHMENT7_EXT 0x8CE7 +#define GL_COLOR_ATTACHMENT8_EXT 0x8CE8 +#define GL_COLOR_ATTACHMENT9_EXT 0x8CE9 +#define GL_COLOR_ATTACHMENT10_EXT 0x8CEA +#define GL_COLOR_ATTACHMENT11_EXT 0x8CEB +#define GL_COLOR_ATTACHMENT12_EXT 0x8CEC +#define GL_COLOR_ATTACHMENT13_EXT 0x8CED +#define GL_COLOR_ATTACHMENT14_EXT 0x8CEE +#define GL_COLOR_ATTACHMENT15_EXT 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSEXTPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersEXT (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_EXT_draw_buffers */ + +#ifndef GL_EXT_draw_buffers_indexed +#define GL_EXT_draw_buffers_indexed 1 +typedef void (GL_APIENTRYP PFNGLENABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEIEXTPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONIEXTPROC) (GLuint buf, GLenum mode); +typedef void (GL_APIENTRYP PFNGLBLENDEQUATIONSEPARATEIEXTPROC) (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCIEXTPROC) (GLuint buf, GLenum src, GLenum dst); +typedef void (GL_APIENTRYP PFNGLBLENDFUNCSEPARATEIEXTPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +typedef void (GL_APIENTRYP PFNGLCOLORMASKIEXTPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDIEXTPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glEnableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiEXT (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glBlendEquationiEXT (GLuint buf, GLenum mode); +GL_APICALL void GL_APIENTRY glBlendEquationSeparateiEXT (GLuint buf, GLenum modeRGB, GLenum modeAlpha); +GL_APICALL void GL_APIENTRY glBlendFunciEXT (GLuint buf, GLenum src, GLenum dst); +GL_APICALL void GL_APIENTRY glBlendFuncSeparateiEXT (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); +GL_APICALL void GL_APIENTRY glColorMaskiEXT (GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediEXT (GLenum target, GLuint index); +#endif +#endif /* GL_EXT_draw_buffers_indexed */ + +#ifndef GL_EXT_draw_elements_base_vertex +#define GL_EXT_draw_elements_base_vertex 1 +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXEXTPROC) (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawElementsBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawRangeElementsBaseVertexEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices, GLint basevertex); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedBaseVertexEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei instancecount, GLint basevertex); +#endif +#endif /* GL_EXT_draw_elements_base_vertex */ + +#ifndef GL_EXT_draw_instanced +#define GL_EXT_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDEXTPROC) (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDEXTPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_EXT_draw_instanced */ + +#ifndef GL_EXT_draw_transform_feedback +#define GL_EXT_draw_transform_feedback 1 +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKEXTPROC) (GLenum mode, GLuint id); +typedef void (GL_APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDEXTPROC) (GLenum mode, GLuint id, GLsizei instancecount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackEXT (GLenum mode, GLuint id); +GL_APICALL void GL_APIENTRY glDrawTransformFeedbackInstancedEXT (GLenum mode, GLuint id, GLsizei instancecount); +#endif +#endif /* GL_EXT_draw_transform_feedback */ + +#ifndef GL_EXT_external_buffer +#define GL_EXT_external_buffer 1 +typedef void *GLeglClientBufferEXT; +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEEXTERNALEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEEXTERNALEXTPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferStorageExternalEXT (GLenum target, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +GL_APICALL void GL_APIENTRY glNamedBufferStorageExternalEXT (GLuint buffer, GLintptr offset, GLsizeiptr size, GLeglClientBufferEXT clientBuffer, GLbitfield flags); +#endif +#endif /* GL_EXT_external_buffer */ + +#ifndef GL_EXT_float_blend +#define GL_EXT_float_blend 1 +#endif /* GL_EXT_float_blend */ + +#ifndef GL_EXT_fragment_shading_rate +#define GL_EXT_fragment_shading_rate 1 +#define GL_SHADING_RATE_1X1_PIXELS_EXT 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_EXT 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_EXT 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_EXT 0x96A9 +#define GL_SHADING_RATE_1X4_PIXELS_EXT 0x96AA +#define GL_SHADING_RATE_4X1_PIXELS_EXT 0x96AB +#define GL_SHADING_RATE_4X2_PIXELS_EXT 0x96AC +#define GL_SHADING_RATE_2X4_PIXELS_EXT 0x96AD +#define GL_SHADING_RATE_4X4_PIXELS_EXT 0x96AE +#define GL_SHADING_RATE_EXT 0x96D0 +#define GL_SHADING_RATE_ATTACHMENT_EXT 0x96D1 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_EXT 0x96D2 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_REPLACE_EXT 0x96D3 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MIN_EXT 0x96D4 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_EXT 0x96D5 +#define GL_FRAGMENT_SHADING_RATE_COMBINER_OP_MUL_EXT 0x96D6 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D7 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_WIDTH_EXT 0x96D8 +#define GL_MIN_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96D9 +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_HEIGHT_EXT 0x96DA +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_TEXEL_ASPECT_RATIO_EXT 0x96DB +#define GL_MAX_FRAGMENT_SHADING_RATE_ATTACHMENT_LAYERS_EXT 0x96DC +#define GL_FRAGMENT_SHADING_RATE_WITH_SHADER_DEPTH_STENCIL_WRITES_SUPPORTED_EXT 0x96DD +#define GL_FRAGMENT_SHADING_RATE_WITH_SAMPLE_MASK_SUPPORTED_EXT 0x96DE +#define GL_FRAGMENT_SHADING_RATE_ATTACHMENT_WITH_DEFAULT_FRAMEBUFFER_SUPPORTED_EXT 0x96DF +#define GL_FRAGMENT_SHADING_RATE_NON_TRIVIAL_COMBINERS_SUPPORTED_EXT 0x8F6F +typedef void (GL_APIENTRYP PFNGLGETFRAGMENTSHADINGRATESEXTPROC) (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEEXTPROC) (GLenum rate); +typedef void (GL_APIENTRYP PFNGLSHADINGRATECOMBINEROPSEXTPROC) (GLenum combinerOp0, GLenum combinerOp1); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSHADINGRATEEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetFragmentShadingRatesEXT (GLsizei samples, GLsizei maxCount, GLsizei *count, GLenum *shadingRates); +GL_APICALL void GL_APIENTRY glShadingRateEXT (GLenum rate); +GL_APICALL void GL_APIENTRY glShadingRateCombinerOpsEXT (GLenum combinerOp0, GLenum combinerOp1); +GL_APICALL void GL_APIENTRY glFramebufferShadingRateEXT (GLenum target, GLenum attachment, GLuint texture, GLint baseLayer, GLsizei numLayers, GLsizei texelWidth, GLsizei texelHeight); +#endif +#endif /* GL_EXT_fragment_shading_rate */ + +#ifndef GL_EXT_geometry_point_size +#define GL_EXT_geometry_point_size 1 +#endif /* GL_EXT_geometry_point_size */ + +#ifndef GL_EXT_geometry_shader +#define GL_EXT_geometry_shader 1 +#define GL_GEOMETRY_SHADER_EXT 0x8DD9 +#define GL_GEOMETRY_SHADER_BIT_EXT 0x00000004 +#define GL_GEOMETRY_LINKED_VERTICES_OUT_EXT 0x8916 +#define GL_GEOMETRY_LINKED_INPUT_TYPE_EXT 0x8917 +#define GL_GEOMETRY_LINKED_OUTPUT_TYPE_EXT 0x8918 +#define GL_GEOMETRY_SHADER_INVOCATIONS_EXT 0x887F +#define GL_LAYER_PROVOKING_VERTEX_EXT 0x825E +#define GL_LINES_ADJACENCY_EXT 0x000A +#define GL_LINE_STRIP_ADJACENCY_EXT 0x000B +#define GL_TRIANGLES_ADJACENCY_EXT 0x000C +#define GL_TRIANGLE_STRIP_ADJACENCY_EXT 0x000D +#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8DDF +#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS_EXT 0x8A2C +#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS_EXT 0x8A32 +#define GL_MAX_GEOMETRY_INPUT_COMPONENTS_EXT 0x9123 +#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS_EXT 0x9124 +#define GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT 0x8DE0 +#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT 0x8DE1 +#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS_EXT 0x8E5A +#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT 0x8C29 +#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS_EXT 0x92CF +#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS_EXT 0x92D5 +#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS_EXT 0x90CD +#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS_EXT 0x90D7 +#define GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D +#define GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E +#define GL_UNDEFINED_VERTEX_EXT 0x8260 +#define GL_PRIMITIVES_GENERATED_EXT 0x8C87 +#define GL_FRAMEBUFFER_DEFAULT_LAYERS_EXT 0x9312 +#define GL_MAX_FRAMEBUFFER_LAYERS_EXT 0x9317 +#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT 0x8DA8 +#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT 0x8DA7 +#define GL_REFERENCED_BY_GEOMETRY_SHADER_EXT 0x9309 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREEXTPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureEXT (GLenum target, GLenum attachment, GLuint texture, GLint level); +#endif +#endif /* GL_EXT_geometry_shader */ + +#ifndef GL_EXT_gpu_shader5 +#define GL_EXT_gpu_shader5 1 +#endif /* GL_EXT_gpu_shader5 */ + +#ifndef GL_EXT_instanced_arrays +#define GL_EXT_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_EXT 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISOREXTPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorEXT (GLuint index, GLuint divisor); +#endif +#endif /* GL_EXT_instanced_arrays */ + +#ifndef GL_EXT_map_buffer_range +#define GL_EXT_map_buffer_range 1 +#define GL_MAP_READ_BIT_EXT 0x0001 +#define GL_MAP_WRITE_BIT_EXT 0x0002 +#define GL_MAP_INVALIDATE_RANGE_BIT_EXT 0x0004 +#define GL_MAP_INVALIDATE_BUFFER_BIT_EXT 0x0008 +#define GL_MAP_FLUSH_EXPLICIT_BIT_EXT 0x0010 +#define GL_MAP_UNSYNCHRONIZED_BIT_EXT 0x0020 +typedef void *(GL_APIENTRYP PFNGLMAPBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +typedef void (GL_APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEEXTPROC) (GLenum target, GLintptr offset, GLsizeiptr length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void *GL_APIENTRY glMapBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); +GL_APICALL void GL_APIENTRY glFlushMappedBufferRangeEXT (GLenum target, GLintptr offset, GLsizeiptr length); +#endif +#endif /* GL_EXT_map_buffer_range */ + +#ifndef GL_EXT_memory_object +#define GL_EXT_memory_object 1 +#define GL_TEXTURE_TILING_EXT 0x9580 +#define GL_DEDICATED_MEMORY_OBJECT_EXT 0x9581 +#define GL_PROTECTED_MEMORY_OBJECT_EXT 0x959B +#define GL_NUM_TILING_TYPES_EXT 0x9582 +#define GL_TILING_TYPES_EXT 0x9583 +#define GL_OPTIMAL_TILING_EXT 0x9584 +#define GL_LINEAR_TILING_EXT 0x9585 +#define GL_NUM_DEVICE_UUIDS_EXT 0x9596 +#define GL_DEVICE_UUID_EXT 0x9597 +#define GL_DRIVER_UUID_EXT 0x9598 +#define GL_UUID_SIZE_EXT 16 +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEVEXTPROC) (GLenum pname, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLGETUNSIGNEDBYTEI_VEXTPROC) (GLenum target, GLuint index, GLubyte *data); +typedef void (GL_APIENTRYP PFNGLDELETEMEMORYOBJECTSEXTPROC) (GLsizei n, const GLuint *memoryObjects); +typedef GLboolean (GL_APIENTRYP PFNGLISMEMORYOBJECTEXTPROC) (GLuint memoryObject); +typedef void (GL_APIENTRYP PFNGLCREATEMEMORYOBJECTSEXTPROC) (GLsizei n, GLuint *memoryObjects); +typedef void (GL_APIENTRYP PFNGLMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTPARAMETERIVEXTPROC) (GLuint memoryObject, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM2DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEMEM3DMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERSTORAGEMEMEXTPROC) (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM2DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DEXTPROC) (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGEMEM3DMULTISAMPLEEXTPROC) (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERSTORAGEMEMEXTPROC) (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetUnsignedBytevEXT (GLenum pname, GLubyte *data); +GL_APICALL void GL_APIENTRY glGetUnsignedBytei_vEXT (GLenum target, GLuint index, GLubyte *data); +GL_APICALL void GL_APIENTRY glDeleteMemoryObjectsEXT (GLsizei n, const GLuint *memoryObjects); +GL_APICALL GLboolean GL_APIENTRY glIsMemoryObjectEXT (GLuint memoryObject); +GL_APICALL void GL_APIENTRY glCreateMemoryObjectsEXT (GLsizei n, GLuint *memoryObjects); +GL_APICALL void GL_APIENTRY glMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetMemoryObjectParameterivEXT (GLuint memoryObject, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem2DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTexStorageMem3DMultisampleEXT (GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferStorageMemEXT (GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem2DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureStorageMem3DMultisampleEXT (GLuint texture, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferStorageMemEXT (GLuint buffer, GLsizeiptr size, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_EXT_memory_object */ + +#ifndef GL_EXT_memory_object_fd +#define GL_EXT_memory_object_fd 1 +#define GL_HANDLE_TYPE_OPAQUE_FD_EXT 0x9586 +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYFDEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_memory_object_fd */ + +#ifndef GL_EXT_memory_object_win32 +#define GL_EXT_memory_object_win32 1 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_EXT 0x9587 +#define GL_HANDLE_TYPE_OPAQUE_WIN32_KMT_EXT 0x9588 +#define GL_DEVICE_LUID_EXT 0x9599 +#define GL_DEVICE_NODE_MASK_EXT 0x959A +#define GL_LUID_SIZE_EXT 8 +#define GL_HANDLE_TYPE_D3D12_TILEPOOL_EXT 0x9589 +#define GL_HANDLE_TYPE_D3D12_RESOURCE_EXT 0x958A +#define GL_HANDLE_TYPE_D3D11_IMAGE_EXT 0x958B +#define GL_HANDLE_TYPE_D3D11_IMAGE_KMT_EXT 0x958C +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32HANDLEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTMEMORYWIN32NAMEEXTPROC) (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportMemoryWin32HandleEXT (GLuint memory, GLuint64 size, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportMemoryWin32NameEXT (GLuint memory, GLuint64 size, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_memory_object_win32 */ + +#ifndef GL_EXT_multi_draw_arrays +#define GL_EXT_multi_draw_arrays 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSEXTPROC) (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSEXTPROC) (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysEXT (GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glMultiDrawElementsEXT (GLenum mode, const GLsizei *count, GLenum type, const void *const*indices, GLsizei primcount); +#endif +#endif /* GL_EXT_multi_draw_arrays */ + +#ifndef GL_EXT_multi_draw_indirect +#define GL_EXT_multi_draw_indirect 1 +typedef void (GL_APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTEXTPROC) (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTEXTPROC) (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glMultiDrawArraysIndirectEXT (GLenum mode, const void *indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawElementsIndirectEXT (GLenum mode, GLenum type, const void *indirect, GLsizei drawcount, GLsizei stride); +#endif +#endif /* GL_EXT_multi_draw_indirect */ + +#ifndef GL_EXT_multisampled_compatibility +#define GL_EXT_multisampled_compatibility 1 +#define GL_MULTISAMPLE_EXT 0x809D +#define GL_SAMPLE_ALPHA_TO_ONE_EXT 0x809F +#endif /* GL_EXT_multisampled_compatibility */ + +#ifndef GL_EXT_multisampled_render_to_texture +#define GL_EXT_multisampled_render_to_texture 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT 0x8D6C +#define GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 +#define GL_MAX_SAMPLES_EXT 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEEXTPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleEXT (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_EXT_multisampled_render_to_texture */ + +#ifndef GL_EXT_multisampled_render_to_texture2 +#define GL_EXT_multisampled_render_to_texture2 1 +#endif /* GL_EXT_multisampled_render_to_texture2 */ + +#ifndef GL_EXT_multiview_draw_buffers +#define GL_EXT_multiview_draw_buffers 1 +#define GL_COLOR_ATTACHMENT_EXT 0x90F0 +#define GL_MULTIVIEW_EXT 0x90F1 +#define GL_DRAW_BUFFER_EXT 0x0C01 +#define GL_READ_BUFFER_EXT 0x0C02 +#define GL_MAX_MULTIVIEW_BUFFERS_EXT 0x90F2 +typedef void (GL_APIENTRYP PFNGLREADBUFFERINDEXEDEXTPROC) (GLenum src, GLint index); +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSINDEXEDEXTPROC) (GLint n, const GLenum *location, const GLint *indices); +typedef void (GL_APIENTRYP PFNGLGETINTEGERI_VEXTPROC) (GLenum target, GLuint index, GLint *data); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferIndexedEXT (GLenum src, GLint index); +GL_APICALL void GL_APIENTRY glDrawBuffersIndexedEXT (GLint n, const GLenum *location, const GLint *indices); +GL_APICALL void GL_APIENTRY glGetIntegeri_vEXT (GLenum target, GLuint index, GLint *data); +#endif +#endif /* GL_EXT_multiview_draw_buffers */ + +#ifndef GL_EXT_multiview_tessellation_geometry_shader +#define GL_EXT_multiview_tessellation_geometry_shader 1 +#endif /* GL_EXT_multiview_tessellation_geometry_shader */ + +#ifndef GL_EXT_multiview_texture_multisample +#define GL_EXT_multiview_texture_multisample 1 +#endif /* GL_EXT_multiview_texture_multisample */ + +#ifndef GL_EXT_multiview_timer_query +#define GL_EXT_multiview_timer_query 1 +#endif /* GL_EXT_multiview_timer_query */ + +#ifndef GL_EXT_occlusion_query_boolean +#define GL_EXT_occlusion_query_boolean 1 +#define GL_ANY_SAMPLES_PASSED_EXT 0x8C2F +#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT 0x8D6A +#endif /* GL_EXT_occlusion_query_boolean */ + +#ifndef GL_EXT_polygon_offset_clamp +#define GL_EXT_polygon_offset_clamp 1 +#define GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B +typedef void (GL_APIENTRYP PFNGLPOLYGONOFFSETCLAMPEXTPROC) (GLfloat factor, GLfloat units, GLfloat clamp); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp); +#endif +#endif /* GL_EXT_polygon_offset_clamp */ + +#ifndef GL_EXT_post_depth_coverage +#define GL_EXT_post_depth_coverage 1 +#endif /* GL_EXT_post_depth_coverage */ + +#ifndef GL_EXT_primitive_bounding_box +#define GL_EXT_primitive_bounding_box 1 +#define GL_PRIMITIVE_BOUNDING_BOX_EXT 0x92BE +typedef void (GL_APIENTRYP PFNGLPRIMITIVEBOUNDINGBOXEXTPROC) (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPrimitiveBoundingBoxEXT (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW); +#endif +#endif /* GL_EXT_primitive_bounding_box */ + +#ifndef GL_EXT_protected_textures +#define GL_EXT_protected_textures 1 +#define GL_CONTEXT_FLAG_PROTECTED_CONTENT_BIT_EXT 0x00000010 +#define GL_TEXTURE_PROTECTED_EXT 0x8BFA +#endif /* GL_EXT_protected_textures */ + +#ifndef GL_EXT_pvrtc_sRGB +#define GL_EXT_pvrtc_sRGB 1 +#define GL_COMPRESSED_SRGB_PVRTC_2BPPV1_EXT 0x8A54 +#define GL_COMPRESSED_SRGB_PVRTC_4BPPV1_EXT 0x8A55 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV1_EXT 0x8A56 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV1_EXT 0x8A57 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_2BPPV2_IMG 0x93F0 +#define GL_COMPRESSED_SRGB_ALPHA_PVRTC_4BPPV2_IMG 0x93F1 +#endif /* GL_EXT_pvrtc_sRGB */ + +#ifndef GL_EXT_raster_multisample +#define GL_EXT_raster_multisample 1 +#define GL_RASTER_MULTISAMPLE_EXT 0x9327 +#define GL_RASTER_SAMPLES_EXT 0x9328 +#define GL_MAX_RASTER_SAMPLES_EXT 0x9329 +#define GL_RASTER_FIXED_SAMPLE_LOCATIONS_EXT 0x932A +#define GL_MULTISAMPLE_RASTERIZATION_ALLOWED_EXT 0x932B +#define GL_EFFECTIVE_RASTER_SAMPLES_EXT 0x932C +typedef void (GL_APIENTRYP PFNGLRASTERSAMPLESEXTPROC) (GLuint samples, GLboolean fixedsamplelocations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRasterSamplesEXT (GLuint samples, GLboolean fixedsamplelocations); +#endif +#endif /* GL_EXT_raster_multisample */ + +#ifndef GL_EXT_read_format_bgra +#define GL_EXT_read_format_bgra 1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT 0x8365 +#define GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT 0x8366 +#endif /* GL_EXT_read_format_bgra */ + +#ifndef GL_EXT_render_snorm +#define GL_EXT_render_snorm 1 +#define GL_R8_SNORM 0x8F94 +#define GL_RG8_SNORM 0x8F95 +#define GL_RGBA8_SNORM 0x8F97 +#define GL_R16_SNORM_EXT 0x8F98 +#define GL_RG16_SNORM_EXT 0x8F99 +#define GL_RGBA16_SNORM_EXT 0x8F9B +#endif /* GL_EXT_render_snorm */ + +#ifndef GL_EXT_robustness +#define GL_EXT_robustness 1 +#define GL_GUILTY_CONTEXT_RESET_EXT 0x8253 +#define GL_INNOCENT_CONTEXT_RESET_EXT 0x8254 +#define GL_UNKNOWN_CONTEXT_RESET_EXT 0x8255 +#define GL_CONTEXT_ROBUST_ACCESS_EXT 0x90F3 +#define GL_RESET_NOTIFICATION_STRATEGY_EXT 0x8256 +#define GL_LOSE_CONTEXT_ON_RESET_EXT 0x8252 +#define GL_NO_RESET_NOTIFICATION_EXT 0x8261 +typedef GLenum (GL_APIENTRYP PFNGLGETGRAPHICSRESETSTATUSEXTPROC) (void); +typedef void (GL_APIENTRYP PFNGLREADNPIXELSEXTPROC) (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMFVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLGETNUNIFORMIVEXTPROC) (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLenum GL_APIENTRY glGetGraphicsResetStatusEXT (void); +GL_APICALL void GL_APIENTRY glReadnPixelsEXT (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data); +GL_APICALL void GL_APIENTRY glGetnUniformfvEXT (GLuint program, GLint location, GLsizei bufSize, GLfloat *params); +GL_APICALL void GL_APIENTRY glGetnUniformivEXT (GLuint program, GLint location, GLsizei bufSize, GLint *params); +#endif +#endif /* GL_EXT_robustness */ + +#ifndef GL_EXT_sRGB +#define GL_EXT_sRGB 1 +#define GL_SRGB_EXT 0x8C40 +#define GL_SRGB_ALPHA_EXT 0x8C42 +#define GL_SRGB8_ALPHA8_EXT 0x8C43 +#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT 0x8210 +#endif /* GL_EXT_sRGB */ + +#ifndef GL_EXT_sRGB_write_control +#define GL_EXT_sRGB_write_control 1 +#define GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 +#endif /* GL_EXT_sRGB_write_control */ + +#ifndef GL_EXT_semaphore +#define GL_EXT_semaphore 1 +#define GL_LAYOUT_GENERAL_EXT 0x958D +#define GL_LAYOUT_COLOR_ATTACHMENT_EXT 0x958E +#define GL_LAYOUT_DEPTH_STENCIL_ATTACHMENT_EXT 0x958F +#define GL_LAYOUT_DEPTH_STENCIL_READ_ONLY_EXT 0x9590 +#define GL_LAYOUT_SHADER_READ_ONLY_EXT 0x9591 +#define GL_LAYOUT_TRANSFER_SRC_EXT 0x9592 +#define GL_LAYOUT_TRANSFER_DST_EXT 0x9593 +#define GL_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_EXT 0x9530 +#define GL_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_EXT 0x9531 +typedef void (GL_APIENTRYP PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLDELETESEMAPHORESEXTPROC) (GLsizei n, const GLuint *semaphores); +typedef GLboolean (GL_APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, const GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, GLuint64 *params); +typedef void (GL_APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +typedef void (GL_APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glDeleteSemaphoresEXT (GLsizei n, const GLuint *semaphores); +GL_APICALL GLboolean GL_APIENTRY glIsSemaphoreEXT (GLuint semaphore); +GL_APICALL void GL_APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLuint64 *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint64 *params); +GL_APICALL void GL_APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *srcLayouts); +GL_APICALL void GL_APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffers, GLuint numTextureBarriers, const GLuint *textures, const GLenum *dstLayouts); +#endif +#endif /* GL_EXT_semaphore */ + +#ifndef GL_EXT_semaphore_fd +#define GL_EXT_semaphore_fd 1 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREFDEXTPROC) (GLuint semaphore, GLenum handleType, GLint fd); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd); +#endif +#endif /* GL_EXT_semaphore_fd */ + +#ifndef GL_EXT_semaphore_win32 +#define GL_EXT_semaphore_win32 1 +#define GL_HANDLE_TYPE_D3D12_FENCE_EXT 0x9594 +#define GL_D3D12_FENCE_VALUE_EXT 0x9595 +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32HANDLEEXTPROC) (GLuint semaphore, GLenum handleType, void *handle); +typedef void (GL_APIENTRYP PFNGLIMPORTSEMAPHOREWIN32NAMEEXTPROC) (GLuint semaphore, GLenum handleType, const void *name); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32HandleEXT (GLuint semaphore, GLenum handleType, void *handle); +GL_APICALL void GL_APIENTRY glImportSemaphoreWin32NameEXT (GLuint semaphore, GLenum handleType, const void *name); +#endif +#endif /* GL_EXT_semaphore_win32 */ + +#ifndef GL_EXT_separate_depth_stencil +#define GL_EXT_separate_depth_stencil 1 +#endif /* GL_EXT_separate_depth_stencil */ + +#ifndef GL_EXT_separate_shader_objects +#define GL_EXT_separate_shader_objects 1 +#define GL_ACTIVE_PROGRAM_EXT 0x8259 +#define GL_VERTEX_SHADER_BIT_EXT 0x00000001 +#define GL_FRAGMENT_SHADER_BIT_EXT 0x00000002 +#define GL_ALL_SHADER_BITS_EXT 0xFFFFFFFF +#define GL_PROGRAM_SEPARABLE_EXT 0x8258 +#define GL_PROGRAM_PIPELINE_BINDING_EXT 0x825A +typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program); +typedef void (GL_APIENTRYP PFNGLBINDPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef GLuint (GL_APIENTRYP PFNGLCREATESHADERPROGRAMVEXTPROC) (GLenum type, GLsizei count, const GLchar **strings); +typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPIPELINESEXTPROC) (GLsizei n, const GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGENPROGRAMPIPELINESEXTPROC) (GLsizei n, GLuint *pipelines); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGEXTPROC) (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMPIPELINEIVEXTPROC) (GLuint pipeline, GLenum pname, GLint *params); +typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FEXTPROC) (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4FVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IEXTPROC) (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4IVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUSEPROGRAMSTAGESEXTPROC) (GLuint pipeline, GLbitfield stages, GLuint program); +typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEEXTPROC) (GLuint pipeline); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIEXTPROC) (GLuint program, GLint location, GLuint v0); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIEXTPROC) (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UIVEXTPROC) (GLuint program, GLint location, GLsizei count, const GLuint *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVEXTPROC) (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program); +GL_APICALL void GL_APIENTRY glBindProgramPipelineEXT (GLuint pipeline); +GL_APICALL GLuint GL_APIENTRY glCreateShaderProgramvEXT (GLenum type, GLsizei count, const GLchar **strings); +GL_APICALL void GL_APIENTRY glDeleteProgramPipelinesEXT (GLsizei n, const GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGenProgramPipelinesEXT (GLsizei n, GLuint *pipelines); +GL_APICALL void GL_APIENTRY glGetProgramPipelineInfoLogEXT (GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoLog); +GL_APICALL void GL_APIENTRY glGetProgramPipelineivEXT (GLuint pipeline, GLenum pname, GLint *params); +GL_APICALL GLboolean GL_APIENTRY glIsProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0); +GL_APICALL void GL_APIENTRY glProgramUniform1fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0); +GL_APICALL void GL_APIENTRY glProgramUniform1ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1); +GL_APICALL void GL_APIENTRY glProgramUniform2fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint v0, GLint v1); +GL_APICALL void GL_APIENTRY glProgramUniform2ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2); +GL_APICALL void GL_APIENTRY glProgramUniform3fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform3iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2); +GL_APICALL void GL_APIENTRY glProgramUniform3ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4fEXT (GLuint program, GLint location, GLfloat v0, GLfloat v1, GLfloat v2, GLfloat v3); +GL_APICALL void GL_APIENTRY glProgramUniform4fvEXT (GLuint program, GLint location, GLsizei count, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniform4iEXT (GLuint program, GLint location, GLint v0, GLint v1, GLint v2, GLint v3); +GL_APICALL void GL_APIENTRY glProgramUniform4ivEXT (GLuint program, GLint location, GLsizei count, const GLint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUseProgramStagesEXT (GLuint pipeline, GLbitfield stages, GLuint program); +GL_APICALL void GL_APIENTRY glValidateProgramPipelineEXT (GLuint pipeline); +GL_APICALL void GL_APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0); +GL_APICALL void GL_APIENTRY glProgramUniform2uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1); +GL_APICALL void GL_APIENTRY glProgramUniform3uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2); +GL_APICALL void GL_APIENTRY glProgramUniform4uiEXT (GLuint program, GLint location, GLuint v0, GLuint v1, GLuint v2, GLuint v3); +GL_APICALL void GL_APIENTRY glProgramUniform1uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform2uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform3uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniform4uivEXT (GLuint program, GLint location, GLsizei count, const GLuint *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix2x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x2fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix3x4fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glProgramUniformMatrix4x3fvEXT (GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_EXT_separate_shader_objects */ + +#ifndef GL_EXT_shader_framebuffer_fetch +#define GL_EXT_shader_framebuffer_fetch 1 +#define GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT 0x8A52 +#endif /* GL_EXT_shader_framebuffer_fetch */ + +#ifndef GL_EXT_shader_framebuffer_fetch_non_coherent +#define GL_EXT_shader_framebuffer_fetch_non_coherent 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIEREXTPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierEXT (void); +#endif +#endif /* GL_EXT_shader_framebuffer_fetch_non_coherent */ + +#ifndef GL_EXT_shader_group_vote +#define GL_EXT_shader_group_vote 1 +#endif /* GL_EXT_shader_group_vote */ + +#ifndef GL_EXT_shader_implicit_conversions +#define GL_EXT_shader_implicit_conversions 1 +#endif /* GL_EXT_shader_implicit_conversions */ + +#ifndef GL_EXT_shader_integer_mix +#define GL_EXT_shader_integer_mix 1 +#endif /* GL_EXT_shader_integer_mix */ + +#ifndef GL_EXT_shader_io_blocks +#define GL_EXT_shader_io_blocks 1 +#endif /* GL_EXT_shader_io_blocks */ + +#ifndef GL_EXT_shader_non_constant_global_initializers +#define GL_EXT_shader_non_constant_global_initializers 1 +#endif /* GL_EXT_shader_non_constant_global_initializers */ + +#ifndef GL_EXT_shader_pixel_local_storage +#define GL_EXT_shader_pixel_local_storage 1 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_FAST_SIZE_EXT 0x8F63 +#define GL_MAX_SHADER_PIXEL_LOCAL_STORAGE_SIZE_EXT 0x8F67 +#define GL_SHADER_PIXEL_LOCAL_STORAGE_EXT 0x8F64 +#endif /* GL_EXT_shader_pixel_local_storage */ + +#ifndef GL_EXT_shader_pixel_local_storage2 +#define GL_EXT_shader_pixel_local_storage2 1 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_FAST_SIZE_EXT 0x9650 +#define GL_MAX_SHADER_COMBINED_LOCAL_STORAGE_SIZE_EXT 0x9651 +#define GL_FRAMEBUFFER_INCOMPLETE_INSUFFICIENT_SHADER_COMBINED_LOCAL_STORAGE_EXT 0x9652 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target, GLsizei size); +typedef GLsizei (GL_APIENTRYP PFNGLGETFRAMEBUFFERPIXELLOCALSTORAGESIZEEXTPROC) (GLuint target); +typedef void (GL_APIENTRYP PFNGLCLEARPIXELLOCALSTORAGEUIEXTPROC) (GLsizei offset, GLsizei n, const GLuint *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferPixelLocalStorageSizeEXT (GLuint target, GLsizei size); +GL_APICALL GLsizei GL_APIENTRY glGetFramebufferPixelLocalStorageSizeEXT (GLuint target); +GL_APICALL void GL_APIENTRY glClearPixelLocalStorageuiEXT (GLsizei offset, GLsizei n, const GLuint *values); +#endif +#endif /* GL_EXT_shader_pixel_local_storage2 */ + +#ifndef GL_EXT_shader_samples_identical +#define GL_EXT_shader_samples_identical 1 +#endif /* GL_EXT_shader_samples_identical */ + +#ifndef GL_EXT_shader_texture_lod +#define GL_EXT_shader_texture_lod 1 +#endif /* GL_EXT_shader_texture_lod */ + +#ifndef GL_EXT_shadow_samplers +#define GL_EXT_shadow_samplers 1 +#define GL_TEXTURE_COMPARE_MODE_EXT 0x884C +#define GL_TEXTURE_COMPARE_FUNC_EXT 0x884D +#define GL_COMPARE_REF_TO_TEXTURE_EXT 0x884E +#define GL_SAMPLER_2D_SHADOW_EXT 0x8B62 +#endif /* GL_EXT_shadow_samplers */ + +#ifndef GL_EXT_sparse_texture +#define GL_EXT_sparse_texture 1 +#define GL_TEXTURE_SPARSE_EXT 0x91A6 +#define GL_VIRTUAL_PAGE_SIZE_INDEX_EXT 0x91A7 +#define GL_NUM_SPARSE_LEVELS_EXT 0x91AA +#define GL_NUM_VIRTUAL_PAGE_SIZES_EXT 0x91A8 +#define GL_VIRTUAL_PAGE_SIZE_X_EXT 0x9195 +#define GL_VIRTUAL_PAGE_SIZE_Y_EXT 0x9196 +#define GL_VIRTUAL_PAGE_SIZE_Z_EXT 0x9197 +#define GL_TEXTURE_2D_ARRAY 0x8C1A +#define GL_TEXTURE_3D 0x806F +#define GL_MAX_SPARSE_TEXTURE_SIZE_EXT 0x9198 +#define GL_MAX_SPARSE_3D_TEXTURE_SIZE_EXT 0x9199 +#define GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_EXT 0x919A +#define GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_EXT 0x91A9 +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTEXTPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexPageCommitmentEXT (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit); +#endif +#endif /* GL_EXT_sparse_texture */ + +#ifndef GL_EXT_sparse_texture2 +#define GL_EXT_sparse_texture2 1 +#endif /* GL_EXT_sparse_texture2 */ + +#ifndef GL_EXT_tessellation_point_size +#define GL_EXT_tessellation_point_size 1 +#endif /* GL_EXT_tessellation_point_size */ + +#ifndef GL_EXT_tessellation_shader +#define GL_EXT_tessellation_shader 1 +#define GL_PATCHES_EXT 0x000E +#define GL_PATCH_VERTICES_EXT 0x8E72 +#define GL_TESS_CONTROL_OUTPUT_VERTICES_EXT 0x8E75 +#define GL_TESS_GEN_MODE_EXT 0x8E76 +#define GL_TESS_GEN_SPACING_EXT 0x8E77 +#define GL_TESS_GEN_VERTEX_ORDER_EXT 0x8E78 +#define GL_TESS_GEN_POINT_MODE_EXT 0x8E79 +#define GL_ISOLINES_EXT 0x8E7A +#define GL_QUADS_EXT 0x0007 +#define GL_FRACTIONAL_ODD_EXT 0x8E7B +#define GL_FRACTIONAL_EVEN_EXT 0x8E7C +#define GL_MAX_PATCH_VERTICES_EXT 0x8E7D +#define GL_MAX_TESS_GEN_LEVEL_EXT 0x8E7E +#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E7F +#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E80 +#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS_EXT 0x8E81 +#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS_EXT 0x8E82 +#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS_EXT 0x8E83 +#define GL_MAX_TESS_PATCH_COMPONENTS_EXT 0x8E84 +#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS_EXT 0x8E85 +#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS_EXT 0x8E86 +#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS_EXT 0x8E89 +#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS_EXT 0x8E8A +#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS_EXT 0x886C +#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS_EXT 0x886D +#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS_EXT 0x8E1E +#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS_EXT 0x8E1F +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS_EXT 0x92CD +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS_EXT 0x92CE +#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS_EXT 0x92D3 +#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS_EXT 0x92D4 +#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS_EXT 0x90CB +#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS_EXT 0x90CC +#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS_EXT 0x90D8 +#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS_EXT 0x90D9 +#define GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 +#define GL_IS_PER_PATCH_EXT 0x92E7 +#define GL_REFERENCED_BY_TESS_CONTROL_SHADER_EXT 0x9307 +#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER_EXT 0x9308 +#define GL_TESS_CONTROL_SHADER_EXT 0x8E88 +#define GL_TESS_EVALUATION_SHADER_EXT 0x8E87 +#define GL_TESS_CONTROL_SHADER_BIT_EXT 0x00000008 +#define GL_TESS_EVALUATION_SHADER_BIT_EXT 0x00000010 +typedef void (GL_APIENTRYP PFNGLPATCHPARAMETERIEXTPROC) (GLenum pname, GLint value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPatchParameteriEXT (GLenum pname, GLint value); +#endif +#endif /* GL_EXT_tessellation_shader */ + +#ifndef GL_EXT_texture_border_clamp +#define GL_EXT_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_EXT 0x1004 +#define GL_CLAMP_TO_BORDER_EXT 0x812D +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, const GLuint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIIVEXTPROC) (GLenum target, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETTEXPARAMETERIUIVEXTPROC) (GLenum target, GLenum pname, GLuint *params); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, const GLint *param); +typedef void (GL_APIENTRYP PFNGLSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, const GLuint *param); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIIVEXTPROC) (GLuint sampler, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVEXTPROC) (GLuint sampler, GLenum pname, GLuint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexParameterIivEXT (GLenum target, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glTexParameterIuivEXT (GLenum target, GLenum pname, const GLuint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIivEXT (GLenum target, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetTexParameterIuivEXT (GLenum target, GLenum pname, GLuint *params); +GL_APICALL void GL_APIENTRY glSamplerParameterIivEXT (GLuint sampler, GLenum pname, const GLint *param); +GL_APICALL void GL_APIENTRY glSamplerParameterIuivEXT (GLuint sampler, GLenum pname, const GLuint *param); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIivEXT (GLuint sampler, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glGetSamplerParameterIuivEXT (GLuint sampler, GLenum pname, GLuint *params); +#endif +#endif /* GL_EXT_texture_border_clamp */ + +#ifndef GL_EXT_texture_buffer +#define GL_EXT_texture_buffer 1 +#define GL_TEXTURE_BUFFER_EXT 0x8C2A +#define GL_TEXTURE_BUFFER_BINDING_EXT 0x8C2A +#define GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B +#define GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C +#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D +#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT_EXT 0x919F +#define GL_SAMPLER_BUFFER_EXT 0x8DC2 +#define GL_INT_SAMPLER_BUFFER_EXT 0x8DD0 +#define GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT 0x8DD8 +#define GL_IMAGE_BUFFER_EXT 0x9051 +#define GL_INT_IMAGE_BUFFER_EXT 0x905C +#define GL_UNSIGNED_INT_IMAGE_BUFFER_EXT 0x9067 +#define GL_TEXTURE_BUFFER_OFFSET_EXT 0x919D +#define GL_TEXTURE_BUFFER_SIZE_EXT 0x919E +typedef void (GL_APIENTRYP PFNGLTEXBUFFEREXTPROC) (GLenum target, GLenum internalformat, GLuint buffer); +typedef void (GL_APIENTRYP PFNGLTEXBUFFERRANGEEXTPROC) (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer); +GL_APICALL void GL_APIENTRY glTexBufferRangeEXT (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size); +#endif +#endif /* GL_EXT_texture_buffer */ + +#ifndef GL_EXT_texture_compression_astc_decode_mode +#define GL_EXT_texture_compression_astc_decode_mode 1 +#define GL_TEXTURE_ASTC_DECODE_PRECISION_EXT 0x8F69 +#endif /* GL_EXT_texture_compression_astc_decode_mode */ + +#ifndef GL_EXT_texture_compression_bptc +#define GL_EXT_texture_compression_bptc 1 +#define GL_COMPRESSED_RGBA_BPTC_UNORM_EXT 0x8E8C +#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT 0x8E8D +#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT 0x8E8E +#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT 0x8E8F +#endif /* GL_EXT_texture_compression_bptc */ + +#ifndef GL_EXT_texture_compression_dxt1 +#define GL_EXT_texture_compression_dxt1 1 +#define GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 +#define GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 +#endif /* GL_EXT_texture_compression_dxt1 */ + +#ifndef GL_EXT_texture_compression_rgtc +#define GL_EXT_texture_compression_rgtc 1 +#define GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB +#define GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC +#define GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD +#define GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE +#endif /* GL_EXT_texture_compression_rgtc */ + +#ifndef GL_EXT_texture_compression_s3tc +#define GL_EXT_texture_compression_s3tc 1 +#define GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 +#define GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 +#endif /* GL_EXT_texture_compression_s3tc */ + +#ifndef GL_EXT_texture_compression_s3tc_srgb +#define GL_EXT_texture_compression_s3tc_srgb 1 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_EXT 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT 0x8C4F +#endif /* GL_EXT_texture_compression_s3tc_srgb */ + +#ifndef GL_EXT_texture_cube_map_array +#define GL_EXT_texture_cube_map_array 1 +#define GL_TEXTURE_CUBE_MAP_ARRAY_EXT 0x9009 +#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_EXT 0x900A +#define GL_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900C +#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_EXT 0x900D +#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900E +#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_EXT 0x900F +#define GL_IMAGE_CUBE_MAP_ARRAY_EXT 0x9054 +#define GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x905F +#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT 0x906A +#endif /* GL_EXT_texture_cube_map_array */ + +#ifndef GL_EXT_texture_filter_anisotropic +#define GL_EXT_texture_filter_anisotropic 1 +#define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE +#define GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF +#endif /* GL_EXT_texture_filter_anisotropic */ + +#ifndef GL_EXT_texture_filter_minmax +#define GL_EXT_texture_filter_minmax 1 +#define GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 +#define GL_WEIGHTED_AVERAGE_EXT 0x9367 +#endif /* GL_EXT_texture_filter_minmax */ + +#ifndef GL_EXT_texture_format_BGRA8888 +#define GL_EXT_texture_format_BGRA8888 1 +#endif /* GL_EXT_texture_format_BGRA8888 */ + +#ifndef GL_EXT_texture_format_sRGB_override +#define GL_EXT_texture_format_sRGB_override 1 +#define GL_TEXTURE_FORMAT_SRGB_OVERRIDE_EXT 0x8FBF +#endif /* GL_EXT_texture_format_sRGB_override */ + +#ifndef GL_EXT_texture_mirror_clamp_to_edge +#define GL_EXT_texture_mirror_clamp_to_edge 1 +#define GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 +#endif /* GL_EXT_texture_mirror_clamp_to_edge */ + +#ifndef GL_EXT_texture_norm16 +#define GL_EXT_texture_norm16 1 +#define GL_R16_EXT 0x822A +#define GL_RG16_EXT 0x822C +#define GL_RGBA16_EXT 0x805B +#define GL_RGB16_EXT 0x8054 +#define GL_RGB16_SNORM_EXT 0x8F9A +#endif /* GL_EXT_texture_norm16 */ + +#ifndef GL_EXT_texture_query_lod +#define GL_EXT_texture_query_lod 1 +#endif /* GL_EXT_texture_query_lod */ + +#ifndef GL_EXT_texture_rg +#define GL_EXT_texture_rg 1 +#define GL_RED_EXT 0x1903 +#define GL_RG_EXT 0x8227 +#define GL_R8_EXT 0x8229 +#define GL_RG8_EXT 0x822B +#endif /* GL_EXT_texture_rg */ + +#ifndef GL_EXT_texture_sRGB_R8 +#define GL_EXT_texture_sRGB_R8 1 +#define GL_SR8_EXT 0x8FBD +#endif /* GL_EXT_texture_sRGB_R8 */ + +#ifndef GL_EXT_texture_sRGB_RG8 +#define GL_EXT_texture_sRGB_RG8 1 +#define GL_SRG8_EXT 0x8FBE +#endif /* GL_EXT_texture_sRGB_RG8 */ + +#ifndef GL_EXT_texture_sRGB_decode +#define GL_EXT_texture_sRGB_decode 1 +#define GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 +#define GL_DECODE_EXT 0x8A49 +#define GL_SKIP_DECODE_EXT 0x8A4A +#endif /* GL_EXT_texture_sRGB_decode */ + +#ifndef GL_EXT_texture_shadow_lod +#define GL_EXT_texture_shadow_lod 1 +#endif /* GL_EXT_texture_shadow_lod */ + +#ifndef GL_EXT_texture_storage +#define GL_EXT_texture_storage 1 +#define GL_TEXTURE_IMMUTABLE_FORMAT_EXT 0x912F +#define GL_ALPHA8_EXT 0x803C +#define GL_LUMINANCE8_EXT 0x8040 +#define GL_LUMINANCE8_ALPHA8_EXT 0x8045 +#define GL_RGBA32F_EXT 0x8814 +#define GL_RGB32F_EXT 0x8815 +#define GL_ALPHA32F_EXT 0x8816 +#define GL_LUMINANCE32F_EXT 0x8818 +#define GL_LUMINANCE_ALPHA32F_EXT 0x8819 +#define GL_ALPHA16F_EXT 0x881C +#define GL_LUMINANCE16F_EXT 0x881E +#define GL_LUMINANCE_ALPHA16F_EXT 0x881F +#define GL_R32F_EXT 0x822E +#define GL_RG32F_EXT 0x8230 +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE1DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGE3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorage1DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTexStorage2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTexStorage3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +GL_APICALL void GL_APIENTRY glTextureStorage1DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width); +GL_APICALL void GL_APIENTRY glTextureStorage2DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glTextureStorage3DEXT (GLuint texture, GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth); +#endif +#endif /* GL_EXT_texture_storage */ + +#ifndef GL_EXT_texture_storage_compression +#define GL_EXT_texture_storage_compression 1 +#define GL_NUM_SURFACE_COMPRESSION_FIXED_RATES_EXT 0x8F6E +#define GL_SURFACE_COMPRESSION_FIXED_RATE_1BPC_EXT 0x96C4 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_2BPC_EXT 0x96C5 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_3BPC_EXT 0x96C6 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_4BPC_EXT 0x96C7 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_5BPC_EXT 0x96C8 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_6BPC_EXT 0x96C9 +#define GL_SURFACE_COMPRESSION_FIXED_RATE_7BPC_EXT 0x96CA +#define GL_SURFACE_COMPRESSION_FIXED_RATE_8BPC_EXT 0x96CB +#define GL_SURFACE_COMPRESSION_FIXED_RATE_9BPC_EXT 0x96CC +#define GL_SURFACE_COMPRESSION_FIXED_RATE_10BPC_EXT 0x96CD +#define GL_SURFACE_COMPRESSION_FIXED_RATE_11BPC_EXT 0x96CE +#define GL_SURFACE_COMPRESSION_FIXED_RATE_12BPC_EXT 0x96CF +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS2DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +typedef void (GL_APIENTRYP PFNGLTEXSTORAGEATTRIBS3DEXTPROC) (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexStorageAttribs2DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, const GLint* attrib_list); +GL_APICALL void GL_APIENTRY glTexStorageAttribs3DEXT (GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, const GLint* attrib_list); +#endif +#endif /* GL_EXT_texture_storage_compression */ + +#ifndef GL_EXT_texture_type_2_10_10_10_REV +#define GL_EXT_texture_type_2_10_10_10_REV 1 +#define GL_UNSIGNED_INT_2_10_10_10_REV_EXT 0x8368 +#endif /* GL_EXT_texture_type_2_10_10_10_REV */ + +#ifndef GL_EXT_texture_view +#define GL_EXT_texture_view 1 +#define GL_TEXTURE_VIEW_MIN_LEVEL_EXT 0x82DB +#define GL_TEXTURE_VIEW_NUM_LEVELS_EXT 0x82DC +#define GL_TEXTURE_VIEW_MIN_LAYER_EXT 0x82DD +#define GL_TEXTURE_VIEW_NUM_LAYERS_EXT 0x82DE +typedef void (GL_APIENTRYP PFNGLTEXTUREVIEWEXTPROC) (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureViewEXT (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers); +#endif +#endif /* GL_EXT_texture_view */ + +#ifndef GL_EXT_unpack_subimage +#define GL_EXT_unpack_subimage 1 +#define GL_UNPACK_ROW_LENGTH_EXT 0x0CF2 +#define GL_UNPACK_SKIP_ROWS_EXT 0x0CF3 +#define GL_UNPACK_SKIP_PIXELS_EXT 0x0CF4 +#endif /* GL_EXT_unpack_subimage */ + +#ifndef GL_EXT_win32_keyed_mutex +#define GL_EXT_win32_keyed_mutex 1 +typedef GLboolean (GL_APIENTRYP PFNGLACQUIREKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key, GLuint timeout); +typedef GLboolean (GL_APIENTRYP PFNGLRELEASEKEYEDMUTEXWIN32EXTPROC) (GLuint memory, GLuint64 key); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLboolean GL_APIENTRY glAcquireKeyedMutexWin32EXT (GLuint memory, GLuint64 key, GLuint timeout); +GL_APICALL GLboolean GL_APIENTRY glReleaseKeyedMutexWin32EXT (GLuint memory, GLuint64 key); +#endif +#endif /* GL_EXT_win32_keyed_mutex */ + +#ifndef GL_EXT_window_rectangles +#define GL_EXT_window_rectangles 1 +#define GL_INCLUSIVE_EXT 0x8F10 +#define GL_EXCLUSIVE_EXT 0x8F11 +#define GL_WINDOW_RECTANGLE_EXT 0x8F12 +#define GL_WINDOW_RECTANGLE_MODE_EXT 0x8F13 +#define GL_MAX_WINDOW_RECTANGLES_EXT 0x8F14 +#define GL_NUM_WINDOW_RECTANGLES_EXT 0x8F15 +typedef void (GL_APIENTRYP PFNGLWINDOWRECTANGLESEXTPROC) (GLenum mode, GLsizei count, const GLint *box); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glWindowRectanglesEXT (GLenum mode, GLsizei count, const GLint *box); +#endif +#endif /* GL_EXT_window_rectangles */ + +#ifndef GL_FJ_shader_binary_GCCSO +#define GL_FJ_shader_binary_GCCSO 1 +#define GL_GCCSO_SHADER_BINARY_FJ 0x9260 +#endif /* GL_FJ_shader_binary_GCCSO */ + +#ifndef GL_IMG_bindless_texture +#define GL_IMG_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLEIMGPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLEIMGPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64IMGPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VIMGPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64IMGPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VIMGPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleIMG (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleIMG (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glUniformHandleui64IMG (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vIMG (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64IMG (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vIMG (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +#endif +#endif /* GL_IMG_bindless_texture */ + +#ifndef GL_IMG_framebuffer_downsample +#define GL_IMG_framebuffer_downsample 1 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_AND_DOWNSAMPLE_IMG 0x913C +#define GL_NUM_DOWNSAMPLE_SCALES_IMG 0x913D +#define GL_DOWNSAMPLE_SCALES_IMG 0x913E +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SCALE_IMG 0x913F +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERDOWNSAMPLEIMGPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTexture2DDownsampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint xscale, GLint yscale); +GL_APICALL void GL_APIENTRY glFramebufferTextureLayerDownsampleIMG (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer, GLint xscale, GLint yscale); +#endif +#endif /* GL_IMG_framebuffer_downsample */ + +#ifndef GL_IMG_multisampled_render_to_texture +#define GL_IMG_multisampled_render_to_texture 1 +#define GL_RENDERBUFFER_SAMPLES_IMG 0x9133 +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG 0x9134 +#define GL_MAX_SAMPLES_IMG 0x9135 +#define GL_TEXTURE_SAMPLES_IMG 0x9136 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEIMGPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DMULTISAMPLEIMGPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleIMG (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glFramebufferTexture2DMultisampleIMG (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples); +#endif +#endif /* GL_IMG_multisampled_render_to_texture */ + +#ifndef GL_IMG_program_binary +#define GL_IMG_program_binary 1 +#define GL_SGX_PROGRAM_BINARY_IMG 0x9130 +#endif /* GL_IMG_program_binary */ + +#ifndef GL_IMG_read_format +#define GL_IMG_read_format 1 +#define GL_BGRA_IMG 0x80E1 +#define GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG 0x8365 +#endif /* GL_IMG_read_format */ + +#ifndef GL_IMG_shader_binary +#define GL_IMG_shader_binary 1 +#define GL_SGX_BINARY_IMG 0x8C0A +#endif /* GL_IMG_shader_binary */ + +#ifndef GL_IMG_texture_compression_pvrtc +#define GL_IMG_texture_compression_pvrtc 1 +#define GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG 0x8C00 +#define GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG 0x8C01 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG 0x8C02 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG 0x8C03 +#endif /* GL_IMG_texture_compression_pvrtc */ + +#ifndef GL_IMG_texture_compression_pvrtc2 +#define GL_IMG_texture_compression_pvrtc2 1 +#define GL_COMPRESSED_RGBA_PVRTC_2BPPV2_IMG 0x9137 +#define GL_COMPRESSED_RGBA_PVRTC_4BPPV2_IMG 0x9138 +#endif /* GL_IMG_texture_compression_pvrtc2 */ + +#ifndef GL_IMG_texture_filter_cubic +#define GL_IMG_texture_filter_cubic 1 +#define GL_CUBIC_IMG 0x9139 +#define GL_CUBIC_MIPMAP_NEAREST_IMG 0x913A +#define GL_CUBIC_MIPMAP_LINEAR_IMG 0x913B +#endif /* GL_IMG_texture_filter_cubic */ + +#ifndef GL_INTEL_blackhole_render +#define GL_INTEL_blackhole_render 1 +#define GL_BLACKHOLE_RENDER_INTEL 0x83FC +#endif /* GL_INTEL_blackhole_render */ + +#ifndef GL_INTEL_conservative_rasterization +#define GL_INTEL_conservative_rasterization 1 +#define GL_CONSERVATIVE_RASTERIZATION_INTEL 0x83FE +#endif /* GL_INTEL_conservative_rasterization */ + +#ifndef GL_INTEL_framebuffer_CMAA +#define GL_INTEL_framebuffer_CMAA 1 +typedef void (GL_APIENTRYP PFNGLAPPLYFRAMEBUFFERATTACHMENTCMAAINTELPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glApplyFramebufferAttachmentCMAAINTEL (void); +#endif +#endif /* GL_INTEL_framebuffer_CMAA */ + +#ifndef GL_INTEL_performance_query +#define GL_INTEL_performance_query 1 +#define GL_PERFQUERY_SINGLE_CONTEXT_INTEL 0x00000000 +#define GL_PERFQUERY_GLOBAL_CONTEXT_INTEL 0x00000001 +#define GL_PERFQUERY_WAIT_INTEL 0x83FB +#define GL_PERFQUERY_FLUSH_INTEL 0x83FA +#define GL_PERFQUERY_DONOT_FLUSH_INTEL 0x83F9 +#define GL_PERFQUERY_COUNTER_EVENT_INTEL 0x94F0 +#define GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL 0x94F1 +#define GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL 0x94F2 +#define GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL 0x94F3 +#define GL_PERFQUERY_COUNTER_RAW_INTEL 0x94F4 +#define GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL 0x94F5 +#define GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL 0x94F8 +#define GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL 0x94F9 +#define GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL 0x94FA +#define GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL 0x94FB +#define GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL 0x94FC +#define GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL 0x94FD +#define GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL 0x94FE +#define GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL 0x94FF +#define GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL 0x9500 +typedef void (GL_APIENTRYP PFNGLBEGINPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLCREATEPERFQUERYINTELPROC) (GLuint queryId, GLuint *queryHandle); +typedef void (GL_APIENTRYP PFNGLDELETEPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLENDPERFQUERYINTELPROC) (GLuint queryHandle); +typedef void (GL_APIENTRYP PFNGLGETFIRSTPERFQUERYIDINTELPROC) (GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETNEXTPERFQUERYIDINTELPROC) (GLuint queryId, GLuint *nextQueryId); +typedef void (GL_APIENTRYP PFNGLGETPERFCOUNTERINFOINTELPROC) (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYDATAINTELPROC) (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYIDBYNAMEINTELPROC) (GLchar *queryName, GLuint *queryId); +typedef void (GL_APIENTRYP PFNGLGETPERFQUERYINFOINTELPROC) (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glCreatePerfQueryINTEL (GLuint queryId, GLuint *queryHandle); +GL_APICALL void GL_APIENTRY glDeletePerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glEndPerfQueryINTEL (GLuint queryHandle); +GL_APICALL void GL_APIENTRY glGetFirstPerfQueryIdINTEL (GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetNextPerfQueryIdINTEL (GLuint queryId, GLuint *nextQueryId); +GL_APICALL void GL_APIENTRY glGetPerfCounterInfoINTEL (GLuint queryId, GLuint counterId, GLuint counterNameLength, GLchar *counterName, GLuint counterDescLength, GLchar *counterDesc, GLuint *counterOffset, GLuint *counterDataSize, GLuint *counterTypeEnum, GLuint *counterDataTypeEnum, GLuint64 *rawCounterMaxValue); +GL_APICALL void GL_APIENTRY glGetPerfQueryDataINTEL (GLuint queryHandle, GLuint flags, GLsizei dataSize, void *data, GLuint *bytesWritten); +GL_APICALL void GL_APIENTRY glGetPerfQueryIdByNameINTEL (GLchar *queryName, GLuint *queryId); +GL_APICALL void GL_APIENTRY glGetPerfQueryInfoINTEL (GLuint queryId, GLuint queryNameLength, GLchar *queryName, GLuint *dataSize, GLuint *noCounters, GLuint *noInstances, GLuint *capsMask); +#endif +#endif /* GL_INTEL_performance_query */ + +#ifndef GL_MESA_bgra +#define GL_MESA_bgra 1 +#define GL_BGR_EXT 0x80E0 +#endif /* GL_MESA_bgra */ + +#ifndef GL_MESA_framebuffer_flip_x +#define GL_MESA_framebuffer_flip_x 1 +#define GL_FRAMEBUFFER_FLIP_X_MESA 0x8BBC +#endif /* GL_MESA_framebuffer_flip_x */ + +#ifndef GL_MESA_framebuffer_flip_y +#define GL_MESA_framebuffer_flip_y 1 +#define GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERPARAMETERIMESAPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVMESAPROC) (GLenum target, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferParameteriMESA (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glGetFramebufferParameterivMESA (GLenum target, GLenum pname, GLint *params); +#endif +#endif /* GL_MESA_framebuffer_flip_y */ + +#ifndef GL_MESA_framebuffer_swap_xy +#define GL_MESA_framebuffer_swap_xy 1 +#define GL_FRAMEBUFFER_SWAP_XY_MESA 0x8BBD +#endif /* GL_MESA_framebuffer_swap_xy */ + +#ifndef GL_MESA_program_binary_formats +#define GL_MESA_program_binary_formats 1 +#define GL_PROGRAM_BINARY_FORMAT_MESA 0x875F +#endif /* GL_MESA_program_binary_formats */ + +#ifndef GL_MESA_shader_integer_functions +#define GL_MESA_shader_integer_functions 1 +#endif /* GL_MESA_shader_integer_functions */ + +#ifndef GL_NVX_blend_equation_advanced_multi_draw_buffers +#define GL_NVX_blend_equation_advanced_multi_draw_buffers 1 +#endif /* GL_NVX_blend_equation_advanced_multi_draw_buffers */ + +#ifndef GL_NV_bindless_texture +#define GL_NV_bindless_texture 1 +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTUREHANDLENVPROC) (GLuint texture); +typedef GLuint64 (GL_APIENTRYP PFNGLGETTEXTURESAMPLERHANDLENVPROC) (GLuint texture, GLuint sampler); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLMAKETEXTUREHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef GLuint64 (GL_APIENTRYP PFNGLGETIMAGEHANDLENVPROC) (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle, GLenum access); +typedef void (GL_APIENTRYP PFNGLMAKEIMAGEHANDLENONRESIDENTNVPROC) (GLuint64 handle); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64NVPROC) (GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLUNIFORMHANDLEUI64VNVPROC) (GLint location, GLsizei count, const GLuint64 *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64NVPROC) (GLuint program, GLint location, GLuint64 value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORMHANDLEUI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +typedef GLboolean (GL_APIENTRYP PFNGLISTEXTUREHANDLERESIDENTNVPROC) (GLuint64 handle); +typedef GLboolean (GL_APIENTRYP PFNGLISIMAGEHANDLERESIDENTNVPROC) (GLuint64 handle); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint64 GL_APIENTRY glGetTextureHandleNV (GLuint texture); +GL_APICALL GLuint64 GL_APIENTRY glGetTextureSamplerHandleNV (GLuint texture, GLuint sampler); +GL_APICALL void GL_APIENTRY glMakeTextureHandleResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glMakeTextureHandleNonResidentNV (GLuint64 handle); +GL_APICALL GLuint64 GL_APIENTRY glGetImageHandleNV (GLuint texture, GLint level, GLboolean layered, GLint layer, GLenum format); +GL_APICALL void GL_APIENTRY glMakeImageHandleResidentNV (GLuint64 handle, GLenum access); +GL_APICALL void GL_APIENTRY glMakeImageHandleNonResidentNV (GLuint64 handle); +GL_APICALL void GL_APIENTRY glUniformHandleui64NV (GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glUniformHandleui64vNV (GLint location, GLsizei count, const GLuint64 *value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64NV (GLuint program, GLint location, GLuint64 value); +GL_APICALL void GL_APIENTRY glProgramUniformHandleui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64 *values); +GL_APICALL GLboolean GL_APIENTRY glIsTextureHandleResidentNV (GLuint64 handle); +GL_APICALL GLboolean GL_APIENTRY glIsImageHandleResidentNV (GLuint64 handle); +#endif +#endif /* GL_NV_bindless_texture */ + +#ifndef GL_NV_blend_equation_advanced +#define GL_NV_blend_equation_advanced 1 +#define GL_BLEND_OVERLAP_NV 0x9281 +#define GL_BLEND_PREMULTIPLIED_SRC_NV 0x9280 +#define GL_BLUE_NV 0x1905 +#define GL_COLORBURN_NV 0x929A +#define GL_COLORDODGE_NV 0x9299 +#define GL_CONJOINT_NV 0x9284 +#define GL_CONTRAST_NV 0x92A1 +#define GL_DARKEN_NV 0x9297 +#define GL_DIFFERENCE_NV 0x929E +#define GL_DISJOINT_NV 0x9283 +#define GL_DST_ATOP_NV 0x928F +#define GL_DST_IN_NV 0x928B +#define GL_DST_NV 0x9287 +#define GL_DST_OUT_NV 0x928D +#define GL_DST_OVER_NV 0x9289 +#define GL_EXCLUSION_NV 0x92A0 +#define GL_GREEN_NV 0x1904 +#define GL_HARDLIGHT_NV 0x929B +#define GL_HARDMIX_NV 0x92A9 +#define GL_HSL_COLOR_NV 0x92AF +#define GL_HSL_HUE_NV 0x92AD +#define GL_HSL_LUMINOSITY_NV 0x92B0 +#define GL_HSL_SATURATION_NV 0x92AE +#define GL_INVERT_OVG_NV 0x92B4 +#define GL_INVERT_RGB_NV 0x92A3 +#define GL_LIGHTEN_NV 0x9298 +#define GL_LINEARBURN_NV 0x92A5 +#define GL_LINEARDODGE_NV 0x92A4 +#define GL_LINEARLIGHT_NV 0x92A7 +#define GL_MINUS_CLAMPED_NV 0x92B3 +#define GL_MINUS_NV 0x929F +#define GL_MULTIPLY_NV 0x9294 +#define GL_OVERLAY_NV 0x9296 +#define GL_PINLIGHT_NV 0x92A8 +#define GL_PLUS_CLAMPED_ALPHA_NV 0x92B2 +#define GL_PLUS_CLAMPED_NV 0x92B1 +#define GL_PLUS_DARKER_NV 0x9292 +#define GL_PLUS_NV 0x9291 +#define GL_RED_NV 0x1903 +#define GL_SCREEN_NV 0x9295 +#define GL_SOFTLIGHT_NV 0x929C +#define GL_SRC_ATOP_NV 0x928E +#define GL_SRC_IN_NV 0x928A +#define GL_SRC_NV 0x9286 +#define GL_SRC_OUT_NV 0x928C +#define GL_SRC_OVER_NV 0x9288 +#define GL_UNCORRELATED_NV 0x9282 +#define GL_VIVIDLIGHT_NV 0x92A6 +#define GL_XOR_NV 0x1506 +typedef void (GL_APIENTRYP PFNGLBLENDPARAMETERINVPROC) (GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLBLENDBARRIERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlendParameteriNV (GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glBlendBarrierNV (void); +#endif +#endif /* GL_NV_blend_equation_advanced */ + +#ifndef GL_NV_blend_equation_advanced_coherent +#define GL_NV_blend_equation_advanced_coherent 1 +#define GL_BLEND_ADVANCED_COHERENT_NV 0x9285 +#endif /* GL_NV_blend_equation_advanced_coherent */ + +#ifndef GL_NV_blend_minmax_factor +#define GL_NV_blend_minmax_factor 1 +#define GL_FACTOR_MIN_AMD 0x901C +#define GL_FACTOR_MAX_AMD 0x901D +#endif /* GL_NV_blend_minmax_factor */ + +#ifndef GL_NV_clip_space_w_scaling +#define GL_NV_clip_space_w_scaling 1 +#define GL_VIEWPORT_POSITION_W_SCALE_NV 0x937C +#define GL_VIEWPORT_POSITION_W_SCALE_X_COEFF_NV 0x937D +#define GL_VIEWPORT_POSITION_W_SCALE_Y_COEFF_NV 0x937E +typedef void (GL_APIENTRYP PFNGLVIEWPORTPOSITIONWSCALENVPROC) (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportPositionWScaleNV (GLuint index, GLfloat xcoeff, GLfloat ycoeff); +#endif +#endif /* GL_NV_clip_space_w_scaling */ + +#ifndef GL_NV_compute_shader_derivatives +#define GL_NV_compute_shader_derivatives 1 +#endif /* GL_NV_compute_shader_derivatives */ + +#ifndef GL_NV_conditional_render +#define GL_NV_conditional_render 1 +#define GL_QUERY_WAIT_NV 0x8E13 +#define GL_QUERY_NO_WAIT_NV 0x8E14 +#define GL_QUERY_BY_REGION_WAIT_NV 0x8E15 +#define GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 +typedef void (GL_APIENTRYP PFNGLBEGINCONDITIONALRENDERNVPROC) (GLuint id, GLenum mode); +typedef void (GL_APIENTRYP PFNGLENDCONDITIONALRENDERNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBeginConditionalRenderNV (GLuint id, GLenum mode); +GL_APICALL void GL_APIENTRY glEndConditionalRenderNV (void); +#endif +#endif /* GL_NV_conditional_render */ + +#ifndef GL_NV_conservative_raster +#define GL_NV_conservative_raster 1 +#define GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 +#define GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 +#define GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 +#define GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 +typedef void (GL_APIENTRYP PFNGLSUBPIXELPRECISIONBIASNVPROC) (GLuint xbits, GLuint ybits); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits); +#endif +#endif /* GL_NV_conservative_raster */ + +#ifndef GL_NV_conservative_raster_pre_snap +#define GL_NV_conservative_raster_pre_snap 1 +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_NV 0x9550 +#endif /* GL_NV_conservative_raster_pre_snap */ + +#ifndef GL_NV_conservative_raster_pre_snap_triangles +#define GL_NV_conservative_raster_pre_snap_triangles 1 +#define GL_CONSERVATIVE_RASTER_MODE_NV 0x954D +#define GL_CONSERVATIVE_RASTER_MODE_POST_SNAP_NV 0x954E +#define GL_CONSERVATIVE_RASTER_MODE_PRE_SNAP_TRIANGLES_NV 0x954F +typedef void (GL_APIENTRYP PFNGLCONSERVATIVERASTERPARAMETERINVPROC) (GLenum pname, GLint param); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glConservativeRasterParameteriNV (GLenum pname, GLint param); +#endif +#endif /* GL_NV_conservative_raster_pre_snap_triangles */ + +#ifndef GL_NV_copy_buffer +#define GL_NV_copy_buffer 1 +#define GL_COPY_READ_BUFFER_NV 0x8F36 +#define GL_COPY_WRITE_BUFFER_NV 0x8F37 +typedef void (GL_APIENTRYP PFNGLCOPYBUFFERSUBDATANVPROC) (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCopyBufferSubDataNV (GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); +#endif +#endif /* GL_NV_copy_buffer */ + +#ifndef GL_NV_coverage_sample +#define GL_NV_coverage_sample 1 +#define GL_COVERAGE_COMPONENT_NV 0x8ED0 +#define GL_COVERAGE_COMPONENT4_NV 0x8ED1 +#define GL_COVERAGE_ATTACHMENT_NV 0x8ED2 +#define GL_COVERAGE_BUFFERS_NV 0x8ED3 +#define GL_COVERAGE_SAMPLES_NV 0x8ED4 +#define GL_COVERAGE_ALL_FRAGMENTS_NV 0x8ED5 +#define GL_COVERAGE_EDGE_FRAGMENTS_NV 0x8ED6 +#define GL_COVERAGE_AUTOMATIC_NV 0x8ED7 +#define GL_COVERAGE_BUFFER_BIT_NV 0x00008000 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMASKNVPROC) (GLboolean mask); +typedef void (GL_APIENTRYP PFNGLCOVERAGEOPERATIONNVPROC) (GLenum operation); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageMaskNV (GLboolean mask); +GL_APICALL void GL_APIENTRY glCoverageOperationNV (GLenum operation); +#endif +#endif /* GL_NV_coverage_sample */ + +#ifndef GL_NV_depth_nonlinear +#define GL_NV_depth_nonlinear 1 +#define GL_DEPTH_COMPONENT16_NONLINEAR_NV 0x8E2C +#endif /* GL_NV_depth_nonlinear */ + +#ifndef GL_NV_draw_buffers +#define GL_NV_draw_buffers 1 +#define GL_MAX_DRAW_BUFFERS_NV 0x8824 +#define GL_DRAW_BUFFER0_NV 0x8825 +#define GL_DRAW_BUFFER1_NV 0x8826 +#define GL_DRAW_BUFFER2_NV 0x8827 +#define GL_DRAW_BUFFER3_NV 0x8828 +#define GL_DRAW_BUFFER4_NV 0x8829 +#define GL_DRAW_BUFFER5_NV 0x882A +#define GL_DRAW_BUFFER6_NV 0x882B +#define GL_DRAW_BUFFER7_NV 0x882C +#define GL_DRAW_BUFFER8_NV 0x882D +#define GL_DRAW_BUFFER9_NV 0x882E +#define GL_DRAW_BUFFER10_NV 0x882F +#define GL_DRAW_BUFFER11_NV 0x8830 +#define GL_DRAW_BUFFER12_NV 0x8831 +#define GL_DRAW_BUFFER13_NV 0x8832 +#define GL_DRAW_BUFFER14_NV 0x8833 +#define GL_DRAW_BUFFER15_NV 0x8834 +#define GL_COLOR_ATTACHMENT0_NV 0x8CE0 +#define GL_COLOR_ATTACHMENT1_NV 0x8CE1 +#define GL_COLOR_ATTACHMENT2_NV 0x8CE2 +#define GL_COLOR_ATTACHMENT3_NV 0x8CE3 +#define GL_COLOR_ATTACHMENT4_NV 0x8CE4 +#define GL_COLOR_ATTACHMENT5_NV 0x8CE5 +#define GL_COLOR_ATTACHMENT6_NV 0x8CE6 +#define GL_COLOR_ATTACHMENT7_NV 0x8CE7 +#define GL_COLOR_ATTACHMENT8_NV 0x8CE8 +#define GL_COLOR_ATTACHMENT9_NV 0x8CE9 +#define GL_COLOR_ATTACHMENT10_NV 0x8CEA +#define GL_COLOR_ATTACHMENT11_NV 0x8CEB +#define GL_COLOR_ATTACHMENT12_NV 0x8CEC +#define GL_COLOR_ATTACHMENT13_NV 0x8CED +#define GL_COLOR_ATTACHMENT14_NV 0x8CEE +#define GL_COLOR_ATTACHMENT15_NV 0x8CEF +typedef void (GL_APIENTRYP PFNGLDRAWBUFFERSNVPROC) (GLsizei n, const GLenum *bufs); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawBuffersNV (GLsizei n, const GLenum *bufs); +#endif +#endif /* GL_NV_draw_buffers */ + +#ifndef GL_NV_draw_instanced +#define GL_NV_draw_instanced 1 +typedef void (GL_APIENTRYP PFNGLDRAWARRAYSINSTANCEDNVPROC) (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +typedef void (GL_APIENTRYP PFNGLDRAWELEMENTSINSTANCEDNVPROC) (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawArraysInstancedNV (GLenum mode, GLint first, GLsizei count, GLsizei primcount); +GL_APICALL void GL_APIENTRY glDrawElementsInstancedNV (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount); +#endif +#endif /* GL_NV_draw_instanced */ + +#ifndef GL_NV_draw_vulkan_image +#define GL_NV_draw_vulkan_image 1 +typedef void (GL_APIENTRY *GLVULKANPROCNV)(void); +typedef void (GL_APIENTRYP PFNGLDRAWVKIMAGENVPROC) (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +typedef GLVULKANPROCNV (GL_APIENTRYP PFNGLGETVKPROCADDRNVPROC) (const GLchar *name); +typedef void (GL_APIENTRYP PFNGLWAITVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKSEMAPHORENVPROC) (GLuint64 vkSemaphore); +typedef void (GL_APIENTRYP PFNGLSIGNALVKFENCENVPROC) (GLuint64 vkFence); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawVkImageNV (GLuint64 vkImage, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1); +GL_APICALL GLVULKANPROCNV GL_APIENTRY glGetVkProcAddrNV (const GLchar *name); +GL_APICALL void GL_APIENTRY glWaitVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkSemaphoreNV (GLuint64 vkSemaphore); +GL_APICALL void GL_APIENTRY glSignalVkFenceNV (GLuint64 vkFence); +#endif +#endif /* GL_NV_draw_vulkan_image */ + +#ifndef GL_NV_explicit_attrib_location +#define GL_NV_explicit_attrib_location 1 +#endif /* GL_NV_explicit_attrib_location */ + +#ifndef GL_NV_fbo_color_attachments +#define GL_NV_fbo_color_attachments 1 +#define GL_MAX_COLOR_ATTACHMENTS_NV 0x8CDF +#endif /* GL_NV_fbo_color_attachments */ + +#ifndef GL_NV_fence +#define GL_NV_fence 1 +#define GL_ALL_COMPLETED_NV 0x84F2 +#define GL_FENCE_STATUS_NV 0x84F3 +#define GL_FENCE_CONDITION_NV 0x84F4 +typedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences); +typedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences); +typedef GLboolean (GL_APIENTRYP PFNGLISFENCENVPROC) (GLuint fence); +typedef GLboolean (GL_APIENTRYP PFNGLTESTFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLGETFENCEIVNVPROC) (GLuint fence, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLFINISHFENCENVPROC) (GLuint fence); +typedef void (GL_APIENTRYP PFNGLSETFENCENVPROC) (GLuint fence, GLenum condition); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences); +GL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei n, GLuint *fences); +GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence); +GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence); +GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition); +#endif +#endif /* GL_NV_fence */ + +#ifndef GL_NV_fill_rectangle +#define GL_NV_fill_rectangle 1 +#define GL_FILL_RECTANGLE_NV 0x933C +#endif /* GL_NV_fill_rectangle */ + +#ifndef GL_NV_fragment_coverage_to_color +#define GL_NV_fragment_coverage_to_color 1 +#define GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD +#define GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE +typedef void (GL_APIENTRYP PFNGLFRAGMENTCOVERAGECOLORNVPROC) (GLuint color); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFragmentCoverageColorNV (GLuint color); +#endif +#endif /* GL_NV_fragment_coverage_to_color */ + +#ifndef GL_NV_fragment_shader_barycentric +#define GL_NV_fragment_shader_barycentric 1 +#endif /* GL_NV_fragment_shader_barycentric */ + +#ifndef GL_NV_fragment_shader_interlock +#define GL_NV_fragment_shader_interlock 1 +#endif /* GL_NV_fragment_shader_interlock */ + +#ifndef GL_NV_framebuffer_blit +#define GL_NV_framebuffer_blit 1 +#define GL_READ_FRAMEBUFFER_NV 0x8CA8 +#define GL_DRAW_FRAMEBUFFER_NV 0x8CA9 +#define GL_DRAW_FRAMEBUFFER_BINDING_NV 0x8CA6 +#define GL_READ_FRAMEBUFFER_BINDING_NV 0x8CAA +typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERNVPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBlitFramebufferNV (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +#endif +#endif /* GL_NV_framebuffer_blit */ + +#ifndef GL_NV_framebuffer_mixed_samples +#define GL_NV_framebuffer_mixed_samples 1 +#define GL_COVERAGE_MODULATION_TABLE_NV 0x9331 +#define GL_COLOR_SAMPLES_NV 0x8E20 +#define GL_DEPTH_SAMPLES_NV 0x932D +#define GL_STENCIL_SAMPLES_NV 0x932E +#define GL_MIXED_DEPTH_SAMPLES_SUPPORTED_NV 0x932F +#define GL_MIXED_STENCIL_SAMPLES_SUPPORTED_NV 0x9330 +#define GL_COVERAGE_MODULATION_NV 0x9332 +#define GL_COVERAGE_MODULATION_TABLE_SIZE_NV 0x9333 +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONTABLENVPROC) (GLsizei n, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLGETCOVERAGEMODULATIONTABLENVPROC) (GLsizei bufSize, GLfloat *v); +typedef void (GL_APIENTRYP PFNGLCOVERAGEMODULATIONNVPROC) (GLenum components); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCoverageModulationTableNV (GLsizei n, const GLfloat *v); +GL_APICALL void GL_APIENTRY glGetCoverageModulationTableNV (GLsizei bufSize, GLfloat *v); +GL_APICALL void GL_APIENTRY glCoverageModulationNV (GLenum components); +#endif +#endif /* GL_NV_framebuffer_mixed_samples */ + +#ifndef GL_NV_framebuffer_multisample +#define GL_NV_framebuffer_multisample 1 +#define GL_RENDERBUFFER_SAMPLES_NV 0x8CAB +#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV 0x8D56 +#define GL_MAX_SAMPLES_NV 0x8D57 +typedef void (GL_APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLENVPROC) (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glRenderbufferStorageMultisampleNV (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); +#endif +#endif /* GL_NV_framebuffer_multisample */ + +#ifndef GL_NV_generate_mipmap_sRGB +#define GL_NV_generate_mipmap_sRGB 1 +#endif /* GL_NV_generate_mipmap_sRGB */ + +#ifndef GL_NV_geometry_shader_passthrough +#define GL_NV_geometry_shader_passthrough 1 +#endif /* GL_NV_geometry_shader_passthrough */ + +#ifndef GL_NV_gpu_shader5 +#define GL_NV_gpu_shader5 1 +typedef khronos_int64_t GLint64EXT; +typedef khronos_uint64_t GLuint64EXT; +#define GL_INT64_NV 0x140E +#define GL_UNSIGNED_INT64_NV 0x140F +#define GL_INT8_NV 0x8FE0 +#define GL_INT8_VEC2_NV 0x8FE1 +#define GL_INT8_VEC3_NV 0x8FE2 +#define GL_INT8_VEC4_NV 0x8FE3 +#define GL_INT16_NV 0x8FE4 +#define GL_INT16_VEC2_NV 0x8FE5 +#define GL_INT16_VEC3_NV 0x8FE6 +#define GL_INT16_VEC4_NV 0x8FE7 +#define GL_INT64_VEC2_NV 0x8FE9 +#define GL_INT64_VEC3_NV 0x8FEA +#define GL_INT64_VEC4_NV 0x8FEB +#define GL_UNSIGNED_INT8_NV 0x8FEC +#define GL_UNSIGNED_INT8_VEC2_NV 0x8FED +#define GL_UNSIGNED_INT8_VEC3_NV 0x8FEE +#define GL_UNSIGNED_INT8_VEC4_NV 0x8FEF +#define GL_UNSIGNED_INT16_NV 0x8FF0 +#define GL_UNSIGNED_INT16_VEC2_NV 0x8FF1 +#define GL_UNSIGNED_INT16_VEC3_NV 0x8FF2 +#define GL_UNSIGNED_INT16_VEC4_NV 0x8FF3 +#define GL_UNSIGNED_INT64_VEC2_NV 0x8FF5 +#define GL_UNSIGNED_INT64_VEC3_NV 0x8FF6 +#define GL_UNSIGNED_INT64_VEC4_NV 0x8FF7 +#define GL_FLOAT16_NV 0x8FF8 +#define GL_FLOAT16_VEC2_NV 0x8FF9 +#define GL_FLOAT16_VEC3_NV 0x8FFA +#define GL_FLOAT16_VEC4_NV 0x8FFB +#define GL_PATCHES 0x000E +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64NVPROC) (GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64NVPROC) (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4I64VNVPROC) (GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64NVPROC) (GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64NVPROC) (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLUNIFORM1UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM2UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM3UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLUNIFORM4UI64VNVPROC) (GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLGETUNIFORMI64VNVPROC) (GLuint program, GLint location, GLint64EXT *params); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64NVPROC) (GLuint program, GLint location, GLint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64NVPROC) (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4I64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64NVPROC) (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM2UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM3UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM4UI64VNVPROC) (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniform1i64NV (GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2i64NV (GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4i64NV (GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4i64vNV (GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform1ui64NV (GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glUniform2ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glUniform3ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glUniform4ui64NV (GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glUniform1ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform2ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform3ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glUniform4ui64vNV (GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glGetUniformi64vNV (GLuint program, GLint location, GLint64EXT *params); +GL_APICALL void GL_APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4i64NV (GLuint program, GLint location, GLint64EXT x, GLint64EXT y, GLint64EXT z, GLint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4i64vNV (GLuint program, GLint location, GLsizei count, const GLint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64NV (GLuint program, GLint location, GLuint64EXT x); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64NV (GLuint program, GLint location, GLuint64EXT x, GLuint64EXT y, GLuint64EXT z, GLuint64EXT w); +GL_APICALL void GL_APIENTRY glProgramUniform1ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform2ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform3ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +GL_APICALL void GL_APIENTRY glProgramUniform4ui64vNV (GLuint program, GLint location, GLsizei count, const GLuint64EXT *value); +#endif +#endif /* GL_NV_gpu_shader5 */ + +#ifndef GL_NV_image_formats +#define GL_NV_image_formats 1 +#endif /* GL_NV_image_formats */ + +#ifndef GL_NV_instanced_arrays +#define GL_NV_instanced_arrays 1 +#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV 0x88FE +typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBDIVISORNVPROC) (GLuint index, GLuint divisor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glVertexAttribDivisorNV (GLuint index, GLuint divisor); +#endif +#endif /* GL_NV_instanced_arrays */ + +#ifndef GL_NV_internalformat_sample_query +#define GL_NV_internalformat_sample_query 1 +#define GL_TEXTURE_2D_MULTISAMPLE 0x9100 +#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY 0x9102 +#define GL_MULTISAMPLES_NV 0x9371 +#define GL_SUPERSAMPLE_SCALE_X_NV 0x9372 +#define GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 +#define GL_CONFORMANT_NV 0x9374 +typedef void (GL_APIENTRYP PFNGLGETINTERNALFORMATSAMPLEIVNVPROC) (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei count, GLint *params); +#endif +#endif /* GL_NV_internalformat_sample_query */ + +#ifndef GL_NV_memory_attachment +#define GL_NV_memory_attachment 1 +#define GL_ATTACHED_MEMORY_OBJECT_NV 0x95A4 +#define GL_ATTACHED_MEMORY_OFFSET_NV 0x95A5 +#define GL_MEMORY_ATTACHABLE_ALIGNMENT_NV 0x95A6 +#define GL_MEMORY_ATTACHABLE_SIZE_NV 0x95A7 +#define GL_MEMORY_ATTACHABLE_NV 0x95A8 +#define GL_DETACHED_MEMORY_INCARNATION_NV 0x95A9 +#define GL_DETACHED_TEXTURES_NV 0x95AA +#define GL_DETACHED_BUFFERS_NV 0x95AB +#define GL_MAX_DETACHED_TEXTURES_NV 0x95AC +#define GL_MAX_DETACHED_BUFFERS_NV 0x95AD +typedef void (GL_APIENTRYP PFNGLGETMEMORYOBJECTDETACHEDRESOURCESUIVNVPROC) (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +typedef void (GL_APIENTRYP PFNGLRESETMEMORYOBJECTPARAMETERNVPROC) (GLuint memory, GLenum pname); +typedef void (GL_APIENTRYP PFNGLTEXATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLBUFFERATTACHMEMORYNVPROC) (GLenum target, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLTEXTUREATTACHMEMORYNVPROC) (GLuint texture, GLuint memory, GLuint64 offset); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERATTACHMEMORYNVPROC) (GLuint buffer, GLuint memory, GLuint64 offset); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetMemoryObjectDetachedResourcesuivNV (GLuint memory, GLenum pname, GLint first, GLsizei count, GLuint *params); +GL_APICALL void GL_APIENTRY glResetMemoryObjectParameterNV (GLuint memory, GLenum pname); +GL_APICALL void GL_APIENTRY glTexAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glBufferAttachMemoryNV (GLenum target, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glTextureAttachMemoryNV (GLuint texture, GLuint memory, GLuint64 offset); +GL_APICALL void GL_APIENTRY glNamedBufferAttachMemoryNV (GLuint buffer, GLuint memory, GLuint64 offset); +#endif +#endif /* GL_NV_memory_attachment */ + +#ifndef GL_NV_memory_object_sparse +#define GL_NV_memory_object_sparse 1 +typedef void (GL_APIENTRYP PFNGLBUFFERPAGECOMMITMENTMEMNVPROC) (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXPAGECOMMITMENTMEMNVPROC) (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLNAMEDBUFFERPAGECOMMITMENTMEMNVPROC) (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +typedef void (GL_APIENTRYP PFNGLTEXTUREPAGECOMMITMENTMEMNVPROC) (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBufferPageCommitmentMemNV (GLenum target, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexPageCommitmentMemNV (GLenum target, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +GL_APICALL void GL_APIENTRY glNamedBufferPageCommitmentMemNV (GLuint buffer, GLintptr offset, GLsizeiptr size, GLuint memory, GLuint64 memOffset, GLboolean commit); +GL_APICALL void GL_APIENTRY glTexturePageCommitmentMemNV (GLuint texture, GLint layer, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset, GLboolean commit); +#endif +#endif /* GL_NV_memory_object_sparse */ + +#ifndef GL_NV_mesh_shader +#define GL_NV_mesh_shader 1 +#define GL_MESH_SHADER_NV 0x9559 +#define GL_TASK_SHADER_NV 0x955A +#define GL_MAX_MESH_UNIFORM_BLOCKS_NV 0x8E60 +#define GL_MAX_MESH_TEXTURE_IMAGE_UNITS_NV 0x8E61 +#define GL_MAX_MESH_IMAGE_UNIFORMS_NV 0x8E62 +#define GL_MAX_MESH_UNIFORM_COMPONENTS_NV 0x8E63 +#define GL_MAX_MESH_ATOMIC_COUNTER_BUFFERS_NV 0x8E64 +#define GL_MAX_MESH_ATOMIC_COUNTERS_NV 0x8E65 +#define GL_MAX_MESH_SHADER_STORAGE_BLOCKS_NV 0x8E66 +#define GL_MAX_COMBINED_MESH_UNIFORM_COMPONENTS_NV 0x8E67 +#define GL_MAX_TASK_UNIFORM_BLOCKS_NV 0x8E68 +#define GL_MAX_TASK_TEXTURE_IMAGE_UNITS_NV 0x8E69 +#define GL_MAX_TASK_IMAGE_UNIFORMS_NV 0x8E6A +#define GL_MAX_TASK_UNIFORM_COMPONENTS_NV 0x8E6B +#define GL_MAX_TASK_ATOMIC_COUNTER_BUFFERS_NV 0x8E6C +#define GL_MAX_TASK_ATOMIC_COUNTERS_NV 0x8E6D +#define GL_MAX_TASK_SHADER_STORAGE_BLOCKS_NV 0x8E6E +#define GL_MAX_COMBINED_TASK_UNIFORM_COMPONENTS_NV 0x8E6F +#define GL_MAX_MESH_WORK_GROUP_INVOCATIONS_NV 0x95A2 +#define GL_MAX_TASK_WORK_GROUP_INVOCATIONS_NV 0x95A3 +#define GL_MAX_MESH_TOTAL_MEMORY_SIZE_NV 0x9536 +#define GL_MAX_TASK_TOTAL_MEMORY_SIZE_NV 0x9537 +#define GL_MAX_MESH_OUTPUT_VERTICES_NV 0x9538 +#define GL_MAX_MESH_OUTPUT_PRIMITIVES_NV 0x9539 +#define GL_MAX_TASK_OUTPUT_COUNT_NV 0x953A +#define GL_MAX_DRAW_MESH_TASKS_COUNT_NV 0x953D +#define GL_MAX_MESH_VIEWS_NV 0x9557 +#define GL_MESH_OUTPUT_PER_VERTEX_GRANULARITY_NV 0x92DF +#define GL_MESH_OUTPUT_PER_PRIMITIVE_GRANULARITY_NV 0x9543 +#define GL_MAX_MESH_WORK_GROUP_SIZE_NV 0x953B +#define GL_MAX_TASK_WORK_GROUP_SIZE_NV 0x953C +#define GL_MESH_WORK_GROUP_SIZE_NV 0x953E +#define GL_TASK_WORK_GROUP_SIZE_NV 0x953F +#define GL_MESH_VERTICES_OUT_NV 0x9579 +#define GL_MESH_PRIMITIVES_OUT_NV 0x957A +#define GL_MESH_OUTPUT_TYPE_NV 0x957B +#define GL_UNIFORM_BLOCK_REFERENCED_BY_MESH_SHADER_NV 0x959C +#define GL_UNIFORM_BLOCK_REFERENCED_BY_TASK_SHADER_NV 0x959D +#define GL_REFERENCED_BY_MESH_SHADER_NV 0x95A0 +#define GL_REFERENCED_BY_TASK_SHADER_NV 0x95A1 +#define GL_MESH_SHADER_BIT_NV 0x00000040 +#define GL_TASK_SHADER_BIT_NV 0x00000080 +#define GL_MESH_SUBROUTINE_NV 0x957C +#define GL_TASK_SUBROUTINE_NV 0x957D +#define GL_MESH_SUBROUTINE_UNIFORM_NV 0x957E +#define GL_TASK_SUBROUTINE_UNIFORM_NV 0x957F +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_MESH_SHADER_NV 0x959E +#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TASK_SHADER_NV 0x959F +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSNVPROC) (GLuint first, GLuint count); +typedef void (GL_APIENTRYP PFNGLDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTNVPROC) (GLintptr indirect, GLsizei drawcount, GLsizei stride); +typedef void (GL_APIENTRYP PFNGLMULTIDRAWMESHTASKSINDIRECTCOUNTNVPROC) (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glDrawMeshTasksNV (GLuint first, GLuint count); +GL_APICALL void GL_APIENTRY glDrawMeshTasksIndirectNV (GLintptr indirect); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectNV (GLintptr indirect, GLsizei drawcount, GLsizei stride); +GL_APICALL void GL_APIENTRY glMultiDrawMeshTasksIndirectCountNV (GLintptr indirect, GLintptr drawcount, GLsizei maxdrawcount, GLsizei stride); +#endif +#endif /* GL_NV_mesh_shader */ + +#ifndef GL_NV_non_square_matrices +#define GL_NV_non_square_matrices 1 +#define GL_FLOAT_MAT2x3_NV 0x8B65 +#define GL_FLOAT_MAT2x4_NV 0x8B66 +#define GL_FLOAT_MAT3x2_NV 0x8B67 +#define GL_FLOAT_MAT3x4_NV 0x8B68 +#define GL_FLOAT_MAT4x2_NV 0x8B69 +#define GL_FLOAT_MAT4x3_NV 0x8B6A +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX2X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X2FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX3X4FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLUNIFORMMATRIX4X3FVNVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glUniformMatrix2x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix2x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x2fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix3x4fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +GL_APICALL void GL_APIENTRY glUniformMatrix4x3fvNV (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value); +#endif +#endif /* GL_NV_non_square_matrices */ + +#ifndef GL_NV_path_rendering +#define GL_NV_path_rendering 1 +typedef double GLdouble; +#define GL_PATH_FORMAT_SVG_NV 0x9070 +#define GL_PATH_FORMAT_PS_NV 0x9071 +#define GL_STANDARD_FONT_NAME_NV 0x9072 +#define GL_SYSTEM_FONT_NAME_NV 0x9073 +#define GL_FILE_NAME_NV 0x9074 +#define GL_PATH_STROKE_WIDTH_NV 0x9075 +#define GL_PATH_END_CAPS_NV 0x9076 +#define GL_PATH_INITIAL_END_CAP_NV 0x9077 +#define GL_PATH_TERMINAL_END_CAP_NV 0x9078 +#define GL_PATH_JOIN_STYLE_NV 0x9079 +#define GL_PATH_MITER_LIMIT_NV 0x907A +#define GL_PATH_DASH_CAPS_NV 0x907B +#define GL_PATH_INITIAL_DASH_CAP_NV 0x907C +#define GL_PATH_TERMINAL_DASH_CAP_NV 0x907D +#define GL_PATH_DASH_OFFSET_NV 0x907E +#define GL_PATH_CLIENT_LENGTH_NV 0x907F +#define GL_PATH_FILL_MODE_NV 0x9080 +#define GL_PATH_FILL_MASK_NV 0x9081 +#define GL_PATH_FILL_COVER_MODE_NV 0x9082 +#define GL_PATH_STROKE_COVER_MODE_NV 0x9083 +#define GL_PATH_STROKE_MASK_NV 0x9084 +#define GL_COUNT_UP_NV 0x9088 +#define GL_COUNT_DOWN_NV 0x9089 +#define GL_PATH_OBJECT_BOUNDING_BOX_NV 0x908A +#define GL_CONVEX_HULL_NV 0x908B +#define GL_BOUNDING_BOX_NV 0x908D +#define GL_TRANSLATE_X_NV 0x908E +#define GL_TRANSLATE_Y_NV 0x908F +#define GL_TRANSLATE_2D_NV 0x9090 +#define GL_TRANSLATE_3D_NV 0x9091 +#define GL_AFFINE_2D_NV 0x9092 +#define GL_AFFINE_3D_NV 0x9094 +#define GL_TRANSPOSE_AFFINE_2D_NV 0x9096 +#define GL_TRANSPOSE_AFFINE_3D_NV 0x9098 +#define GL_UTF8_NV 0x909A +#define GL_UTF16_NV 0x909B +#define GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV 0x909C +#define GL_PATH_COMMAND_COUNT_NV 0x909D +#define GL_PATH_COORD_COUNT_NV 0x909E +#define GL_PATH_DASH_ARRAY_COUNT_NV 0x909F +#define GL_PATH_COMPUTED_LENGTH_NV 0x90A0 +#define GL_PATH_FILL_BOUNDING_BOX_NV 0x90A1 +#define GL_PATH_STROKE_BOUNDING_BOX_NV 0x90A2 +#define GL_SQUARE_NV 0x90A3 +#define GL_ROUND_NV 0x90A4 +#define GL_TRIANGULAR_NV 0x90A5 +#define GL_BEVEL_NV 0x90A6 +#define GL_MITER_REVERT_NV 0x90A7 +#define GL_MITER_TRUNCATE_NV 0x90A8 +#define GL_SKIP_MISSING_GLYPH_NV 0x90A9 +#define GL_USE_MISSING_GLYPH_NV 0x90AA +#define GL_PATH_ERROR_POSITION_NV 0x90AB +#define GL_ACCUM_ADJACENT_PAIRS_NV 0x90AD +#define GL_ADJACENT_PAIRS_NV 0x90AE +#define GL_FIRST_TO_REST_NV 0x90AF +#define GL_PATH_GEN_MODE_NV 0x90B0 +#define GL_PATH_GEN_COEFF_NV 0x90B1 +#define GL_PATH_GEN_COMPONENTS_NV 0x90B3 +#define GL_PATH_STENCIL_FUNC_NV 0x90B7 +#define GL_PATH_STENCIL_REF_NV 0x90B8 +#define GL_PATH_STENCIL_VALUE_MASK_NV 0x90B9 +#define GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV 0x90BD +#define GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV 0x90BE +#define GL_PATH_COVER_DEPTH_FUNC_NV 0x90BF +#define GL_PATH_DASH_OFFSET_RESET_NV 0x90B4 +#define GL_MOVE_TO_RESETS_NV 0x90B5 +#define GL_MOVE_TO_CONTINUES_NV 0x90B6 +#define GL_CLOSE_PATH_NV 0x00 +#define GL_MOVE_TO_NV 0x02 +#define GL_RELATIVE_MOVE_TO_NV 0x03 +#define GL_LINE_TO_NV 0x04 +#define GL_RELATIVE_LINE_TO_NV 0x05 +#define GL_HORIZONTAL_LINE_TO_NV 0x06 +#define GL_RELATIVE_HORIZONTAL_LINE_TO_NV 0x07 +#define GL_VERTICAL_LINE_TO_NV 0x08 +#define GL_RELATIVE_VERTICAL_LINE_TO_NV 0x09 +#define GL_QUADRATIC_CURVE_TO_NV 0x0A +#define GL_RELATIVE_QUADRATIC_CURVE_TO_NV 0x0B +#define GL_CUBIC_CURVE_TO_NV 0x0C +#define GL_RELATIVE_CUBIC_CURVE_TO_NV 0x0D +#define GL_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0E +#define GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV 0x0F +#define GL_SMOOTH_CUBIC_CURVE_TO_NV 0x10 +#define GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV 0x11 +#define GL_SMALL_CCW_ARC_TO_NV 0x12 +#define GL_RELATIVE_SMALL_CCW_ARC_TO_NV 0x13 +#define GL_SMALL_CW_ARC_TO_NV 0x14 +#define GL_RELATIVE_SMALL_CW_ARC_TO_NV 0x15 +#define GL_LARGE_CCW_ARC_TO_NV 0x16 +#define GL_RELATIVE_LARGE_CCW_ARC_TO_NV 0x17 +#define GL_LARGE_CW_ARC_TO_NV 0x18 +#define GL_RELATIVE_LARGE_CW_ARC_TO_NV 0x19 +#define GL_RESTART_PATH_NV 0xF0 +#define GL_DUP_FIRST_CUBIC_CURVE_TO_NV 0xF2 +#define GL_DUP_LAST_CUBIC_CURVE_TO_NV 0xF4 +#define GL_RECT_NV 0xF6 +#define GL_CIRCULAR_CCW_ARC_TO_NV 0xF8 +#define GL_CIRCULAR_CW_ARC_TO_NV 0xFA +#define GL_CIRCULAR_TANGENT_ARC_TO_NV 0xFC +#define GL_ARC_TO_NV 0xFE +#define GL_RELATIVE_ARC_TO_NV 0xFF +#define GL_BOLD_BIT_NV 0x01 +#define GL_ITALIC_BIT_NV 0x02 +#define GL_GLYPH_WIDTH_BIT_NV 0x01 +#define GL_GLYPH_HEIGHT_BIT_NV 0x02 +#define GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV 0x04 +#define GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV 0x08 +#define GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV 0x10 +#define GL_GLYPH_VERTICAL_BEARING_X_BIT_NV 0x20 +#define GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV 0x40 +#define GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV 0x80 +#define GL_GLYPH_HAS_KERNING_BIT_NV 0x100 +#define GL_FONT_X_MIN_BOUNDS_BIT_NV 0x00010000 +#define GL_FONT_Y_MIN_BOUNDS_BIT_NV 0x00020000 +#define GL_FONT_X_MAX_BOUNDS_BIT_NV 0x00040000 +#define GL_FONT_Y_MAX_BOUNDS_BIT_NV 0x00080000 +#define GL_FONT_UNITS_PER_EM_BIT_NV 0x00100000 +#define GL_FONT_ASCENDER_BIT_NV 0x00200000 +#define GL_FONT_DESCENDER_BIT_NV 0x00400000 +#define GL_FONT_HEIGHT_BIT_NV 0x00800000 +#define GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV 0x01000000 +#define GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV 0x02000000 +#define GL_FONT_UNDERLINE_POSITION_BIT_NV 0x04000000 +#define GL_FONT_UNDERLINE_THICKNESS_BIT_NV 0x08000000 +#define GL_FONT_HAS_KERNING_BIT_NV 0x10000000 +#define GL_ROUNDED_RECT_NV 0xE8 +#define GL_RELATIVE_ROUNDED_RECT_NV 0xE9 +#define GL_ROUNDED_RECT2_NV 0xEA +#define GL_RELATIVE_ROUNDED_RECT2_NV 0xEB +#define GL_ROUNDED_RECT4_NV 0xEC +#define GL_RELATIVE_ROUNDED_RECT4_NV 0xED +#define GL_ROUNDED_RECT8_NV 0xEE +#define GL_RELATIVE_ROUNDED_RECT8_NV 0xEF +#define GL_RELATIVE_RECT_NV 0xF7 +#define GL_FONT_GLYPHS_AVAILABLE_NV 0x9368 +#define GL_FONT_TARGET_UNAVAILABLE_NV 0x9369 +#define GL_FONT_UNAVAILABLE_NV 0x936A +#define GL_FONT_UNINTELLIGIBLE_NV 0x936B +#define GL_CONIC_CURVE_TO_NV 0x1A +#define GL_RELATIVE_CONIC_CURVE_TO_NV 0x1B +#define GL_FONT_NUM_GLYPH_INDICES_BIT_NV 0x20000000 +#define GL_STANDARD_FONT_FORMAT_NV 0x936C +#define GL_PATH_PROJECTION_NV 0x1701 +#define GL_PATH_MODELVIEW_NV 0x1700 +#define GL_PATH_MODELVIEW_STACK_DEPTH_NV 0x0BA3 +#define GL_PATH_MODELVIEW_MATRIX_NV 0x0BA6 +#define GL_PATH_MAX_MODELVIEW_STACK_DEPTH_NV 0x0D36 +#define GL_PATH_TRANSPOSE_MODELVIEW_MATRIX_NV 0x84E3 +#define GL_PATH_PROJECTION_STACK_DEPTH_NV 0x0BA4 +#define GL_PATH_PROJECTION_MATRIX_NV 0x0BA7 +#define GL_PATH_MAX_PROJECTION_STACK_DEPTH_NV 0x0D38 +#define GL_PATH_TRANSPOSE_PROJECTION_MATRIX_NV 0x84E4 +#define GL_FRAGMENT_INPUT_NV 0x936D +typedef GLuint (GL_APIENTRYP PFNGLGENPATHSNVPROC) (GLsizei range); +typedef void (GL_APIENTRYP PFNGLDELETEPATHSNVPROC) (GLuint path, GLsizei range); +typedef GLboolean (GL_APIENTRYP PFNGLISPATHNVPROC) (GLuint path); +typedef void (GL_APIENTRYP PFNGLPATHCOMMANDSNVPROC) (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHCOORDSNVPROC) (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOMMANDSNVPROC) (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSUBCOORDSNVPROC) (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +typedef void (GL_APIENTRYP PFNGLPATHSTRINGNVPROC) (GLuint path, GLenum format, GLsizei length, const void *pathString); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHSNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPATHGLYPHRANGENVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLWEIGHTPATHSNVPROC) (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +typedef void (GL_APIENTRYP PFNGLCOPYPATHNVPROC) (GLuint resultPath, GLuint srcPath); +typedef void (GL_APIENTRYP PFNGLINTERPOLATEPATHSNVPROC) (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +typedef void (GL_APIENTRYP PFNGLTRANSFORMPATHNVPROC) (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, const GLint *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERINVPROC) (GLuint path, GLenum pname, GLint value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, const GLfloat *value); +typedef void (GL_APIENTRYP PFNGLPATHPARAMETERFNVPROC) (GLuint path, GLenum pname, GLfloat value); +typedef void (GL_APIENTRYP PFNGLPATHDASHARRAYNVPROC) (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILFUNCNVPROC) (GLenum func, GLint ref, GLuint mask); +typedef void (GL_APIENTRYP PFNGLPATHSTENCILDEPTHOFFSETNVPROC) (GLfloat factor, GLfloat units); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask); +typedef void (GL_APIENTRYP PFNGLSTENCILFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLPATHCOVERDEPTHFUNCNVPROC) (GLenum func); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHNVPROC) (GLuint path, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERIVNVPROC) (GLuint path, GLenum pname, GLint *value); +typedef void (GL_APIENTRYP PFNGLGETPATHPARAMETERFVNVPROC) (GLuint path, GLenum pname, GLfloat *value); +typedef void (GL_APIENTRYP PFNGLGETPATHCOMMANDSNVPROC) (GLuint path, GLubyte *commands); +typedef void (GL_APIENTRYP PFNGLGETPATHCOORDSNVPROC) (GLuint path, GLfloat *coords); +typedef void (GL_APIENTRYP PFNGLGETPATHDASHARRAYNVPROC) (GLuint path, GLfloat *dashArray); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICSNVPROC) (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHMETRICRANGENVPROC) (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +typedef void (GL_APIENTRYP PFNGLGETPATHSPACINGNVPROC) (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINFILLPATHNVPROC) (GLuint path, GLuint mask, GLfloat x, GLfloat y); +typedef GLboolean (GL_APIENTRYP PFNGLISPOINTINSTROKEPATHNVPROC) (GLuint path, GLfloat x, GLfloat y); +typedef GLfloat (GL_APIENTRYP PFNGLGETPATHLENGTHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments); +typedef GLboolean (GL_APIENTRYP PFNGLPOINTALONGPATHNVPROC) (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOAD3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X2FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULT3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSE3X3FNVPROC) (GLenum matrixMode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHNVPROC) (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHNVPROC) (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERFILLPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef void (GL_APIENTRYP PFNGLSTENCILTHENCOVERSTROKEPATHINSTANCEDNVPROC) (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXRANGENVPROC) (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +typedef GLenum (GL_APIENTRYP PFNGLPATHGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef GLenum (GL_APIENTRYP PFNGLPATHMEMORYGLYPHINDEXARRAYNVPROC) (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +typedef void (GL_APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENNVPROC) (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +typedef void (GL_APIENTRYP PFNGLGETPROGRAMRESOURCEFVNVPROC) (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +typedef void (GL_APIENTRYP PFNGLMATRIXFRUSTUMEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADIDENTITYEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXLOADDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTTRANSPOSEDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTFEXTPROC) (GLenum mode, const GLfloat *m); +typedef void (GL_APIENTRYP PFNGLMATRIXMULTDEXTPROC) (GLenum mode, const GLdouble *m); +typedef void (GL_APIENTRYP PFNGLMATRIXORTHOEXTPROC) (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +typedef void (GL_APIENTRYP PFNGLMATRIXPOPEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXPUSHEXTPROC) (GLenum mode); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEFEXTPROC) (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXROTATEDEXTPROC) (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXSCALEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEFEXTPROC) (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +typedef void (GL_APIENTRYP PFNGLMATRIXTRANSLATEDEXTPROC) (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL GLuint GL_APIENTRY glGenPathsNV (GLsizei range); +GL_APICALL void GL_APIENTRY glDeletePathsNV (GLuint path, GLsizei range); +GL_APICALL GLboolean GL_APIENTRY glIsPathNV (GLuint path); +GL_APICALL void GL_APIENTRY glPathCommandsNV (GLuint path, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathCoordsNV (GLuint path, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCommandsNV (GLuint path, GLsizei commandStart, GLsizei commandsToDelete, GLsizei numCommands, const GLubyte *commands, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathSubCoordsNV (GLuint path, GLsizei coordStart, GLsizei numCoords, GLenum coordType, const void *coords); +GL_APICALL void GL_APIENTRY glPathStringNV (GLuint path, GLenum format, GLsizei length, const void *pathString); +GL_APICALL void GL_APIENTRY glPathGlyphsNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLsizei numGlyphs, GLenum type, const void *charcodes, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glPathGlyphRangeNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyphs, GLenum handleMissingGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glWeightPathsNV (GLuint resultPath, GLsizei numPaths, const GLuint *paths, const GLfloat *weights); +GL_APICALL void GL_APIENTRY glCopyPathNV (GLuint resultPath, GLuint srcPath); +GL_APICALL void GL_APIENTRY glInterpolatePathsNV (GLuint resultPath, GLuint pathA, GLuint pathB, GLfloat weight); +GL_APICALL void GL_APIENTRY glTransformPathNV (GLuint resultPath, GLuint srcPath, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathParameterivNV (GLuint path, GLenum pname, const GLint *value); +GL_APICALL void GL_APIENTRY glPathParameteriNV (GLuint path, GLenum pname, GLint value); +GL_APICALL void GL_APIENTRY glPathParameterfvNV (GLuint path, GLenum pname, const GLfloat *value); +GL_APICALL void GL_APIENTRY glPathParameterfNV (GLuint path, GLenum pname, GLfloat value); +GL_APICALL void GL_APIENTRY glPathDashArrayNV (GLuint path, GLsizei dashCount, const GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glPathStencilFuncNV (GLenum func, GLint ref, GLuint mask); +GL_APICALL void GL_APIENTRY glPathStencilDepthOffsetNV (GLfloat factor, GLfloat units); +GL_APICALL void GL_APIENTRY glStencilFillPathNV (GLuint path, GLenum fillMode, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilStrokePathNV (GLuint path, GLint reference, GLuint mask); +GL_APICALL void GL_APIENTRY glStencilFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glPathCoverDepthFuncNV (GLenum func); +GL_APICALL void GL_APIENTRY glCoverFillPathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverStrokePathNV (GLuint path, GLenum coverMode); +GL_APICALL void GL_APIENTRY glCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glGetPathParameterivNV (GLuint path, GLenum pname, GLint *value); +GL_APICALL void GL_APIENTRY glGetPathParameterfvNV (GLuint path, GLenum pname, GLfloat *value); +GL_APICALL void GL_APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands); +GL_APICALL void GL_APIENTRY glGetPathCoordsNV (GLuint path, GLfloat *coords); +GL_APICALL void GL_APIENTRY glGetPathDashArrayNV (GLuint path, GLfloat *dashArray); +GL_APICALL void GL_APIENTRY glGetPathMetricsNV (GLbitfield metricQueryMask, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathMetricRangeNV (GLbitfield metricQueryMask, GLuint firstPathName, GLsizei numPaths, GLsizei stride, GLfloat *metrics); +GL_APICALL void GL_APIENTRY glGetPathSpacingNV (GLenum pathListMode, GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLfloat advanceScale, GLfloat kerningScale, GLenum transformType, GLfloat *returnedSpacing); +GL_APICALL GLboolean GL_APIENTRY glIsPointInFillPathNV (GLuint path, GLuint mask, GLfloat x, GLfloat y); +GL_APICALL GLboolean GL_APIENTRY glIsPointInStrokePathNV (GLuint path, GLfloat x, GLfloat y); +GL_APICALL GLfloat GL_APIENTRY glGetPathLengthNV (GLuint path, GLsizei startSegment, GLsizei numSegments); +GL_APICALL GLboolean GL_APIENTRY glPointAlongPathNV (GLuint path, GLsizei startSegment, GLsizei numSegments, GLfloat distance, GLfloat *x, GLfloat *y, GLfloat *tangentX, GLfloat *tangentY); +GL_APICALL void GL_APIENTRY glMatrixLoad3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoad3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x2fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMult3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTranspose3x3fNV (GLenum matrixMode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathNV (GLuint path, GLenum fillMode, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathNV (GLuint path, GLint reference, GLuint mask, GLenum coverMode); +GL_APICALL void GL_APIENTRY glStencilThenCoverFillPathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLenum fillMode, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL void GL_APIENTRY glStencilThenCoverStrokePathInstancedNV (GLsizei numPaths, GLenum pathNameType, const void *paths, GLuint pathBase, GLint reference, GLuint mask, GLenum coverMode, GLenum transformType, const GLfloat *transformValues); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexRangeNV (GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint pathParameterTemplate, GLfloat emScale, GLuint *baseAndCount); +GL_APICALL GLenum GL_APIENTRY glPathGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, const void *fontName, GLbitfield fontStyle, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL GLenum GL_APIENTRY glPathMemoryGlyphIndexArrayNV (GLuint firstPathName, GLenum fontTarget, GLsizeiptr fontSize, const void *fontData, GLsizei faceIndex, GLuint firstGlyphIndex, GLsizei numGlyphs, GLuint pathParameterTemplate, GLfloat emScale); +GL_APICALL void GL_APIENTRY glProgramPathFragmentInputGenNV (GLuint program, GLint location, GLenum genMode, GLint components, const GLfloat *coeffs); +GL_APICALL void GL_APIENTRY glGetProgramResourcefvNV (GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei count, GLsizei *length, GLfloat *params); +GL_APICALL void GL_APIENTRY glMatrixFrustumEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixLoadIdentityEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoadTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixLoadfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixLoaddEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposefEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultTransposedEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixMultfEXT (GLenum mode, const GLfloat *m); +GL_APICALL void GL_APIENTRY glMatrixMultdEXT (GLenum mode, const GLdouble *m); +GL_APICALL void GL_APIENTRY glMatrixOrthoEXT (GLenum mode, GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar); +GL_APICALL void GL_APIENTRY glMatrixPopEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixPushEXT (GLenum mode); +GL_APICALL void GL_APIENTRY glMatrixRotatefEXT (GLenum mode, GLfloat angle, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixRotatedEXT (GLenum mode, GLdouble angle, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixScalefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixScaledEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +GL_APICALL void GL_APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z); +GL_APICALL void GL_APIENTRY glMatrixTranslatedEXT (GLenum mode, GLdouble x, GLdouble y, GLdouble z); +#endif +#endif /* GL_NV_path_rendering */ + +#ifndef GL_NV_path_rendering_shared_edge +#define GL_NV_path_rendering_shared_edge 1 +#define GL_SHARED_EDGE_NV 0xC0 +#endif /* GL_NV_path_rendering_shared_edge */ + +#ifndef GL_NV_pixel_buffer_object +#define GL_NV_pixel_buffer_object 1 +#define GL_PIXEL_PACK_BUFFER_NV 0x88EB +#define GL_PIXEL_UNPACK_BUFFER_NV 0x88EC +#define GL_PIXEL_PACK_BUFFER_BINDING_NV 0x88ED +#define GL_PIXEL_UNPACK_BUFFER_BINDING_NV 0x88EF +#endif /* GL_NV_pixel_buffer_object */ + +#ifndef GL_NV_polygon_mode +#define GL_NV_polygon_mode 1 +#define GL_POLYGON_MODE_NV 0x0B40 +#define GL_POLYGON_OFFSET_POINT_NV 0x2A01 +#define GL_POLYGON_OFFSET_LINE_NV 0x2A02 +#define GL_POINT_NV 0x1B00 +#define GL_LINE_NV 0x1B01 +#define GL_FILL_NV 0x1B02 +typedef void (GL_APIENTRYP PFNGLPOLYGONMODENVPROC) (GLenum face, GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glPolygonModeNV (GLenum face, GLenum mode); +#endif +#endif /* GL_NV_polygon_mode */ + +#ifndef GL_NV_primitive_shading_rate +#define GL_NV_primitive_shading_rate 1 +#define GL_SHADING_RATE_IMAGE_PER_PRIMITIVE_NV 0x95B1 +#define GL_SHADING_RATE_IMAGE_PALETTE_COUNT_NV 0x95B2 +#endif /* GL_NV_primitive_shading_rate */ + +#ifndef GL_NV_read_buffer +#define GL_NV_read_buffer 1 +#define GL_READ_BUFFER_NV 0x0C02 +typedef void (GL_APIENTRYP PFNGLREADBUFFERNVPROC) (GLenum mode); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glReadBufferNV (GLenum mode); +#endif +#endif /* GL_NV_read_buffer */ + +#ifndef GL_NV_read_buffer_front +#define GL_NV_read_buffer_front 1 +#endif /* GL_NV_read_buffer_front */ + +#ifndef GL_NV_read_depth +#define GL_NV_read_depth 1 +#endif /* GL_NV_read_depth */ + +#ifndef GL_NV_read_depth_stencil +#define GL_NV_read_depth_stencil 1 +#endif /* GL_NV_read_depth_stencil */ + +#ifndef GL_NV_read_stencil +#define GL_NV_read_stencil 1 +#endif /* GL_NV_read_stencil */ + +#ifndef GL_NV_representative_fragment_test +#define GL_NV_representative_fragment_test 1 +#define GL_REPRESENTATIVE_FRAGMENT_TEST_NV 0x937F +#endif /* GL_NV_representative_fragment_test */ + +#ifndef GL_NV_sRGB_formats +#define GL_NV_sRGB_formats 1 +#define GL_SLUMINANCE_NV 0x8C46 +#define GL_SLUMINANCE_ALPHA_NV 0x8C44 +#define GL_SRGB8_NV 0x8C41 +#define GL_SLUMINANCE8_NV 0x8C47 +#define GL_SLUMINANCE8_ALPHA8_NV 0x8C45 +#define GL_COMPRESSED_SRGB_S3TC_DXT1_NV 0x8C4C +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV 0x8C4D +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV 0x8C4E +#define GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV 0x8C4F +#define GL_ETC1_SRGB8_NV 0x88EE +#endif /* GL_NV_sRGB_formats */ + +#ifndef GL_NV_sample_locations +#define GL_NV_sample_locations 1 +#define GL_SAMPLE_LOCATION_SUBPIXEL_BITS_NV 0x933D +#define GL_SAMPLE_LOCATION_PIXEL_GRID_WIDTH_NV 0x933E +#define GL_SAMPLE_LOCATION_PIXEL_GRID_HEIGHT_NV 0x933F +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_TABLE_SIZE_NV 0x9340 +#define GL_SAMPLE_LOCATION_NV 0x8E50 +#define GL_PROGRAMMABLE_SAMPLE_LOCATION_NV 0x9341 +#define GL_FRAMEBUFFER_PROGRAMMABLE_SAMPLE_LOCATIONS_NV 0x9342 +#define GL_FRAMEBUFFER_SAMPLE_LOCATION_PIXEL_GRID_NV 0x9343 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLNAMEDFRAMEBUFFERSAMPLELOCATIONSFVNVPROC) (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLRESOLVEDEPTHVALUESNVPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferSampleLocationsfvNV (GLenum target, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glNamedFramebufferSampleLocationsfvNV (GLuint framebuffer, GLuint start, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glResolveDepthValuesNV (void); +#endif +#endif /* GL_NV_sample_locations */ + +#ifndef GL_NV_sample_mask_override_coverage +#define GL_NV_sample_mask_override_coverage 1 +#endif /* GL_NV_sample_mask_override_coverage */ + +#ifndef GL_NV_scissor_exclusive +#define GL_NV_scissor_exclusive 1 +#define GL_SCISSOR_TEST_EXCLUSIVE_NV 0x9555 +#define GL_SCISSOR_BOX_EXCLUSIVE_NV 0x9556 +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVENVPROC) (GLint x, GLint y, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSOREXCLUSIVEARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glScissorExclusiveNV (GLint x, GLint y, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorExclusiveArrayvNV (GLuint first, GLsizei count, const GLint *v); +#endif +#endif /* GL_NV_scissor_exclusive */ + +#ifndef GL_NV_shader_atomic_fp16_vector +#define GL_NV_shader_atomic_fp16_vector 1 +#endif /* GL_NV_shader_atomic_fp16_vector */ + +#ifndef GL_NV_shader_noperspective_interpolation +#define GL_NV_shader_noperspective_interpolation 1 +#endif /* GL_NV_shader_noperspective_interpolation */ + +#ifndef GL_NV_shader_subgroup_partitioned +#define GL_NV_shader_subgroup_partitioned 1 +#define GL_SUBGROUP_FEATURE_PARTITIONED_BIT_NV 0x00000100 +#endif /* GL_NV_shader_subgroup_partitioned */ + +#ifndef GL_NV_shader_texture_footprint +#define GL_NV_shader_texture_footprint 1 +#endif /* GL_NV_shader_texture_footprint */ + +#ifndef GL_NV_shading_rate_image +#define GL_NV_shading_rate_image 1 +#define GL_SHADING_RATE_IMAGE_NV 0x9563 +#define GL_SHADING_RATE_NO_INVOCATIONS_NV 0x9564 +#define GL_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV 0x9565 +#define GL_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV 0x9566 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV 0x9567 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV 0x9568 +#define GL_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV 0x9569 +#define GL_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV 0x956A +#define GL_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV 0x956B +#define GL_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV 0x956C +#define GL_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV 0x956D +#define GL_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV 0x956E +#define GL_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV 0x956F +#define GL_SHADING_RATE_IMAGE_BINDING_NV 0x955B +#define GL_SHADING_RATE_IMAGE_TEXEL_WIDTH_NV 0x955C +#define GL_SHADING_RATE_IMAGE_TEXEL_HEIGHT_NV 0x955D +#define GL_SHADING_RATE_IMAGE_PALETTE_SIZE_NV 0x955E +#define GL_MAX_COARSE_FRAGMENT_SAMPLES_NV 0x955F +#define GL_SHADING_RATE_SAMPLE_ORDER_DEFAULT_NV 0x95AE +#define GL_SHADING_RATE_SAMPLE_ORDER_PIXEL_MAJOR_NV 0x95AF +#define GL_SHADING_RATE_SAMPLE_ORDER_SAMPLE_MAJOR_NV 0x95B0 +typedef void (GL_APIENTRYP PFNGLBINDSHADINGRATEIMAGENVPROC) (GLuint texture); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint entry, GLenum *rate); +typedef void (GL_APIENTRYP PFNGLGETSHADINGRATESAMPLELOCATIONIVNVPROC) (GLenum rate, GLuint samples, GLuint index, GLint *location); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEBARRIERNVPROC) (GLboolean synchronize); +typedef void (GL_APIENTRYP PFNGLSHADINGRATEIMAGEPALETTENVPROC) (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERNVPROC) (GLenum order); +typedef void (GL_APIENTRYP PFNGLSHADINGRATESAMPLEORDERCUSTOMNVPROC) (GLenum rate, GLuint samples, const GLint *locations); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glBindShadingRateImageNV (GLuint texture); +GL_APICALL void GL_APIENTRY glGetShadingRateImagePaletteNV (GLuint viewport, GLuint entry, GLenum *rate); +GL_APICALL void GL_APIENTRY glGetShadingRateSampleLocationivNV (GLenum rate, GLuint samples, GLuint index, GLint *location); +GL_APICALL void GL_APIENTRY glShadingRateImageBarrierNV (GLboolean synchronize); +GL_APICALL void GL_APIENTRY glShadingRateImagePaletteNV (GLuint viewport, GLuint first, GLsizei count, const GLenum *rates); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderNV (GLenum order); +GL_APICALL void GL_APIENTRY glShadingRateSampleOrderCustomNV (GLenum rate, GLuint samples, const GLint *locations); +#endif +#endif /* GL_NV_shading_rate_image */ + +#ifndef GL_NV_shadow_samplers_array +#define GL_NV_shadow_samplers_array 1 +#define GL_SAMPLER_2D_ARRAY_SHADOW_NV 0x8DC4 +#endif /* GL_NV_shadow_samplers_array */ + +#ifndef GL_NV_shadow_samplers_cube +#define GL_NV_shadow_samplers_cube 1 +#define GL_SAMPLER_CUBE_SHADOW_NV 0x8DC5 +#endif /* GL_NV_shadow_samplers_cube */ + +#ifndef GL_NV_stereo_view_rendering +#define GL_NV_stereo_view_rendering 1 +#endif /* GL_NV_stereo_view_rendering */ + +#ifndef GL_NV_texture_border_clamp +#define GL_NV_texture_border_clamp 1 +#define GL_TEXTURE_BORDER_COLOR_NV 0x1004 +#define GL_CLAMP_TO_BORDER_NV 0x812D +#endif /* GL_NV_texture_border_clamp */ + +#ifndef GL_NV_texture_compression_s3tc_update +#define GL_NV_texture_compression_s3tc_update 1 +#endif /* GL_NV_texture_compression_s3tc_update */ + +#ifndef GL_NV_texture_npot_2D_mipmap +#define GL_NV_texture_npot_2D_mipmap 1 +#endif /* GL_NV_texture_npot_2D_mipmap */ + +#ifndef GL_NV_timeline_semaphore +#define GL_NV_timeline_semaphore 1 +#define GL_TIMELINE_SEMAPHORE_VALUE_NV 0x9595 +#define GL_SEMAPHORE_TYPE_NV 0x95B3 +#define GL_SEMAPHORE_TYPE_BINARY_NV 0x95B4 +#define GL_SEMAPHORE_TYPE_TIMELINE_NV 0x95B5 +#define GL_MAX_TIMELINE_SEMAPHORE_VALUE_DIFFERENCE_NV 0x95B6 +typedef void (GL_APIENTRYP PFNGLCREATESEMAPHORESNVPROC) (GLsizei n, GLuint *semaphores); +typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, const GLint *params); +typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERIVNVPROC) (GLuint semaphore, GLenum pname, GLint *params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores); +GL_APICALL void GL_APIENTRY glSemaphoreParameterivNV (GLuint semaphore, GLenum pname, const GLint *params); +GL_APICALL void GL_APIENTRY glGetSemaphoreParameterivNV (GLuint semaphore, GLenum pname, GLint *params); +#endif +#endif /* GL_NV_timeline_semaphore */ + +#ifndef GL_NV_viewport_array +#define GL_NV_viewport_array 1 +#define GL_MAX_VIEWPORTS_NV 0x825B +#define GL_VIEWPORT_SUBPIXEL_BITS_NV 0x825C +#define GL_VIEWPORT_BOUNDS_RANGE_NV 0x825D +#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX_NV 0x825F +typedef void (GL_APIENTRYP PFNGLVIEWPORTARRAYVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFNVPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +typedef void (GL_APIENTRYP PFNGLVIEWPORTINDEXEDFVNVPROC) (GLuint index, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLSCISSORARRAYVNVPROC) (GLuint first, GLsizei count, const GLint *v); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDNVPROC) (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +typedef void (GL_APIENTRYP PFNGLSCISSORINDEXEDVNVPROC) (GLuint index, const GLint *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEARRAYFVNVPROC) (GLuint first, GLsizei count, const GLfloat *v); +typedef void (GL_APIENTRYP PFNGLDEPTHRANGEINDEXEDFNVPROC) (GLuint index, GLfloat n, GLfloat f); +typedef void (GL_APIENTRYP PFNGLGETFLOATI_VNVPROC) (GLenum target, GLuint index, GLfloat *data); +typedef void (GL_APIENTRYP PFNGLENABLEINVPROC) (GLenum target, GLuint index); +typedef void (GL_APIENTRYP PFNGLDISABLEINVPROC) (GLenum target, GLuint index); +typedef GLboolean (GL_APIENTRYP PFNGLISENABLEDINVPROC) (GLenum target, GLuint index); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportArrayvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glViewportIndexedfNV (GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h); +GL_APICALL void GL_APIENTRY glViewportIndexedfvNV (GLuint index, const GLfloat *v); +GL_APICALL void GL_APIENTRY glScissorArrayvNV (GLuint first, GLsizei count, const GLint *v); +GL_APICALL void GL_APIENTRY glScissorIndexedNV (GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height); +GL_APICALL void GL_APIENTRY glScissorIndexedvNV (GLuint index, const GLint *v); +GL_APICALL void GL_APIENTRY glDepthRangeArrayfvNV (GLuint first, GLsizei count, const GLfloat *v); +GL_APICALL void GL_APIENTRY glDepthRangeIndexedfNV (GLuint index, GLfloat n, GLfloat f); +GL_APICALL void GL_APIENTRY glGetFloati_vNV (GLenum target, GLuint index, GLfloat *data); +GL_APICALL void GL_APIENTRY glEnableiNV (GLenum target, GLuint index); +GL_APICALL void GL_APIENTRY glDisableiNV (GLenum target, GLuint index); +GL_APICALL GLboolean GL_APIENTRY glIsEnablediNV (GLenum target, GLuint index); +#endif +#endif /* GL_NV_viewport_array */ + +#ifndef GL_NV_viewport_array2 +#define GL_NV_viewport_array2 1 +#endif /* GL_NV_viewport_array2 */ + +#ifndef GL_NV_viewport_swizzle +#define GL_NV_viewport_swizzle 1 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_X_NV 0x9350 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_X_NV 0x9351 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Y_NV 0x9352 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Y_NV 0x9353 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_Z_NV 0x9354 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_Z_NV 0x9355 +#define GL_VIEWPORT_SWIZZLE_POSITIVE_W_NV 0x9356 +#define GL_VIEWPORT_SWIZZLE_NEGATIVE_W_NV 0x9357 +#define GL_VIEWPORT_SWIZZLE_X_NV 0x9358 +#define GL_VIEWPORT_SWIZZLE_Y_NV 0x9359 +#define GL_VIEWPORT_SWIZZLE_Z_NV 0x935A +#define GL_VIEWPORT_SWIZZLE_W_NV 0x935B +typedef void (GL_APIENTRYP PFNGLVIEWPORTSWIZZLENVPROC) (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glViewportSwizzleNV (GLuint index, GLenum swizzlex, GLenum swizzley, GLenum swizzlez, GLenum swizzlew); +#endif +#endif /* GL_NV_viewport_swizzle */ + +#ifndef GL_OVR_multiview +#define GL_OVR_multiview 1 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_NUM_VIEWS_OVR 0x9630 +#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_BASE_VIEW_INDEX_OVR 0x9632 +#define GL_MAX_VIEWS_OVR 0x9631 +#define GL_FRAMEBUFFER_INCOMPLETE_VIEW_TARGETS_OVR 0x9633 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview */ + +#ifndef GL_OVR_multiview2 +#define GL_OVR_multiview2 1 +#endif /* GL_OVR_multiview2 */ + +#ifndef GL_OVR_multiview_multisampled_render_to_texture +#define GL_OVR_multiview_multisampled_render_to_texture 1 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERTEXTUREMULTISAMPLEMULTIVIEWOVRPROC) (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferTextureMultisampleMultiviewOVR (GLenum target, GLenum attachment, GLuint texture, GLint level, GLsizei samples, GLint baseViewIndex, GLsizei numViews); +#endif +#endif /* GL_OVR_multiview_multisampled_render_to_texture */ + +#ifndef GL_QCOM_YUV_texture_gather +#define GL_QCOM_YUV_texture_gather 1 +#endif /* GL_QCOM_YUV_texture_gather */ + +#ifndef GL_QCOM_alpha_test +#define GL_QCOM_alpha_test 1 +#define GL_ALPHA_TEST_QCOM 0x0BC0 +#define GL_ALPHA_TEST_FUNC_QCOM 0x0BC1 +#define GL_ALPHA_TEST_REF_QCOM 0x0BC2 +typedef void (GL_APIENTRYP PFNGLALPHAFUNCQCOMPROC) (GLenum func, GLclampf ref); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glAlphaFuncQCOM (GLenum func, GLclampf ref); +#endif +#endif /* GL_QCOM_alpha_test */ + +#ifndef GL_QCOM_binning_control +#define GL_QCOM_binning_control 1 +#define GL_BINNING_CONTROL_HINT_QCOM 0x8FB0 +#define GL_CPU_OPTIMIZED_QCOM 0x8FB1 +#define GL_GPU_OPTIMIZED_QCOM 0x8FB2 +#define GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM 0x8FB3 +#endif /* GL_QCOM_binning_control */ + +#ifndef GL_QCOM_driver_control +#define GL_QCOM_driver_control 1 +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSQCOMPROC) (GLint *num, GLsizei size, GLuint *driverControls); +typedef void (GL_APIENTRYP PFNGLGETDRIVERCONTROLSTRINGQCOMPROC) (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +typedef void (GL_APIENTRYP PFNGLENABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +typedef void (GL_APIENTRYP PFNGLDISABLEDRIVERCONTROLQCOMPROC) (GLuint driverControl); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glGetDriverControlsQCOM (GLint *num, GLsizei size, GLuint *driverControls); +GL_APICALL void GL_APIENTRY glGetDriverControlStringQCOM (GLuint driverControl, GLsizei bufSize, GLsizei *length, GLchar *driverControlString); +GL_APICALL void GL_APIENTRY glEnableDriverControlQCOM (GLuint driverControl); +GL_APICALL void GL_APIENTRY glDisableDriverControlQCOM (GLuint driverControl); +#endif +#endif /* GL_QCOM_driver_control */ + +#ifndef GL_QCOM_extended_get +#define GL_QCOM_extended_get 1 +#define GL_TEXTURE_WIDTH_QCOM 0x8BD2 +#define GL_TEXTURE_HEIGHT_QCOM 0x8BD3 +#define GL_TEXTURE_DEPTH_QCOM 0x8BD4 +#define GL_TEXTURE_INTERNAL_FORMAT_QCOM 0x8BD5 +#define GL_TEXTURE_FORMAT_QCOM 0x8BD6 +#define GL_TEXTURE_TYPE_QCOM 0x8BD7 +#define GL_TEXTURE_IMAGE_VALID_QCOM 0x8BD8 +#define GL_TEXTURE_NUM_LEVELS_QCOM 0x8BD9 +#define GL_TEXTURE_TARGET_QCOM 0x8BDA +#define GL_TEXTURE_OBJECT_VALID_QCOM 0x8BDB +#define GL_STATE_RESTORE 0x8BDC +typedef void (GL_APIENTRYP PFNGLEXTGETTEXTURESQCOMPROC) (GLuint *textures, GLint maxTextures, GLint *numTextures); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERSQCOMPROC) (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETRENDERBUFFERSQCOMPROC) (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETFRAMEBUFFERSQCOMPROC) (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXLEVELPARAMETERIVQCOMPROC) (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +typedef void (GL_APIENTRYP PFNGLEXTTEXOBJECTSTATEOVERRIDEIQCOMPROC) (GLenum target, GLenum pname, GLint param); +typedef void (GL_APIENTRYP PFNGLEXTGETTEXSUBIMAGEQCOMPROC) (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +typedef void (GL_APIENTRYP PFNGLEXTGETBUFFERPOINTERVQCOMPROC) (GLenum target, void **params); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetTexturesQCOM (GLuint *textures, GLint maxTextures, GLint *numTextures); +GL_APICALL void GL_APIENTRY glExtGetBuffersQCOM (GLuint *buffers, GLint maxBuffers, GLint *numBuffers); +GL_APICALL void GL_APIENTRY glExtGetRenderbuffersQCOM (GLuint *renderbuffers, GLint maxRenderbuffers, GLint *numRenderbuffers); +GL_APICALL void GL_APIENTRY glExtGetFramebuffersQCOM (GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers); +GL_APICALL void GL_APIENTRY glExtGetTexLevelParameterivQCOM (GLuint texture, GLenum face, GLint level, GLenum pname, GLint *params); +GL_APICALL void GL_APIENTRY glExtTexObjectStateOverrideiQCOM (GLenum target, GLenum pname, GLint param); +GL_APICALL void GL_APIENTRY glExtGetTexSubImageQCOM (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, void *texels); +GL_APICALL void GL_APIENTRY glExtGetBufferPointervQCOM (GLenum target, void **params); +#endif +#endif /* GL_QCOM_extended_get */ + +#ifndef GL_QCOM_extended_get2 +#define GL_QCOM_extended_get2 1 +typedef void (GL_APIENTRYP PFNGLEXTGETSHADERSQCOMPROC) (GLuint *shaders, GLint maxShaders, GLint *numShaders); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMSQCOMPROC) (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +typedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program); +typedef void (GL_APIENTRYP PFNGLEXTGETPROGRAMBINARYSOURCEQCOMPROC) (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtGetShadersQCOM (GLuint *shaders, GLint maxShaders, GLint *numShaders); +GL_APICALL void GL_APIENTRY glExtGetProgramsQCOM (GLuint *programs, GLint maxPrograms, GLint *numPrograms); +GL_APICALL GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program); +GL_APICALL void GL_APIENTRY glExtGetProgramBinarySourceQCOM (GLuint program, GLenum shadertype, GLchar *source, GLint *length); +#endif +#endif /* GL_QCOM_extended_get2 */ + +#ifndef GL_QCOM_frame_extrapolation +#define GL_QCOM_frame_extrapolation 1 +typedef void (GL_APIENTRYP PFNGLEXTRAPOLATETEX2DQCOMPROC) (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glExtrapolateTex2DQCOM (GLuint src1, GLuint src2, GLuint output, GLfloat scaleFactor); +#endif +#endif /* GL_QCOM_frame_extrapolation */ + +#ifndef GL_QCOM_framebuffer_foveated +#define GL_QCOM_framebuffer_foveated 1 +#define GL_FOVEATION_ENABLE_BIT_QCOM 0x00000001 +#define GL_FOVEATION_SCALED_BIN_METHOD_BIT_QCOM 0x00000002 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONCONFIGQCOMPROC) (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFOVEATIONPARAMETERSQCOMPROC) (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFoveationConfigQCOM (GLuint framebuffer, GLuint numLayers, GLuint focalPointsPerLayer, GLuint requestedFeatures, GLuint *providedFeatures); +GL_APICALL void GL_APIENTRY glFramebufferFoveationParametersQCOM (GLuint framebuffer, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_framebuffer_foveated */ + +#ifndef GL_QCOM_motion_estimation +#define GL_QCOM_motion_estimation 1 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_X_QCOM 0x8C90 +#define GL_MOTION_ESTIMATION_SEARCH_BLOCK_Y_QCOM 0x8C91 +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONQCOMPROC) (GLuint ref, GLuint target, GLuint output); +typedef void (GL_APIENTRYP PFNGLTEXESTIMATEMOTIONREGIONSQCOMPROC) (GLuint ref, GLuint target, GLuint output, GLuint mask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTexEstimateMotionQCOM (GLuint ref, GLuint target, GLuint output); +GL_APICALL void GL_APIENTRY glTexEstimateMotionRegionsQCOM (GLuint ref, GLuint target, GLuint output, GLuint mask); +#endif +#endif /* GL_QCOM_motion_estimation */ + +#ifndef GL_QCOM_perfmon_global_mode +#define GL_QCOM_perfmon_global_mode 1 +#define GL_PERFMON_GLOBAL_MODE_QCOM 0x8FA0 +#endif /* GL_QCOM_perfmon_global_mode */ + +#ifndef GL_QCOM_render_shared_exponent +#define GL_QCOM_render_shared_exponent 1 +#endif /* GL_QCOM_render_shared_exponent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_noncoherent +#define GL_QCOM_shader_framebuffer_fetch_noncoherent 1 +#define GL_FRAMEBUFFER_FETCH_NONCOHERENT_QCOM 0x96A2 +typedef void (GL_APIENTRYP PFNGLFRAMEBUFFERFETCHBARRIERQCOMPROC) (void); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glFramebufferFetchBarrierQCOM (void); +#endif +#endif /* GL_QCOM_shader_framebuffer_fetch_noncoherent */ + +#ifndef GL_QCOM_shader_framebuffer_fetch_rate +#define GL_QCOM_shader_framebuffer_fetch_rate 1 +#endif /* GL_QCOM_shader_framebuffer_fetch_rate */ + +#ifndef GL_QCOM_shading_rate +#define GL_QCOM_shading_rate 1 +#define GL_SHADING_RATE_QCOM 0x96A4 +#define GL_SHADING_RATE_PRESERVE_ASPECT_RATIO_QCOM 0x96A5 +#define GL_SHADING_RATE_1X1_PIXELS_QCOM 0x96A6 +#define GL_SHADING_RATE_1X2_PIXELS_QCOM 0x96A7 +#define GL_SHADING_RATE_2X1_PIXELS_QCOM 0x96A8 +#define GL_SHADING_RATE_2X2_PIXELS_QCOM 0x96A9 +#define GL_SHADING_RATE_4X2_PIXELS_QCOM 0x96AC +#define GL_SHADING_RATE_4X4_PIXELS_QCOM 0x96AE +typedef void (GL_APIENTRYP PFNGLSHADINGRATEQCOMPROC) (GLenum rate); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glShadingRateQCOM (GLenum rate); +#endif +#endif /* GL_QCOM_shading_rate */ + +#ifndef GL_QCOM_texture_foveated +#define GL_QCOM_texture_foveated 1 +#define GL_TEXTURE_FOVEATED_FEATURE_BITS_QCOM 0x8BFB +#define GL_TEXTURE_FOVEATED_MIN_PIXEL_DENSITY_QCOM 0x8BFC +#define GL_TEXTURE_FOVEATED_FEATURE_QUERY_QCOM 0x8BFD +#define GL_TEXTURE_FOVEATED_NUM_FOCAL_POINTS_QUERY_QCOM 0x8BFE +#define GL_FRAMEBUFFER_INCOMPLETE_FOVEATION_QCOM 0x8BFF +typedef void (GL_APIENTRYP PFNGLTEXTUREFOVEATIONPARAMETERSQCOMPROC) (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glTextureFoveationParametersQCOM (GLuint texture, GLuint layer, GLuint focalPoint, GLfloat focalX, GLfloat focalY, GLfloat gainX, GLfloat gainY, GLfloat foveaArea); +#endif +#endif /* GL_QCOM_texture_foveated */ + +#ifndef GL_QCOM_texture_foveated2 +#define GL_QCOM_texture_foveated2 1 +#define GL_TEXTURE_FOVEATED_CUTOFF_DENSITY_QCOM 0x96A0 +#endif /* GL_QCOM_texture_foveated2 */ + +#ifndef GL_QCOM_texture_foveated_subsampled_layout +#define GL_QCOM_texture_foveated_subsampled_layout 1 +#define GL_FOVEATION_SUBSAMPLED_LAYOUT_METHOD_BIT_QCOM 0x00000004 +#define GL_MAX_SHADER_SUBSAMPLED_IMAGE_UNITS_QCOM 0x8FA1 +#endif /* GL_QCOM_texture_foveated_subsampled_layout */ + +#ifndef GL_QCOM_tiled_rendering +#define GL_QCOM_tiled_rendering 1 +#define GL_COLOR_BUFFER_BIT0_QCOM 0x00000001 +#define GL_COLOR_BUFFER_BIT1_QCOM 0x00000002 +#define GL_COLOR_BUFFER_BIT2_QCOM 0x00000004 +#define GL_COLOR_BUFFER_BIT3_QCOM 0x00000008 +#define GL_COLOR_BUFFER_BIT4_QCOM 0x00000010 +#define GL_COLOR_BUFFER_BIT5_QCOM 0x00000020 +#define GL_COLOR_BUFFER_BIT6_QCOM 0x00000040 +#define GL_COLOR_BUFFER_BIT7_QCOM 0x00000080 +#define GL_DEPTH_BUFFER_BIT0_QCOM 0x00000100 +#define GL_DEPTH_BUFFER_BIT1_QCOM 0x00000200 +#define GL_DEPTH_BUFFER_BIT2_QCOM 0x00000400 +#define GL_DEPTH_BUFFER_BIT3_QCOM 0x00000800 +#define GL_DEPTH_BUFFER_BIT4_QCOM 0x00001000 +#define GL_DEPTH_BUFFER_BIT5_QCOM 0x00002000 +#define GL_DEPTH_BUFFER_BIT6_QCOM 0x00004000 +#define GL_DEPTH_BUFFER_BIT7_QCOM 0x00008000 +#define GL_STENCIL_BUFFER_BIT0_QCOM 0x00010000 +#define GL_STENCIL_BUFFER_BIT1_QCOM 0x00020000 +#define GL_STENCIL_BUFFER_BIT2_QCOM 0x00040000 +#define GL_STENCIL_BUFFER_BIT3_QCOM 0x00080000 +#define GL_STENCIL_BUFFER_BIT4_QCOM 0x00100000 +#define GL_STENCIL_BUFFER_BIT5_QCOM 0x00200000 +#define GL_STENCIL_BUFFER_BIT6_QCOM 0x00400000 +#define GL_STENCIL_BUFFER_BIT7_QCOM 0x00800000 +#define GL_MULTISAMPLE_BUFFER_BIT0_QCOM 0x01000000 +#define GL_MULTISAMPLE_BUFFER_BIT1_QCOM 0x02000000 +#define GL_MULTISAMPLE_BUFFER_BIT2_QCOM 0x04000000 +#define GL_MULTISAMPLE_BUFFER_BIT3_QCOM 0x08000000 +#define GL_MULTISAMPLE_BUFFER_BIT4_QCOM 0x10000000 +#define GL_MULTISAMPLE_BUFFER_BIT5_QCOM 0x20000000 +#define GL_MULTISAMPLE_BUFFER_BIT6_QCOM 0x40000000 +#define GL_MULTISAMPLE_BUFFER_BIT7_QCOM 0x80000000 +typedef void (GL_APIENTRYP PFNGLSTARTTILINGQCOMPROC) (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +typedef void (GL_APIENTRYP PFNGLENDTILINGQCOMPROC) (GLbitfield preserveMask); +#ifdef GL_GLEXT_PROTOTYPES +GL_APICALL void GL_APIENTRY glStartTilingQCOM (GLuint x, GLuint y, GLuint width, GLuint height, GLbitfield preserveMask); +GL_APICALL void GL_APIENTRY glEndTilingQCOM (GLbitfield preserveMask); +#endif +#endif /* GL_QCOM_tiled_rendering */ + +#ifndef GL_QCOM_writeonly_rendering +#define GL_QCOM_writeonly_rendering 1 +#define GL_WRITEONLY_RENDERING_QCOM 0x8823 +#endif /* GL_QCOM_writeonly_rendering */ + +#ifndef GL_VIV_shader_binary +#define GL_VIV_shader_binary 1 +#define GL_SHADER_BINARY_VIV 0x8FC4 +#endif /* GL_VIV_shader_binary */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/SDL2-2.26.3/include/SDL_opengles2_gl2platform.h b/SDL2-2.26.3/include/SDL_opengles2_gl2platform.h new file mode 100644 index 0000000..426796e --- /dev/null +++ b/SDL2-2.26.3/include/SDL_opengles2_gl2platform.h @@ -0,0 +1,27 @@ +#ifndef __gl2platform_h_ +#define __gl2platform_h_ + +/* +** Copyright 2017-2020 The Khronos Group Inc. +** SPDX-License-Identifier: Apache-2.0 +*/ + +/* Platform-specific types and definitions for OpenGL ES 2.X gl2.h + * + * Adopters may modify khrplatform.h and this file to suit their platform. + * Please contribute modifications back to Khronos as pull requests on the + * public github repository: + * https://github.com/KhronosGroup/OpenGL-Registry + */ + +/*#include */ + +#ifndef GL_APICALL +#define GL_APICALL KHRONOS_APICALL +#endif + +#ifndef GL_APIENTRY +#define GL_APIENTRY KHRONOS_APIENTRY +#endif + +#endif /* __gl2platform_h_ */ diff --git a/SDL2-2.24.0/include/SDL_opengles2_khrplatform.h b/SDL2-2.26.3/include/SDL_opengles2_khrplatform.h similarity index 84% rename from SDL2-2.24.0/include/SDL_opengles2_khrplatform.h rename to SDL2-2.26.3/include/SDL_opengles2_khrplatform.h index c9e6f17..0164644 100644 --- a/SDL2-2.24.0/include/SDL_opengles2_khrplatform.h +++ b/SDL2-2.26.3/include/SDL_opengles2_khrplatform.h @@ -2,7 +2,7 @@ #define __khrplatform_h_ /* -** Copyright (c) 2008-2009 The Khronos Group Inc. +** 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 @@ -26,18 +26,16 @@ /* Khronos platform-specific types and definitions. * - * $Revision: 23298 $ on $Date: 2013-09-30 17:07:13 -0700 (Mon, 30 Sep 2013) $ + * 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 sending them to the public Khronos Bugzilla - * (http://khronos.org/bugzilla) by filing a bug against product - * "Khronos (general)" component "Registry". - * - * A predefined template which fills in some of the bug fields can be - * reached using http://tinyurl.com/khrplatform-h-bugreport, but you - * must create a Bugzilla login first. + * 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 @@ -92,15 +90,25 @@ * 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(_WIN32) && !defined(__SCITECH_SNAP__) +#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 @@ -145,6 +153,20 @@ 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) @@ -223,18 +245,25 @@ typedef signed short int khronos_int16_t; typedef unsigned short int khronos_uint16_t; /* - * Types that differ between LLP64 and LP64 architectures - in LLP64, + * 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 _WIN64 +#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; -typedef signed long long int khronos_ssize_t; -typedef unsigned long long int khronos_usize_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 diff --git a/SDL2-2.24.0/include/SDL_pixels.h b/SDL2-2.26.3/include/SDL_pixels.h similarity index 99% rename from SDL2-2.24.0/include/SDL_pixels.h rename to SDL2-2.26.3/include/SDL_pixels.h index 5d2c0c8..9abd57b 100644 --- a/SDL2-2.24.0/include/SDL_pixels.h +++ b/SDL2-2.26.3/include/SDL_pixels.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_platform.h b/SDL2-2.26.3/include/SDL_platform.h similarity index 98% rename from SDL2-2.24.0/include/SDL_platform.h rename to SDL2-2.26.3/include/SDL_platform.h index f1f6f8b..d2a7e05 100644 --- a/SDL2-2.24.0/include/SDL_platform.h +++ b/SDL2-2.26.3/include/SDL_platform.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -221,6 +221,11 @@ #define __VITA__ 1 #endif +#if defined(__3DS__) +#undef __3DS__ +#define __3DS__ 1 +#endif + #include "begin_code.h" /* Set up for C function definitions, even when using C++ */ #ifdef __cplusplus diff --git a/SDL2-2.24.0/include/SDL_power.h b/SDL2-2.26.3/include/SDL_power.h similarity index 98% rename from SDL2-2.24.0/include/SDL_power.h rename to SDL2-2.26.3/include/SDL_power.h index ecb3f4b..be06c8b 100644 --- a/SDL2-2.24.0/include/SDL_power.h +++ b/SDL2-2.26.3/include/SDL_power.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_quit.h b/SDL2-2.26.3/include/SDL_quit.h similarity index 97% rename from SDL2-2.24.0/include/SDL_quit.h rename to SDL2-2.26.3/include/SDL_quit.h index 4090f7f..d8ceb89 100644 --- a/SDL2-2.24.0/include/SDL_quit.h +++ b/SDL2-2.26.3/include/SDL_quit.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_rect.h b/SDL2-2.26.3/include/SDL_rect.h similarity index 99% rename from SDL2-2.24.0/include/SDL_rect.h rename to SDL2-2.26.3/include/SDL_rect.h index 6c641c5..9611a31 100644 --- a/SDL2-2.24.0/include/SDL_rect.h +++ b/SDL2-2.26.3/include/SDL_rect.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_render.h b/SDL2-2.26.3/include/SDL_render.h similarity index 99% rename from SDL2-2.24.0/include/SDL_render.h rename to SDL2-2.26.3/include/SDL_render.h index 30ef3d6..c729501 100644 --- a/SDL2-2.24.0/include/SDL_render.h +++ b/SDL2-2.26.3/include/SDL_render.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -1765,6 +1765,9 @@ extern DECLSPEC void SDLCALL SDL_DestroyTexture(SDL_Texture * texture); /** * Destroy the rendering context for a window and free associated textures. * + * If `renderer` is NULL, this function will return immediately after setting + * the SDL error message to "Invalid renderer". See SDL_GetError(). + * * \param renderer the rendering context * * \since This function is available since SDL 2.0.0. diff --git a/SDL2-2.26.3/include/SDL_revision.h b/SDL2-2.26.3/include/SDL_revision.h new file mode 100644 index 0000000..99af2a5 --- /dev/null +++ b/SDL2-2.26.3/include/SDL_revision.h @@ -0,0 +1,7 @@ +/* Generated by updaterev.sh, do not edit */ +#ifdef SDL_VENDOR_INFO +#define SDL_REVISION "SDL-release-2.26.3-0-gadf31f6ec (" SDL_VENDOR_INFO ")" +#else +#define SDL_REVISION "SDL-release-2.26.3-0-gadf31f6ec" +#endif +#define SDL_REVISION_NUMBER 0 diff --git a/SDL2-2.24.0/include/SDL_rwops.h b/SDL2-2.26.3/include/SDL_rwops.h similarity index 99% rename from SDL2-2.24.0/include/SDL_rwops.h rename to SDL2-2.26.3/include/SDL_rwops.h index 3960f56..8615cb5 100644 --- a/SDL2-2.24.0/include/SDL_rwops.h +++ b/SDL2-2.26.3/include/SDL_rwops.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_scancode.h b/SDL2-2.26.3/include/SDL_scancode.h similarity index 91% rename from SDL2-2.24.0/include/SDL_scancode.h rename to SDL2-2.26.3/include/SDL_scancode.h index aaa782f..a960a79 100644 --- a/SDL2-2.24.0/include/SDL_scancode.h +++ b/SDL2-2.26.3/include/SDL_scancode.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -225,16 +225,16 @@ typedef enum SDL_SCANCODE_F23 = 114, SDL_SCANCODE_F24 = 115, SDL_SCANCODE_EXECUTE = 116, - SDL_SCANCODE_HELP = 117, - SDL_SCANCODE_MENU = 118, + SDL_SCANCODE_HELP = 117, /**< AL Integrated Help Center */ + SDL_SCANCODE_MENU = 118, /**< Menu (show menu) */ SDL_SCANCODE_SELECT = 119, - SDL_SCANCODE_STOP = 120, - SDL_SCANCODE_AGAIN = 121, /**< redo */ - SDL_SCANCODE_UNDO = 122, - SDL_SCANCODE_CUT = 123, - SDL_SCANCODE_COPY = 124, - SDL_SCANCODE_PASTE = 125, - SDL_SCANCODE_FIND = 126, + SDL_SCANCODE_STOP = 120, /**< AC Stop */ + SDL_SCANCODE_AGAIN = 121, /**< AC Redo/Repeat */ + SDL_SCANCODE_UNDO = 122, /**< AC Undo */ + SDL_SCANCODE_CUT = 123, /**< AC Cut */ + SDL_SCANCODE_COPY = 124, /**< AC Copy */ + SDL_SCANCODE_PASTE = 125, /**< AC Paste */ + SDL_SCANCODE_FIND = 126, /**< AC Find */ SDL_SCANCODE_MUTE = 127, SDL_SCANCODE_VOLUMEUP = 128, SDL_SCANCODE_VOLUMEDOWN = 129, @@ -265,9 +265,9 @@ typedef enum SDL_SCANCODE_LANG8 = 151, /**< reserved */ SDL_SCANCODE_LANG9 = 152, /**< reserved */ - SDL_SCANCODE_ALTERASE = 153, /**< Erase-Eaze */ + SDL_SCANCODE_ALTERASE = 153, /**< Erase-Eaze */ SDL_SCANCODE_SYSREQ = 154, - SDL_SCANCODE_CANCEL = 155, + SDL_SCANCODE_CANCEL = 155, /**< AC Cancel */ SDL_SCANCODE_CLEAR = 156, SDL_SCANCODE_PRIOR = 157, SDL_SCANCODE_RETURN2 = 158, @@ -345,6 +345,11 @@ typedef enum * \name Usage page 0x0C * * These values are mapped from usage page 0x0C (USB consumer page). + * See https://usb.org/sites/default/files/hut1_2.pdf + * + * There are way more keys in the spec than we can represent in the + * current scancode range, so pick the ones that commonly come up in + * real world usage. */ /* @{ */ @@ -354,17 +359,17 @@ typedef enum SDL_SCANCODE_AUDIOPLAY = 261, SDL_SCANCODE_AUDIOMUTE = 262, SDL_SCANCODE_MEDIASELECT = 263, - SDL_SCANCODE_WWW = 264, + SDL_SCANCODE_WWW = 264, /**< AL Internet Browser */ SDL_SCANCODE_MAIL = 265, - SDL_SCANCODE_CALCULATOR = 266, + SDL_SCANCODE_CALCULATOR = 266, /**< AL Calculator */ SDL_SCANCODE_COMPUTER = 267, - SDL_SCANCODE_AC_SEARCH = 268, - SDL_SCANCODE_AC_HOME = 269, - SDL_SCANCODE_AC_BACK = 270, - SDL_SCANCODE_AC_FORWARD = 271, - SDL_SCANCODE_AC_STOP = 272, - SDL_SCANCODE_AC_REFRESH = 273, - SDL_SCANCODE_AC_BOOKMARKS = 274, + SDL_SCANCODE_AC_SEARCH = 268, /**< AC Search */ + SDL_SCANCODE_AC_HOME = 269, /**< AC Home */ + SDL_SCANCODE_AC_BACK = 270, /**< AC Back */ + SDL_SCANCODE_AC_FORWARD = 271, /**< AC Forward */ + SDL_SCANCODE_AC_STOP = 272, /**< AC Stop */ + SDL_SCANCODE_AC_REFRESH = 273, /**< AC Refresh */ + SDL_SCANCODE_AC_BOOKMARKS = 274, /**< AC Bookmarks */ /* @} *//* Usage page 0x0C */ @@ -383,7 +388,7 @@ typedef enum SDL_SCANCODE_KBDILLUMDOWN = 279, SDL_SCANCODE_KBDILLUMUP = 280, SDL_SCANCODE_EJECT = 281, - SDL_SCANCODE_SLEEP = 282, + SDL_SCANCODE_SLEEP = 282, /**< SC System Sleep */ SDL_SCANCODE_APP1 = 283, SDL_SCANCODE_APP2 = 284, diff --git a/SDL2-2.24.0/include/SDL_sensor.h b/SDL2-2.26.3/include/SDL_sensor.h similarity index 87% rename from SDL2-2.24.0/include/SDL_sensor.h rename to SDL2-2.26.3/include/SDL_sensor.h index a2f30e0..3010e49 100644 --- a/SDL2-2.24.0/include/SDL_sensor.h +++ b/SDL2-2.26.3/include/SDL_sensor.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -71,7 +71,11 @@ typedef enum SDL_SENSOR_INVALID = -1, /**< Returned for an invalid sensor */ SDL_SENSOR_UNKNOWN, /**< Unknown sensor type */ SDL_SENSOR_ACCEL, /**< Accelerometer */ - SDL_SENSOR_GYRO /**< Gyroscope */ + SDL_SENSOR_GYRO, /**< Gyroscope */ + SDL_SENSOR_ACCEL_L, /**< Accelerometer for left Joy-Con controller and Wii nunchuk */ + SDL_SENSOR_GYRO_L, /**< Gyroscope for left Joy-Con controller */ + SDL_SENSOR_ACCEL_R, /**< Accelerometer for right Joy-Con controller */ + SDL_SENSOR_GYRO_R /**< Gyroscope for right Joy-Con controller */ } SDL_SensorType; /** @@ -263,7 +267,24 @@ extern DECLSPEC SDL_SensorID SDLCALL SDL_SensorGetInstanceID(SDL_Sensor *sensor) * * \since This function is available since SDL 2.0.9. */ -extern DECLSPEC int SDLCALL SDL_SensorGetData(SDL_Sensor * sensor, float *data, int num_values); +extern DECLSPEC int SDLCALL SDL_SensorGetData(SDL_Sensor *sensor, float *data, int num_values); + +/** + * Get the current state of an opened sensor with the timestamp of the last + * update. + * + * The number of values and interpretation of the data is sensor dependent. + * + * \param sensor The SDL_Sensor object to query + * \param timestamp A pointer filled with the timestamp in microseconds of the + * current sensor reading if available, or 0 if not + * \param data A pointer filled with the current sensor state + * \param num_values The number of values to write to data + * \returns 0 or -1 if an error occurred. + * + * \since This function is available since SDL 2.26.0. + */ +extern DECLSPEC int SDLCALL SDL_SensorGetDataWithTimestamp(SDL_Sensor *sensor, Uint64 *timestamp, float *data, int num_values); /** * Close a sensor previously opened with SDL_SensorOpen(). @@ -272,7 +293,7 @@ extern DECLSPEC int SDLCALL SDL_SensorGetData(SDL_Sensor * sensor, float *data, * * \since This function is available since SDL 2.0.9. */ -extern DECLSPEC void SDLCALL SDL_SensorClose(SDL_Sensor * sensor); +extern DECLSPEC void SDLCALL SDL_SensorClose(SDL_Sensor *sensor); /** * Update the current state of the open sensors. diff --git a/SDL2-2.24.0/include/SDL_shape.h b/SDL2-2.26.3/include/SDL_shape.h similarity index 98% rename from SDL2-2.24.0/include/SDL_shape.h rename to SDL2-2.26.3/include/SDL_shape.h index 1bca927..f66babc 100644 --- a/SDL2-2.24.0/include/SDL_shape.h +++ b/SDL2-2.26.3/include/SDL_shape.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_stdinc.h b/SDL2-2.26.3/include/SDL_stdinc.h similarity index 98% rename from SDL2-2.24.0/include/SDL_stdinc.h rename to SDL2-2.26.3/include/SDL_stdinc.h index 5f79c95..bbce3d0 100644 --- a/SDL2-2.24.0/include/SDL_stdinc.h +++ b/SDL2-2.26.3/include/SDL_stdinc.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -80,9 +80,9 @@ # include #endif #ifdef HAVE_MATH_H -# if defined(__WINRT__) +# if defined(_MSC_VER) /* Defining _USE_MATH_DEFINES is required to get M_PI to be defined on - WinRT. See http://msdn.microsoft.com/en-us/library/4hwaceh6.aspx + Visual Studio. See http://msdn.microsoft.com/en-us/library/4hwaceh6.aspx for more information. */ # define _USE_MATH_DEFINES @@ -410,7 +410,7 @@ SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); /** \cond */ #ifndef DOXYGEN_SHOULD_IGNORE_THIS -#if !defined(__ANDROID__) && !defined(__VITA__) +#if !defined(__ANDROID__) && !defined(__VITA__) && !defined(__3DS__) /* TODO: include/SDL_stdinc.h:174: error: size of array 'SDL_dummy_enum' is negative */ typedef enum { @@ -583,6 +583,7 @@ extern DECLSPEC char *SDLCALL SDL_strlwr(char *str); extern DECLSPEC char *SDLCALL SDL_strchr(const char *str, int c); extern DECLSPEC char *SDLCALL SDL_strrchr(const char *str, int c); extern DECLSPEC char *SDLCALL SDL_strstr(const char *haystack, const char *needle); +extern DECLSPEC char *SDLCALL SDL_strcasestr(const char *haystack, const char *needle); extern DECLSPEC char *SDLCALL SDL_strtokr(char *s1, const char *s2, char **saveptr); extern DECLSPEC size_t SDLCALL SDL_utf8strlen(const char *str); extern DECLSPEC size_t SDLCALL SDL_utf8strnlen(const char *str, size_t bytes); diff --git a/SDL2-2.24.0/include/SDL_surface.h b/SDL2-2.26.3/include/SDL_surface.h similarity index 99% rename from SDL2-2.24.0/include/SDL_surface.h rename to SDL2-2.26.3/include/SDL_surface.h index 838de65..d6ee615 100644 --- a/SDL2-2.24.0/include/SDL_surface.h +++ b/SDL2-2.26.3/include/SDL_surface.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_system.h b/SDL2-2.26.3/include/SDL_system.h similarity index 99% rename from SDL2-2.24.0/include/SDL_system.h rename to SDL2-2.26.3/include/SDL_system.h index 0edca63..4b7eadd 100644 --- a/SDL2-2.24.0/include/SDL_system.h +++ b/SDL2-2.26.3/include/SDL_system.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_syswm.h b/SDL2-2.26.3/include/SDL_syswm.h similarity index 99% rename from SDL2-2.24.0/include/SDL_syswm.h rename to SDL2-2.26.3/include/SDL_syswm.h index 45f8e75..b35734d 100644 --- a/SDL2-2.24.0/include/SDL_syswm.h +++ b/SDL2-2.26.3/include/SDL_syswm.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test.h b/SDL2-2.26.3/include/SDL_test.h similarity index 97% rename from SDL2-2.24.0/include/SDL_test.h rename to SDL2-2.26.3/include/SDL_test.h index 8cc9d61..80daaaf 100644 --- a/SDL2-2.24.0/include/SDL_test.h +++ b/SDL2-2.26.3/include/SDL_test.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_assert.h b/SDL2-2.26.3/include/SDL_test_assert.h similarity index 98% rename from SDL2-2.24.0/include/SDL_test_assert.h rename to SDL2-2.26.3/include/SDL_test_assert.h index 7342305..341e490 100644 --- a/SDL2-2.24.0/include/SDL_test_assert.h +++ b/SDL2-2.26.3/include/SDL_test_assert.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_common.h b/SDL2-2.26.3/include/SDL_test_common.h similarity index 99% rename from SDL2-2.24.0/include/SDL_test_common.h rename to SDL2-2.26.3/include/SDL_test_common.h index b86520d..6de63ca 100644 --- a/SDL2-2.24.0/include/SDL_test_common.h +++ b/SDL2-2.26.3/include/SDL_test_common.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_compare.h b/SDL2-2.26.3/include/SDL_test_compare.h similarity index 97% rename from SDL2-2.24.0/include/SDL_test_compare.h rename to SDL2-2.26.3/include/SDL_test_compare.h index 8a7a070..5fce25c 100644 --- a/SDL2-2.24.0/include/SDL_test_compare.h +++ b/SDL2-2.26.3/include/SDL_test_compare.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_crc32.h b/SDL2-2.26.3/include/SDL_test_crc32.h similarity index 98% rename from SDL2-2.24.0/include/SDL_test_crc32.h rename to SDL2-2.26.3/include/SDL_test_crc32.h index 049da74..bf34782 100644 --- a/SDL2-2.24.0/include/SDL_test_crc32.h +++ b/SDL2-2.26.3/include/SDL_test_crc32.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_font.h b/SDL2-2.26.3/include/SDL_test_font.h similarity index 98% rename from SDL2-2.24.0/include/SDL_test_font.h rename to SDL2-2.26.3/include/SDL_test_font.h index 6e7247d..18a82ff 100644 --- a/SDL2-2.24.0/include/SDL_test_font.h +++ b/SDL2-2.26.3/include/SDL_test_font.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_fuzzer.h b/SDL2-2.26.3/include/SDL_test_fuzzer.h similarity index 99% rename from SDL2-2.24.0/include/SDL_test_fuzzer.h rename to SDL2-2.26.3/include/SDL_test_fuzzer.h index bbe8eb8..cfe6a14 100644 --- a/SDL2-2.24.0/include/SDL_test_fuzzer.h +++ b/SDL2-2.26.3/include/SDL_test_fuzzer.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_harness.h b/SDL2-2.26.3/include/SDL_test_harness.h similarity index 98% rename from SDL2-2.24.0/include/SDL_test_harness.h rename to SDL2-2.26.3/include/SDL_test_harness.h index 1fd4236..26231dc 100644 --- a/SDL2-2.24.0/include/SDL_test_harness.h +++ b/SDL2-2.26.3/include/SDL_test_harness.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_images.h b/SDL2-2.26.3/include/SDL_test_images.h similarity index 97% rename from SDL2-2.24.0/include/SDL_test_images.h rename to SDL2-2.26.3/include/SDL_test_images.h index e2bfc36..1211371 100644 --- a/SDL2-2.24.0/include/SDL_test_images.h +++ b/SDL2-2.26.3/include/SDL_test_images.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_log.h b/SDL2-2.26.3/include/SDL_test_log.h similarity index 96% rename from SDL2-2.24.0/include/SDL_test_log.h rename to SDL2-2.26.3/include/SDL_test_log.h index e3d39ad..a27ffc2 100644 --- a/SDL2-2.24.0/include/SDL_test_log.h +++ b/SDL2-2.26.3/include/SDL_test_log.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_md5.h b/SDL2-2.26.3/include/SDL_test_md5.h similarity index 98% rename from SDL2-2.24.0/include/SDL_test_md5.h rename to SDL2-2.26.3/include/SDL_test_md5.h index 17b1d2b..538c7ae 100644 --- a/SDL2-2.24.0/include/SDL_test_md5.h +++ b/SDL2-2.26.3/include/SDL_test_md5.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_memory.h b/SDL2-2.26.3/include/SDL_test_memory.h similarity index 96% rename from SDL2-2.24.0/include/SDL_test_memory.h rename to SDL2-2.26.3/include/SDL_test_memory.h index cc2edc1..f959177 100644 --- a/SDL2-2.24.0/include/SDL_test_memory.h +++ b/SDL2-2.26.3/include/SDL_test_memory.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_test_random.h b/SDL2-2.26.3/include/SDL_test_random.h similarity index 98% rename from SDL2-2.24.0/include/SDL_test_random.h rename to SDL2-2.26.3/include/SDL_test_random.h index b1d6060..0035a80 100644 --- a/SDL2-2.24.0/include/SDL_test_random.h +++ b/SDL2-2.26.3/include/SDL_test_random.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_thread.h b/SDL2-2.26.3/include/SDL_thread.h similarity index 97% rename from SDL2-2.24.0/include/SDL_thread.h rename to SDL2-2.26.3/include/SDL_thread.h index 7364f81..849f70b 100644 --- a/SDL2-2.24.0/include/SDL_thread.h +++ b/SDL2-2.26.3/include/SDL_thread.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -142,7 +142,7 @@ SDL_CreateThreadWithStackSize(SDL_ThreadFunction fn, #define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize_REAL(fn, name, stacksize, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread) #else #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread) -#define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)SDL_endthread) +#define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize(fn, name, stacksize, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread) #endif #elif defined(__OS2__) @@ -175,7 +175,7 @@ SDL_CreateThreadWithStackSize(SDL_ThreadFunction fn, const char *name, const siz #undef SDL_CreateThread #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread) #undef SDL_CreateThreadWithStackSize -#define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread) +#define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize_REAL(fn, name, stacksize, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread) #else #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread) #define SDL_CreateThreadWithStackSize(fn, name, stacksize, data) SDL_CreateThreadWithStackSize(fn, name, stacksize, data, (pfnSDL_CurrentBeginThread)SDL_beginthread, (pfnSDL_CurrentEndThread)SDL_endthread) diff --git a/SDL2-2.24.0/include/SDL_timer.h b/SDL2-2.26.3/include/SDL_timer.h similarity index 99% rename from SDL2-2.24.0/include/SDL_timer.h rename to SDL2-2.26.3/include/SDL_timer.h index 62f81d4..98f9ad1 100644 --- a/SDL2-2.24.0/include/SDL_timer.h +++ b/SDL2-2.26.3/include/SDL_timer.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_touch.h b/SDL2-2.26.3/include/SDL_touch.h similarity index 98% rename from SDL2-2.24.0/include/SDL_touch.h rename to SDL2-2.26.3/include/SDL_touch.h index 9592413..c12d4a1 100644 --- a/SDL2-2.24.0/include/SDL_touch.h +++ b/SDL2-2.26.3/include/SDL_touch.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_types.h b/SDL2-2.26.3/include/SDL_types.h similarity index 94% rename from SDL2-2.24.0/include/SDL_types.h rename to SDL2-2.26.3/include/SDL_types.h index 355fb50..b5d7192 100644 --- a/SDL2-2.24.0/include/SDL_types.h +++ b/SDL2-2.26.3/include/SDL_types.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/SDL_version.h b/SDL2-2.26.3/include/SDL_version.h similarity index 98% rename from SDL2-2.24.0/include/SDL_version.h rename to SDL2-2.26.3/include/SDL_version.h index fbe09db..739134a 100644 --- a/SDL2-2.24.0/include/SDL_version.h +++ b/SDL2-2.26.3/include/SDL_version.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -58,8 +58,8 @@ typedef struct SDL_version /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL */ #define SDL_MAJOR_VERSION 2 -#define SDL_MINOR_VERSION 24 -#define SDL_PATCHLEVEL 0 +#define SDL_MINOR_VERSION 26 +#define SDL_PATCHLEVEL 3 /** * Macro to determine SDL version program was compiled against. diff --git a/SDL2-2.24.0/include/SDL_video.h b/SDL2-2.26.3/include/SDL_video.h similarity index 98% rename from SDL2-2.24.0/include/SDL_video.h rename to SDL2-2.26.3/include/SDL_video.h index 0b1065d..c70facb 100644 --- a/SDL2-2.24.0/include/SDL_video.h +++ b/SDL2-2.26.3/include/SDL_video.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -1046,6 +1046,27 @@ extern DECLSPEC int SDLCALL SDL_GetWindowBordersSize(SDL_Window * window, int *top, int *left, int *bottom, int *right); +/** + * Get the size of a window in pixels. + * + * This may differ from SDL_GetWindowSize() if we're rendering to a high-DPI + * drawable, i.e. the window was created with `SDL_WINDOW_ALLOW_HIGHDPI` on a + * platform with high-DPI support (Apple calls this "Retina"), and not + * disabled by the `SDL_HINT_VIDEO_HIGHDPI_DISABLED` hint. + * + * \param window the window from which the drawable size should be queried + * \param w a pointer to variable for storing the width in pixels, may be NULL + * \param h a pointer to variable for storing the height in pixels, may be + * NULL + * + * \since This function is available since SDL 2.26.0. + * + * \sa SDL_CreateWindow + * \sa SDL_GetWindowSize + */ +extern DECLSPEC void SDLCALL SDL_GetWindowSizeInPixels(SDL_Window * window, + int *w, int *h); + /** * Set the minimum size of a window's client area. * @@ -1790,6 +1811,9 @@ extern DECLSPEC void SDLCALL SDL_EnableScreenSaver(void); * If you disable the screensaver, it is automatically re-enabled when SDL * quits. * + * The screensaver is disabled by default since SDL 2.0.2. Before SDL 2.0.2 + * the screensaver was enabled by default. + * * \since This function is available since SDL 2.0.0. * * \sa SDL_EnableScreenSaver diff --git a/SDL2-2.24.0/include/SDL_vulkan.h b/SDL2-2.26.3/include/SDL_vulkan.h similarity index 100% rename from SDL2-2.24.0/include/SDL_vulkan.h rename to SDL2-2.26.3/include/SDL_vulkan.h diff --git a/SDL2-2.24.0/include/begin_code.h b/SDL2-2.26.3/include/begin_code.h similarity index 98% rename from SDL2-2.24.0/include/begin_code.h rename to SDL2-2.26.3/include/begin_code.h index b3e69e8..1f01e0b 100644 --- a/SDL2-2.24.0/include/begin_code.h +++ b/SDL2-2.26.3/include/begin_code.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.24.0/include/close_code.h b/SDL2-2.26.3/include/close_code.h similarity index 95% rename from SDL2-2.24.0/include/close_code.h rename to SDL2-2.26.3/include/close_code.h index dc73432..874a926 100644 --- a/SDL2-2.24.0/include/close_code.h +++ b/SDL2-2.26.3/include/close_code.h @@ -1,6 +1,6 @@ /* Simple DirectMedia Layer - Copyright (C) 1997-2022 Sam Lantinga + Copyright (C) 1997-2023 Sam Lantinga This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages diff --git a/SDL2-2.26.3/lib/x64/SDL2.dll b/SDL2-2.26.3/lib/x64/SDL2.dll new file mode 100644 index 0000000..71f5b89 Binary files /dev/null and b/SDL2-2.26.3/lib/x64/SDL2.dll differ diff --git a/SDL2-2.26.3/lib/x64/SDL2.lib b/SDL2-2.26.3/lib/x64/SDL2.lib new file mode 100644 index 0000000..f966c7c Binary files /dev/null and b/SDL2-2.26.3/lib/x64/SDL2.lib differ diff --git a/SDL2-2.26.3/lib/x64/SDL2main.lib b/SDL2-2.26.3/lib/x64/SDL2main.lib new file mode 100644 index 0000000..7be2a67 Binary files /dev/null and b/SDL2-2.26.3/lib/x64/SDL2main.lib differ diff --git a/SDL2-2.24.0/lib/x64/SDL2test.lib b/SDL2-2.26.3/lib/x64/SDL2test.lib similarity index 88% rename from SDL2-2.24.0/lib/x64/SDL2test.lib rename to SDL2-2.26.3/lib/x64/SDL2test.lib index f43f1cb..174d26a 100644 Binary files a/SDL2-2.24.0/lib/x64/SDL2test.lib and b/SDL2-2.26.3/lib/x64/SDL2test.lib differ diff --git a/SDL2-2.26.3/lib/x86/SDL2.dll b/SDL2-2.26.3/lib/x86/SDL2.dll new file mode 100644 index 0000000..431a054 Binary files /dev/null and b/SDL2-2.26.3/lib/x86/SDL2.dll differ diff --git a/SDL2-2.26.3/lib/x86/SDL2.lib b/SDL2-2.26.3/lib/x86/SDL2.lib new file mode 100644 index 0000000..73c41c6 Binary files /dev/null and b/SDL2-2.26.3/lib/x86/SDL2.lib differ diff --git a/SDL2-2.24.0/lib/x86/SDL2main.lib b/SDL2-2.26.3/lib/x86/SDL2main.lib similarity index 81% rename from SDL2-2.24.0/lib/x86/SDL2main.lib rename to SDL2-2.26.3/lib/x86/SDL2main.lib index 61656ea..d9a5f8a 100644 Binary files a/SDL2-2.24.0/lib/x86/SDL2main.lib and b/SDL2-2.26.3/lib/x86/SDL2main.lib differ diff --git a/SDL2-2.24.0/lib/x86/SDL2test.lib b/SDL2-2.26.3/lib/x86/SDL2test.lib similarity index 87% rename from SDL2-2.24.0/lib/x86/SDL2test.lib rename to SDL2-2.26.3/lib/x86/SDL2test.lib index 892919c..75d73ab 100644 Binary files a/SDL2-2.24.0/lib/x86/SDL2test.lib and b/SDL2-2.26.3/lib/x86/SDL2test.lib differ diff --git a/boost-1.80.0/boost/container_hash/detail/float_functions.hpp b/boost-1.80.0/boost/container_hash/detail/float_functions.hpp deleted file mode 100644 index f3db52f..0000000 --- a/boost-1.80.0/boost/container_hash/detail/float_functions.hpp +++ /dev/null @@ -1,336 +0,0 @@ - -// Copyright 2005-2009 Daniel James. -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) - -#if !defined(BOOST_FUNCTIONAL_HASH_DETAIL_FLOAT_FUNCTIONS_HPP) -#define BOOST_FUNCTIONAL_HASH_DETAIL_FLOAT_FUNCTIONS_HPP - -#include -#if defined(BOOST_HAS_PRAGMA_ONCE) -#pragma once -#endif - -#include - -// Set BOOST_HASH_CONFORMANT_FLOATS to 1 for libraries known to have -// sufficiently good floating point support to not require any -// workarounds. -// -// When set to 0, the library tries to automatically -// use the best available implementation. This normally works well, but -// breaks when ambiguities are created by odd namespacing of the functions. -// -// Note that if this is set to 0, the library should still take full -// advantage of the platform's floating point support. - -#if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) -# define BOOST_HASH_CONFORMANT_FLOATS 0 -#elif defined(__LIBCOMO__) -# define BOOST_HASH_CONFORMANT_FLOATS 0 -#elif defined(__STD_RWCOMPILER_H__) || defined(_RWSTD_VER) -// Rogue Wave library: -# define BOOST_HASH_CONFORMANT_FLOATS 0 -#elif defined(_LIBCPP_VERSION) -// libc++ -# define BOOST_HASH_CONFORMANT_FLOATS 1 -#elif defined(__GLIBCPP__) || defined(__GLIBCXX__) -// GNU libstdc++ 3 -# if defined(__GNUC__) && __GNUC__ >= 4 -# define BOOST_HASH_CONFORMANT_FLOATS 1 -# else -# define BOOST_HASH_CONFORMANT_FLOATS 0 -# endif -#elif defined(__STL_CONFIG_H) -// generic SGI STL -# define BOOST_HASH_CONFORMANT_FLOATS 0 -#elif defined(__MSL_CPP__) -// MSL standard lib: -# define BOOST_HASH_CONFORMANT_FLOATS 0 -#elif defined(__IBMCPP__) -// VACPP std lib (probably conformant for much earlier version). -# if __IBMCPP__ >= 1210 -# define BOOST_HASH_CONFORMANT_FLOATS 1 -# else -# define BOOST_HASH_CONFORMANT_FLOATS 0 -# endif -#elif defined(MSIPL_COMPILE_H) -// Modena C++ standard library -# define BOOST_HASH_CONFORMANT_FLOATS 0 -#elif (defined(_YVALS) && !defined(__IBMCPP__)) || defined(_CPPLIB_VER) -// Dinkumware Library (this has to appear after any possible replacement libraries): -# if _CPPLIB_VER >= 405 -# define BOOST_HASH_CONFORMANT_FLOATS 1 -# else -# define BOOST_HASH_CONFORMANT_FLOATS 0 -# endif -#else -# define BOOST_HASH_CONFORMANT_FLOATS 0 -#endif - -#if BOOST_HASH_CONFORMANT_FLOATS - -// The standard library is known to be compliant, so don't use the -// configuration mechanism. - -namespace boost { - namespace hash_detail { - template - struct call_ldexp { - typedef Float float_type; - inline Float operator()(Float x, int y) const { - return std::ldexp(x, y); - } - }; - - template - struct call_frexp { - typedef Float float_type; - inline Float operator()(Float x, int* y) const { - return std::frexp(x, y); - } - }; - - template - struct select_hash_type - { - typedef Float type; - }; - } -} - -#else // BOOST_HASH_CONFORMANT_FLOATS == 0 - -// The C++ standard requires that the C float functions are overloarded -// for float, double and long double in the std namespace, but some of the older -// library implementations don't support this. On some that don't, the C99 -// float functions (frexpf, frexpl, etc.) are available. -// -// The following tries to automatically detect which are available. - -namespace boost { - namespace hash_detail { - - // Returned by dummy versions of the float functions. - - struct not_found { - // Implicitly convertible to float and long double in order to avoid - // a compile error when the dummy float functions are used. - - inline operator float() const { return 0; } - inline operator long double() const { return 0; } - }; - - // A type for detecting the return type of functions. - - template struct is; - template <> struct is { char x[10]; }; - template <> struct is { char x[20]; }; - template <> struct is { char x[30]; }; - template <> struct is { char x[40]; }; - - // Used to convert the return type of a function to a type for sizeof. - - template is float_type(T); - - // call_ldexp - // - // This will get specialized for float and long double - - template struct call_ldexp - { - typedef double float_type; - - inline double operator()(double a, int b) const - { - using namespace std; - return ldexp(a, b); - } - }; - - // call_frexp - // - // This will get specialized for float and long double - - template struct call_frexp - { - typedef double float_type; - - inline double operator()(double a, int* b) const - { - using namespace std; - return frexp(a, b); - } - }; - } -} - -// A namespace for dummy functions to detect when the actual function we want -// isn't available. ldexpl, ldexpf etc. might be added tby the macros below. -// -// AFAICT these have to be outside of the boost namespace, as if they're in -// the boost namespace they'll always be preferable to any other function -// (since the arguments are built in types, ADL can't be used). - -namespace boost_hash_detect_float_functions { - template boost::hash_detail::not_found ldexp(Float, int); - template boost::hash_detail::not_found frexp(Float, int*); -} - -// Macros for generating specializations of call_ldexp and call_frexp. -// -// check_cpp and check_c99 check if the C++ or C99 functions are available. -// -// Then the call_* functions select an appropriate implementation. -// -// I used c99_func in a few places just to get a unique name. -// -// Important: when using 'using namespace' at namespace level, include as -// little as possible in that namespace, as Visual C++ has an odd bug which -// can cause the namespace to be imported at the global level. This seems to -// happen mainly when there's a template in the same namesapce. - -#define BOOST_HASH_CALL_FLOAT_FUNC(cpp_func, c99_func, type1, type2) \ -namespace boost_hash_detect_float_functions { \ - template \ - boost::hash_detail::not_found c99_func(Float, type2); \ -} \ - \ -namespace boost { \ - namespace hash_detail { \ - namespace c99_func##_detect { \ - using namespace std; \ - using namespace boost_hash_detect_float_functions; \ - \ - struct check { \ - static type1 x; \ - static type2 y; \ - BOOST_STATIC_CONSTANT(bool, cpp = \ - sizeof(float_type(cpp_func(x,y))) \ - == sizeof(is)); \ - BOOST_STATIC_CONSTANT(bool, c99 = \ - sizeof(float_type(c99_func(x,y))) \ - == sizeof(is)); \ - }; \ - } \ - \ - template \ - struct call_c99_##c99_func : \ - boost::hash_detail::call_##cpp_func {}; \ - \ - template <> \ - struct call_c99_##c99_func { \ - typedef type1 float_type; \ - \ - template \ - inline type1 operator()(type1 a, T b) const \ - { \ - using namespace std; \ - return c99_func(a, b); \ - } \ - }; \ - \ - template \ - struct call_cpp_##c99_func : \ - call_c99_##c99_func< \ - ::boost::hash_detail::c99_func##_detect::check::c99 \ - > {}; \ - \ - template <> \ - struct call_cpp_##c99_func { \ - typedef type1 float_type; \ - \ - template \ - inline type1 operator()(type1 a, T b) const \ - { \ - using namespace std; \ - return cpp_func(a, b); \ - } \ - }; \ - \ - template <> \ - struct call_##cpp_func : \ - call_cpp_##c99_func< \ - ::boost::hash_detail::c99_func##_detect::check::cpp \ - > {}; \ - } \ -} - -#define BOOST_HASH_CALL_FLOAT_MACRO(cpp_func, c99_func, type1, type2) \ -namespace boost { \ - namespace hash_detail { \ - \ - template <> \ - struct call_##cpp_func { \ - typedef type1 float_type; \ - inline type1 operator()(type1 x, type2 y) const { \ - return c99_func(x, y); \ - } \ - }; \ - } \ -} - -#if defined(ldexpf) -BOOST_HASH_CALL_FLOAT_MACRO(ldexp, ldexpf, float, int) -#else -BOOST_HASH_CALL_FLOAT_FUNC(ldexp, ldexpf, float, int) -#endif - -#if defined(ldexpl) -BOOST_HASH_CALL_FLOAT_MACRO(ldexp, ldexpl, long double, int) -#else -BOOST_HASH_CALL_FLOAT_FUNC(ldexp, ldexpl, long double, int) -#endif - -#if defined(frexpf) -BOOST_HASH_CALL_FLOAT_MACRO(frexp, frexpf, float, int*) -#else -BOOST_HASH_CALL_FLOAT_FUNC(frexp, frexpf, float, int*) -#endif - -#if defined(frexpl) -BOOST_HASH_CALL_FLOAT_MACRO(frexp, frexpl, long double, int*) -#else -BOOST_HASH_CALL_FLOAT_FUNC(frexp, frexpl, long double, int*) -#endif - -#undef BOOST_HASH_CALL_FLOAT_MACRO -#undef BOOST_HASH_CALL_FLOAT_FUNC - - -namespace boost -{ - namespace hash_detail - { - template - struct select_hash_type_impl { - typedef double type; - }; - - template <> - struct select_hash_type_impl { - typedef float type; - }; - - template <> - struct select_hash_type_impl { - typedef long double type; - }; - - - // select_hash_type - // - // If there is support for a particular floating point type, use that - // otherwise use double (there's always support for double). - - template - struct select_hash_type : select_hash_type_impl< - BOOST_DEDUCED_TYPENAME call_ldexp::float_type, - BOOST_DEDUCED_TYPENAME call_frexp::float_type - > {}; - } -} - -#endif // BOOST_HASH_CONFORMANT_FLOATS - -#endif diff --git a/boost-1.80.0/boost/container_hash/detail/hash_float.hpp b/boost-1.80.0/boost/container_hash/detail/hash_float.hpp deleted file mode 100644 index f763428..0000000 --- a/boost-1.80.0/boost/container_hash/detail/hash_float.hpp +++ /dev/null @@ -1,271 +0,0 @@ - -// Copyright 2005-2012 Daniel James. -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) - -#if !defined(BOOST_FUNCTIONAL_HASH_DETAIL_HASH_FLOAT_HEADER) -#define BOOST_FUNCTIONAL_HASH_DETAIL_HASH_FLOAT_HEADER - -#include -#if defined(BOOST_HAS_PRAGMA_ONCE) -#pragma once -#endif - -#include -#include -#include -#include -#include -#include -#include -#include - -#if defined(BOOST_MSVC) -#pragma warning(push) -#if BOOST_MSVC >= 1400 -#pragma warning(disable:6294) // Ill-defined for-loop: initial condition does - // not satisfy test. Loop body not executed -#endif -#endif - -// Can we use fpclassify? - -// STLport -#if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) -#define BOOST_HASH_USE_FPCLASSIFY 0 - -// GNU libstdc++ 3 -#elif defined(__GLIBCPP__) || defined(__GLIBCXX__) -# if (defined(__USE_ISOC99) || defined(_GLIBCXX_USE_C99_MATH)) && \ - !(defined(macintosh) || defined(__APPLE__) || defined(__APPLE_CC__)) -# define BOOST_HASH_USE_FPCLASSIFY 1 -# else -# define BOOST_HASH_USE_FPCLASSIFY 0 -# endif - -// Everything else -#else -# define BOOST_HASH_USE_FPCLASSIFY 0 -#endif - -namespace boost -{ - namespace hash_detail - { - inline void hash_float_combine(std::size_t& seed, std::size_t value) - { - seed ^= value + (seed<<6) + (seed>>2); - } - - //////////////////////////////////////////////////////////////////////// - // Binary hash function - // - // Only used for floats with known iec559 floats, and certain values in - // numeric_limits - - inline std::size_t hash_binary(char* ptr, std::size_t length) - { - std::size_t seed = 0; - - if (length >= sizeof(std::size_t)) { - std::memcpy(&seed, ptr, sizeof(std::size_t)); - length -= sizeof(std::size_t); - ptr += sizeof(std::size_t); - - while(length >= sizeof(std::size_t)) { - std::size_t buffer = 0; - std::memcpy(&buffer, ptr, sizeof(std::size_t)); - hash_float_combine(seed, buffer); - length -= sizeof(std::size_t); - ptr += sizeof(std::size_t); - } - } - - if (length > 0) { - std::size_t buffer = 0; - std::memcpy(&buffer, ptr, length); - hash_float_combine(seed, buffer); - } - - return seed; - } - - template - struct enable_binary_hash - { - BOOST_STATIC_CONSTANT(bool, value = - std::numeric_limits::is_iec559 && - std::numeric_limits::digits == digits && - std::numeric_limits::radix == 2 && - std::numeric_limits::max_exponent == max_exponent); - }; - - template - inline std::size_t float_hash_impl(Float v, - BOOST_DEDUCED_TYPENAME boost::enable_if_c< - enable_binary_hash::value, - std::size_t>::type) - { - return hash_binary((char*) &v, 4); - } - - - template - inline std::size_t float_hash_impl(Float v, - BOOST_DEDUCED_TYPENAME boost::enable_if_c< - enable_binary_hash::value, - std::size_t>::type) - { - return hash_binary((char*) &v, 8); - } - - template - inline std::size_t float_hash_impl(Float v, - BOOST_DEDUCED_TYPENAME boost::enable_if_c< - enable_binary_hash::value, - std::size_t>::type) - { - return hash_binary((char*) &v, 10); - } - - template - inline std::size_t float_hash_impl(Float v, - BOOST_DEDUCED_TYPENAME boost::enable_if_c< - enable_binary_hash::value, - std::size_t>::type) - { - return hash_binary((char*) &v, 16); - } - - //////////////////////////////////////////////////////////////////////// - // Portable hash function - // - // Used as a fallback when the binary hash function isn't supported. - - template - inline std::size_t float_hash_impl2(T v) - { - boost::hash_detail::call_frexp frexp; - boost::hash_detail::call_ldexp ldexp; - - int exp = 0; - - v = frexp(v, &exp); - - // A postive value is easier to hash, so combine the - // sign with the exponent and use the absolute value. - if(v < 0) { - v = -v; - exp += limits::max_exponent - - limits::min_exponent; - } - - v = ldexp(v, limits::digits); - std::size_t seed = static_cast(v); - v -= static_cast(seed); - - // ceiling(digits(T) * log2(radix(T))/ digits(size_t)) - 1; - std::size_t const length - = (limits::digits * - boost::static_log2::radix>::value - + limits::digits - 1) - / limits::digits; - - for(std::size_t i = 0; i != length; ++i) - { - v = ldexp(v, limits::digits); - std::size_t part = static_cast(v); - v -= static_cast(part); - hash_float_combine(seed, part); - } - - hash_float_combine(seed, static_cast(exp)); - - return seed; - } - -#if !defined(BOOST_HASH_DETAIL_TEST_WITHOUT_GENERIC) - template - inline std::size_t float_hash_impl(T v, ...) - { - typedef BOOST_DEDUCED_TYPENAME select_hash_type::type type; - return float_hash_impl2(static_cast(v)); - } -#endif - } -} - -#if BOOST_HASH_USE_FPCLASSIFY - -#include - -namespace boost -{ - namespace hash_detail - { - template - inline std::size_t float_hash_value(T v) - { -#if defined(fpclassify) - switch (fpclassify(v)) -#elif BOOST_HASH_CONFORMANT_FLOATS - switch (std::fpclassify(v)) -#else - using namespace std; - switch (fpclassify(v)) -#endif - { - case FP_ZERO: - return 0; - case FP_INFINITE: - return (std::size_t)(v > 0 ? -1 : -2); - case FP_NAN: - return (std::size_t)(-3); - case FP_NORMAL: - case FP_SUBNORMAL: - return float_hash_impl(v, 0); - default: - BOOST_ASSERT(0); - return 0; - } - } - } -} - -#else // !BOOST_HASH_USE_FPCLASSIFY - -namespace boost -{ - namespace hash_detail - { - template - inline bool is_zero(T v) - { -#if !defined(__GNUC__) && !defined(__clang__) - return v == 0; -#else - // GCC's '-Wfloat-equal' will complain about comparing - // v to 0, but because it disables warnings for system - // headers it won't complain if you use std::equal_to to - // compare with 0. Resulting in this silliness: - return std::equal_to()(v, 0); -#endif - } - - template - inline std::size_t float_hash_value(T v) - { - return boost::hash_detail::is_zero(v) ? 0 : float_hash_impl(v, 0); - } - } -} - -#endif // BOOST_HASH_USE_FPCLASSIFY - -#undef BOOST_HASH_USE_FPCLASSIFY - -#if defined(BOOST_MSVC) -#pragma warning(pop) -#endif - -#endif diff --git a/boost-1.80.0/boost/container_hash/detail/limits.hpp b/boost-1.80.0/boost/container_hash/detail/limits.hpp deleted file mode 100644 index 4a971a6..0000000 --- a/boost-1.80.0/boost/container_hash/detail/limits.hpp +++ /dev/null @@ -1,62 +0,0 @@ - -// Copyright 2005-2009 Daniel James. -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -// -// On some platforms std::limits gives incorrect values for long double. -// This tries to work around them. - -#if !defined(BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER) -#define BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER - -#include -#if defined(BOOST_HAS_PRAGMA_ONCE) -#pragma once -#endif - -#include - -// On OpenBSD, numeric_limits is not reliable for long doubles, but -// the macros defined in are and support long double when STLport -// doesn't. - -#if defined(__OpenBSD__) || defined(_STLP_NO_LONG_DOUBLE) -#include -#endif - -namespace boost -{ - namespace hash_detail - { - template - struct limits : std::numeric_limits {}; - -#if defined(__OpenBSD__) || defined(_STLP_NO_LONG_DOUBLE) - template <> - struct limits - : std::numeric_limits - { - static long double epsilon() { - return LDBL_EPSILON; - } - - static long double (max)() { - return LDBL_MAX; - } - - static long double (min)() { - return LDBL_MIN; - } - - BOOST_STATIC_CONSTANT(int, digits = LDBL_MANT_DIG); - BOOST_STATIC_CONSTANT(int, max_exponent = LDBL_MAX_EXP); - BOOST_STATIC_CONSTANT(int, min_exponent = LDBL_MIN_EXP); -#if defined(_STLP_NO_LONG_DOUBLE) - BOOST_STATIC_CONSTANT(int, radix = FLT_RADIX); -#endif - }; -#endif // __OpenBSD__ - } -} - -#endif diff --git a/boost-1.80.0/boost/container_hash/extensions.hpp b/boost-1.80.0/boost/container_hash/extensions.hpp deleted file mode 100644 index aa4f9cf..0000000 --- a/boost-1.80.0/boost/container_hash/extensions.hpp +++ /dev/null @@ -1,361 +0,0 @@ - -// Copyright 2005-2009 Daniel James. -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) - -// Based on Peter Dimov's proposal -// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf -// issue 6.18. - -// This implements the extensions to the standard. -// It's undocumented, so you shouldn't use it.... - -#if !defined(BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP) -#define BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP - -#include -#if defined(BOOST_HAS_PRAGMA_ONCE) -#pragma once -#endif - -#include -#include -#include -#include - -#if !defined(BOOST_NO_CXX11_HDR_ARRAY) -# include -#endif - -#if !defined(BOOST_NO_CXX11_HDR_TUPLE) -# include -#endif - -#include - -#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) -#include -#endif - -namespace boost -{ - template - std::size_t hash_value(std::pair const&); - template - std::size_t hash_value(std::vector const&); - template - std::size_t hash_value(std::list const& v); - template - std::size_t hash_value(std::deque const& v); - template - std::size_t hash_value(std::set const& v); - template - std::size_t hash_value(std::multiset const& v); - template - std::size_t hash_value(std::map const& v); - template - std::size_t hash_value(std::multimap const& v); - - template - std::size_t hash_value(std::complex const&); - - template - std::size_t hash_value(std::pair const& v) - { - std::size_t seed = 0; - boost::hash_combine(seed, v.first); - boost::hash_combine(seed, v.second); - return seed; - } - - template - std::size_t hash_value(std::vector const& v) - { - return boost::hash_range(v.begin(), v.end()); - } - - template - std::size_t hash_value(std::list const& v) - { - return boost::hash_range(v.begin(), v.end()); - } - - template - std::size_t hash_value(std::deque const& v) - { - return boost::hash_range(v.begin(), v.end()); - } - - template - std::size_t hash_value(std::set const& v) - { - return boost::hash_range(v.begin(), v.end()); - } - - template - std::size_t hash_value(std::multiset const& v) - { - return boost::hash_range(v.begin(), v.end()); - } - - template - std::size_t hash_value(std::map const& v) - { - return boost::hash_range(v.begin(), v.end()); - } - - template - std::size_t hash_value(std::multimap const& v) - { - return boost::hash_range(v.begin(), v.end()); - } - - template - std::size_t hash_value(std::complex const& v) - { - boost::hash hasher; - std::size_t seed = hasher(v.imag()); - seed ^= hasher(v.real()) + (seed<<6) + (seed>>2); - return seed; - } - -#if !defined(BOOST_NO_CXX11_HDR_ARRAY) - template - std::size_t hash_value(std::array const& v) - { - return boost::hash_range(v.begin(), v.end()); - } -#endif - -#if !defined(BOOST_NO_CXX11_HDR_TUPLE) - namespace hash_detail { - template - inline typename boost::enable_if_c<(I == std::tuple_size::value), - void>::type - hash_combine_tuple(std::size_t&, T const&) - { - } - - template - inline typename boost::enable_if_c<(I < std::tuple_size::value), - void>::type - hash_combine_tuple(std::size_t& seed, T const& v) - { - boost::hash_combine(seed, std::get(v)); - boost::hash_detail::hash_combine_tuple(seed, v); - } - - template - inline std::size_t hash_tuple(T const& v) - { - std::size_t seed = 0; - boost::hash_detail::hash_combine_tuple<0>(seed, v); - return seed; - } - } - -#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } -#else - - inline std::size_t hash_value(std::tuple<> const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - - template - inline std::size_t hash_value(std::tuple const& v) - { - return boost::hash_detail::hash_tuple(v); - } - -#endif - -#endif - -#if !defined(BOOST_NO_CXX11_SMART_PTR) - template - inline std::size_t hash_value(std::shared_ptr const& x) { - return boost::hash_value(x.get()); - } - - template - inline std::size_t hash_value(std::unique_ptr const& x) { - return boost::hash_value(x.get()); - } -#endif - - // - // call_hash_impl - // - - // On compilers without function template ordering, this deals with arrays. - -#if defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) - namespace hash_detail - { - template - struct call_hash_impl - { - template - struct inner - { - static std::size_t call(T const& v) - { - using namespace boost; - return hash_value(v); - } - }; - }; - - template <> - struct call_hash_impl - { - template - struct inner - { - static std::size_t call(Array const& v) - { - const int size = sizeof(v) / sizeof(*v); - return boost::hash_range(v, v + size); - } - }; - }; - - template - struct call_hash - : public call_hash_impl::value> - ::BOOST_NESTED_TEMPLATE inner - { - }; - } -#endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING - - // - // boost::hash - // - - -#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) - - template struct hash - : boost::hash_detail::hash_base - { -#if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) - std::size_t operator()(T const& val) const - { - return hash_value(val); - } -#else - std::size_t operator()(T const& val) const - { - return hash_detail::call_hash::call(val); - } -#endif - }; - -#if BOOST_WORKAROUND(__DMC__, <= 0x848) - template struct hash - : boost::hash_detail::hash_base - { - std::size_t operator()(const T* val) const - { - return boost::hash_range(val, val+n); - } - }; -#endif - -#else // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION - - // On compilers without partial specialization, boost::hash - // has already been declared to deal with pointers, so just - // need to supply the non-pointer version of hash_impl. - - namespace hash_detail - { - template - struct hash_impl; - - template <> - struct hash_impl - { - template - struct inner - : boost::hash_detail::hash_base - { -#if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) - std::size_t operator()(T const& val) const - { - return hash_value(val); - } -#else - std::size_t operator()(T const& val) const - { - return hash_detail::call_hash::call(val); - } -#endif - }; - }; - } -#endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION -} - -#endif diff --git a/boost-1.80.0/boost/container_hash/hash.hpp b/boost-1.80.0/boost/container_hash/hash.hpp deleted file mode 100644 index 5ce09d4..0000000 --- a/boost-1.80.0/boost/container_hash/hash.hpp +++ /dev/null @@ -1,767 +0,0 @@ - -// Copyright 2005-2014 Daniel James. -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) - -// Based on Peter Dimov's proposal -// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf -// issue 6.18. -// -// This also contains public domain code from MurmurHash. From the -// MurmurHash header: - -// MurmurHash3 was written by Austin Appleby, and is placed in the public -// domain. The author hereby disclaims copyright to this source code. - -#if !defined(BOOST_FUNCTIONAL_HASH_HASH_HPP) -#define BOOST_FUNCTIONAL_HASH_HASH_HPP - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) -#include -#endif - -#if !defined(BOOST_NO_CXX11_HDR_TYPEINDEX) -#include -#endif - -#if !defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR) -#include -#endif - -#if defined(BOOST_MSVC) -#pragma warning(push) - -#if BOOST_MSVC >= 1400 -#pragma warning(disable:6295) // Ill-defined for-loop : 'unsigned int' values - // are always of range '0' to '4294967295'. - // Loop executes infinitely. -#endif - -#endif - -#if BOOST_WORKAROUND(__GNUC__, < 3) \ - && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) -#define BOOST_HASH_CHAR_TRAITS string_char_traits -#else -#define BOOST_HASH_CHAR_TRAITS char_traits -#endif - -#if defined(_MSC_VER) -# define BOOST_FUNCTIONAL_HASH_ROTL32(x, r) _rotl(x,r) -#else -# define BOOST_FUNCTIONAL_HASH_ROTL32(x, r) (x << r) | (x >> (32 - r)) -#endif - -// Detect whether standard library has C++17 headers - -#if !defined(BOOST_HASH_CXX17) -# if defined(BOOST_MSVC) -# if defined(_HAS_CXX17) && _HAS_CXX17 -# define BOOST_HASH_CXX17 1 -# endif -# elif defined(__cplusplus) && __cplusplus >= 201703 -# define BOOST_HASH_CXX17 1 -# endif -#endif - -#if !defined(BOOST_HASH_CXX17) -# define BOOST_HASH_CXX17 0 -#endif - -#if BOOST_HASH_CXX17 && defined(__has_include) -# if !defined(BOOST_HASH_HAS_STRING_VIEW) && __has_include() -# define BOOST_HASH_HAS_STRING_VIEW 1 -# endif -# if !defined(BOOST_HASH_HAS_OPTIONAL) && __has_include() -# define BOOST_HASH_HAS_OPTIONAL 1 -# endif -# if !defined(BOOST_HASH_HAS_VARIANT) && __has_include() -# define BOOST_HASH_HAS_VARIANT 1 -# endif -#endif - -#if !defined(BOOST_HASH_HAS_STRING_VIEW) -# define BOOST_HASH_HAS_STRING_VIEW 0 -#endif - -#if !defined(BOOST_HASH_HAS_OPTIONAL) -# define BOOST_HASH_HAS_OPTIONAL 0 -#endif - -#if !defined(BOOST_HASH_HAS_VARIANT) -# define BOOST_HASH_HAS_VARIANT 0 -#endif - -#if BOOST_HASH_HAS_STRING_VIEW -# include -#endif - -#if BOOST_HASH_HAS_OPTIONAL -# include -#endif - -#if BOOST_HASH_HAS_VARIANT -# include -#endif - -namespace boost -{ - namespace hash_detail - { -#if defined(BOOST_NO_CXX98_FUNCTION_BASE) - template - struct hash_base - { - typedef T argument_type; - typedef std::size_t result_type; - }; -#else - template - struct hash_base : std::unary_function {}; -#endif - - struct enable_hash_value { typedef std::size_t type; }; - - template struct basic_numbers {}; - template struct long_numbers; - template struct ulong_numbers; - template struct float_numbers {}; - - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; - -#if !defined(BOOST_NO_INTRINSIC_WCHAR_T) - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; -#endif - -#if !defined(BOOST_NO_CXX11_CHAR16_T) - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; -#endif - -#if !defined(BOOST_NO_CXX11_CHAR32_T) - template <> struct basic_numbers : - boost::hash_detail::enable_hash_value {}; -#endif - - // long_numbers is defined like this to allow for separate - // specialization for long_long and int128_type, in case - // they conflict. - template struct long_numbers2 {}; - template struct ulong_numbers2 {}; - template struct long_numbers : long_numbers2 {}; - template struct ulong_numbers : ulong_numbers2 {}; - -#if !defined(BOOST_NO_LONG_LONG) - template <> struct long_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct ulong_numbers : - boost::hash_detail::enable_hash_value {}; -#endif - -#if defined(BOOST_HAS_INT128) - template <> struct long_numbers2 : - boost::hash_detail::enable_hash_value {}; - template <> struct ulong_numbers2 : - boost::hash_detail::enable_hash_value {}; -#endif - - template <> struct float_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct float_numbers : - boost::hash_detail::enable_hash_value {}; - template <> struct float_numbers : - boost::hash_detail::enable_hash_value {}; - } - - template - typename boost::hash_detail::basic_numbers::type hash_value(T); - template - typename boost::hash_detail::long_numbers::type hash_value(T); - template - typename boost::hash_detail::ulong_numbers::type hash_value(T); - - template - typename boost::enable_if, std::size_t>::type - hash_value(T); - -#if !BOOST_WORKAROUND(__DMC__, <= 0x848) - template std::size_t hash_value(T* const&); -#else - template std::size_t hash_value(T*); -#endif - -#if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) - template< class T, unsigned N > - std::size_t hash_value(const T (&x)[N]); - - template< class T, unsigned N > - std::size_t hash_value(T (&x)[N]); -#endif - - template - std::size_t hash_value( - std::basic_string, A> const&); - -#if BOOST_HASH_HAS_STRING_VIEW - template - std::size_t hash_value( - std::basic_string_view > const&); -#endif - - template - typename boost::hash_detail::float_numbers::type hash_value(T); - -#if BOOST_HASH_HAS_OPTIONAL - template - std::size_t hash_value(std::optional const&); -#endif - -#if BOOST_HASH_HAS_VARIANT - std::size_t hash_value(std::monostate); - template - std::size_t hash_value(std::variant const&); -#endif - -#if !defined(BOOST_NO_CXX11_HDR_TYPEINDEX) - std::size_t hash_value(std::type_index); -#endif - -#if !defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR) - std::size_t hash_value(std::error_code const&); - std::size_t hash_value(std::error_condition const&); -#endif - - // Implementation - - namespace hash_detail - { - template - inline std::size_t hash_value_signed(T val) - { - const unsigned int size_t_bits = std::numeric_limits::digits; - // ceiling(std::numeric_limits::digits / size_t_bits) - 1 - const int length = (std::numeric_limits::digits - 1) - / static_cast(size_t_bits); - - std::size_t seed = 0; - T positive = val < 0 ? -1 - val : val; - - // Hopefully, this loop can be unrolled. - for(unsigned int i = length * size_t_bits; i > 0; i -= size_t_bits) - { - seed ^= (std::size_t) (positive >> i) + (seed<<6) + (seed>>2); - } - seed ^= (std::size_t) val + (seed<<6) + (seed>>2); - - return seed; - } - - template - inline std::size_t hash_value_unsigned(T val) - { - const unsigned int size_t_bits = std::numeric_limits::digits; - // ceiling(std::numeric_limits::digits / size_t_bits) - 1 - const int length = (std::numeric_limits::digits - 1) - / static_cast(size_t_bits); - - std::size_t seed = 0; - - // Hopefully, this loop can be unrolled. - for(unsigned int i = length * size_t_bits; i > 0; i -= size_t_bits) - { - seed ^= (std::size_t) (val >> i) + (seed<<6) + (seed>>2); - } - seed ^= (std::size_t) val + (seed<<6) + (seed>>2); - - return seed; - } - - template struct hash_combine_impl - { - template - inline static SizeT fn(SizeT seed, SizeT value) - { - seed ^= value + 0x9e3779b9 + (seed<<6) + (seed>>2); - return seed; - } - }; - - template<> struct hash_combine_impl<32> - { - inline static boost::uint32_t fn(boost::uint32_t h1, boost::uint32_t k1) - { - const boost::uint32_t c1 = 0xcc9e2d51; - const boost::uint32_t c2 = 0x1b873593; - - k1 *= c1; - k1 = BOOST_FUNCTIONAL_HASH_ROTL32(k1,15); - k1 *= c2; - - h1 ^= k1; - h1 = BOOST_FUNCTIONAL_HASH_ROTL32(h1,13); - h1 = h1*5+0xe6546b64; - - return h1; - } - }; - - template<> struct hash_combine_impl<64> - { - inline static boost::uint64_t fn(boost::uint64_t h, boost::uint64_t k) - { - const boost::uint64_t m = (boost::uint64_t(0xc6a4a793) << 32) + 0x5bd1e995; - const int r = 47; - - k *= m; - k ^= k >> r; - k *= m; - - h ^= k; - h *= m; - - // Completely arbitrary number, to prevent 0's - // from hashing to 0. - h += 0xe6546b64; - - return h; - } - }; - } - - template - typename boost::hash_detail::basic_numbers::type hash_value(T v) - { - return static_cast(v); - } - - template - typename boost::hash_detail::long_numbers::type hash_value(T v) - { - return hash_detail::hash_value_signed(v); - } - - template - typename boost::hash_detail::ulong_numbers::type hash_value(T v) - { - return hash_detail::hash_value_unsigned(v); - } - - template - typename boost::enable_if, std::size_t>::type - hash_value(T v) - { - return static_cast(v); - } - - // Implementation by Alberto Barbati and Dave Harris. -#if !BOOST_WORKAROUND(__DMC__, <= 0x848) - template std::size_t hash_value(T* const& v) -#else - template std::size_t hash_value(T* v) -#endif - { -#if defined(__VMS) && __INITIAL_POINTER_SIZE == 64 - // for some reason ptrdiff_t on OpenVMS compiler with - // 64 bit is not 64 bit !!! - std::size_t x = static_cast( - reinterpret_cast(v)); -#else - std::size_t x = static_cast( - reinterpret_cast(v)); -#endif - return x + (x >> 3); - } - -#if defined(BOOST_MSVC) -#pragma warning(push) -#if BOOST_MSVC <= 1400 -#pragma warning(disable:4267) // 'argument' : conversion from 'size_t' to - // 'unsigned int', possible loss of data - // A misguided attempt to detect 64-bit - // incompatability. -#endif -#endif - - template - inline void hash_combine(std::size_t& seed, T const& v) - { - boost::hash hasher; - seed = boost::hash_detail::hash_combine_impl::fn(seed, hasher(v)); - } - -#if defined(BOOST_MSVC) -#pragma warning(pop) -#endif - - template - inline std::size_t hash_range(It first, It last) - { - std::size_t seed = 0; - - for(; first != last; ++first) - { - hash_combine::value_type>(seed, *first); - } - - return seed; - } - - template - inline void hash_range(std::size_t& seed, It first, It last) - { - for(; first != last; ++first) - { - hash_combine::value_type>(seed, *first); - } - } - -#if BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x551)) - template - inline std::size_t hash_range(T* first, T* last) - { - std::size_t seed = 0; - - for(; first != last; ++first) - { - boost::hash hasher; - seed ^= hasher(*first) + 0x9e3779b9 + (seed<<6) + (seed>>2); - } - - return seed; - } - - template - inline void hash_range(std::size_t& seed, T* first, T* last) - { - for(; first != last; ++first) - { - boost::hash hasher; - seed ^= hasher(*first) + 0x9e3779b9 + (seed<<6) + (seed>>2); - } - } -#endif - -#if !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) - template< class T, unsigned N > - inline std::size_t hash_value(const T (&x)[N]) - { - return hash_range(x, x + N); - } - - template< class T, unsigned N > - inline std::size_t hash_value(T (&x)[N]) - { - return hash_range(x, x + N); - } -#endif - - template - inline std::size_t hash_value( - std::basic_string, A> const& v) - { - return hash_range(v.begin(), v.end()); - } - -#if BOOST_HASH_HAS_STRING_VIEW - template - inline std::size_t hash_value( - std::basic_string_view > const& v) - { - return hash_range(v.begin(), v.end()); - } -#endif - - template - typename boost::hash_detail::float_numbers::type hash_value(T v) - { - return boost::hash_detail::float_hash_value(v); - } - -#if BOOST_HASH_HAS_OPTIONAL - template - inline std::size_t hash_value(std::optional const& v) { - if (!v) { - // Arbitray value for empty optional. - return 0x12345678; - } else { - boost::hash hf; - return hf(*v); - } - } -#endif - -#if BOOST_HASH_HAS_VARIANT - inline std::size_t hash_value(std::monostate) { - return 0x87654321; - } - - template - inline std::size_t hash_value(std::variant const& v) { - std::size_t seed = 0; - hash_combine(seed, v.index()); - std::visit([&seed](auto&& x) { hash_combine(seed, x); }, v); - return seed; - } -#endif - - -#if !defined(BOOST_NO_CXX11_HDR_TYPEINDEX) - inline std::size_t hash_value(std::type_index v) - { - return v.hash_code(); - } -#endif - -#if !defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR) - inline std::size_t hash_value(std::error_code const& v) { - std::size_t seed = 0; - hash_combine(seed, v.value()); - hash_combine(seed, &v.category()); - return seed; - } - - inline std::size_t hash_value(std::error_condition const& v) { - std::size_t seed = 0; - hash_combine(seed, v.value()); - hash_combine(seed, &v.category()); - return seed; - } -#endif - - // - // boost::hash - // - - // Define the specializations required by the standard. The general purpose - // boost::hash is defined later in extensions.hpp if - // BOOST_HASH_NO_EXTENSIONS is not defined. - - // BOOST_HASH_SPECIALIZE - define a specialization for a type which is - // passed by copy. - // - // BOOST_HASH_SPECIALIZE_REF - define a specialization for a type which is - // passed by const reference. - // - // These are undefined later. - -#define BOOST_HASH_SPECIALIZE(type) \ - template <> struct hash \ - : public boost::hash_detail::hash_base \ - { \ - std::size_t operator()(type v) const \ - { \ - return boost::hash_value(v); \ - } \ - }; - -#define BOOST_HASH_SPECIALIZE_REF(type) \ - template <> struct hash \ - : public boost::hash_detail::hash_base \ - { \ - std::size_t operator()(type const& v) const \ - { \ - return boost::hash_value(v); \ - } \ - }; - -#define BOOST_HASH_SPECIALIZE_TEMPLATE_REF(type) \ - struct hash \ - : public boost::hash_detail::hash_base \ - { \ - std::size_t operator()(type const& v) const \ - { \ - return boost::hash_value(v); \ - } \ - }; - - BOOST_HASH_SPECIALIZE(bool) - BOOST_HASH_SPECIALIZE(char) - BOOST_HASH_SPECIALIZE(signed char) - BOOST_HASH_SPECIALIZE(unsigned char) -#if !defined(BOOST_NO_INTRINSIC_WCHAR_T) - BOOST_HASH_SPECIALIZE(wchar_t) -#endif -#if !defined(BOOST_NO_CXX11_CHAR16_T) - BOOST_HASH_SPECIALIZE(char16_t) -#endif -#if !defined(BOOST_NO_CXX11_CHAR32_T) - BOOST_HASH_SPECIALIZE(char32_t) -#endif - BOOST_HASH_SPECIALIZE(short) - BOOST_HASH_SPECIALIZE(unsigned short) - BOOST_HASH_SPECIALIZE(int) - BOOST_HASH_SPECIALIZE(unsigned int) - BOOST_HASH_SPECIALIZE(long) - BOOST_HASH_SPECIALIZE(unsigned long) - - BOOST_HASH_SPECIALIZE(float) - BOOST_HASH_SPECIALIZE(double) - BOOST_HASH_SPECIALIZE(long double) - - BOOST_HASH_SPECIALIZE_REF(std::string) -#if !defined(BOOST_NO_STD_WSTRING) && !defined(BOOST_NO_INTRINSIC_WCHAR_T) - BOOST_HASH_SPECIALIZE_REF(std::wstring) -#endif -#if !defined(BOOST_NO_CXX11_CHAR16_T) - BOOST_HASH_SPECIALIZE_REF(std::basic_string) -#endif -#if !defined(BOOST_NO_CXX11_CHAR32_T) - BOOST_HASH_SPECIALIZE_REF(std::basic_string) -#endif - -#if BOOST_HASH_HAS_STRING_VIEW - BOOST_HASH_SPECIALIZE_REF(std::string_view) -# if !defined(BOOST_NO_STD_WSTRING) && !defined(BOOST_NO_INTRINSIC_WCHAR_T) - BOOST_HASH_SPECIALIZE_REF(std::wstring_view) -# endif -# if !defined(BOOST_NO_CXX11_CHAR16_T) - BOOST_HASH_SPECIALIZE_REF(std::basic_string_view) -# endif -# if !defined(BOOST_NO_CXX11_CHAR32_T) - BOOST_HASH_SPECIALIZE_REF(std::basic_string_view) -# endif -#endif - -#if !defined(BOOST_NO_LONG_LONG) - BOOST_HASH_SPECIALIZE(boost::long_long_type) - BOOST_HASH_SPECIALIZE(boost::ulong_long_type) -#endif - -#if defined(BOOST_HAS_INT128) - BOOST_HASH_SPECIALIZE(boost::int128_type) - BOOST_HASH_SPECIALIZE(boost::uint128_type) -#endif - -#if BOOST_HASH_HAS_OPTIONAL - template - BOOST_HASH_SPECIALIZE_TEMPLATE_REF(std::optional) -#endif - -#if !defined(BOOST_HASH_HAS_VARIANT) - template - BOOST_HASH_SPECIALIZE_TEMPLATE_REF(std::variant) - BOOST_HASH_SPECIALIZE(std::monostate) -#endif - -#if !defined(BOOST_NO_CXX11_HDR_TYPEINDEX) - BOOST_HASH_SPECIALIZE(std::type_index) -#endif - -#undef BOOST_HASH_SPECIALIZE -#undef BOOST_HASH_SPECIALIZE_REF -#undef BOOST_HASH_SPECIALIZE_TEMPLATE_REF - -// Specializing boost::hash for pointers. - -#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) - - template - struct hash - : public boost::hash_detail::hash_base - { - std::size_t operator()(T* v) const - { -#if !BOOST_WORKAROUND(__SUNPRO_CC, <= 0x590) - return boost::hash_value(v); -#else - std::size_t x = static_cast( - reinterpret_cast(v)); - - return x + (x >> 3); -#endif - } - }; - -#else - - // For compilers without partial specialization, we define a - // boost::hash for all remaining types. But hash_impl is only defined - // for pointers in 'extensions.hpp' - so when BOOST_HASH_NO_EXTENSIONS - // is defined there will still be a compile error for types not supported - // in the standard. - - namespace hash_detail - { - template - struct hash_impl; - - template <> - struct hash_impl - { - template - struct inner - : public boost::hash_detail::hash_base - { - std::size_t operator()(T val) const - { -#if !BOOST_WORKAROUND(__SUNPRO_CC, <= 590) - return boost::hash_value(val); -#else - std::size_t x = static_cast( - reinterpret_cast(val)); - - return x + (x >> 3); -#endif - } - }; - }; - } - - template struct hash - : public boost::hash_detail::hash_impl::value> - ::BOOST_NESTED_TEMPLATE inner - { - }; - -#endif -} - -#undef BOOST_HASH_CHAR_TRAITS -#undef BOOST_FUNCTIONAL_HASH_ROTL32 - -#if defined(BOOST_MSVC) -#pragma warning(pop) -#endif - -#endif // BOOST_FUNCTIONAL_HASH_HASH_HPP - -// Include this outside of the include guards in case the file is included -// twice - once with BOOST_HASH_NO_EXTENSIONS defined, and then with it -// undefined. - -#if !defined(BOOST_HASH_NO_EXTENSIONS) \ - && !defined(BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP) -#include -#endif diff --git a/boost-1.80.0/boost/container_hash/hash_fwd.hpp b/boost-1.80.0/boost/container_hash/hash_fwd.hpp deleted file mode 100644 index 46340b3..0000000 --- a/boost-1.80.0/boost/container_hash/hash_fwd.hpp +++ /dev/null @@ -1,36 +0,0 @@ - -// Copyright 2005-2009 Daniel James. -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) - -// Based on Peter Dimov's proposal -// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf -// issue 6.18. - -#if !defined(BOOST_FUNCTIONAL_HASH_FWD_HPP) -#define BOOST_FUNCTIONAL_HASH_FWD_HPP - -#include -#include - -#if defined(BOOST_HAS_PRAGMA_ONCE) -#pragma once -#endif - - -namespace boost -{ - template struct hash; - - template void hash_combine(std::size_t& seed, T const& v); - - template std::size_t hash_range(It, It); - template void hash_range(std::size_t&, It, It); - -#if BOOST_WORKAROUND(BOOST_BORLANDC, BOOST_TESTED_AT(0x551)) - template inline std::size_t hash_range(T*, T*); - template inline void hash_range(std::size_t&, T*, T*); -#endif -} - -#endif diff --git a/boost-1.80.0/boost/filesystem/path_traits.hpp b/boost-1.80.0/boost/filesystem/path_traits.hpp deleted file mode 100644 index e4f9b52..0000000 --- a/boost-1.80.0/boost/filesystem/path_traits.hpp +++ /dev/null @@ -1,384 +0,0 @@ -// filesystem path_traits.hpp --------------------------------------------------------// - -// Copyright Beman Dawes 2009 - -// Distributed under the Boost Software License, Version 1.0. -// See http://www.boost.org/LICENSE_1_0.txt - -// Library home page: http://www.boost.org/libs/filesystem - -#ifndef BOOST_FILESYSTEM_PATH_TRAITS_HPP -#define BOOST_FILESYSTEM_PATH_TRAITS_HPP - -#include -#include -#include -#include -#include -#include -#include // for mbstate_t -#include -#include -#include -#include -#include -#include - -#include // must be the last #include - -namespace boost { -namespace filesystem { - -BOOST_FILESYSTEM_DECL system::error_category const& codecvt_error_category() BOOST_NOEXCEPT; -// uses std::codecvt_base::result used for error codes: -// -// ok: Conversion successful. -// partial: Not all source characters converted; one or more additional source -// characters are needed to produce the final target character, or the -// size of the target intermediate buffer was too small to hold the result. -// error: A character in the source could not be converted to the target encoding. -// noconv: The source and target characters have the same type and encoding, so no -// conversion was necessary. - -class directory_entry; - -namespace path_traits { - -typedef std::codecvt< wchar_t, char, std::mbstate_t > codecvt_type; - -// is_pathable type trait; allows disabling over-agressive class path member templates - -template< class T > -struct is_pathable -{ - static const bool value = false; -}; - -template<> -struct is_pathable< char* > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< const char* > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< wchar_t* > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< const wchar_t* > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< std::string > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< std::wstring > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< std::vector< char > > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< std::vector< wchar_t > > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< std::list< char > > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< std::list< wchar_t > > -{ - static const bool value = true; -}; - -template<> -struct is_pathable< directory_entry > -{ - static const bool value = true; -}; - -// Pathable empty - -template< class Container > -inline - // disable_if aids broken compilers (IBM, old GCC, etc.) and is harmless for - // conforming compilers. Replace by plain "bool" at some future date (2012?) - typename boost::disable_if< boost::is_array< Container >, bool >::type - empty(Container const& c) -{ - return c.begin() == c.end(); -} - -template< class T > -inline bool empty(T* const& c_str) -{ - BOOST_ASSERT(c_str); - return !*c_str; -} - -template< typename T, std::size_t N > -inline bool empty(T (&x)[N]) -{ - return !x[0]; -} - -// value types differ ---------------------------------------------------------------// -// -// A from_end argument of NULL is less efficient than a known end, so use only if needed - -// with codecvt - -BOOST_FILESYSTEM_DECL -void convert(const char* from, - const char* from_end, // NULL for null terminated MBCS - std::wstring& to, codecvt_type const& cvt); - -BOOST_FILESYSTEM_DECL -void convert(const wchar_t* from, - const wchar_t* from_end, // NULL for null terminated MBCS - std::string& to, codecvt_type const& cvt); - -inline void convert(const char* from, std::wstring& to, codecvt_type const& cvt) -{ - BOOST_ASSERT(from); - convert(from, NULL, to, cvt); -} - -inline void convert(const wchar_t* from, std::string& to, codecvt_type const& cvt) -{ - BOOST_ASSERT(from); - convert(from, NULL, to, cvt); -} - -// without codecvt - -inline void convert(const char* from, - const char* from_end, // NULL for null terminated MBCS - std::wstring& to); - -inline void convert(const wchar_t* from, - const wchar_t* from_end, // NULL for null terminated MBCS - std::string& to); - -inline void convert(const char* from, std::wstring& to); - -inline void convert(const wchar_t* from, std::string& to); - -// value types same -----------------------------------------------------------------// - -// char with codecvt - -inline void convert(const char* from, const char* from_end, std::string& to, codecvt_type const&) -{ - BOOST_ASSERT(from); - BOOST_ASSERT(from_end); - to.append(from, from_end); -} - -inline void convert(const char* from, std::string& to, codecvt_type const&) -{ - BOOST_ASSERT(from); - to += from; -} - -// wchar_t with codecvt - -inline void convert(const wchar_t* from, const wchar_t* from_end, std::wstring& to, codecvt_type const&) -{ - BOOST_ASSERT(from); - BOOST_ASSERT(from_end); - to.append(from, from_end); -} - -inline void convert(const wchar_t* from, std::wstring& to, codecvt_type const&) -{ - BOOST_ASSERT(from); - to += from; -} - -// char without codecvt - -inline void convert(const char* from, const char* from_end, std::string& to) -{ - BOOST_ASSERT(from); - BOOST_ASSERT(from_end); - to.append(from, from_end); -} - -inline void convert(const char* from, std::string& to) -{ - BOOST_ASSERT(from); - to += from; -} - -// wchar_t without codecvt - -inline void convert(const wchar_t* from, const wchar_t* from_end, std::wstring& to) -{ - BOOST_ASSERT(from); - BOOST_ASSERT(from_end); - to.append(from, from_end); -} - -inline void convert(const wchar_t* from, std::wstring& to) -{ - BOOST_ASSERT(from); - to += from; -} - -// Source dispatch -----------------------------------------------------------------// - -// contiguous containers with codecvt -template< class U > -inline void dispatch(std::string const& c, U& to, codecvt_type const& cvt) -{ - if (!c.empty()) - convert(&*c.begin(), &*c.begin() + c.size(), to, cvt); -} -template< class U > -inline void dispatch(std::wstring const& c, U& to, codecvt_type const& cvt) -{ - if (!c.empty()) - convert(&*c.begin(), &*c.begin() + c.size(), to, cvt); -} -template< class U > -inline void dispatch(std::vector< char > const& c, U& to, codecvt_type const& cvt) -{ - if (!c.empty()) - convert(&*c.begin(), &*c.begin() + c.size(), to, cvt); -} -template< class U > -inline void dispatch(std::vector< wchar_t > const& c, U& to, codecvt_type const& cvt) -{ - if (!c.empty()) - convert(&*c.begin(), &*c.begin() + c.size(), to, cvt); -} - -// contiguous containers without codecvt -template< class U > -inline void dispatch(std::string const& c, U& to) -{ - if (!c.empty()) - convert(&*c.begin(), &*c.begin() + c.size(), to); -} -template< class U > -inline void dispatch(std::wstring const& c, U& to) -{ - if (!c.empty()) - convert(&*c.begin(), &*c.begin() + c.size(), to); -} -template< class U > -inline void dispatch(std::vector< char > const& c, U& to) -{ - if (!c.empty()) - convert(&*c.begin(), &*c.begin() + c.size(), to); -} -template< class U > -inline void dispatch(std::vector< wchar_t > const& c, U& to) -{ - if (!c.empty()) - convert(&*c.begin(), &*c.begin() + c.size(), to); -} - -// non-contiguous containers with codecvt -template< class Container, class U > -inline - // disable_if aids broken compilers (IBM, old GCC, etc.) and is harmless for - // conforming compilers. Replace by plain "void" at some future date (2012?) - typename boost::disable_if< boost::is_array< Container >, void >::type - dispatch(Container const& c, U& to, codecvt_type const& cvt) -{ - if (!c.empty()) - { - std::basic_string< typename Container::value_type > s(c.begin(), c.end()); - convert(s.c_str(), s.c_str() + s.size(), to, cvt); - } -} - -// c_str -template< class T, class U > -inline void dispatch(T* const& c_str, U& to, codecvt_type const& cvt) -{ - // std::cout << "dispatch() const T *\n"; - BOOST_ASSERT(c_str); - convert(c_str, to, cvt); -} - -// Note: there is no dispatch on C-style arrays because the array may -// contain a string smaller than the array size. - -BOOST_FILESYSTEM_DECL -void dispatch(directory_entry const& de, -#ifdef BOOST_WINDOWS_API - std::wstring& to, -#else - std::string& to, -#endif - codecvt_type const&); - -// non-contiguous containers without codecvt -template< class Container, class U > -inline - // disable_if aids broken compilers (IBM, old GCC, etc.) and is harmless for - // conforming compilers. Replace by plain "void" at some future date (2012?) - typename boost::disable_if< boost::is_array< Container >, void >::type - dispatch(Container const& c, U& to) -{ - if (!c.empty()) - { - std::basic_string< typename Container::value_type > seq(c.begin(), c.end()); - convert(seq.c_str(), seq.c_str() + seq.size(), to); - } -} - -// c_str -template< class T, class U > -inline void dispatch(T* const& c_str, U& to) -{ - // std::cout << "dispatch() const T *\n"; - BOOST_ASSERT(c_str); - convert(c_str, to); -} - -// Note: there is no dispatch on C-style arrays because the array may -// contain a string smaller than the array size. - -BOOST_FILESYSTEM_DECL -void dispatch(directory_entry const& de, -#ifdef BOOST_WINDOWS_API - std::wstring& to -#else - std::string& to -#endif -); - -} // namespace path_traits -} // namespace filesystem -} // namespace boost - -#include - -#endif // BOOST_FILESYSTEM_PATH_TRAITS_HPP diff --git a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc141-mt-x32-1_80.lib b/boost-1.80.0/lib32-msvc/libboost_filesystem-vc141-mt-x32-1_80.lib deleted file mode 100644 index c1de866..0000000 Binary files a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc141-mt-x32-1_80.lib and /dev/null differ diff --git a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc142-mt-x32-1_80.lib b/boost-1.80.0/lib32-msvc/libboost_filesystem-vc142-mt-x32-1_80.lib deleted file mode 100644 index b641d00..0000000 Binary files a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc142-mt-x32-1_80.lib and /dev/null differ diff --git a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc143-mt-x32-1_80.lib b/boost-1.80.0/lib32-msvc/libboost_filesystem-vc143-mt-x32-1_80.lib deleted file mode 100644 index 85ef553..0000000 Binary files a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc143-mt-x32-1_80.lib and /dev/null differ diff --git a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc141-mt-x64-1_80.lib b/boost-1.80.0/lib64-msvc/libboost_filesystem-vc141-mt-x64-1_80.lib deleted file mode 100644 index 7ccc53b..0000000 Binary files a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc141-mt-x64-1_80.lib and /dev/null differ diff --git a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc142-mt-x64-1_80.lib b/boost-1.80.0/lib64-msvc/libboost_filesystem-vc142-mt-x64-1_80.lib deleted file mode 100644 index 8eed895..0000000 Binary files a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc142-mt-x64-1_80.lib and /dev/null differ diff --git a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc143-mt-x64-1_80.lib b/boost-1.80.0/lib64-msvc/libboost_filesystem-vc143-mt-x64-1_80.lib deleted file mode 100644 index 6f81c22..0000000 Binary files a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc143-mt-x64-1_80.lib and /dev/null differ diff --git a/boost-1.80.0/boost/assert.hpp b/boost-1.81.0/boost/assert.hpp similarity index 100% rename from boost-1.80.0/boost/assert.hpp rename to boost-1.81.0/boost/assert.hpp diff --git a/boost-1.80.0/boost/assert/source_location.hpp b/boost-1.81.0/boost/assert/source_location.hpp similarity index 100% rename from boost-1.80.0/boost/assert/source_location.hpp rename to boost-1.81.0/boost/assert/source_location.hpp diff --git a/boost-1.80.0/boost/config.hpp b/boost-1.81.0/boost/config.hpp similarity index 100% rename from boost-1.80.0/boost/config.hpp rename to boost-1.81.0/boost/config.hpp diff --git a/boost-1.80.0/boost/config/abi/borland_prefix.hpp b/boost-1.81.0/boost/config/abi/borland_prefix.hpp similarity index 100% rename from boost-1.80.0/boost/config/abi/borland_prefix.hpp rename to boost-1.81.0/boost/config/abi/borland_prefix.hpp diff --git a/boost-1.80.0/boost/config/abi/borland_suffix.hpp b/boost-1.81.0/boost/config/abi/borland_suffix.hpp similarity index 100% rename from boost-1.80.0/boost/config/abi/borland_suffix.hpp rename to boost-1.81.0/boost/config/abi/borland_suffix.hpp diff --git a/boost-1.80.0/boost/config/abi/msvc_prefix.hpp b/boost-1.81.0/boost/config/abi/msvc_prefix.hpp similarity index 100% rename from boost-1.80.0/boost/config/abi/msvc_prefix.hpp rename to boost-1.81.0/boost/config/abi/msvc_prefix.hpp diff --git a/boost-1.80.0/boost/config/abi/msvc_suffix.hpp b/boost-1.81.0/boost/config/abi/msvc_suffix.hpp similarity index 100% rename from boost-1.80.0/boost/config/abi/msvc_suffix.hpp rename to boost-1.81.0/boost/config/abi/msvc_suffix.hpp diff --git a/boost-1.80.0/boost/config/abi_prefix.hpp b/boost-1.81.0/boost/config/abi_prefix.hpp similarity index 100% rename from boost-1.80.0/boost/config/abi_prefix.hpp rename to boost-1.81.0/boost/config/abi_prefix.hpp diff --git a/boost-1.80.0/boost/config/abi_suffix.hpp b/boost-1.81.0/boost/config/abi_suffix.hpp similarity index 100% rename from boost-1.80.0/boost/config/abi_suffix.hpp rename to boost-1.81.0/boost/config/abi_suffix.hpp diff --git a/boost-1.80.0/boost/config/assert_cxx03.hpp b/boost-1.81.0/boost/config/assert_cxx03.hpp similarity index 100% rename from boost-1.80.0/boost/config/assert_cxx03.hpp rename to boost-1.81.0/boost/config/assert_cxx03.hpp diff --git a/boost-1.80.0/boost/config/assert_cxx11.hpp b/boost-1.81.0/boost/config/assert_cxx11.hpp similarity index 100% rename from boost-1.80.0/boost/config/assert_cxx11.hpp rename to boost-1.81.0/boost/config/assert_cxx11.hpp diff --git a/boost-1.80.0/boost/config/assert_cxx14.hpp b/boost-1.81.0/boost/config/assert_cxx14.hpp similarity index 100% rename from boost-1.80.0/boost/config/assert_cxx14.hpp rename to boost-1.81.0/boost/config/assert_cxx14.hpp diff --git a/boost-1.80.0/boost/config/assert_cxx17.hpp b/boost-1.81.0/boost/config/assert_cxx17.hpp similarity index 100% rename from boost-1.80.0/boost/config/assert_cxx17.hpp rename to boost-1.81.0/boost/config/assert_cxx17.hpp diff --git a/boost-1.80.0/boost/config/assert_cxx20.hpp b/boost-1.81.0/boost/config/assert_cxx20.hpp similarity index 100% rename from boost-1.80.0/boost/config/assert_cxx20.hpp rename to boost-1.81.0/boost/config/assert_cxx20.hpp diff --git a/boost-1.80.0/boost/config/assert_cxx98.hpp b/boost-1.81.0/boost/config/assert_cxx98.hpp similarity index 100% rename from boost-1.80.0/boost/config/assert_cxx98.hpp rename to boost-1.81.0/boost/config/assert_cxx98.hpp diff --git a/boost-1.80.0/boost/config/auto_link.hpp b/boost-1.81.0/boost/config/auto_link.hpp similarity index 100% rename from boost-1.80.0/boost/config/auto_link.hpp rename to boost-1.81.0/boost/config/auto_link.hpp diff --git a/boost-1.80.0/boost/config/compiler/borland.hpp b/boost-1.81.0/boost/config/compiler/borland.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/borland.hpp rename to boost-1.81.0/boost/config/compiler/borland.hpp diff --git a/boost-1.80.0/boost/config/compiler/clang.hpp b/boost-1.81.0/boost/config/compiler/clang.hpp similarity index 97% rename from boost-1.80.0/boost/config/compiler/clang.hpp rename to boost-1.81.0/boost/config/compiler/clang.hpp index f28da10..cb08d27 100644 --- a/boost-1.80.0/boost/config/compiler/clang.hpp +++ b/boost-1.81.0/boost/config/compiler/clang.hpp @@ -325,11 +325,18 @@ // All versions with __cplusplus above this value seem to support this: # define BOOST_NO_CXX14_DIGIT_SEPARATORS #endif -// -// __builtin_unreachable: -#if defined(__has_builtin) && __has_builtin(__builtin_unreachable) + +// Unreachable code markup +#if defined(__has_builtin) +#if __has_builtin(__builtin_unreachable) #define BOOST_UNREACHABLE_RETURN(x) __builtin_unreachable(); #endif +#endif + +// Deprecated symbol markup +#if __has_attribute(deprecated) +#define BOOST_DEPRECATED(msg) __attribute__((deprecated(msg))) +#endif #if (__clang_major__ == 3) && (__clang_minor__ == 0) // Apparently a clang bug: diff --git a/boost-1.80.0/boost/config/compiler/clang_version.hpp b/boost-1.81.0/boost/config/compiler/clang_version.hpp similarity index 86% rename from boost-1.80.0/boost/config/compiler/clang_version.hpp rename to boost-1.81.0/boost/config/compiler/clang_version.hpp index 9e5b408..70c5507 100644 --- a/boost-1.80.0/boost/config/compiler/clang_version.hpp +++ b/boost-1.81.0/boost/config/compiler/clang_version.hpp @@ -4,14 +4,20 @@ #if !defined(__APPLE__) -# define BOOST_CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) +# define BOOST_CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__ % 100) #else -# define BOOST_CLANG_REPORTED_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) +# define BOOST_CLANG_REPORTED_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__ % 100) // https://en.wikipedia.org/wiki/Xcode#Toolchain_versions -# if BOOST_CLANG_REPORTED_VERSION >= 130000 +# if BOOST_CLANG_REPORTED_VERSION >= 140000 +# define BOOST_CLANG_VERSION 140000 + +# elif BOOST_CLANG_REPORTED_VERSION >= 130100 +# define BOOST_CLANG_VERSION 130000 + +# elif BOOST_CLANG_REPORTED_VERSION >= 130000 # define BOOST_CLANG_VERSION 120000 # elif BOOST_CLANG_REPORTED_VERSION >= 120005 diff --git a/boost-1.80.0/boost/config/compiler/codegear.hpp b/boost-1.81.0/boost/config/compiler/codegear.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/codegear.hpp rename to boost-1.81.0/boost/config/compiler/codegear.hpp diff --git a/boost-1.80.0/boost/config/compiler/comeau.hpp b/boost-1.81.0/boost/config/compiler/comeau.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/comeau.hpp rename to boost-1.81.0/boost/config/compiler/comeau.hpp diff --git a/boost-1.80.0/boost/config/compiler/common_edg.hpp b/boost-1.81.0/boost/config/compiler/common_edg.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/common_edg.hpp rename to boost-1.81.0/boost/config/compiler/common_edg.hpp diff --git a/boost-1.80.0/boost/config/compiler/compaq_cxx.hpp b/boost-1.81.0/boost/config/compiler/compaq_cxx.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/compaq_cxx.hpp rename to boost-1.81.0/boost/config/compiler/compaq_cxx.hpp diff --git a/boost-1.80.0/boost/config/compiler/cray.hpp b/boost-1.81.0/boost/config/compiler/cray.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/cray.hpp rename to boost-1.81.0/boost/config/compiler/cray.hpp diff --git a/boost-1.80.0/boost/config/compiler/diab.hpp b/boost-1.81.0/boost/config/compiler/diab.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/diab.hpp rename to boost-1.81.0/boost/config/compiler/diab.hpp diff --git a/boost-1.80.0/boost/config/compiler/digitalmars.hpp b/boost-1.81.0/boost/config/compiler/digitalmars.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/digitalmars.hpp rename to boost-1.81.0/boost/config/compiler/digitalmars.hpp diff --git a/boost-1.80.0/boost/config/compiler/gcc.hpp b/boost-1.81.0/boost/config/compiler/gcc.hpp similarity index 97% rename from boost-1.80.0/boost/config/compiler/gcc.hpp rename to boost-1.81.0/boost/config/compiler/gcc.hpp index d4cf0e9..4cea0ce 100644 --- a/boost-1.80.0/boost/config/compiler/gcc.hpp +++ b/boost-1.81.0/boost/config/compiler/gcc.hpp @@ -340,12 +340,18 @@ // Type aliasing hint. Supported since gcc 3.3. #define BOOST_MAY_ALIAS __attribute__((__may_alias__)) -// -// __builtin_unreachable: +// Unreachable code markup #if BOOST_GCC_VERSION >= 40500 #define BOOST_UNREACHABLE_RETURN(x) __builtin_unreachable(); #endif +// Deprecated symbol markup +#if BOOST_GCC_VERSION >= 40500 +#define BOOST_DEPRECATED(msg) __attribute__((deprecated(msg))) +#else +#define BOOST_DEPRECATED(msg) __attribute__((deprecated)) +#endif + #ifndef BOOST_COMPILER # define BOOST_COMPILER "GNU C++ version " __VERSION__ #endif @@ -359,7 +365,7 @@ // versions check: // we don't know gcc prior to version 3.30: -#if (BOOST_GCC_VERSION< 30300) +#if (BOOST_GCC_VERSION < 30300) # error "Compiler not configured - please reconfigure" #endif // diff --git a/boost-1.80.0/boost/config/compiler/gcc_xml.hpp b/boost-1.81.0/boost/config/compiler/gcc_xml.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/gcc_xml.hpp rename to boost-1.81.0/boost/config/compiler/gcc_xml.hpp diff --git a/boost-1.80.0/boost/config/compiler/greenhills.hpp b/boost-1.81.0/boost/config/compiler/greenhills.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/greenhills.hpp rename to boost-1.81.0/boost/config/compiler/greenhills.hpp diff --git a/boost-1.80.0/boost/config/compiler/hp_acc.hpp b/boost-1.81.0/boost/config/compiler/hp_acc.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/hp_acc.hpp rename to boost-1.81.0/boost/config/compiler/hp_acc.hpp diff --git a/boost-1.80.0/boost/config/compiler/intel.hpp b/boost-1.81.0/boost/config/compiler/intel.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/intel.hpp rename to boost-1.81.0/boost/config/compiler/intel.hpp diff --git a/boost-1.80.0/boost/config/compiler/kai.hpp b/boost-1.81.0/boost/config/compiler/kai.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/kai.hpp rename to boost-1.81.0/boost/config/compiler/kai.hpp diff --git a/boost-1.80.0/boost/config/compiler/metrowerks.hpp b/boost-1.81.0/boost/config/compiler/metrowerks.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/metrowerks.hpp rename to boost-1.81.0/boost/config/compiler/metrowerks.hpp diff --git a/boost-1.80.0/boost/config/compiler/mpw.hpp b/boost-1.81.0/boost/config/compiler/mpw.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/mpw.hpp rename to boost-1.81.0/boost/config/compiler/mpw.hpp diff --git a/boost-1.80.0/boost/config/compiler/nvcc.hpp b/boost-1.81.0/boost/config/compiler/nvcc.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/nvcc.hpp rename to boost-1.81.0/boost/config/compiler/nvcc.hpp diff --git a/boost-1.80.0/boost/config/compiler/pathscale.hpp b/boost-1.81.0/boost/config/compiler/pathscale.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/pathscale.hpp rename to boost-1.81.0/boost/config/compiler/pathscale.hpp diff --git a/boost-1.80.0/boost/config/compiler/pgi.hpp b/boost-1.81.0/boost/config/compiler/pgi.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/pgi.hpp rename to boost-1.81.0/boost/config/compiler/pgi.hpp diff --git a/boost-1.80.0/boost/config/compiler/sgi_mipspro.hpp b/boost-1.81.0/boost/config/compiler/sgi_mipspro.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/sgi_mipspro.hpp rename to boost-1.81.0/boost/config/compiler/sgi_mipspro.hpp diff --git a/boost-1.80.0/boost/config/compiler/sunpro_cc.hpp b/boost-1.81.0/boost/config/compiler/sunpro_cc.hpp similarity index 96% rename from boost-1.80.0/boost/config/compiler/sunpro_cc.hpp rename to boost-1.81.0/boost/config/compiler/sunpro_cc.hpp index c674e8a..1ab7899 100644 --- a/boost-1.80.0/boost/config/compiler/sunpro_cc.hpp +++ b/boost-1.81.0/boost/config/compiler/sunpro_cc.hpp @@ -86,6 +86,12 @@ # define BOOST_SYMBOL_VISIBLE __global #endif +// Deprecated symbol markup +// Oracle Studio 12.4 supports deprecated attribute with a message; this is the first release that supports the attribute. +#if (__SUNPRO_CC >= 0x5130) +#define BOOST_DEPRECATED(msg) __attribute__((deprecated(msg))) +#endif + #if (__SUNPRO_CC < 0x5130) // C++03 features in 12.4: #define BOOST_NO_TWO_PHASE_NAME_LOOKUP diff --git a/boost-1.80.0/boost/config/compiler/vacpp.hpp b/boost-1.81.0/boost/config/compiler/vacpp.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/vacpp.hpp rename to boost-1.81.0/boost/config/compiler/vacpp.hpp diff --git a/boost-1.80.0/boost/config/compiler/visualc.hpp b/boost-1.81.0/boost/config/compiler/visualc.hpp similarity index 98% rename from boost-1.80.0/boost/config/compiler/visualc.hpp rename to boost-1.81.0/boost/config/compiler/visualc.hpp index 4859c7c..6378094 100644 --- a/boost-1.80.0/boost/config/compiler/visualc.hpp +++ b/boost-1.81.0/boost/config/compiler/visualc.hpp @@ -107,6 +107,14 @@ # define BOOST_NO_RTTI #endif +// Deprecated symbol markup +#if (_MSC_VER >= 1400) +#define BOOST_DEPRECATED(msg) __declspec(deprecated(msg)) +#else +// MSVC 7.1 only supports the attribute without a message +#define BOOST_DEPRECATED(msg) __declspec(deprecated) +#endif + // // TR1 features: // diff --git a/boost-1.80.0/boost/config/compiler/xlcpp.hpp b/boost-1.81.0/boost/config/compiler/xlcpp.hpp similarity index 98% rename from boost-1.80.0/boost/config/compiler/xlcpp.hpp rename to boost-1.81.0/boost/config/compiler/xlcpp.hpp index 6e86881..f002e69 100644 --- a/boost-1.80.0/boost/config/compiler/xlcpp.hpp +++ b/boost-1.81.0/boost/config/compiler/xlcpp.hpp @@ -270,6 +270,10 @@ # define BOOST_NO_CXX14_DIGIT_SEPARATORS #endif +// Deprecated symbol markup +#if __has_attribute(deprecated) +#define BOOST_DEPRECATED(msg) __attribute__((deprecated(msg))) +#endif // Unused attribute: #if defined(__GNUC__) && (__GNUC__ >= 4) diff --git a/boost-1.80.0/boost/config/compiler/xlcpp_zos.hpp b/boost-1.81.0/boost/config/compiler/xlcpp_zos.hpp similarity index 100% rename from boost-1.80.0/boost/config/compiler/xlcpp_zos.hpp rename to boost-1.81.0/boost/config/compiler/xlcpp_zos.hpp diff --git a/boost-1.80.0/boost/config/detail/cxx_composite.hpp b/boost-1.81.0/boost/config/detail/cxx_composite.hpp similarity index 100% rename from boost-1.80.0/boost/config/detail/cxx_composite.hpp rename to boost-1.81.0/boost/config/detail/cxx_composite.hpp diff --git a/boost-1.80.0/boost/config/detail/posix_features.hpp b/boost-1.81.0/boost/config/detail/posix_features.hpp similarity index 100% rename from boost-1.80.0/boost/config/detail/posix_features.hpp rename to boost-1.81.0/boost/config/detail/posix_features.hpp diff --git a/boost-1.80.0/boost/config/detail/select_compiler_config.hpp b/boost-1.81.0/boost/config/detail/select_compiler_config.hpp similarity index 100% rename from boost-1.80.0/boost/config/detail/select_compiler_config.hpp rename to boost-1.81.0/boost/config/detail/select_compiler_config.hpp diff --git a/boost-1.80.0/boost/config/detail/select_platform_config.hpp b/boost-1.81.0/boost/config/detail/select_platform_config.hpp similarity index 100% rename from boost-1.80.0/boost/config/detail/select_platform_config.hpp rename to boost-1.81.0/boost/config/detail/select_platform_config.hpp diff --git a/boost-1.80.0/boost/config/detail/select_stdlib_config.hpp b/boost-1.81.0/boost/config/detail/select_stdlib_config.hpp similarity index 100% rename from boost-1.80.0/boost/config/detail/select_stdlib_config.hpp rename to boost-1.81.0/boost/config/detail/select_stdlib_config.hpp diff --git a/boost-1.80.0/boost/config/detail/suffix.hpp b/boost-1.81.0/boost/config/detail/suffix.hpp similarity index 97% rename from boost-1.80.0/boost/config/detail/suffix.hpp rename to boost-1.81.0/boost/config/detail/suffix.hpp index 13d4bb6..898c7ac 100644 --- a/boost-1.80.0/boost/config/detail/suffix.hpp +++ b/boost-1.81.0/boost/config/detail/suffix.hpp @@ -47,6 +47,22 @@ # define BOOST_SYMBOL_VISIBLE #endif +// +// disable explicitly enforced visibility +// +#if defined(BOOST_DISABLE_EXPLICIT_SYMBOL_VISIBILITY) + +#undef BOOST_SYMBOL_EXPORT +#define BOOST_SYMBOL_EXPORT + +#undef BOOST_SYMBOL_IMPORT +#define BOOST_SYMBOL_IMPORT + +#undef BOOST_SYMBOL_VISIBLE +#define BOOST_SYMBOL_VISIBLE + +#endif + // // look for long long by looking for the appropriate macros in . // Note that we use limits.h rather than climits for maximal portability, @@ -668,6 +684,23 @@ namespace std{ using ::type_info; } # define BOOST_NORETURN #endif +// BOOST_DEPRECATED -------------------------------------------// +// The macro can be used to mark deprecated symbols, such as functions, objects and types. +// Any code that uses these symbols will produce warnings, possibly with a message specified +// as an argument. The warnings can be suppressed by defining BOOST_ALLOW_DEPRECATED_SYMBOLS +// or BOOST_ALLOW_DEPRECATED. +#if !defined(BOOST_DEPRECATED) && __cplusplus >= 201402 +#define BOOST_DEPRECATED(msg) [[deprecated(msg)]] +#endif + +#if defined(BOOST_ALLOW_DEPRECATED_SYMBOLS) || defined(BOOST_ALLOW_DEPRECATED) +#undef BOOST_DEPRECATED +#endif + +#if !defined(BOOST_DEPRECATED) +#define BOOST_DEPRECATED(msg) +#endif + // Branch prediction hints // These macros are intended to wrap conditional expressions that yield true or false // diff --git a/boost-1.80.0/boost/config/header_deprecated.hpp b/boost-1.81.0/boost/config/header_deprecated.hpp similarity index 90% rename from boost-1.80.0/boost/config/header_deprecated.hpp rename to boost-1.81.0/boost/config/header_deprecated.hpp index 864554f..120b4b3 100644 --- a/boost-1.80.0/boost/config/header_deprecated.hpp +++ b/boost-1.81.0/boost/config/header_deprecated.hpp @@ -17,7 +17,7 @@ #include -#if defined(BOOST_ALLOW_DEPRECATED_HEADERS) +#if defined(BOOST_ALLOW_DEPRECATED_HEADERS) || defined(BOOST_ALLOW_DEPRECATED) # define BOOST_HEADER_DEPRECATED(a) #else # define BOOST_HEADER_DEPRECATED(a) BOOST_PRAGMA_MESSAGE("This header is deprecated. Use " a " instead.") diff --git a/boost-1.80.0/boost/config/helper_macros.hpp b/boost-1.81.0/boost/config/helper_macros.hpp similarity index 100% rename from boost-1.80.0/boost/config/helper_macros.hpp rename to boost-1.81.0/boost/config/helper_macros.hpp diff --git a/boost-1.80.0/boost/config/no_tr1/cmath.hpp b/boost-1.81.0/boost/config/no_tr1/cmath.hpp similarity index 100% rename from boost-1.80.0/boost/config/no_tr1/cmath.hpp rename to boost-1.81.0/boost/config/no_tr1/cmath.hpp diff --git a/boost-1.80.0/boost/config/no_tr1/complex.hpp b/boost-1.81.0/boost/config/no_tr1/complex.hpp similarity index 100% rename from boost-1.80.0/boost/config/no_tr1/complex.hpp rename to boost-1.81.0/boost/config/no_tr1/complex.hpp diff --git a/boost-1.80.0/boost/config/no_tr1/functional.hpp b/boost-1.81.0/boost/config/no_tr1/functional.hpp similarity index 100% rename from boost-1.80.0/boost/config/no_tr1/functional.hpp rename to boost-1.81.0/boost/config/no_tr1/functional.hpp diff --git a/boost-1.80.0/boost/config/no_tr1/memory.hpp b/boost-1.81.0/boost/config/no_tr1/memory.hpp similarity index 100% rename from boost-1.80.0/boost/config/no_tr1/memory.hpp rename to boost-1.81.0/boost/config/no_tr1/memory.hpp diff --git a/boost-1.80.0/boost/config/no_tr1/utility.hpp b/boost-1.81.0/boost/config/no_tr1/utility.hpp similarity index 100% rename from boost-1.80.0/boost/config/no_tr1/utility.hpp rename to boost-1.81.0/boost/config/no_tr1/utility.hpp diff --git a/boost-1.80.0/boost/config/platform/aix.hpp b/boost-1.81.0/boost/config/platform/aix.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/aix.hpp rename to boost-1.81.0/boost/config/platform/aix.hpp diff --git a/boost-1.80.0/boost/config/platform/amigaos.hpp b/boost-1.81.0/boost/config/platform/amigaos.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/amigaos.hpp rename to boost-1.81.0/boost/config/platform/amigaos.hpp diff --git a/boost-1.80.0/boost/config/platform/beos.hpp b/boost-1.81.0/boost/config/platform/beos.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/beos.hpp rename to boost-1.81.0/boost/config/platform/beos.hpp diff --git a/boost-1.80.0/boost/config/platform/bsd.hpp b/boost-1.81.0/boost/config/platform/bsd.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/bsd.hpp rename to boost-1.81.0/boost/config/platform/bsd.hpp diff --git a/boost-1.80.0/boost/config/platform/cloudabi.hpp b/boost-1.81.0/boost/config/platform/cloudabi.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/cloudabi.hpp rename to boost-1.81.0/boost/config/platform/cloudabi.hpp diff --git a/boost-1.80.0/boost/config/platform/cray.hpp b/boost-1.81.0/boost/config/platform/cray.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/cray.hpp rename to boost-1.81.0/boost/config/platform/cray.hpp diff --git a/boost-1.80.0/boost/config/platform/cygwin.hpp b/boost-1.81.0/boost/config/platform/cygwin.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/cygwin.hpp rename to boost-1.81.0/boost/config/platform/cygwin.hpp diff --git a/boost-1.80.0/boost/config/platform/haiku.hpp b/boost-1.81.0/boost/config/platform/haiku.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/haiku.hpp rename to boost-1.81.0/boost/config/platform/haiku.hpp diff --git a/boost-1.80.0/boost/config/platform/hpux.hpp b/boost-1.81.0/boost/config/platform/hpux.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/hpux.hpp rename to boost-1.81.0/boost/config/platform/hpux.hpp diff --git a/boost-1.80.0/boost/config/platform/irix.hpp b/boost-1.81.0/boost/config/platform/irix.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/irix.hpp rename to boost-1.81.0/boost/config/platform/irix.hpp diff --git a/boost-1.80.0/boost/config/platform/linux.hpp b/boost-1.81.0/boost/config/platform/linux.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/linux.hpp rename to boost-1.81.0/boost/config/platform/linux.hpp diff --git a/boost-1.80.0/boost/config/platform/macos.hpp b/boost-1.81.0/boost/config/platform/macos.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/macos.hpp rename to boost-1.81.0/boost/config/platform/macos.hpp diff --git a/boost-1.80.0/boost/config/platform/qnxnto.hpp b/boost-1.81.0/boost/config/platform/qnxnto.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/qnxnto.hpp rename to boost-1.81.0/boost/config/platform/qnxnto.hpp diff --git a/boost-1.80.0/boost/config/platform/solaris.hpp b/boost-1.81.0/boost/config/platform/solaris.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/solaris.hpp rename to boost-1.81.0/boost/config/platform/solaris.hpp diff --git a/boost-1.80.0/boost/config/platform/symbian.hpp b/boost-1.81.0/boost/config/platform/symbian.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/symbian.hpp rename to boost-1.81.0/boost/config/platform/symbian.hpp diff --git a/boost-1.80.0/boost/config/platform/vms.hpp b/boost-1.81.0/boost/config/platform/vms.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/vms.hpp rename to boost-1.81.0/boost/config/platform/vms.hpp diff --git a/boost-1.80.0/boost/config/platform/vxworks.hpp b/boost-1.81.0/boost/config/platform/vxworks.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/vxworks.hpp rename to boost-1.81.0/boost/config/platform/vxworks.hpp diff --git a/boost-1.80.0/boost/config/platform/wasm.hpp b/boost-1.81.0/boost/config/platform/wasm.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/wasm.hpp rename to boost-1.81.0/boost/config/platform/wasm.hpp diff --git a/boost-1.80.0/boost/config/platform/win32.hpp b/boost-1.81.0/boost/config/platform/win32.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/win32.hpp rename to boost-1.81.0/boost/config/platform/win32.hpp diff --git a/boost-1.80.0/boost/config/platform/zos.hpp b/boost-1.81.0/boost/config/platform/zos.hpp similarity index 100% rename from boost-1.80.0/boost/config/platform/zos.hpp rename to boost-1.81.0/boost/config/platform/zos.hpp diff --git a/boost-1.80.0/boost/config/pragma_message.hpp b/boost-1.81.0/boost/config/pragma_message.hpp similarity index 100% rename from boost-1.80.0/boost/config/pragma_message.hpp rename to boost-1.81.0/boost/config/pragma_message.hpp diff --git a/boost-1.80.0/boost/config/requires_threads.hpp b/boost-1.81.0/boost/config/requires_threads.hpp similarity index 100% rename from boost-1.80.0/boost/config/requires_threads.hpp rename to boost-1.81.0/boost/config/requires_threads.hpp diff --git a/boost-1.80.0/boost/config/stdlib/dinkumware.hpp b/boost-1.81.0/boost/config/stdlib/dinkumware.hpp similarity index 100% rename from boost-1.80.0/boost/config/stdlib/dinkumware.hpp rename to boost-1.81.0/boost/config/stdlib/dinkumware.hpp diff --git a/boost-1.80.0/boost/config/stdlib/libcomo.hpp b/boost-1.81.0/boost/config/stdlib/libcomo.hpp similarity index 100% rename from boost-1.80.0/boost/config/stdlib/libcomo.hpp rename to boost-1.81.0/boost/config/stdlib/libcomo.hpp diff --git a/boost-1.80.0/boost/config/stdlib/libcpp.hpp b/boost-1.81.0/boost/config/stdlib/libcpp.hpp similarity index 97% rename from boost-1.80.0/boost/config/stdlib/libcpp.hpp rename to boost-1.81.0/boost/config/stdlib/libcpp.hpp index bc8536e..0e9f244 100644 --- a/boost-1.80.0/boost/config/stdlib/libcpp.hpp +++ b/boost-1.81.0/boost/config/stdlib/libcpp.hpp @@ -168,4 +168,13 @@ # define BOOST_NO_CXX14_HDR_SHARED_MUTEX #endif +#if _LIBCPP_VERSION >= 15000 +// +// Unary function is now deprecated in C++11 and later: +// +#if __cplusplus >= 201103L +#define BOOST_NO_CXX98_FUNCTION_BASE +#endif +#endif + // --- end --- diff --git a/boost-1.80.0/boost/config/stdlib/libstdcpp3.hpp b/boost-1.81.0/boost/config/stdlib/libstdcpp3.hpp similarity index 98% rename from boost-1.80.0/boost/config/stdlib/libstdcpp3.hpp rename to boost-1.81.0/boost/config/stdlib/libstdcpp3.hpp index 2219883..85ad1a6 100644 --- a/boost-1.80.0/boost/config/stdlib/libstdcpp3.hpp +++ b/boost-1.81.0/boost/config/stdlib/libstdcpp3.hpp @@ -139,7 +139,9 @@ // #ifdef __clang__ -#if __has_include() +#if __has_include() +# define BOOST_LIBSTDCXX_VERSION 120100 +#elif __has_include() # define BOOST_LIBSTDCXX_VERSION 110100 #elif __has_include() # define BOOST_LIBSTDCXX_VERSION 100100 @@ -457,7 +459,7 @@ extern "C" char *gets (char *__s); # endif #endif -#if (!defined(_GTHREAD_USE_MUTEX_TIMEDLOCK) || (_GTHREAD_USE_MUTEX_TIMEDLOCK == 0)) && !defined(BOOST_NO_CXX11_HDR_MUTEX) +#if (!defined(_GTHREAD_USE_MUTEX_TIMEDLOCK) || (_GTHREAD_USE_MUTEX_TIMEDLOCK == 0)) && !defined(BOOST_NO_CXX11_HDR_MUTEX) && (__GNUC__ < 6) // Timed mutexes are not always available: # define BOOST_NO_CXX11_HDR_MUTEX #endif diff --git a/boost-1.80.0/boost/config/stdlib/modena.hpp b/boost-1.81.0/boost/config/stdlib/modena.hpp similarity index 100% rename from boost-1.80.0/boost/config/stdlib/modena.hpp rename to boost-1.81.0/boost/config/stdlib/modena.hpp diff --git a/boost-1.80.0/boost/config/stdlib/msl.hpp b/boost-1.81.0/boost/config/stdlib/msl.hpp similarity index 100% rename from boost-1.80.0/boost/config/stdlib/msl.hpp rename to boost-1.81.0/boost/config/stdlib/msl.hpp diff --git a/boost-1.80.0/boost/config/stdlib/roguewave.hpp b/boost-1.81.0/boost/config/stdlib/roguewave.hpp similarity index 100% rename from boost-1.80.0/boost/config/stdlib/roguewave.hpp rename to boost-1.81.0/boost/config/stdlib/roguewave.hpp diff --git a/boost-1.80.0/boost/config/stdlib/sgi.hpp b/boost-1.81.0/boost/config/stdlib/sgi.hpp similarity index 100% rename from boost-1.80.0/boost/config/stdlib/sgi.hpp rename to boost-1.81.0/boost/config/stdlib/sgi.hpp diff --git a/boost-1.80.0/boost/config/stdlib/stlport.hpp b/boost-1.81.0/boost/config/stdlib/stlport.hpp similarity index 100% rename from boost-1.80.0/boost/config/stdlib/stlport.hpp rename to boost-1.81.0/boost/config/stdlib/stlport.hpp diff --git a/boost-1.80.0/boost/config/stdlib/vacpp.hpp b/boost-1.81.0/boost/config/stdlib/vacpp.hpp similarity index 100% rename from boost-1.80.0/boost/config/stdlib/vacpp.hpp rename to boost-1.81.0/boost/config/stdlib/vacpp.hpp diff --git a/boost-1.80.0/boost/config/stdlib/xlcpp_zos.hpp b/boost-1.81.0/boost/config/stdlib/xlcpp_zos.hpp similarity index 100% rename from boost-1.80.0/boost/config/stdlib/xlcpp_zos.hpp rename to boost-1.81.0/boost/config/stdlib/xlcpp_zos.hpp diff --git a/boost-1.80.0/boost/config/user.hpp b/boost-1.81.0/boost/config/user.hpp similarity index 100% rename from boost-1.80.0/boost/config/user.hpp rename to boost-1.81.0/boost/config/user.hpp diff --git a/boost-1.80.0/boost/config/warning_disable.hpp b/boost-1.81.0/boost/config/warning_disable.hpp similarity index 100% rename from boost-1.80.0/boost/config/warning_disable.hpp rename to boost-1.81.0/boost/config/warning_disable.hpp diff --git a/boost-1.80.0/boost/config/workaround.hpp b/boost-1.81.0/boost/config/workaround.hpp similarity index 100% rename from boost-1.80.0/boost/config/workaround.hpp rename to boost-1.81.0/boost/config/workaround.hpp diff --git a/boost-1.81.0/boost/container_hash/detail/hash_mix.hpp b/boost-1.81.0/boost/container_hash/detail/hash_mix.hpp new file mode 100644 index 0000000..327da9e --- /dev/null +++ b/boost-1.81.0/boost/container_hash/detail/hash_mix.hpp @@ -0,0 +1,113 @@ +// Copyright 2022 Peter Dimov +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +#ifndef BOOST_HASH_DETAIL_HASH_MIX_HPP +#define BOOST_HASH_DETAIL_HASH_MIX_HPP + +#include +#include +#include + +namespace boost +{ +namespace hash_detail +{ + +template struct hash_mix_impl; + +// hash_mix for 64 bit size_t +// +// The general "xmxmx" form of state of the art 64 bit mixers originates +// from Murmur3 by Austin Appleby, which uses the following function as +// its "final mix": +// +// k ^= k >> 33; +// k *= 0xff51afd7ed558ccd; +// k ^= k >> 33; +// k *= 0xc4ceb9fe1a85ec53; +// k ^= k >> 33; +// +// (https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp) +// +// It has subsequently been improved multiple times by different authors +// by changing the constants. The most well known improvement is the +// so-called "variant 13" function by David Stafford: +// +// k ^= k >> 30; +// k *= 0xbf58476d1ce4e5b9; +// k ^= k >> 27; +// k *= 0x94d049bb133111eb; +// k ^= k >> 31; +// +// (https://zimbry.blogspot.com/2011/09/better-bit-mixing-improving-on.html) +// +// This mixing function is used in the splitmix64 RNG: +// http://xorshift.di.unimi.it/splitmix64.c +// +// We use Jon Maiga's implementation from +// http://jonkagstrom.com/mx3/mx3_rev2.html +// +// x ^= x >> 32; +// x *= 0xe9846af9b1a615d; +// x ^= x >> 32; +// x *= 0xe9846af9b1a615d; +// x ^= x >> 28; +// +// An equally good alternative is Pelle Evensen's Moremur: +// +// x ^= x >> 27; +// x *= 0x3C79AC492BA7B653; +// x ^= x >> 33; +// x *= 0x1C69B3F74AC4AE35; +// x ^= x >> 27; +// +// (https://mostlymangling.blogspot.com/2019/12/stronger-better-morer-moremur-better.html) + +template<> struct hash_mix_impl<64> +{ + inline static boost::uint64_t fn( boost::uint64_t x ) + { + boost::uint64_t const m = (boost::uint64_t(0xe9846af) << 32) + 0x9b1a615d; + + x ^= x >> 32; + x *= m; + x ^= x >> 32; + x *= m; + x ^= x >> 28; + + return x; + } +}; + +// hash_mix for 32 bit size_t +// +// We use the "best xmxmx" implementation from +// https://github.com/skeeto/hash-prospector/issues/19 + +template<> struct hash_mix_impl<32> +{ + inline static boost::uint32_t fn( boost::uint32_t x ) + { + boost::uint32_t const m1 = 0x21f0aaad; + boost::uint32_t const m2 = 0x735a2d97; + + x ^= x >> 16; + x *= m1; + x ^= x >> 15; + x *= m2; + x ^= x >> 15; + + return x; + } +}; + +inline std::size_t hash_mix( std::size_t v ) +{ + return hash_mix_impl::fn( v ); +} + +} // namespace hash_detail +} // namespace boost + +#endif // #ifndef BOOST_HASH_DETAIL_HASH_MIX_HPP diff --git a/boost-1.81.0/boost/container_hash/detail/hash_range.hpp b/boost-1.81.0/boost/container_hash/detail/hash_range.hpp new file mode 100644 index 0000000..28fd239 --- /dev/null +++ b/boost-1.81.0/boost/container_hash/detail/hash_range.hpp @@ -0,0 +1,173 @@ +// Copyright 2022 Peter Dimov +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +#ifndef BOOST_HASH_DETAIL_HASH_RANGE_HPP +#define BOOST_HASH_DETAIL_HASH_RANGE_HPP + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace boost +{ +namespace hash_detail +{ + +template struct is_char_type: public boost::false_type {}; + +#if CHAR_BIT == 8 + +template<> struct is_char_type: public boost::true_type {}; +template<> struct is_char_type: public boost::true_type {}; +template<> struct is_char_type: public boost::true_type {}; + +#if defined(__cpp_char8_t) && __cpp_char8_t >= 201811L +template<> struct is_char_type: public boost::true_type {}; +#endif + +#if defined(__cpp_lib_byte) && __cpp_lib_byte >= 201603L +template<> struct is_char_type: public boost::true_type {}; +#endif + +#endif + +template +inline typename boost::enable_if_< + !is_char_type::value_type>::value, +std::size_t >::type + hash_range( std::size_t seed, It first, It last ) +{ + for( ; first != last; ++first ) + { + hash_combine::value_type>( seed, *first ); + } + + return seed; +} + +template +inline typename boost::enable_if_< + is_char_type::value_type>::value && + is_same::iterator_category, std::random_access_iterator_tag>::value, +std::size_t>::type + hash_range( std::size_t seed, It first, It last ) +{ + std::size_t n = static_cast( last - first ); + + for( ; n >= 4; first += 4, n -= 4 ) + { + // clang 5+, gcc 5+ figure out this pattern and use a single mov on x86 + // gcc on s390x and power BE even knows how to use load-reverse + + boost::uint32_t w = + static_cast( static_cast( first[0] ) ) | + static_cast( static_cast( first[1] ) ) << 8 | + static_cast( static_cast( first[2] ) ) << 16 | + static_cast( static_cast( first[3] ) ) << 24; + + hash_combine( seed, w ); + } + + { + // add a trailing suffix byte of 0x01 because otherwise sequences of + // trailing zeroes are indistinguishable from end of string + + boost::uint32_t w = 0x01u; + + switch( n ) + { + case 1: + + w = + static_cast( static_cast( first[0] ) ) | + 0x0100u; + + break; + + case 2: + + w = + static_cast( static_cast( first[0] ) ) | + static_cast( static_cast( first[1] ) ) << 8 | + 0x010000u; + + break; + + case 3: + + w = + static_cast( static_cast( first[0] ) ) | + static_cast( static_cast( first[1] ) ) << 8 | + static_cast( static_cast( first[2] ) ) << 16 | + 0x01000000u; + + break; + } + + hash_combine( seed, w ); + } + + return seed; +} + +template +inline typename boost::enable_if_< + is_char_type::value_type>::value && + !is_same::iterator_category, std::random_access_iterator_tag>::value, +std::size_t>::type + hash_range( std::size_t seed, It first, It last ) +{ + for( ;; ) + { + boost::uint32_t w = 0; + + if( first == last ) + { + hash_combine( seed, w | 0x01u ); + return seed; + } + + w |= static_cast( static_cast( *first ) ); + ++first; + + if( first == last ) + { + hash_combine( seed, w | 0x0100u ); + return seed; + } + + w |= static_cast( static_cast( *first ) ) << 8; + ++first; + + if( first == last ) + { + hash_combine( seed, w | 0x010000u ); + return seed; + } + + w |= static_cast( static_cast( *first ) ) << 16; + ++first; + + if( first == last ) + { + hash_combine( seed, w | 0x01000000u ); + return seed; + } + + w |= static_cast( static_cast( *first ) ) << 24; + ++first; + + hash_combine( seed, w ); + } +} + +} // namespace hash_detail +} // namespace boost + +#endif // #ifndef BOOST_HASH_DETAIL_HASH_RANGE_HPP diff --git a/boost-1.81.0/boost/container_hash/detail/hash_tuple.hpp b/boost-1.81.0/boost/container_hash/detail/hash_tuple.hpp new file mode 100644 index 0000000..597cee9 --- /dev/null +++ b/boost-1.81.0/boost/container_hash/detail/hash_tuple.hpp @@ -0,0 +1,133 @@ +// Copyright 2005-2009 Daniel James. +// Copyright 2021 Peter Dimov. +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +#ifndef BOOST_HASH_DETAIL_HASH_TUPLE_LIKE_HPP +#define BOOST_HASH_DETAIL_HASH_TUPLE_LIKE_HPP + +#include +#include +#include + +#if defined(BOOST_NO_CXX11_HDR_TUPLE) + +// no support + +#else + +#include + +namespace boost +{ +namespace hash_detail +{ + +template +inline typename boost::enable_if_<(I == std::tuple_size::value), + void>::type + hash_combine_tuple(std::size_t&, T const&) +{ +} + +template +inline typename boost::enable_if_<(I < std::tuple_size::value), + void>::type + hash_combine_tuple(std::size_t& seed, T const& v) +{ + boost::hash_combine(seed, std::get(v)); + boost::hash_detail::hash_combine_tuple(seed, v); +} + +template +inline std::size_t hash_tuple(T const& v) +{ + std::size_t seed = 0; + boost::hash_detail::hash_combine_tuple<0>(seed, v); + return seed; +} + +} // namespace hash_detail + +#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +#else + +inline std::size_t hash_value(std::tuple<> const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +template +inline std::size_t hash_value(std::tuple const& v) +{ + return boost::hash_detail::hash_tuple(v); +} + +#endif // #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) + +} // namespace boost + +#endif // #if defined(BOOST_NO_CXX11_HDR_TUPLE) + +#endif // #ifndef BOOST_HASH_DETAIL_HASH_TUPLE_LIKE_HPP diff --git a/boost-1.81.0/boost/container_hash/detail/limits.hpp b/boost-1.81.0/boost/container_hash/detail/limits.hpp new file mode 100644 index 0000000..7890309 --- /dev/null +++ b/boost-1.81.0/boost/container_hash/detail/limits.hpp @@ -0,0 +1,19 @@ +// Copyright 2005-2009 Daniel James. +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +#ifndef BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER +#define BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER + +#include + +namespace boost +{ + namespace hash_detail + { + template + struct limits : std::numeric_limits {}; + } +} + +#endif // #ifndef BOOST_FUNCTIONAL_HASH_DETAIL_LIMITS_HEADER diff --git a/boost-1.81.0/boost/container_hash/extensions.hpp b/boost-1.81.0/boost/container_hash/extensions.hpp new file mode 100644 index 0000000..809d397 --- /dev/null +++ b/boost-1.81.0/boost/container_hash/extensions.hpp @@ -0,0 +1,10 @@ +// Copyright 2005-2009 Daniel James. +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +#ifndef BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP +#define BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP + +#include + +#endif // #ifndef BOOST_FUNCTIONAL_HASH_EXTENSIONS_HPP diff --git a/boost-1.81.0/boost/container_hash/hash.hpp b/boost-1.81.0/boost/container_hash/hash.hpp new file mode 100644 index 0000000..306c279 --- /dev/null +++ b/boost-1.81.0/boost/container_hash/hash.hpp @@ -0,0 +1,662 @@ +// Copyright 2005-2014 Daniel James. +// Copyright 2021, 2022 Peter Dimov. +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +// Based on Peter Dimov's proposal +// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2005/n1756.pdf +// issue 6.18. + +#ifndef BOOST_FUNCTIONAL_HASH_HASH_HPP +#define BOOST_FUNCTIONAL_HASH_HASH_HPP + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#if defined(BOOST_DESCRIBE_CXX14) +# include +#endif + +#include +#include +#include +#include +#include +#include +#include + +#if !defined(BOOST_NO_CXX11_SMART_PTR) +# include +#endif + +#if !defined(BOOST_NO_CXX11_HDR_TYPEINDEX) +#include +#endif + +#if !defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR) +#include +#endif + +#if !defined(BOOST_NO_CXX17_HDR_OPTIONAL) +#include +#endif + +#if !defined(BOOST_NO_CXX17_HDR_VARIANT) +#include +#endif + +#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) +# include +#endif + +namespace boost +{ + + // + // boost::hash_value + // + + // integral types + + namespace hash_detail + { + template sizeof(std::size_t)), + bool is_unsigned = boost::is_unsigned::value, + std::size_t size_t_bits = sizeof(std::size_t) * CHAR_BIT, + std::size_t type_bits = sizeof(T) * CHAR_BIT> + struct hash_integral_impl; + + template struct hash_integral_impl + { + static std::size_t fn( T v ) + { + return static_cast( v ); + } + }; + + template struct hash_integral_impl + { + static std::size_t fn( T v ) + { + typedef typename boost::make_unsigned::type U; + + if( v >= 0 ) + { + return hash_integral_impl::fn( static_cast( v ) ); + } + else + { + return ~hash_integral_impl::fn( static_cast( ~static_cast( v ) ) ); + } + } + }; + + template struct hash_integral_impl + { + static std::size_t fn( T v ) + { + std::size_t seed = 0; + + seed = static_cast( v >> 32 ) + hash_detail::hash_mix( seed ); + seed = static_cast( v ) + hash_detail::hash_mix( seed ); + + return seed; + } + }; + + template struct hash_integral_impl + { + static std::size_t fn( T v ) + { + std::size_t seed = 0; + + seed = static_cast( v >> 96 ) + hash_detail::hash_mix( seed ); + seed = static_cast( v >> 64 ) + hash_detail::hash_mix( seed ); + seed = static_cast( v >> 32 ) + hash_detail::hash_mix( seed ); + seed = static_cast( v ) + hash_detail::hash_mix( seed ); + + return seed; + } + }; + + template struct hash_integral_impl + { + static std::size_t fn( T v ) + { + std::size_t seed = 0; + + seed = static_cast( v >> 64 ) + hash_detail::hash_mix( seed ); + seed = static_cast( v ) + hash_detail::hash_mix( seed ); + + return seed; + } + }; + + } // namespace hash_detail + + template + typename boost::enable_if_::value, std::size_t>::type + hash_value( T v ) + { + return hash_detail::hash_integral_impl::fn( v ); + } + + // enumeration types + + template + typename boost::enable_if_::value, std::size_t>::type + hash_value( T v ) + { + // This should in principle return the equivalent of + // + // boost::hash_value( to_underlying(v) ); + // + // However, the C++03 implementation of underlying_type, + // + // conditional, make_signed, make_unsigned>::type::type + // + // generates a legitimate -Wconversion warning in is_signed, + // because -1 is not a valid enum value when all the enumerators + // are nonnegative. + // + // So the legacy implementation will have to do for now. + + return static_cast( v ); + } + + // floating point types + + namespace hash_detail + { + template::digits> + struct hash_float_impl; + + // float + template struct hash_float_impl + { + static std::size_t fn( T v ) + { + boost::uint32_t w; + std::memcpy( &w, &v, sizeof( v ) ); + + return w; + } + }; + + // double + template struct hash_float_impl + { + static std::size_t fn( T v ) + { + boost::uint64_t w; + std::memcpy( &w, &v, sizeof( v ) ); + + return hash_value( w ); + } + }; + + // 80 bit long double in 12 bytes + template struct hash_float_impl + { + static std::size_t fn( T v ) + { + boost::uint64_t w[ 2 ] = {}; + std::memcpy( &w, &v, 80 / CHAR_BIT ); + + std::size_t seed = 0; + + seed = hash_value( w[0] ) + hash_detail::hash_mix( seed ); + seed = hash_value( w[1] ) + hash_detail::hash_mix( seed ); + + return seed; + } + }; + + // 80 bit long double in 16 bytes + template struct hash_float_impl + { + static std::size_t fn( T v ) + { + boost::uint64_t w[ 2 ] = {}; + std::memcpy( &w, &v, 80 / CHAR_BIT ); + + std::size_t seed = 0; + + seed = hash_value( w[0] ) + hash_detail::hash_mix( seed ); + seed = hash_value( w[1] ) + hash_detail::hash_mix( seed ); + + return seed; + } + }; + + // 128 bit long double + template struct hash_float_impl + { + static std::size_t fn( T v ) + { + boost::uint64_t w[ 2 ]; + std::memcpy( &w, &v, sizeof( v ) ); + + std::size_t seed = 0; + +#if defined(__FLOAT_WORD_ORDER__) && defined(__ORDER_BIG_ENDIAN__) && __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__ + + seed = hash_value( w[1] ) + hash_detail::hash_mix( seed ); + seed = hash_value( w[0] ) + hash_detail::hash_mix( seed ); + +#else + + seed = hash_value( w[0] ) + hash_detail::hash_mix( seed ); + seed = hash_value( w[1] ) + hash_detail::hash_mix( seed ); + +#endif + return seed; + } + }; + + } // namespace hash_detail + + template + typename boost::enable_if_::value, std::size_t>::type + hash_value( T v ) + { + return boost::hash_detail::hash_float_impl::fn( v + 0 ); + } + + // pointer types + + // `x + (x >> 3)` adjustment by Alberto Barbati and Dave Harris. + template std::size_t hash_value( T* const& v ) + { + boost::uintptr_t x = reinterpret_cast( v ); + return boost::hash_value( x + (x >> 3) ); + } + + // array types + + template + inline std::size_t hash_value( T const (&x)[ N ] ) + { + return boost::hash_range( x, x + N ); + } + + template + inline std::size_t hash_value( T (&x)[ N ] ) + { + return boost::hash_range( x, x + N ); + } + + // complex + + template + std::size_t hash_value( std::complex const& v ) + { + std::size_t re = boost::hash()( v.real() ); + std::size_t im = boost::hash()( v.imag() ); + + return re + hash_detail::hash_mix( im ); + } + + // pair + + template + std::size_t hash_value( std::pair const& v ) + { + std::size_t seed = 0; + + boost::hash_combine( seed, v.first ); + boost::hash_combine( seed, v.second ); + + return seed; + } + + // ranges (list, set, deque...) + + template + typename boost::enable_if_::value && !container_hash::is_contiguous_range::value && !container_hash::is_unordered_range::value, std::size_t>::type + hash_value( T const& v ) + { + return boost::hash_range( v.begin(), v.end() ); + } + + // contiguous ranges (string, vector, array) + + template + typename boost::enable_if_::value, std::size_t>::type + hash_value( T const& v ) + { + return boost::hash_range( v.data(), v.data() + v.size() ); + } + + // unordered ranges (unordered_set, unordered_map) + + template + typename boost::enable_if_::value, std::size_t>::type + hash_value( T const& v ) + { + return boost::hash_unordered_range( v.begin(), v.end() ); + } + +#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && ( \ + ( defined(_MSVC_STL_VERSION) && _MSVC_STL_VERSION < 142 ) || \ + ( !defined(_MSVC_STL_VERSION) && defined(_CPPLIB_VER) && _CPPLIB_VER >= 520 ) ) + + // resolve ambiguity with unconstrained stdext::hash_value in :-/ + + template class L, class... T> + typename boost::enable_if_>::value && !container_hash::is_contiguous_range>::value && !container_hash::is_unordered_range>::value, std::size_t>::type + hash_value( L const& v ) + { + return boost::hash_range( v.begin(), v.end() ); + } + + // contiguous ranges (string, vector, array) + + template class L, class... T> + typename boost::enable_if_>::value, std::size_t>::type + hash_value( L const& v ) + { + return boost::hash_range( v.data(), v.data() + v.size() ); + } + + template class L, class T, std::size_t N> + typename boost::enable_if_>::value, std::size_t>::type + hash_value( L const& v ) + { + return boost::hash_range( v.data(), v.data() + v.size() ); + } + + // unordered ranges (unordered_set, unordered_map) + + template class L, class... T> + typename boost::enable_if_>::value, std::size_t>::type + hash_value( L const& v ) + { + return boost::hash_unordered_range( v.begin(), v.end() ); + } + +#endif + + // described classes + +#if defined(BOOST_DESCRIBE_CXX14) + +#if defined(_MSC_VER) && _MSC_VER == 1900 +# pragma warning(push) +# pragma warning(disable: 4100) // unreferenced formal parameter +#endif + + template + typename boost::enable_if_::value, std::size_t>::type + hash_value( T const& v ) + { + static_assert( !boost::is_union::value, "described unions are not supported" ); + + std::size_t r = 0; + + using Bd = describe::describe_bases; + + mp11::mp_for_each([&](auto D){ + + using B = typename decltype(D)::type; + boost::hash_combine( r, (B const&)v ); + + }); + + using Md = describe::describe_members; + + mp11::mp_for_each([&](auto D){ + + boost::hash_combine( r, v.*D.pointer ); + + }); + + return r; + } + +#if defined(_MSC_VER) && _MSC_VER == 1900 +# pragma warning(pop) +#endif + +#endif + + // std::unique_ptr, std::shared_ptr + +#if !defined(BOOST_NO_CXX11_SMART_PTR) + + template + std::size_t hash_value( std::shared_ptr const& x ) + { + return boost::hash_value( x.get() ); + } + + template + std::size_t hash_value( std::unique_ptr const& x ) + { + return boost::hash_value( x.get() ); + } + +#endif + + // std::type_index + +#if !defined(BOOST_NO_CXX11_HDR_TYPEINDEX) + + inline std::size_t hash_value( std::type_index const& v ) + { + return v.hash_code(); + } + +#endif + + // std::error_code, std::error_condition + +#if !defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR) + + inline std::size_t hash_value( std::error_code const& v ) + { + std::size_t seed = 0; + + boost::hash_combine( seed, v.value() ); + boost::hash_combine( seed, &v.category() ); + + return seed; + } + + inline std::size_t hash_value( std::error_condition const& v ) + { + std::size_t seed = 0; + + boost::hash_combine( seed, v.value() ); + boost::hash_combine( seed, &v.category() ); + + return seed; + } + +#endif + + // std::optional + +#if !defined(BOOST_NO_CXX17_HDR_OPTIONAL) + + template + std::size_t hash_value( std::optional const& v ) + { + if( !v ) + { + // Arbitray value for empty optional. + return 0x12345678; + } + else + { + return boost::hash()(*v); + } + } + +#endif + + // std::variant + +#if !defined(BOOST_NO_CXX17_HDR_VARIANT) + + inline std::size_t hash_value( std::monostate ) + { + return 0x87654321; + } + + template + std::size_t hash_value( std::variant const& v ) + { + std::size_t seed = 0; + + hash_combine( seed, v.index() ); + std::visit( [&seed](auto&& x) { hash_combine(seed, x); }, v ); + + return seed; + } + +#endif + + // + // boost::hash_combine + // + + template + inline void hash_combine( std::size_t& seed, T const& v ) + { + seed = boost::hash_detail::hash_mix( seed + 0x9e3779b9 + boost::hash()( v ) ); + } + + // + // boost::hash_range + // + + template + inline void hash_range( std::size_t& seed, It first, It last ) + { + seed = hash_detail::hash_range( seed, first, last ); + } + + template + inline std::size_t hash_range( It first, It last ) + { + std::size_t seed = 0; + + hash_range( seed, first, last ); + + return seed; + } + + // + // boost::hash_unordered_range + // + + template + inline void hash_unordered_range( std::size_t& seed, It first, It last ) + { + std::size_t r = 0; + std::size_t const s2( seed ); + + for( ; first != last; ++first ) + { + std::size_t s3( s2 ); + + hash_combine::value_type>( s3, *first ); + + r += s3; + } + + seed += r; + } + + template + inline std::size_t hash_unordered_range( It first, It last ) + { + std::size_t seed = 0; + + hash_unordered_range( seed, first, last ); + + return seed; + } + + // + // boost::hash + // + + template struct hash + { + typedef T argument_type; + typedef std::size_t result_type; + + std::size_t operator()( T const& val ) const + { + return hash_value( val ); + } + }; + +#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && ( \ + ( defined(_MSVC_STL_VERSION) && _MSVC_STL_VERSION < 142 ) || \ + ( !defined(_MSVC_STL_VERSION) && defined(_CPPLIB_VER) && _CPPLIB_VER >= 520 ) ) + + // Dinkumware has stdext::hash_value for basic_string in :-/ + + template struct hash< std::basic_string > + { + typedef std::basic_string argument_type; + typedef std::size_t result_type; + + std::size_t operator()( std::basic_string const& val ) const + { + return boost::hash_value( val ); + } + }; + +#endif + + // boost::unordered::hash_is_avalanching + + namespace unordered + { + template struct hash_is_avalanching; + template struct hash_is_avalanching< boost::hash< std::basic_string > >: boost::is_integral {}; + + // boost::is_integral is false, but should be true (https://github.com/boostorg/type_traits/issues/175) +#if defined(__cpp_char8_t) && __cpp_char8_t >= 201811L + template<> struct hash_is_avalanching< boost::hash< std::basic_string > >: boost::true_type {}; +#endif + +#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) + + template struct hash_is_avalanching< boost::hash< std::basic_string_view > >: boost::is_integral {}; + +#if defined(__cpp_char8_t) && __cpp_char8_t >= 201811L + template<> struct hash_is_avalanching< boost::hash< std::basic_string_view > >: boost::true_type {}; +#endif + +#endif + } // namespace unordered + +} // namespace boost + +#endif // #ifndef BOOST_FUNCTIONAL_HASH_HASH_HPP diff --git a/boost-1.81.0/boost/container_hash/hash_fwd.hpp b/boost-1.81.0/boost/container_hash/hash_fwd.hpp new file mode 100644 index 0000000..489fdd2 --- /dev/null +++ b/boost-1.81.0/boost/container_hash/hash_fwd.hpp @@ -0,0 +1,36 @@ +// Copyright 2005-2009 Daniel James. +// Copyright 2021, 2022 Peter Dimov. +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +#ifndef BOOST_FUNCTIONAL_HASH_FWD_HPP +#define BOOST_FUNCTIONAL_HASH_FWD_HPP + +#include + +namespace boost +{ + +namespace container_hash +{ + +template struct is_range; +template struct is_contiguous_range; +template struct is_unordered_range; +template struct is_described_class; + +} // namespace container_hash + +template struct hash; + +template void hash_combine( std::size_t& seed, T const& v ); + +template void hash_range( std::size_t&, It, It ); +template std::size_t hash_range( It, It ); + +template void hash_unordered_range( std::size_t&, It, It ); +template std::size_t hash_unordered_range( It, It ); + +} // namespace boost + +#endif // #ifndef BOOST_FUNCTIONAL_HASH_FWD_HPP diff --git a/boost-1.81.0/boost/container_hash/is_contiguous_range.hpp b/boost-1.81.0/boost/container_hash/is_contiguous_range.hpp new file mode 100644 index 0000000..0e31c11 --- /dev/null +++ b/boost-1.81.0/boost/container_hash/is_contiguous_range.hpp @@ -0,0 +1,91 @@ +// Copyright 2017, 2018 Peter Dimov. +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +#ifndef BOOST_HASH_IS_CONTIGUOUS_RANGE_HPP_INCLUDED +#define BOOST_HASH_IS_CONTIGUOUS_RANGE_HPP_INCLUDED + +#include +#include +#include +#include + +#if !defined(BOOST_NO_CXX11_DECLTYPE) && !defined(BOOST_NO_SFINAE_EXPR) && !BOOST_WORKAROUND(BOOST_GCC, < 40700) && !BOOST_WORKAROUND(BOOST_MSVC, < 1910) + +#include +#include +#include +#include + +namespace boost +{ +namespace hash_detail +{ + +template + integral_constant< bool, is_same::value_type, T>::value && is_integral::value > + is_contiguous_range_check( It first, It last, T const*, T const*, S ); + +template decltype( is_contiguous_range_check( declval().begin(), declval().end(), declval().data(), declval().data() + declval().size(), declval().size() ) ) is_contiguous_range_( int ); +template false_type is_contiguous_range_( ... ); + +template struct is_contiguous_range: decltype( hash_detail::is_contiguous_range_( 0 ) ) +{ +}; + +} // namespace hash_detail + +namespace container_hash +{ + +template struct is_contiguous_range: integral_constant< bool, is_range::value && hash_detail::is_contiguous_range::value > +{ +}; + +} // namespace container_hash +} // namespace boost + +#else // !defined(BOOST_NO_CXX11_DECLTYPE) && !defined(BOOST_NO_SFINAE_EXPR) + +#include +#include +#include +#if !defined(BOOST_NO_CXX11_HDR_ARRAY) +#include +#endif + +namespace boost +{ +namespace container_hash +{ + +template struct is_contiguous_range: false_type +{ +}; + +template struct is_contiguous_range< std::basic_string >: true_type +{ +}; + +template struct is_contiguous_range< std::basic_string const >: true_type +{ +}; + +#if !defined(BOOST_NO_CXX11_HDR_ARRAY) + +template struct is_contiguous_range< std::array >: true_type +{ +}; + +template struct is_contiguous_range< std::array const >: true_type +{ +}; + +#endif + +} // namespace container_hash +} // namespace boost + +#endif // !defined(BOOST_NO_CXX11_DECLTYPE) && !defined(BOOST_NO_SFINAE_EXPR) + +#endif // #ifndef BOOST_HASH_IS_CONTIGUOUS_RANGE_HPP_INCLUDED diff --git a/boost-1.81.0/boost/container_hash/is_described_class.hpp b/boost-1.81.0/boost/container_hash/is_described_class.hpp new file mode 100644 index 0000000..cd2e1db --- /dev/null +++ b/boost-1.81.0/boost/container_hash/is_described_class.hpp @@ -0,0 +1,38 @@ +// Copyright 2022 Peter Dimov. +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +#ifndef BOOST_HASH_IS_DESCRIBED_CLASS_HPP_INCLUDED +#define BOOST_HASH_IS_DESCRIBED_CLASS_HPP_INCLUDED + +#include +#include +#include +#include + +namespace boost +{ +namespace container_hash +{ + +#if defined(BOOST_DESCRIBE_CXX11) + +template struct is_described_class: boost::integral_constant::value && + describe::has_describe_members::value && + !boost::is_union::value> +{ +}; + +#else + +template struct is_described_class: boost::false_type +{ +}; + +#endif + +} // namespace container_hash +} // namespace boost + +#endif // #ifndef BOOST_HASH_IS_DESCRIBED_CLASS_HPP_INCLUDED diff --git a/boost-1.81.0/boost/container_hash/is_range.hpp b/boost-1.81.0/boost/container_hash/is_range.hpp new file mode 100644 index 0000000..56fbd2e --- /dev/null +++ b/boost-1.81.0/boost/container_hash/is_range.hpp @@ -0,0 +1,73 @@ +// Copyright 2017 Peter Dimov. +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +#ifndef BOOST_HASH_IS_RANGE_HPP_INCLUDED +#define BOOST_HASH_IS_RANGE_HPP_INCLUDED + +#include +#include +#include +#include +#include +#include +#include +#include + +namespace boost +{ +#if !defined(BOOST_NO_CXX11_DECLTYPE) && !defined(BOOST_NO_SFINAE_EXPR) && !BOOST_WORKAROUND(BOOST_GCC, < 40700) + +namespace hash_detail +{ + +template + integral_constant< bool, !is_same::type, typename std::iterator_traits::value_type>::value > + is_range_check( It first, It last ); + +template decltype( is_range_check( declval().begin(), declval().end() ) ) is_range_( int ); +template false_type is_range_( ... ); + +} // namespace hash_detail + +namespace container_hash +{ + +template struct is_range: decltype( hash_detail::is_range_( 0 ) ) +{ +}; + +} // namespace container_hash + +#else + +namespace hash_detail +{ + +template struct is_range_: false_type +{ +}; + +template struct is_range_< T, integral_constant< bool, + is_same::value_type>::value && + is_integral::value + > >: true_type +{ +}; + +} // namespace hash_detail + +namespace container_hash +{ + +template struct is_range: hash_detail::is_range_ +{ +}; + +} // namespace container_hash + +#endif // !defined(BOOST_NO_CXX11_DECLTYPE) && !defined(BOOST_NO_SFINAE_EXPR) + +} // namespace boost + +#endif // #ifndef BOOST_HASH_IS_RANGE_HPP_INCLUDED diff --git a/boost-1.81.0/boost/container_hash/is_unordered_range.hpp b/boost-1.81.0/boost/container_hash/is_unordered_range.hpp new file mode 100644 index 0000000..11ee386 --- /dev/null +++ b/boost-1.81.0/boost/container_hash/is_unordered_range.hpp @@ -0,0 +1,39 @@ +// Copyright 2017 Peter Dimov. +// Distributed under the Boost Software License, Version 1.0. +// https://www.boost.org/LICENSE_1_0.txt + +#ifndef BOOST_HASH_IS_UNORDERED_RANGE_HPP_INCLUDED +#define BOOST_HASH_IS_UNORDERED_RANGE_HPP_INCLUDED + +#include +#include +#include + +namespace boost +{ +namespace hash_detail +{ + +template struct has_hasher_: false_type +{ +}; + +template struct has_hasher_< T, integral_constant< bool, + is_same::value + > >: true_type +{ +}; + +} // namespace hash_detail + +namespace container_hash +{ + +template struct is_unordered_range: integral_constant< bool, is_range::value && hash_detail::has_hasher_::value > +{ +}; + +} // namespace container_hash +} // namespace boost + +#endif // #ifndef BOOST_HASH_IS_UNORDERED_RANGE_HPP_INCLUDED diff --git a/boost-1.80.0/boost/core/addressof.hpp b/boost-1.81.0/boost/core/addressof.hpp similarity index 100% rename from boost-1.80.0/boost/core/addressof.hpp rename to boost-1.81.0/boost/core/addressof.hpp diff --git a/boost-1.80.0/boost/core/alloc_construct.hpp b/boost-1.81.0/boost/core/alloc_construct.hpp similarity index 100% rename from boost-1.80.0/boost/core/alloc_construct.hpp rename to boost-1.81.0/boost/core/alloc_construct.hpp diff --git a/boost-1.80.0/boost/core/allocator_access.hpp b/boost-1.81.0/boost/core/allocator_access.hpp similarity index 100% rename from boost-1.80.0/boost/core/allocator_access.hpp rename to boost-1.81.0/boost/core/allocator_access.hpp diff --git a/boost-1.80.0/boost/core/allocator_traits.hpp b/boost-1.81.0/boost/core/allocator_traits.hpp similarity index 100% rename from boost-1.80.0/boost/core/allocator_traits.hpp rename to boost-1.81.0/boost/core/allocator_traits.hpp diff --git a/boost-1.80.0/boost/core/bit.hpp b/boost-1.81.0/boost/core/bit.hpp similarity index 89% rename from boost-1.80.0/boost/core/bit.hpp rename to boost-1.81.0/boost/core/bit.hpp index ddd435b..5d14685 100644 --- a/boost-1.80.0/boost/core/bit.hpp +++ b/boost-1.81.0/boost/core/bit.hpp @@ -92,6 +92,8 @@ BOOST_CONSTEXPR inline int countl_impl( boost::ulong_long_type x ) BOOST_NOEXCEP template BOOST_CONSTEXPR int countl_zero( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + return boost::core::detail::countl_impl( x ); } @@ -169,6 +171,8 @@ inline int countl_impl( boost::uint16_t x ) BOOST_NOEXCEPT template int countl_zero( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + BOOST_STATIC_ASSERT( sizeof(T) == sizeof(boost::uint8_t) || sizeof(T) == sizeof(boost::uint16_t) || sizeof(T) == sizeof(boost::uint32_t) || sizeof(T) == sizeof(boost::uint64_t) ); BOOST_IF_CONSTEXPR ( sizeof(T) == sizeof(boost::uint8_t) ) @@ -194,6 +198,8 @@ int countl_zero( T x ) BOOST_NOEXCEPT template BOOST_CONSTEXPR int countl_one( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + return boost::core::countl_zero( static_cast( ~x ) ); } @@ -234,6 +240,8 @@ BOOST_CONSTEXPR inline int countr_impl( boost::ulong_long_type x ) BOOST_NOEXCEP template BOOST_CONSTEXPR int countr_zero( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + return boost::core::detail::countr_impl( x ); } @@ -304,6 +312,8 @@ inline int countr_impl( boost::uint16_t x ) BOOST_NOEXCEPT template int countr_zero( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + BOOST_STATIC_ASSERT( sizeof(T) == sizeof(boost::uint8_t) || sizeof(T) == sizeof(boost::uint16_t) || sizeof(T) == sizeof(boost::uint32_t) || sizeof(T) == sizeof(boost::uint64_t) ); BOOST_IF_CONSTEXPR ( sizeof(T) == sizeof(boost::uint8_t) ) @@ -329,6 +339,8 @@ int countr_zero( T x ) BOOST_NOEXCEPT template BOOST_CONSTEXPR int countr_one( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + return boost::core::countr_zero( static_cast( ~x ) ); } @@ -377,6 +389,8 @@ BOOST_CORE_POPCOUNT_CONSTEXPR inline int popcount_impl( boost::ulong_long_type x template BOOST_CONSTEXPR int popcount( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + return boost::core::detail::popcount_impl( x ); } @@ -408,6 +422,8 @@ BOOST_CXX14_CONSTEXPR inline int popcount_impl( boost::uint64_t x ) BOOST_NOEXCE template BOOST_CXX14_CONSTEXPR int popcount( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + BOOST_STATIC_ASSERT( sizeof(T) <= sizeof(boost::uint64_t) ); BOOST_IF_CONSTEXPR ( sizeof(T) <= sizeof(boost::uint32_t) ) @@ -427,6 +443,8 @@ BOOST_CXX14_CONSTEXPR int popcount( T x ) BOOST_NOEXCEPT template BOOST_CXX14_CONSTEXPR T rotl( T x, int s ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + unsigned const mask = std::numeric_limits::digits - 1; return x << (s & mask) | x >> ((-s) & mask); } @@ -434,6 +452,8 @@ BOOST_CXX14_CONSTEXPR T rotl( T x, int s ) BOOST_NOEXCEPT template BOOST_CXX14_CONSTEXPR T rotr( T x, int s ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + unsigned const mask = std::numeric_limits::digits - 1; return x >> (s & mask) | x << ((-s) & mask); } @@ -443,21 +463,27 @@ BOOST_CXX14_CONSTEXPR T rotr( T x, int s ) BOOST_NOEXCEPT template BOOST_CONSTEXPR bool has_single_bit( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + return x != 0 && ( x & ( x - 1 ) ) == 0; } -// bit_width should return int, https://cplusplus.github.io/LWG/issue3656 +// bit_width returns `int` now, https://cplusplus.github.io/LWG/issue3656 +// has been applied to C++20 as a DR template -BOOST_CONSTEXPR T bit_width( T x ) BOOST_NOEXCEPT +BOOST_CONSTEXPR int bit_width( T x ) BOOST_NOEXCEPT { - return static_cast( - std::numeric_limits::digits - boost::core::countl_zero( x ) ); + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + + return std::numeric_limits::digits - boost::core::countl_zero( x ); } template BOOST_CONSTEXPR T bit_floor( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + return x == 0? 0: T(1) << ( boost::core::bit_width( x ) - 1 ); } @@ -510,6 +536,8 @@ BOOST_CXX14_CONSTEXPR inline boost::uint64_t bit_ceil_impl( boost::uint64_t x ) template BOOST_CXX14_CONSTEXPR T bit_ceil( T x ) BOOST_NOEXCEPT { + BOOST_STATIC_ASSERT( std::numeric_limits::is_integer && !std::numeric_limits::is_signed ); + BOOST_STATIC_ASSERT( sizeof(T) <= sizeof(boost::uint64_t) ); BOOST_IF_CONSTEXPR ( sizeof(T) <= sizeof(boost::uint32_t) ) diff --git a/boost-1.80.0/boost/core/checked_delete.hpp b/boost-1.81.0/boost/core/checked_delete.hpp similarity index 100% rename from boost-1.80.0/boost/core/checked_delete.hpp rename to boost-1.81.0/boost/core/checked_delete.hpp diff --git a/boost-1.80.0/boost/core/cmath.hpp b/boost-1.81.0/boost/core/cmath.hpp similarity index 100% rename from boost-1.80.0/boost/core/cmath.hpp rename to boost-1.81.0/boost/core/cmath.hpp diff --git a/boost-1.80.0/boost/core/default_allocator.hpp b/boost-1.81.0/boost/core/default_allocator.hpp similarity index 100% rename from boost-1.80.0/boost/core/default_allocator.hpp rename to boost-1.81.0/boost/core/default_allocator.hpp diff --git a/boost-1.80.0/boost/core/demangle.hpp b/boost-1.81.0/boost/core/demangle.hpp similarity index 100% rename from boost-1.80.0/boost/core/demangle.hpp rename to boost-1.81.0/boost/core/demangle.hpp diff --git a/boost-1.80.0/boost/core/detail/splitmix64.hpp b/boost-1.81.0/boost/core/detail/splitmix64.hpp similarity index 100% rename from boost-1.80.0/boost/core/detail/splitmix64.hpp rename to boost-1.81.0/boost/core/detail/splitmix64.hpp diff --git a/boost-1.80.0/boost/core/detail/string_view.hpp b/boost-1.81.0/boost/core/detail/string_view.hpp similarity index 99% rename from boost-1.80.0/boost/core/detail/string_view.hpp rename to boost-1.81.0/boost/core/detail/string_view.hpp index 7e85aac..5a1f6c8 100644 --- a/boost-1.80.0/boost/core/detail/string_view.hpp +++ b/boost-1.81.0/boost/core/detail/string_view.hpp @@ -403,6 +403,22 @@ public: { } +#if !defined(BOOST_NO_CXX11_NULLPTR) +# if !defined(BOOST_NO_CXX11_DELETED_FUNCTIONS) + + basic_string_view( std::nullptr_t ) = delete; + +# else + +private: + + basic_string_view( std::nullptr_t ); + +public: + +# endif +#endif + // BOOST_CONSTEXPR basic_string_view& operator=( basic_string_view const& ) BOOST_NOEXCEPT & = default; // conversions diff --git a/boost-1.80.0/boost/core/empty_value.hpp b/boost-1.81.0/boost/core/empty_value.hpp similarity index 74% rename from boost-1.80.0/boost/core/empty_value.hpp rename to boost-1.81.0/boost/core/empty_value.hpp index 9dfd442..d8ffa30 100644 --- a/boost-1.80.0/boost/core/empty_value.hpp +++ b/boost-1.81.0/boost/core/empty_value.hpp @@ -56,37 +56,37 @@ public: #if !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) empty_value() = default; #else - empty_value() { } + BOOST_CONSTEXPR empty_value() { } #endif - empty_value(boost::empty_init_t) + BOOST_CONSTEXPR empty_value(boost::empty_init_t) : value_() { } #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template - empty_value(boost::empty_init_t, U&& value, Args&&... args) + BOOST_CONSTEXPR empty_value(boost::empty_init_t, U&& value, Args&&... args) : value_(std::forward(value), std::forward(args)...) { } #else template - empty_value(boost::empty_init_t, U&& value) + BOOST_CONSTEXPR empty_value(boost::empty_init_t, U&& value) : value_(std::forward(value)) { } #endif #else template - empty_value(boost::empty_init_t, const U& value) + BOOST_CONSTEXPR empty_value(boost::empty_init_t, const U& value) : value_(value) { } template - empty_value(boost::empty_init_t, U& value) + BOOST_CONSTEXPR empty_value(boost::empty_init_t, U& value) : value_(value) { } #endif - const T& get() const BOOST_NOEXCEPT { + BOOST_CONSTEXPR const T& get() const BOOST_NOEXCEPT { return value_; } - T& get() BOOST_NOEXCEPT { + BOOST_CXX14_CONSTEXPR T& get() BOOST_NOEXCEPT { return value_; } @@ -104,37 +104,37 @@ public: #if !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) empty_value() = default; #else - empty_value() { } + BOOST_CONSTEXPR empty_value() { } #endif - empty_value(boost::empty_init_t) + BOOST_CONSTEXPR empty_value(boost::empty_init_t) : T() { } #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template - empty_value(boost::empty_init_t, U&& value, Args&&... args) + BOOST_CONSTEXPR empty_value(boost::empty_init_t, U&& value, Args&&... args) : T(std::forward(value), std::forward(args)...) { } #else template - empty_value(boost::empty_init_t, U&& value) + BOOST_CONSTEXPR empty_value(boost::empty_init_t, U&& value) : T(std::forward(value)) { } #endif #else template - empty_value(boost::empty_init_t, const U& value) + BOOST_CONSTEXPR empty_value(boost::empty_init_t, const U& value) : T(value) { } template - empty_value(boost::empty_init_t, U& value) + BOOST_CONSTEXPR empty_value(boost::empty_init_t, U& value) : T(value) { } #endif - const T& get() const BOOST_NOEXCEPT { + BOOST_CONSTEXPR const T& get() const BOOST_NOEXCEPT { return *this; } - T& get() BOOST_NOEXCEPT { + BOOST_CXX14_CONSTEXPR T& get() BOOST_NOEXCEPT { return *this; } }; diff --git a/boost-1.80.0/boost/core/enable_if.hpp b/boost-1.81.0/boost/core/enable_if.hpp similarity index 100% rename from boost-1.80.0/boost/core/enable_if.hpp rename to boost-1.81.0/boost/core/enable_if.hpp diff --git a/boost-1.80.0/boost/core/exchange.hpp b/boost-1.81.0/boost/core/exchange.hpp similarity index 100% rename from boost-1.80.0/boost/core/exchange.hpp rename to boost-1.81.0/boost/core/exchange.hpp diff --git a/boost-1.80.0/boost/core/explicit_operator_bool.hpp b/boost-1.81.0/boost/core/explicit_operator_bool.hpp similarity index 100% rename from boost-1.80.0/boost/core/explicit_operator_bool.hpp rename to boost-1.81.0/boost/core/explicit_operator_bool.hpp diff --git a/boost-1.81.0/boost/core/fclose_deleter.hpp b/boost-1.81.0/boost/core/fclose_deleter.hpp new file mode 100644 index 0000000..8f7a7fd --- /dev/null +++ b/boost-1.81.0/boost/core/fclose_deleter.hpp @@ -0,0 +1,46 @@ +/* + * Copyright Andrey Semashev 2022. + * Distributed under the Boost Software License, Version 1.0. + * (See accompanying file LICENSE_1_0.txt or copy at + * http://www.boost.org/LICENSE_1_0.txt) + */ +/*! + * \file fclose_deleter.hpp + * \author Andrey Semashev + * \date 21.09.2022 + * + * This header contains an \c fclose_deleter implementation. This is a deleter + * function object that invokes std::fclose on the passed pointer to + * a std::FILE structure. + */ + +#ifndef BOOST_CORE_FCLOSE_DELETER_HPP +#define BOOST_CORE_FCLOSE_DELETER_HPP + +#include +#include + +#ifdef BOOST_HAS_PRAGMA_ONCE +#pragma once +#endif + +namespace boost { + +//! A function object that closes a file +struct fclose_deleter +{ + //! Function object result type + typedef void result_type; + /*! + * Closes the file handle + */ + void operator() (std::FILE* p) const BOOST_NOEXCEPT + { + if (BOOST_LIKELY(!!p)) + std::fclose(p); + } +}; + +} // namespace boost + +#endif // BOOST_CORE_FCLOSE_DELETER_HPP diff --git a/boost-1.80.0/boost/core/first_scalar.hpp b/boost-1.81.0/boost/core/first_scalar.hpp similarity index 100% rename from boost-1.80.0/boost/core/first_scalar.hpp rename to boost-1.81.0/boost/core/first_scalar.hpp diff --git a/boost-1.80.0/boost/core/ignore_unused.hpp b/boost-1.81.0/boost/core/ignore_unused.hpp similarity index 100% rename from boost-1.80.0/boost/core/ignore_unused.hpp rename to boost-1.81.0/boost/core/ignore_unused.hpp diff --git a/boost-1.80.0/boost/core/is_same.hpp b/boost-1.81.0/boost/core/is_same.hpp similarity index 100% rename from boost-1.80.0/boost/core/is_same.hpp rename to boost-1.81.0/boost/core/is_same.hpp diff --git a/boost-1.80.0/boost/core/lightweight_test.hpp b/boost-1.81.0/boost/core/lightweight_test.hpp similarity index 100% rename from boost-1.80.0/boost/core/lightweight_test.hpp rename to boost-1.81.0/boost/core/lightweight_test.hpp diff --git a/boost-1.80.0/boost/core/lightweight_test_trait.hpp b/boost-1.81.0/boost/core/lightweight_test_trait.hpp similarity index 100% rename from boost-1.80.0/boost/core/lightweight_test_trait.hpp rename to boost-1.81.0/boost/core/lightweight_test_trait.hpp diff --git a/boost-1.80.0/boost/core/no_exceptions_support.hpp b/boost-1.81.0/boost/core/no_exceptions_support.hpp similarity index 100% rename from boost-1.80.0/boost/core/no_exceptions_support.hpp rename to boost-1.81.0/boost/core/no_exceptions_support.hpp diff --git a/boost-1.80.0/boost/core/noinit_adaptor.hpp b/boost-1.81.0/boost/core/noinit_adaptor.hpp similarity index 100% rename from boost-1.80.0/boost/core/noinit_adaptor.hpp rename to boost-1.81.0/boost/core/noinit_adaptor.hpp diff --git a/boost-1.80.0/boost/core/noncopyable.hpp b/boost-1.81.0/boost/core/noncopyable.hpp similarity index 100% rename from boost-1.80.0/boost/core/noncopyable.hpp rename to boost-1.81.0/boost/core/noncopyable.hpp diff --git a/boost-1.80.0/boost/core/null_deleter.hpp b/boost-1.81.0/boost/core/null_deleter.hpp similarity index 100% rename from boost-1.80.0/boost/core/null_deleter.hpp rename to boost-1.81.0/boost/core/null_deleter.hpp diff --git a/boost-1.80.0/boost/core/nvp.hpp b/boost-1.81.0/boost/core/nvp.hpp similarity index 100% rename from boost-1.80.0/boost/core/nvp.hpp rename to boost-1.81.0/boost/core/nvp.hpp diff --git a/boost-1.80.0/boost/core/pointer_traits.hpp b/boost-1.81.0/boost/core/pointer_traits.hpp similarity index 100% rename from boost-1.80.0/boost/core/pointer_traits.hpp rename to boost-1.81.0/boost/core/pointer_traits.hpp diff --git a/boost-1.80.0/boost/core/quick_exit.hpp b/boost-1.81.0/boost/core/quick_exit.hpp similarity index 100% rename from boost-1.80.0/boost/core/quick_exit.hpp rename to boost-1.81.0/boost/core/quick_exit.hpp diff --git a/boost-1.80.0/boost/core/ref.hpp b/boost-1.81.0/boost/core/ref.hpp similarity index 100% rename from boost-1.80.0/boost/core/ref.hpp rename to boost-1.81.0/boost/core/ref.hpp diff --git a/boost-1.80.0/boost/core/scoped_enum.hpp b/boost-1.81.0/boost/core/scoped_enum.hpp similarity index 100% rename from boost-1.80.0/boost/core/scoped_enum.hpp rename to boost-1.81.0/boost/core/scoped_enum.hpp diff --git a/boost-1.80.0/boost/core/span.hpp b/boost-1.81.0/boost/core/span.hpp similarity index 100% rename from boost-1.80.0/boost/core/span.hpp rename to boost-1.81.0/boost/core/span.hpp diff --git a/boost-1.80.0/boost/core/swap.hpp b/boost-1.81.0/boost/core/swap.hpp similarity index 100% rename from boost-1.80.0/boost/core/swap.hpp rename to boost-1.81.0/boost/core/swap.hpp diff --git a/boost-1.80.0/boost/core/type_name.hpp b/boost-1.81.0/boost/core/type_name.hpp similarity index 100% rename from boost-1.80.0/boost/core/type_name.hpp rename to boost-1.81.0/boost/core/type_name.hpp diff --git a/boost-1.80.0/boost/core/typeinfo.hpp b/boost-1.81.0/boost/core/typeinfo.hpp similarity index 100% rename from boost-1.80.0/boost/core/typeinfo.hpp rename to boost-1.81.0/boost/core/typeinfo.hpp diff --git a/boost-1.80.0/boost/core/uncaught_exceptions.hpp b/boost-1.81.0/boost/core/uncaught_exceptions.hpp similarity index 100% rename from boost-1.80.0/boost/core/uncaught_exceptions.hpp rename to boost-1.81.0/boost/core/uncaught_exceptions.hpp diff --git a/boost-1.80.0/boost/core/underlying_type.hpp b/boost-1.81.0/boost/core/underlying_type.hpp similarity index 100% rename from boost-1.80.0/boost/core/underlying_type.hpp rename to boost-1.81.0/boost/core/underlying_type.hpp diff --git a/boost-1.80.0/boost/core/use_default.hpp b/boost-1.81.0/boost/core/use_default.hpp similarity index 100% rename from boost-1.80.0/boost/core/use_default.hpp rename to boost-1.81.0/boost/core/use_default.hpp diff --git a/boost-1.80.0/boost/core/verbose_terminate_handler.hpp b/boost-1.81.0/boost/core/verbose_terminate_handler.hpp similarity index 100% rename from boost-1.80.0/boost/core/verbose_terminate_handler.hpp rename to boost-1.81.0/boost/core/verbose_terminate_handler.hpp diff --git a/boost-1.80.0/boost/cstdint.hpp b/boost-1.81.0/boost/cstdint.hpp similarity index 100% rename from boost-1.80.0/boost/cstdint.hpp rename to boost-1.81.0/boost/cstdint.hpp diff --git a/boost-1.80.0/boost/current_function.hpp b/boost-1.81.0/boost/current_function.hpp similarity index 100% rename from boost-1.80.0/boost/current_function.hpp rename to boost-1.81.0/boost/current_function.hpp diff --git a/boost-1.80.0/boost/detail/algorithm.hpp b/boost-1.81.0/boost/detail/algorithm.hpp similarity index 100% rename from boost-1.80.0/boost/detail/algorithm.hpp rename to boost-1.81.0/boost/detail/algorithm.hpp diff --git a/boost-1.80.0/boost/detail/allocator_utilities.hpp b/boost-1.81.0/boost/detail/allocator_utilities.hpp similarity index 100% rename from boost-1.80.0/boost/detail/allocator_utilities.hpp rename to boost-1.81.0/boost/detail/allocator_utilities.hpp diff --git a/boost-1.80.0/boost/detail/atomic_count.hpp b/boost-1.81.0/boost/detail/atomic_count.hpp similarity index 100% rename from boost-1.80.0/boost/detail/atomic_count.hpp rename to boost-1.81.0/boost/detail/atomic_count.hpp diff --git a/boost-1.80.0/boost/detail/basic_pointerbuf.hpp b/boost-1.81.0/boost/detail/basic_pointerbuf.hpp similarity index 100% rename from boost-1.80.0/boost/detail/basic_pointerbuf.hpp rename to boost-1.81.0/boost/detail/basic_pointerbuf.hpp diff --git a/boost-1.80.0/boost/detail/binary_search.hpp b/boost-1.81.0/boost/detail/binary_search.hpp similarity index 100% rename from boost-1.80.0/boost/detail/binary_search.hpp rename to boost-1.81.0/boost/detail/binary_search.hpp diff --git a/boost-1.80.0/boost/detail/bitmask.hpp b/boost-1.81.0/boost/detail/bitmask.hpp similarity index 100% rename from boost-1.80.0/boost/detail/bitmask.hpp rename to boost-1.81.0/boost/detail/bitmask.hpp diff --git a/boost-1.80.0/boost/detail/call_traits.hpp b/boost-1.81.0/boost/detail/call_traits.hpp similarity index 100% rename from boost-1.80.0/boost/detail/call_traits.hpp rename to boost-1.81.0/boost/detail/call_traits.hpp diff --git a/boost-1.80.0/boost/detail/catch_exceptions.hpp b/boost-1.81.0/boost/detail/catch_exceptions.hpp similarity index 100% rename from boost-1.80.0/boost/detail/catch_exceptions.hpp rename to boost-1.81.0/boost/detail/catch_exceptions.hpp diff --git a/boost-1.80.0/boost/detail/compressed_pair.hpp b/boost-1.81.0/boost/detail/compressed_pair.hpp similarity index 100% rename from boost-1.80.0/boost/detail/compressed_pair.hpp rename to boost-1.81.0/boost/detail/compressed_pair.hpp diff --git a/boost-1.80.0/boost/detail/container_fwd.hpp b/boost-1.81.0/boost/detail/container_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/detail/container_fwd.hpp rename to boost-1.81.0/boost/detail/container_fwd.hpp diff --git a/boost-1.80.0/boost/detail/fenv.hpp b/boost-1.81.0/boost/detail/fenv.hpp similarity index 100% rename from boost-1.80.0/boost/detail/fenv.hpp rename to boost-1.81.0/boost/detail/fenv.hpp diff --git a/boost-1.80.0/boost/detail/has_default_constructor.hpp b/boost-1.81.0/boost/detail/has_default_constructor.hpp similarity index 100% rename from boost-1.80.0/boost/detail/has_default_constructor.hpp rename to boost-1.81.0/boost/detail/has_default_constructor.hpp diff --git a/boost-1.80.0/boost/detail/identifier.hpp b/boost-1.81.0/boost/detail/identifier.hpp similarity index 100% rename from boost-1.80.0/boost/detail/identifier.hpp rename to boost-1.81.0/boost/detail/identifier.hpp diff --git a/boost-1.80.0/boost/detail/indirect_traits.hpp b/boost-1.81.0/boost/detail/indirect_traits.hpp similarity index 100% rename from boost-1.80.0/boost/detail/indirect_traits.hpp rename to boost-1.81.0/boost/detail/indirect_traits.hpp diff --git a/boost-1.80.0/boost/detail/interlocked.hpp b/boost-1.81.0/boost/detail/interlocked.hpp similarity index 100% rename from boost-1.80.0/boost/detail/interlocked.hpp rename to boost-1.81.0/boost/detail/interlocked.hpp diff --git a/boost-1.80.0/boost/detail/is_incrementable.hpp b/boost-1.81.0/boost/detail/is_incrementable.hpp similarity index 100% rename from boost-1.80.0/boost/detail/is_incrementable.hpp rename to boost-1.81.0/boost/detail/is_incrementable.hpp diff --git a/boost-1.80.0/boost/detail/is_sorted.hpp b/boost-1.81.0/boost/detail/is_sorted.hpp similarity index 100% rename from boost-1.80.0/boost/detail/is_sorted.hpp rename to boost-1.81.0/boost/detail/is_sorted.hpp diff --git a/boost-1.80.0/boost/detail/is_xxx.hpp b/boost-1.81.0/boost/detail/is_xxx.hpp similarity index 100% rename from boost-1.80.0/boost/detail/is_xxx.hpp rename to boost-1.81.0/boost/detail/is_xxx.hpp diff --git a/boost-1.80.0/boost/detail/iterator.hpp b/boost-1.81.0/boost/detail/iterator.hpp similarity index 100% rename from boost-1.80.0/boost/detail/iterator.hpp rename to boost-1.81.0/boost/detail/iterator.hpp diff --git a/boost-1.80.0/boost/detail/lcast_precision.hpp b/boost-1.81.0/boost/detail/lcast_precision.hpp similarity index 100% rename from boost-1.80.0/boost/detail/lcast_precision.hpp rename to boost-1.81.0/boost/detail/lcast_precision.hpp diff --git a/boost-1.80.0/boost/detail/lightweight_main.hpp b/boost-1.81.0/boost/detail/lightweight_main.hpp similarity index 100% rename from boost-1.80.0/boost/detail/lightweight_main.hpp rename to boost-1.81.0/boost/detail/lightweight_main.hpp diff --git a/boost-1.80.0/boost/detail/lightweight_mutex.hpp b/boost-1.81.0/boost/detail/lightweight_mutex.hpp similarity index 100% rename from boost-1.80.0/boost/detail/lightweight_mutex.hpp rename to boost-1.81.0/boost/detail/lightweight_mutex.hpp diff --git a/boost-1.80.0/boost/detail/lightweight_test.hpp b/boost-1.81.0/boost/detail/lightweight_test.hpp similarity index 100% rename from boost-1.80.0/boost/detail/lightweight_test.hpp rename to boost-1.81.0/boost/detail/lightweight_test.hpp diff --git a/boost-1.80.0/boost/detail/lightweight_test_report.hpp b/boost-1.81.0/boost/detail/lightweight_test_report.hpp similarity index 100% rename from boost-1.80.0/boost/detail/lightweight_test_report.hpp rename to boost-1.81.0/boost/detail/lightweight_test_report.hpp diff --git a/boost-1.80.0/boost/detail/lightweight_thread.hpp b/boost-1.81.0/boost/detail/lightweight_thread.hpp similarity index 100% rename from boost-1.80.0/boost/detail/lightweight_thread.hpp rename to boost-1.81.0/boost/detail/lightweight_thread.hpp diff --git a/boost-1.80.0/boost/detail/named_template_params.hpp b/boost-1.81.0/boost/detail/named_template_params.hpp similarity index 100% rename from boost-1.80.0/boost/detail/named_template_params.hpp rename to boost-1.81.0/boost/detail/named_template_params.hpp diff --git a/boost-1.80.0/boost/detail/no_exceptions_support.hpp b/boost-1.81.0/boost/detail/no_exceptions_support.hpp similarity index 100% rename from boost-1.80.0/boost/detail/no_exceptions_support.hpp rename to boost-1.81.0/boost/detail/no_exceptions_support.hpp diff --git a/boost-1.80.0/boost/detail/numeric_traits.hpp b/boost-1.81.0/boost/detail/numeric_traits.hpp similarity index 100% rename from boost-1.80.0/boost/detail/numeric_traits.hpp rename to boost-1.81.0/boost/detail/numeric_traits.hpp diff --git a/boost-1.80.0/boost/detail/ob_compressed_pair.hpp b/boost-1.81.0/boost/detail/ob_compressed_pair.hpp similarity index 100% rename from boost-1.80.0/boost/detail/ob_compressed_pair.hpp rename to boost-1.81.0/boost/detail/ob_compressed_pair.hpp diff --git a/boost-1.80.0/boost/detail/quick_allocator.hpp b/boost-1.81.0/boost/detail/quick_allocator.hpp similarity index 100% rename from boost-1.80.0/boost/detail/quick_allocator.hpp rename to boost-1.81.0/boost/detail/quick_allocator.hpp diff --git a/boost-1.80.0/boost/detail/reference_content.hpp b/boost-1.81.0/boost/detail/reference_content.hpp similarity index 100% rename from boost-1.80.0/boost/detail/reference_content.hpp rename to boost-1.81.0/boost/detail/reference_content.hpp diff --git a/boost-1.80.0/boost/detail/scoped_enum_emulation.hpp b/boost-1.81.0/boost/detail/scoped_enum_emulation.hpp similarity index 100% rename from boost-1.80.0/boost/detail/scoped_enum_emulation.hpp rename to boost-1.81.0/boost/detail/scoped_enum_emulation.hpp diff --git a/boost-1.80.0/boost/detail/select_type.hpp b/boost-1.81.0/boost/detail/select_type.hpp similarity index 100% rename from boost-1.80.0/boost/detail/select_type.hpp rename to boost-1.81.0/boost/detail/select_type.hpp diff --git a/boost-1.80.0/boost/detail/sp_typeinfo.hpp b/boost-1.81.0/boost/detail/sp_typeinfo.hpp similarity index 100% rename from boost-1.80.0/boost/detail/sp_typeinfo.hpp rename to boost-1.81.0/boost/detail/sp_typeinfo.hpp diff --git a/boost-1.80.0/boost/detail/templated_streams.hpp b/boost-1.81.0/boost/detail/templated_streams.hpp similarity index 100% rename from boost-1.80.0/boost/detail/templated_streams.hpp rename to boost-1.81.0/boost/detail/templated_streams.hpp diff --git a/boost-1.80.0/boost/detail/utf8_codecvt_facet.hpp b/boost-1.81.0/boost/detail/utf8_codecvt_facet.hpp similarity index 100% rename from boost-1.80.0/boost/detail/utf8_codecvt_facet.hpp rename to boost-1.81.0/boost/detail/utf8_codecvt_facet.hpp diff --git a/boost-1.80.0/boost/detail/utf8_codecvt_facet.ipp b/boost-1.81.0/boost/detail/utf8_codecvt_facet.ipp similarity index 100% rename from boost-1.80.0/boost/detail/utf8_codecvt_facet.ipp rename to boost-1.81.0/boost/detail/utf8_codecvt_facet.ipp diff --git a/boost-1.80.0/boost/detail/winapi/access_rights.hpp b/boost-1.81.0/boost/detail/winapi/access_rights.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/access_rights.hpp rename to boost-1.81.0/boost/detail/winapi/access_rights.hpp diff --git a/boost-1.80.0/boost/detail/winapi/apc.hpp b/boost-1.81.0/boost/detail/winapi/apc.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/apc.hpp rename to boost-1.81.0/boost/detail/winapi/apc.hpp diff --git a/boost-1.80.0/boost/detail/winapi/basic_types.hpp b/boost-1.81.0/boost/detail/winapi/basic_types.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/basic_types.hpp rename to boost-1.81.0/boost/detail/winapi/basic_types.hpp diff --git a/boost-1.80.0/boost/detail/winapi/bcrypt.hpp b/boost-1.81.0/boost/detail/winapi/bcrypt.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/bcrypt.hpp rename to boost-1.81.0/boost/detail/winapi/bcrypt.hpp diff --git a/boost-1.80.0/boost/detail/winapi/character_code_conversion.hpp b/boost-1.81.0/boost/detail/winapi/character_code_conversion.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/character_code_conversion.hpp rename to boost-1.81.0/boost/detail/winapi/character_code_conversion.hpp diff --git a/boost-1.80.0/boost/detail/winapi/condition_variable.hpp b/boost-1.81.0/boost/detail/winapi/condition_variable.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/condition_variable.hpp rename to boost-1.81.0/boost/detail/winapi/condition_variable.hpp diff --git a/boost-1.80.0/boost/detail/winapi/config.hpp b/boost-1.81.0/boost/detail/winapi/config.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/config.hpp rename to boost-1.81.0/boost/detail/winapi/config.hpp diff --git a/boost-1.80.0/boost/detail/winapi/critical_section.hpp b/boost-1.81.0/boost/detail/winapi/critical_section.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/critical_section.hpp rename to boost-1.81.0/boost/detail/winapi/critical_section.hpp diff --git a/boost-1.80.0/boost/detail/winapi/crypt.hpp b/boost-1.81.0/boost/detail/winapi/crypt.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/crypt.hpp rename to boost-1.81.0/boost/detail/winapi/crypt.hpp diff --git a/boost-1.80.0/boost/detail/winapi/dbghelp.hpp b/boost-1.81.0/boost/detail/winapi/dbghelp.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/dbghelp.hpp rename to boost-1.81.0/boost/detail/winapi/dbghelp.hpp diff --git a/boost-1.80.0/boost/detail/winapi/debugapi.hpp b/boost-1.81.0/boost/detail/winapi/debugapi.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/debugapi.hpp rename to boost-1.81.0/boost/detail/winapi/debugapi.hpp diff --git a/boost-1.80.0/boost/detail/winapi/detail/deprecated_namespace.hpp b/boost-1.81.0/boost/detail/winapi/detail/deprecated_namespace.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/detail/deprecated_namespace.hpp rename to boost-1.81.0/boost/detail/winapi/detail/deprecated_namespace.hpp diff --git a/boost-1.80.0/boost/detail/winapi/directory_management.hpp b/boost-1.81.0/boost/detail/winapi/directory_management.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/directory_management.hpp rename to boost-1.81.0/boost/detail/winapi/directory_management.hpp diff --git a/boost-1.80.0/boost/detail/winapi/dll.hpp b/boost-1.81.0/boost/detail/winapi/dll.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/dll.hpp rename to boost-1.81.0/boost/detail/winapi/dll.hpp diff --git a/boost-1.80.0/boost/detail/winapi/environment.hpp b/boost-1.81.0/boost/detail/winapi/environment.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/environment.hpp rename to boost-1.81.0/boost/detail/winapi/environment.hpp diff --git a/boost-1.80.0/boost/detail/winapi/error_codes.hpp b/boost-1.81.0/boost/detail/winapi/error_codes.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/error_codes.hpp rename to boost-1.81.0/boost/detail/winapi/error_codes.hpp diff --git a/boost-1.80.0/boost/detail/winapi/error_handling.hpp b/boost-1.81.0/boost/detail/winapi/error_handling.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/error_handling.hpp rename to boost-1.81.0/boost/detail/winapi/error_handling.hpp diff --git a/boost-1.80.0/boost/detail/winapi/event.hpp b/boost-1.81.0/boost/detail/winapi/event.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/event.hpp rename to boost-1.81.0/boost/detail/winapi/event.hpp diff --git a/boost-1.80.0/boost/detail/winapi/file_management.hpp b/boost-1.81.0/boost/detail/winapi/file_management.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/file_management.hpp rename to boost-1.81.0/boost/detail/winapi/file_management.hpp diff --git a/boost-1.80.0/boost/detail/winapi/file_mapping.hpp b/boost-1.81.0/boost/detail/winapi/file_mapping.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/file_mapping.hpp rename to boost-1.81.0/boost/detail/winapi/file_mapping.hpp diff --git a/boost-1.80.0/boost/detail/winapi/get_current_process.hpp b/boost-1.81.0/boost/detail/winapi/get_current_process.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/get_current_process.hpp rename to boost-1.81.0/boost/detail/winapi/get_current_process.hpp diff --git a/boost-1.80.0/boost/detail/winapi/get_current_process_id.hpp b/boost-1.81.0/boost/detail/winapi/get_current_process_id.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/get_current_process_id.hpp rename to boost-1.81.0/boost/detail/winapi/get_current_process_id.hpp diff --git a/boost-1.80.0/boost/detail/winapi/get_current_thread.hpp b/boost-1.81.0/boost/detail/winapi/get_current_thread.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/get_current_thread.hpp rename to boost-1.81.0/boost/detail/winapi/get_current_thread.hpp diff --git a/boost-1.80.0/boost/detail/winapi/get_current_thread_id.hpp b/boost-1.81.0/boost/detail/winapi/get_current_thread_id.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/get_current_thread_id.hpp rename to boost-1.81.0/boost/detail/winapi/get_current_thread_id.hpp diff --git a/boost-1.80.0/boost/detail/winapi/get_last_error.hpp b/boost-1.81.0/boost/detail/winapi/get_last_error.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/get_last_error.hpp rename to boost-1.81.0/boost/detail/winapi/get_last_error.hpp diff --git a/boost-1.80.0/boost/detail/winapi/get_process_times.hpp b/boost-1.81.0/boost/detail/winapi/get_process_times.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/get_process_times.hpp rename to boost-1.81.0/boost/detail/winapi/get_process_times.hpp diff --git a/boost-1.80.0/boost/detail/winapi/get_system_directory.hpp b/boost-1.81.0/boost/detail/winapi/get_system_directory.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/get_system_directory.hpp rename to boost-1.81.0/boost/detail/winapi/get_system_directory.hpp diff --git a/boost-1.80.0/boost/detail/winapi/get_thread_times.hpp b/boost-1.81.0/boost/detail/winapi/get_thread_times.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/get_thread_times.hpp rename to boost-1.81.0/boost/detail/winapi/get_thread_times.hpp diff --git a/boost-1.80.0/boost/detail/winapi/handle_info.hpp b/boost-1.81.0/boost/detail/winapi/handle_info.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/handle_info.hpp rename to boost-1.81.0/boost/detail/winapi/handle_info.hpp diff --git a/boost-1.80.0/boost/detail/winapi/handles.hpp b/boost-1.81.0/boost/detail/winapi/handles.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/handles.hpp rename to boost-1.81.0/boost/detail/winapi/handles.hpp diff --git a/boost-1.80.0/boost/detail/winapi/heap_memory.hpp b/boost-1.81.0/boost/detail/winapi/heap_memory.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/heap_memory.hpp rename to boost-1.81.0/boost/detail/winapi/heap_memory.hpp diff --git a/boost-1.80.0/boost/detail/winapi/init_once.hpp b/boost-1.81.0/boost/detail/winapi/init_once.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/init_once.hpp rename to boost-1.81.0/boost/detail/winapi/init_once.hpp diff --git a/boost-1.80.0/boost/detail/winapi/jobs.hpp b/boost-1.81.0/boost/detail/winapi/jobs.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/jobs.hpp rename to boost-1.81.0/boost/detail/winapi/jobs.hpp diff --git a/boost-1.80.0/boost/detail/winapi/limits.hpp b/boost-1.81.0/boost/detail/winapi/limits.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/limits.hpp rename to boost-1.81.0/boost/detail/winapi/limits.hpp diff --git a/boost-1.80.0/boost/detail/winapi/local_memory.hpp b/boost-1.81.0/boost/detail/winapi/local_memory.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/local_memory.hpp rename to boost-1.81.0/boost/detail/winapi/local_memory.hpp diff --git a/boost-1.80.0/boost/detail/winapi/memory.hpp b/boost-1.81.0/boost/detail/winapi/memory.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/memory.hpp rename to boost-1.81.0/boost/detail/winapi/memory.hpp diff --git a/boost-1.80.0/boost/detail/winapi/mutex.hpp b/boost-1.81.0/boost/detail/winapi/mutex.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/mutex.hpp rename to boost-1.81.0/boost/detail/winapi/mutex.hpp diff --git a/boost-1.80.0/boost/detail/winapi/overlapped.hpp b/boost-1.81.0/boost/detail/winapi/overlapped.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/overlapped.hpp rename to boost-1.81.0/boost/detail/winapi/overlapped.hpp diff --git a/boost-1.80.0/boost/detail/winapi/page_protection_flags.hpp b/boost-1.81.0/boost/detail/winapi/page_protection_flags.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/page_protection_flags.hpp rename to boost-1.81.0/boost/detail/winapi/page_protection_flags.hpp diff --git a/boost-1.80.0/boost/detail/winapi/pipes.hpp b/boost-1.81.0/boost/detail/winapi/pipes.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/pipes.hpp rename to boost-1.81.0/boost/detail/winapi/pipes.hpp diff --git a/boost-1.80.0/boost/detail/winapi/priority_class.hpp b/boost-1.81.0/boost/detail/winapi/priority_class.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/priority_class.hpp rename to boost-1.81.0/boost/detail/winapi/priority_class.hpp diff --git a/boost-1.80.0/boost/detail/winapi/process.hpp b/boost-1.81.0/boost/detail/winapi/process.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/process.hpp rename to boost-1.81.0/boost/detail/winapi/process.hpp diff --git a/boost-1.80.0/boost/detail/winapi/security.hpp b/boost-1.81.0/boost/detail/winapi/security.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/security.hpp rename to boost-1.81.0/boost/detail/winapi/security.hpp diff --git a/boost-1.80.0/boost/detail/winapi/semaphore.hpp b/boost-1.81.0/boost/detail/winapi/semaphore.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/semaphore.hpp rename to boost-1.81.0/boost/detail/winapi/semaphore.hpp diff --git a/boost-1.80.0/boost/detail/winapi/shell.hpp b/boost-1.81.0/boost/detail/winapi/shell.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/shell.hpp rename to boost-1.81.0/boost/detail/winapi/shell.hpp diff --git a/boost-1.80.0/boost/detail/winapi/show_window.hpp b/boost-1.81.0/boost/detail/winapi/show_window.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/show_window.hpp rename to boost-1.81.0/boost/detail/winapi/show_window.hpp diff --git a/boost-1.80.0/boost/detail/winapi/srw_lock.hpp b/boost-1.81.0/boost/detail/winapi/srw_lock.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/srw_lock.hpp rename to boost-1.81.0/boost/detail/winapi/srw_lock.hpp diff --git a/boost-1.80.0/boost/detail/winapi/stack_backtrace.hpp b/boost-1.81.0/boost/detail/winapi/stack_backtrace.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/stack_backtrace.hpp rename to boost-1.81.0/boost/detail/winapi/stack_backtrace.hpp diff --git a/boost-1.80.0/boost/detail/winapi/synchronization.hpp b/boost-1.81.0/boost/detail/winapi/synchronization.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/synchronization.hpp rename to boost-1.81.0/boost/detail/winapi/synchronization.hpp diff --git a/boost-1.80.0/boost/detail/winapi/system.hpp b/boost-1.81.0/boost/detail/winapi/system.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/system.hpp rename to boost-1.81.0/boost/detail/winapi/system.hpp diff --git a/boost-1.80.0/boost/detail/winapi/thread.hpp b/boost-1.81.0/boost/detail/winapi/thread.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/thread.hpp rename to boost-1.81.0/boost/detail/winapi/thread.hpp diff --git a/boost-1.80.0/boost/detail/winapi/thread_pool.hpp b/boost-1.81.0/boost/detail/winapi/thread_pool.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/thread_pool.hpp rename to boost-1.81.0/boost/detail/winapi/thread_pool.hpp diff --git a/boost-1.80.0/boost/detail/winapi/time.hpp b/boost-1.81.0/boost/detail/winapi/time.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/time.hpp rename to boost-1.81.0/boost/detail/winapi/time.hpp diff --git a/boost-1.80.0/boost/detail/winapi/timers.hpp b/boost-1.81.0/boost/detail/winapi/timers.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/timers.hpp rename to boost-1.81.0/boost/detail/winapi/timers.hpp diff --git a/boost-1.80.0/boost/detail/winapi/tls.hpp b/boost-1.81.0/boost/detail/winapi/tls.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/tls.hpp rename to boost-1.81.0/boost/detail/winapi/tls.hpp diff --git a/boost-1.80.0/boost/detail/winapi/wait.hpp b/boost-1.81.0/boost/detail/winapi/wait.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/wait.hpp rename to boost-1.81.0/boost/detail/winapi/wait.hpp diff --git a/boost-1.80.0/boost/detail/winapi/waitable_timer.hpp b/boost-1.81.0/boost/detail/winapi/waitable_timer.hpp similarity index 100% rename from boost-1.80.0/boost/detail/winapi/waitable_timer.hpp rename to boost-1.81.0/boost/detail/winapi/waitable_timer.hpp diff --git a/boost-1.80.0/boost/detail/workaround.hpp b/boost-1.81.0/boost/detail/workaround.hpp similarity index 100% rename from boost-1.80.0/boost/detail/workaround.hpp rename to boost-1.81.0/boost/detail/workaround.hpp diff --git a/boost-1.80.0/boost/filesystem.hpp b/boost-1.81.0/boost/filesystem.hpp similarity index 100% rename from boost-1.80.0/boost/filesystem.hpp rename to boost-1.81.0/boost/filesystem.hpp diff --git a/boost-1.80.0/boost/filesystem/config.hpp b/boost-1.81.0/boost/filesystem/config.hpp similarity index 63% rename from boost-1.80.0/boost/filesystem/config.hpp rename to boost-1.81.0/boost/filesystem/config.hpp index 68d0557..fed4e0a 100644 --- a/boost-1.80.0/boost/filesystem/config.hpp +++ b/boost-1.81.0/boost/filesystem/config.hpp @@ -67,6 +67,54 @@ #error Configuration not supported: Boost.Filesystem V3 and later requires std::wstring support #endif +// Deprecated symbols markup -----------------------------------------------------------// + +#if !defined(BOOST_FILESYSTEM_ALLOW_DEPRECATED) + +#if !defined(BOOST_FILESYSTEM_DETAIL_DEPRECATED) && defined(_MSC_VER) +#if (_MSC_VER) >= 1400 +#define BOOST_FILESYSTEM_DETAIL_DEPRECATED(msg) __declspec(deprecated(msg)) +#else +// MSVC 7.1 only supports the attribute without a message +#define BOOST_FILESYSTEM_DETAIL_DEPRECATED(msg) __declspec(deprecated) +#endif +#endif + +#if !defined(BOOST_FILESYSTEM_DETAIL_DEPRECATED) && defined(__has_extension) +#if __has_extension(attribute_deprecated_with_message) +#define BOOST_FILESYSTEM_DETAIL_DEPRECATED(msg) __attribute__((deprecated(msg))) +#endif +#endif + +// gcc since 4.5 supports deprecated attribute with a message; older versions support the attribute without a message. +// Oracle Studio 12.4 supports deprecated attribute with a message; this is the first release that supports the attribute. +#if !defined(BOOST_FILESYSTEM_DETAIL_DEPRECATED) && (\ + (defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 405) ||\ + (defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5130)) +#define BOOST_FILESYSTEM_DETAIL_DEPRECATED(msg) __attribute__((deprecated(msg))) +#endif + +#if !defined(BOOST_FILESYSTEM_DETAIL_DEPRECATED) && __cplusplus >= 201402 +#define BOOST_FILESYSTEM_DETAIL_DEPRECATED(msg) [[deprecated(msg)]] +#endif + +#if !defined(BOOST_FILESYSTEM_DETAIL_DEPRECATED) && defined(__GNUC__) +#define BOOST_FILESYSTEM_DETAIL_DEPRECATED(msg) __attribute__((deprecated)) +#endif + +#if !defined(BOOST_FILESYSTEM_DETAIL_DEPRECATED) && defined(__has_attribute) +#if __has_attribute(deprecated) +#define BOOST_FILESYSTEM_DETAIL_DEPRECATED(msg) __attribute__((deprecated)) +#endif +#endif + +#endif // !defined(BOOST_FILESYSTEM_ALLOW_DEPRECATED) + +#if !defined(BOOST_FILESYSTEM_DETAIL_DEPRECATED) +#define BOOST_FILESYSTEM_DETAIL_DEPRECATED(msg) +#endif + + // This header implements separate compilation features as described in // http://www.boost.org/more/separate_compilation.html @@ -122,4 +170,15 @@ #include #endif // auto-linking disabled +#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) && \ + (\ + (defined(BOOST_DINKUMWARE_STDLIB) && defined(_HAS_CXX23) && (_HAS_CXX23 != 0) && defined(_MSVC_STL_UPDATE) && (_MSVC_STL_UPDATE < 202208L)) || \ + (defined(BOOST_LIBSTDCXX_VERSION) && (BOOST_LIBSTDCXX_VERSION < 110400 || (BOOST_LIBSTDCXX_VERSION >= 120000 && BOOST_LIBSTDCXX_VERSION < 120200)) && (BOOST_CXX_VERSION > 202002L))\ + ) +// Indicates that std::string_view has implicit constructor from ranges that was present in an early C++23 draft (N4892). +// This was later rectified by marking the constructor explicit (https://wg21.link/p2499). Unfortunately, some compilers +// were released with the constructor being implicit. +#define BOOST_FILESYSTEM_CXX23_STRING_VIEW_HAS_IMPLICIT_RANGE_CTOR +#endif + #endif // BOOST_FILESYSTEM_CONFIG_HPP diff --git a/boost-1.80.0/boost/filesystem/convenience.hpp b/boost-1.81.0/boost/filesystem/convenience.hpp similarity index 86% rename from boost-1.80.0/boost/filesystem/convenience.hpp rename to boost-1.81.0/boost/filesystem/convenience.hpp index 02d8f37..d66add2 100644 --- a/boost-1.80.0/boost/filesystem/convenience.hpp +++ b/boost-1.81.0/boost/filesystem/convenience.hpp @@ -25,16 +25,19 @@ namespace filesystem { #ifndef BOOST_FILESYSTEM_NO_DEPRECATED +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::extension() instead") inline std::string extension(const path& p) { return p.extension().string(); } +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::stem() instead") inline std::string basename(const path& p) { return p.stem().string(); } +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::replace_extension() instead") inline path change_extension(const path& p, const path& new_extension) { path new_p(p); diff --git a/boost-1.80.0/boost/filesystem/detail/footer.hpp b/boost-1.81.0/boost/filesystem/detail/footer.hpp similarity index 100% rename from boost-1.80.0/boost/filesystem/detail/footer.hpp rename to boost-1.81.0/boost/filesystem/detail/footer.hpp diff --git a/boost-1.80.0/boost/filesystem/detail/header.hpp b/boost-1.81.0/boost/filesystem/detail/header.hpp similarity index 90% rename from boost-1.80.0/boost/filesystem/detail/header.hpp rename to boost-1.81.0/boost/filesystem/detail/header.hpp index 10f49a6..9ee6fc8 100644 --- a/boost-1.80.0/boost/filesystem/detail/header.hpp +++ b/boost-1.81.0/boost/filesystem/detail/header.hpp @@ -28,6 +28,10 @@ #pragma warning(disable: 4503) // 'X': This function or variable may be unsafe. Consider using Y instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. #pragma warning(disable: 4996) +// qualifier applied to function type has no meaning; ignored +#pragma warning(disable: 4180) +// qualifier applied to reference type; ignored +#pragma warning(disable: 4181) #elif (defined(__GNUC__) && !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) \ && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406) || defined(__clang__) diff --git a/boost-1.81.0/boost/filesystem/detail/path_traits.hpp b/boost-1.81.0/boost/filesystem/detail/path_traits.hpp new file mode 100644 index 0000000..0840c1e --- /dev/null +++ b/boost-1.81.0/boost/filesystem/detail/path_traits.hpp @@ -0,0 +1,700 @@ +// filesystem path_traits.hpp --------------------------------------------------------// + +// Copyright Beman Dawes 2009 +// Copyright Andrey Semashev 2022 + +// Distributed under the Boost Software License, Version 1.0. +// See http://www.boost.org/LICENSE_1_0.txt + +// Library home page: http://www.boost.org/libs/filesystem + +#ifndef BOOST_FILESYSTEM_DETAIL_PATH_TRAITS_HPP +#define BOOST_FILESYSTEM_DETAIL_PATH_TRAITS_HPP + +#include +#include +#include // for strlen +#include // for mbstate_t, wcslen +#include +#include +#include +#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) +#include +#endif +#include +#include +#include +#include +#if defined(BOOST_FILESYSTEM_CXX23_STRING_VIEW_HAS_IMPLICIT_RANGE_CTOR) +#include +#include +#endif +#if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) && BOOST_FILESYSTEM_VERSION < 4 +#include +#include +#endif + +#include // must be the last #include + +namespace boost { + +template< typename, typename > class basic_string_view; + +namespace container { +template< typename, typename, typename > class basic_string; +} // namespace container + +namespace filesystem { + +BOOST_FILESYSTEM_DECL system::error_category const& codecvt_error_category() BOOST_NOEXCEPT; + +class directory_entry; + +namespace detail { +namespace path_traits { + +#if defined(BOOST_WINDOWS_API) +typedef wchar_t path_native_char_type; +#define BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE false +#define BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE true +#else +typedef char path_native_char_type; +#define BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE true +#define BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE false +#endif + +typedef std::codecvt< wchar_t, char, std::mbstate_t > codecvt_type; + +struct unknown_type_tag {}; +struct ntcts_type_tag {}; +struct char_ptr_tag : ntcts_type_tag {}; +struct char_array_tag : ntcts_type_tag {}; +struct string_class_tag {}; +struct std_string_tag : string_class_tag {}; +struct boost_container_string_tag : string_class_tag {}; +struct std_string_view_tag : string_class_tag {}; +struct boost_string_view_tag : string_class_tag {}; +struct range_type_tag {}; +struct directory_entry_tag {}; + +//! The traits define a number of properties of a path source +template< typename T > +struct path_source_traits +{ + //! The kind of the path source. Useful for dispatching. + typedef unknown_type_tag tag_type; + //! Character type that the source contains + typedef void char_type; + //! Indicates whether the source is natively supported by \c path::string_type as arguments for constructors/assignment/appending + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; + +template< > +struct path_source_traits< char* > +{ + typedef char_ptr_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE; +}; + +template< > +struct path_source_traits< const char* > +{ + typedef char_ptr_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE; +}; + +template< > +struct path_source_traits< wchar_t* > +{ + typedef char_ptr_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE; +}; + +template< > +struct path_source_traits< const wchar_t* > +{ + typedef char_ptr_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE; +}; + +template< > +struct path_source_traits< char[] > +{ + typedef char_array_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE; +}; + +template< > +struct path_source_traits< const char[] > +{ + typedef char_array_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE; +}; + +template< > +struct path_source_traits< wchar_t[] > +{ + typedef char_array_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE; +}; + +template< > +struct path_source_traits< const wchar_t[] > +{ + typedef char_array_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE; +}; + +template< std::size_t N > +struct path_source_traits< char[N] > +{ + typedef char_array_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE; +}; + +template< std::size_t N > +struct path_source_traits< const char[N] > +{ + typedef char_array_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE; +}; + +template< std::size_t N > +struct path_source_traits< wchar_t[N] > +{ + typedef char_array_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE; +}; + +template< std::size_t N > +struct path_source_traits< const wchar_t[N] > +{ + typedef char_array_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE; +}; + +template< > +struct path_source_traits< std::string > +{ + typedef std_string_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE; +}; + +template< > +struct path_source_traits< std::wstring > +{ + typedef std_string_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE; +}; + +template< > +struct path_source_traits< boost::container::basic_string< char, std::char_traits< char >, void > > +{ + typedef boost_container_string_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; + +template< > +struct path_source_traits< boost::container::basic_string< wchar_t, std::char_traits< wchar_t >, void > > +{ + typedef boost_container_string_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; + +#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) + +template< > +struct path_source_traits< std::string_view > +{ + typedef std_string_view_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE; +}; + +template< > +struct path_source_traits< std::wstring_view > +{ + typedef std_string_view_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE; +}; + +#endif // !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) + +template< > +struct path_source_traits< boost::basic_string_view< char, std::char_traits< char > > > +{ + typedef boost_string_view_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; + +template< > +struct path_source_traits< boost::basic_string_view< wchar_t, std::char_traits< wchar_t > > > +{ + typedef boost_string_view_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; + +#if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) && BOOST_FILESYSTEM_VERSION < 4 +template< > +struct +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Boost.Filesystem path construction/assignment/appending from containers is deprecated, use strings or iterators instead.") +path_source_traits< std::vector< char > > +{ + // Since C++11 this could be string_class_tag as std::vector gained data() member + typedef range_type_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; + +template< > +struct +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Boost.Filesystem path construction/assignment/appending from containers is deprecated, use strings or iterators instead.") +path_source_traits< std::vector< wchar_t > > +{ + // Since C++11 this could be string_class_tag as std::vector gained data() member + typedef range_type_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; + +template< > +struct +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Boost.Filesystem path construction/assignment/appending from containers is deprecated, use strings or iterators instead.") +path_source_traits< std::list< char > > +{ + typedef range_type_tag tag_type; + typedef char char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; + +template< > +struct +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Boost.Filesystem path construction/assignment/appending from containers is deprecated, use strings or iterators instead.") +path_source_traits< std::list< wchar_t > > +{ + typedef range_type_tag tag_type; + typedef wchar_t char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; +#endif // !defined(BOOST_FILESYSTEM_NO_DEPRECATED) && BOOST_FILESYSTEM_VERSION < 4 + +template< > +struct path_source_traits< directory_entry > +{ + typedef directory_entry_tag tag_type; + typedef path_native_char_type char_type; + static BOOST_CONSTEXPR_OR_CONST bool is_native = false; +}; + +#undef BOOST_FILESYSTEM_DETAIL_IS_CHAR_NATIVE +#undef BOOST_FILESYSTEM_DETAIL_IS_WCHAR_T_NATIVE + + +//! The trait tests if the type is a known path Source tag +template< typename Tag > +struct is_known_path_source_tag +{ + static BOOST_CONSTEXPR_OR_CONST bool value = true; +}; + +template< > +struct is_known_path_source_tag< unknown_type_tag > +{ + static BOOST_CONSTEXPR_OR_CONST bool value = false; +}; + +//! The trait tests if the type is compatible with path Source requirements +template< typename T > +struct is_path_source : + public is_known_path_source_tag< typename path_source_traits< T >::tag_type > +{ +}; + + +//! The trait indicates whether the type is a path Source that is natively supported by path::string_type as the source for construction/assignment/appending +template< typename T > +struct is_native_path_source +{ + static BOOST_CONSTEXPR_OR_CONST bool value = path_source_traits< T >::is_native; +}; + + +//! The trait indicates whether the type is one of the supported path character types +template< typename T > +struct is_path_char_type +{ + static BOOST_CONSTEXPR_OR_CONST bool value = false; +}; + +template< > +struct is_path_char_type< char > +{ + static BOOST_CONSTEXPR_OR_CONST bool value = true; +}; + +template< > +struct is_path_char_type< wchar_t > +{ + static BOOST_CONSTEXPR_OR_CONST bool value = true; +}; + + +//! The trait indicates whether the type is an iterator over a sequence of path characters +template< typename Iterator > +struct is_path_source_iterator : + public is_path_char_type< typename std::iterator_traits< Iterator >::value_type > +{ +}; + + +//! The trait indicates whether the type is a pointer to a sequence of native path characters +template< typename T > +struct is_native_char_ptr +{ + static BOOST_CONSTEXPR_OR_CONST bool value = false; +}; + +template< > +struct is_native_char_ptr< path_native_char_type* > +{ + static BOOST_CONSTEXPR_OR_CONST bool value = true; +}; + +template< > +struct is_native_char_ptr< const path_native_char_type* > +{ + static BOOST_CONSTEXPR_OR_CONST bool value = true; +}; + + +//! Converts character encoding using the supplied codecvt facet. If \a cvt is \c NULL then \c path::codecvt() will be used. +BOOST_FILESYSTEM_DECL +void convert(const char* from, const char* from_end, std::wstring& to, const codecvt_type* cvt = NULL); + +//! \overload convert +BOOST_FILESYSTEM_DECL +void convert(const wchar_t* from, const wchar_t* from_end, std::string& to, const codecvt_type* cvt = NULL); + + +// Source dispatch -----------------------------------------------------------------// + +template< typename Source, typename Callback > +inline void dispatch(Source const& source, Callback cb, const codecvt_type* cvt = NULL); + +template< typename Callback > +BOOST_FORCEINLINE void dispatch(const char* source, Callback cb, const codecvt_type* cvt, ntcts_type_tag) +{ + cb(source, source + std::strlen(source), cvt); +} + +template< typename Callback > +BOOST_FORCEINLINE void dispatch(const wchar_t* source, Callback cb, const codecvt_type* cvt, ntcts_type_tag) +{ + cb(source, source + std::wcslen(source), cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch(Source const& source, Callback cb, const codecvt_type* cvt, string_class_tag) +{ + cb(source.data(), source.data() + source.size(), cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch(Source const& source, Callback cb, const codecvt_type* cvt, range_type_tag) +{ + std::basic_string< typename Source::value_type > src(source.begin(), source.end()); + cb(src.data(), src.data() + src.size(), cvt); +} + +#if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) && BOOST_FILESYSTEM_VERSION < 4 + +template< typename Callback > +BOOST_FORCEINLINE void dispatch(std::vector< char > const& source, Callback cb, const codecvt_type* cvt, range_type_tag) +{ + const char* data = NULL, *data_end = NULL; + if (!source.empty()) + { + data = &source[0]; + data_end = data + source.size(); + } + cb(data, data_end, cvt); +} + +template< typename Callback > +BOOST_FORCEINLINE void dispatch(std::vector< wchar_t > const& source, Callback cb, const codecvt_type* cvt, range_type_tag) +{ + const wchar_t* data = NULL, *data_end = NULL; + if (!source.empty()) + { + data = &source[0]; + data_end = data + source.size(); + } + cb(data, data_end, cvt); +} + +#endif // !defined(BOOST_FILESYSTEM_NO_DEPRECATED) && BOOST_FILESYSTEM_VERSION < 4 + +// Defined in directory.hpp to avoid circular header dependencies +template< typename Callback > +void dispatch(directory_entry const& de, Callback cb, const codecvt_type* cvt, directory_entry_tag); + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch(Source const& source, Callback cb, const codecvt_type* cvt) +{ + path_traits::dispatch(source, cb, cvt, + typename path_traits::path_source_traits< typename boost::remove_cv< Source >::type >::tag_type()); +} + + +typedef char yes_type; +struct no_type { char buf[2]; }; + +// Note: The obscure naming of the _check* functions below is a workaround for an MSVC-9.0 bug, which looks up the function outside the class scope + +#if !defined(BOOST_FILESYSTEM_CXX23_STRING_VIEW_HAS_IMPLICIT_RANGE_CTOR) + +//! The type trait indicates whether the type has a conversion path to one of the path source types +template< typename T > +struct is_convertible_to_path_source +{ + // Note: The obscure naming of this function is a workaround for an MSVC-9.0 bug, which looks up the function outside the class scope + static yes_type _check_convertible_to_path_source(const char*); + static yes_type _check_convertible_to_path_source(const wchar_t*); + static yes_type _check_convertible_to_path_source(std::string const&); + static yes_type _check_convertible_to_path_source(std::wstring const&); + static yes_type _check_convertible_to_path_source(boost::container::basic_string< char, std::char_traits< char >, void > const&); + static yes_type _check_convertible_to_path_source(boost::container::basic_string< wchar_t, std::char_traits< wchar_t >, void > const&); +#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) + static yes_type _check_convertible_to_path_source(std::string_view const&); + static yes_type _check_convertible_to_path_source(std::wstring_view const&); +#endif + static yes_type _check_convertible_to_path_source(boost::basic_string_view< char, std::char_traits< char > > const&); + static yes_type _check_convertible_to_path_source(boost::basic_string_view< wchar_t, std::char_traits< wchar_t > > const&); + static no_type _check_convertible_to_path_source(...); + + static BOOST_CONSTEXPR_OR_CONST bool value = + sizeof(is_convertible_to_path_source< T >::_check_convertible_to_path_source(boost::declval< T const& >())) == sizeof(yes_type); +}; + +#else // !defined(BOOST_FILESYSTEM_CXX23_STRING_VIEW_HAS_IMPLICIT_RANGE_CTOR) + +// Note: We use separate checks for convertibility to std::string_view and other types to avoid ambiguity with an implicit range constructor +// of std::string_view in the early C++23 draft (N4892). If a user's type is convertible to e.g. std::string and also satisfies +// ranges::contiguous_range and ranges::sized_range concepts then the conversion is ambiguous: the type is convertible to std::string +// through the conversion operator in the user's class and is also convertible to std::string_view through the implicit conversion +// constructor in std::string_view. The solution is to check convertibility to std::string_view separately first. + +template< typename T > +struct is_convertible_to_std_string_view +{ + static yes_type _check_convertible_to_std_string_view(std::string_view const&); + static yes_type _check_convertible_to_std_string_view(std::wstring_view const&); + static no_type _check_convertible_to_std_string_view(...); + + static BOOST_CONSTEXPR_OR_CONST bool value = + sizeof(is_convertible_to_std_string_view< T >::_check_convertible_to_std_string_view(boost::declval< T const& >())) == sizeof(yes_type); +}; + +template< typename T > +struct is_convertible_to_path_source_non_std_string_view +{ + // Note: The obscure naming of this function is a workaround for an MSVC-9.0 bug, which looks up the function outside the class scope + static yes_type _check_convertible_to_path_source(const char*); + static yes_type _check_convertible_to_path_source(const wchar_t*); + static yes_type _check_convertible_to_path_source(std::string const&); + static yes_type _check_convertible_to_path_source(std::wstring const&); + static yes_type _check_convertible_to_path_source(boost::container::basic_string< char, std::char_traits< char >, void > const&); + static yes_type _check_convertible_to_path_source(boost::container::basic_string< wchar_t, std::char_traits< wchar_t >, void > const&); + static yes_type _check_convertible_to_path_source(boost::basic_string_view< char, std::char_traits< char > > const&); + static yes_type _check_convertible_to_path_source(boost::basic_string_view< wchar_t, std::char_traits< wchar_t > > const&); + static no_type _check_convertible_to_path_source(...); + + static BOOST_CONSTEXPR_OR_CONST bool value = + sizeof(is_convertible_to_path_source_non_std_string_view< T >::_check_convertible_to_path_source(boost::declval< T const& >())) == sizeof(yes_type); +}; + +//! The type trait indicates whether the type has a conversion path to one of the path source types +template< typename T > +struct is_convertible_to_path_source : + public boost::disjunction< + is_convertible_to_std_string_view< T >, + is_convertible_to_path_source_non_std_string_view< T > + > +{ +}; + +#endif // !defined(BOOST_FILESYSTEM_CXX23_STRING_VIEW_HAS_IMPLICIT_RANGE_CTOR) + +//! The type trait makes \a T dependent on the second template argument. Used to delay type resolution and name binding. +template< typename T, typename > +struct make_dependent +{ + typedef T type; +}; + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl(const char* source, Callback cb, const codecvt_type* cvt) +{ + typedef typename path_traits::make_dependent< const char*, Source >::type source_t; + path_traits::dispatch(static_cast< source_t >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl(const wchar_t* source, Callback cb, const codecvt_type* cvt) +{ + typedef typename path_traits::make_dependent< const wchar_t*, Source >::type source_t; + path_traits::dispatch(static_cast< source_t >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl(std::string const& source, Callback cb, const codecvt_type* cvt) +{ + typedef typename path_traits::make_dependent< std::string, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl(std::wstring const& source, Callback cb, const codecvt_type* cvt) +{ + typedef typename path_traits::make_dependent< std::wstring, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl +( + boost::container::basic_string< char, std::char_traits< char >, void > const& source, + Callback cb, + const codecvt_type* cvt +) +{ + typedef typename path_traits::make_dependent< boost::container::basic_string< char, std::char_traits< char >, void >, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl +( + boost::container::basic_string< wchar_t, std::char_traits< wchar_t >, void > const& source, + Callback cb, + const codecvt_type* cvt +) +{ + typedef typename path_traits::make_dependent< boost::container::basic_string< wchar_t, std::char_traits< wchar_t >, void >, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl +( + boost::basic_string_view< char, std::char_traits< char > > const& source, + Callback cb, + const codecvt_type* cvt +) +{ + typedef typename path_traits::make_dependent< boost::basic_string_view< char, std::char_traits< char > >, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl +( + boost::basic_string_view< wchar_t, std::char_traits< wchar_t > > const& source, + Callback cb, + const codecvt_type* cvt +) +{ + typedef typename path_traits::make_dependent< boost::basic_string_view< wchar_t, std::char_traits< wchar_t > >, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +#if !defined(BOOST_FILESYSTEM_CXX23_STRING_VIEW_HAS_IMPLICIT_RANGE_CTOR) + +#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl(std::string_view const& source, Callback cb, const codecvt_type* cvt) +{ + typedef typename path_traits::make_dependent< std::string_view, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_impl(std::wstring_view const& source, Callback cb, const codecvt_type* cvt) +{ + typedef typename path_traits::make_dependent< std::wstring_view, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +#endif // !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible(Source const& source, Callback cb, const codecvt_type* cvt = NULL) +{ + typedef typename boost::remove_cv< Source >::type source_t; + path_traits::dispatch_convertible_impl< source_t >(source, cb, cvt); +} + +#else // !defined(BOOST_FILESYSTEM_CXX23_STRING_VIEW_HAS_IMPLICIT_RANGE_CTOR) + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_sv_impl(std::string_view const& source, Callback cb, const codecvt_type* cvt) +{ + typedef typename path_traits::make_dependent< std::string_view, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE void dispatch_convertible_sv_impl(std::wstring_view const& source, Callback cb, const codecvt_type* cvt) +{ + typedef typename path_traits::make_dependent< std::wstring_view, Source >::type source_t; + path_traits::dispatch(static_cast< source_t const& >(source), cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE typename boost::disable_if_c< + is_convertible_to_std_string_view< typename boost::remove_cv< Source >::type >::value +>::type dispatch_convertible(Source const& source, Callback cb, const codecvt_type* cvt = NULL) +{ + typedef typename boost::remove_cv< Source >::type source_t; + path_traits::dispatch_convertible_impl< source_t >(source, cb, cvt); +} + +template< typename Source, typename Callback > +BOOST_FORCEINLINE typename boost::enable_if_c< + is_convertible_to_std_string_view< typename boost::remove_cv< Source >::type >::value +>::type dispatch_convertible(Source const& source, Callback cb, const codecvt_type* cvt = NULL) +{ + typedef typename boost::remove_cv< Source >::type source_t; + path_traits::dispatch_convertible_sv_impl< source_t >(source, cb, cvt); +} + +#endif // !defined(BOOST_FILESYSTEM_CXX23_STRING_VIEW_HAS_IMPLICIT_RANGE_CTOR) + +} // namespace path_traits +} // namespace detail +} // namespace filesystem +} // namespace boost + +#include + +#endif // BOOST_FILESYSTEM_DETAIL_PATH_TRAITS_HPP diff --git a/boost-1.80.0/boost/filesystem/detail/utf8_codecvt_facet.hpp b/boost-1.81.0/boost/filesystem/detail/utf8_codecvt_facet.hpp similarity index 100% rename from boost-1.80.0/boost/filesystem/detail/utf8_codecvt_facet.hpp rename to boost-1.81.0/boost/filesystem/detail/utf8_codecvt_facet.hpp diff --git a/boost-1.80.0/boost/filesystem/directory.hpp b/boost-1.81.0/boost/filesystem/directory.hpp similarity index 91% rename from boost-1.80.0/boost/filesystem/directory.hpp rename to boost-1.81.0/boost/filesystem/directory.hpp index 68b1363..c499006 100644 --- a/boost-1.80.0/boost/filesystem/directory.hpp +++ b/boost-1.81.0/boost/filesystem/directory.hpp @@ -4,7 +4,7 @@ // Copyright Jan Langer 2002 // Copyright Dietmar Kuehl 2001 // Copyright Vladimir Prus 2002 -// Copyright Andrey Semashev 2019 +// Copyright Andrey Semashev 2019, 2022 // Distributed under the Boost Software License, Version 1.0. // See http://www.boost.org/LICENSE_1_0.txt @@ -19,11 +19,11 @@ #include #include #include +#include #include #include #include -#include // std::move #include #include @@ -87,37 +87,55 @@ public: #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) directory_entry(directory_entry&& rhs) BOOST_NOEXCEPT : - m_path(std::move(rhs.m_path)), - m_status(std::move(rhs.m_status)), - m_symlink_status(std::move(rhs.m_symlink_status)) + m_path(static_cast< boost::filesystem::path&& >(rhs.m_path)), + m_status(static_cast< file_status&& >(rhs.m_status)), + m_symlink_status(static_cast< file_status&& >(rhs.m_symlink_status)) { } directory_entry& operator=(directory_entry&& rhs) BOOST_NOEXCEPT { - m_path = std::move(rhs.m_path); - m_status = std::move(rhs.m_status); - m_symlink_status = std::move(rhs.m_symlink_status); + m_path = static_cast< boost::filesystem::path&& >(rhs.m_path); + m_status = static_cast< file_status&& >(rhs.m_status); + m_symlink_status = static_cast< file_status&& >(rhs.m_symlink_status); return *this; } + + void assign(boost::filesystem::path&& p, file_status st = file_status(), file_status symlink_st = file_status()) + { + m_path = static_cast< boost::filesystem::path&& >(p); + m_status = static_cast< file_status&& >(st); + m_symlink_status = static_cast< file_status&& >(symlink_st); + } #endif void assign(boost::filesystem::path const& p, file_status st = file_status(), file_status symlink_st = file_status()) { m_path = p; +#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) + m_status = static_cast< file_status&& >(st); + m_symlink_status = static_cast< file_status&& >(symlink_st); +#else m_status = st; m_symlink_status = symlink_st; +#endif } void replace_filename(boost::filesystem::path const& p, file_status st = file_status(), file_status symlink_st = file_status()) { m_path.remove_filename(); m_path /= p; +#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) + m_status = static_cast< file_status&& >(st); + m_symlink_status = static_cast< file_status&& >(symlink_st); +#else m_status = st; m_symlink_status = symlink_st; +#endif } #ifndef BOOST_FILESYSTEM_NO_DEPRECATED + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use directory_entry::replace_filename() instead") void replace_leaf(boost::filesystem::path const& p, file_status st, file_status symlink_st) { replace_filename(p, st, symlink_st); @@ -151,6 +169,20 @@ private: mutable file_status m_symlink_status; // lstat()-like }; // directory_entry +namespace detail { +namespace path_traits { + +// Dispatch function for integration with path class +template< typename Callback > +BOOST_FORCEINLINE void dispatch(directory_entry const& de, Callback cb, const codecvt_type* cvt, directory_entry_tag) +{ + boost::filesystem::path::string_type const& source = de.path().native(); + cb(source.data(), source.data() + source.size(), cvt); +} + +} // namespace path_traits +} // namespace detail + //--------------------------------------------------------------------------------------// // // // directory_entry overloads // @@ -228,9 +260,10 @@ inline bool is_other(directory_entry const& e, system::error_code& ec) BOOST_NOE return filesystem::is_other(e.status(ec)); } #ifndef BOOST_FILESYSTEM_NO_DEPRECATED +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use is_regular_file() instead") inline bool is_regular(directory_entry const& e) { - return filesystem::is_regular(e.status()); + return filesystem::is_regular_file(e); } #endif @@ -336,13 +369,13 @@ public: #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) directory_iterator(directory_iterator&& that) BOOST_NOEXCEPT : - m_imp(std::move(that.m_imp)) + m_imp(static_cast< boost::intrusive_ptr< detail::dir_itr_imp >&& >(that.m_imp)) { } directory_iterator& operator=(directory_iterator&& that) BOOST_NOEXCEPT { - m_imp = std::move(that.m_imp); + m_imp = static_cast< boost::intrusive_ptr< detail::dir_itr_imp >&& >(that.m_imp); return *this; } #endif // !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) @@ -540,11 +573,13 @@ public: #if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) // Deprecated constructors + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use directory_options instead of symlink_option") recursive_directory_iterator(path const& dir_path, BOOST_SCOPED_ENUM_NATIVE(symlink_option) opts) { detail::recursive_directory_iterator_construct(*this, dir_path, static_cast< unsigned int >(opts), NULL); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use directory_options instead of symlink_option") recursive_directory_iterator(path const& dir_path, BOOST_SCOPED_ENUM_NATIVE(symlink_option) opts, system::error_code& ec) BOOST_NOEXCEPT { detail::recursive_directory_iterator_construct(*this, dir_path, static_cast< unsigned int >(opts), &ec); @@ -556,13 +591,13 @@ public: #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) recursive_directory_iterator(recursive_directory_iterator&& that) BOOST_NOEXCEPT : - m_imp(std::move(that.m_imp)) + m_imp(static_cast< boost::intrusive_ptr< detail::recur_dir_itr_imp >&& >(that.m_imp)) { } recursive_directory_iterator& operator=(recursive_directory_iterator&& that) BOOST_NOEXCEPT { - m_imp = std::move(that.m_imp); + m_imp = static_cast< boost::intrusive_ptr< detail::recur_dir_itr_imp >&& >(that.m_imp); return *this; } #endif // !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) @@ -586,6 +621,7 @@ public: } #ifndef BOOST_FILESYSTEM_NO_DEPRECATED + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use recursive_directory_iterator::depth() instead") int level() const BOOST_NOEXCEPT { return depth(); @@ -614,6 +650,7 @@ public: } #ifndef BOOST_FILESYSTEM_NO_DEPRECATED + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use recursive_directory_iterator::disable_recursion_pending() instead") void no_push(bool value = true) BOOST_NOEXCEPT { disable_recursion_pending(value); @@ -664,6 +701,7 @@ private: }; #if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use recursive_directory_iterator instead") typedef recursive_directory_iterator wrecursive_directory_iterator; #endif diff --git a/boost-1.80.0/boost/filesystem/exception.hpp b/boost-1.81.0/boost/filesystem/exception.hpp similarity index 100% rename from boost-1.80.0/boost/filesystem/exception.hpp rename to boost-1.81.0/boost/filesystem/exception.hpp diff --git a/boost-1.80.0/boost/filesystem/file_status.hpp b/boost-1.81.0/boost/filesystem/file_status.hpp similarity index 99% rename from boost-1.80.0/boost/filesystem/file_status.hpp rename to boost-1.81.0/boost/filesystem/file_status.hpp index 90eca99..c4f944c 100644 --- a/boost-1.80.0/boost/filesystem/file_status.hpp +++ b/boost-1.81.0/boost/filesystem/file_status.hpp @@ -229,6 +229,7 @@ inline BOOST_CONSTEXPR bool is_other(file_status f) BOOST_NOEXCEPT } #ifndef BOOST_FILESYSTEM_NO_DEPRECATED +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use is_regular_file() instead") inline bool is_regular(file_status f) BOOST_NOEXCEPT { return filesystem::is_regular_file(f); diff --git a/boost-1.80.0/boost/filesystem/fstream.hpp b/boost-1.81.0/boost/filesystem/fstream.hpp similarity index 100% rename from boost-1.80.0/boost/filesystem/fstream.hpp rename to boost-1.81.0/boost/filesystem/fstream.hpp diff --git a/boost-1.80.0/boost/filesystem/operations.hpp b/boost-1.81.0/boost/filesystem/operations.hpp similarity index 96% rename from boost-1.80.0/boost/filesystem/operations.hpp rename to boost-1.81.0/boost/filesystem/operations.hpp index 856de7c..112dba2 100644 --- a/boost-1.80.0/boost/filesystem/operations.hpp +++ b/boost-1.81.0/boost/filesystem/operations.hpp @@ -242,14 +242,16 @@ inline bool is_symlink(path const& p, system::error_code& ec) } #ifndef BOOST_FILESYSTEM_NO_DEPRECATED +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use is_regular_file() instead") inline bool is_regular(path const& p) { - return is_regular(detail::status(p)); + return filesystem::is_regular_file(p); } +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use is_regular_file() instead") inline bool is_regular(path const& p, system::error_code& ec) { - return is_regular(detail::status(p, &ec)); + return filesystem::is_regular_file(p, ec); } #endif @@ -347,11 +349,13 @@ inline path canonical(path const& p, path const& base, system::error_code& ec) } #ifndef BOOST_FILESYSTEM_NO_DEPRECATED +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use absolute() instead") inline path complete(path const& p) { return absolute(p, initial_path()); } +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use absolute() instead") inline path complete(path const& p, path const& base) { return absolute(p, base); @@ -379,11 +383,13 @@ inline void copy(path const& from, path const& to, BOOST_SCOPED_ENUM_NATIVE(copy } #if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use create_directory() instead") inline void copy_directory(path const& from, path const& to) { detail::copy_directory(from, to); } +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use create_directory() instead") inline void copy_directory(path const& from, path const& to, system::error_code& ec) BOOST_NOEXCEPT { detail::copy_directory(from, to, &ec); @@ -413,12 +419,14 @@ inline bool copy_file(path const& from, path const& to, // See ticket #2925 } #if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use copy_options instead of copy_option") inline bool copy_file(path const& from, path const& to, // See ticket #2925 BOOST_SCOPED_ENUM_NATIVE(copy_option) options) { return detail::copy_file(from, to, static_cast< unsigned int >(options)); } +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use copy_options instead of copy_option") inline bool copy_file(path const& from, path const& to, // See ticket #2925 BOOST_SCOPED_ENUM_NATIVE(copy_option) options, system::error_code& ec) BOOST_NOEXCEPT { @@ -646,6 +654,7 @@ inline space_info space(path const& p, system::error_code& ec) BOOST_NOEXCEPT } #ifndef BOOST_FILESYSTEM_NO_DEPRECATED +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use is_symlink(symlink_status(path)) instead") inline bool symbolic_link_exists(path const& p) { return is_symlink(filesystem::symlink_status(p)); diff --git a/boost-1.80.0/boost/filesystem/path.hpp b/boost-1.81.0/boost/filesystem/path.hpp similarity index 60% rename from boost-1.80.0/boost/filesystem/path.hpp rename to boost-1.81.0/boost/filesystem/path.hpp index 0554c98..fe29a9b 100644 --- a/boost-1.80.0/boost/filesystem/path.hpp +++ b/boost-1.81.0/boost/filesystem/path.hpp @@ -18,33 +18,31 @@ #include #include -#include // includes +#include #include #include #include #include #include -#include +#include +#include +#include #include -#include -#include #include -#include #include -#include // for mbstate_t -#include #include -#include #include -#include +#include +#include +#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) +#include +#endif #include // must be the last #include namespace boost { namespace filesystem { -class path; - namespace path_detail { // intentionally don't use filesystem::detail to not bring internal Boost.Filesystem functions into ADL via path_constants template< typename Char, Char Separator, Char PreferredSeparator, Char Dot > @@ -76,51 +74,6 @@ struct substring std::size_t size; }; -template< typename T > -struct is_native_char_ptr_impl : public boost::false_type {}; - -#if defined(BOOST_WINDOWS_API) -template< > -struct is_native_char_ptr_impl< wchar_t* > : public boost::true_type {}; -template< > -struct is_native_char_ptr_impl< const wchar_t* > : public boost::true_type {}; -#else // defined(BOOST_WINDOWS_API) -template< > -struct is_native_char_ptr_impl< char* > : public boost::true_type {}; -template< > -struct is_native_char_ptr_impl< const char* > : public boost::true_type {}; -#endif // defined(BOOST_WINDOWS_API) - -template< typename T > -struct is_native_char_ptr : public is_native_char_ptr_impl< typename boost::remove_cv< typename boost::remove_reference< T >::type >::type > {}; - -template< typename T > -struct is_native_pathable_impl : public boost::false_type {}; - -template< typename T > -struct is_native_pathable_impl< T* > : public is_native_char_ptr_impl< T* > {}; - -#if defined(BOOST_WINDOWS_API) -template< > -struct is_native_pathable_impl< const wchar_t[] > : public boost::true_type {}; -template< std::size_t N > -struct is_native_pathable_impl< const wchar_t[N] > : public boost::true_type {}; -template< > -struct is_native_pathable_impl< std::basic_string< wchar_t > > : public boost::true_type {}; -#else // defined(BOOST_WINDOWS_API) -template< > -struct is_native_pathable_impl< const char[] > : public boost::true_type {}; -template< std::size_t N > -struct is_native_pathable_impl< const char[N] > : public boost::true_type {}; -template< > -struct is_native_pathable_impl< std::basic_string< char > > : public boost::true_type {}; -#endif // defined(BOOST_WINDOWS_API) -template< > -struct is_native_pathable_impl< filesystem::path > : public boost::true_type {}; - -template< typename T > -struct is_native_pathable : public is_native_pathable_impl< typename boost::remove_cv< typename boost::remove_reference< T >::type >::type > {}; - } // namespace path_detail //------------------------------------------------------------------------------------// @@ -132,9 +85,9 @@ struct is_native_pathable : public is_native_pathable_impl< typename boost::remo class path : public filesystem::path_detail::path_constants< #ifdef BOOST_WINDOWS_API - wchar_t, L'/', L'\\', L'.' + detail::path_traits::path_native_char_type, L'/', L'\\', L'.' #else - char, '/', '/', '.' + detail::path_traits::path_native_char_type, '/', '/', '.' #endif > { @@ -144,7 +97,7 @@ public: typedef path_constants_base::value_type value_type; typedef std::basic_string< value_type > string_type; - typedef std::codecvt< wchar_t, char, std::mbstate_t > codecvt_type; + typedef detail::path_traits::codecvt_type codecvt_type; // ----- character encoding conversions ----- @@ -201,131 +154,292 @@ public: // that actually depend on locale(""). It further ensures that exceptions thrown // as a result of such failues occur after main() has started, so can be caught. +private: + //! Assignment operation + class assign_op + { + private: + path& m_self; + + public: + typedef void result_type; + + explicit assign_op(path& self) BOOST_NOEXCEPT : m_self(self) {} + + result_type operator() (const value_type* source, const value_type* source_end, const codecvt_type* = NULL) const + { + m_self.m_pathname.assign(source, source_end); + } + + template< typename OtherChar > + result_type operator() (const OtherChar* source, const OtherChar* source_end, const codecvt_type* cvt = NULL) const + { + m_self.m_pathname.clear(); + detail::path_traits::convert(source, source_end, m_self.m_pathname, cvt); + } + }; + + //! Concatenation operation + class concat_op + { + private: + path& m_self; + + public: + typedef void result_type; + + explicit concat_op(path& self) BOOST_NOEXCEPT : m_self(self) {} + + result_type operator() (const value_type* source, const value_type* source_end, const codecvt_type* = NULL) const + { + m_self.m_pathname.append(source, source_end); + } + + template< typename OtherChar > + result_type operator() (const OtherChar* source, const OtherChar* source_end, const codecvt_type* cvt = NULL) const + { + detail::path_traits::convert(source, source_end, m_self.m_pathname, cvt); + } + }; + + //! Path appending operation + class append_op + { + private: + path& m_self; + + public: + typedef void result_type; + + explicit append_op(path& self) BOOST_NOEXCEPT : m_self(self) {} + + BOOST_FORCEINLINE result_type operator() (const value_type* source, const value_type* source_end, const codecvt_type* = NULL) const + { + m_self.append(source, source_end); + } + + template< typename OtherChar > + BOOST_FORCEINLINE result_type operator() (const OtherChar* source, const OtherChar* source_end, const codecvt_type* cvt = NULL) const + { + string_type src; + detail::path_traits::convert(source, source_end, src, cvt); + m_self.append(src.data(), src.data() + src.size()); + } + }; + +public: + class iterator; + friend class iterator; + typedef iterator const_iterator; + class reverse_iterator; + typedef reverse_iterator const_reverse_iterator; + +public: // ----- constructors ----- path() BOOST_NOEXCEPT {} path(path const& p) : m_pathname(p.m_pathname) {} - - template< class Source > - path(Source const& source, typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value - >::type* = NULL) - { - path_traits::dispatch(source, m_pathname); - } + path(path const& p, codecvt_type const&) : m_pathname(p.m_pathname) {} path(const value_type* s) : m_pathname(s) {} + path(const value_type* s, codecvt_type const&) : m_pathname(s) {} path(string_type const& s) : m_pathname(s) {} + path(string_type const& s, codecvt_type const&) : m_pathname(s) {} +#if !defined(BOOST_NO_CXX17_HDR_STRING_VIEW) + path(std::basic_string_view< value_type > const& s) : m_pathname(s) {} + path(std::basic_string_view< value_type > const& s, codecvt_type const&) : m_pathname(s) {} +#endif + +#if !defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS) + template< + typename Source, + typename = typename boost::enable_if_c< + boost::conjunction< + boost::disjunction< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >, + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type > + >, + boost::negation< detail::path_traits::is_native_path_source< typename boost::remove_cv< Source >::type > > + >::value + >::type + > + path(Source const& source) +#else + template< typename Source > + path(Source const& source, typename boost::enable_if_c< + boost::conjunction< + boost::disjunction< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >, + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type > + >, + boost::negation< detail::path_traits::is_native_path_source< typename boost::remove_cv< Source >::type > > + >::value + >::type* = NULL) +#endif + { + assign(source); + } + +#if !defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS) + template< + typename Source, + typename = typename boost::enable_if_c< + boost::conjunction< + boost::disjunction< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >, + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type > + >, + boost::negation< detail::path_traits::is_native_path_source< typename boost::remove_cv< Source >::type > > + >::value + >::type + > + path(Source const& source, codecvt_type const& cvt) +#else + template< typename Source > + path(Source const& source, codecvt_type const& cvt, typename boost::enable_if_c< + boost::conjunction< + boost::disjunction< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >, + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type > + >, + boost::negation< detail::path_traits::is_native_path_source< typename boost::remove_cv< Source >::type > > + >::value + >::type* = NULL) +#endif + { + assign(source, cvt); + } // As of October 2015 the interaction between noexcept and =default is so troublesome // for VC++, GCC, and probably other compilers, that =default is not used with noexcept // functions. GCC is not even consistent for the same release on different platforms. #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) - path(path&& p) BOOST_NOEXCEPT : m_pathname(std::move(p.m_pathname)) + path(path&& p) BOOST_NOEXCEPT : m_pathname(static_cast< string_type&& >(p.m_pathname)) { } - path(path&& p, codecvt_type const&) BOOST_NOEXCEPT : m_pathname(std::move(p.m_pathname)) + path(path&& p, codecvt_type const&) BOOST_NOEXCEPT : m_pathname(static_cast< string_type&& >(p.m_pathname)) { } path& operator=(path&& p) BOOST_NOEXCEPT { - m_pathname = std::move(p.m_pathname); + m_pathname = static_cast< string_type&& >(p.m_pathname); return *this; } path& assign(path&& p) BOOST_NOEXCEPT { - m_pathname = std::move(p.m_pathname); + m_pathname = static_cast< string_type&& >(p.m_pathname); return *this; } path& assign(path&& p, codecvt_type const&) BOOST_NOEXCEPT { - m_pathname = std::move(p.m_pathname); + m_pathname = static_cast< string_type&& >(p.m_pathname); return *this; } - path(string_type&& s) BOOST_NOEXCEPT : m_pathname(std::move(s)) + path(string_type&& s) BOOST_NOEXCEPT : m_pathname(static_cast< string_type&& >(s)) { } - path(string_type&& s, codecvt_type const&) BOOST_NOEXCEPT : m_pathname(std::move(s)) + path(string_type&& s, codecvt_type const&) BOOST_NOEXCEPT : m_pathname(static_cast< string_type&& >(s)) { } path& operator=(string_type&& p) BOOST_NOEXCEPT { - m_pathname = std::move(p); + m_pathname = static_cast< string_type&& >(p); return *this; } path& assign(string_type&& p) BOOST_NOEXCEPT { - m_pathname = std::move(p); + m_pathname = static_cast< string_type&& >(p); return *this; } path& assign(string_type&& p, codecvt_type const&) BOOST_NOEXCEPT { - m_pathname = std::move(p); + m_pathname = static_cast< string_type&& >(p); return *this; } #endif - path(path const& p, codecvt_type const&) : m_pathname(p.m_pathname) {} - path(const value_type* s, codecvt_type const&) : m_pathname(s) {} - path(string_type const& s, codecvt_type const&) : m_pathname(s) {} - - template< class Source > - path(Source const& source, codecvt_type const& cvt, typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value - >::type* = NULL) - { - path_traits::dispatch(source, m_pathname, cvt); - } - path(const value_type* begin, const value_type* end) : m_pathname(begin, end) {} + path(const value_type* begin, const value_type* end, codecvt_type const&) : m_pathname(begin, end) {} - template< class InputIterator > - path(InputIterator begin, InputIterator end, typename boost::disable_if< path_detail::is_native_char_ptr< InputIterator > >::type* = NULL) +#if !defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS) + template< + typename InputIterator, + typename = typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value + >::type + > + path(InputIterator begin, InputIterator end) +#else + template< typename InputIterator > + path(InputIterator begin, InputIterator end, typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value + >::type* = NULL) +#endif { if (begin != end) { - // convert requires contiguous string, so copy - std::basic_string< typename std::iterator_traits< InputIterator >::value_type > seq(begin, end); - path_traits::convert(seq.c_str(), seq.c_str() + seq.size(), m_pathname); + typedef std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source_t; + source_t source(begin, end); +#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) + assign(static_cast< source_t&& >(source)); +#else + assign(source); +#endif } } - path(const value_type* begin, const value_type* end, codecvt_type const&) : m_pathname(begin, end) {} - - template< class InputIterator > - path(InputIterator begin, InputIterator end, codecvt_type const& cvt, typename boost::disable_if< path_detail::is_native_char_ptr< InputIterator > >::type* = NULL) +#if !defined(BOOST_NO_CXX11_FUNCTION_TEMPLATE_DEFAULT_ARGS) + template< + typename InputIterator, + typename = typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value + >::type + > + path(InputIterator begin, InputIterator end, codecvt_type const& cvt) +#else + template< typename InputIterator > + path(InputIterator begin, InputIterator end, codecvt_type const& cvt, typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value + >::type* = NULL) +#endif { if (begin != end) { - // convert requires contiguous string, so copy - std::basic_string< typename std::iterator_traits< InputIterator >::value_type > seq(begin, end); - path_traits::convert(seq.c_str(), seq.c_str() + seq.size(), m_pathname, cvt); + typedef std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source_t; + source_t source(begin, end); +#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) + assign(static_cast< source_t&& >(source), cvt); +#else + assign(source, cvt); +#endif } } // ----- assignments ----- // We need to explicitly define copy assignment as otherwise it will be implicitly defined as deleted because there is move assignment - path& operator=(path const& p) - { - return assign(p); - } + path& operator=(path const& p); - path& operator=(string_type const& s) - { - return assign(s); - } - - path& operator=(const value_type* ptr) - { - return assign(ptr); - } - - template< class Source > + template< typename Source > typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value, + boost::disjunction< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >, + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type > + >::value, path& >::type operator=(Source const& source) { @@ -338,26 +452,26 @@ public: return *this; } - path& assign(string_type const& s) - { - m_pathname = s; - return *this; - } - - path& assign(const value_type* ptr) - { - m_pathname = ptr; - return *this; - } - - template< class Source > + template< typename Source > typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value, + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >::value, path& >::type assign(Source const& source) { - m_pathname.clear(); - path_traits::dispatch(source, m_pathname); + detail::path_traits::dispatch(source, assign_op(*this)); + return *this; + } + + template< typename Source > + typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type >, + boost::negation< detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type > > + >::value, + path& + >::type assign(Source const& source) + { + detail::path_traits::dispatch_convertible(source, assign_op(*this)); return *this; } @@ -367,26 +481,26 @@ public: return *this; } - path& assign(string_type const& s, codecvt_type const&) - { - m_pathname = s; - return *this; - } - - path& assign(const value_type* ptr, codecvt_type const&) - { - m_pathname = ptr; - return *this; - } - - template< class Source > + template< typename Source > typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value, + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >::value, path& >::type assign(Source const& source, codecvt_type const& cvt) { - m_pathname.clear(); - path_traits::dispatch(source, m_pathname, cvt); + detail::path_traits::dispatch(source, assign_op(*this), &cvt); + return *this; + } + + template< typename Source > + typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type >, + boost::negation< detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type > > + >::value, + path& + >::type assign(Source const& source, codecvt_type const& cvt) + { + detail::path_traits::dispatch_convertible(source, assign_op(*this), &cvt); return *this; } @@ -396,15 +510,25 @@ public: return *this; } - template< class InputIterator > - typename boost::disable_if< path_detail::is_native_char_ptr< InputIterator >, path& >::type - assign(InputIterator begin, InputIterator end) + template< typename InputIterator > + typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value, + path& + >::type assign(InputIterator begin, InputIterator end) { m_pathname.clear(); if (begin != end) { - std::basic_string< typename std::iterator_traits< InputIterator >::value_type > seq(begin, end); - path_traits::convert(seq.c_str(), seq.c_str() + seq.size(), m_pathname); + typedef std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source_t; + source_t source(begin, end); +#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) + assign(static_cast< source_t&& >(source)); +#else + assign(source); +#endif } return *this; } @@ -415,39 +539,39 @@ public: return *this; } - template< class InputIterator > - typename boost::disable_if< path_detail::is_native_char_ptr< InputIterator >, path& >::type - assign(InputIterator begin, InputIterator end, codecvt_type const& cvt) + template< typename InputIterator > + typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value, + path& + >::type assign(InputIterator begin, InputIterator end, codecvt_type const& cvt) { m_pathname.clear(); if (begin != end) { - std::basic_string< typename std::iterator_traits< InputIterator >::value_type > seq(begin, end); - path_traits::convert(seq.c_str(), seq.c_str() + seq.size(), m_pathname, cvt); + typedef std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source_t; + source_t source(begin, end); +#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) + assign(static_cast< source_t&& >(source), cvt); +#else + assign(source, cvt); +#endif } return *this; } // ----- concatenation ----- - path& operator+=(path const& p) - { - return concat(p); - } + path& operator+=(path const& p); - path& operator+=(const value_type* ptr) - { - return concat(ptr); - } - - path& operator+=(string_type const& s) - { - return concat(s); - } - - template< class Source > + template< typename Source > typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value, + boost::disjunction< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >, + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type > + >::value, path& >::type operator+=(Source const& source) { @@ -460,69 +584,74 @@ public: return *this; } - template< class CharT > - typename boost::enable_if< boost::is_integral< CharT >, path& >::type - operator+=(CharT c) + template< typename CharT > + typename boost::enable_if_c< + detail::path_traits::is_path_char_type< CharT >::value, + path& + >::type operator+=(CharT c) { CharT tmp[2]; tmp[0] = c; tmp[1] = static_cast< CharT >(0); - return concat(tmp); + concat_op(*this)(tmp, tmp + 1); + return *this; } path& concat(path const& p) { - m_pathname += p.m_pathname; + m_pathname.append(p.m_pathname); return *this; } - path& concat(const value_type* ptr) - { - m_pathname += ptr; - return *this; - } - - path& concat(string_type const& s) - { - m_pathname += s; - return *this; - } - - template< class Source > + template< typename Source > typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value, + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >::value, path& >::type concat(Source const& source) { - path_traits::dispatch(source, m_pathname); + detail::path_traits::dispatch(source, concat_op(*this)); + return *this; + } + + template< typename Source > + typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type >, + boost::negation< detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type > > + >::value, + path& + >::type concat(Source const& source) + { + detail::path_traits::dispatch_convertible(source, concat_op(*this)); return *this; } path& concat(path const& p, codecvt_type const&) { - m_pathname += p.m_pathname; + m_pathname.append(p.m_pathname); return *this; } - path& concat(const value_type* ptr, codecvt_type const&) - { - m_pathname += ptr; - return *this; - } - - path& concat(string_type const& s, codecvt_type const&) - { - m_pathname += s; - return *this; - } - - template< class Source > + template< typename Source > typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value, + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >::value, path& >::type concat(Source const& source, codecvt_type const& cvt) { - path_traits::dispatch(source, m_pathname, cvt); + detail::path_traits::dispatch(source, concat_op(*this), &cvt); + return *this; + } + + template< typename Source > + typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type >, + boost::negation< detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type > > + >::value, + path& + >::type concat(Source const& source, codecvt_type const& cvt) + { + detail::path_traits::dispatch_convertible(source, concat_op(*this), &cvt); return *this; } @@ -532,14 +661,19 @@ public: return *this; } - template< class InputIterator > - typename boost::disable_if< path_detail::is_native_char_ptr< InputIterator >, path& >::type - concat(InputIterator begin, InputIterator end) + template< typename InputIterator > + typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value, + path& + >::type concat(InputIterator begin, InputIterator end) { if (begin != end) { - std::basic_string< typename std::iterator_traits< InputIterator >::value_type > seq(begin, end); - path_traits::convert(seq.c_str(), seq.c_str() + seq.size(), m_pathname); + std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source(begin, end); + detail::path_traits::dispatch(source, concat_op(*this)); } return *this; } @@ -550,14 +684,19 @@ public: return *this; } - template< class InputIterator > - typename boost::disable_if< path_detail::is_native_char_ptr< InputIterator >, path& >::type - concat(InputIterator begin, InputIterator end, codecvt_type const& cvt) + template< typename InputIterator > + typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value, + path& + >::type concat(InputIterator begin, InputIterator end, codecvt_type const& cvt) { if (begin != end) { - std::basic_string< typename std::iterator_traits< InputIterator >::value_type > seq(begin, end); - path_traits::convert(seq.c_str(), seq.c_str() + seq.size(), m_pathname, cvt); + std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source(begin, end); + detail::path_traits::dispatch(source, concat_op(*this), &cvt); } return *this; } @@ -567,24 +706,14 @@ public: // if a separator is added, it is the preferred separator for the platform; // slash for POSIX, backslash for Windows - path& operator/=(path const& p) - { - return append(p); - } + path& operator/=(path const& p); - path& operator/=(const value_type* ptr) - { - return append(ptr); - } - - path& operator/=(string_type const& s) - { - return append(s); - } - - template< class Source > + template< typename Source > BOOST_FORCEINLINE typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value, + boost::disjunction< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >, + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type > + >::value, path& >::type operator/=(Source const& source) { @@ -593,60 +722,60 @@ public: BOOST_FORCEINLINE path& append(path const& p) { - BOOST_FILESYSTEM_VERSIONED_SYM(append)(p); + BOOST_FILESYSTEM_VERSIONED_SYM(append)(p.m_pathname.data(), p.m_pathname.data() + p.m_pathname.size()); return *this; } - BOOST_FORCEINLINE path& append(string_type const& p) - { - BOOST_FILESYSTEM_VERSIONED_SYM(append)(p.c_str(), p.c_str() + p.size()); - return *this; - } - - BOOST_FORCEINLINE path& append(const value_type* ptr) - { - BOOST_FILESYSTEM_VERSIONED_SYM(append)(ptr, ptr + string_type::traits_type::length(ptr)); - return *this; - } - - template< class Source > - typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value, + template< typename Source > + BOOST_FORCEINLINE typename boost::enable_if_c< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >::value, path& >::type append(Source const& source) { - path p; - path_traits::dispatch(source, p.m_pathname); - return append(p); + detail::path_traits::dispatch(source, append_op(*this)); + return *this; + } + + template< typename Source > + BOOST_FORCEINLINE typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type >, + boost::negation< detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type > > + >::value, + path& + >::type append(Source const& source) + { + detail::path_traits::dispatch_convertible(source, append_op(*this)); + return *this; } BOOST_FORCEINLINE path& append(path const& p, codecvt_type const&) { - BOOST_FILESYSTEM_VERSIONED_SYM(append)(p); + BOOST_FILESYSTEM_VERSIONED_SYM(append)(p.m_pathname.data(), p.m_pathname.data() + p.m_pathname.size()); return *this; } - BOOST_FORCEINLINE path& append(string_type const& p, codecvt_type const&) - { - BOOST_FILESYSTEM_VERSIONED_SYM(append)(p.c_str(), p.c_str() + p.size()); - return *this; - } - - BOOST_FORCEINLINE path& append(const value_type* ptr, codecvt_type const&) - { - BOOST_FILESYSTEM_VERSIONED_SYM(append)(ptr, ptr + string_type::traits_type::length(ptr)); - return *this; - } - - template< class Source > - typename boost::enable_if_c< - path_traits::is_pathable< typename boost::decay< Source >::type >::value && !path_detail::is_native_pathable< Source >::value, + template< typename Source > + BOOST_FORCEINLINE typename boost::enable_if_c< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >::value, path& >::type append(Source const& source, codecvt_type const& cvt) { - path p; - path_traits::dispatch(source, p.m_pathname, cvt); - return append(p); + detail::path_traits::dispatch(source, append_op(*this), &cvt); + return *this; + } + + template< typename Source > + BOOST_FORCEINLINE typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type >, + boost::negation< detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type > > + >::value, + path& + >::type append(Source const& source, codecvt_type const& cvt) + { + detail::path_traits::dispatch_convertible(source, append_op(*this), &cvt); + return *this; } BOOST_FORCEINLINE path& append(const value_type* begin, const value_type* end) @@ -655,17 +784,18 @@ public: return *this; } - template< class InputIterator > - typename boost::disable_if< path_detail::is_native_char_ptr< InputIterator >, path& >::type - append(InputIterator begin, InputIterator end) + template< typename InputIterator > + BOOST_FORCEINLINE typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value, + path& + >::type append(InputIterator begin, InputIterator end) { - path p; - if (begin != end) - { - std::basic_string< typename std::iterator_traits< InputIterator >::value_type > seq(begin, end); - path_traits::convert(seq.c_str(), seq.c_str() + seq.size(), p.m_pathname); - } - return append(p); + std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source(begin, end); + detail::path_traits::dispatch(source, append_op(*this)); + return *this; } BOOST_FORCEINLINE path& append(const value_type* begin, const value_type* end, codecvt_type const&) @@ -674,17 +804,18 @@ public: return *this; } - template< class InputIterator > - typename boost::disable_if< path_detail::is_native_char_ptr< InputIterator >, path& >::type - append(InputIterator begin, InputIterator end, const codecvt_type& cvt) + template< typename InputIterator > + BOOST_FORCEINLINE typename boost::enable_if_c< + boost::conjunction< + detail::path_traits::is_path_source_iterator< InputIterator >, + boost::negation< detail::path_traits::is_native_char_ptr< InputIterator > > + >::value, + path& + >::type append(InputIterator begin, InputIterator end, const codecvt_type& cvt) { - path p; - if (begin != end) - { - std::basic_string< typename std::iterator_traits< InputIterator >::value_type > seq(begin, end); - path_traits::convert(seq.c_str(), seq.c_str() + seq.size(), p.m_pathname, cvt); - } - return append(p); + std::basic_string< typename std::iterator_traits< InputIterator >::value_type > source(begin, end); + detail::path_traits::dispatch(source, append_op(*this), &cvt); + return *this; } // ----- modifiers ----- @@ -733,10 +864,10 @@ public: const value_type* c_str() const BOOST_NOEXCEPT { return m_pathname.c_str(); } string_type::size_type size() const BOOST_NOEXCEPT { return m_pathname.size(); } - template< class String > + template< typename String > String string() const; - template< class String > + template< typename String > String string(codecvt_type const& cvt) const; #ifdef BOOST_WINDOWS_API @@ -744,14 +875,14 @@ public: { std::string tmp; if (!m_pathname.empty()) - path_traits::convert(m_pathname.c_str(), m_pathname.c_str() + m_pathname.size(), tmp); + detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp); return tmp; } std::string string(codecvt_type const& cvt) const { std::string tmp; if (!m_pathname.empty()) - path_traits::convert(m_pathname.c_str(), m_pathname.c_str() + m_pathname.size(), tmp, cvt); + detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp, &cvt); return tmp; } @@ -767,14 +898,14 @@ public: { std::wstring tmp; if (!m_pathname.empty()) - path_traits::convert(m_pathname.c_str(), m_pathname.c_str() + m_pathname.size(), tmp); + detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp); return tmp; } std::wstring wstring(codecvt_type const& cvt) const { std::wstring tmp; if (!m_pathname.empty()) - path_traits::convert(m_pathname.c_str(), m_pathname.c_str() + m_pathname.size(), tmp, cvt); + detail::path_traits::convert(m_pathname.data(), m_pathname.data() + m_pathname.size(), tmp, &cvt); return tmp; } #endif @@ -787,13 +918,13 @@ public: #ifdef BOOST_WINDOWS_API BOOST_FILESYSTEM_DECL path generic_path() const; #else - path generic_path() const { return path(*this); } + path generic_path() const; #endif - template< class String > + template< typename String > String generic_string() const; - template< class String > + template< typename String > String generic_string(codecvt_type const& cvt) const; #ifdef BOOST_WINDOWS_API @@ -811,12 +942,10 @@ public: // ----- compare ----- - BOOST_FORCEINLINE int compare(path const& p) const BOOST_NOEXCEPT // generic, lexicographical + BOOST_FORCEINLINE int compare(path const& p) const // generic, lexicographical { return BOOST_FILESYSTEM_VERSIONED_SYM(compare)(p); } - int compare(std::string const& s) const { return compare(path(s)); } - int compare(const value_type* s) const { return compare(path(s)); } // ----- decomposition ----- @@ -834,9 +963,9 @@ public: path relative_path() const { - path_detail::substring root_dir = find_relative_path(); - const value_type* p = m_pathname.c_str() + root_dir.pos; - return path(p, p + root_dir.size); + path_detail::substring rel_path = find_relative_path(); + const value_type* p = m_pathname.c_str() + rel_path.pos; + return path(p, p + rel_path.size); } path parent_path() const { return path(m_pathname.c_str(), m_pathname.c_str() + find_parent_path_size()); } @@ -873,20 +1002,10 @@ public: BOOST_FORCEINLINE path lexically_normal() const { return BOOST_FILESYSTEM_VERSIONED_SYM(lexically_normal)(); } BOOST_FILESYSTEM_DECL path lexically_relative(path const& base) const; - path lexically_proximate(path const& base) const - { - path tmp(lexically_relative(base)); - return tmp.empty() ? *this : tmp; - } + path lexically_proximate(path const& base) const; // ----- iterators ----- - class iterator; - friend class iterator; - typedef iterator const_iterator; - class reverse_iterator; - typedef reverse_iterator const_reverse_iterator; - BOOST_FILESYSTEM_DECL iterator begin() const; BOOST_FILESYSTEM_DECL iterator end() const; reverse_iterator rbegin() const; @@ -901,29 +1020,37 @@ public: #if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) // recently deprecated functions supplied by default - path& normalize() - { - path tmp(lexically_normal()); - m_pathname.swap(tmp.m_pathname); - return *this; - } + path& normalize(); + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::remove_filename() instead") path& remove_leaf() { return remove_filename(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::filename() instead") path leaf() const { return filename(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::parent_path() instead") path branch_path() const { return parent_path(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::generic_path() instead") path generic() const { return generic_path(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use !path::empty() instead") bool has_leaf() const { return !m_pathname.empty(); } - bool has_branch_path() const { return !parent_path().empty(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::has_parent_path() instead") + bool has_branch_path() const { return has_parent_path(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::is_absolute() instead") bool is_complete() const { return is_absolute(); } #endif #if defined(BOOST_FILESYSTEM_DEPRECATED) // deprecated functions with enough signature or semantic changes that they are // not supplied by default + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::string() instead") std::string file_string() const { return string(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::string() instead") std::string directory_string() const { return string(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::string() instead") std::string native_file_string() const { return string(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::string() instead") std::string native_directory_string() const { return string(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::native() instead") string_type external_file_string() const { return native(); } + BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::native() instead") string_type external_directory_string() const { return native(); } #endif @@ -958,13 +1085,11 @@ private: BOOST_FILESYSTEM_DECL path lexically_normal_v3() const; BOOST_FILESYSTEM_DECL path lexically_normal_v4() const; - BOOST_FILESYSTEM_DECL int compare_v3(path const& p) const BOOST_NOEXCEPT; - BOOST_FILESYSTEM_DECL int compare_v4(path const& p) const BOOST_NOEXCEPT; + BOOST_FILESYSTEM_DECL int compare_v3(path const& p) const; + BOOST_FILESYSTEM_DECL int compare_v4(path const& p) const; BOOST_FILESYSTEM_DECL void append_v3(const value_type* b, const value_type* e); BOOST_FILESYSTEM_DECL void append_v4(const value_type* b, const value_type* e); - BOOST_FILESYSTEM_DECL void append_v3(path const& p); - BOOST_FILESYSTEM_DECL void append_v4(path const& p); // Returns: If separator is to be appended, m_pathname.size() before append. Otherwise 0. // Note: An append is never performed if size()==0, so a returned 0 is unambiguous. @@ -1104,83 +1229,47 @@ private: // std::lexicographical_compare would infinitely recurse because path iterators // yield paths, so provide a path aware version -inline bool lexicographical_compare(path::iterator first1, path::iterator last1, path::iterator first2, path::iterator last2) +BOOST_FORCEINLINE bool lexicographical_compare(path::iterator first1, path::iterator last1, path::iterator first2, path::iterator last2) { return BOOST_FILESYSTEM_VERSIONED_SYM(detail::lex_compare)(first1, last1, first2, last2) < 0; } -inline bool operator==(path const& lhs, path const& rhs) +BOOST_FORCEINLINE bool operator==(path const& lhs, path const& rhs) { return lhs.compare(rhs) == 0; } -inline bool operator==(path const& lhs, path::string_type const& rhs) -{ - return lhs.compare(rhs) == 0; -} - -inline bool operator==(path::string_type const& lhs, path const& rhs) -{ - return rhs.compare(lhs) == 0; -} - -inline bool operator==(path const& lhs, const path::value_type* rhs) -{ - return lhs.compare(rhs) == 0; -} - -inline bool operator==(const path::value_type* lhs, path const& rhs) -{ - return rhs.compare(lhs) == 0; -} - -inline bool operator!=(path const& lhs, path const& rhs) +BOOST_FORCEINLINE bool operator!=(path const& lhs, path const& rhs) { return lhs.compare(rhs) != 0; } -inline bool operator!=(path const& lhs, path::string_type const& rhs) -{ - return lhs.compare(rhs) != 0; -} - -inline bool operator!=(path::string_type const& lhs, path const& rhs) -{ - return rhs.compare(lhs) != 0; -} - -inline bool operator!=(path const& lhs, const path::value_type* rhs) -{ - return lhs.compare(rhs) != 0; -} - -inline bool operator!=(const path::value_type* lhs, path const& rhs) -{ - return rhs.compare(lhs) != 0; -} - -// TODO: why do == and != have additional overloads, but the others don't? - -inline bool operator<(path const& lhs, path const& rhs) +BOOST_FORCEINLINE bool operator<(path const& lhs, path const& rhs) { return lhs.compare(rhs) < 0; } -inline bool operator<=(path const& lhs, path const& rhs) + +BOOST_FORCEINLINE bool operator<=(path const& lhs, path const& rhs) { return !(rhs < lhs); } -inline bool operator>(path const& lhs, path const& rhs) + +BOOST_FORCEINLINE bool operator>(path const& lhs, path const& rhs) { return rhs < lhs; } -inline bool operator>=(path const& lhs, path const& rhs) + +BOOST_FORCEINLINE bool operator>=(path const& lhs, path const& rhs) { return !(lhs < rhs); } // Note: Declared as a template to delay binding to Boost.ContainerHash functions and make the dependency optional template< typename T > -inline typename boost::enable_if< boost::is_same< T, path >, std::size_t >::type hash_value(T const& p) BOOST_NOEXCEPT +inline typename boost::enable_if_c< + boost::is_same< T, path >::value, + std::size_t +>::type hash_value(T const& p) BOOST_NOEXCEPT { #ifdef BOOST_WINDOWS_API std::size_t seed = 0u; @@ -1197,33 +1286,37 @@ inline void swap(path& lhs, path& rhs) BOOST_NOEXCEPT lhs.swap(rhs); } -inline path operator/(path const& lhs, path const& rhs) +BOOST_FORCEINLINE path operator/(path lhs, path const& rhs) { - path p = lhs; - p /= rhs; - return p; + lhs.append(rhs); + return lhs; } -#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) -inline path operator/(path&& lhs, path const& rhs) +template< typename Source > +BOOST_FORCEINLINE typename boost::enable_if_c< + boost::disjunction< + detail::path_traits::is_path_source< typename boost::remove_cv< Source >::type >, + detail::path_traits::is_convertible_to_path_source< typename boost::remove_cv< Source >::type > + >::value, + path +>::type operator/(path lhs, Source const& rhs) { - lhs /= rhs; - return std::move(lhs); + lhs.append(rhs); + return lhs; } -#endif // inserters and extractors // use boost::io::quoted() to handle spaces in paths // use '&' as escape character to ease use for Windows paths -template< class Char, class Traits > +template< typename Char, typename Traits > inline std::basic_ostream< Char, Traits >& operator<<(std::basic_ostream< Char, Traits >& os, path const& p) { return os << boost::io::quoted(p.template string< std::basic_string< Char > >(), static_cast< Char >('&')); } -template< class Char, class Traits > +template< typename Char, typename Traits > inline std::basic_istream< Char, Traits >& operator>>(std::basic_istream< Char, Traits >& is, path& p) { @@ -1275,10 +1368,46 @@ inline bool is_element_separator(path::value_type c) BOOST_NOEXCEPT // class path miscellaneous function implementations // //------------------------------------------------------------------------------------// +// Note: Because of the range constructor in C++23 std::string_view that involves a check for contiguous_range concept, +// any non-template function call that requires a check whether the source argument (which may be fs::path) +// is convertible to std::string_view must be made after fs::path::iterator is defined. This includes overload +// resolution and SFINAE checks. Otherwise, the concept check result formally changes between fs::path::iterator +// is not defined and defined, which causes compilation errors with gcc 11 and later. +// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106808 + +inline path& path::operator=(path const& p) +{ + return assign(p); +} + +inline path& path::operator+=(path const& p) +{ + return concat(p); +} + +BOOST_FORCEINLINE path& path::operator/=(path const& p) +{ + return append(p); +} + +#if !defined(BOOST_WINDOWS_API) +inline path path::generic_path() const +{ + return path(*this); +} +#endif + +inline path path::lexically_proximate(path const& base) const +{ + path tmp(lexically_relative(base)); + return tmp.empty() ? *this : tmp; +} + inline path::reverse_iterator path::rbegin() const { return reverse_iterator(end()); } + inline path::reverse_iterator path::rend() const { return reverse_iterator(begin()); @@ -1299,92 +1428,70 @@ inline bool path::filename_is_dot_dot() const // to deal with "c:.." edge case on Windows when ':' acts as a separator } +#if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) + +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use path::lexically_normal() instead") +inline path& path::normalize() +{ + path tmp(lexically_normal()); + m_pathname.swap(tmp.m_pathname); + return *this; +} + +#endif // !defined(BOOST_FILESYSTEM_NO_DEPRECATED) + //--------------------------------------------------------------------------------------// // class path member template specializations // //--------------------------------------------------------------------------------------// -template<> +template< > inline std::string path::string< std::string >() const { return string(); } -template<> +template< > inline std::wstring path::string< std::wstring >() const { return wstring(); } -template<> -inline std::string path::string< std::string >(const codecvt_type& cvt) const +template< > +inline std::string path::string< std::string >(codecvt_type const& cvt) const { return string(cvt); } -template<> -inline std::wstring path::string< std::wstring >(const codecvt_type& cvt) const +template< > +inline std::wstring path::string< std::wstring >(codecvt_type const& cvt) const { return wstring(cvt); } -template<> +template< > inline std::string path::generic_string< std::string >() const { return generic_string(); } -template<> +template< > inline std::wstring path::generic_string< std::wstring >() const { return generic_wstring(); } -template<> +template< > inline std::string path::generic_string< std::string >(codecvt_type const& cvt) const { return generic_string(cvt); } -template<> +template< > inline std::wstring path::generic_string< std::wstring >(codecvt_type const& cvt) const { return generic_wstring(cvt); } -//--------------------------------------------------------------------------------------// -// path_traits convert function implementations // -// requiring path::codecvt() be visable // -//--------------------------------------------------------------------------------------// - -namespace path_traits { // without codecvt - -inline void convert(const char* from, - const char* from_end, // NULL for null terminated MBCS - std::wstring& to) -{ - convert(from, from_end, to, path::codecvt()); -} - -inline void convert(const wchar_t* from, - const wchar_t* from_end, // NULL for null terminated MBCS - std::string& to) -{ - convert(from, from_end, to, path::codecvt()); -} - -inline void convert(const char* from, std::wstring& to) -{ - BOOST_ASSERT(!!from); - convert(from, NULL, to, path::codecvt()); -} - -inline void convert(const wchar_t* from, std::string& to) -{ - BOOST_ASSERT(!!from); - convert(from, NULL, to, path::codecvt()); -} - -} // namespace path_traits } // namespace filesystem } // namespace boost diff --git a/boost-1.81.0/boost/filesystem/path_traits.hpp b/boost-1.81.0/boost/filesystem/path_traits.hpp new file mode 100644 index 0000000..da693e6 --- /dev/null +++ b/boost-1.81.0/boost/filesystem/path_traits.hpp @@ -0,0 +1,38 @@ +// filesystem path_traits.hpp --------------------------------------------------------// + +// Copyright Beman Dawes 2009 +// Copyright Andrey Semashev 2022 + +// Distributed under the Boost Software License, Version 1.0. +// See http://www.boost.org/LICENSE_1_0.txt + +// Library home page: http://www.boost.org/libs/filesystem + +#ifndef BOOST_FILESYSTEM_PATH_TRAITS_HPP +#define BOOST_FILESYSTEM_PATH_TRAITS_HPP + +#include + +#if !defined(BOOST_FILESYSTEM_DEPRECATED) && !defined(BOOST_FILESYSTEM_ALLOW_DEPRECATED) +#include +BOOST_HEADER_DEPRECATED("your own implementation") +#endif + +#if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) + +#include +#include // must be the last #include + +namespace boost { +namespace filesystem { + +namespace path_traits = boost::filesystem::detail::path_traits; + +} // namespace filesystem +} // namespace boost + +#include + +#endif // !defined(BOOST_FILESYSTEM_NO_DEPRECATED) + +#endif // BOOST_FILESYSTEM_PATH_TRAITS_HPP diff --git a/boost-1.80.0/boost/filesystem/string_file.hpp b/boost-1.81.0/boost/filesystem/string_file.hpp similarity index 90% rename from boost-1.80.0/boost/filesystem/string_file.hpp rename to boost-1.81.0/boost/filesystem/string_file.hpp index 35c8617..29428c8 100644 --- a/boost-1.80.0/boost/filesystem/string_file.hpp +++ b/boost-1.81.0/boost/filesystem/string_file.hpp @@ -12,13 +12,13 @@ #include -#if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) - -#if !defined(BOOST_FILESYSTEM_DEPRECATED) +#if !defined(BOOST_FILESYSTEM_DEPRECATED) && !defined(BOOST_FILESYSTEM_ALLOW_DEPRECATED) #include BOOST_HEADER_DEPRECATED("your own implementation") #endif +#if !defined(BOOST_FILESYSTEM_NO_DEPRECATED) + #include #include #include @@ -34,6 +34,7 @@ BOOST_HEADER_DEPRECATED("your own implementation") namespace boost { namespace filesystem { +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use file IO streams instead") inline void save_string_file(path const& p, std::string const& str) { filesystem::ofstream file; @@ -45,6 +46,7 @@ inline void save_string_file(path const& p, std::string const& str) file.write(str.c_str(), static_cast< std::streamsize >(sz)); } +BOOST_FILESYSTEM_DETAIL_DEPRECATED("Use file IO streams instead") inline void load_string_file(path const& p, std::string& str) { filesystem::ifstream file; diff --git a/boost-1.80.0/boost/functional/factory.hpp b/boost-1.81.0/boost/functional/factory.hpp similarity index 100% rename from boost-1.80.0/boost/functional/factory.hpp rename to boost-1.81.0/boost/functional/factory.hpp diff --git a/boost-1.80.0/boost/functional/forward_adapter.hpp b/boost-1.81.0/boost/functional/forward_adapter.hpp similarity index 100% rename from boost-1.80.0/boost/functional/forward_adapter.hpp rename to boost-1.81.0/boost/functional/forward_adapter.hpp diff --git a/boost-1.80.0/boost/functional/hash.hpp b/boost-1.81.0/boost/functional/hash.hpp similarity index 100% rename from boost-1.80.0/boost/functional/hash.hpp rename to boost-1.81.0/boost/functional/hash.hpp diff --git a/boost-1.80.0/boost/functional/hash/extensions.hpp b/boost-1.81.0/boost/functional/hash/extensions.hpp similarity index 100% rename from boost-1.80.0/boost/functional/hash/extensions.hpp rename to boost-1.81.0/boost/functional/hash/extensions.hpp diff --git a/boost-1.80.0/boost/functional/hash/hash.hpp b/boost-1.81.0/boost/functional/hash/hash.hpp similarity index 100% rename from boost-1.80.0/boost/functional/hash/hash.hpp rename to boost-1.81.0/boost/functional/hash/hash.hpp diff --git a/boost-1.80.0/boost/functional/hash/hash_fwd.hpp b/boost-1.81.0/boost/functional/hash/hash_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/functional/hash/hash_fwd.hpp rename to boost-1.81.0/boost/functional/hash/hash_fwd.hpp diff --git a/boost-1.80.0/boost/functional/hash_fwd.hpp b/boost-1.81.0/boost/functional/hash_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/functional/hash_fwd.hpp rename to boost-1.81.0/boost/functional/hash_fwd.hpp diff --git a/boost-1.80.0/boost/functional/identity.hpp b/boost-1.81.0/boost/functional/identity.hpp similarity index 100% rename from boost-1.80.0/boost/functional/identity.hpp rename to boost-1.81.0/boost/functional/identity.hpp diff --git a/boost-1.80.0/boost/functional/lightweight_forward_adapter.hpp b/boost-1.81.0/boost/functional/lightweight_forward_adapter.hpp similarity index 100% rename from boost-1.80.0/boost/functional/lightweight_forward_adapter.hpp rename to boost-1.81.0/boost/functional/lightweight_forward_adapter.hpp diff --git a/boost-1.80.0/boost/functional/overloaded_function.hpp b/boost-1.81.0/boost/functional/overloaded_function.hpp similarity index 100% rename from boost-1.80.0/boost/functional/overloaded_function.hpp rename to boost-1.81.0/boost/functional/overloaded_function.hpp diff --git a/boost-1.80.0/boost/functional/overloaded_function/config.hpp b/boost-1.81.0/boost/functional/overloaded_function/config.hpp similarity index 100% rename from boost-1.80.0/boost/functional/overloaded_function/config.hpp rename to boost-1.81.0/boost/functional/overloaded_function/config.hpp diff --git a/boost-1.80.0/boost/functional/overloaded_function/detail/base.hpp b/boost-1.81.0/boost/functional/overloaded_function/detail/base.hpp similarity index 100% rename from boost-1.80.0/boost/functional/overloaded_function/detail/base.hpp rename to boost-1.81.0/boost/functional/overloaded_function/detail/base.hpp diff --git a/boost-1.80.0/boost/functional/overloaded_function/detail/function_type.hpp b/boost-1.81.0/boost/functional/overloaded_function/detail/function_type.hpp similarity index 100% rename from boost-1.80.0/boost/functional/overloaded_function/detail/function_type.hpp rename to boost-1.81.0/boost/functional/overloaded_function/detail/function_type.hpp diff --git a/boost-1.80.0/boost/functional/value_factory.hpp b/boost-1.81.0/boost/functional/value_factory.hpp similarity index 100% rename from boost-1.80.0/boost/functional/value_factory.hpp rename to boost-1.81.0/boost/functional/value_factory.hpp diff --git a/boost-1.80.0/boost/io/detail/buffer_fill.hpp b/boost-1.81.0/boost/io/detail/buffer_fill.hpp similarity index 100% rename from boost-1.80.0/boost/io/detail/buffer_fill.hpp rename to boost-1.81.0/boost/io/detail/buffer_fill.hpp diff --git a/boost-1.80.0/boost/io/detail/ostream_guard.hpp b/boost-1.81.0/boost/io/detail/ostream_guard.hpp similarity index 100% rename from boost-1.80.0/boost/io/detail/ostream_guard.hpp rename to boost-1.81.0/boost/io/detail/ostream_guard.hpp diff --git a/boost-1.80.0/boost/io/ios_state.hpp b/boost-1.81.0/boost/io/ios_state.hpp similarity index 100% rename from boost-1.80.0/boost/io/ios_state.hpp rename to boost-1.81.0/boost/io/ios_state.hpp diff --git a/boost-1.80.0/boost/io/nullstream.hpp b/boost-1.81.0/boost/io/nullstream.hpp similarity index 100% rename from boost-1.80.0/boost/io/nullstream.hpp rename to boost-1.81.0/boost/io/nullstream.hpp diff --git a/boost-1.80.0/boost/io/ostream_joiner.hpp b/boost-1.81.0/boost/io/ostream_joiner.hpp similarity index 100% rename from boost-1.80.0/boost/io/ostream_joiner.hpp rename to boost-1.81.0/boost/io/ostream_joiner.hpp diff --git a/boost-1.80.0/boost/io/ostream_put.hpp b/boost-1.81.0/boost/io/ostream_put.hpp similarity index 100% rename from boost-1.80.0/boost/io/ostream_put.hpp rename to boost-1.81.0/boost/io/ostream_put.hpp diff --git a/boost-1.80.0/boost/io/quoted.hpp b/boost-1.81.0/boost/io/quoted.hpp similarity index 100% rename from boost-1.80.0/boost/io/quoted.hpp rename to boost-1.81.0/boost/io/quoted.hpp diff --git a/boost-1.80.0/boost/io_fwd.hpp b/boost-1.81.0/boost/io_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/io_fwd.hpp rename to boost-1.81.0/boost/io_fwd.hpp diff --git a/boost-1.80.0/boost/iterator/advance.hpp b/boost-1.81.0/boost/iterator/advance.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/advance.hpp rename to boost-1.81.0/boost/iterator/advance.hpp diff --git a/boost-1.80.0/boost/iterator/counting_iterator.hpp b/boost-1.81.0/boost/iterator/counting_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/counting_iterator.hpp rename to boost-1.81.0/boost/iterator/counting_iterator.hpp diff --git a/boost-1.80.0/boost/iterator/detail/any_conversion_eater.hpp b/boost-1.81.0/boost/iterator/detail/any_conversion_eater.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/detail/any_conversion_eater.hpp rename to boost-1.81.0/boost/iterator/detail/any_conversion_eater.hpp diff --git a/boost-1.80.0/boost/iterator/detail/config_def.hpp b/boost-1.81.0/boost/iterator/detail/config_def.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/detail/config_def.hpp rename to boost-1.81.0/boost/iterator/detail/config_def.hpp diff --git a/boost-1.80.0/boost/iterator/detail/config_undef.hpp b/boost-1.81.0/boost/iterator/detail/config_undef.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/detail/config_undef.hpp rename to boost-1.81.0/boost/iterator/detail/config_undef.hpp diff --git a/boost-1.80.0/boost/iterator/detail/enable_if.hpp b/boost-1.81.0/boost/iterator/detail/enable_if.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/detail/enable_if.hpp rename to boost-1.81.0/boost/iterator/detail/enable_if.hpp diff --git a/boost-1.80.0/boost/iterator/detail/facade_iterator_category.hpp b/boost-1.81.0/boost/iterator/detail/facade_iterator_category.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/detail/facade_iterator_category.hpp rename to boost-1.81.0/boost/iterator/detail/facade_iterator_category.hpp diff --git a/boost-1.80.0/boost/iterator/detail/minimum_category.hpp b/boost-1.81.0/boost/iterator/detail/minimum_category.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/detail/minimum_category.hpp rename to boost-1.81.0/boost/iterator/detail/minimum_category.hpp diff --git a/boost-1.80.0/boost/iterator/distance.hpp b/boost-1.81.0/boost/iterator/distance.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/distance.hpp rename to boost-1.81.0/boost/iterator/distance.hpp diff --git a/boost-1.80.0/boost/iterator/filter_iterator.hpp b/boost-1.81.0/boost/iterator/filter_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/filter_iterator.hpp rename to boost-1.81.0/boost/iterator/filter_iterator.hpp diff --git a/boost-1.80.0/boost/iterator/function_input_iterator.hpp b/boost-1.81.0/boost/iterator/function_input_iterator.hpp similarity index 85% rename from boost-1.80.0/boost/iterator/function_input_iterator.hpp rename to boost-1.81.0/boost/iterator/function_input_iterator.hpp index 11f87de..610c133 100644 --- a/boost-1.80.0/boost/iterator/function_input_iterator.hpp +++ b/boost-1.81.0/boost/iterator/function_input_iterator.hpp @@ -28,6 +28,9 @@ namespace boost { namespace iterators { + template + class function_input_iterator; + namespace impl { // Computes the return type of an lvalue-call with an empty argument, @@ -46,21 +49,21 @@ namespace iterators { }; template - class function_input_iterator : + class function_object_input_iterator : public iterator_facade< - function_input_iterator, + iterators::function_input_iterator, typename result_of_nullary_lvalue_call::type, single_pass_traversal_tag, typename result_of_nullary_lvalue_call::type const & > { public: - function_input_iterator() {} - function_input_iterator(Function & f_, Input state_ = Input()) + function_object_input_iterator() {} + function_object_input_iterator(Function & f_, Input state_ = Input()) : f(boost::addressof(f_)), state(state_) {} void increment() { - if(value) + if (value) value = none; else (*f)(); @@ -69,10 +72,12 @@ namespace iterators { typename result_of_nullary_lvalue_call::type const & dereference() const { - return (value ? value : value = (*f)()).get(); + if (!value) + value = (*f)(); + return value.get(); } - bool equal(function_input_iterator const & other) const { + bool equal(function_object_input_iterator const & other) const { return f == other.f && state == other.state; } @@ -85,7 +90,7 @@ namespace iterators { template class function_pointer_input_iterator : public iterator_facade< - function_pointer_input_iterator, + iterators::function_input_iterator, typename function_types::result_type::type, single_pass_traversal_tag, typename function_types::result_type::type const & @@ -97,7 +102,7 @@ namespace iterators { : f(f_), state(state_) {} void increment() { - if(value) + if (value) value = none; else (*f)(); @@ -106,7 +111,9 @@ namespace iterators { typename function_types::result_type::type const & dereference() const { - return (value ? value : value = (*f)()).get(); + if (!value) + value = (*f)(); + return value.get(); } bool equal(function_pointer_input_iterator const & other) const { @@ -126,13 +133,13 @@ namespace iterators { public boost::conditional< function_types::is_function_pointer::value, impl::function_pointer_input_iterator, - impl::function_input_iterator + impl::function_object_input_iterator >::type { typedef typename boost::conditional< function_types::is_function_pointer::value, impl::function_pointer_input_iterator, - impl::function_input_iterator + impl::function_object_input_iterator >::type base_type; public: function_input_iterator(Function & f, Input i) diff --git a/boost-1.80.0/boost/iterator/function_output_iterator.hpp b/boost-1.81.0/boost/iterator/function_output_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/function_output_iterator.hpp rename to boost-1.81.0/boost/iterator/function_output_iterator.hpp diff --git a/boost-1.80.0/boost/iterator/indirect_iterator.hpp b/boost-1.81.0/boost/iterator/indirect_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/indirect_iterator.hpp rename to boost-1.81.0/boost/iterator/indirect_iterator.hpp diff --git a/boost-1.80.0/boost/iterator/interoperable.hpp b/boost-1.81.0/boost/iterator/interoperable.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/interoperable.hpp rename to boost-1.81.0/boost/iterator/interoperable.hpp diff --git a/boost-1.80.0/boost/iterator/is_lvalue_iterator.hpp b/boost-1.81.0/boost/iterator/is_lvalue_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/is_lvalue_iterator.hpp rename to boost-1.81.0/boost/iterator/is_lvalue_iterator.hpp diff --git a/boost-1.80.0/boost/iterator/is_readable_iterator.hpp b/boost-1.81.0/boost/iterator/is_readable_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/is_readable_iterator.hpp rename to boost-1.81.0/boost/iterator/is_readable_iterator.hpp diff --git a/boost-1.80.0/boost/iterator/iterator_adaptor.hpp b/boost-1.81.0/boost/iterator/iterator_adaptor.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/iterator_adaptor.hpp rename to boost-1.81.0/boost/iterator/iterator_adaptor.hpp diff --git a/boost-1.80.0/boost/iterator/iterator_archetypes.hpp b/boost-1.81.0/boost/iterator/iterator_archetypes.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/iterator_archetypes.hpp rename to boost-1.81.0/boost/iterator/iterator_archetypes.hpp diff --git a/boost-1.80.0/boost/iterator/iterator_categories.hpp b/boost-1.81.0/boost/iterator/iterator_categories.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/iterator_categories.hpp rename to boost-1.81.0/boost/iterator/iterator_categories.hpp diff --git a/boost-1.80.0/boost/iterator/iterator_concepts.hpp b/boost-1.81.0/boost/iterator/iterator_concepts.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/iterator_concepts.hpp rename to boost-1.81.0/boost/iterator/iterator_concepts.hpp diff --git a/boost-1.80.0/boost/iterator/iterator_facade.hpp b/boost-1.81.0/boost/iterator/iterator_facade.hpp similarity index 91% rename from boost-1.80.0/boost/iterator/iterator_facade.hpp rename to boost-1.81.0/boost/iterator/iterator_facade.hpp index b43e618..c4b5ae4 100644 --- a/boost-1.80.0/boost/iterator/iterator_facade.hpp +++ b/boost-1.81.0/boost/iterator/iterator_facade.hpp @@ -154,79 +154,160 @@ namespace iterators { class postfix_increment_proxy { typedef typename iterator_value::type value_type; + public: explicit postfix_increment_proxy(Iterator const& x) - : stored_value(*x) + : stored_iterator(x) + , stored_value(*x) {} // Returning a mutable reference allows nonsense like // (*r++).mutate(), but it imposes fewer assumptions about the // behavior of the value_type. In particular, recall that // (*r).mutate() is legal if operator* returns by value. - value_type& - operator*() const - { - return this->stored_value; - } - private: - mutable value_type stored_value; - }; - - // - // In general, we can't determine that such an iterator isn't - // writable -- we also need to store a copy of the old iterator so - // that it can be written into. - template - class writable_postfix_increment_proxy - { - typedef typename iterator_value::type value_type; - public: - explicit writable_postfix_increment_proxy(Iterator const& x) - : stored_value(*x) - , stored_iterator(x) - {} - - // Dereferencing must return a proxy so that both *r++ = o and - // value_type(*r++) can work. In this case, *r is the same as - // *r++, and the conversion operator below is used to ensure - // readability. - writable_postfix_increment_proxy const& - operator*() const - { - return *this; - } - // Provides readability of *r++ - operator value_type&() const + value_type& operator*() const { return stored_value; } - // Provides writability of *r++ - template - T const& operator=(T const& x) const - { - *this->stored_iterator = x; - return x; - } - - // This overload just in case only non-const objects are writable - template - T& operator=(T& x) const - { - *this->stored_iterator = x; - return x; - } - // Provides X(r++) operator Iterator const&() const { return stored_iterator; } + // Provides (r++)->foo() + value_type* operator->() const + { + return boost::addressof(stored_value); + } + private: - mutable value_type stored_value; Iterator stored_iterator; + mutable value_type stored_value; + }; + + + template + class writable_postfix_increment_dereference_proxy; + + template + struct is_not_writable_postfix_increment_dereference_proxy : + public boost::true_type + {}; + + template + struct is_not_writable_postfix_increment_dereference_proxy< + writable_postfix_increment_dereference_proxy + > : + public boost::false_type + {}; + + template + class writable_postfix_increment_proxy; + + // + // In general, we can't determine that such an iterator isn't + // writable -- we also need to store a copy of the old iterator so + // that it can be written into. + template + class writable_postfix_increment_dereference_proxy + { + friend class writable_postfix_increment_proxy; + + typedef typename iterator_value::type value_type; + + public: + explicit writable_postfix_increment_dereference_proxy(Iterator const& x) + : stored_iterator(x) + , stored_value(*x) + {} + + // Provides readability of *r++ + operator value_type&() const + { + return this->stored_value; + } + + template + writable_postfix_increment_dereference_proxy const& + operator=(writable_postfix_increment_dereference_proxy const& x) const + { + typedef typename iterator_value::type other_value_type; + *this->stored_iterator = static_cast(x); + return *this; + } + + // Provides writability of *r++ +#if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) + template + typename iterators::enable_if< + is_not_writable_postfix_increment_dereference_proxy< T >, + writable_postfix_increment_dereference_proxy const& + >::type operator=(T&& x) const + { + *this->stored_iterator = static_cast< T&& >(x); + return *this; + } +#else + template + typename iterators::enable_if< + is_not_writable_postfix_increment_dereference_proxy< T >, + writable_postfix_increment_dereference_proxy const& + >::type operator=(T const& x) const + { + *this->stored_iterator = x; + return *this; + } + + // This overload just in case only non-const objects are writable + template + typename iterators::enable_if< + is_not_writable_postfix_increment_dereference_proxy< T >, + writable_postfix_increment_dereference_proxy const& + >::type operator=(T& x) const + { + *this->stored_iterator = x; + return *this; + } +#endif + + private: + Iterator stored_iterator; + mutable value_type stored_value; + }; + + template + class writable_postfix_increment_proxy + { + typedef typename iterator_value::type value_type; + + public: + explicit writable_postfix_increment_proxy(Iterator const& x) + : dereference_proxy(x) + {} + + writable_postfix_increment_dereference_proxy const& + operator*() const + { + return dereference_proxy; + } + + // Provides X(r++) + operator Iterator const&() const + { + return dereference_proxy.stored_iterator; + } + + // Provides (r++)->foo() + value_type* operator->() const + { + return boost::addressof(dereference_proxy.stored_value); + } + + private: + writable_postfix_increment_dereference_proxy dereference_proxy; }; # ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION diff --git a/boost-1.80.0/boost/iterator/iterator_traits.hpp b/boost-1.81.0/boost/iterator/iterator_traits.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/iterator_traits.hpp rename to boost-1.81.0/boost/iterator/iterator_traits.hpp diff --git a/boost-1.80.0/boost/iterator/minimum_category.hpp b/boost-1.81.0/boost/iterator/minimum_category.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/minimum_category.hpp rename to boost-1.81.0/boost/iterator/minimum_category.hpp diff --git a/boost-1.80.0/boost/iterator/new_iterator_tests.hpp b/boost-1.81.0/boost/iterator/new_iterator_tests.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/new_iterator_tests.hpp rename to boost-1.81.0/boost/iterator/new_iterator_tests.hpp diff --git a/boost-1.80.0/boost/iterator/permutation_iterator.hpp b/boost-1.81.0/boost/iterator/permutation_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/permutation_iterator.hpp rename to boost-1.81.0/boost/iterator/permutation_iterator.hpp diff --git a/boost-1.80.0/boost/iterator/reverse_iterator.hpp b/boost-1.81.0/boost/iterator/reverse_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/reverse_iterator.hpp rename to boost-1.81.0/boost/iterator/reverse_iterator.hpp diff --git a/boost-1.80.0/boost/iterator/transform_iterator.hpp b/boost-1.81.0/boost/iterator/transform_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/transform_iterator.hpp rename to boost-1.81.0/boost/iterator/transform_iterator.hpp diff --git a/boost-1.80.0/boost/iterator/zip_iterator.hpp b/boost-1.81.0/boost/iterator/zip_iterator.hpp similarity index 100% rename from boost-1.80.0/boost/iterator/zip_iterator.hpp rename to boost-1.81.0/boost/iterator/zip_iterator.hpp diff --git a/boost-1.80.0/boost/mpl/O1_size.hpp b/boost-1.81.0/boost/mpl/O1_size.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/O1_size.hpp rename to boost-1.81.0/boost/mpl/O1_size.hpp diff --git a/boost-1.80.0/boost/mpl/O1_size_fwd.hpp b/boost-1.81.0/boost/mpl/O1_size_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/O1_size_fwd.hpp rename to boost-1.81.0/boost/mpl/O1_size_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/accumulate.hpp b/boost-1.81.0/boost/mpl/accumulate.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/accumulate.hpp rename to boost-1.81.0/boost/mpl/accumulate.hpp diff --git a/boost-1.80.0/boost/mpl/advance.hpp b/boost-1.81.0/boost/mpl/advance.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/advance.hpp rename to boost-1.81.0/boost/mpl/advance.hpp diff --git a/boost-1.80.0/boost/mpl/advance_fwd.hpp b/boost-1.81.0/boost/mpl/advance_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/advance_fwd.hpp rename to boost-1.81.0/boost/mpl/advance_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/alias.hpp b/boost-1.81.0/boost/mpl/alias.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/alias.hpp rename to boost-1.81.0/boost/mpl/alias.hpp diff --git a/boost-1.80.0/boost/mpl/always.hpp b/boost-1.81.0/boost/mpl/always.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/always.hpp rename to boost-1.81.0/boost/mpl/always.hpp diff --git a/boost-1.80.0/boost/mpl/and.hpp b/boost-1.81.0/boost/mpl/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/and.hpp rename to boost-1.81.0/boost/mpl/and.hpp diff --git a/boost-1.80.0/boost/mpl/apply.hpp b/boost-1.81.0/boost/mpl/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/apply.hpp rename to boost-1.81.0/boost/mpl/apply.hpp diff --git a/boost-1.80.0/boost/mpl/apply_fwd.hpp b/boost-1.81.0/boost/mpl/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/apply_wrap.hpp b/boost-1.81.0/boost/mpl/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/arg.hpp b/boost-1.81.0/boost/mpl/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/arg.hpp rename to boost-1.81.0/boost/mpl/arg.hpp diff --git a/boost-1.80.0/boost/mpl/arg_fwd.hpp b/boost-1.81.0/boost/mpl/arg_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/arg_fwd.hpp rename to boost-1.81.0/boost/mpl/arg_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/arithmetic.hpp b/boost-1.81.0/boost/mpl/arithmetic.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/arithmetic.hpp rename to boost-1.81.0/boost/mpl/arithmetic.hpp diff --git a/boost-1.80.0/boost/mpl/as_sequence.hpp b/boost-1.81.0/boost/mpl/as_sequence.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/as_sequence.hpp rename to boost-1.81.0/boost/mpl/as_sequence.hpp diff --git a/boost-1.80.0/boost/mpl/assert.hpp b/boost-1.81.0/boost/mpl/assert.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/assert.hpp rename to boost-1.81.0/boost/mpl/assert.hpp diff --git a/boost-1.80.0/boost/mpl/at.hpp b/boost-1.81.0/boost/mpl/at.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/at.hpp rename to boost-1.81.0/boost/mpl/at.hpp diff --git a/boost-1.80.0/boost/mpl/at_fwd.hpp b/boost-1.81.0/boost/mpl/at_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/at_fwd.hpp rename to boost-1.81.0/boost/mpl/at_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/O1_size_impl.hpp b/boost-1.81.0/boost/mpl/aux_/O1_size_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/O1_size_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/O1_size_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/adl_barrier.hpp b/boost-1.81.0/boost/mpl/aux_/adl_barrier.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/adl_barrier.hpp rename to boost-1.81.0/boost/mpl/aux_/adl_barrier.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/apply_1st.hpp b/boost-1.81.0/boost/mpl/aux_/apply_1st.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/apply_1st.hpp rename to boost-1.81.0/boost/mpl/aux_/apply_1st.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/arg_typedef.hpp b/boost-1.81.0/boost/mpl/aux_/arg_typedef.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/arg_typedef.hpp rename to boost-1.81.0/boost/mpl/aux_/arg_typedef.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/arithmetic_op.hpp b/boost-1.81.0/boost/mpl/aux_/arithmetic_op.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/arithmetic_op.hpp rename to boost-1.81.0/boost/mpl/aux_/arithmetic_op.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/arity.hpp b/boost-1.81.0/boost/mpl/aux_/arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/arity.hpp rename to boost-1.81.0/boost/mpl/aux_/arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/arity_spec.hpp b/boost-1.81.0/boost/mpl/aux_/arity_spec.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/arity_spec.hpp rename to boost-1.81.0/boost/mpl/aux_/arity_spec.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/at_impl.hpp b/boost-1.81.0/boost/mpl/aux_/at_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/at_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/at_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/back_impl.hpp b/boost-1.81.0/boost/mpl/aux_/back_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/back_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/back_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/begin_end_impl.hpp b/boost-1.81.0/boost/mpl/aux_/begin_end_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/begin_end_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/begin_end_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/clear_impl.hpp b/boost-1.81.0/boost/mpl/aux_/clear_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/clear_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/clear_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/common_name_wknd.hpp b/boost-1.81.0/boost/mpl/aux_/common_name_wknd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/common_name_wknd.hpp rename to boost-1.81.0/boost/mpl/aux_/common_name_wknd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/comparison_op.hpp b/boost-1.81.0/boost/mpl/aux_/comparison_op.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/comparison_op.hpp rename to boost-1.81.0/boost/mpl/aux_/comparison_op.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/adl.hpp b/boost-1.81.0/boost/mpl/aux_/config/adl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/adl.hpp rename to boost-1.81.0/boost/mpl/aux_/config/adl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/arrays.hpp b/boost-1.81.0/boost/mpl/aux_/config/arrays.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/arrays.hpp rename to boost-1.81.0/boost/mpl/aux_/config/arrays.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/bcc.hpp b/boost-1.81.0/boost/mpl/aux_/config/bcc.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/bcc.hpp rename to boost-1.81.0/boost/mpl/aux_/config/bcc.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/bind.hpp b/boost-1.81.0/boost/mpl/aux_/config/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/config/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/compiler.hpp b/boost-1.81.0/boost/mpl/aux_/config/compiler.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/compiler.hpp rename to boost-1.81.0/boost/mpl/aux_/config/compiler.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/ctps.hpp b/boost-1.81.0/boost/mpl/aux_/config/ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/config/ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/dependent_nttp.hpp b/boost-1.81.0/boost/mpl/aux_/config/dependent_nttp.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/dependent_nttp.hpp rename to boost-1.81.0/boost/mpl/aux_/config/dependent_nttp.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/dtp.hpp b/boost-1.81.0/boost/mpl/aux_/config/dtp.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/dtp.hpp rename to boost-1.81.0/boost/mpl/aux_/config/dtp.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/eti.hpp b/boost-1.81.0/boost/mpl/aux_/config/eti.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/eti.hpp rename to boost-1.81.0/boost/mpl/aux_/config/eti.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/forwarding.hpp b/boost-1.81.0/boost/mpl/aux_/config/forwarding.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/forwarding.hpp rename to boost-1.81.0/boost/mpl/aux_/config/forwarding.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/gcc.hpp b/boost-1.81.0/boost/mpl/aux_/config/gcc.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/gcc.hpp rename to boost-1.81.0/boost/mpl/aux_/config/gcc.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/gpu.hpp b/boost-1.81.0/boost/mpl/aux_/config/gpu.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/gpu.hpp rename to boost-1.81.0/boost/mpl/aux_/config/gpu.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/has_apply.hpp b/boost-1.81.0/boost/mpl/aux_/config/has_apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/has_apply.hpp rename to boost-1.81.0/boost/mpl/aux_/config/has_apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/has_xxx.hpp b/boost-1.81.0/boost/mpl/aux_/config/has_xxx.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/has_xxx.hpp rename to boost-1.81.0/boost/mpl/aux_/config/has_xxx.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/integral.hpp b/boost-1.81.0/boost/mpl/aux_/config/integral.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/integral.hpp rename to boost-1.81.0/boost/mpl/aux_/config/integral.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/intel.hpp b/boost-1.81.0/boost/mpl/aux_/config/intel.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/intel.hpp rename to boost-1.81.0/boost/mpl/aux_/config/intel.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/lambda.hpp b/boost-1.81.0/boost/mpl/aux_/config/lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/config/lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/msvc.hpp b/boost-1.81.0/boost/mpl/aux_/config/msvc.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/msvc.hpp rename to boost-1.81.0/boost/mpl/aux_/config/msvc.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/msvc_typename.hpp b/boost-1.81.0/boost/mpl/aux_/config/msvc_typename.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/msvc_typename.hpp rename to boost-1.81.0/boost/mpl/aux_/config/msvc_typename.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/nttp.hpp b/boost-1.81.0/boost/mpl/aux_/config/nttp.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/nttp.hpp rename to boost-1.81.0/boost/mpl/aux_/config/nttp.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/operators.hpp b/boost-1.81.0/boost/mpl/aux_/config/operators.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/operators.hpp rename to boost-1.81.0/boost/mpl/aux_/config/operators.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/overload_resolution.hpp b/boost-1.81.0/boost/mpl/aux_/config/overload_resolution.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/overload_resolution.hpp rename to boost-1.81.0/boost/mpl/aux_/config/overload_resolution.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/pp_counter.hpp b/boost-1.81.0/boost/mpl/aux_/config/pp_counter.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/pp_counter.hpp rename to boost-1.81.0/boost/mpl/aux_/config/pp_counter.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/preprocessor.hpp b/boost-1.81.0/boost/mpl/aux_/config/preprocessor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/preprocessor.hpp rename to boost-1.81.0/boost/mpl/aux_/config/preprocessor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/static_constant.hpp b/boost-1.81.0/boost/mpl/aux_/config/static_constant.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/static_constant.hpp rename to boost-1.81.0/boost/mpl/aux_/config/static_constant.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/ttp.hpp b/boost-1.81.0/boost/mpl/aux_/config/ttp.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/ttp.hpp rename to boost-1.81.0/boost/mpl/aux_/config/ttp.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/typeof.hpp b/boost-1.81.0/boost/mpl/aux_/config/typeof.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/typeof.hpp rename to boost-1.81.0/boost/mpl/aux_/config/typeof.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/use_preprocessed.hpp b/boost-1.81.0/boost/mpl/aux_/config/use_preprocessed.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/use_preprocessed.hpp rename to boost-1.81.0/boost/mpl/aux_/config/use_preprocessed.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/config/workaround.hpp b/boost-1.81.0/boost/mpl/aux_/config/workaround.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/config/workaround.hpp rename to boost-1.81.0/boost/mpl/aux_/config/workaround.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/contains_impl.hpp b/boost-1.81.0/boost/mpl/aux_/contains_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/contains_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/contains_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/count_args.hpp b/boost-1.81.0/boost/mpl/aux_/count_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/count_args.hpp rename to boost-1.81.0/boost/mpl/aux_/count_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/count_impl.hpp b/boost-1.81.0/boost/mpl/aux_/count_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/count_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/count_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/empty_impl.hpp b/boost-1.81.0/boost/mpl/aux_/empty_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/empty_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/empty_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/erase_impl.hpp b/boost-1.81.0/boost/mpl/aux_/erase_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/erase_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/erase_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/erase_key_impl.hpp b/boost-1.81.0/boost/mpl/aux_/erase_key_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/erase_key_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/erase_key_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/filter_iter.hpp b/boost-1.81.0/boost/mpl/aux_/filter_iter.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/filter_iter.hpp rename to boost-1.81.0/boost/mpl/aux_/filter_iter.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/find_if_pred.hpp b/boost-1.81.0/boost/mpl/aux_/find_if_pred.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/find_if_pred.hpp rename to boost-1.81.0/boost/mpl/aux_/find_if_pred.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/fold_impl_body.hpp b/boost-1.81.0/boost/mpl/aux_/fold_impl_body.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/fold_impl_body.hpp rename to boost-1.81.0/boost/mpl/aux_/fold_impl_body.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/fold_op.hpp b/boost-1.81.0/boost/mpl/aux_/fold_op.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/fold_op.hpp rename to boost-1.81.0/boost/mpl/aux_/fold_op.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/fold_pred.hpp b/boost-1.81.0/boost/mpl/aux_/fold_pred.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/fold_pred.hpp rename to boost-1.81.0/boost/mpl/aux_/fold_pred.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/front_impl.hpp b/boost-1.81.0/boost/mpl/aux_/front_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/front_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/front_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/has_apply.hpp b/boost-1.81.0/boost/mpl/aux_/has_apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/has_apply.hpp rename to boost-1.81.0/boost/mpl/aux_/has_apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/has_begin.hpp b/boost-1.81.0/boost/mpl/aux_/has_begin.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/has_begin.hpp rename to boost-1.81.0/boost/mpl/aux_/has_begin.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/has_key_impl.hpp b/boost-1.81.0/boost/mpl/aux_/has_key_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/has_key_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/has_key_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/has_rebind.hpp b/boost-1.81.0/boost/mpl/aux_/has_rebind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/has_rebind.hpp rename to boost-1.81.0/boost/mpl/aux_/has_rebind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/has_size.hpp b/boost-1.81.0/boost/mpl/aux_/has_size.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/has_size.hpp rename to boost-1.81.0/boost/mpl/aux_/has_size.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/has_tag.hpp b/boost-1.81.0/boost/mpl/aux_/has_tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/has_tag.hpp rename to boost-1.81.0/boost/mpl/aux_/has_tag.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/has_type.hpp b/boost-1.81.0/boost/mpl/aux_/has_type.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/has_type.hpp rename to boost-1.81.0/boost/mpl/aux_/has_type.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/include_preprocessed.hpp b/boost-1.81.0/boost/mpl/aux_/include_preprocessed.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/include_preprocessed.hpp rename to boost-1.81.0/boost/mpl/aux_/include_preprocessed.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/insert_impl.hpp b/boost-1.81.0/boost/mpl/aux_/insert_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/insert_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/insert_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/insert_range_impl.hpp b/boost-1.81.0/boost/mpl/aux_/insert_range_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/insert_range_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/insert_range_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/inserter_algorithm.hpp b/boost-1.81.0/boost/mpl/aux_/inserter_algorithm.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/inserter_algorithm.hpp rename to boost-1.81.0/boost/mpl/aux_/inserter_algorithm.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/integral_wrapper.hpp b/boost-1.81.0/boost/mpl/aux_/integral_wrapper.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/integral_wrapper.hpp rename to boost-1.81.0/boost/mpl/aux_/integral_wrapper.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/is_msvc_eti_arg.hpp b/boost-1.81.0/boost/mpl/aux_/is_msvc_eti_arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/is_msvc_eti_arg.hpp rename to boost-1.81.0/boost/mpl/aux_/is_msvc_eti_arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/iter_apply.hpp b/boost-1.81.0/boost/mpl/aux_/iter_apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/iter_apply.hpp rename to boost-1.81.0/boost/mpl/aux_/iter_apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/iter_push_front.hpp b/boost-1.81.0/boost/mpl/aux_/iter_push_front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/iter_push_front.hpp rename to boost-1.81.0/boost/mpl/aux_/iter_push_front.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/joint_iter.hpp b/boost-1.81.0/boost/mpl/aux_/joint_iter.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/joint_iter.hpp rename to boost-1.81.0/boost/mpl/aux_/joint_iter.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/lambda_arity_param.hpp b/boost-1.81.0/boost/mpl/aux_/lambda_arity_param.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/lambda_arity_param.hpp rename to boost-1.81.0/boost/mpl/aux_/lambda_arity_param.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/lambda_spec.hpp b/boost-1.81.0/boost/mpl/aux_/lambda_spec.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/lambda_spec.hpp rename to boost-1.81.0/boost/mpl/aux_/lambda_spec.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/lambda_support.hpp b/boost-1.81.0/boost/mpl/aux_/lambda_support.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/lambda_support.hpp rename to boost-1.81.0/boost/mpl/aux_/lambda_support.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/largest_int.hpp b/boost-1.81.0/boost/mpl/aux_/largest_int.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/largest_int.hpp rename to boost-1.81.0/boost/mpl/aux_/largest_int.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/logical_op.hpp b/boost-1.81.0/boost/mpl/aux_/logical_op.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/logical_op.hpp rename to boost-1.81.0/boost/mpl/aux_/logical_op.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/msvc_dtw.hpp b/boost-1.81.0/boost/mpl/aux_/msvc_dtw.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/msvc_dtw.hpp rename to boost-1.81.0/boost/mpl/aux_/msvc_dtw.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/msvc_eti_base.hpp b/boost-1.81.0/boost/mpl/aux_/msvc_eti_base.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/msvc_eti_base.hpp rename to boost-1.81.0/boost/mpl/aux_/msvc_eti_base.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/msvc_is_class.hpp b/boost-1.81.0/boost/mpl/aux_/msvc_is_class.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/msvc_is_class.hpp rename to boost-1.81.0/boost/mpl/aux_/msvc_is_class.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/msvc_never_true.hpp b/boost-1.81.0/boost/mpl/aux_/msvc_never_true.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/msvc_never_true.hpp rename to boost-1.81.0/boost/mpl/aux_/msvc_never_true.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/msvc_type.hpp b/boost-1.81.0/boost/mpl/aux_/msvc_type.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/msvc_type.hpp rename to boost-1.81.0/boost/mpl/aux_/msvc_type.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/na.hpp b/boost-1.81.0/boost/mpl/aux_/na.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/na.hpp rename to boost-1.81.0/boost/mpl/aux_/na.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/na_assert.hpp b/boost-1.81.0/boost/mpl/aux_/na_assert.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/na_assert.hpp rename to boost-1.81.0/boost/mpl/aux_/na_assert.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/na_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/na_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/na_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/na_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/na_spec.hpp b/boost-1.81.0/boost/mpl/aux_/na_spec.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/na_spec.hpp rename to boost-1.81.0/boost/mpl/aux_/na_spec.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/nested_type_wknd.hpp b/boost-1.81.0/boost/mpl/aux_/nested_type_wknd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/nested_type_wknd.hpp rename to boost-1.81.0/boost/mpl/aux_/nested_type_wknd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/nttp_decl.hpp b/boost-1.81.0/boost/mpl/aux_/nttp_decl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/nttp_decl.hpp rename to boost-1.81.0/boost/mpl/aux_/nttp_decl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/numeric_cast_utils.hpp b/boost-1.81.0/boost/mpl/aux_/numeric_cast_utils.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/numeric_cast_utils.hpp rename to boost-1.81.0/boost/mpl/aux_/numeric_cast_utils.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/numeric_op.hpp b/boost-1.81.0/boost/mpl/aux_/numeric_op.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/numeric_op.hpp rename to boost-1.81.0/boost/mpl/aux_/numeric_op.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/order_impl.hpp b/boost-1.81.0/boost/mpl/aux_/order_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/order_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/order_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/overload_names.hpp b/boost-1.81.0/boost/mpl/aux_/overload_names.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/overload_names.hpp rename to boost-1.81.0/boost/mpl/aux_/overload_names.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/partition_op.hpp b/boost-1.81.0/boost/mpl/aux_/partition_op.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/partition_op.hpp rename to boost-1.81.0/boost/mpl/aux_/partition_op.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/pop_back_impl.hpp b/boost-1.81.0/boost/mpl/aux_/pop_back_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/pop_back_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/pop_back_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/pop_front_impl.hpp b/boost-1.81.0/boost/mpl/aux_/pop_front_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/pop_front_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/pop_front_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc551/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/bcc_pre590/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/dmc/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/gcc/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc60/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/msvc70/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/mwcw/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ctps/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/no_ttp/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/advance_backward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/advance_forward.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/and.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/and.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/and.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/and.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/apply.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/apply.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/apply.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/apply.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/arg.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/arg.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/arg.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/arg.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bind.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bind.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bind.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bitand.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bitand.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bitor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bitor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bitxor.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/bitxor.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/deque.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/deque.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/deque.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/divides.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/divides.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/divides.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/full_lambda.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/greater.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/greater.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/greater.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/inherit.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/inherit.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/iter_fold_if_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/lambda_no_ctps.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/less.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/less.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/less.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/less_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/less_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/list.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/list.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/list.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/list_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/list_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/map.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/map.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/map.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/minus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/minus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/minus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/modulus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/modulus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/or.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/or.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/or.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/placeholders.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/placeholders.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/plus.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/plus.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/plus.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/quote.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/quote.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/quote.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/set.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/set.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/set.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/set_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/set_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/shift_left.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/shift_left.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/shift_right.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/shift_right.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/times.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/times.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/times.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/vector.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/vector.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/vector.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessed/plain/vector_c.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessed/plain/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessed/plain/vector_c.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessed/plain/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/add.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/add.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/add.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/add.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/def_params_tail.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/def_params_tail.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/def_params_tail.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/def_params_tail.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/default_params.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/default_params.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/default_params.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/default_params.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/enum.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/enum.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/enum.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/enum.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/ext_params.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/ext_params.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/ext_params.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/ext_params.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/filter_params.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/filter_params.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/filter_params.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/filter_params.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/is_seq.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/is_seq.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/is_seq.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/is_seq.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/params.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/params.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/params.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/params.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/partial_spec_params.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/partial_spec_params.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/partial_spec_params.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/partial_spec_params.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/range.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/range.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/range.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/range.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/repeat.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/repeat.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/repeat.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/repeat.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/sub.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/sub.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/sub.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/sub.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/token_equal.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/token_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/token_equal.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/token_equal.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/preprocessor/tuple.hpp b/boost-1.81.0/boost/mpl/aux_/preprocessor/tuple.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/preprocessor/tuple.hpp rename to boost-1.81.0/boost/mpl/aux_/preprocessor/tuple.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/ptr_to_ref.hpp b/boost-1.81.0/boost/mpl/aux_/ptr_to_ref.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/ptr_to_ref.hpp rename to boost-1.81.0/boost/mpl/aux_/ptr_to_ref.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/push_back_impl.hpp b/boost-1.81.0/boost/mpl/aux_/push_back_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/push_back_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/push_back_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/push_front_impl.hpp b/boost-1.81.0/boost/mpl/aux_/push_front_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/push_front_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/push_front_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/range_c/O1_size.hpp b/boost-1.81.0/boost/mpl/aux_/range_c/O1_size.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/range_c/O1_size.hpp rename to boost-1.81.0/boost/mpl/aux_/range_c/O1_size.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/range_c/back.hpp b/boost-1.81.0/boost/mpl/aux_/range_c/back.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/range_c/back.hpp rename to boost-1.81.0/boost/mpl/aux_/range_c/back.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/range_c/empty.hpp b/boost-1.81.0/boost/mpl/aux_/range_c/empty.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/range_c/empty.hpp rename to boost-1.81.0/boost/mpl/aux_/range_c/empty.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/range_c/front.hpp b/boost-1.81.0/boost/mpl/aux_/range_c/front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/range_c/front.hpp rename to boost-1.81.0/boost/mpl/aux_/range_c/front.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/range_c/iterator.hpp b/boost-1.81.0/boost/mpl/aux_/range_c/iterator.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/range_c/iterator.hpp rename to boost-1.81.0/boost/mpl/aux_/range_c/iterator.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/range_c/size.hpp b/boost-1.81.0/boost/mpl/aux_/range_c/size.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/range_c/size.hpp rename to boost-1.81.0/boost/mpl/aux_/range_c/size.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/range_c/tag.hpp b/boost-1.81.0/boost/mpl/aux_/range_c/tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/range_c/tag.hpp rename to boost-1.81.0/boost/mpl/aux_/range_c/tag.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/reverse_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/reverse_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/reverse_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/reverse_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/reverse_fold_impl_body.hpp b/boost-1.81.0/boost/mpl/aux_/reverse_fold_impl_body.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/reverse_fold_impl_body.hpp rename to boost-1.81.0/boost/mpl/aux_/reverse_fold_impl_body.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/reverse_iter_fold_impl.hpp b/boost-1.81.0/boost/mpl/aux_/reverse_iter_fold_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/reverse_iter_fold_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/reverse_iter_fold_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/sequence_wrapper.hpp b/boost-1.81.0/boost/mpl/aux_/sequence_wrapper.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/sequence_wrapper.hpp rename to boost-1.81.0/boost/mpl/aux_/sequence_wrapper.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/shift_op.hpp b/boost-1.81.0/boost/mpl/aux_/shift_op.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/shift_op.hpp rename to boost-1.81.0/boost/mpl/aux_/shift_op.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/single_element_iter.hpp b/boost-1.81.0/boost/mpl/aux_/single_element_iter.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/single_element_iter.hpp rename to boost-1.81.0/boost/mpl/aux_/single_element_iter.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/size_impl.hpp b/boost-1.81.0/boost/mpl/aux_/size_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/size_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/size_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/sort_impl.hpp b/boost-1.81.0/boost/mpl/aux_/sort_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/sort_impl.hpp rename to boost-1.81.0/boost/mpl/aux_/sort_impl.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/static_cast.hpp b/boost-1.81.0/boost/mpl/aux_/static_cast.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/static_cast.hpp rename to boost-1.81.0/boost/mpl/aux_/static_cast.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/template_arity.hpp b/boost-1.81.0/boost/mpl/aux_/template_arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/template_arity.hpp rename to boost-1.81.0/boost/mpl/aux_/template_arity.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/template_arity_fwd.hpp b/boost-1.81.0/boost/mpl/aux_/template_arity_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/template_arity_fwd.hpp rename to boost-1.81.0/boost/mpl/aux_/template_arity_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/test.hpp b/boost-1.81.0/boost/mpl/aux_/test.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/test.hpp rename to boost-1.81.0/boost/mpl/aux_/test.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/test/assert.hpp b/boost-1.81.0/boost/mpl/aux_/test/assert.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/test/assert.hpp rename to boost-1.81.0/boost/mpl/aux_/test/assert.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/test/data.hpp b/boost-1.81.0/boost/mpl/aux_/test/data.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/test/data.hpp rename to boost-1.81.0/boost/mpl/aux_/test/data.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/test/test_case.hpp b/boost-1.81.0/boost/mpl/aux_/test/test_case.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/test/test_case.hpp rename to boost-1.81.0/boost/mpl/aux_/test/test_case.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/traits_lambda_spec.hpp b/boost-1.81.0/boost/mpl/aux_/traits_lambda_spec.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/traits_lambda_spec.hpp rename to boost-1.81.0/boost/mpl/aux_/traits_lambda_spec.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/transform_iter.hpp b/boost-1.81.0/boost/mpl/aux_/transform_iter.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/transform_iter.hpp rename to boost-1.81.0/boost/mpl/aux_/transform_iter.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/type_wrapper.hpp b/boost-1.81.0/boost/mpl/aux_/type_wrapper.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/type_wrapper.hpp rename to boost-1.81.0/boost/mpl/aux_/type_wrapper.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/unwrap.hpp b/boost-1.81.0/boost/mpl/aux_/unwrap.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/unwrap.hpp rename to boost-1.81.0/boost/mpl/aux_/unwrap.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/value_wknd.hpp b/boost-1.81.0/boost/mpl/aux_/value_wknd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/value_wknd.hpp rename to boost-1.81.0/boost/mpl/aux_/value_wknd.hpp diff --git a/boost-1.80.0/boost/mpl/aux_/yes_no.hpp b/boost-1.81.0/boost/mpl/aux_/yes_no.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/aux_/yes_no.hpp rename to boost-1.81.0/boost/mpl/aux_/yes_no.hpp diff --git a/boost-1.80.0/boost/mpl/back.hpp b/boost-1.81.0/boost/mpl/back.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/back.hpp rename to boost-1.81.0/boost/mpl/back.hpp diff --git a/boost-1.80.0/boost/mpl/back_fwd.hpp b/boost-1.81.0/boost/mpl/back_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/back_fwd.hpp rename to boost-1.81.0/boost/mpl/back_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/back_inserter.hpp b/boost-1.81.0/boost/mpl/back_inserter.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/back_inserter.hpp rename to boost-1.81.0/boost/mpl/back_inserter.hpp diff --git a/boost-1.80.0/boost/mpl/base.hpp b/boost-1.81.0/boost/mpl/base.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/base.hpp rename to boost-1.81.0/boost/mpl/base.hpp diff --git a/boost-1.80.0/boost/mpl/begin.hpp b/boost-1.81.0/boost/mpl/begin.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/begin.hpp rename to boost-1.81.0/boost/mpl/begin.hpp diff --git a/boost-1.80.0/boost/mpl/begin_end.hpp b/boost-1.81.0/boost/mpl/begin_end.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/begin_end.hpp rename to boost-1.81.0/boost/mpl/begin_end.hpp diff --git a/boost-1.80.0/boost/mpl/begin_end_fwd.hpp b/boost-1.81.0/boost/mpl/begin_end_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/begin_end_fwd.hpp rename to boost-1.81.0/boost/mpl/begin_end_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/bind.hpp b/boost-1.81.0/boost/mpl/bind.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/bind.hpp rename to boost-1.81.0/boost/mpl/bind.hpp diff --git a/boost-1.80.0/boost/mpl/bind_fwd.hpp b/boost-1.81.0/boost/mpl/bind_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/bind_fwd.hpp rename to boost-1.81.0/boost/mpl/bind_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/bitand.hpp b/boost-1.81.0/boost/mpl/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/bitand.hpp rename to boost-1.81.0/boost/mpl/bitand.hpp diff --git a/boost-1.80.0/boost/mpl/bitor.hpp b/boost-1.81.0/boost/mpl/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/bitor.hpp rename to boost-1.81.0/boost/mpl/bitor.hpp diff --git a/boost-1.80.0/boost/mpl/bitwise.hpp b/boost-1.81.0/boost/mpl/bitwise.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/bitwise.hpp rename to boost-1.81.0/boost/mpl/bitwise.hpp diff --git a/boost-1.80.0/boost/mpl/bitxor.hpp b/boost-1.81.0/boost/mpl/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/bitxor.hpp rename to boost-1.81.0/boost/mpl/bitxor.hpp diff --git a/boost-1.80.0/boost/mpl/bool.hpp b/boost-1.81.0/boost/mpl/bool.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/bool.hpp rename to boost-1.81.0/boost/mpl/bool.hpp diff --git a/boost-1.80.0/boost/mpl/bool_fwd.hpp b/boost-1.81.0/boost/mpl/bool_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/bool_fwd.hpp rename to boost-1.81.0/boost/mpl/bool_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/char.hpp b/boost-1.81.0/boost/mpl/char.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/char.hpp rename to boost-1.81.0/boost/mpl/char.hpp diff --git a/boost-1.80.0/boost/mpl/char_fwd.hpp b/boost-1.81.0/boost/mpl/char_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/char_fwd.hpp rename to boost-1.81.0/boost/mpl/char_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/clear.hpp b/boost-1.81.0/boost/mpl/clear.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/clear.hpp rename to boost-1.81.0/boost/mpl/clear.hpp diff --git a/boost-1.80.0/boost/mpl/clear_fwd.hpp b/boost-1.81.0/boost/mpl/clear_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/clear_fwd.hpp rename to boost-1.81.0/boost/mpl/clear_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/comparison.hpp b/boost-1.81.0/boost/mpl/comparison.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/comparison.hpp rename to boost-1.81.0/boost/mpl/comparison.hpp diff --git a/boost-1.80.0/boost/mpl/contains.hpp b/boost-1.81.0/boost/mpl/contains.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/contains.hpp rename to boost-1.81.0/boost/mpl/contains.hpp diff --git a/boost-1.80.0/boost/mpl/contains_fwd.hpp b/boost-1.81.0/boost/mpl/contains_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/contains_fwd.hpp rename to boost-1.81.0/boost/mpl/contains_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/copy.hpp b/boost-1.81.0/boost/mpl/copy.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/copy.hpp rename to boost-1.81.0/boost/mpl/copy.hpp diff --git a/boost-1.80.0/boost/mpl/copy_if.hpp b/boost-1.81.0/boost/mpl/copy_if.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/copy_if.hpp rename to boost-1.81.0/boost/mpl/copy_if.hpp diff --git a/boost-1.80.0/boost/mpl/count.hpp b/boost-1.81.0/boost/mpl/count.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/count.hpp rename to boost-1.81.0/boost/mpl/count.hpp diff --git a/boost-1.80.0/boost/mpl/count_fwd.hpp b/boost-1.81.0/boost/mpl/count_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/count_fwd.hpp rename to boost-1.81.0/boost/mpl/count_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/count_if.hpp b/boost-1.81.0/boost/mpl/count_if.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/count_if.hpp rename to boost-1.81.0/boost/mpl/count_if.hpp diff --git a/boost-1.80.0/boost/mpl/deque.hpp b/boost-1.81.0/boost/mpl/deque.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/deque.hpp rename to boost-1.81.0/boost/mpl/deque.hpp diff --git a/boost-1.80.0/boost/mpl/deref.hpp b/boost-1.81.0/boost/mpl/deref.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/deref.hpp rename to boost-1.81.0/boost/mpl/deref.hpp diff --git a/boost-1.80.0/boost/mpl/distance.hpp b/boost-1.81.0/boost/mpl/distance.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/distance.hpp rename to boost-1.81.0/boost/mpl/distance.hpp diff --git a/boost-1.80.0/boost/mpl/distance_fwd.hpp b/boost-1.81.0/boost/mpl/distance_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/distance_fwd.hpp rename to boost-1.81.0/boost/mpl/distance_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/divides.hpp b/boost-1.81.0/boost/mpl/divides.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/divides.hpp rename to boost-1.81.0/boost/mpl/divides.hpp diff --git a/boost-1.80.0/boost/mpl/empty.hpp b/boost-1.81.0/boost/mpl/empty.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/empty.hpp rename to boost-1.81.0/boost/mpl/empty.hpp diff --git a/boost-1.80.0/boost/mpl/empty_base.hpp b/boost-1.81.0/boost/mpl/empty_base.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/empty_base.hpp rename to boost-1.81.0/boost/mpl/empty_base.hpp diff --git a/boost-1.80.0/boost/mpl/empty_fwd.hpp b/boost-1.81.0/boost/mpl/empty_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/empty_fwd.hpp rename to boost-1.81.0/boost/mpl/empty_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/empty_sequence.hpp b/boost-1.81.0/boost/mpl/empty_sequence.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/empty_sequence.hpp rename to boost-1.81.0/boost/mpl/empty_sequence.hpp diff --git a/boost-1.80.0/boost/mpl/end.hpp b/boost-1.81.0/boost/mpl/end.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/end.hpp rename to boost-1.81.0/boost/mpl/end.hpp diff --git a/boost-1.80.0/boost/mpl/equal.hpp b/boost-1.81.0/boost/mpl/equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/equal.hpp rename to boost-1.81.0/boost/mpl/equal.hpp diff --git a/boost-1.80.0/boost/mpl/equal_to.hpp b/boost-1.81.0/boost/mpl/equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/equal_to.hpp rename to boost-1.81.0/boost/mpl/equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/erase.hpp b/boost-1.81.0/boost/mpl/erase.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/erase.hpp rename to boost-1.81.0/boost/mpl/erase.hpp diff --git a/boost-1.80.0/boost/mpl/erase_fwd.hpp b/boost-1.81.0/boost/mpl/erase_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/erase_fwd.hpp rename to boost-1.81.0/boost/mpl/erase_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/erase_key.hpp b/boost-1.81.0/boost/mpl/erase_key.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/erase_key.hpp rename to boost-1.81.0/boost/mpl/erase_key.hpp diff --git a/boost-1.80.0/boost/mpl/erase_key_fwd.hpp b/boost-1.81.0/boost/mpl/erase_key_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/erase_key_fwd.hpp rename to boost-1.81.0/boost/mpl/erase_key_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/eval_if.hpp b/boost-1.81.0/boost/mpl/eval_if.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/eval_if.hpp rename to boost-1.81.0/boost/mpl/eval_if.hpp diff --git a/boost-1.80.0/boost/mpl/filter_view.hpp b/boost-1.81.0/boost/mpl/filter_view.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/filter_view.hpp rename to boost-1.81.0/boost/mpl/filter_view.hpp diff --git a/boost-1.80.0/boost/mpl/find.hpp b/boost-1.81.0/boost/mpl/find.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/find.hpp rename to boost-1.81.0/boost/mpl/find.hpp diff --git a/boost-1.80.0/boost/mpl/find_if.hpp b/boost-1.81.0/boost/mpl/find_if.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/find_if.hpp rename to boost-1.81.0/boost/mpl/find_if.hpp diff --git a/boost-1.80.0/boost/mpl/fold.hpp b/boost-1.81.0/boost/mpl/fold.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/fold.hpp rename to boost-1.81.0/boost/mpl/fold.hpp diff --git a/boost-1.80.0/boost/mpl/for_each.hpp b/boost-1.81.0/boost/mpl/for_each.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/for_each.hpp rename to boost-1.81.0/boost/mpl/for_each.hpp diff --git a/boost-1.80.0/boost/mpl/front.hpp b/boost-1.81.0/boost/mpl/front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/front.hpp rename to boost-1.81.0/boost/mpl/front.hpp diff --git a/boost-1.80.0/boost/mpl/front_fwd.hpp b/boost-1.81.0/boost/mpl/front_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/front_fwd.hpp rename to boost-1.81.0/boost/mpl/front_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/front_inserter.hpp b/boost-1.81.0/boost/mpl/front_inserter.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/front_inserter.hpp rename to boost-1.81.0/boost/mpl/front_inserter.hpp diff --git a/boost-1.80.0/boost/mpl/get_tag.hpp b/boost-1.81.0/boost/mpl/get_tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/get_tag.hpp rename to boost-1.81.0/boost/mpl/get_tag.hpp diff --git a/boost-1.80.0/boost/mpl/greater.hpp b/boost-1.81.0/boost/mpl/greater.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/greater.hpp rename to boost-1.81.0/boost/mpl/greater.hpp diff --git a/boost-1.80.0/boost/mpl/greater_equal.hpp b/boost-1.81.0/boost/mpl/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/greater_equal.hpp rename to boost-1.81.0/boost/mpl/greater_equal.hpp diff --git a/boost-1.80.0/boost/mpl/has_key.hpp b/boost-1.81.0/boost/mpl/has_key.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/has_key.hpp rename to boost-1.81.0/boost/mpl/has_key.hpp diff --git a/boost-1.80.0/boost/mpl/has_key_fwd.hpp b/boost-1.81.0/boost/mpl/has_key_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/has_key_fwd.hpp rename to boost-1.81.0/boost/mpl/has_key_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/has_xxx.hpp b/boost-1.81.0/boost/mpl/has_xxx.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/has_xxx.hpp rename to boost-1.81.0/boost/mpl/has_xxx.hpp diff --git a/boost-1.80.0/boost/mpl/identity.hpp b/boost-1.81.0/boost/mpl/identity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/identity.hpp rename to boost-1.81.0/boost/mpl/identity.hpp diff --git a/boost-1.80.0/boost/mpl/if.hpp b/boost-1.81.0/boost/mpl/if.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/if.hpp rename to boost-1.81.0/boost/mpl/if.hpp diff --git a/boost-1.80.0/boost/mpl/index_if.hpp b/boost-1.81.0/boost/mpl/index_if.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/index_if.hpp rename to boost-1.81.0/boost/mpl/index_if.hpp diff --git a/boost-1.80.0/boost/mpl/index_of.hpp b/boost-1.81.0/boost/mpl/index_of.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/index_of.hpp rename to boost-1.81.0/boost/mpl/index_of.hpp diff --git a/boost-1.80.0/boost/mpl/inherit.hpp b/boost-1.81.0/boost/mpl/inherit.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/inherit.hpp rename to boost-1.81.0/boost/mpl/inherit.hpp diff --git a/boost-1.80.0/boost/mpl/inherit_linearly.hpp b/boost-1.81.0/boost/mpl/inherit_linearly.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/inherit_linearly.hpp rename to boost-1.81.0/boost/mpl/inherit_linearly.hpp diff --git a/boost-1.80.0/boost/mpl/insert.hpp b/boost-1.81.0/boost/mpl/insert.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/insert.hpp rename to boost-1.81.0/boost/mpl/insert.hpp diff --git a/boost-1.80.0/boost/mpl/insert_fwd.hpp b/boost-1.81.0/boost/mpl/insert_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/insert_fwd.hpp rename to boost-1.81.0/boost/mpl/insert_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/insert_range.hpp b/boost-1.81.0/boost/mpl/insert_range.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/insert_range.hpp rename to boost-1.81.0/boost/mpl/insert_range.hpp diff --git a/boost-1.80.0/boost/mpl/insert_range_fwd.hpp b/boost-1.81.0/boost/mpl/insert_range_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/insert_range_fwd.hpp rename to boost-1.81.0/boost/mpl/insert_range_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/inserter.hpp b/boost-1.81.0/boost/mpl/inserter.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/inserter.hpp rename to boost-1.81.0/boost/mpl/inserter.hpp diff --git a/boost-1.80.0/boost/mpl/int.hpp b/boost-1.81.0/boost/mpl/int.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/int.hpp rename to boost-1.81.0/boost/mpl/int.hpp diff --git a/boost-1.80.0/boost/mpl/int_fwd.hpp b/boost-1.81.0/boost/mpl/int_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/int_fwd.hpp rename to boost-1.81.0/boost/mpl/int_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/integral_c.hpp b/boost-1.81.0/boost/mpl/integral_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/integral_c.hpp rename to boost-1.81.0/boost/mpl/integral_c.hpp diff --git a/boost-1.80.0/boost/mpl/integral_c_fwd.hpp b/boost-1.81.0/boost/mpl/integral_c_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/integral_c_fwd.hpp rename to boost-1.81.0/boost/mpl/integral_c_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/integral_c_tag.hpp b/boost-1.81.0/boost/mpl/integral_c_tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/integral_c_tag.hpp rename to boost-1.81.0/boost/mpl/integral_c_tag.hpp diff --git a/boost-1.80.0/boost/mpl/is_placeholder.hpp b/boost-1.81.0/boost/mpl/is_placeholder.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/is_placeholder.hpp rename to boost-1.81.0/boost/mpl/is_placeholder.hpp diff --git a/boost-1.80.0/boost/mpl/is_sequence.hpp b/boost-1.81.0/boost/mpl/is_sequence.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/is_sequence.hpp rename to boost-1.81.0/boost/mpl/is_sequence.hpp diff --git a/boost-1.80.0/boost/mpl/iter_fold.hpp b/boost-1.81.0/boost/mpl/iter_fold.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/iter_fold.hpp rename to boost-1.81.0/boost/mpl/iter_fold.hpp diff --git a/boost-1.80.0/boost/mpl/iter_fold_if.hpp b/boost-1.81.0/boost/mpl/iter_fold_if.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/iter_fold_if.hpp rename to boost-1.81.0/boost/mpl/iter_fold_if.hpp diff --git a/boost-1.80.0/boost/mpl/iterator_category.hpp b/boost-1.81.0/boost/mpl/iterator_category.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/iterator_category.hpp rename to boost-1.81.0/boost/mpl/iterator_category.hpp diff --git a/boost-1.80.0/boost/mpl/iterator_range.hpp b/boost-1.81.0/boost/mpl/iterator_range.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/iterator_range.hpp rename to boost-1.81.0/boost/mpl/iterator_range.hpp diff --git a/boost-1.80.0/boost/mpl/iterator_tags.hpp b/boost-1.81.0/boost/mpl/iterator_tags.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/iterator_tags.hpp rename to boost-1.81.0/boost/mpl/iterator_tags.hpp diff --git a/boost-1.80.0/boost/mpl/joint_view.hpp b/boost-1.81.0/boost/mpl/joint_view.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/joint_view.hpp rename to boost-1.81.0/boost/mpl/joint_view.hpp diff --git a/boost-1.80.0/boost/mpl/key_type.hpp b/boost-1.81.0/boost/mpl/key_type.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/key_type.hpp rename to boost-1.81.0/boost/mpl/key_type.hpp diff --git a/boost-1.80.0/boost/mpl/key_type_fwd.hpp b/boost-1.81.0/boost/mpl/key_type_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/key_type_fwd.hpp rename to boost-1.81.0/boost/mpl/key_type_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/lambda.hpp b/boost-1.81.0/boost/mpl/lambda.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/lambda.hpp rename to boost-1.81.0/boost/mpl/lambda.hpp diff --git a/boost-1.80.0/boost/mpl/lambda_fwd.hpp b/boost-1.81.0/boost/mpl/lambda_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/lambda_fwd.hpp rename to boost-1.81.0/boost/mpl/lambda_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/less.hpp b/boost-1.81.0/boost/mpl/less.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/less.hpp rename to boost-1.81.0/boost/mpl/less.hpp diff --git a/boost-1.80.0/boost/mpl/less_equal.hpp b/boost-1.81.0/boost/mpl/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/less_equal.hpp rename to boost-1.81.0/boost/mpl/less_equal.hpp diff --git a/boost-1.80.0/boost/mpl/limits/arity.hpp b/boost-1.81.0/boost/mpl/limits/arity.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/limits/arity.hpp rename to boost-1.81.0/boost/mpl/limits/arity.hpp diff --git a/boost-1.80.0/boost/mpl/limits/list.hpp b/boost-1.81.0/boost/mpl/limits/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/limits/list.hpp rename to boost-1.81.0/boost/mpl/limits/list.hpp diff --git a/boost-1.80.0/boost/mpl/limits/map.hpp b/boost-1.81.0/boost/mpl/limits/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/limits/map.hpp rename to boost-1.81.0/boost/mpl/limits/map.hpp diff --git a/boost-1.80.0/boost/mpl/limits/set.hpp b/boost-1.81.0/boost/mpl/limits/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/limits/set.hpp rename to boost-1.81.0/boost/mpl/limits/set.hpp diff --git a/boost-1.80.0/boost/mpl/limits/string.hpp b/boost-1.81.0/boost/mpl/limits/string.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/limits/string.hpp rename to boost-1.81.0/boost/mpl/limits/string.hpp diff --git a/boost-1.80.0/boost/mpl/limits/unrolling.hpp b/boost-1.81.0/boost/mpl/limits/unrolling.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/limits/unrolling.hpp rename to boost-1.81.0/boost/mpl/limits/unrolling.hpp diff --git a/boost-1.80.0/boost/mpl/limits/vector.hpp b/boost-1.81.0/boost/mpl/limits/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/limits/vector.hpp rename to boost-1.81.0/boost/mpl/limits/vector.hpp diff --git a/boost-1.80.0/boost/mpl/list.hpp b/boost-1.81.0/boost/mpl/list.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list.hpp rename to boost-1.81.0/boost/mpl/list.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/O1_size.hpp b/boost-1.81.0/boost/mpl/list/aux_/O1_size.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/O1_size.hpp rename to boost-1.81.0/boost/mpl/list/aux_/O1_size.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/begin_end.hpp b/boost-1.81.0/boost/mpl/list/aux_/begin_end.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/begin_end.hpp rename to boost-1.81.0/boost/mpl/list/aux_/begin_end.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/clear.hpp b/boost-1.81.0/boost/mpl/list/aux_/clear.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/clear.hpp rename to boost-1.81.0/boost/mpl/list/aux_/clear.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/empty.hpp b/boost-1.81.0/boost/mpl/list/aux_/empty.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/empty.hpp rename to boost-1.81.0/boost/mpl/list/aux_/empty.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/front.hpp b/boost-1.81.0/boost/mpl/list/aux_/front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/front.hpp rename to boost-1.81.0/boost/mpl/list/aux_/front.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/include_preprocessed.hpp b/boost-1.81.0/boost/mpl/list/aux_/include_preprocessed.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/include_preprocessed.hpp rename to boost-1.81.0/boost/mpl/list/aux_/include_preprocessed.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/item.hpp b/boost-1.81.0/boost/mpl/list/aux_/item.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/item.hpp rename to boost-1.81.0/boost/mpl/list/aux_/item.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/iterator.hpp b/boost-1.81.0/boost/mpl/list/aux_/iterator.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/iterator.hpp rename to boost-1.81.0/boost/mpl/list/aux_/iterator.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/numbered.hpp b/boost-1.81.0/boost/mpl/list/aux_/numbered.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/numbered.hpp rename to boost-1.81.0/boost/mpl/list/aux_/numbered.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/numbered_c.hpp b/boost-1.81.0/boost/mpl/list/aux_/numbered_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/numbered_c.hpp rename to boost-1.81.0/boost/mpl/list/aux_/numbered_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/pop_front.hpp b/boost-1.81.0/boost/mpl/list/aux_/pop_front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/pop_front.hpp rename to boost-1.81.0/boost/mpl/list/aux_/pop_front.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list10.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list10_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list20.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list20_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list30.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list30.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list30.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list30_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list40.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list40.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list40.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list40_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list50.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list50.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list50.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp b/boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp rename to boost-1.81.0/boost/mpl/list/aux_/preprocessed/plain/list50_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/push_back.hpp b/boost-1.81.0/boost/mpl/list/aux_/push_back.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/push_back.hpp rename to boost-1.81.0/boost/mpl/list/aux_/push_back.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/push_front.hpp b/boost-1.81.0/boost/mpl/list/aux_/push_front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/push_front.hpp rename to boost-1.81.0/boost/mpl/list/aux_/push_front.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/size.hpp b/boost-1.81.0/boost/mpl/list/aux_/size.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/size.hpp rename to boost-1.81.0/boost/mpl/list/aux_/size.hpp diff --git a/boost-1.80.0/boost/mpl/list/aux_/tag.hpp b/boost-1.81.0/boost/mpl/list/aux_/tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/aux_/tag.hpp rename to boost-1.81.0/boost/mpl/list/aux_/tag.hpp diff --git a/boost-1.80.0/boost/mpl/list/list0.hpp b/boost-1.81.0/boost/mpl/list/list0.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list0.hpp rename to boost-1.81.0/boost/mpl/list/list0.hpp diff --git a/boost-1.80.0/boost/mpl/list/list0_c.hpp b/boost-1.81.0/boost/mpl/list/list0_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list0_c.hpp rename to boost-1.81.0/boost/mpl/list/list0_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/list10.hpp b/boost-1.81.0/boost/mpl/list/list10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list10.hpp rename to boost-1.81.0/boost/mpl/list/list10.hpp diff --git a/boost-1.80.0/boost/mpl/list/list10_c.hpp b/boost-1.81.0/boost/mpl/list/list10_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list10_c.hpp rename to boost-1.81.0/boost/mpl/list/list10_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/list20.hpp b/boost-1.81.0/boost/mpl/list/list20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list20.hpp rename to boost-1.81.0/boost/mpl/list/list20.hpp diff --git a/boost-1.80.0/boost/mpl/list/list20_c.hpp b/boost-1.81.0/boost/mpl/list/list20_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list20_c.hpp rename to boost-1.81.0/boost/mpl/list/list20_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/list30.hpp b/boost-1.81.0/boost/mpl/list/list30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list30.hpp rename to boost-1.81.0/boost/mpl/list/list30.hpp diff --git a/boost-1.80.0/boost/mpl/list/list30_c.hpp b/boost-1.81.0/boost/mpl/list/list30_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list30_c.hpp rename to boost-1.81.0/boost/mpl/list/list30_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/list40.hpp b/boost-1.81.0/boost/mpl/list/list40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list40.hpp rename to boost-1.81.0/boost/mpl/list/list40.hpp diff --git a/boost-1.80.0/boost/mpl/list/list40_c.hpp b/boost-1.81.0/boost/mpl/list/list40_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list40_c.hpp rename to boost-1.81.0/boost/mpl/list/list40_c.hpp diff --git a/boost-1.80.0/boost/mpl/list/list50.hpp b/boost-1.81.0/boost/mpl/list/list50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list50.hpp rename to boost-1.81.0/boost/mpl/list/list50.hpp diff --git a/boost-1.80.0/boost/mpl/list/list50_c.hpp b/boost-1.81.0/boost/mpl/list/list50_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list/list50_c.hpp rename to boost-1.81.0/boost/mpl/list/list50_c.hpp diff --git a/boost-1.80.0/boost/mpl/list_c.hpp b/boost-1.81.0/boost/mpl/list_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/list_c.hpp rename to boost-1.81.0/boost/mpl/list_c.hpp diff --git a/boost-1.80.0/boost/mpl/logical.hpp b/boost-1.81.0/boost/mpl/logical.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/logical.hpp rename to boost-1.81.0/boost/mpl/logical.hpp diff --git a/boost-1.80.0/boost/mpl/long.hpp b/boost-1.81.0/boost/mpl/long.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/long.hpp rename to boost-1.81.0/boost/mpl/long.hpp diff --git a/boost-1.80.0/boost/mpl/long_fwd.hpp b/boost-1.81.0/boost/mpl/long_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/long_fwd.hpp rename to boost-1.81.0/boost/mpl/long_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/lower_bound.hpp b/boost-1.81.0/boost/mpl/lower_bound.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/lower_bound.hpp rename to boost-1.81.0/boost/mpl/lower_bound.hpp diff --git a/boost-1.80.0/boost/mpl/map.hpp b/boost-1.81.0/boost/mpl/map.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map.hpp rename to boost-1.81.0/boost/mpl/map.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/at_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/at_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/at_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/at_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/begin_end_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/begin_end_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/begin_end_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/begin_end_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/clear_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/clear_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/clear_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/clear_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/contains_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/contains_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/contains_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/contains_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/empty_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/empty_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/empty_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/empty_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/erase_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/erase_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/erase_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/erase_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/erase_key_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/erase_key_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/erase_key_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/erase_key_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/has_key_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/has_key_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/has_key_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/has_key_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/include_preprocessed.hpp b/boost-1.81.0/boost/mpl/map/aux_/include_preprocessed.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/include_preprocessed.hpp rename to boost-1.81.0/boost/mpl/map/aux_/include_preprocessed.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/insert_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/insert_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/insert_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/insert_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/insert_range_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/insert_range_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/insert_range_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/insert_range_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/item.hpp b/boost-1.81.0/boost/mpl/map/aux_/item.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/item.hpp rename to boost-1.81.0/boost/mpl/map/aux_/item.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/iterator.hpp b/boost-1.81.0/boost/mpl/map/aux_/iterator.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/iterator.hpp rename to boost-1.81.0/boost/mpl/map/aux_/iterator.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/key_type_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/key_type_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/key_type_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/key_type_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/map0.hpp b/boost-1.81.0/boost/mpl/map/aux_/map0.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/map0.hpp rename to boost-1.81.0/boost/mpl/map/aux_/map0.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/numbered.hpp b/boost-1.81.0/boost/mpl/map/aux_/numbered.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/numbered.hpp rename to boost-1.81.0/boost/mpl/map/aux_/numbered.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map10.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map20.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map30.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map40.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/no_ctps/map50.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map10.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map10.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map10.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map20.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map20.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map20.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map30.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map30.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map30.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map40.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map40.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map40.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map50.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/plain/map50.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/plain/map50.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map10.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map20.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map30.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map40.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp b/boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp rename to boost-1.81.0/boost/mpl/map/aux_/preprocessed/typeof_based/map50.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/size_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/size_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/size_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/size_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/tag.hpp b/boost-1.81.0/boost/mpl/map/aux_/tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/tag.hpp rename to boost-1.81.0/boost/mpl/map/aux_/tag.hpp diff --git a/boost-1.80.0/boost/mpl/map/aux_/value_type_impl.hpp b/boost-1.81.0/boost/mpl/map/aux_/value_type_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/aux_/value_type_impl.hpp rename to boost-1.81.0/boost/mpl/map/aux_/value_type_impl.hpp diff --git a/boost-1.80.0/boost/mpl/map/map0.hpp b/boost-1.81.0/boost/mpl/map/map0.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/map0.hpp rename to boost-1.81.0/boost/mpl/map/map0.hpp diff --git a/boost-1.80.0/boost/mpl/map/map10.hpp b/boost-1.81.0/boost/mpl/map/map10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/map10.hpp rename to boost-1.81.0/boost/mpl/map/map10.hpp diff --git a/boost-1.80.0/boost/mpl/map/map20.hpp b/boost-1.81.0/boost/mpl/map/map20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/map20.hpp rename to boost-1.81.0/boost/mpl/map/map20.hpp diff --git a/boost-1.80.0/boost/mpl/map/map30.hpp b/boost-1.81.0/boost/mpl/map/map30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/map30.hpp rename to boost-1.81.0/boost/mpl/map/map30.hpp diff --git a/boost-1.80.0/boost/mpl/map/map40.hpp b/boost-1.81.0/boost/mpl/map/map40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/map40.hpp rename to boost-1.81.0/boost/mpl/map/map40.hpp diff --git a/boost-1.80.0/boost/mpl/map/map50.hpp b/boost-1.81.0/boost/mpl/map/map50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/map/map50.hpp rename to boost-1.81.0/boost/mpl/map/map50.hpp diff --git a/boost-1.80.0/boost/mpl/math/fixed_c.hpp b/boost-1.81.0/boost/mpl/math/fixed_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/math/fixed_c.hpp rename to boost-1.81.0/boost/mpl/math/fixed_c.hpp diff --git a/boost-1.80.0/boost/mpl/math/is_even.hpp b/boost-1.81.0/boost/mpl/math/is_even.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/math/is_even.hpp rename to boost-1.81.0/boost/mpl/math/is_even.hpp diff --git a/boost-1.80.0/boost/mpl/math/rational_c.hpp b/boost-1.81.0/boost/mpl/math/rational_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/math/rational_c.hpp rename to boost-1.81.0/boost/mpl/math/rational_c.hpp diff --git a/boost-1.80.0/boost/mpl/max.hpp b/boost-1.81.0/boost/mpl/max.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/max.hpp rename to boost-1.81.0/boost/mpl/max.hpp diff --git a/boost-1.80.0/boost/mpl/max_element.hpp b/boost-1.81.0/boost/mpl/max_element.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/max_element.hpp rename to boost-1.81.0/boost/mpl/max_element.hpp diff --git a/boost-1.80.0/boost/mpl/min.hpp b/boost-1.81.0/boost/mpl/min.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/min.hpp rename to boost-1.81.0/boost/mpl/min.hpp diff --git a/boost-1.80.0/boost/mpl/min_element.hpp b/boost-1.81.0/boost/mpl/min_element.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/min_element.hpp rename to boost-1.81.0/boost/mpl/min_element.hpp diff --git a/boost-1.80.0/boost/mpl/min_max.hpp b/boost-1.81.0/boost/mpl/min_max.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/min_max.hpp rename to boost-1.81.0/boost/mpl/min_max.hpp diff --git a/boost-1.80.0/boost/mpl/minus.hpp b/boost-1.81.0/boost/mpl/minus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/minus.hpp rename to boost-1.81.0/boost/mpl/minus.hpp diff --git a/boost-1.80.0/boost/mpl/modulus.hpp b/boost-1.81.0/boost/mpl/modulus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/modulus.hpp rename to boost-1.81.0/boost/mpl/modulus.hpp diff --git a/boost-1.80.0/boost/mpl/multiplies.hpp b/boost-1.81.0/boost/mpl/multiplies.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/multiplies.hpp rename to boost-1.81.0/boost/mpl/multiplies.hpp diff --git a/boost-1.80.0/boost/mpl/multiset/aux_/count_impl.hpp b/boost-1.81.0/boost/mpl/multiset/aux_/count_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/multiset/aux_/count_impl.hpp rename to boost-1.81.0/boost/mpl/multiset/aux_/count_impl.hpp diff --git a/boost-1.80.0/boost/mpl/multiset/aux_/insert_impl.hpp b/boost-1.81.0/boost/mpl/multiset/aux_/insert_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/multiset/aux_/insert_impl.hpp rename to boost-1.81.0/boost/mpl/multiset/aux_/insert_impl.hpp diff --git a/boost-1.80.0/boost/mpl/multiset/aux_/item.hpp b/boost-1.81.0/boost/mpl/multiset/aux_/item.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/multiset/aux_/item.hpp rename to boost-1.81.0/boost/mpl/multiset/aux_/item.hpp diff --git a/boost-1.80.0/boost/mpl/multiset/aux_/multiset0.hpp b/boost-1.81.0/boost/mpl/multiset/aux_/multiset0.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/multiset/aux_/multiset0.hpp rename to boost-1.81.0/boost/mpl/multiset/aux_/multiset0.hpp diff --git a/boost-1.80.0/boost/mpl/multiset/aux_/tag.hpp b/boost-1.81.0/boost/mpl/multiset/aux_/tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/multiset/aux_/tag.hpp rename to boost-1.81.0/boost/mpl/multiset/aux_/tag.hpp diff --git a/boost-1.80.0/boost/mpl/multiset/multiset0.hpp b/boost-1.81.0/boost/mpl/multiset/multiset0.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/multiset/multiset0.hpp rename to boost-1.81.0/boost/mpl/multiset/multiset0.hpp diff --git a/boost-1.80.0/boost/mpl/negate.hpp b/boost-1.81.0/boost/mpl/negate.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/negate.hpp rename to boost-1.81.0/boost/mpl/negate.hpp diff --git a/boost-1.80.0/boost/mpl/next.hpp b/boost-1.81.0/boost/mpl/next.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/next.hpp rename to boost-1.81.0/boost/mpl/next.hpp diff --git a/boost-1.80.0/boost/mpl/next_prior.hpp b/boost-1.81.0/boost/mpl/next_prior.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/next_prior.hpp rename to boost-1.81.0/boost/mpl/next_prior.hpp diff --git a/boost-1.80.0/boost/mpl/not.hpp b/boost-1.81.0/boost/mpl/not.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/not.hpp rename to boost-1.81.0/boost/mpl/not.hpp diff --git a/boost-1.80.0/boost/mpl/not_equal_to.hpp b/boost-1.81.0/boost/mpl/not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/not_equal_to.hpp rename to boost-1.81.0/boost/mpl/not_equal_to.hpp diff --git a/boost-1.80.0/boost/mpl/numeric_cast.hpp b/boost-1.81.0/boost/mpl/numeric_cast.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/numeric_cast.hpp rename to boost-1.81.0/boost/mpl/numeric_cast.hpp diff --git a/boost-1.80.0/boost/mpl/or.hpp b/boost-1.81.0/boost/mpl/or.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/or.hpp rename to boost-1.81.0/boost/mpl/or.hpp diff --git a/boost-1.80.0/boost/mpl/order.hpp b/boost-1.81.0/boost/mpl/order.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/order.hpp rename to boost-1.81.0/boost/mpl/order.hpp diff --git a/boost-1.80.0/boost/mpl/order_fwd.hpp b/boost-1.81.0/boost/mpl/order_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/order_fwd.hpp rename to boost-1.81.0/boost/mpl/order_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/pair.hpp b/boost-1.81.0/boost/mpl/pair.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/pair.hpp rename to boost-1.81.0/boost/mpl/pair.hpp diff --git a/boost-1.80.0/boost/mpl/pair_view.hpp b/boost-1.81.0/boost/mpl/pair_view.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/pair_view.hpp rename to boost-1.81.0/boost/mpl/pair_view.hpp diff --git a/boost-1.80.0/boost/mpl/partition.hpp b/boost-1.81.0/boost/mpl/partition.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/partition.hpp rename to boost-1.81.0/boost/mpl/partition.hpp diff --git a/boost-1.80.0/boost/mpl/placeholders.hpp b/boost-1.81.0/boost/mpl/placeholders.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/placeholders.hpp rename to boost-1.81.0/boost/mpl/placeholders.hpp diff --git a/boost-1.80.0/boost/mpl/plus.hpp b/boost-1.81.0/boost/mpl/plus.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/plus.hpp rename to boost-1.81.0/boost/mpl/plus.hpp diff --git a/boost-1.80.0/boost/mpl/pop_back.hpp b/boost-1.81.0/boost/mpl/pop_back.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/pop_back.hpp rename to boost-1.81.0/boost/mpl/pop_back.hpp diff --git a/boost-1.80.0/boost/mpl/pop_back_fwd.hpp b/boost-1.81.0/boost/mpl/pop_back_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/pop_back_fwd.hpp rename to boost-1.81.0/boost/mpl/pop_back_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/pop_front.hpp b/boost-1.81.0/boost/mpl/pop_front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/pop_front.hpp rename to boost-1.81.0/boost/mpl/pop_front.hpp diff --git a/boost-1.80.0/boost/mpl/pop_front_fwd.hpp b/boost-1.81.0/boost/mpl/pop_front_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/pop_front_fwd.hpp rename to boost-1.81.0/boost/mpl/pop_front_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/print.hpp b/boost-1.81.0/boost/mpl/print.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/print.hpp rename to boost-1.81.0/boost/mpl/print.hpp diff --git a/boost-1.80.0/boost/mpl/prior.hpp b/boost-1.81.0/boost/mpl/prior.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/prior.hpp rename to boost-1.81.0/boost/mpl/prior.hpp diff --git a/boost-1.80.0/boost/mpl/protect.hpp b/boost-1.81.0/boost/mpl/protect.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/protect.hpp rename to boost-1.81.0/boost/mpl/protect.hpp diff --git a/boost-1.80.0/boost/mpl/push_back.hpp b/boost-1.81.0/boost/mpl/push_back.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/push_back.hpp rename to boost-1.81.0/boost/mpl/push_back.hpp diff --git a/boost-1.80.0/boost/mpl/push_back_fwd.hpp b/boost-1.81.0/boost/mpl/push_back_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/push_back_fwd.hpp rename to boost-1.81.0/boost/mpl/push_back_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/push_front.hpp b/boost-1.81.0/boost/mpl/push_front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/push_front.hpp rename to boost-1.81.0/boost/mpl/push_front.hpp diff --git a/boost-1.80.0/boost/mpl/push_front_fwd.hpp b/boost-1.81.0/boost/mpl/push_front_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/push_front_fwd.hpp rename to boost-1.81.0/boost/mpl/push_front_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/quote.hpp b/boost-1.81.0/boost/mpl/quote.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/quote.hpp rename to boost-1.81.0/boost/mpl/quote.hpp diff --git a/boost-1.80.0/boost/mpl/range_c.hpp b/boost-1.81.0/boost/mpl/range_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/range_c.hpp rename to boost-1.81.0/boost/mpl/range_c.hpp diff --git a/boost-1.80.0/boost/mpl/remove.hpp b/boost-1.81.0/boost/mpl/remove.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/remove.hpp rename to boost-1.81.0/boost/mpl/remove.hpp diff --git a/boost-1.80.0/boost/mpl/remove_if.hpp b/boost-1.81.0/boost/mpl/remove_if.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/remove_if.hpp rename to boost-1.81.0/boost/mpl/remove_if.hpp diff --git a/boost-1.80.0/boost/mpl/replace.hpp b/boost-1.81.0/boost/mpl/replace.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/replace.hpp rename to boost-1.81.0/boost/mpl/replace.hpp diff --git a/boost-1.80.0/boost/mpl/replace_if.hpp b/boost-1.81.0/boost/mpl/replace_if.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/replace_if.hpp rename to boost-1.81.0/boost/mpl/replace_if.hpp diff --git a/boost-1.80.0/boost/mpl/reverse.hpp b/boost-1.81.0/boost/mpl/reverse.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/reverse.hpp rename to boost-1.81.0/boost/mpl/reverse.hpp diff --git a/boost-1.80.0/boost/mpl/reverse_fold.hpp b/boost-1.81.0/boost/mpl/reverse_fold.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/reverse_fold.hpp rename to boost-1.81.0/boost/mpl/reverse_fold.hpp diff --git a/boost-1.80.0/boost/mpl/reverse_iter_fold.hpp b/boost-1.81.0/boost/mpl/reverse_iter_fold.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/reverse_iter_fold.hpp rename to boost-1.81.0/boost/mpl/reverse_iter_fold.hpp diff --git a/boost-1.80.0/boost/mpl/same_as.hpp b/boost-1.81.0/boost/mpl/same_as.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/same_as.hpp rename to boost-1.81.0/boost/mpl/same_as.hpp diff --git a/boost-1.80.0/boost/mpl/sequence_tag.hpp b/boost-1.81.0/boost/mpl/sequence_tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/sequence_tag.hpp rename to boost-1.81.0/boost/mpl/sequence_tag.hpp diff --git a/boost-1.80.0/boost/mpl/sequence_tag_fwd.hpp b/boost-1.81.0/boost/mpl/sequence_tag_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/sequence_tag_fwd.hpp rename to boost-1.81.0/boost/mpl/sequence_tag_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/set.hpp b/boost-1.81.0/boost/mpl/set.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set.hpp rename to boost-1.81.0/boost/mpl/set.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/at_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/at_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/at_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/at_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/begin_end_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/begin_end_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/begin_end_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/begin_end_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/clear_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/clear_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/clear_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/clear_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/empty_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/empty_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/empty_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/empty_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/erase_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/erase_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/erase_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/erase_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/erase_key_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/erase_key_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/erase_key_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/erase_key_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/has_key_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/has_key_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/has_key_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/has_key_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/include_preprocessed.hpp b/boost-1.81.0/boost/mpl/set/aux_/include_preprocessed.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/include_preprocessed.hpp rename to boost-1.81.0/boost/mpl/set/aux_/include_preprocessed.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/insert_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/insert_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/insert_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/insert_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/insert_range_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/insert_range_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/insert_range_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/insert_range_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/item.hpp b/boost-1.81.0/boost/mpl/set/aux_/item.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/item.hpp rename to boost-1.81.0/boost/mpl/set/aux_/item.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/iterator.hpp b/boost-1.81.0/boost/mpl/set/aux_/iterator.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/iterator.hpp rename to boost-1.81.0/boost/mpl/set/aux_/iterator.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/key_type_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/key_type_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/key_type_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/key_type_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/numbered.hpp b/boost-1.81.0/boost/mpl/set/aux_/numbered.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/numbered.hpp rename to boost-1.81.0/boost/mpl/set/aux_/numbered.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/numbered_c.hpp b/boost-1.81.0/boost/mpl/set/aux_/numbered_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/numbered_c.hpp rename to boost-1.81.0/boost/mpl/set/aux_/numbered_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set10.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set10.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set10.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set10_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set20.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set20.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set20.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set20_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set30.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set30.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set30.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set30_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set40.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set40.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set40.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set40_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set50.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set50.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set50.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp b/boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp rename to boost-1.81.0/boost/mpl/set/aux_/preprocessed/plain/set50_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/set0.hpp b/boost-1.81.0/boost/mpl/set/aux_/set0.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/set0.hpp rename to boost-1.81.0/boost/mpl/set/aux_/set0.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/size_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/size_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/size_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/size_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/tag.hpp b/boost-1.81.0/boost/mpl/set/aux_/tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/tag.hpp rename to boost-1.81.0/boost/mpl/set/aux_/tag.hpp diff --git a/boost-1.80.0/boost/mpl/set/aux_/value_type_impl.hpp b/boost-1.81.0/boost/mpl/set/aux_/value_type_impl.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/aux_/value_type_impl.hpp rename to boost-1.81.0/boost/mpl/set/aux_/value_type_impl.hpp diff --git a/boost-1.80.0/boost/mpl/set/set0.hpp b/boost-1.81.0/boost/mpl/set/set0.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set0.hpp rename to boost-1.81.0/boost/mpl/set/set0.hpp diff --git a/boost-1.80.0/boost/mpl/set/set0_c.hpp b/boost-1.81.0/boost/mpl/set/set0_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set0_c.hpp rename to boost-1.81.0/boost/mpl/set/set0_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/set10.hpp b/boost-1.81.0/boost/mpl/set/set10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set10.hpp rename to boost-1.81.0/boost/mpl/set/set10.hpp diff --git a/boost-1.80.0/boost/mpl/set/set10_c.hpp b/boost-1.81.0/boost/mpl/set/set10_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set10_c.hpp rename to boost-1.81.0/boost/mpl/set/set10_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/set20.hpp b/boost-1.81.0/boost/mpl/set/set20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set20.hpp rename to boost-1.81.0/boost/mpl/set/set20.hpp diff --git a/boost-1.80.0/boost/mpl/set/set20_c.hpp b/boost-1.81.0/boost/mpl/set/set20_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set20_c.hpp rename to boost-1.81.0/boost/mpl/set/set20_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/set30.hpp b/boost-1.81.0/boost/mpl/set/set30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set30.hpp rename to boost-1.81.0/boost/mpl/set/set30.hpp diff --git a/boost-1.80.0/boost/mpl/set/set30_c.hpp b/boost-1.81.0/boost/mpl/set/set30_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set30_c.hpp rename to boost-1.81.0/boost/mpl/set/set30_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/set40.hpp b/boost-1.81.0/boost/mpl/set/set40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set40.hpp rename to boost-1.81.0/boost/mpl/set/set40.hpp diff --git a/boost-1.80.0/boost/mpl/set/set40_c.hpp b/boost-1.81.0/boost/mpl/set/set40_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set40_c.hpp rename to boost-1.81.0/boost/mpl/set/set40_c.hpp diff --git a/boost-1.80.0/boost/mpl/set/set50.hpp b/boost-1.81.0/boost/mpl/set/set50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set50.hpp rename to boost-1.81.0/boost/mpl/set/set50.hpp diff --git a/boost-1.80.0/boost/mpl/set/set50_c.hpp b/boost-1.81.0/boost/mpl/set/set50_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set/set50_c.hpp rename to boost-1.81.0/boost/mpl/set/set50_c.hpp diff --git a/boost-1.80.0/boost/mpl/set_c.hpp b/boost-1.81.0/boost/mpl/set_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/set_c.hpp rename to boost-1.81.0/boost/mpl/set_c.hpp diff --git a/boost-1.80.0/boost/mpl/shift_left.hpp b/boost-1.81.0/boost/mpl/shift_left.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/shift_left.hpp rename to boost-1.81.0/boost/mpl/shift_left.hpp diff --git a/boost-1.80.0/boost/mpl/shift_right.hpp b/boost-1.81.0/boost/mpl/shift_right.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/shift_right.hpp rename to boost-1.81.0/boost/mpl/shift_right.hpp diff --git a/boost-1.80.0/boost/mpl/single_view.hpp b/boost-1.81.0/boost/mpl/single_view.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/single_view.hpp rename to boost-1.81.0/boost/mpl/single_view.hpp diff --git a/boost-1.80.0/boost/mpl/size.hpp b/boost-1.81.0/boost/mpl/size.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/size.hpp rename to boost-1.81.0/boost/mpl/size.hpp diff --git a/boost-1.80.0/boost/mpl/size_fwd.hpp b/boost-1.81.0/boost/mpl/size_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/size_fwd.hpp rename to boost-1.81.0/boost/mpl/size_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/size_t.hpp b/boost-1.81.0/boost/mpl/size_t.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/size_t.hpp rename to boost-1.81.0/boost/mpl/size_t.hpp diff --git a/boost-1.80.0/boost/mpl/size_t_fwd.hpp b/boost-1.81.0/boost/mpl/size_t_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/size_t_fwd.hpp rename to boost-1.81.0/boost/mpl/size_t_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/sizeof.hpp b/boost-1.81.0/boost/mpl/sizeof.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/sizeof.hpp rename to boost-1.81.0/boost/mpl/sizeof.hpp diff --git a/boost-1.80.0/boost/mpl/sort.hpp b/boost-1.81.0/boost/mpl/sort.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/sort.hpp rename to boost-1.81.0/boost/mpl/sort.hpp diff --git a/boost-1.80.0/boost/mpl/stable_partition.hpp b/boost-1.81.0/boost/mpl/stable_partition.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/stable_partition.hpp rename to boost-1.81.0/boost/mpl/stable_partition.hpp diff --git a/boost-1.80.0/boost/mpl/string.hpp b/boost-1.81.0/boost/mpl/string.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/string.hpp rename to boost-1.81.0/boost/mpl/string.hpp diff --git a/boost-1.80.0/boost/mpl/switch.hpp b/boost-1.81.0/boost/mpl/switch.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/switch.hpp rename to boost-1.81.0/boost/mpl/switch.hpp diff --git a/boost-1.80.0/boost/mpl/tag.hpp b/boost-1.81.0/boost/mpl/tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/tag.hpp rename to boost-1.81.0/boost/mpl/tag.hpp diff --git a/boost-1.80.0/boost/mpl/times.hpp b/boost-1.81.0/boost/mpl/times.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/times.hpp rename to boost-1.81.0/boost/mpl/times.hpp diff --git a/boost-1.80.0/boost/mpl/transform.hpp b/boost-1.81.0/boost/mpl/transform.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/transform.hpp rename to boost-1.81.0/boost/mpl/transform.hpp diff --git a/boost-1.80.0/boost/mpl/transform_view.hpp b/boost-1.81.0/boost/mpl/transform_view.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/transform_view.hpp rename to boost-1.81.0/boost/mpl/transform_view.hpp diff --git a/boost-1.80.0/boost/mpl/unique.hpp b/boost-1.81.0/boost/mpl/unique.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/unique.hpp rename to boost-1.81.0/boost/mpl/unique.hpp diff --git a/boost-1.80.0/boost/mpl/unpack_args.hpp b/boost-1.81.0/boost/mpl/unpack_args.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/unpack_args.hpp rename to boost-1.81.0/boost/mpl/unpack_args.hpp diff --git a/boost-1.80.0/boost/mpl/upper_bound.hpp b/boost-1.81.0/boost/mpl/upper_bound.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/upper_bound.hpp rename to boost-1.81.0/boost/mpl/upper_bound.hpp diff --git a/boost-1.80.0/boost/mpl/value_type.hpp b/boost-1.81.0/boost/mpl/value_type.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/value_type.hpp rename to boost-1.81.0/boost/mpl/value_type.hpp diff --git a/boost-1.80.0/boost/mpl/value_type_fwd.hpp b/boost-1.81.0/boost/mpl/value_type_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/value_type_fwd.hpp rename to boost-1.81.0/boost/mpl/value_type_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/vector.hpp b/boost-1.81.0/boost/mpl/vector.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector.hpp rename to boost-1.81.0/boost/mpl/vector.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/O1_size.hpp b/boost-1.81.0/boost/mpl/vector/aux_/O1_size.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/O1_size.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/O1_size.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/at.hpp b/boost-1.81.0/boost/mpl/vector/aux_/at.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/at.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/at.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/back.hpp b/boost-1.81.0/boost/mpl/vector/aux_/back.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/back.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/back.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/begin_end.hpp b/boost-1.81.0/boost/mpl/vector/aux_/begin_end.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/begin_end.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/begin_end.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/clear.hpp b/boost-1.81.0/boost/mpl/vector/aux_/clear.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/clear.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/clear.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/empty.hpp b/boost-1.81.0/boost/mpl/vector/aux_/empty.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/empty.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/empty.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/front.hpp b/boost-1.81.0/boost/mpl/vector/aux_/front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/front.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/front.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/include_preprocessed.hpp b/boost-1.81.0/boost/mpl/vector/aux_/include_preprocessed.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/include_preprocessed.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/include_preprocessed.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/item.hpp b/boost-1.81.0/boost/mpl/vector/aux_/item.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/item.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/item.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/iterator.hpp b/boost-1.81.0/boost/mpl/vector/aux_/iterator.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/iterator.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/iterator.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/numbered.hpp b/boost-1.81.0/boost/mpl/vector/aux_/numbered.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/numbered.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/numbered.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/numbered_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/numbered_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/numbered_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/numbered_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/pop_back.hpp b/boost-1.81.0/boost/mpl/vector/aux_/pop_back.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/pop_back.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/pop_back.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/pop_front.hpp b/boost-1.81.0/boost/mpl/vector/aux_/pop_front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/pop_front.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/pop_front.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector10_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector20_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector30_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector40_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/no_ctps/vector50_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector10_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector20_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector30.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector30_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector40.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector40_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector50.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/plain/vector50_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector30_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector40_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp b/boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/preprocessed/typeof_based/vector50_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/push_back.hpp b/boost-1.81.0/boost/mpl/vector/aux_/push_back.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/push_back.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/push_back.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/push_front.hpp b/boost-1.81.0/boost/mpl/vector/aux_/push_front.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/push_front.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/push_front.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/size.hpp b/boost-1.81.0/boost/mpl/vector/aux_/size.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/size.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/size.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/tag.hpp b/boost-1.81.0/boost/mpl/vector/aux_/tag.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/tag.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/tag.hpp diff --git a/boost-1.80.0/boost/mpl/vector/aux_/vector0.hpp b/boost-1.81.0/boost/mpl/vector/aux_/vector0.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/aux_/vector0.hpp rename to boost-1.81.0/boost/mpl/vector/aux_/vector0.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector0.hpp b/boost-1.81.0/boost/mpl/vector/vector0.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector0.hpp rename to boost-1.81.0/boost/mpl/vector/vector0.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector0_c.hpp b/boost-1.81.0/boost/mpl/vector/vector0_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector0_c.hpp rename to boost-1.81.0/boost/mpl/vector/vector0_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector10.hpp b/boost-1.81.0/boost/mpl/vector/vector10.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector10.hpp rename to boost-1.81.0/boost/mpl/vector/vector10.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector10_c.hpp b/boost-1.81.0/boost/mpl/vector/vector10_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector10_c.hpp rename to boost-1.81.0/boost/mpl/vector/vector10_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector20.hpp b/boost-1.81.0/boost/mpl/vector/vector20.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector20.hpp rename to boost-1.81.0/boost/mpl/vector/vector20.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector20_c.hpp b/boost-1.81.0/boost/mpl/vector/vector20_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector20_c.hpp rename to boost-1.81.0/boost/mpl/vector/vector20_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector30.hpp b/boost-1.81.0/boost/mpl/vector/vector30.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector30.hpp rename to boost-1.81.0/boost/mpl/vector/vector30.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector30_c.hpp b/boost-1.81.0/boost/mpl/vector/vector30_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector30_c.hpp rename to boost-1.81.0/boost/mpl/vector/vector30_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector40.hpp b/boost-1.81.0/boost/mpl/vector/vector40.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector40.hpp rename to boost-1.81.0/boost/mpl/vector/vector40.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector40_c.hpp b/boost-1.81.0/boost/mpl/vector/vector40_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector40_c.hpp rename to boost-1.81.0/boost/mpl/vector/vector40_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector50.hpp b/boost-1.81.0/boost/mpl/vector/vector50.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector50.hpp rename to boost-1.81.0/boost/mpl/vector/vector50.hpp diff --git a/boost-1.80.0/boost/mpl/vector/vector50_c.hpp b/boost-1.81.0/boost/mpl/vector/vector50_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector/vector50_c.hpp rename to boost-1.81.0/boost/mpl/vector/vector50_c.hpp diff --git a/boost-1.80.0/boost/mpl/vector_c.hpp b/boost-1.81.0/boost/mpl/vector_c.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/vector_c.hpp rename to boost-1.81.0/boost/mpl/vector_c.hpp diff --git a/boost-1.80.0/boost/mpl/void.hpp b/boost-1.81.0/boost/mpl/void.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/void.hpp rename to boost-1.81.0/boost/mpl/void.hpp diff --git a/boost-1.80.0/boost/mpl/void_fwd.hpp b/boost-1.81.0/boost/mpl/void_fwd.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/void_fwd.hpp rename to boost-1.81.0/boost/mpl/void_fwd.hpp diff --git a/boost-1.80.0/boost/mpl/zip_view.hpp b/boost-1.81.0/boost/mpl/zip_view.hpp similarity index 100% rename from boost-1.80.0/boost/mpl/zip_view.hpp rename to boost-1.81.0/boost/mpl/zip_view.hpp diff --git a/boost-1.80.0/boost/predef/architecture.h b/boost-1.81.0/boost/predef/architecture.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture.h rename to boost-1.81.0/boost/predef/architecture.h diff --git a/boost-1.80.0/boost/predef/architecture/alpha.h b/boost-1.81.0/boost/predef/architecture/alpha.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/alpha.h rename to boost-1.81.0/boost/predef/architecture/alpha.h diff --git a/boost-1.80.0/boost/predef/architecture/arm.h b/boost-1.81.0/boost/predef/architecture/arm.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/arm.h rename to boost-1.81.0/boost/predef/architecture/arm.h diff --git a/boost-1.80.0/boost/predef/architecture/blackfin.h b/boost-1.81.0/boost/predef/architecture/blackfin.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/blackfin.h rename to boost-1.81.0/boost/predef/architecture/blackfin.h diff --git a/boost-1.80.0/boost/predef/architecture/convex.h b/boost-1.81.0/boost/predef/architecture/convex.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/convex.h rename to boost-1.81.0/boost/predef/architecture/convex.h diff --git a/boost-1.80.0/boost/predef/architecture/e2k.h b/boost-1.81.0/boost/predef/architecture/e2k.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/e2k.h rename to boost-1.81.0/boost/predef/architecture/e2k.h diff --git a/boost-1.80.0/boost/predef/architecture/ia64.h b/boost-1.81.0/boost/predef/architecture/ia64.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/ia64.h rename to boost-1.81.0/boost/predef/architecture/ia64.h diff --git a/boost-1.80.0/boost/predef/architecture/loongarch.h b/boost-1.81.0/boost/predef/architecture/loongarch.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/loongarch.h rename to boost-1.81.0/boost/predef/architecture/loongarch.h diff --git a/boost-1.80.0/boost/predef/architecture/m68k.h b/boost-1.81.0/boost/predef/architecture/m68k.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/m68k.h rename to boost-1.81.0/boost/predef/architecture/m68k.h diff --git a/boost-1.80.0/boost/predef/architecture/mips.h b/boost-1.81.0/boost/predef/architecture/mips.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/mips.h rename to boost-1.81.0/boost/predef/architecture/mips.h diff --git a/boost-1.80.0/boost/predef/architecture/parisc.h b/boost-1.81.0/boost/predef/architecture/parisc.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/parisc.h rename to boost-1.81.0/boost/predef/architecture/parisc.h diff --git a/boost-1.80.0/boost/predef/architecture/ppc.h b/boost-1.81.0/boost/predef/architecture/ppc.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/ppc.h rename to boost-1.81.0/boost/predef/architecture/ppc.h diff --git a/boost-1.80.0/boost/predef/architecture/ptx.h b/boost-1.81.0/boost/predef/architecture/ptx.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/ptx.h rename to boost-1.81.0/boost/predef/architecture/ptx.h diff --git a/boost-1.80.0/boost/predef/architecture/pyramid.h b/boost-1.81.0/boost/predef/architecture/pyramid.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/pyramid.h rename to boost-1.81.0/boost/predef/architecture/pyramid.h diff --git a/boost-1.80.0/boost/predef/architecture/riscv.h b/boost-1.81.0/boost/predef/architecture/riscv.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/riscv.h rename to boost-1.81.0/boost/predef/architecture/riscv.h diff --git a/boost-1.80.0/boost/predef/architecture/rs6k.h b/boost-1.81.0/boost/predef/architecture/rs6k.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/rs6k.h rename to boost-1.81.0/boost/predef/architecture/rs6k.h diff --git a/boost-1.80.0/boost/predef/architecture/sparc.h b/boost-1.81.0/boost/predef/architecture/sparc.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/sparc.h rename to boost-1.81.0/boost/predef/architecture/sparc.h diff --git a/boost-1.80.0/boost/predef/architecture/superh.h b/boost-1.81.0/boost/predef/architecture/superh.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/superh.h rename to boost-1.81.0/boost/predef/architecture/superh.h diff --git a/boost-1.80.0/boost/predef/architecture/sys370.h b/boost-1.81.0/boost/predef/architecture/sys370.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/sys370.h rename to boost-1.81.0/boost/predef/architecture/sys370.h diff --git a/boost-1.80.0/boost/predef/architecture/sys390.h b/boost-1.81.0/boost/predef/architecture/sys390.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/sys390.h rename to boost-1.81.0/boost/predef/architecture/sys390.h diff --git a/boost-1.80.0/boost/predef/architecture/x86.h b/boost-1.81.0/boost/predef/architecture/x86.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/x86.h rename to boost-1.81.0/boost/predef/architecture/x86.h diff --git a/boost-1.80.0/boost/predef/architecture/x86/32.h b/boost-1.81.0/boost/predef/architecture/x86/32.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/x86/32.h rename to boost-1.81.0/boost/predef/architecture/x86/32.h diff --git a/boost-1.80.0/boost/predef/architecture/x86/64.h b/boost-1.81.0/boost/predef/architecture/x86/64.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/x86/64.h rename to boost-1.81.0/boost/predef/architecture/x86/64.h diff --git a/boost-1.80.0/boost/predef/architecture/z.h b/boost-1.81.0/boost/predef/architecture/z.h similarity index 100% rename from boost-1.80.0/boost/predef/architecture/z.h rename to boost-1.81.0/boost/predef/architecture/z.h diff --git a/boost-1.80.0/boost/predef/compiler.h b/boost-1.81.0/boost/predef/compiler.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler.h rename to boost-1.81.0/boost/predef/compiler.h diff --git a/boost-1.80.0/boost/predef/compiler/borland.h b/boost-1.81.0/boost/predef/compiler/borland.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/borland.h rename to boost-1.81.0/boost/predef/compiler/borland.h diff --git a/boost-1.80.0/boost/predef/compiler/clang.h b/boost-1.81.0/boost/predef/compiler/clang.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/clang.h rename to boost-1.81.0/boost/predef/compiler/clang.h diff --git a/boost-1.80.0/boost/predef/compiler/comeau.h b/boost-1.81.0/boost/predef/compiler/comeau.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/comeau.h rename to boost-1.81.0/boost/predef/compiler/comeau.h diff --git a/boost-1.80.0/boost/predef/compiler/compaq.h b/boost-1.81.0/boost/predef/compiler/compaq.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/compaq.h rename to boost-1.81.0/boost/predef/compiler/compaq.h diff --git a/boost-1.80.0/boost/predef/compiler/diab.h b/boost-1.81.0/boost/predef/compiler/diab.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/diab.h rename to boost-1.81.0/boost/predef/compiler/diab.h diff --git a/boost-1.80.0/boost/predef/compiler/digitalmars.h b/boost-1.81.0/boost/predef/compiler/digitalmars.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/digitalmars.h rename to boost-1.81.0/boost/predef/compiler/digitalmars.h diff --git a/boost-1.80.0/boost/predef/compiler/dignus.h b/boost-1.81.0/boost/predef/compiler/dignus.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/dignus.h rename to boost-1.81.0/boost/predef/compiler/dignus.h diff --git a/boost-1.80.0/boost/predef/compiler/edg.h b/boost-1.81.0/boost/predef/compiler/edg.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/edg.h rename to boost-1.81.0/boost/predef/compiler/edg.h diff --git a/boost-1.80.0/boost/predef/compiler/ekopath.h b/boost-1.81.0/boost/predef/compiler/ekopath.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/ekopath.h rename to boost-1.81.0/boost/predef/compiler/ekopath.h diff --git a/boost-1.80.0/boost/predef/compiler/gcc.h b/boost-1.81.0/boost/predef/compiler/gcc.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/gcc.h rename to boost-1.81.0/boost/predef/compiler/gcc.h diff --git a/boost-1.80.0/boost/predef/compiler/gcc_xml.h b/boost-1.81.0/boost/predef/compiler/gcc_xml.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/gcc_xml.h rename to boost-1.81.0/boost/predef/compiler/gcc_xml.h diff --git a/boost-1.80.0/boost/predef/compiler/greenhills.h b/boost-1.81.0/boost/predef/compiler/greenhills.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/greenhills.h rename to boost-1.81.0/boost/predef/compiler/greenhills.h diff --git a/boost-1.80.0/boost/predef/compiler/hp_acc.h b/boost-1.81.0/boost/predef/compiler/hp_acc.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/hp_acc.h rename to boost-1.81.0/boost/predef/compiler/hp_acc.h diff --git a/boost-1.80.0/boost/predef/compiler/iar.h b/boost-1.81.0/boost/predef/compiler/iar.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/iar.h rename to boost-1.81.0/boost/predef/compiler/iar.h diff --git a/boost-1.80.0/boost/predef/compiler/ibm.h b/boost-1.81.0/boost/predef/compiler/ibm.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/ibm.h rename to boost-1.81.0/boost/predef/compiler/ibm.h diff --git a/boost-1.80.0/boost/predef/compiler/intel.h b/boost-1.81.0/boost/predef/compiler/intel.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/intel.h rename to boost-1.81.0/boost/predef/compiler/intel.h diff --git a/boost-1.80.0/boost/predef/compiler/kai.h b/boost-1.81.0/boost/predef/compiler/kai.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/kai.h rename to boost-1.81.0/boost/predef/compiler/kai.h diff --git a/boost-1.80.0/boost/predef/compiler/llvm.h b/boost-1.81.0/boost/predef/compiler/llvm.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/llvm.h rename to boost-1.81.0/boost/predef/compiler/llvm.h diff --git a/boost-1.80.0/boost/predef/compiler/metaware.h b/boost-1.81.0/boost/predef/compiler/metaware.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/metaware.h rename to boost-1.81.0/boost/predef/compiler/metaware.h diff --git a/boost-1.80.0/boost/predef/compiler/metrowerks.h b/boost-1.81.0/boost/predef/compiler/metrowerks.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/metrowerks.h rename to boost-1.81.0/boost/predef/compiler/metrowerks.h diff --git a/boost-1.80.0/boost/predef/compiler/microtec.h b/boost-1.81.0/boost/predef/compiler/microtec.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/microtec.h rename to boost-1.81.0/boost/predef/compiler/microtec.h diff --git a/boost-1.80.0/boost/predef/compiler/mpw.h b/boost-1.81.0/boost/predef/compiler/mpw.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/mpw.h rename to boost-1.81.0/boost/predef/compiler/mpw.h diff --git a/boost-1.80.0/boost/predef/compiler/nvcc.h b/boost-1.81.0/boost/predef/compiler/nvcc.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/nvcc.h rename to boost-1.81.0/boost/predef/compiler/nvcc.h diff --git a/boost-1.80.0/boost/predef/compiler/palm.h b/boost-1.81.0/boost/predef/compiler/palm.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/palm.h rename to boost-1.81.0/boost/predef/compiler/palm.h diff --git a/boost-1.80.0/boost/predef/compiler/pgi.h b/boost-1.81.0/boost/predef/compiler/pgi.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/pgi.h rename to boost-1.81.0/boost/predef/compiler/pgi.h diff --git a/boost-1.80.0/boost/predef/compiler/sgi_mipspro.h b/boost-1.81.0/boost/predef/compiler/sgi_mipspro.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/sgi_mipspro.h rename to boost-1.81.0/boost/predef/compiler/sgi_mipspro.h diff --git a/boost-1.80.0/boost/predef/compiler/sunpro.h b/boost-1.81.0/boost/predef/compiler/sunpro.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/sunpro.h rename to boost-1.81.0/boost/predef/compiler/sunpro.h diff --git a/boost-1.80.0/boost/predef/compiler/tendra.h b/boost-1.81.0/boost/predef/compiler/tendra.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/tendra.h rename to boost-1.81.0/boost/predef/compiler/tendra.h diff --git a/boost-1.80.0/boost/predef/compiler/visualc.h b/boost-1.81.0/boost/predef/compiler/visualc.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/visualc.h rename to boost-1.81.0/boost/predef/compiler/visualc.h diff --git a/boost-1.80.0/boost/predef/compiler/watcom.h b/boost-1.81.0/boost/predef/compiler/watcom.h similarity index 100% rename from boost-1.80.0/boost/predef/compiler/watcom.h rename to boost-1.81.0/boost/predef/compiler/watcom.h diff --git a/boost-1.80.0/boost/predef/detail/_cassert.h b/boost-1.81.0/boost/predef/detail/_cassert.h similarity index 100% rename from boost-1.80.0/boost/predef/detail/_cassert.h rename to boost-1.81.0/boost/predef/detail/_cassert.h diff --git a/boost-1.80.0/boost/predef/detail/_exception.h b/boost-1.81.0/boost/predef/detail/_exception.h similarity index 100% rename from boost-1.80.0/boost/predef/detail/_exception.h rename to boost-1.81.0/boost/predef/detail/_exception.h diff --git a/boost-1.80.0/boost/predef/detail/comp_detected.h b/boost-1.81.0/boost/predef/detail/comp_detected.h similarity index 100% rename from boost-1.80.0/boost/predef/detail/comp_detected.h rename to boost-1.81.0/boost/predef/detail/comp_detected.h diff --git a/boost-1.80.0/boost/predef/detail/os_detected.h b/boost-1.81.0/boost/predef/detail/os_detected.h similarity index 100% rename from boost-1.80.0/boost/predef/detail/os_detected.h rename to boost-1.81.0/boost/predef/detail/os_detected.h diff --git a/boost-1.80.0/boost/predef/detail/platform_detected.h b/boost-1.81.0/boost/predef/detail/platform_detected.h similarity index 100% rename from boost-1.80.0/boost/predef/detail/platform_detected.h rename to boost-1.81.0/boost/predef/detail/platform_detected.h diff --git a/boost-1.80.0/boost/predef/detail/test.h b/boost-1.81.0/boost/predef/detail/test.h similarity index 100% rename from boost-1.80.0/boost/predef/detail/test.h rename to boost-1.81.0/boost/predef/detail/test.h diff --git a/boost-1.80.0/boost/predef/detail/test_def.h b/boost-1.81.0/boost/predef/detail/test_def.h similarity index 100% rename from boost-1.80.0/boost/predef/detail/test_def.h rename to boost-1.81.0/boost/predef/detail/test_def.h diff --git a/boost-1.80.0/boost/predef/hardware.h b/boost-1.81.0/boost/predef/hardware.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware.h rename to boost-1.81.0/boost/predef/hardware.h diff --git a/boost-1.80.0/boost/predef/hardware/simd.h b/boost-1.81.0/boost/predef/hardware/simd.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware/simd.h rename to boost-1.81.0/boost/predef/hardware/simd.h diff --git a/boost-1.80.0/boost/predef/hardware/simd/arm.h b/boost-1.81.0/boost/predef/hardware/simd/arm.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware/simd/arm.h rename to boost-1.81.0/boost/predef/hardware/simd/arm.h diff --git a/boost-1.80.0/boost/predef/hardware/simd/arm/versions.h b/boost-1.81.0/boost/predef/hardware/simd/arm/versions.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware/simd/arm/versions.h rename to boost-1.81.0/boost/predef/hardware/simd/arm/versions.h diff --git a/boost-1.80.0/boost/predef/hardware/simd/ppc.h b/boost-1.81.0/boost/predef/hardware/simd/ppc.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware/simd/ppc.h rename to boost-1.81.0/boost/predef/hardware/simd/ppc.h diff --git a/boost-1.80.0/boost/predef/hardware/simd/ppc/versions.h b/boost-1.81.0/boost/predef/hardware/simd/ppc/versions.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware/simd/ppc/versions.h rename to boost-1.81.0/boost/predef/hardware/simd/ppc/versions.h diff --git a/boost-1.80.0/boost/predef/hardware/simd/x86.h b/boost-1.81.0/boost/predef/hardware/simd/x86.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware/simd/x86.h rename to boost-1.81.0/boost/predef/hardware/simd/x86.h diff --git a/boost-1.80.0/boost/predef/hardware/simd/x86/versions.h b/boost-1.81.0/boost/predef/hardware/simd/x86/versions.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware/simd/x86/versions.h rename to boost-1.81.0/boost/predef/hardware/simd/x86/versions.h diff --git a/boost-1.80.0/boost/predef/hardware/simd/x86_amd.h b/boost-1.81.0/boost/predef/hardware/simd/x86_amd.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware/simd/x86_amd.h rename to boost-1.81.0/boost/predef/hardware/simd/x86_amd.h diff --git a/boost-1.80.0/boost/predef/hardware/simd/x86_amd/versions.h b/boost-1.81.0/boost/predef/hardware/simd/x86_amd/versions.h similarity index 100% rename from boost-1.80.0/boost/predef/hardware/simd/x86_amd/versions.h rename to boost-1.81.0/boost/predef/hardware/simd/x86_amd/versions.h diff --git a/boost-1.80.0/boost/predef/language.h b/boost-1.81.0/boost/predef/language.h similarity index 100% rename from boost-1.80.0/boost/predef/language.h rename to boost-1.81.0/boost/predef/language.h diff --git a/boost-1.80.0/boost/predef/language/cuda.h b/boost-1.81.0/boost/predef/language/cuda.h similarity index 100% rename from boost-1.80.0/boost/predef/language/cuda.h rename to boost-1.81.0/boost/predef/language/cuda.h diff --git a/boost-1.80.0/boost/predef/language/objc.h b/boost-1.81.0/boost/predef/language/objc.h similarity index 100% rename from boost-1.80.0/boost/predef/language/objc.h rename to boost-1.81.0/boost/predef/language/objc.h diff --git a/boost-1.80.0/boost/predef/language/stdc.h b/boost-1.81.0/boost/predef/language/stdc.h similarity index 100% rename from boost-1.80.0/boost/predef/language/stdc.h rename to boost-1.81.0/boost/predef/language/stdc.h diff --git a/boost-1.80.0/boost/predef/language/stdcpp.h b/boost-1.81.0/boost/predef/language/stdcpp.h similarity index 100% rename from boost-1.80.0/boost/predef/language/stdcpp.h rename to boost-1.81.0/boost/predef/language/stdcpp.h diff --git a/boost-1.80.0/boost/predef/library.h b/boost-1.81.0/boost/predef/library.h similarity index 100% rename from boost-1.80.0/boost/predef/library.h rename to boost-1.81.0/boost/predef/library.h diff --git a/boost-1.80.0/boost/predef/library/c.h b/boost-1.81.0/boost/predef/library/c.h similarity index 100% rename from boost-1.80.0/boost/predef/library/c.h rename to boost-1.81.0/boost/predef/library/c.h diff --git a/boost-1.80.0/boost/predef/library/c/_prefix.h b/boost-1.81.0/boost/predef/library/c/_prefix.h similarity index 100% rename from boost-1.80.0/boost/predef/library/c/_prefix.h rename to boost-1.81.0/boost/predef/library/c/_prefix.h diff --git a/boost-1.80.0/boost/predef/library/c/cloudabi.h b/boost-1.81.0/boost/predef/library/c/cloudabi.h similarity index 100% rename from boost-1.80.0/boost/predef/library/c/cloudabi.h rename to boost-1.81.0/boost/predef/library/c/cloudabi.h diff --git a/boost-1.80.0/boost/predef/library/c/gnu.h b/boost-1.81.0/boost/predef/library/c/gnu.h similarity index 100% rename from boost-1.80.0/boost/predef/library/c/gnu.h rename to boost-1.81.0/boost/predef/library/c/gnu.h diff --git a/boost-1.80.0/boost/predef/library/c/uc.h b/boost-1.81.0/boost/predef/library/c/uc.h similarity index 100% rename from boost-1.80.0/boost/predef/library/c/uc.h rename to boost-1.81.0/boost/predef/library/c/uc.h diff --git a/boost-1.80.0/boost/predef/library/c/vms.h b/boost-1.81.0/boost/predef/library/c/vms.h similarity index 100% rename from boost-1.80.0/boost/predef/library/c/vms.h rename to boost-1.81.0/boost/predef/library/c/vms.h diff --git a/boost-1.80.0/boost/predef/library/c/zos.h b/boost-1.81.0/boost/predef/library/c/zos.h similarity index 100% rename from boost-1.80.0/boost/predef/library/c/zos.h rename to boost-1.81.0/boost/predef/library/c/zos.h diff --git a/boost-1.80.0/boost/predef/library/std.h b/boost-1.81.0/boost/predef/library/std.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std.h rename to boost-1.81.0/boost/predef/library/std.h diff --git a/boost-1.80.0/boost/predef/library/std/_prefix.h b/boost-1.81.0/boost/predef/library/std/_prefix.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/_prefix.h rename to boost-1.81.0/boost/predef/library/std/_prefix.h diff --git a/boost-1.80.0/boost/predef/library/std/cxx.h b/boost-1.81.0/boost/predef/library/std/cxx.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/cxx.h rename to boost-1.81.0/boost/predef/library/std/cxx.h diff --git a/boost-1.80.0/boost/predef/library/std/dinkumware.h b/boost-1.81.0/boost/predef/library/std/dinkumware.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/dinkumware.h rename to boost-1.81.0/boost/predef/library/std/dinkumware.h diff --git a/boost-1.80.0/boost/predef/library/std/libcomo.h b/boost-1.81.0/boost/predef/library/std/libcomo.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/libcomo.h rename to boost-1.81.0/boost/predef/library/std/libcomo.h diff --git a/boost-1.80.0/boost/predef/library/std/modena.h b/boost-1.81.0/boost/predef/library/std/modena.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/modena.h rename to boost-1.81.0/boost/predef/library/std/modena.h diff --git a/boost-1.80.0/boost/predef/library/std/msl.h b/boost-1.81.0/boost/predef/library/std/msl.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/msl.h rename to boost-1.81.0/boost/predef/library/std/msl.h diff --git a/boost-1.80.0/boost/predef/library/std/roguewave.h b/boost-1.81.0/boost/predef/library/std/roguewave.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/roguewave.h rename to boost-1.81.0/boost/predef/library/std/roguewave.h diff --git a/boost-1.80.0/boost/predef/library/std/sgi.h b/boost-1.81.0/boost/predef/library/std/sgi.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/sgi.h rename to boost-1.81.0/boost/predef/library/std/sgi.h diff --git a/boost-1.80.0/boost/predef/library/std/stdcpp3.h b/boost-1.81.0/boost/predef/library/std/stdcpp3.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/stdcpp3.h rename to boost-1.81.0/boost/predef/library/std/stdcpp3.h diff --git a/boost-1.80.0/boost/predef/library/std/stlport.h b/boost-1.81.0/boost/predef/library/std/stlport.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/stlport.h rename to boost-1.81.0/boost/predef/library/std/stlport.h diff --git a/boost-1.80.0/boost/predef/library/std/vacpp.h b/boost-1.81.0/boost/predef/library/std/vacpp.h similarity index 100% rename from boost-1.80.0/boost/predef/library/std/vacpp.h rename to boost-1.81.0/boost/predef/library/std/vacpp.h diff --git a/boost-1.80.0/boost/predef/make.h b/boost-1.81.0/boost/predef/make.h similarity index 100% rename from boost-1.80.0/boost/predef/make.h rename to boost-1.81.0/boost/predef/make.h diff --git a/boost-1.80.0/boost/predef/os.h b/boost-1.81.0/boost/predef/os.h similarity index 100% rename from boost-1.80.0/boost/predef/os.h rename to boost-1.81.0/boost/predef/os.h diff --git a/boost-1.80.0/boost/predef/os/aix.h b/boost-1.81.0/boost/predef/os/aix.h similarity index 100% rename from boost-1.80.0/boost/predef/os/aix.h rename to boost-1.81.0/boost/predef/os/aix.h diff --git a/boost-1.80.0/boost/predef/os/amigaos.h b/boost-1.81.0/boost/predef/os/amigaos.h similarity index 100% rename from boost-1.80.0/boost/predef/os/amigaos.h rename to boost-1.81.0/boost/predef/os/amigaos.h diff --git a/boost-1.80.0/boost/predef/os/beos.h b/boost-1.81.0/boost/predef/os/beos.h similarity index 100% rename from boost-1.80.0/boost/predef/os/beos.h rename to boost-1.81.0/boost/predef/os/beos.h diff --git a/boost-1.80.0/boost/predef/os/bsd.h b/boost-1.81.0/boost/predef/os/bsd.h similarity index 100% rename from boost-1.80.0/boost/predef/os/bsd.h rename to boost-1.81.0/boost/predef/os/bsd.h diff --git a/boost-1.80.0/boost/predef/os/bsd/bsdi.h b/boost-1.81.0/boost/predef/os/bsd/bsdi.h similarity index 100% rename from boost-1.80.0/boost/predef/os/bsd/bsdi.h rename to boost-1.81.0/boost/predef/os/bsd/bsdi.h diff --git a/boost-1.80.0/boost/predef/os/bsd/dragonfly.h b/boost-1.81.0/boost/predef/os/bsd/dragonfly.h similarity index 100% rename from boost-1.80.0/boost/predef/os/bsd/dragonfly.h rename to boost-1.81.0/boost/predef/os/bsd/dragonfly.h diff --git a/boost-1.80.0/boost/predef/os/bsd/free.h b/boost-1.81.0/boost/predef/os/bsd/free.h similarity index 100% rename from boost-1.80.0/boost/predef/os/bsd/free.h rename to boost-1.81.0/boost/predef/os/bsd/free.h diff --git a/boost-1.80.0/boost/predef/os/bsd/net.h b/boost-1.81.0/boost/predef/os/bsd/net.h similarity index 100% rename from boost-1.80.0/boost/predef/os/bsd/net.h rename to boost-1.81.0/boost/predef/os/bsd/net.h diff --git a/boost-1.80.0/boost/predef/os/bsd/open.h b/boost-1.81.0/boost/predef/os/bsd/open.h similarity index 100% rename from boost-1.80.0/boost/predef/os/bsd/open.h rename to boost-1.81.0/boost/predef/os/bsd/open.h diff --git a/boost-1.80.0/boost/predef/os/cygwin.h b/boost-1.81.0/boost/predef/os/cygwin.h similarity index 100% rename from boost-1.80.0/boost/predef/os/cygwin.h rename to boost-1.81.0/boost/predef/os/cygwin.h diff --git a/boost-1.80.0/boost/predef/os/haiku.h b/boost-1.81.0/boost/predef/os/haiku.h similarity index 100% rename from boost-1.80.0/boost/predef/os/haiku.h rename to boost-1.81.0/boost/predef/os/haiku.h diff --git a/boost-1.80.0/boost/predef/os/hpux.h b/boost-1.81.0/boost/predef/os/hpux.h similarity index 100% rename from boost-1.80.0/boost/predef/os/hpux.h rename to boost-1.81.0/boost/predef/os/hpux.h diff --git a/boost-1.80.0/boost/predef/os/ios.h b/boost-1.81.0/boost/predef/os/ios.h similarity index 100% rename from boost-1.80.0/boost/predef/os/ios.h rename to boost-1.81.0/boost/predef/os/ios.h diff --git a/boost-1.80.0/boost/predef/os/irix.h b/boost-1.81.0/boost/predef/os/irix.h similarity index 100% rename from boost-1.80.0/boost/predef/os/irix.h rename to boost-1.81.0/boost/predef/os/irix.h diff --git a/boost-1.80.0/boost/predef/os/linux.h b/boost-1.81.0/boost/predef/os/linux.h similarity index 100% rename from boost-1.80.0/boost/predef/os/linux.h rename to boost-1.81.0/boost/predef/os/linux.h diff --git a/boost-1.80.0/boost/predef/os/macos.h b/boost-1.81.0/boost/predef/os/macos.h similarity index 100% rename from boost-1.80.0/boost/predef/os/macos.h rename to boost-1.81.0/boost/predef/os/macos.h diff --git a/boost-1.80.0/boost/predef/os/os400.h b/boost-1.81.0/boost/predef/os/os400.h similarity index 100% rename from boost-1.80.0/boost/predef/os/os400.h rename to boost-1.81.0/boost/predef/os/os400.h diff --git a/boost-1.80.0/boost/predef/os/qnxnto.h b/boost-1.81.0/boost/predef/os/qnxnto.h similarity index 100% rename from boost-1.80.0/boost/predef/os/qnxnto.h rename to boost-1.81.0/boost/predef/os/qnxnto.h diff --git a/boost-1.80.0/boost/predef/os/solaris.h b/boost-1.81.0/boost/predef/os/solaris.h similarity index 100% rename from boost-1.80.0/boost/predef/os/solaris.h rename to boost-1.81.0/boost/predef/os/solaris.h diff --git a/boost-1.80.0/boost/predef/os/unix.h b/boost-1.81.0/boost/predef/os/unix.h similarity index 100% rename from boost-1.80.0/boost/predef/os/unix.h rename to boost-1.81.0/boost/predef/os/unix.h diff --git a/boost-1.80.0/boost/predef/os/vms.h b/boost-1.81.0/boost/predef/os/vms.h similarity index 100% rename from boost-1.80.0/boost/predef/os/vms.h rename to boost-1.81.0/boost/predef/os/vms.h diff --git a/boost-1.80.0/boost/predef/os/windows.h b/boost-1.81.0/boost/predef/os/windows.h similarity index 100% rename from boost-1.80.0/boost/predef/os/windows.h rename to boost-1.81.0/boost/predef/os/windows.h diff --git a/boost-1.80.0/boost/predef/other.h b/boost-1.81.0/boost/predef/other.h similarity index 100% rename from boost-1.80.0/boost/predef/other.h rename to boost-1.81.0/boost/predef/other.h diff --git a/boost-1.80.0/boost/predef/other/endian.h b/boost-1.81.0/boost/predef/other/endian.h similarity index 100% rename from boost-1.80.0/boost/predef/other/endian.h rename to boost-1.81.0/boost/predef/other/endian.h diff --git a/boost-1.80.0/boost/predef/other/wordsize.h b/boost-1.81.0/boost/predef/other/wordsize.h similarity index 100% rename from boost-1.80.0/boost/predef/other/wordsize.h rename to boost-1.81.0/boost/predef/other/wordsize.h diff --git a/boost-1.80.0/boost/predef/other/workaround.h b/boost-1.81.0/boost/predef/other/workaround.h similarity index 100% rename from boost-1.80.0/boost/predef/other/workaround.h rename to boost-1.81.0/boost/predef/other/workaround.h diff --git a/boost-1.80.0/boost/predef/platform.h b/boost-1.81.0/boost/predef/platform.h similarity index 100% rename from boost-1.80.0/boost/predef/platform.h rename to boost-1.81.0/boost/predef/platform.h diff --git a/boost-1.80.0/boost/predef/platform/android.h b/boost-1.81.0/boost/predef/platform/android.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/android.h rename to boost-1.81.0/boost/predef/platform/android.h diff --git a/boost-1.80.0/boost/predef/platform/cloudabi.h b/boost-1.81.0/boost/predef/platform/cloudabi.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/cloudabi.h rename to boost-1.81.0/boost/predef/platform/cloudabi.h diff --git a/boost-1.80.0/boost/predef/platform/ios.h b/boost-1.81.0/boost/predef/platform/ios.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/ios.h rename to boost-1.81.0/boost/predef/platform/ios.h diff --git a/boost-1.80.0/boost/predef/platform/mingw.h b/boost-1.81.0/boost/predef/platform/mingw.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/mingw.h rename to boost-1.81.0/boost/predef/platform/mingw.h diff --git a/boost-1.80.0/boost/predef/platform/mingw32.h b/boost-1.81.0/boost/predef/platform/mingw32.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/mingw32.h rename to boost-1.81.0/boost/predef/platform/mingw32.h diff --git a/boost-1.80.0/boost/predef/platform/mingw64.h b/boost-1.81.0/boost/predef/platform/mingw64.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/mingw64.h rename to boost-1.81.0/boost/predef/platform/mingw64.h diff --git a/boost-1.80.0/boost/predef/platform/windows_desktop.h b/boost-1.81.0/boost/predef/platform/windows_desktop.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/windows_desktop.h rename to boost-1.81.0/boost/predef/platform/windows_desktop.h diff --git a/boost-1.80.0/boost/predef/platform/windows_phone.h b/boost-1.81.0/boost/predef/platform/windows_phone.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/windows_phone.h rename to boost-1.81.0/boost/predef/platform/windows_phone.h diff --git a/boost-1.80.0/boost/predef/platform/windows_runtime.h b/boost-1.81.0/boost/predef/platform/windows_runtime.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/windows_runtime.h rename to boost-1.81.0/boost/predef/platform/windows_runtime.h diff --git a/boost-1.80.0/boost/predef/platform/windows_server.h b/boost-1.81.0/boost/predef/platform/windows_server.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/windows_server.h rename to boost-1.81.0/boost/predef/platform/windows_server.h diff --git a/boost-1.80.0/boost/predef/platform/windows_store.h b/boost-1.81.0/boost/predef/platform/windows_store.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/windows_store.h rename to boost-1.81.0/boost/predef/platform/windows_store.h diff --git a/boost-1.80.0/boost/predef/platform/windows_system.h b/boost-1.81.0/boost/predef/platform/windows_system.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/windows_system.h rename to boost-1.81.0/boost/predef/platform/windows_system.h diff --git a/boost-1.80.0/boost/predef/platform/windows_uwp.h b/boost-1.81.0/boost/predef/platform/windows_uwp.h similarity index 100% rename from boost-1.80.0/boost/predef/platform/windows_uwp.h rename to boost-1.81.0/boost/predef/platform/windows_uwp.h diff --git a/boost-1.80.0/boost/predef/version.h b/boost-1.81.0/boost/predef/version.h similarity index 100% rename from boost-1.80.0/boost/predef/version.h rename to boost-1.81.0/boost/predef/version.h diff --git a/boost-1.80.0/boost/predef/version_number.h b/boost-1.81.0/boost/predef/version_number.h similarity index 100% rename from boost-1.80.0/boost/predef/version_number.h rename to boost-1.81.0/boost/predef/version_number.h diff --git a/boost-1.80.0/boost/preprocessor/arithmetic.hpp b/boost-1.81.0/boost/preprocessor/arithmetic.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/add.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/add.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/add.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/add.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/dec.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/dec.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/dec.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/dec.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/detail/div_base.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/detail/div_base.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/detail/div_base.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/detail/div_base.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/detail/is_1_number.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/detail/is_1_number.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/detail/is_1_number.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/detail/is_1_number.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/detail/is_maximum_number.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/detail/is_maximum_number.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/detail/is_maximum_number.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/detail/is_maximum_number.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/detail/is_minimum_number.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/detail/is_minimum_number.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/detail/is_minimum_number.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/detail/is_minimum_number.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/detail/maximum_number.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/detail/maximum_number.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/detail/maximum_number.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/detail/maximum_number.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/div.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/div.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/div.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/div.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/inc.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/inc.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/inc.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/inc.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/limits/dec_1024.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/limits/dec_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/limits/dec_1024.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/limits/dec_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/limits/dec_256.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/limits/dec_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/limits/dec_256.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/limits/dec_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/limits/dec_512.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/limits/dec_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/limits/dec_512.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/limits/dec_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/limits/inc_1024.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/limits/inc_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/limits/inc_1024.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/limits/inc_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/limits/inc_256.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/limits/inc_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/limits/inc_256.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/limits/inc_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/limits/inc_512.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/limits/inc_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/limits/inc_512.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/limits/inc_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/mod.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/mod.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/mod.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/mod.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/mul.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/mul.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/mul.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/mul.hpp diff --git a/boost-1.80.0/boost/preprocessor/arithmetic/sub.hpp b/boost-1.81.0/boost/preprocessor/arithmetic/sub.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/arithmetic/sub.hpp rename to boost-1.81.0/boost/preprocessor/arithmetic/sub.hpp diff --git a/boost-1.80.0/boost/preprocessor/array.hpp b/boost-1.81.0/boost/preprocessor/array.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array.hpp rename to boost-1.81.0/boost/preprocessor/array.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/data.hpp b/boost-1.81.0/boost/preprocessor/array/data.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/data.hpp rename to boost-1.81.0/boost/preprocessor/array/data.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/detail/get_data.hpp b/boost-1.81.0/boost/preprocessor/array/detail/get_data.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/detail/get_data.hpp rename to boost-1.81.0/boost/preprocessor/array/detail/get_data.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/elem.hpp b/boost-1.81.0/boost/preprocessor/array/elem.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/elem.hpp rename to boost-1.81.0/boost/preprocessor/array/elem.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/enum.hpp b/boost-1.81.0/boost/preprocessor/array/enum.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/enum.hpp rename to boost-1.81.0/boost/preprocessor/array/enum.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/insert.hpp b/boost-1.81.0/boost/preprocessor/array/insert.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/insert.hpp rename to boost-1.81.0/boost/preprocessor/array/insert.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/pop_back.hpp b/boost-1.81.0/boost/preprocessor/array/pop_back.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/pop_back.hpp rename to boost-1.81.0/boost/preprocessor/array/pop_back.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/pop_front.hpp b/boost-1.81.0/boost/preprocessor/array/pop_front.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/pop_front.hpp rename to boost-1.81.0/boost/preprocessor/array/pop_front.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/push_back.hpp b/boost-1.81.0/boost/preprocessor/array/push_back.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/push_back.hpp rename to boost-1.81.0/boost/preprocessor/array/push_back.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/push_front.hpp b/boost-1.81.0/boost/preprocessor/array/push_front.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/push_front.hpp rename to boost-1.81.0/boost/preprocessor/array/push_front.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/remove.hpp b/boost-1.81.0/boost/preprocessor/array/remove.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/remove.hpp rename to boost-1.81.0/boost/preprocessor/array/remove.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/replace.hpp b/boost-1.81.0/boost/preprocessor/array/replace.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/replace.hpp rename to boost-1.81.0/boost/preprocessor/array/replace.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/reverse.hpp b/boost-1.81.0/boost/preprocessor/array/reverse.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/reverse.hpp rename to boost-1.81.0/boost/preprocessor/array/reverse.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/size.hpp b/boost-1.81.0/boost/preprocessor/array/size.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/size.hpp rename to boost-1.81.0/boost/preprocessor/array/size.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/to_list.hpp b/boost-1.81.0/boost/preprocessor/array/to_list.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/to_list.hpp rename to boost-1.81.0/boost/preprocessor/array/to_list.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/to_seq.hpp b/boost-1.81.0/boost/preprocessor/array/to_seq.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/to_seq.hpp rename to boost-1.81.0/boost/preprocessor/array/to_seq.hpp diff --git a/boost-1.80.0/boost/preprocessor/array/to_tuple.hpp b/boost-1.81.0/boost/preprocessor/array/to_tuple.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/array/to_tuple.hpp rename to boost-1.81.0/boost/preprocessor/array/to_tuple.hpp diff --git a/boost-1.80.0/boost/preprocessor/assert_msg.hpp b/boost-1.81.0/boost/preprocessor/assert_msg.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/assert_msg.hpp rename to boost-1.81.0/boost/preprocessor/assert_msg.hpp diff --git a/boost-1.80.0/boost/preprocessor/cat.hpp b/boost-1.81.0/boost/preprocessor/cat.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/cat.hpp rename to boost-1.81.0/boost/preprocessor/cat.hpp diff --git a/boost-1.80.0/boost/preprocessor/comma.hpp b/boost-1.81.0/boost/preprocessor/comma.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comma.hpp rename to boost-1.81.0/boost/preprocessor/comma.hpp diff --git a/boost-1.80.0/boost/preprocessor/comma_if.hpp b/boost-1.81.0/boost/preprocessor/comma_if.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comma_if.hpp rename to boost-1.81.0/boost/preprocessor/comma_if.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison.hpp b/boost-1.81.0/boost/preprocessor/comparison.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison.hpp rename to boost-1.81.0/boost/preprocessor/comparison.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison/equal.hpp b/boost-1.81.0/boost/preprocessor/comparison/equal.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison/equal.hpp rename to boost-1.81.0/boost/preprocessor/comparison/equal.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison/greater.hpp b/boost-1.81.0/boost/preprocessor/comparison/greater.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison/greater.hpp rename to boost-1.81.0/boost/preprocessor/comparison/greater.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison/greater_equal.hpp b/boost-1.81.0/boost/preprocessor/comparison/greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison/greater_equal.hpp rename to boost-1.81.0/boost/preprocessor/comparison/greater_equal.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison/less.hpp b/boost-1.81.0/boost/preprocessor/comparison/less.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison/less.hpp rename to boost-1.81.0/boost/preprocessor/comparison/less.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison/less_equal.hpp b/boost-1.81.0/boost/preprocessor/comparison/less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison/less_equal.hpp rename to boost-1.81.0/boost/preprocessor/comparison/less_equal.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison/limits/not_equal_1024.hpp b/boost-1.81.0/boost/preprocessor/comparison/limits/not_equal_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison/limits/not_equal_1024.hpp rename to boost-1.81.0/boost/preprocessor/comparison/limits/not_equal_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison/limits/not_equal_256.hpp b/boost-1.81.0/boost/preprocessor/comparison/limits/not_equal_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison/limits/not_equal_256.hpp rename to boost-1.81.0/boost/preprocessor/comparison/limits/not_equal_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison/limits/not_equal_512.hpp b/boost-1.81.0/boost/preprocessor/comparison/limits/not_equal_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison/limits/not_equal_512.hpp rename to boost-1.81.0/boost/preprocessor/comparison/limits/not_equal_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/comparison/not_equal.hpp b/boost-1.81.0/boost/preprocessor/comparison/not_equal.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/comparison/not_equal.hpp rename to boost-1.81.0/boost/preprocessor/comparison/not_equal.hpp diff --git a/boost-1.80.0/boost/preprocessor/config/config.hpp b/boost-1.81.0/boost/preprocessor/config/config.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/config/config.hpp rename to boost-1.81.0/boost/preprocessor/config/config.hpp diff --git a/boost-1.80.0/boost/preprocessor/config/limits.hpp b/boost-1.81.0/boost/preprocessor/config/limits.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/config/limits.hpp rename to boost-1.81.0/boost/preprocessor/config/limits.hpp diff --git a/boost-1.80.0/boost/preprocessor/control.hpp b/boost-1.81.0/boost/preprocessor/control.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control.hpp rename to boost-1.81.0/boost/preprocessor/control.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/deduce_d.hpp b/boost-1.81.0/boost/preprocessor/control/deduce_d.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/deduce_d.hpp rename to boost-1.81.0/boost/preprocessor/control/deduce_d.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/dmc/while.hpp b/boost-1.81.0/boost/preprocessor/control/detail/dmc/while.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/dmc/while.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/dmc/while.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/edg/limits/while_1024.hpp b/boost-1.81.0/boost/preprocessor/control/detail/edg/limits/while_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/edg/limits/while_1024.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/edg/limits/while_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/edg/limits/while_256.hpp b/boost-1.81.0/boost/preprocessor/control/detail/edg/limits/while_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/edg/limits/while_256.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/edg/limits/while_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/edg/limits/while_512.hpp b/boost-1.81.0/boost/preprocessor/control/detail/edg/limits/while_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/edg/limits/while_512.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/edg/limits/while_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/edg/while.hpp b/boost-1.81.0/boost/preprocessor/control/detail/edg/while.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/edg/while.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/edg/while.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/limits/while_1024.hpp b/boost-1.81.0/boost/preprocessor/control/detail/limits/while_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/limits/while_1024.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/limits/while_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/limits/while_256.hpp b/boost-1.81.0/boost/preprocessor/control/detail/limits/while_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/limits/while_256.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/limits/while_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/limits/while_512.hpp b/boost-1.81.0/boost/preprocessor/control/detail/limits/while_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/limits/while_512.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/limits/while_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/msvc/while.hpp b/boost-1.81.0/boost/preprocessor/control/detail/msvc/while.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/msvc/while.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/msvc/while.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/detail/while.hpp b/boost-1.81.0/boost/preprocessor/control/detail/while.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/detail/while.hpp rename to boost-1.81.0/boost/preprocessor/control/detail/while.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/expr_if.hpp b/boost-1.81.0/boost/preprocessor/control/expr_if.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/expr_if.hpp rename to boost-1.81.0/boost/preprocessor/control/expr_if.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/expr_iif.hpp b/boost-1.81.0/boost/preprocessor/control/expr_iif.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/expr_iif.hpp rename to boost-1.81.0/boost/preprocessor/control/expr_iif.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/if.hpp b/boost-1.81.0/boost/preprocessor/control/if.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/if.hpp rename to boost-1.81.0/boost/preprocessor/control/if.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/iif.hpp b/boost-1.81.0/boost/preprocessor/control/iif.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/iif.hpp rename to boost-1.81.0/boost/preprocessor/control/iif.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/limits/while_1024.hpp b/boost-1.81.0/boost/preprocessor/control/limits/while_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/limits/while_1024.hpp rename to boost-1.81.0/boost/preprocessor/control/limits/while_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/limits/while_256.hpp b/boost-1.81.0/boost/preprocessor/control/limits/while_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/limits/while_256.hpp rename to boost-1.81.0/boost/preprocessor/control/limits/while_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/limits/while_512.hpp b/boost-1.81.0/boost/preprocessor/control/limits/while_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/limits/while_512.hpp rename to boost-1.81.0/boost/preprocessor/control/limits/while_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/control/while.hpp b/boost-1.81.0/boost/preprocessor/control/while.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/control/while.hpp rename to boost-1.81.0/boost/preprocessor/control/while.hpp diff --git a/boost-1.80.0/boost/preprocessor/debug.hpp b/boost-1.81.0/boost/preprocessor/debug.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/debug.hpp rename to boost-1.81.0/boost/preprocessor/debug.hpp diff --git a/boost-1.80.0/boost/preprocessor/debug/assert.hpp b/boost-1.81.0/boost/preprocessor/debug/assert.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/debug/assert.hpp rename to boost-1.81.0/boost/preprocessor/debug/assert.hpp diff --git a/boost-1.80.0/boost/preprocessor/debug/error.hpp b/boost-1.81.0/boost/preprocessor/debug/error.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/debug/error.hpp rename to boost-1.81.0/boost/preprocessor/debug/error.hpp diff --git a/boost-1.80.0/boost/preprocessor/debug/line.hpp b/boost-1.81.0/boost/preprocessor/debug/line.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/debug/line.hpp rename to boost-1.81.0/boost/preprocessor/debug/line.hpp diff --git a/boost-1.80.0/boost/preprocessor/dec.hpp b/boost-1.81.0/boost/preprocessor/dec.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/dec.hpp rename to boost-1.81.0/boost/preprocessor/dec.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/auto_rec.hpp b/boost-1.81.0/boost/preprocessor/detail/auto_rec.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/auto_rec.hpp rename to boost-1.81.0/boost/preprocessor/detail/auto_rec.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/check.hpp b/boost-1.81.0/boost/preprocessor/detail/check.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/check.hpp rename to boost-1.81.0/boost/preprocessor/detail/check.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/dmc/auto_rec.hpp b/boost-1.81.0/boost/preprocessor/detail/dmc/auto_rec.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/dmc/auto_rec.hpp rename to boost-1.81.0/boost/preprocessor/detail/dmc/auto_rec.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/is_binary.hpp b/boost-1.81.0/boost/preprocessor/detail/is_binary.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/is_binary.hpp rename to boost-1.81.0/boost/preprocessor/detail/is_binary.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/is_nullary.hpp b/boost-1.81.0/boost/preprocessor/detail/is_nullary.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/is_nullary.hpp rename to boost-1.81.0/boost/preprocessor/detail/is_nullary.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/is_unary.hpp b/boost-1.81.0/boost/preprocessor/detail/is_unary.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/is_unary.hpp rename to boost-1.81.0/boost/preprocessor/detail/is_unary.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/limits/auto_rec_1024.hpp b/boost-1.81.0/boost/preprocessor/detail/limits/auto_rec_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/limits/auto_rec_1024.hpp rename to boost-1.81.0/boost/preprocessor/detail/limits/auto_rec_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/limits/auto_rec_256.hpp b/boost-1.81.0/boost/preprocessor/detail/limits/auto_rec_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/limits/auto_rec_256.hpp rename to boost-1.81.0/boost/preprocessor/detail/limits/auto_rec_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/limits/auto_rec_512.hpp b/boost-1.81.0/boost/preprocessor/detail/limits/auto_rec_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/limits/auto_rec_512.hpp rename to boost-1.81.0/boost/preprocessor/detail/limits/auto_rec_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/null.hpp b/boost-1.81.0/boost/preprocessor/detail/null.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/null.hpp rename to boost-1.81.0/boost/preprocessor/detail/null.hpp diff --git a/boost-1.80.0/boost/preprocessor/detail/split.hpp b/boost-1.81.0/boost/preprocessor/detail/split.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/detail/split.hpp rename to boost-1.81.0/boost/preprocessor/detail/split.hpp diff --git a/boost-1.80.0/boost/preprocessor/empty.hpp b/boost-1.81.0/boost/preprocessor/empty.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/empty.hpp rename to boost-1.81.0/boost/preprocessor/empty.hpp diff --git a/boost-1.80.0/boost/preprocessor/enum.hpp b/boost-1.81.0/boost/preprocessor/enum.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/enum.hpp rename to boost-1.81.0/boost/preprocessor/enum.hpp diff --git a/boost-1.80.0/boost/preprocessor/enum_params.hpp b/boost-1.81.0/boost/preprocessor/enum_params.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/enum_params.hpp rename to boost-1.81.0/boost/preprocessor/enum_params.hpp diff --git a/boost-1.80.0/boost/preprocessor/enum_params_with_a_default.hpp b/boost-1.81.0/boost/preprocessor/enum_params_with_a_default.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/enum_params_with_a_default.hpp rename to boost-1.81.0/boost/preprocessor/enum_params_with_a_default.hpp diff --git a/boost-1.80.0/boost/preprocessor/enum_params_with_defaults.hpp b/boost-1.81.0/boost/preprocessor/enum_params_with_defaults.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/enum_params_with_defaults.hpp rename to boost-1.81.0/boost/preprocessor/enum_params_with_defaults.hpp diff --git a/boost-1.80.0/boost/preprocessor/enum_shifted.hpp b/boost-1.81.0/boost/preprocessor/enum_shifted.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/enum_shifted.hpp rename to boost-1.81.0/boost/preprocessor/enum_shifted.hpp diff --git a/boost-1.80.0/boost/preprocessor/enum_shifted_params.hpp b/boost-1.81.0/boost/preprocessor/enum_shifted_params.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/enum_shifted_params.hpp rename to boost-1.81.0/boost/preprocessor/enum_shifted_params.hpp diff --git a/boost-1.80.0/boost/preprocessor/expand.hpp b/boost-1.81.0/boost/preprocessor/expand.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/expand.hpp rename to boost-1.81.0/boost/preprocessor/expand.hpp diff --git a/boost-1.80.0/boost/preprocessor/expr_if.hpp b/boost-1.81.0/boost/preprocessor/expr_if.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/expr_if.hpp rename to boost-1.81.0/boost/preprocessor/expr_if.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities.hpp b/boost-1.81.0/boost/preprocessor/facilities.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities.hpp rename to boost-1.81.0/boost/preprocessor/facilities.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/apply.hpp b/boost-1.81.0/boost/preprocessor/facilities/apply.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/apply.hpp rename to boost-1.81.0/boost/preprocessor/facilities/apply.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/check_empty.hpp b/boost-1.81.0/boost/preprocessor/facilities/check_empty.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/check_empty.hpp rename to boost-1.81.0/boost/preprocessor/facilities/check_empty.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/detail/is_empty.hpp b/boost-1.81.0/boost/preprocessor/facilities/detail/is_empty.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/detail/is_empty.hpp rename to boost-1.81.0/boost/preprocessor/facilities/detail/is_empty.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/empty.hpp b/boost-1.81.0/boost/preprocessor/facilities/empty.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/empty.hpp rename to boost-1.81.0/boost/preprocessor/facilities/empty.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/expand.hpp b/boost-1.81.0/boost/preprocessor/facilities/expand.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/expand.hpp rename to boost-1.81.0/boost/preprocessor/facilities/expand.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/identity.hpp b/boost-1.81.0/boost/preprocessor/facilities/identity.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/identity.hpp rename to boost-1.81.0/boost/preprocessor/facilities/identity.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/intercept.hpp b/boost-1.81.0/boost/preprocessor/facilities/intercept.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/intercept.hpp rename to boost-1.81.0/boost/preprocessor/facilities/intercept.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/is_1.hpp b/boost-1.81.0/boost/preprocessor/facilities/is_1.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/is_1.hpp rename to boost-1.81.0/boost/preprocessor/facilities/is_1.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/is_empty.hpp b/boost-1.81.0/boost/preprocessor/facilities/is_empty.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/is_empty.hpp rename to boost-1.81.0/boost/preprocessor/facilities/is_empty.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/is_empty_or_1.hpp b/boost-1.81.0/boost/preprocessor/facilities/is_empty_or_1.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/is_empty_or_1.hpp rename to boost-1.81.0/boost/preprocessor/facilities/is_empty_or_1.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/is_empty_variadic.hpp b/boost-1.81.0/boost/preprocessor/facilities/is_empty_variadic.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/is_empty_variadic.hpp rename to boost-1.81.0/boost/preprocessor/facilities/is_empty_variadic.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/limits/intercept_1024.hpp b/boost-1.81.0/boost/preprocessor/facilities/limits/intercept_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/limits/intercept_1024.hpp rename to boost-1.81.0/boost/preprocessor/facilities/limits/intercept_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/limits/intercept_256.hpp b/boost-1.81.0/boost/preprocessor/facilities/limits/intercept_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/limits/intercept_256.hpp rename to boost-1.81.0/boost/preprocessor/facilities/limits/intercept_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/limits/intercept_512.hpp b/boost-1.81.0/boost/preprocessor/facilities/limits/intercept_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/limits/intercept_512.hpp rename to boost-1.81.0/boost/preprocessor/facilities/limits/intercept_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/overload.hpp b/boost-1.81.0/boost/preprocessor/facilities/overload.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/overload.hpp rename to boost-1.81.0/boost/preprocessor/facilities/overload.hpp diff --git a/boost-1.80.0/boost/preprocessor/facilities/va_opt.hpp b/boost-1.81.0/boost/preprocessor/facilities/va_opt.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/facilities/va_opt.hpp rename to boost-1.81.0/boost/preprocessor/facilities/va_opt.hpp diff --git a/boost-1.80.0/boost/preprocessor/for.hpp b/boost-1.81.0/boost/preprocessor/for.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/for.hpp rename to boost-1.81.0/boost/preprocessor/for.hpp diff --git a/boost-1.80.0/boost/preprocessor/identity.hpp b/boost-1.81.0/boost/preprocessor/identity.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/identity.hpp rename to boost-1.81.0/boost/preprocessor/identity.hpp diff --git a/boost-1.80.0/boost/preprocessor/if.hpp b/boost-1.81.0/boost/preprocessor/if.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/if.hpp rename to boost-1.81.0/boost/preprocessor/if.hpp diff --git a/boost-1.80.0/boost/preprocessor/inc.hpp b/boost-1.81.0/boost/preprocessor/inc.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/inc.hpp rename to boost-1.81.0/boost/preprocessor/inc.hpp diff --git a/boost-1.80.0/boost/preprocessor/iterate.hpp b/boost-1.81.0/boost/preprocessor/iterate.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iterate.hpp rename to boost-1.81.0/boost/preprocessor/iterate.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration.hpp b/boost-1.81.0/boost/preprocessor/iteration.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration.hpp rename to boost-1.81.0/boost/preprocessor/iteration.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower1.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower1.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower1.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower1.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower2.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower2.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower2.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower2.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower3.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower3.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower3.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower3.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower4.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower4.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower4.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower4.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower5.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower5.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/lower5.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/lower5.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper1.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper1.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper1.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper1.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper2.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper2.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper2.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper2.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper3.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper3.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper3.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper3.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper4.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper4.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper4.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper4.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper5.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper5.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/bounds/upper5.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/bounds/upper5.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/finish.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/finish.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/finish.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/finish.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward1.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward1.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward1.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward1.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward2.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward2.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward2.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward2.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward3.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward3.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward3.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward3.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward4.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward4.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward4.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward4.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward5.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward5.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/forward5.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/forward5.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward1_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward1_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward1_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward1_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward1_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward1_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward1_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward1_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward1_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward1_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward1_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward1_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward2_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward2_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward2_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward2_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward2_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward2_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward2_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward2_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward2_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward2_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward2_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward2_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward3_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward3_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward3_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward3_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward3_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward3_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward3_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward3_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward3_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward3_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward3_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward3_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward4_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward4_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward4_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward4_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward4_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward4_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward4_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward4_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward4_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward4_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward4_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward4_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward5_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward5_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward5_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward5_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward5_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward5_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward5_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward5_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward5_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward5_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/forward5_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/forward5_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse1_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse2_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse3_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse4_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/limits/reverse5_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse1.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse1.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse1.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse1.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse2.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse2.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse2.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse2.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse3.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse3.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse3.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse3.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse4.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse4.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse4.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse4.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse5.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse5.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/iter/reverse5.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/iter/reverse5.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/limits/local_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/limits/local_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/limits/local_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/limits/local_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/limits/local_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/limits/local_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/limits/local_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/limits/local_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/limits/local_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/limits/local_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/limits/local_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/limits/local_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/limits/rlocal_1024.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/limits/rlocal_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/limits/rlocal_1024.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/limits/rlocal_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/limits/rlocal_256.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/limits/rlocal_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/limits/rlocal_256.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/limits/rlocal_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/limits/rlocal_512.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/limits/rlocal_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/limits/rlocal_512.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/limits/rlocal_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/local.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/local.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/local.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/local.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/rlocal.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/rlocal.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/rlocal.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/rlocal.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/self.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/self.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/self.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/self.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/detail/start.hpp b/boost-1.81.0/boost/preprocessor/iteration/detail/start.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/detail/start.hpp rename to boost-1.81.0/boost/preprocessor/iteration/detail/start.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/iterate.hpp b/boost-1.81.0/boost/preprocessor/iteration/iterate.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/iterate.hpp rename to boost-1.81.0/boost/preprocessor/iteration/iterate.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/local.hpp b/boost-1.81.0/boost/preprocessor/iteration/local.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/local.hpp rename to boost-1.81.0/boost/preprocessor/iteration/local.hpp diff --git a/boost-1.80.0/boost/preprocessor/iteration/self.hpp b/boost-1.81.0/boost/preprocessor/iteration/self.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/iteration/self.hpp rename to boost-1.81.0/boost/preprocessor/iteration/self.hpp diff --git a/boost-1.80.0/boost/preprocessor/library.hpp b/boost-1.81.0/boost/preprocessor/library.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/library.hpp rename to boost-1.81.0/boost/preprocessor/library.hpp diff --git a/boost-1.80.0/boost/preprocessor/limits.hpp b/boost-1.81.0/boost/preprocessor/limits.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/limits.hpp rename to boost-1.81.0/boost/preprocessor/limits.hpp diff --git a/boost-1.80.0/boost/preprocessor/list.hpp b/boost-1.81.0/boost/preprocessor/list.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list.hpp rename to boost-1.81.0/boost/preprocessor/list.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/adt.hpp b/boost-1.81.0/boost/preprocessor/list/adt.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/adt.hpp rename to boost-1.81.0/boost/preprocessor/list/adt.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/append.hpp b/boost-1.81.0/boost/preprocessor/list/append.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/append.hpp rename to boost-1.81.0/boost/preprocessor/list/append.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/at.hpp b/boost-1.81.0/boost/preprocessor/list/at.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/at.hpp rename to boost-1.81.0/boost/preprocessor/list/at.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/cat.hpp b/boost-1.81.0/boost/preprocessor/list/cat.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/cat.hpp rename to boost-1.81.0/boost/preprocessor/list/cat.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/dmc/fold_left.hpp b/boost-1.81.0/boost/preprocessor/list/detail/dmc/fold_left.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/dmc/fold_left.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/dmc/fold_left.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/edg/fold_left.hpp b/boost-1.81.0/boost/preprocessor/list/detail/edg/fold_left.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/edg/fold_left.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/edg/fold_left.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/edg/fold_right.hpp b/boost-1.81.0/boost/preprocessor/list/detail/edg/fold_right.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/edg/fold_right.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/edg/fold_right.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_left_1024.hpp b/boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_left_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_left_1024.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_left_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_left_256.hpp b/boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_left_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_left_256.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_left_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_left_512.hpp b/boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_left_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_left_512.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_left_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_right_1024.hpp b/boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_right_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_right_1024.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_right_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_right_256.hpp b/boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_right_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_right_256.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_right_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_right_512.hpp b/boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_right_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/edg/limits/fold_right_512.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/edg/limits/fold_right_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/fold_left.hpp b/boost-1.81.0/boost/preprocessor/list/detail/fold_left.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/fold_left.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/fold_left.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/fold_right.hpp b/boost-1.81.0/boost/preprocessor/list/detail/fold_right.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/fold_right.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/fold_right.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/limits/fold_left_1024.hpp b/boost-1.81.0/boost/preprocessor/list/detail/limits/fold_left_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/limits/fold_left_1024.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/limits/fold_left_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/limits/fold_left_256.hpp b/boost-1.81.0/boost/preprocessor/list/detail/limits/fold_left_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/limits/fold_left_256.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/limits/fold_left_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/limits/fold_left_512.hpp b/boost-1.81.0/boost/preprocessor/list/detail/limits/fold_left_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/limits/fold_left_512.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/limits/fold_left_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/limits/fold_right_1024.hpp b/boost-1.81.0/boost/preprocessor/list/detail/limits/fold_right_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/limits/fold_right_1024.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/limits/fold_right_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/limits/fold_right_256.hpp b/boost-1.81.0/boost/preprocessor/list/detail/limits/fold_right_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/limits/fold_right_256.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/limits/fold_right_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/detail/limits/fold_right_512.hpp b/boost-1.81.0/boost/preprocessor/list/detail/limits/fold_right_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/detail/limits/fold_right_512.hpp rename to boost-1.81.0/boost/preprocessor/list/detail/limits/fold_right_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/enum.hpp b/boost-1.81.0/boost/preprocessor/list/enum.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/enum.hpp rename to boost-1.81.0/boost/preprocessor/list/enum.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/filter.hpp b/boost-1.81.0/boost/preprocessor/list/filter.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/filter.hpp rename to boost-1.81.0/boost/preprocessor/list/filter.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/first_n.hpp b/boost-1.81.0/boost/preprocessor/list/first_n.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/first_n.hpp rename to boost-1.81.0/boost/preprocessor/list/first_n.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/fold_left.hpp b/boost-1.81.0/boost/preprocessor/list/fold_left.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/fold_left.hpp rename to boost-1.81.0/boost/preprocessor/list/fold_left.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/fold_right.hpp b/boost-1.81.0/boost/preprocessor/list/fold_right.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/fold_right.hpp rename to boost-1.81.0/boost/preprocessor/list/fold_right.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/for_each.hpp b/boost-1.81.0/boost/preprocessor/list/for_each.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/for_each.hpp rename to boost-1.81.0/boost/preprocessor/list/for_each.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/for_each_i.hpp b/boost-1.81.0/boost/preprocessor/list/for_each_i.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/for_each_i.hpp rename to boost-1.81.0/boost/preprocessor/list/for_each_i.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/for_each_product.hpp b/boost-1.81.0/boost/preprocessor/list/for_each_product.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/for_each_product.hpp rename to boost-1.81.0/boost/preprocessor/list/for_each_product.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/limits/fold_left_1024.hpp b/boost-1.81.0/boost/preprocessor/list/limits/fold_left_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/limits/fold_left_1024.hpp rename to boost-1.81.0/boost/preprocessor/list/limits/fold_left_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/limits/fold_left_256.hpp b/boost-1.81.0/boost/preprocessor/list/limits/fold_left_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/limits/fold_left_256.hpp rename to boost-1.81.0/boost/preprocessor/list/limits/fold_left_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/limits/fold_left_512.hpp b/boost-1.81.0/boost/preprocessor/list/limits/fold_left_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/limits/fold_left_512.hpp rename to boost-1.81.0/boost/preprocessor/list/limits/fold_left_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/rest_n.hpp b/boost-1.81.0/boost/preprocessor/list/rest_n.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/rest_n.hpp rename to boost-1.81.0/boost/preprocessor/list/rest_n.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/reverse.hpp b/boost-1.81.0/boost/preprocessor/list/reverse.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/reverse.hpp rename to boost-1.81.0/boost/preprocessor/list/reverse.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/size.hpp b/boost-1.81.0/boost/preprocessor/list/size.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/size.hpp rename to boost-1.81.0/boost/preprocessor/list/size.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/to_array.hpp b/boost-1.81.0/boost/preprocessor/list/to_array.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/to_array.hpp rename to boost-1.81.0/boost/preprocessor/list/to_array.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/to_seq.hpp b/boost-1.81.0/boost/preprocessor/list/to_seq.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/to_seq.hpp rename to boost-1.81.0/boost/preprocessor/list/to_seq.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/to_tuple.hpp b/boost-1.81.0/boost/preprocessor/list/to_tuple.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/to_tuple.hpp rename to boost-1.81.0/boost/preprocessor/list/to_tuple.hpp diff --git a/boost-1.80.0/boost/preprocessor/list/transform.hpp b/boost-1.81.0/boost/preprocessor/list/transform.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/list/transform.hpp rename to boost-1.81.0/boost/preprocessor/list/transform.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical.hpp b/boost-1.81.0/boost/preprocessor/logical.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical.hpp rename to boost-1.81.0/boost/preprocessor/logical.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/and.hpp b/boost-1.81.0/boost/preprocessor/logical/and.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/and.hpp rename to boost-1.81.0/boost/preprocessor/logical/and.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/bitand.hpp b/boost-1.81.0/boost/preprocessor/logical/bitand.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/bitand.hpp rename to boost-1.81.0/boost/preprocessor/logical/bitand.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/bitnor.hpp b/boost-1.81.0/boost/preprocessor/logical/bitnor.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/bitnor.hpp rename to boost-1.81.0/boost/preprocessor/logical/bitnor.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/bitor.hpp b/boost-1.81.0/boost/preprocessor/logical/bitor.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/bitor.hpp rename to boost-1.81.0/boost/preprocessor/logical/bitor.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/bitxor.hpp b/boost-1.81.0/boost/preprocessor/logical/bitxor.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/bitxor.hpp rename to boost-1.81.0/boost/preprocessor/logical/bitxor.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/bool.hpp b/boost-1.81.0/boost/preprocessor/logical/bool.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/bool.hpp rename to boost-1.81.0/boost/preprocessor/logical/bool.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/compl.hpp b/boost-1.81.0/boost/preprocessor/logical/compl.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/compl.hpp rename to boost-1.81.0/boost/preprocessor/logical/compl.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/limits/bool_1024.hpp b/boost-1.81.0/boost/preprocessor/logical/limits/bool_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/limits/bool_1024.hpp rename to boost-1.81.0/boost/preprocessor/logical/limits/bool_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/limits/bool_256.hpp b/boost-1.81.0/boost/preprocessor/logical/limits/bool_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/limits/bool_256.hpp rename to boost-1.81.0/boost/preprocessor/logical/limits/bool_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/limits/bool_512.hpp b/boost-1.81.0/boost/preprocessor/logical/limits/bool_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/limits/bool_512.hpp rename to boost-1.81.0/boost/preprocessor/logical/limits/bool_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/nor.hpp b/boost-1.81.0/boost/preprocessor/logical/nor.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/nor.hpp rename to boost-1.81.0/boost/preprocessor/logical/nor.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/not.hpp b/boost-1.81.0/boost/preprocessor/logical/not.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/not.hpp rename to boost-1.81.0/boost/preprocessor/logical/not.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/or.hpp b/boost-1.81.0/boost/preprocessor/logical/or.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/or.hpp rename to boost-1.81.0/boost/preprocessor/logical/or.hpp diff --git a/boost-1.80.0/boost/preprocessor/logical/xor.hpp b/boost-1.81.0/boost/preprocessor/logical/xor.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/logical/xor.hpp rename to boost-1.81.0/boost/preprocessor/logical/xor.hpp diff --git a/boost-1.80.0/boost/preprocessor/max.hpp b/boost-1.81.0/boost/preprocessor/max.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/max.hpp rename to boost-1.81.0/boost/preprocessor/max.hpp diff --git a/boost-1.80.0/boost/preprocessor/min.hpp b/boost-1.81.0/boost/preprocessor/min.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/min.hpp rename to boost-1.81.0/boost/preprocessor/min.hpp diff --git a/boost-1.80.0/boost/preprocessor/punctuation.hpp b/boost-1.81.0/boost/preprocessor/punctuation.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/punctuation.hpp rename to boost-1.81.0/boost/preprocessor/punctuation.hpp diff --git a/boost-1.80.0/boost/preprocessor/punctuation/comma.hpp b/boost-1.81.0/boost/preprocessor/punctuation/comma.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/punctuation/comma.hpp rename to boost-1.81.0/boost/preprocessor/punctuation/comma.hpp diff --git a/boost-1.80.0/boost/preprocessor/punctuation/comma_if.hpp b/boost-1.81.0/boost/preprocessor/punctuation/comma_if.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/punctuation/comma_if.hpp rename to boost-1.81.0/boost/preprocessor/punctuation/comma_if.hpp diff --git a/boost-1.80.0/boost/preprocessor/punctuation/detail/is_begin_parens.hpp b/boost-1.81.0/boost/preprocessor/punctuation/detail/is_begin_parens.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/punctuation/detail/is_begin_parens.hpp rename to boost-1.81.0/boost/preprocessor/punctuation/detail/is_begin_parens.hpp diff --git a/boost-1.80.0/boost/preprocessor/punctuation/is_begin_parens.hpp b/boost-1.81.0/boost/preprocessor/punctuation/is_begin_parens.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/punctuation/is_begin_parens.hpp rename to boost-1.81.0/boost/preprocessor/punctuation/is_begin_parens.hpp diff --git a/boost-1.80.0/boost/preprocessor/punctuation/paren.hpp b/boost-1.81.0/boost/preprocessor/punctuation/paren.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/punctuation/paren.hpp rename to boost-1.81.0/boost/preprocessor/punctuation/paren.hpp diff --git a/boost-1.80.0/boost/preprocessor/punctuation/paren_if.hpp b/boost-1.81.0/boost/preprocessor/punctuation/paren_if.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/punctuation/paren_if.hpp rename to boost-1.81.0/boost/preprocessor/punctuation/paren_if.hpp diff --git a/boost-1.80.0/boost/preprocessor/punctuation/remove_parens.hpp b/boost-1.81.0/boost/preprocessor/punctuation/remove_parens.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/punctuation/remove_parens.hpp rename to boost-1.81.0/boost/preprocessor/punctuation/remove_parens.hpp diff --git a/boost-1.80.0/boost/preprocessor/repeat.hpp b/boost-1.81.0/boost/preprocessor/repeat.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repeat.hpp rename to boost-1.81.0/boost/preprocessor/repeat.hpp diff --git a/boost-1.80.0/boost/preprocessor/repeat_2nd.hpp b/boost-1.81.0/boost/preprocessor/repeat_2nd.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repeat_2nd.hpp rename to boost-1.81.0/boost/preprocessor/repeat_2nd.hpp diff --git a/boost-1.80.0/boost/preprocessor/repeat_3rd.hpp b/boost-1.81.0/boost/preprocessor/repeat_3rd.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repeat_3rd.hpp rename to boost-1.81.0/boost/preprocessor/repeat_3rd.hpp diff --git a/boost-1.80.0/boost/preprocessor/repeat_from_to.hpp b/boost-1.81.0/boost/preprocessor/repeat_from_to.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repeat_from_to.hpp rename to boost-1.81.0/boost/preprocessor/repeat_from_to.hpp diff --git a/boost-1.80.0/boost/preprocessor/repeat_from_to_2nd.hpp b/boost-1.81.0/boost/preprocessor/repeat_from_to_2nd.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repeat_from_to_2nd.hpp rename to boost-1.81.0/boost/preprocessor/repeat_from_to_2nd.hpp diff --git a/boost-1.80.0/boost/preprocessor/repeat_from_to_3rd.hpp b/boost-1.81.0/boost/preprocessor/repeat_from_to_3rd.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repeat_from_to_3rd.hpp rename to boost-1.81.0/boost/preprocessor/repeat_from_to_3rd.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition.hpp b/boost-1.81.0/boost/preprocessor/repetition.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition.hpp rename to boost-1.81.0/boost/preprocessor/repetition.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/deduce_r.hpp b/boost-1.81.0/boost/preprocessor/repetition/deduce_r.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/deduce_r.hpp rename to boost-1.81.0/boost/preprocessor/repetition/deduce_r.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/deduce_z.hpp b/boost-1.81.0/boost/preprocessor/repetition/deduce_z.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/deduce_z.hpp rename to boost-1.81.0/boost/preprocessor/repetition/deduce_z.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/dmc/for.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/dmc/for.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/dmc/for.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/dmc/for.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/edg/for.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/edg/for.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/edg/for.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/edg/for.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/edg/limits/for_1024.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/edg/limits/for_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/edg/limits/for_1024.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/edg/limits/for_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/edg/limits/for_256.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/edg/limits/for_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/edg/limits/for_256.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/edg/limits/for_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/edg/limits/for_512.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/edg/limits/for_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/edg/limits/for_512.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/edg/limits/for_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/for.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/for.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/for.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/for.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/limits/for_1024.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/limits/for_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/limits/for_1024.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/limits/for_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/limits/for_256.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/limits/for_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/limits/for_256.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/limits/for_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/limits/for_512.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/limits/for_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/limits/for_512.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/limits/for_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/detail/msvc/for.hpp b/boost-1.81.0/boost/preprocessor/repetition/detail/msvc/for.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/detail/msvc/for.hpp rename to boost-1.81.0/boost/preprocessor/repetition/detail/msvc/for.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_binary_params.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_binary_params.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_binary_params.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_binary_params.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_params.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_params.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_params.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_params.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_params_with_a_default.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_params_with_a_default.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_params_with_a_default.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_params_with_a_default.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_params_with_defaults.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_params_with_defaults.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_params_with_defaults.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_params_with_defaults.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_shifted.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_shifted.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_shifted.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_shifted.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_shifted_binary_params.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_shifted_binary_params.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_shifted_binary_params.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_shifted_binary_params.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_shifted_params.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_shifted_params.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_shifted_params.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_shifted_params.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_trailing.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_trailing.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_trailing.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_trailing.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_trailing_binary_params.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_trailing_binary_params.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_trailing_binary_params.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_trailing_binary_params.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/enum_trailing_params.hpp b/boost-1.81.0/boost/preprocessor/repetition/enum_trailing_params.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/enum_trailing_params.hpp rename to boost-1.81.0/boost/preprocessor/repetition/enum_trailing_params.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/for.hpp b/boost-1.81.0/boost/preprocessor/repetition/for.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/for.hpp rename to boost-1.81.0/boost/preprocessor/repetition/for.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/limits/for_1024.hpp b/boost-1.81.0/boost/preprocessor/repetition/limits/for_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/limits/for_1024.hpp rename to boost-1.81.0/boost/preprocessor/repetition/limits/for_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/limits/for_256.hpp b/boost-1.81.0/boost/preprocessor/repetition/limits/for_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/limits/for_256.hpp rename to boost-1.81.0/boost/preprocessor/repetition/limits/for_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/limits/for_512.hpp b/boost-1.81.0/boost/preprocessor/repetition/limits/for_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/limits/for_512.hpp rename to boost-1.81.0/boost/preprocessor/repetition/limits/for_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/limits/repeat_1024.hpp b/boost-1.81.0/boost/preprocessor/repetition/limits/repeat_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/limits/repeat_1024.hpp rename to boost-1.81.0/boost/preprocessor/repetition/limits/repeat_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/limits/repeat_256.hpp b/boost-1.81.0/boost/preprocessor/repetition/limits/repeat_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/limits/repeat_256.hpp rename to boost-1.81.0/boost/preprocessor/repetition/limits/repeat_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/limits/repeat_512.hpp b/boost-1.81.0/boost/preprocessor/repetition/limits/repeat_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/limits/repeat_512.hpp rename to boost-1.81.0/boost/preprocessor/repetition/limits/repeat_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/repeat.hpp b/boost-1.81.0/boost/preprocessor/repetition/repeat.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/repeat.hpp rename to boost-1.81.0/boost/preprocessor/repetition/repeat.hpp diff --git a/boost-1.80.0/boost/preprocessor/repetition/repeat_from_to.hpp b/boost-1.81.0/boost/preprocessor/repetition/repeat_from_to.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/repetition/repeat_from_to.hpp rename to boost-1.81.0/boost/preprocessor/repetition/repeat_from_to.hpp diff --git a/boost-1.80.0/boost/preprocessor/selection.hpp b/boost-1.81.0/boost/preprocessor/selection.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/selection.hpp rename to boost-1.81.0/boost/preprocessor/selection.hpp diff --git a/boost-1.80.0/boost/preprocessor/selection/max.hpp b/boost-1.81.0/boost/preprocessor/selection/max.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/selection/max.hpp rename to boost-1.81.0/boost/preprocessor/selection/max.hpp diff --git a/boost-1.80.0/boost/preprocessor/selection/min.hpp b/boost-1.81.0/boost/preprocessor/selection/min.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/selection/min.hpp rename to boost-1.81.0/boost/preprocessor/selection/min.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq.hpp b/boost-1.81.0/boost/preprocessor/seq.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq.hpp rename to boost-1.81.0/boost/preprocessor/seq.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/cat.hpp b/boost-1.81.0/boost/preprocessor/seq/cat.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/cat.hpp rename to boost-1.81.0/boost/preprocessor/seq/cat.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/detail/binary_transform.hpp b/boost-1.81.0/boost/preprocessor/seq/detail/binary_transform.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/detail/binary_transform.hpp rename to boost-1.81.0/boost/preprocessor/seq/detail/binary_transform.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/detail/is_empty.hpp b/boost-1.81.0/boost/preprocessor/seq/detail/is_empty.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/detail/is_empty.hpp rename to boost-1.81.0/boost/preprocessor/seq/detail/is_empty.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/detail/limits/split_1024.hpp b/boost-1.81.0/boost/preprocessor/seq/detail/limits/split_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/detail/limits/split_1024.hpp rename to boost-1.81.0/boost/preprocessor/seq/detail/limits/split_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/detail/limits/split_256.hpp b/boost-1.81.0/boost/preprocessor/seq/detail/limits/split_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/detail/limits/split_256.hpp rename to boost-1.81.0/boost/preprocessor/seq/detail/limits/split_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/detail/limits/split_512.hpp b/boost-1.81.0/boost/preprocessor/seq/detail/limits/split_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/detail/limits/split_512.hpp rename to boost-1.81.0/boost/preprocessor/seq/detail/limits/split_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/detail/split.hpp b/boost-1.81.0/boost/preprocessor/seq/detail/split.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/detail/split.hpp rename to boost-1.81.0/boost/preprocessor/seq/detail/split.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/detail/to_list_msvc.hpp b/boost-1.81.0/boost/preprocessor/seq/detail/to_list_msvc.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/detail/to_list_msvc.hpp rename to boost-1.81.0/boost/preprocessor/seq/detail/to_list_msvc.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/elem.hpp b/boost-1.81.0/boost/preprocessor/seq/elem.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/elem.hpp rename to boost-1.81.0/boost/preprocessor/seq/elem.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/enum.hpp b/boost-1.81.0/boost/preprocessor/seq/enum.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/enum.hpp rename to boost-1.81.0/boost/preprocessor/seq/enum.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/filter.hpp b/boost-1.81.0/boost/preprocessor/seq/filter.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/filter.hpp rename to boost-1.81.0/boost/preprocessor/seq/filter.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/first_n.hpp b/boost-1.81.0/boost/preprocessor/seq/first_n.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/first_n.hpp rename to boost-1.81.0/boost/preprocessor/seq/first_n.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/fold_left.hpp b/boost-1.81.0/boost/preprocessor/seq/fold_left.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/fold_left.hpp rename to boost-1.81.0/boost/preprocessor/seq/fold_left.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/fold_right.hpp b/boost-1.81.0/boost/preprocessor/seq/fold_right.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/fold_right.hpp rename to boost-1.81.0/boost/preprocessor/seq/fold_right.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/for_each.hpp b/boost-1.81.0/boost/preprocessor/seq/for_each.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/for_each.hpp rename to boost-1.81.0/boost/preprocessor/seq/for_each.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/for_each_i.hpp b/boost-1.81.0/boost/preprocessor/seq/for_each_i.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/for_each_i.hpp rename to boost-1.81.0/boost/preprocessor/seq/for_each_i.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/for_each_product.hpp b/boost-1.81.0/boost/preprocessor/seq/for_each_product.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/for_each_product.hpp rename to boost-1.81.0/boost/preprocessor/seq/for_each_product.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/insert.hpp b/boost-1.81.0/boost/preprocessor/seq/insert.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/insert.hpp rename to boost-1.81.0/boost/preprocessor/seq/insert.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/elem_1024.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/elem_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/elem_1024.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/elem_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/elem_256.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/elem_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/elem_256.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/elem_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/elem_512.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/elem_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/elem_512.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/elem_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/enum_1024.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/enum_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/enum_1024.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/enum_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/enum_256.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/enum_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/enum_256.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/enum_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/enum_512.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/enum_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/enum_512.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/enum_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/fold_left_1024.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/fold_left_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/fold_left_1024.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/fold_left_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/fold_left_256.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/fold_left_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/fold_left_256.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/fold_left_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/fold_left_512.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/fold_left_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/fold_left_512.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/fold_left_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/fold_right_1024.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/fold_right_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/fold_right_1024.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/fold_right_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/fold_right_256.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/fold_right_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/fold_right_256.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/fold_right_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/fold_right_512.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/fold_right_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/fold_right_512.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/fold_right_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/size_1024.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/size_1024.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/size_1024.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/size_1024.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/size_256.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/size_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/size_256.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/size_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/limits/size_512.hpp b/boost-1.81.0/boost/preprocessor/seq/limits/size_512.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/limits/size_512.hpp rename to boost-1.81.0/boost/preprocessor/seq/limits/size_512.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/pop_back.hpp b/boost-1.81.0/boost/preprocessor/seq/pop_back.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/pop_back.hpp rename to boost-1.81.0/boost/preprocessor/seq/pop_back.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/pop_front.hpp b/boost-1.81.0/boost/preprocessor/seq/pop_front.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/pop_front.hpp rename to boost-1.81.0/boost/preprocessor/seq/pop_front.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/push_back.hpp b/boost-1.81.0/boost/preprocessor/seq/push_back.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/push_back.hpp rename to boost-1.81.0/boost/preprocessor/seq/push_back.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/push_front.hpp b/boost-1.81.0/boost/preprocessor/seq/push_front.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/push_front.hpp rename to boost-1.81.0/boost/preprocessor/seq/push_front.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/remove.hpp b/boost-1.81.0/boost/preprocessor/seq/remove.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/remove.hpp rename to boost-1.81.0/boost/preprocessor/seq/remove.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/replace.hpp b/boost-1.81.0/boost/preprocessor/seq/replace.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/replace.hpp rename to boost-1.81.0/boost/preprocessor/seq/replace.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/rest_n.hpp b/boost-1.81.0/boost/preprocessor/seq/rest_n.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/rest_n.hpp rename to boost-1.81.0/boost/preprocessor/seq/rest_n.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/reverse.hpp b/boost-1.81.0/boost/preprocessor/seq/reverse.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/reverse.hpp rename to boost-1.81.0/boost/preprocessor/seq/reverse.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/seq.hpp b/boost-1.81.0/boost/preprocessor/seq/seq.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/seq.hpp rename to boost-1.81.0/boost/preprocessor/seq/seq.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/size.hpp b/boost-1.81.0/boost/preprocessor/seq/size.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/size.hpp rename to boost-1.81.0/boost/preprocessor/seq/size.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/subseq.hpp b/boost-1.81.0/boost/preprocessor/seq/subseq.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/subseq.hpp rename to boost-1.81.0/boost/preprocessor/seq/subseq.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/to_array.hpp b/boost-1.81.0/boost/preprocessor/seq/to_array.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/to_array.hpp rename to boost-1.81.0/boost/preprocessor/seq/to_array.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/to_list.hpp b/boost-1.81.0/boost/preprocessor/seq/to_list.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/to_list.hpp rename to boost-1.81.0/boost/preprocessor/seq/to_list.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/to_tuple.hpp b/boost-1.81.0/boost/preprocessor/seq/to_tuple.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/to_tuple.hpp rename to boost-1.81.0/boost/preprocessor/seq/to_tuple.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/transform.hpp b/boost-1.81.0/boost/preprocessor/seq/transform.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/transform.hpp rename to boost-1.81.0/boost/preprocessor/seq/transform.hpp diff --git a/boost-1.80.0/boost/preprocessor/seq/variadic_seq_to_seq.hpp b/boost-1.81.0/boost/preprocessor/seq/variadic_seq_to_seq.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/seq/variadic_seq_to_seq.hpp rename to boost-1.81.0/boost/preprocessor/seq/variadic_seq_to_seq.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot.hpp b/boost-1.81.0/boost/preprocessor/slot.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot.hpp rename to boost-1.81.0/boost/preprocessor/slot.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/counter.hpp b/boost-1.81.0/boost/preprocessor/slot/counter.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/counter.hpp rename to boost-1.81.0/boost/preprocessor/slot/counter.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/detail/counter.hpp b/boost-1.81.0/boost/preprocessor/slot/detail/counter.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/detail/counter.hpp rename to boost-1.81.0/boost/preprocessor/slot/detail/counter.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/detail/def.hpp b/boost-1.81.0/boost/preprocessor/slot/detail/def.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/detail/def.hpp rename to boost-1.81.0/boost/preprocessor/slot/detail/def.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/detail/shared.hpp b/boost-1.81.0/boost/preprocessor/slot/detail/shared.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/detail/shared.hpp rename to boost-1.81.0/boost/preprocessor/slot/detail/shared.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/detail/slot1.hpp b/boost-1.81.0/boost/preprocessor/slot/detail/slot1.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/detail/slot1.hpp rename to boost-1.81.0/boost/preprocessor/slot/detail/slot1.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/detail/slot2.hpp b/boost-1.81.0/boost/preprocessor/slot/detail/slot2.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/detail/slot2.hpp rename to boost-1.81.0/boost/preprocessor/slot/detail/slot2.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/detail/slot3.hpp b/boost-1.81.0/boost/preprocessor/slot/detail/slot3.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/detail/slot3.hpp rename to boost-1.81.0/boost/preprocessor/slot/detail/slot3.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/detail/slot4.hpp b/boost-1.81.0/boost/preprocessor/slot/detail/slot4.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/detail/slot4.hpp rename to boost-1.81.0/boost/preprocessor/slot/detail/slot4.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/detail/slot5.hpp b/boost-1.81.0/boost/preprocessor/slot/detail/slot5.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/detail/slot5.hpp rename to boost-1.81.0/boost/preprocessor/slot/detail/slot5.hpp diff --git a/boost-1.80.0/boost/preprocessor/slot/slot.hpp b/boost-1.81.0/boost/preprocessor/slot/slot.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/slot/slot.hpp rename to boost-1.81.0/boost/preprocessor/slot/slot.hpp diff --git a/boost-1.80.0/boost/preprocessor/stringize.hpp b/boost-1.81.0/boost/preprocessor/stringize.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/stringize.hpp rename to boost-1.81.0/boost/preprocessor/stringize.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple.hpp b/boost-1.81.0/boost/preprocessor/tuple.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple.hpp rename to boost-1.81.0/boost/preprocessor/tuple.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/detail/is_single_return.hpp b/boost-1.81.0/boost/preprocessor/tuple/detail/is_single_return.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/detail/is_single_return.hpp rename to boost-1.81.0/boost/preprocessor/tuple/detail/is_single_return.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/eat.hpp b/boost-1.81.0/boost/preprocessor/tuple/eat.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/eat.hpp rename to boost-1.81.0/boost/preprocessor/tuple/eat.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/elem.hpp b/boost-1.81.0/boost/preprocessor/tuple/elem.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/elem.hpp rename to boost-1.81.0/boost/preprocessor/tuple/elem.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/enum.hpp b/boost-1.81.0/boost/preprocessor/tuple/enum.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/enum.hpp rename to boost-1.81.0/boost/preprocessor/tuple/enum.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/insert.hpp b/boost-1.81.0/boost/preprocessor/tuple/insert.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/insert.hpp rename to boost-1.81.0/boost/preprocessor/tuple/insert.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/limits/reverse_128.hpp b/boost-1.81.0/boost/preprocessor/tuple/limits/reverse_128.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/limits/reverse_128.hpp rename to boost-1.81.0/boost/preprocessor/tuple/limits/reverse_128.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/limits/reverse_256.hpp b/boost-1.81.0/boost/preprocessor/tuple/limits/reverse_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/limits/reverse_256.hpp rename to boost-1.81.0/boost/preprocessor/tuple/limits/reverse_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/limits/reverse_64.hpp b/boost-1.81.0/boost/preprocessor/tuple/limits/reverse_64.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/limits/reverse_64.hpp rename to boost-1.81.0/boost/preprocessor/tuple/limits/reverse_64.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/limits/to_list_128.hpp b/boost-1.81.0/boost/preprocessor/tuple/limits/to_list_128.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/limits/to_list_128.hpp rename to boost-1.81.0/boost/preprocessor/tuple/limits/to_list_128.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/limits/to_list_256.hpp b/boost-1.81.0/boost/preprocessor/tuple/limits/to_list_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/limits/to_list_256.hpp rename to boost-1.81.0/boost/preprocessor/tuple/limits/to_list_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/limits/to_list_64.hpp b/boost-1.81.0/boost/preprocessor/tuple/limits/to_list_64.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/limits/to_list_64.hpp rename to boost-1.81.0/boost/preprocessor/tuple/limits/to_list_64.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/limits/to_seq_128.hpp b/boost-1.81.0/boost/preprocessor/tuple/limits/to_seq_128.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/limits/to_seq_128.hpp rename to boost-1.81.0/boost/preprocessor/tuple/limits/to_seq_128.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/limits/to_seq_256.hpp b/boost-1.81.0/boost/preprocessor/tuple/limits/to_seq_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/limits/to_seq_256.hpp rename to boost-1.81.0/boost/preprocessor/tuple/limits/to_seq_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/limits/to_seq_64.hpp b/boost-1.81.0/boost/preprocessor/tuple/limits/to_seq_64.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/limits/to_seq_64.hpp rename to boost-1.81.0/boost/preprocessor/tuple/limits/to_seq_64.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/pop_back.hpp b/boost-1.81.0/boost/preprocessor/tuple/pop_back.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/pop_back.hpp rename to boost-1.81.0/boost/preprocessor/tuple/pop_back.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/pop_front.hpp b/boost-1.81.0/boost/preprocessor/tuple/pop_front.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/pop_front.hpp rename to boost-1.81.0/boost/preprocessor/tuple/pop_front.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/push_back.hpp b/boost-1.81.0/boost/preprocessor/tuple/push_back.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/push_back.hpp rename to boost-1.81.0/boost/preprocessor/tuple/push_back.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/push_front.hpp b/boost-1.81.0/boost/preprocessor/tuple/push_front.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/push_front.hpp rename to boost-1.81.0/boost/preprocessor/tuple/push_front.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/rem.hpp b/boost-1.81.0/boost/preprocessor/tuple/rem.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/rem.hpp rename to boost-1.81.0/boost/preprocessor/tuple/rem.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/remove.hpp b/boost-1.81.0/boost/preprocessor/tuple/remove.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/remove.hpp rename to boost-1.81.0/boost/preprocessor/tuple/remove.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/replace.hpp b/boost-1.81.0/boost/preprocessor/tuple/replace.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/replace.hpp rename to boost-1.81.0/boost/preprocessor/tuple/replace.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/reverse.hpp b/boost-1.81.0/boost/preprocessor/tuple/reverse.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/reverse.hpp rename to boost-1.81.0/boost/preprocessor/tuple/reverse.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/size.hpp b/boost-1.81.0/boost/preprocessor/tuple/size.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/size.hpp rename to boost-1.81.0/boost/preprocessor/tuple/size.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/to_array.hpp b/boost-1.81.0/boost/preprocessor/tuple/to_array.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/to_array.hpp rename to boost-1.81.0/boost/preprocessor/tuple/to_array.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/to_list.hpp b/boost-1.81.0/boost/preprocessor/tuple/to_list.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/to_list.hpp rename to boost-1.81.0/boost/preprocessor/tuple/to_list.hpp diff --git a/boost-1.80.0/boost/preprocessor/tuple/to_seq.hpp b/boost-1.81.0/boost/preprocessor/tuple/to_seq.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/tuple/to_seq.hpp rename to boost-1.81.0/boost/preprocessor/tuple/to_seq.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic.hpp b/boost-1.81.0/boost/preprocessor/variadic.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic.hpp rename to boost-1.81.0/boost/preprocessor/variadic.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/detail/has_opt.hpp b/boost-1.81.0/boost/preprocessor/variadic/detail/has_opt.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/detail/has_opt.hpp rename to boost-1.81.0/boost/preprocessor/variadic/detail/has_opt.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/detail/is_single_return.hpp b/boost-1.81.0/boost/preprocessor/variadic/detail/is_single_return.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/detail/is_single_return.hpp rename to boost-1.81.0/boost/preprocessor/variadic/detail/is_single_return.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/elem.hpp b/boost-1.81.0/boost/preprocessor/variadic/elem.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/elem.hpp rename to boost-1.81.0/boost/preprocessor/variadic/elem.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/has_opt.hpp b/boost-1.81.0/boost/preprocessor/variadic/has_opt.hpp similarity index 81% rename from boost-1.80.0/boost/preprocessor/variadic/has_opt.hpp rename to boost-1.81.0/boost/preprocessor/variadic/has_opt.hpp index b2cceff..7054e94 100644 --- a/boost-1.80.0/boost/preprocessor/variadic/has_opt.hpp +++ b/boost-1.81.0/boost/preprocessor/variadic/has_opt.hpp @@ -17,10 +17,14 @@ # /* BOOST_PP_VARIADIC_HAS_OPT */ # # if defined(__cplusplus) && __cplusplus > 201703L -# include -# define BOOST_PP_VARIADIC_HAS_OPT() \ +# if defined(__GNUC__) && !defined(__clang__) && __GNUC__ >= 8 && __GNUC__ < 10 +# define BOOST_PP_VARIADIC_HAS_OPT() 0 +# else +# include +# define BOOST_PP_VARIADIC_HAS_OPT() \ BOOST_PP_VARIADIC_HAS_OPT_ELEM2(BOOST_PP_VARIADIC_HAS_OPT_FUNCTION(?),) \ /**/ +# endif # else # define BOOST_PP_VARIADIC_HAS_OPT() 0 # endif diff --git a/boost-1.80.0/boost/preprocessor/variadic/limits/elem_128.hpp b/boost-1.81.0/boost/preprocessor/variadic/limits/elem_128.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/limits/elem_128.hpp rename to boost-1.81.0/boost/preprocessor/variadic/limits/elem_128.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/limits/elem_256.hpp b/boost-1.81.0/boost/preprocessor/variadic/limits/elem_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/limits/elem_256.hpp rename to boost-1.81.0/boost/preprocessor/variadic/limits/elem_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/limits/elem_64.hpp b/boost-1.81.0/boost/preprocessor/variadic/limits/elem_64.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/limits/elem_64.hpp rename to boost-1.81.0/boost/preprocessor/variadic/limits/elem_64.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/limits/size_128.hpp b/boost-1.81.0/boost/preprocessor/variadic/limits/size_128.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/limits/size_128.hpp rename to boost-1.81.0/boost/preprocessor/variadic/limits/size_128.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/limits/size_256.hpp b/boost-1.81.0/boost/preprocessor/variadic/limits/size_256.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/limits/size_256.hpp rename to boost-1.81.0/boost/preprocessor/variadic/limits/size_256.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/limits/size_64.hpp b/boost-1.81.0/boost/preprocessor/variadic/limits/size_64.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/limits/size_64.hpp rename to boost-1.81.0/boost/preprocessor/variadic/limits/size_64.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/size.hpp b/boost-1.81.0/boost/preprocessor/variadic/size.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/size.hpp rename to boost-1.81.0/boost/preprocessor/variadic/size.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/to_array.hpp b/boost-1.81.0/boost/preprocessor/variadic/to_array.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/to_array.hpp rename to boost-1.81.0/boost/preprocessor/variadic/to_array.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/to_list.hpp b/boost-1.81.0/boost/preprocessor/variadic/to_list.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/to_list.hpp rename to boost-1.81.0/boost/preprocessor/variadic/to_list.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/to_seq.hpp b/boost-1.81.0/boost/preprocessor/variadic/to_seq.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/to_seq.hpp rename to boost-1.81.0/boost/preprocessor/variadic/to_seq.hpp diff --git a/boost-1.80.0/boost/preprocessor/variadic/to_tuple.hpp b/boost-1.81.0/boost/preprocessor/variadic/to_tuple.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/variadic/to_tuple.hpp rename to boost-1.81.0/boost/preprocessor/variadic/to_tuple.hpp diff --git a/boost-1.80.0/boost/preprocessor/while.hpp b/boost-1.81.0/boost/preprocessor/while.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/while.hpp rename to boost-1.81.0/boost/preprocessor/while.hpp diff --git a/boost-1.80.0/boost/preprocessor/wstringize.hpp b/boost-1.81.0/boost/preprocessor/wstringize.hpp similarity index 100% rename from boost-1.80.0/boost/preprocessor/wstringize.hpp rename to boost-1.81.0/boost/preprocessor/wstringize.hpp diff --git a/boost-1.80.0/boost/smart_ptr/allocate_local_shared_array.hpp b/boost-1.81.0/boost/smart_ptr/allocate_local_shared_array.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/allocate_local_shared_array.hpp rename to boost-1.81.0/boost/smart_ptr/allocate_local_shared_array.hpp diff --git a/boost-1.80.0/boost/smart_ptr/allocate_shared_array.hpp b/boost-1.81.0/boost/smart_ptr/allocate_shared_array.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/allocate_shared_array.hpp rename to boost-1.81.0/boost/smart_ptr/allocate_shared_array.hpp diff --git a/boost-1.80.0/boost/smart_ptr/allocate_unique.hpp b/boost-1.81.0/boost/smart_ptr/allocate_unique.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/allocate_unique.hpp rename to boost-1.81.0/boost/smart_ptr/allocate_unique.hpp diff --git a/boost-1.80.0/boost/smart_ptr/atomic_shared_ptr.hpp b/boost-1.81.0/boost/smart_ptr/atomic_shared_ptr.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/atomic_shared_ptr.hpp rename to boost-1.81.0/boost/smart_ptr/atomic_shared_ptr.hpp diff --git a/boost-1.80.0/boost/smart_ptr/bad_weak_ptr.hpp b/boost-1.81.0/boost/smart_ptr/bad_weak_ptr.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/bad_weak_ptr.hpp rename to boost-1.81.0/boost/smart_ptr/bad_weak_ptr.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count_gcc.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count_gcc.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count_gcc.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count_gcc.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count_gcc_atomic.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count_gcc_x86.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count_nt.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count_nt.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count_nt.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count_nt.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count_pt.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count_pt.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count_pt.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count_pt.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count_spin.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count_spin.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count_spin.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count_spin.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count_std_atomic.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count_std_atomic.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count_std_atomic.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count_std_atomic.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count_sync.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count_sync.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count_sync.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count_sync.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/atomic_count_win32.hpp b/boost-1.81.0/boost/smart_ptr/detail/atomic_count_win32.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/atomic_count_win32.hpp rename to boost-1.81.0/boost/smart_ptr/detail/atomic_count_win32.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/lightweight_mutex.hpp b/boost-1.81.0/boost/smart_ptr/detail/lightweight_mutex.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/lightweight_mutex.hpp rename to boost-1.81.0/boost/smart_ptr/detail/lightweight_mutex.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/lightweight_thread.hpp b/boost-1.81.0/boost/smart_ptr/detail/lightweight_thread.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/lightweight_thread.hpp rename to boost-1.81.0/boost/smart_ptr/detail/lightweight_thread.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/local_counted_base.hpp b/boost-1.81.0/boost/smart_ptr/detail/local_counted_base.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/local_counted_base.hpp rename to boost-1.81.0/boost/smart_ptr/detail/local_counted_base.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/local_sp_deleter.hpp b/boost-1.81.0/boost/smart_ptr/detail/local_sp_deleter.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/local_sp_deleter.hpp rename to boost-1.81.0/boost/smart_ptr/detail/local_sp_deleter.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/lwm_pthreads.hpp b/boost-1.81.0/boost/smart_ptr/detail/lwm_pthreads.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/lwm_pthreads.hpp rename to boost-1.81.0/boost/smart_ptr/detail/lwm_pthreads.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/lwm_std_mutex.hpp b/boost-1.81.0/boost/smart_ptr/detail/lwm_std_mutex.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/lwm_std_mutex.hpp rename to boost-1.81.0/boost/smart_ptr/detail/lwm_std_mutex.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/lwm_win32_cs.hpp b/boost-1.81.0/boost/smart_ptr/detail/lwm_win32_cs.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/lwm_win32_cs.hpp rename to boost-1.81.0/boost/smart_ptr/detail/lwm_win32_cs.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/operator_bool.hpp b/boost-1.81.0/boost/smart_ptr/detail/operator_bool.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/operator_bool.hpp rename to boost-1.81.0/boost/smart_ptr/detail/operator_bool.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/quick_allocator.hpp b/boost-1.81.0/boost/smart_ptr/detail/quick_allocator.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/quick_allocator.hpp rename to boost-1.81.0/boost/smart_ptr/detail/quick_allocator.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/shared_count.hpp b/boost-1.81.0/boost/smart_ptr/detail/shared_count.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/shared_count.hpp rename to boost-1.81.0/boost/smart_ptr/detail/shared_count.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_convertible.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_convertible.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_convertible.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_convertible.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_aix.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_aix.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_aix.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_aix.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_atomic.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_nt.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_nt.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_nt.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_nt.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_pt.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_pt.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_pt.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_pt.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_spin.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_spin.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_spin.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_spin.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_sync.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_sync.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_sync.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_sync.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_w32.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_w32.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_base_w32.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_base_w32.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_counted_impl.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_counted_impl.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_counted_impl.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_counted_impl.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_disable_deprecated.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_disable_deprecated.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_disable_deprecated.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_disable_deprecated.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_forward.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_forward.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_forward.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_forward.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_has_sync_intrinsics.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_interlocked.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_interlocked.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_interlocked.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_interlocked.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_noexcept.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_noexcept.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_noexcept.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_noexcept.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_nullptr_t.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_nullptr_t.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_nullptr_t.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_nullptr_t.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_obsolete.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_obsolete.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_obsolete.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_obsolete.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_thread_pause.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_thread_pause.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_thread_pause.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_thread_pause.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_thread_sleep.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_thread_sleep.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_thread_sleep.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_thread_sleep.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_thread_yield.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_thread_yield.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_thread_yield.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_thread_yield.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_typeinfo_.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_typeinfo_.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_typeinfo_.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_typeinfo_.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/sp_win32_sleep.hpp b/boost-1.81.0/boost/smart_ptr/detail/sp_win32_sleep.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/sp_win32_sleep.hpp rename to boost-1.81.0/boost/smart_ptr/detail/sp_win32_sleep.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/spinlock.hpp b/boost-1.81.0/boost/smart_ptr/detail/spinlock.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/spinlock.hpp rename to boost-1.81.0/boost/smart_ptr/detail/spinlock.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/spinlock_gcc_arm.hpp b/boost-1.81.0/boost/smart_ptr/detail/spinlock_gcc_arm.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/spinlock_gcc_arm.hpp rename to boost-1.81.0/boost/smart_ptr/detail/spinlock_gcc_arm.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp b/boost-1.81.0/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp similarity index 81% rename from boost-1.80.0/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp rename to boost-1.81.0/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp index 8cd7179..d87b844 100644 --- a/boost-1.80.0/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp +++ b/boost-1.81.0/boost/smart_ptr/detail/spinlock_gcc_atomic.hpp @@ -30,7 +30,16 @@ class spinlock { public: - unsigned char v_; + // `bool` alignment is required for Apple PPC32 + // https://github.com/boostorg/smart_ptr/issues/105 + // https://github.com/PurpleI2P/i2pd/issues/1726 + // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107590 + + union + { + unsigned char v_; + bool align_; + }; public: @@ -80,6 +89,6 @@ public: } // namespace detail } // namespace boost -#define BOOST_DETAIL_SPINLOCK_INIT {0} +#define BOOST_DETAIL_SPINLOCK_INIT {{0}} #endif // #ifndef BOOST_SMART_PTR_DETAIL_SPINLOCK_GCC_ATOMIC_HPP_INCLUDED diff --git a/boost-1.80.0/boost/smart_ptr/detail/spinlock_nt.hpp b/boost-1.81.0/boost/smart_ptr/detail/spinlock_nt.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/spinlock_nt.hpp rename to boost-1.81.0/boost/smart_ptr/detail/spinlock_nt.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/spinlock_pool.hpp b/boost-1.81.0/boost/smart_ptr/detail/spinlock_pool.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/spinlock_pool.hpp rename to boost-1.81.0/boost/smart_ptr/detail/spinlock_pool.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/spinlock_pt.hpp b/boost-1.81.0/boost/smart_ptr/detail/spinlock_pt.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/spinlock_pt.hpp rename to boost-1.81.0/boost/smart_ptr/detail/spinlock_pt.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/spinlock_std_atomic.hpp b/boost-1.81.0/boost/smart_ptr/detail/spinlock_std_atomic.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/spinlock_std_atomic.hpp rename to boost-1.81.0/boost/smart_ptr/detail/spinlock_std_atomic.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/spinlock_sync.hpp b/boost-1.81.0/boost/smart_ptr/detail/spinlock_sync.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/spinlock_sync.hpp rename to boost-1.81.0/boost/smart_ptr/detail/spinlock_sync.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/spinlock_w32.hpp b/boost-1.81.0/boost/smart_ptr/detail/spinlock_w32.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/spinlock_w32.hpp rename to boost-1.81.0/boost/smart_ptr/detail/spinlock_w32.hpp diff --git a/boost-1.80.0/boost/smart_ptr/detail/yield_k.hpp b/boost-1.81.0/boost/smart_ptr/detail/yield_k.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/detail/yield_k.hpp rename to boost-1.81.0/boost/smart_ptr/detail/yield_k.hpp diff --git a/boost-1.80.0/boost/smart_ptr/enable_shared_from.hpp b/boost-1.81.0/boost/smart_ptr/enable_shared_from.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/enable_shared_from.hpp rename to boost-1.81.0/boost/smart_ptr/enable_shared_from.hpp diff --git a/boost-1.80.0/boost/smart_ptr/enable_shared_from_raw.hpp b/boost-1.81.0/boost/smart_ptr/enable_shared_from_raw.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/enable_shared_from_raw.hpp rename to boost-1.81.0/boost/smart_ptr/enable_shared_from_raw.hpp diff --git a/boost-1.80.0/boost/smart_ptr/enable_shared_from_this.hpp b/boost-1.81.0/boost/smart_ptr/enable_shared_from_this.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/enable_shared_from_this.hpp rename to boost-1.81.0/boost/smart_ptr/enable_shared_from_this.hpp diff --git a/boost-1.80.0/boost/smart_ptr/intrusive_ptr.hpp b/boost-1.81.0/boost/smart_ptr/intrusive_ptr.hpp similarity index 99% rename from boost-1.80.0/boost/smart_ptr/intrusive_ptr.hpp rename to boost-1.81.0/boost/smart_ptr/intrusive_ptr.hpp index ef682df..895a12f 100644 --- a/boost-1.80.0/boost/smart_ptr/intrusive_ptr.hpp +++ b/boost-1.81.0/boost/smart_ptr/intrusive_ptr.hpp @@ -245,7 +245,7 @@ template inline bool operator!=(T * a, intrusive_ptr const return a != b.get(); } -#if __GNUC__ == 2 && __GNUC_MINOR__ <= 96 +#if defined(__GNUC__) && __GNUC__ == 2 && __GNUC_MINOR__ <= 96 // Resolve the ambiguity between our op!= and the one in rel_ops diff --git a/boost-1.80.0/boost/smart_ptr/intrusive_ref_counter.hpp b/boost-1.81.0/boost/smart_ptr/intrusive_ref_counter.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/intrusive_ref_counter.hpp rename to boost-1.81.0/boost/smart_ptr/intrusive_ref_counter.hpp diff --git a/boost-1.80.0/boost/smart_ptr/local_shared_ptr.hpp b/boost-1.81.0/boost/smart_ptr/local_shared_ptr.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/local_shared_ptr.hpp rename to boost-1.81.0/boost/smart_ptr/local_shared_ptr.hpp diff --git a/boost-1.80.0/boost/smart_ptr/make_local_shared.hpp b/boost-1.81.0/boost/smart_ptr/make_local_shared.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/make_local_shared.hpp rename to boost-1.81.0/boost/smart_ptr/make_local_shared.hpp diff --git a/boost-1.80.0/boost/smart_ptr/make_local_shared_array.hpp b/boost-1.81.0/boost/smart_ptr/make_local_shared_array.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/make_local_shared_array.hpp rename to boost-1.81.0/boost/smart_ptr/make_local_shared_array.hpp diff --git a/boost-1.80.0/boost/smart_ptr/make_local_shared_object.hpp b/boost-1.81.0/boost/smart_ptr/make_local_shared_object.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/make_local_shared_object.hpp rename to boost-1.81.0/boost/smart_ptr/make_local_shared_object.hpp diff --git a/boost-1.80.0/boost/smart_ptr/make_shared.hpp b/boost-1.81.0/boost/smart_ptr/make_shared.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/make_shared.hpp rename to boost-1.81.0/boost/smart_ptr/make_shared.hpp diff --git a/boost-1.80.0/boost/smart_ptr/make_shared_array.hpp b/boost-1.81.0/boost/smart_ptr/make_shared_array.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/make_shared_array.hpp rename to boost-1.81.0/boost/smart_ptr/make_shared_array.hpp diff --git a/boost-1.80.0/boost/smart_ptr/make_shared_object.hpp b/boost-1.81.0/boost/smart_ptr/make_shared_object.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/make_shared_object.hpp rename to boost-1.81.0/boost/smart_ptr/make_shared_object.hpp diff --git a/boost-1.80.0/boost/smart_ptr/make_unique.hpp b/boost-1.81.0/boost/smart_ptr/make_unique.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/make_unique.hpp rename to boost-1.81.0/boost/smart_ptr/make_unique.hpp diff --git a/boost-1.80.0/boost/smart_ptr/owner_equal_to.hpp b/boost-1.81.0/boost/smart_ptr/owner_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/owner_equal_to.hpp rename to boost-1.81.0/boost/smart_ptr/owner_equal_to.hpp diff --git a/boost-1.80.0/boost/smart_ptr/owner_hash.hpp b/boost-1.81.0/boost/smart_ptr/owner_hash.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/owner_hash.hpp rename to boost-1.81.0/boost/smart_ptr/owner_hash.hpp diff --git a/boost-1.80.0/boost/smart_ptr/owner_less.hpp b/boost-1.81.0/boost/smart_ptr/owner_less.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/owner_less.hpp rename to boost-1.81.0/boost/smart_ptr/owner_less.hpp diff --git a/boost-1.80.0/boost/smart_ptr/scoped_array.hpp b/boost-1.81.0/boost/smart_ptr/scoped_array.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/scoped_array.hpp rename to boost-1.81.0/boost/smart_ptr/scoped_array.hpp diff --git a/boost-1.80.0/boost/smart_ptr/scoped_ptr.hpp b/boost-1.81.0/boost/smart_ptr/scoped_ptr.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/scoped_ptr.hpp rename to boost-1.81.0/boost/smart_ptr/scoped_ptr.hpp diff --git a/boost-1.80.0/boost/smart_ptr/shared_array.hpp b/boost-1.81.0/boost/smart_ptr/shared_array.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/shared_array.hpp rename to boost-1.81.0/boost/smart_ptr/shared_array.hpp diff --git a/boost-1.80.0/boost/smart_ptr/shared_ptr.hpp b/boost-1.81.0/boost/smart_ptr/shared_ptr.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/shared_ptr.hpp rename to boost-1.81.0/boost/smart_ptr/shared_ptr.hpp diff --git a/boost-1.80.0/boost/smart_ptr/weak_ptr.hpp b/boost-1.81.0/boost/smart_ptr/weak_ptr.hpp similarity index 100% rename from boost-1.80.0/boost/smart_ptr/weak_ptr.hpp rename to boost-1.81.0/boost/smart_ptr/weak_ptr.hpp diff --git a/boost-1.80.0/boost/static_assert.hpp b/boost-1.81.0/boost/static_assert.hpp similarity index 100% rename from boost-1.80.0/boost/static_assert.hpp rename to boost-1.81.0/boost/static_assert.hpp diff --git a/boost-1.80.0/boost/system/api_config.hpp b/boost-1.81.0/boost/system/api_config.hpp similarity index 100% rename from boost-1.80.0/boost/system/api_config.hpp rename to boost-1.81.0/boost/system/api_config.hpp diff --git a/boost-1.80.0/boost/system/config.hpp b/boost-1.81.0/boost/system/config.hpp similarity index 100% rename from boost-1.80.0/boost/system/config.hpp rename to boost-1.81.0/boost/system/config.hpp diff --git a/boost-1.80.0/boost/system/cygwin_error.hpp b/boost-1.81.0/boost/system/cygwin_error.hpp similarity index 100% rename from boost-1.80.0/boost/system/cygwin_error.hpp rename to boost-1.81.0/boost/system/cygwin_error.hpp diff --git a/boost-1.80.0/boost/system/detail/append_int.hpp b/boost-1.81.0/boost/system/detail/append_int.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/append_int.hpp rename to boost-1.81.0/boost/system/detail/append_int.hpp diff --git a/boost-1.80.0/boost/system/detail/cerrno.hpp b/boost-1.81.0/boost/system/detail/cerrno.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/cerrno.hpp rename to boost-1.81.0/boost/system/detail/cerrno.hpp diff --git a/boost-1.80.0/boost/system/detail/config.hpp b/boost-1.81.0/boost/system/detail/config.hpp similarity index 87% rename from boost-1.80.0/boost/system/detail/config.hpp rename to boost-1.81.0/boost/system/detail/config.hpp index ad958bc..2dbb2f9 100644 --- a/boost-1.80.0/boost/system/detail/config.hpp +++ b/boost-1.81.0/boost/system/detail/config.hpp @@ -12,8 +12,14 @@ #include // BOOST_SYSTEM_HAS_SYSTEM_ERROR +// +// The macro BOOST_SYSTEM_DISABLE_THREADS can be defined on configurations +// that provide and , but not , such as the +// single-threaded libstdc++. +// +// https://github.com/boostorg/system/issues/92 -#if !defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR) && !defined(BOOST_NO_CXX11_HDR_ATOMIC) && !defined(BOOST_NO_CXX11_HDR_MUTEX) +#if !defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR) && !defined(BOOST_NO_CXX11_HDR_ATOMIC) && ( !defined(BOOST_NO_CXX11_HDR_MUTEX) || defined(BOOST_SYSTEM_DISABLE_THREADS) ) # define BOOST_SYSTEM_HAS_SYSTEM_ERROR #endif diff --git a/boost-1.80.0/boost/system/detail/enable_if.hpp b/boost-1.81.0/boost/system/detail/enable_if.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/enable_if.hpp rename to boost-1.81.0/boost/system/detail/enable_if.hpp diff --git a/boost-1.80.0/boost/system/detail/errc.hpp b/boost-1.81.0/boost/system/detail/errc.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/errc.hpp rename to boost-1.81.0/boost/system/detail/errc.hpp diff --git a/boost-1.80.0/boost/system/detail/error_category.hpp b/boost-1.81.0/boost/system/detail/error_category.hpp similarity index 98% rename from boost-1.80.0/boost/system/detail/error_category.hpp rename to boost-1.81.0/boost/system/detail/error_category.hpp index 6185423..40b65f4 100644 --- a/boost-1.80.0/boost/system/detail/error_category.hpp +++ b/boost-1.81.0/boost/system/detail/error_category.hpp @@ -48,7 +48,7 @@ class std_category; #pragma GCC diagnostic ignored "-Wnon-virtual-dtor" #endif -#if defined(BOOST_MSVC) +#if defined(BOOST_MSVC) && BOOST_MSVC < 1900 #pragma warning(push) #pragma warning(disable: 4351) // new behavior: elements of array will be default initialized #endif @@ -183,7 +183,7 @@ public: #endif }; -#if defined(BOOST_MSVC) +#if defined(BOOST_MSVC) && BOOST_MSVC < 1900 #pragma warning(pop) #endif diff --git a/boost-1.80.0/boost/system/detail/error_category_impl.hpp b/boost-1.81.0/boost/system/detail/error_category_impl.hpp similarity index 96% rename from boost-1.80.0/boost/system/detail/error_category_impl.hpp rename to boost-1.81.0/boost/system/detail/error_category_impl.hpp index 982c667..904a3a6 100644 --- a/boost-1.80.0/boost/system/detail/error_category_impl.hpp +++ b/boost-1.81.0/boost/system/detail/error_category_impl.hpp @@ -98,14 +98,19 @@ inline char const * error_category::message( int ev, char * buffer, std::size_t #if defined(BOOST_SYSTEM_HAS_SYSTEM_ERROR) #include -#include #include +#if !defined(BOOST_SYSTEM_DISABLE_THREADS) +# include +#endif + namespace boost { namespace system { +#if !defined(BOOST_SYSTEM_DISABLE_THREADS) + namespace detail { @@ -118,6 +123,8 @@ template std::mutex stdcat_mx_holder::mx_; } // namespace detail +#endif + inline void error_category::init_stdcat() const { static_assert( sizeof( stdcat_ ) >= sizeof( boost::system::detail::std_category ), "sizeof(stdcat_) is not enough for std_category" ); @@ -130,7 +137,9 @@ inline void error_category::init_stdcat() const #endif +#if !defined(BOOST_SYSTEM_DISABLE_THREADS) std::lock_guard lk( boost::system::detail::stdcat_mx_holder<>::mx_ ); +#endif if( sc_init_.load( std::memory_order_acquire ) == 0 ) { diff --git a/boost-1.80.0/boost/system/detail/error_code.hpp b/boost-1.81.0/boost/system/detail/error_code.hpp similarity index 93% rename from boost-1.80.0/boost/system/detail/error_code.hpp rename to boost-1.81.0/boost/system/detail/error_code.hpp index 584b4b3..1189fb4 100644 --- a/boost-1.80.0/boost/system/detail/error_code.hpp +++ b/boost-1.81.0/boost/system/detail/error_code.hpp @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include @@ -57,12 +58,14 @@ namespace system // and error_code containing a pointer to an object of a type derived // from error_category. +bool operator==( const error_code & code, const error_condition & condition ) BOOST_NOEXCEPT; std::size_t hash_value( error_code const & ec ); class error_code { private: + friend bool operator==( const error_code & code, const error_condition & condition ) BOOST_NOEXCEPT; friend std::size_t hash_value( error_code const & ec ); private: @@ -114,7 +117,10 @@ public: // constructors: - BOOST_SYSTEM_CONSTEXPR error_code() BOOST_NOEXCEPT: +#if !BOOST_WORKAROUND(BOOST_GCC, < 40800) + BOOST_CONSTEXPR +#endif + error_code() BOOST_NOEXCEPT: d1_(), lc_flags_( 0 ) { } @@ -434,48 +440,6 @@ public: return !( lhs == rhs ); } - inline friend bool operator==( const error_code & code, const error_condition & condition ) BOOST_NOEXCEPT - { -#if defined(BOOST_SYSTEM_HAS_SYSTEM_ERROR) - - if( code.lc_flags_ == 1 ) - { - return static_cast( code ) == static_cast( condition ); - } - else - -#endif - { - return code.category().equivalent( code.value(), condition ) || condition.category().equivalent( code, condition.value() ); - } - } - - inline friend bool operator==( const error_condition & condition, const error_code & code ) BOOST_NOEXCEPT - { -#if defined(BOOST_SYSTEM_HAS_SYSTEM_ERROR) - - if( code.lc_flags_ == 1 ) - { - return static_cast( code ) == static_cast( condition ); - } - else - -#endif - { - return code.category().equivalent( code.value(), condition ) || condition.category().equivalent( code, condition.value() ); - } - } - - inline friend bool operator!=( const error_code & lhs, const error_condition & rhs ) BOOST_NOEXCEPT - { - return !( lhs == rhs ); - } - - inline friend bool operator!=( const error_condition & lhs, const error_code & rhs ) BOOST_NOEXCEPT - { - return !( lhs == rhs ); - } - #if defined(BOOST_SYSTEM_HAS_SYSTEM_ERROR) inline friend bool operator==( std::error_code const & lhs, error_code const & rhs ) BOOST_NOEXCEPT @@ -678,6 +642,37 @@ public: } }; +inline bool operator==( const error_code & code, const error_condition & condition ) BOOST_NOEXCEPT +{ +#if defined(BOOST_SYSTEM_HAS_SYSTEM_ERROR) + + if( code.lc_flags_ == 1 ) + { + return static_cast( code ) == static_cast( condition ); + } + else + +#endif + { + return code.category().equivalent( code.value(), condition ) || condition.category().equivalent( code, condition.value() ); + } +} + +inline bool operator==( const error_condition & condition, const error_code & code ) BOOST_NOEXCEPT +{ + return code == condition; +} + +inline bool operator!=( const error_code & lhs, const error_condition & rhs ) BOOST_NOEXCEPT +{ + return !( lhs == rhs ); +} + +inline bool operator!=( const error_condition & lhs, const error_code & rhs ) BOOST_NOEXCEPT +{ + return !( lhs == rhs ); +} + inline std::size_t hash_value( error_code const & ec ) { #if defined(BOOST_SYSTEM_HAS_SYSTEM_ERROR) diff --git a/boost-1.80.0/boost/system/detail/error_condition.hpp b/boost-1.81.0/boost/system/detail/error_condition.hpp similarity index 78% rename from boost-1.80.0/boost/system/detail/error_condition.hpp rename to boost-1.81.0/boost/system/detail/error_condition.hpp index a7e35ab..b2da281 100644 --- a/boost-1.80.0/boost/system/detail/error_condition.hpp +++ b/boost-1.81.0/boost/system/detail/error_condition.hpp @@ -261,6 +261,58 @@ public: return !( lhs == rhs ); } + // + + template::value>::type> + BOOST_SYSTEM_CONSTEXPR inline friend bool operator==( error_condition const & lhs, E rhs ) BOOST_NOEXCEPT + { + return lhs == make_error_condition( rhs ); + } + + template::value>::type> + BOOST_SYSTEM_CONSTEXPR inline friend bool operator==( E lhs, error_condition const & rhs ) BOOST_NOEXCEPT + { + return make_error_condition( lhs ) == rhs; + } + + template::value>::type> + BOOST_SYSTEM_CONSTEXPR inline friend bool operator!=( error_condition const & lhs, E rhs ) BOOST_NOEXCEPT + { + return !( lhs == rhs ); + } + + template::value>::type> + BOOST_SYSTEM_CONSTEXPR inline friend bool operator!=( E lhs, error_condition const & rhs ) BOOST_NOEXCEPT + { + return !( lhs == rhs ); + } + + // + + template::value>::type> + inline friend bool operator==( error_condition const & lhs, E rhs ) BOOST_NOEXCEPT + { + return lhs == make_error_code( rhs ); + } + + template::value>::type> + inline friend bool operator==( E lhs, error_condition const & rhs ) BOOST_NOEXCEPT + { + return make_error_code( lhs ) == rhs; + } + + template::value>::type> + inline friend bool operator!=( error_condition const & lhs, E rhs ) BOOST_NOEXCEPT + { + return !( lhs == rhs ); + } + + template::value>::type> + inline friend bool operator!=( E lhs, error_condition const & rhs ) BOOST_NOEXCEPT + { + return !( lhs == rhs ); + } + #endif std::string to_string() const diff --git a/boost-1.80.0/boost/system/detail/generic_category.hpp b/boost-1.81.0/boost/system/detail/generic_category.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/generic_category.hpp rename to boost-1.81.0/boost/system/detail/generic_category.hpp diff --git a/boost-1.80.0/boost/system/detail/generic_category_message.hpp b/boost-1.81.0/boost/system/detail/generic_category_message.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/generic_category_message.hpp rename to boost-1.81.0/boost/system/detail/generic_category_message.hpp diff --git a/boost-1.80.0/boost/system/detail/interop_category.hpp b/boost-1.81.0/boost/system/detail/interop_category.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/interop_category.hpp rename to boost-1.81.0/boost/system/detail/interop_category.hpp diff --git a/boost-1.80.0/boost/system/detail/is_same.hpp b/boost-1.81.0/boost/system/detail/is_same.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/is_same.hpp rename to boost-1.81.0/boost/system/detail/is_same.hpp diff --git a/boost-1.80.0/boost/system/detail/snprintf.hpp b/boost-1.81.0/boost/system/detail/snprintf.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/snprintf.hpp rename to boost-1.81.0/boost/system/detail/snprintf.hpp diff --git a/boost-1.80.0/boost/system/detail/std_category.hpp b/boost-1.81.0/boost/system/detail/std_category.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/std_category.hpp rename to boost-1.81.0/boost/system/detail/std_category.hpp diff --git a/boost-1.80.0/boost/system/detail/std_category_impl.hpp b/boost-1.81.0/boost/system/detail/std_category_impl.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/std_category_impl.hpp rename to boost-1.81.0/boost/system/detail/std_category_impl.hpp diff --git a/boost-1.80.0/boost/system/detail/system_category.hpp b/boost-1.81.0/boost/system/detail/system_category.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/system_category.hpp rename to boost-1.81.0/boost/system/detail/system_category.hpp diff --git a/boost-1.80.0/boost/system/detail/system_category_condition_win32.hpp b/boost-1.81.0/boost/system/detail/system_category_condition_win32.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/system_category_condition_win32.hpp rename to boost-1.81.0/boost/system/detail/system_category_condition_win32.hpp diff --git a/boost-1.80.0/boost/system/detail/system_category_impl.hpp b/boost-1.81.0/boost/system/detail/system_category_impl.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/system_category_impl.hpp rename to boost-1.81.0/boost/system/detail/system_category_impl.hpp diff --git a/boost-1.80.0/boost/system/detail/system_category_message.hpp b/boost-1.81.0/boost/system/detail/system_category_message.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/system_category_message.hpp rename to boost-1.81.0/boost/system/detail/system_category_message.hpp diff --git a/boost-1.80.0/boost/system/detail/system_category_message_win32.hpp b/boost-1.81.0/boost/system/detail/system_category_message_win32.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/system_category_message_win32.hpp rename to boost-1.81.0/boost/system/detail/system_category_message_win32.hpp diff --git a/boost-1.80.0/boost/system/detail/throws.hpp b/boost-1.81.0/boost/system/detail/throws.hpp similarity index 100% rename from boost-1.80.0/boost/system/detail/throws.hpp rename to boost-1.81.0/boost/system/detail/throws.hpp diff --git a/boost-1.80.0/boost/system/errc.hpp b/boost-1.81.0/boost/system/errc.hpp similarity index 100% rename from boost-1.80.0/boost/system/errc.hpp rename to boost-1.81.0/boost/system/errc.hpp diff --git a/boost-1.80.0/boost/system/error_category.hpp b/boost-1.81.0/boost/system/error_category.hpp similarity index 100% rename from boost-1.80.0/boost/system/error_category.hpp rename to boost-1.81.0/boost/system/error_category.hpp diff --git a/boost-1.80.0/boost/system/error_code.hpp b/boost-1.81.0/boost/system/error_code.hpp similarity index 100% rename from boost-1.80.0/boost/system/error_code.hpp rename to boost-1.81.0/boost/system/error_code.hpp diff --git a/boost-1.80.0/boost/system/error_condition.hpp b/boost-1.81.0/boost/system/error_condition.hpp similarity index 100% rename from boost-1.80.0/boost/system/error_condition.hpp rename to boost-1.81.0/boost/system/error_condition.hpp diff --git a/boost-1.80.0/boost/system/generic_category.hpp b/boost-1.81.0/boost/system/generic_category.hpp similarity index 100% rename from boost-1.80.0/boost/system/generic_category.hpp rename to boost-1.81.0/boost/system/generic_category.hpp diff --git a/boost-1.80.0/boost/system/is_error_code_enum.hpp b/boost-1.81.0/boost/system/is_error_code_enum.hpp similarity index 100% rename from boost-1.80.0/boost/system/is_error_code_enum.hpp rename to boost-1.81.0/boost/system/is_error_code_enum.hpp diff --git a/boost-1.80.0/boost/system/is_error_condition_enum.hpp b/boost-1.81.0/boost/system/is_error_condition_enum.hpp similarity index 100% rename from boost-1.80.0/boost/system/is_error_condition_enum.hpp rename to boost-1.81.0/boost/system/is_error_condition_enum.hpp diff --git a/boost-1.80.0/boost/system/linux_error.hpp b/boost-1.81.0/boost/system/linux_error.hpp similarity index 100% rename from boost-1.80.0/boost/system/linux_error.hpp rename to boost-1.81.0/boost/system/linux_error.hpp diff --git a/boost-1.80.0/boost/system/result.hpp b/boost-1.81.0/boost/system/result.hpp similarity index 96% rename from boost-1.80.0/boost/system/result.hpp rename to boost-1.81.0/boost/system/result.hpp index 2e0ddc3..fb2f9bd 100644 --- a/boost-1.80.0/boost/system/result.hpp +++ b/boost-1.81.0/boost/system/result.hpp @@ -95,6 +95,14 @@ private: variant2::variant v_; +public: + + using value_type = T; + using error_type = E; + + static constexpr in_place_value_t in_place_value{}; + static constexpr in_place_error_t in_place_error{}; + public: // constructors @@ -393,6 +401,14 @@ public: return has_error()? variant2::unsafe_get<1>( v_ ): E(); } + // emplace + + template + BOOST_CXX14_CONSTEXPR T& emplace( A&&... a ) + { + return v_.template emplace<0>( std::forward(a)... ); + } + // swap BOOST_CXX14_CONSTEXPR void swap( result& r ) @@ -444,6 +460,14 @@ private: variant2::variant v_; +public: + + using value_type = void; + using error_type = E; + + static constexpr in_place_value_t in_place_value{}; + static constexpr in_place_error_t in_place_error{}; + public: // constructors @@ -557,6 +581,13 @@ public: return has_error()? variant2::unsafe_get<1>( v_ ): E(); } + // emplace + + BOOST_CXX14_CONSTEXPR void emplace() + { + v_.template emplace<0>(); + } + // swap BOOST_CXX14_CONSTEXPR void swap( result& r ) diff --git a/boost-1.80.0/boost/system/system_category.hpp b/boost-1.81.0/boost/system/system_category.hpp similarity index 100% rename from boost-1.80.0/boost/system/system_category.hpp rename to boost-1.81.0/boost/system/system_category.hpp diff --git a/boost-1.80.0/boost/system/system_error.hpp b/boost-1.81.0/boost/system/system_error.hpp similarity index 100% rename from boost-1.80.0/boost/system/system_error.hpp rename to boost-1.81.0/boost/system/system_error.hpp diff --git a/boost-1.80.0/boost/system/windows_error.hpp b/boost-1.81.0/boost/system/windows_error.hpp similarity index 100% rename from boost-1.80.0/boost/system/windows_error.hpp rename to boost-1.81.0/boost/system/windows_error.hpp diff --git a/boost-1.80.0/boost/type_traits/add_const.hpp b/boost-1.81.0/boost/type_traits/add_const.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/add_const.hpp rename to boost-1.81.0/boost/type_traits/add_const.hpp diff --git a/boost-1.80.0/boost/type_traits/add_cv.hpp b/boost-1.81.0/boost/type_traits/add_cv.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/add_cv.hpp rename to boost-1.81.0/boost/type_traits/add_cv.hpp diff --git a/boost-1.80.0/boost/type_traits/add_lvalue_reference.hpp b/boost-1.81.0/boost/type_traits/add_lvalue_reference.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/add_lvalue_reference.hpp rename to boost-1.81.0/boost/type_traits/add_lvalue_reference.hpp diff --git a/boost-1.80.0/boost/type_traits/add_pointer.hpp b/boost-1.81.0/boost/type_traits/add_pointer.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/add_pointer.hpp rename to boost-1.81.0/boost/type_traits/add_pointer.hpp diff --git a/boost-1.80.0/boost/type_traits/add_reference.hpp b/boost-1.81.0/boost/type_traits/add_reference.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/add_reference.hpp rename to boost-1.81.0/boost/type_traits/add_reference.hpp diff --git a/boost-1.80.0/boost/type_traits/add_rvalue_reference.hpp b/boost-1.81.0/boost/type_traits/add_rvalue_reference.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/add_rvalue_reference.hpp rename to boost-1.81.0/boost/type_traits/add_rvalue_reference.hpp diff --git a/boost-1.80.0/boost/type_traits/add_volatile.hpp b/boost-1.81.0/boost/type_traits/add_volatile.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/add_volatile.hpp rename to boost-1.81.0/boost/type_traits/add_volatile.hpp diff --git a/boost-1.80.0/boost/type_traits/aligned_storage.hpp b/boost-1.81.0/boost/type_traits/aligned_storage.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/aligned_storage.hpp rename to boost-1.81.0/boost/type_traits/aligned_storage.hpp diff --git a/boost-1.80.0/boost/type_traits/alignment_of.hpp b/boost-1.81.0/boost/type_traits/alignment_of.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/alignment_of.hpp rename to boost-1.81.0/boost/type_traits/alignment_of.hpp diff --git a/boost-1.80.0/boost/type_traits/alignment_traits.hpp b/boost-1.81.0/boost/type_traits/alignment_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/alignment_traits.hpp rename to boost-1.81.0/boost/type_traits/alignment_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/arithmetic_traits.hpp b/boost-1.81.0/boost/type_traits/arithmetic_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/arithmetic_traits.hpp rename to boost-1.81.0/boost/type_traits/arithmetic_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/array_traits.hpp b/boost-1.81.0/boost/type_traits/array_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/array_traits.hpp rename to boost-1.81.0/boost/type_traits/array_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/broken_compiler_spec.hpp b/boost-1.81.0/boost/type_traits/broken_compiler_spec.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/broken_compiler_spec.hpp rename to boost-1.81.0/boost/type_traits/broken_compiler_spec.hpp diff --git a/boost-1.80.0/boost/type_traits/common_type.hpp b/boost-1.81.0/boost/type_traits/common_type.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/common_type.hpp rename to boost-1.81.0/boost/type_traits/common_type.hpp diff --git a/boost-1.80.0/boost/type_traits/composite_traits.hpp b/boost-1.81.0/boost/type_traits/composite_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/composite_traits.hpp rename to boost-1.81.0/boost/type_traits/composite_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/conditional.hpp b/boost-1.81.0/boost/type_traits/conditional.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/conditional.hpp rename to boost-1.81.0/boost/type_traits/conditional.hpp diff --git a/boost-1.80.0/boost/type_traits/config.hpp b/boost-1.81.0/boost/type_traits/config.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/config.hpp rename to boost-1.81.0/boost/type_traits/config.hpp diff --git a/boost-1.80.0/boost/type_traits/conjunction.hpp b/boost-1.81.0/boost/type_traits/conjunction.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/conjunction.hpp rename to boost-1.81.0/boost/type_traits/conjunction.hpp diff --git a/boost-1.80.0/boost/type_traits/conversion_traits.hpp b/boost-1.81.0/boost/type_traits/conversion_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/conversion_traits.hpp rename to boost-1.81.0/boost/type_traits/conversion_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/copy_cv.hpp b/boost-1.81.0/boost/type_traits/copy_cv.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/copy_cv.hpp rename to boost-1.81.0/boost/type_traits/copy_cv.hpp diff --git a/boost-1.80.0/boost/type_traits/copy_cv_ref.hpp b/boost-1.81.0/boost/type_traits/copy_cv_ref.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/copy_cv_ref.hpp rename to boost-1.81.0/boost/type_traits/copy_cv_ref.hpp diff --git a/boost-1.80.0/boost/type_traits/copy_reference.hpp b/boost-1.81.0/boost/type_traits/copy_reference.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/copy_reference.hpp rename to boost-1.81.0/boost/type_traits/copy_reference.hpp diff --git a/boost-1.80.0/boost/type_traits/cv_traits.hpp b/boost-1.81.0/boost/type_traits/cv_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/cv_traits.hpp rename to boost-1.81.0/boost/type_traits/cv_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/decay.hpp b/boost-1.81.0/boost/type_traits/decay.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/decay.hpp rename to boost-1.81.0/boost/type_traits/decay.hpp diff --git a/boost-1.80.0/boost/type_traits/declval.hpp b/boost-1.81.0/boost/type_traits/declval.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/declval.hpp rename to boost-1.81.0/boost/type_traits/declval.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/bool_trait_def.hpp b/boost-1.81.0/boost/type_traits/detail/bool_trait_def.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/bool_trait_def.hpp rename to boost-1.81.0/boost/type_traits/detail/bool_trait_def.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/bool_trait_undef.hpp b/boost-1.81.0/boost/type_traits/detail/bool_trait_undef.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/bool_trait_undef.hpp rename to boost-1.81.0/boost/type_traits/detail/bool_trait_undef.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/common_arithmetic_type.hpp b/boost-1.81.0/boost/type_traits/detail/common_arithmetic_type.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/common_arithmetic_type.hpp rename to boost-1.81.0/boost/type_traits/detail/common_arithmetic_type.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/common_type_impl.hpp b/boost-1.81.0/boost/type_traits/detail/common_type_impl.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/common_type_impl.hpp rename to boost-1.81.0/boost/type_traits/detail/common_type_impl.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/composite_member_pointer_type.hpp b/boost-1.81.0/boost/type_traits/detail/composite_member_pointer_type.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/composite_member_pointer_type.hpp rename to boost-1.81.0/boost/type_traits/detail/composite_member_pointer_type.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/composite_pointer_type.hpp b/boost-1.81.0/boost/type_traits/detail/composite_pointer_type.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/composite_pointer_type.hpp rename to boost-1.81.0/boost/type_traits/detail/composite_pointer_type.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/config.hpp b/boost-1.81.0/boost/type_traits/detail/config.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/config.hpp rename to boost-1.81.0/boost/type_traits/detail/config.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/detector.hpp b/boost-1.81.0/boost/type_traits/detail/detector.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/detector.hpp rename to boost-1.81.0/boost/type_traits/detail/detector.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/has_binary_operator.hpp b/boost-1.81.0/boost/type_traits/detail/has_binary_operator.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/has_binary_operator.hpp rename to boost-1.81.0/boost/type_traits/detail/has_binary_operator.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/has_postfix_operator.hpp b/boost-1.81.0/boost/type_traits/detail/has_postfix_operator.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/has_postfix_operator.hpp rename to boost-1.81.0/boost/type_traits/detail/has_postfix_operator.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/has_prefix_operator.hpp b/boost-1.81.0/boost/type_traits/detail/has_prefix_operator.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/has_prefix_operator.hpp rename to boost-1.81.0/boost/type_traits/detail/has_prefix_operator.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/ice_and.hpp b/boost-1.81.0/boost/type_traits/detail/ice_and.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/ice_and.hpp rename to boost-1.81.0/boost/type_traits/detail/ice_and.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/ice_eq.hpp b/boost-1.81.0/boost/type_traits/detail/ice_eq.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/ice_eq.hpp rename to boost-1.81.0/boost/type_traits/detail/ice_eq.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/ice_not.hpp b/boost-1.81.0/boost/type_traits/detail/ice_not.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/ice_not.hpp rename to boost-1.81.0/boost/type_traits/detail/ice_not.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/ice_or.hpp b/boost-1.81.0/boost/type_traits/detail/ice_or.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/ice_or.hpp rename to boost-1.81.0/boost/type_traits/detail/ice_or.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/is_function_cxx_03.hpp b/boost-1.81.0/boost/type_traits/detail/is_function_cxx_03.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/is_function_cxx_03.hpp rename to boost-1.81.0/boost/type_traits/detail/is_function_cxx_03.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/is_function_cxx_11.hpp b/boost-1.81.0/boost/type_traits/detail/is_function_cxx_11.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/is_function_cxx_11.hpp rename to boost-1.81.0/boost/type_traits/detail/is_function_cxx_11.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/is_function_msvc10_fix.hpp b/boost-1.81.0/boost/type_traits/detail/is_function_msvc10_fix.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/is_function_msvc10_fix.hpp rename to boost-1.81.0/boost/type_traits/detail/is_function_msvc10_fix.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/is_function_ptr_helper.hpp b/boost-1.81.0/boost/type_traits/detail/is_function_ptr_helper.hpp similarity index 97% rename from boost-1.80.0/boost/type_traits/detail/is_function_ptr_helper.hpp rename to boost-1.81.0/boost/type_traits/detail/is_function_ptr_helper.hpp index 73a705c..688c5da 100644 --- a/boost-1.80.0/boost/type_traits/detail/is_function_ptr_helper.hpp +++ b/boost-1.81.0/boost/type_traits/detail/is_function_ptr_helper.hpp @@ -49,7 +49,7 @@ struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -63,7 +63,7 @@ struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = tr template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -77,7 +77,7 @@ struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -91,7 +91,7 @@ struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, va template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -105,7 +105,7 @@ struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -119,7 +119,7 @@ struct is_function_ptr_helper { BOOST_STATIC_CONSTANT( template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -133,7 +133,7 @@ struct is_function_ptr_helper { BOOST_STATIC_CONST template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -147,7 +147,7 @@ struct is_function_ptr_helper { BOOST_STATIC_C template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -161,7 +161,7 @@ struct is_function_ptr_helper { BOOST_STAT template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -175,7 +175,7 @@ struct is_function_ptr_helper { BOOST_ template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -189,7 +189,7 @@ struct is_function_ptr_helper { BO template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -203,7 +203,7 @@ struct is_function_ptr_helper template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -217,7 +217,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -231,7 +231,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -245,7 +245,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -259,7 +259,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -273,7 +273,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -287,7 +287,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -301,7 +301,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -315,7 +315,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -329,7 +329,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -343,7 +343,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -357,7 +357,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -371,7 +371,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -385,7 +385,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -399,7 +399,7 @@ struct is_function_ptr_helper struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -432,7 +432,7 @@ struct is_function_ptr_helper { template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; @#endif -@#if __cpp_noexcept_function_type +@#ifdef __cpp_noexcept_function_type template struct is_function_ptr_helper { BOOST_STATIC_CONSTANT(bool, value = true); }; @#ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING diff --git a/boost-1.80.0/boost/type_traits/detail/is_function_ptr_tester.hpp b/boost-1.81.0/boost/type_traits/detail/is_function_ptr_tester.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/is_function_ptr_tester.hpp rename to boost-1.81.0/boost/type_traits/detail/is_function_ptr_tester.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/is_likely_lambda.hpp b/boost-1.81.0/boost/type_traits/detail/is_likely_lambda.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/is_likely_lambda.hpp rename to boost-1.81.0/boost/type_traits/detail/is_likely_lambda.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp b/boost-1.81.0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp similarity index 99% rename from boost-1.80.0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp rename to boost-1.81.0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp index dcc6e2a..90b825d 100644 --- a/boost-1.80.0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +++ b/boost-1.81.0/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp @@ -67,7 +67,7 @@ template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -113,7 +113,7 @@ template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -159,7 +159,7 @@ template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -205,7 +205,7 @@ template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -251,7 +251,7 @@ template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -297,7 +297,7 @@ template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -343,7 +343,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -389,7 +389,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -435,7 +435,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -481,7 +481,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -527,7 +527,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -573,7 +573,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -619,7 +619,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -665,7 +665,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -711,7 +711,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -757,7 +757,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -803,7 +803,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -849,7 +849,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -895,7 +895,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -941,7 +941,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -987,7 +987,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -1033,7 +1033,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -1079,7 +1079,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -1125,7 +1125,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -1171,7 +1171,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -1217,7 +1217,7 @@ template { BOOST_STATIC_CONSTANT(bool, value = true); }; #endif #endif -#if __cpp_noexcept_function_type +#ifdef __cpp_noexcept_function_type template struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; #ifndef BOOST_TT_NO_ELLIPSIS_IN_FUNC_TESTING @@ -1290,7 +1290,7 @@ struct is_mem_fun_pointer_impl struct is_mem_fun_pointer_impl { BOOST_STATIC_CONSTANT(bool, value = true); }; diff --git a/boost-1.80.0/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp b/boost-1.81.0/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp rename to boost-1.81.0/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp b/boost-1.81.0/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp rename to boost-1.81.0/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp b/boost-1.81.0/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp rename to boost-1.81.0/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp b/boost-1.81.0/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp rename to boost-1.81.0/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/mp_defer.hpp b/boost-1.81.0/boost/type_traits/detail/mp_defer.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/mp_defer.hpp rename to boost-1.81.0/boost/type_traits/detail/mp_defer.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/template_arity_spec.hpp b/boost-1.81.0/boost/type_traits/detail/template_arity_spec.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/template_arity_spec.hpp rename to boost-1.81.0/boost/type_traits/detail/template_arity_spec.hpp diff --git a/boost-1.80.0/boost/type_traits/detail/yes_no_type.hpp b/boost-1.81.0/boost/type_traits/detail/yes_no_type.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detail/yes_no_type.hpp rename to boost-1.81.0/boost/type_traits/detail/yes_no_type.hpp diff --git a/boost-1.80.0/boost/type_traits/detected.hpp b/boost-1.81.0/boost/type_traits/detected.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detected.hpp rename to boost-1.81.0/boost/type_traits/detected.hpp diff --git a/boost-1.80.0/boost/type_traits/detected_or.hpp b/boost-1.81.0/boost/type_traits/detected_or.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/detected_or.hpp rename to boost-1.81.0/boost/type_traits/detected_or.hpp diff --git a/boost-1.80.0/boost/type_traits/disjunction.hpp b/boost-1.81.0/boost/type_traits/disjunction.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/disjunction.hpp rename to boost-1.81.0/boost/type_traits/disjunction.hpp diff --git a/boost-1.80.0/boost/type_traits/enable_if.hpp b/boost-1.81.0/boost/type_traits/enable_if.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/enable_if.hpp rename to boost-1.81.0/boost/type_traits/enable_if.hpp diff --git a/boost-1.80.0/boost/type_traits/extent.hpp b/boost-1.81.0/boost/type_traits/extent.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/extent.hpp rename to boost-1.81.0/boost/type_traits/extent.hpp diff --git a/boost-1.80.0/boost/type_traits/floating_point_promotion.hpp b/boost-1.81.0/boost/type_traits/floating_point_promotion.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/floating_point_promotion.hpp rename to boost-1.81.0/boost/type_traits/floating_point_promotion.hpp diff --git a/boost-1.80.0/boost/type_traits/function_traits.hpp b/boost-1.81.0/boost/type_traits/function_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/function_traits.hpp rename to boost-1.81.0/boost/type_traits/function_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/has_bit_and.hpp b/boost-1.81.0/boost/type_traits/has_bit_and.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_bit_and.hpp rename to boost-1.81.0/boost/type_traits/has_bit_and.hpp diff --git a/boost-1.80.0/boost/type_traits/has_bit_and_assign.hpp b/boost-1.81.0/boost/type_traits/has_bit_and_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_bit_and_assign.hpp rename to boost-1.81.0/boost/type_traits/has_bit_and_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_bit_or.hpp b/boost-1.81.0/boost/type_traits/has_bit_or.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_bit_or.hpp rename to boost-1.81.0/boost/type_traits/has_bit_or.hpp diff --git a/boost-1.80.0/boost/type_traits/has_bit_or_assign.hpp b/boost-1.81.0/boost/type_traits/has_bit_or_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_bit_or_assign.hpp rename to boost-1.81.0/boost/type_traits/has_bit_or_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_bit_xor.hpp b/boost-1.81.0/boost/type_traits/has_bit_xor.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_bit_xor.hpp rename to boost-1.81.0/boost/type_traits/has_bit_xor.hpp diff --git a/boost-1.80.0/boost/type_traits/has_bit_xor_assign.hpp b/boost-1.81.0/boost/type_traits/has_bit_xor_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_bit_xor_assign.hpp rename to boost-1.81.0/boost/type_traits/has_bit_xor_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_complement.hpp b/boost-1.81.0/boost/type_traits/has_complement.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_complement.hpp rename to boost-1.81.0/boost/type_traits/has_complement.hpp diff --git a/boost-1.80.0/boost/type_traits/has_dereference.hpp b/boost-1.81.0/boost/type_traits/has_dereference.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_dereference.hpp rename to boost-1.81.0/boost/type_traits/has_dereference.hpp diff --git a/boost-1.80.0/boost/type_traits/has_divides.hpp b/boost-1.81.0/boost/type_traits/has_divides.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_divides.hpp rename to boost-1.81.0/boost/type_traits/has_divides.hpp diff --git a/boost-1.80.0/boost/type_traits/has_divides_assign.hpp b/boost-1.81.0/boost/type_traits/has_divides_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_divides_assign.hpp rename to boost-1.81.0/boost/type_traits/has_divides_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_equal_to.hpp b/boost-1.81.0/boost/type_traits/has_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_equal_to.hpp rename to boost-1.81.0/boost/type_traits/has_equal_to.hpp diff --git a/boost-1.80.0/boost/type_traits/has_greater.hpp b/boost-1.81.0/boost/type_traits/has_greater.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_greater.hpp rename to boost-1.81.0/boost/type_traits/has_greater.hpp diff --git a/boost-1.80.0/boost/type_traits/has_greater_equal.hpp b/boost-1.81.0/boost/type_traits/has_greater_equal.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_greater_equal.hpp rename to boost-1.81.0/boost/type_traits/has_greater_equal.hpp diff --git a/boost-1.80.0/boost/type_traits/has_left_shift.hpp b/boost-1.81.0/boost/type_traits/has_left_shift.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_left_shift.hpp rename to boost-1.81.0/boost/type_traits/has_left_shift.hpp diff --git a/boost-1.80.0/boost/type_traits/has_left_shift_assign.hpp b/boost-1.81.0/boost/type_traits/has_left_shift_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_left_shift_assign.hpp rename to boost-1.81.0/boost/type_traits/has_left_shift_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_less.hpp b/boost-1.81.0/boost/type_traits/has_less.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_less.hpp rename to boost-1.81.0/boost/type_traits/has_less.hpp diff --git a/boost-1.80.0/boost/type_traits/has_less_equal.hpp b/boost-1.81.0/boost/type_traits/has_less_equal.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_less_equal.hpp rename to boost-1.81.0/boost/type_traits/has_less_equal.hpp diff --git a/boost-1.80.0/boost/type_traits/has_logical_and.hpp b/boost-1.81.0/boost/type_traits/has_logical_and.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_logical_and.hpp rename to boost-1.81.0/boost/type_traits/has_logical_and.hpp diff --git a/boost-1.80.0/boost/type_traits/has_logical_not.hpp b/boost-1.81.0/boost/type_traits/has_logical_not.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_logical_not.hpp rename to boost-1.81.0/boost/type_traits/has_logical_not.hpp diff --git a/boost-1.80.0/boost/type_traits/has_logical_or.hpp b/boost-1.81.0/boost/type_traits/has_logical_or.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_logical_or.hpp rename to boost-1.81.0/boost/type_traits/has_logical_or.hpp diff --git a/boost-1.80.0/boost/type_traits/has_minus.hpp b/boost-1.81.0/boost/type_traits/has_minus.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_minus.hpp rename to boost-1.81.0/boost/type_traits/has_minus.hpp diff --git a/boost-1.80.0/boost/type_traits/has_minus_assign.hpp b/boost-1.81.0/boost/type_traits/has_minus_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_minus_assign.hpp rename to boost-1.81.0/boost/type_traits/has_minus_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_modulus.hpp b/boost-1.81.0/boost/type_traits/has_modulus.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_modulus.hpp rename to boost-1.81.0/boost/type_traits/has_modulus.hpp diff --git a/boost-1.80.0/boost/type_traits/has_modulus_assign.hpp b/boost-1.81.0/boost/type_traits/has_modulus_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_modulus_assign.hpp rename to boost-1.81.0/boost/type_traits/has_modulus_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_multiplies.hpp b/boost-1.81.0/boost/type_traits/has_multiplies.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_multiplies.hpp rename to boost-1.81.0/boost/type_traits/has_multiplies.hpp diff --git a/boost-1.80.0/boost/type_traits/has_multiplies_assign.hpp b/boost-1.81.0/boost/type_traits/has_multiplies_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_multiplies_assign.hpp rename to boost-1.81.0/boost/type_traits/has_multiplies_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_negate.hpp b/boost-1.81.0/boost/type_traits/has_negate.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_negate.hpp rename to boost-1.81.0/boost/type_traits/has_negate.hpp diff --git a/boost-1.80.0/boost/type_traits/has_new_operator.hpp b/boost-1.81.0/boost/type_traits/has_new_operator.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_new_operator.hpp rename to boost-1.81.0/boost/type_traits/has_new_operator.hpp diff --git a/boost-1.80.0/boost/type_traits/has_not_equal_to.hpp b/boost-1.81.0/boost/type_traits/has_not_equal_to.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_not_equal_to.hpp rename to boost-1.81.0/boost/type_traits/has_not_equal_to.hpp diff --git a/boost-1.80.0/boost/type_traits/has_nothrow_assign.hpp b/boost-1.81.0/boost/type_traits/has_nothrow_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_nothrow_assign.hpp rename to boost-1.81.0/boost/type_traits/has_nothrow_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_nothrow_constructor.hpp b/boost-1.81.0/boost/type_traits/has_nothrow_constructor.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_nothrow_constructor.hpp rename to boost-1.81.0/boost/type_traits/has_nothrow_constructor.hpp diff --git a/boost-1.80.0/boost/type_traits/has_nothrow_copy.hpp b/boost-1.81.0/boost/type_traits/has_nothrow_copy.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_nothrow_copy.hpp rename to boost-1.81.0/boost/type_traits/has_nothrow_copy.hpp diff --git a/boost-1.80.0/boost/type_traits/has_nothrow_destructor.hpp b/boost-1.81.0/boost/type_traits/has_nothrow_destructor.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_nothrow_destructor.hpp rename to boost-1.81.0/boost/type_traits/has_nothrow_destructor.hpp diff --git a/boost-1.80.0/boost/type_traits/has_operator.hpp b/boost-1.81.0/boost/type_traits/has_operator.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_operator.hpp rename to boost-1.81.0/boost/type_traits/has_operator.hpp diff --git a/boost-1.80.0/boost/type_traits/has_plus.hpp b/boost-1.81.0/boost/type_traits/has_plus.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_plus.hpp rename to boost-1.81.0/boost/type_traits/has_plus.hpp diff --git a/boost-1.80.0/boost/type_traits/has_plus_assign.hpp b/boost-1.81.0/boost/type_traits/has_plus_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_plus_assign.hpp rename to boost-1.81.0/boost/type_traits/has_plus_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_post_decrement.hpp b/boost-1.81.0/boost/type_traits/has_post_decrement.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_post_decrement.hpp rename to boost-1.81.0/boost/type_traits/has_post_decrement.hpp diff --git a/boost-1.80.0/boost/type_traits/has_post_increment.hpp b/boost-1.81.0/boost/type_traits/has_post_increment.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_post_increment.hpp rename to boost-1.81.0/boost/type_traits/has_post_increment.hpp diff --git a/boost-1.80.0/boost/type_traits/has_pre_decrement.hpp b/boost-1.81.0/boost/type_traits/has_pre_decrement.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_pre_decrement.hpp rename to boost-1.81.0/boost/type_traits/has_pre_decrement.hpp diff --git a/boost-1.80.0/boost/type_traits/has_pre_increment.hpp b/boost-1.81.0/boost/type_traits/has_pre_increment.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_pre_increment.hpp rename to boost-1.81.0/boost/type_traits/has_pre_increment.hpp diff --git a/boost-1.80.0/boost/type_traits/has_right_shift.hpp b/boost-1.81.0/boost/type_traits/has_right_shift.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_right_shift.hpp rename to boost-1.81.0/boost/type_traits/has_right_shift.hpp diff --git a/boost-1.80.0/boost/type_traits/has_right_shift_assign.hpp b/boost-1.81.0/boost/type_traits/has_right_shift_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_right_shift_assign.hpp rename to boost-1.81.0/boost/type_traits/has_right_shift_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_trivial_assign.hpp b/boost-1.81.0/boost/type_traits/has_trivial_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_trivial_assign.hpp rename to boost-1.81.0/boost/type_traits/has_trivial_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_trivial_constructor.hpp b/boost-1.81.0/boost/type_traits/has_trivial_constructor.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_trivial_constructor.hpp rename to boost-1.81.0/boost/type_traits/has_trivial_constructor.hpp diff --git a/boost-1.80.0/boost/type_traits/has_trivial_copy.hpp b/boost-1.81.0/boost/type_traits/has_trivial_copy.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_trivial_copy.hpp rename to boost-1.81.0/boost/type_traits/has_trivial_copy.hpp diff --git a/boost-1.80.0/boost/type_traits/has_trivial_destructor.hpp b/boost-1.81.0/boost/type_traits/has_trivial_destructor.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_trivial_destructor.hpp rename to boost-1.81.0/boost/type_traits/has_trivial_destructor.hpp diff --git a/boost-1.80.0/boost/type_traits/has_trivial_move_assign.hpp b/boost-1.81.0/boost/type_traits/has_trivial_move_assign.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_trivial_move_assign.hpp rename to boost-1.81.0/boost/type_traits/has_trivial_move_assign.hpp diff --git a/boost-1.80.0/boost/type_traits/has_trivial_move_constructor.hpp b/boost-1.81.0/boost/type_traits/has_trivial_move_constructor.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_trivial_move_constructor.hpp rename to boost-1.81.0/boost/type_traits/has_trivial_move_constructor.hpp diff --git a/boost-1.80.0/boost/type_traits/has_unary_minus.hpp b/boost-1.81.0/boost/type_traits/has_unary_minus.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_unary_minus.hpp rename to boost-1.81.0/boost/type_traits/has_unary_minus.hpp diff --git a/boost-1.80.0/boost/type_traits/has_unary_plus.hpp b/boost-1.81.0/boost/type_traits/has_unary_plus.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_unary_plus.hpp rename to boost-1.81.0/boost/type_traits/has_unary_plus.hpp diff --git a/boost-1.80.0/boost/type_traits/has_virtual_destructor.hpp b/boost-1.81.0/boost/type_traits/has_virtual_destructor.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/has_virtual_destructor.hpp rename to boost-1.81.0/boost/type_traits/has_virtual_destructor.hpp diff --git a/boost-1.80.0/boost/type_traits/ice.hpp b/boost-1.81.0/boost/type_traits/ice.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/ice.hpp rename to boost-1.81.0/boost/type_traits/ice.hpp diff --git a/boost-1.80.0/boost/type_traits/integral_constant.hpp b/boost-1.81.0/boost/type_traits/integral_constant.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/integral_constant.hpp rename to boost-1.81.0/boost/type_traits/integral_constant.hpp diff --git a/boost-1.80.0/boost/type_traits/integral_promotion.hpp b/boost-1.81.0/boost/type_traits/integral_promotion.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/integral_promotion.hpp rename to boost-1.81.0/boost/type_traits/integral_promotion.hpp diff --git a/boost-1.80.0/boost/type_traits/intrinsics.hpp b/boost-1.81.0/boost/type_traits/intrinsics.hpp similarity index 92% rename from boost-1.80.0/boost/type_traits/intrinsics.hpp rename to boost-1.81.0/boost/type_traits/intrinsics.hpp index 72b6d90..3ab12d6 100644 --- a/boost-1.80.0/boost/type_traits/intrinsics.hpp +++ b/boost-1.81.0/boost/type_traits/intrinsics.hpp @@ -160,7 +160,7 @@ # define BOOST_HAS_TYPE_TRAITS_INTRINSICS #endif -#if defined(BOOST_CLANG) && defined(__has_feature) && (!(defined(__CUDACC__) && (__CUDACC_VER_MAJOR__ < 11)) || defined(__CUDA__)) +#if defined(BOOST_CLANG) && defined(__has_feature) && defined(__has_builtin) && (!(defined(__CUDACC__) && (__CUDACC_VER_MAJOR__ < 11)) || defined(__CUDA__)) // // Note that these intrinsics are disabled for the CUDA meta-compiler as it appears // to not support them, even though the underlying clang compiler does so. @@ -183,25 +183,39 @@ # if (!defined(__GLIBCXX__) || (__GLIBCXX__ >= 20080306 && __GLIBCXX__ != 20080519)) && __has_feature(is_empty) # define BOOST_IS_EMPTY(T) __is_empty(T) # endif -# if __has_feature(has_trivial_constructor) +# if __has_builtin(__is_trivially_constructible) +# define BOOST_HAS_TRIVIAL_CONSTRUCTOR(T) __is_trivially_constructible(T) +# elif __has_feature(has_trivial_constructor) # define BOOST_HAS_TRIVIAL_CONSTRUCTOR(T) __has_trivial_constructor(T) # endif -# if __has_feature(has_trivial_copy) +# if __has_builtin(__is_trivially_copyable) +# define BOOST_HAS_TRIVIAL_COPY(T) (__is_trivially_copyable(T) && !is_reference::value) +# elif __has_feature(has_trivial_copy) # define BOOST_HAS_TRIVIAL_COPY(T) (__has_trivial_copy(T) && !is_reference::value) # endif -# if __has_feature(has_trivial_assign) +# if __has_builtin(__is_trivially_assignable) +# define BOOST_HAS_TRIVIAL_ASSIGN(T) (__is_trivially_assignable(T&, const T&) && !is_volatile::value && is_assignable::value) +# elif __has_feature(has_trivial_assign) # define BOOST_HAS_TRIVIAL_ASSIGN(T) (__has_trivial_assign(T) && !is_volatile::value && is_assignable::value) # endif -# if __has_feature(has_trivial_destructor) +# if __has_builtin(__is_trivially_destructible) +# define BOOST_HAS_TRIVIAL_DESTRUCTOR(T) (__is_trivially_destructible(T) && is_destructible::value) +# elif __has_feature(has_trivial_destructor) # define BOOST_HAS_TRIVIAL_DESTRUCTOR(T) (__has_trivial_destructor(T) && is_destructible::value) # endif -# if __has_feature(has_nothrow_constructor) +# if __has_builtin(__is_nothrow_constructible) +# define BOOST_HAS_NOTHROW_CONSTRUCTOR(T) (__is_nothrow_constructible(T) && is_default_constructible::value) +# elif __has_feature(has_nothrow_constructor) # define BOOST_HAS_NOTHROW_CONSTRUCTOR(T) (__has_nothrow_constructor(T) && is_default_constructible::value) # endif -# if __has_feature(has_nothrow_copy) +# if __has_builtin(__is_nothrow_constructible) +# define BOOST_HAS_NOTHROW_COPY(T) (__is_nothrow_constructible(T, const T&) && !is_volatile::value && !is_reference::value && is_copy_constructible::value) +# elif __has_feature(has_nothrow_copy) # define BOOST_HAS_NOTHROW_COPY(T) (__has_nothrow_copy(T) && !is_volatile::value && !is_reference::value && is_copy_constructible::value) # endif -# if __has_feature(has_nothrow_assign) +# if __has_builtin(__is_nothrow_assignable) +# define BOOST_HAS_NOTHROW_ASSIGN(T) (__is_nothrow_assignable(T&, const T&) && !is_volatile::value && is_assignable::value) +# elif __has_feature(has_nothrow_assign) # define BOOST_HAS_NOTHROW_ASSIGN(T) (__has_nothrow_assign(T) && !is_volatile::value && is_assignable::value) # endif # if __has_feature(has_virtual_destructor) diff --git a/boost-1.80.0/boost/type_traits/is_abstract.hpp b/boost-1.81.0/boost/type_traits/is_abstract.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_abstract.hpp rename to boost-1.81.0/boost/type_traits/is_abstract.hpp diff --git a/boost-1.80.0/boost/type_traits/is_arithmetic.hpp b/boost-1.81.0/boost/type_traits/is_arithmetic.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_arithmetic.hpp rename to boost-1.81.0/boost/type_traits/is_arithmetic.hpp diff --git a/boost-1.80.0/boost/type_traits/is_array.hpp b/boost-1.81.0/boost/type_traits/is_array.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_array.hpp rename to boost-1.81.0/boost/type_traits/is_array.hpp diff --git a/boost-1.80.0/boost/type_traits/is_assignable.hpp b/boost-1.81.0/boost/type_traits/is_assignable.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_assignable.hpp rename to boost-1.81.0/boost/type_traits/is_assignable.hpp diff --git a/boost-1.80.0/boost/type_traits/is_base_and_derived.hpp b/boost-1.81.0/boost/type_traits/is_base_and_derived.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_base_and_derived.hpp rename to boost-1.81.0/boost/type_traits/is_base_and_derived.hpp diff --git a/boost-1.80.0/boost/type_traits/is_base_of.hpp b/boost-1.81.0/boost/type_traits/is_base_of.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_base_of.hpp rename to boost-1.81.0/boost/type_traits/is_base_of.hpp diff --git a/boost-1.80.0/boost/type_traits/is_base_of_tr1.hpp b/boost-1.81.0/boost/type_traits/is_base_of_tr1.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_base_of_tr1.hpp rename to boost-1.81.0/boost/type_traits/is_base_of_tr1.hpp diff --git a/boost-1.80.0/boost/type_traits/is_bounded_array.hpp b/boost-1.81.0/boost/type_traits/is_bounded_array.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_bounded_array.hpp rename to boost-1.81.0/boost/type_traits/is_bounded_array.hpp diff --git a/boost-1.80.0/boost/type_traits/is_class.hpp b/boost-1.81.0/boost/type_traits/is_class.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_class.hpp rename to boost-1.81.0/boost/type_traits/is_class.hpp diff --git a/boost-1.80.0/boost/type_traits/is_complete.hpp b/boost-1.81.0/boost/type_traits/is_complete.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_complete.hpp rename to boost-1.81.0/boost/type_traits/is_complete.hpp diff --git a/boost-1.80.0/boost/type_traits/is_complex.hpp b/boost-1.81.0/boost/type_traits/is_complex.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_complex.hpp rename to boost-1.81.0/boost/type_traits/is_complex.hpp diff --git a/boost-1.80.0/boost/type_traits/is_compound.hpp b/boost-1.81.0/boost/type_traits/is_compound.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_compound.hpp rename to boost-1.81.0/boost/type_traits/is_compound.hpp diff --git a/boost-1.80.0/boost/type_traits/is_const.hpp b/boost-1.81.0/boost/type_traits/is_const.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_const.hpp rename to boost-1.81.0/boost/type_traits/is_const.hpp diff --git a/boost-1.80.0/boost/type_traits/is_constructible.hpp b/boost-1.81.0/boost/type_traits/is_constructible.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_constructible.hpp rename to boost-1.81.0/boost/type_traits/is_constructible.hpp diff --git a/boost-1.80.0/boost/type_traits/is_convertible.hpp b/boost-1.81.0/boost/type_traits/is_convertible.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_convertible.hpp rename to boost-1.81.0/boost/type_traits/is_convertible.hpp diff --git a/boost-1.80.0/boost/type_traits/is_copy_assignable.hpp b/boost-1.81.0/boost/type_traits/is_copy_assignable.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_copy_assignable.hpp rename to boost-1.81.0/boost/type_traits/is_copy_assignable.hpp diff --git a/boost-1.80.0/boost/type_traits/is_copy_constructible.hpp b/boost-1.81.0/boost/type_traits/is_copy_constructible.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_copy_constructible.hpp rename to boost-1.81.0/boost/type_traits/is_copy_constructible.hpp diff --git a/boost-1.80.0/boost/type_traits/is_default_constructible.hpp b/boost-1.81.0/boost/type_traits/is_default_constructible.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_default_constructible.hpp rename to boost-1.81.0/boost/type_traits/is_default_constructible.hpp diff --git a/boost-1.80.0/boost/type_traits/is_destructible.hpp b/boost-1.81.0/boost/type_traits/is_destructible.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_destructible.hpp rename to boost-1.81.0/boost/type_traits/is_destructible.hpp diff --git a/boost-1.80.0/boost/type_traits/is_detected.hpp b/boost-1.81.0/boost/type_traits/is_detected.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_detected.hpp rename to boost-1.81.0/boost/type_traits/is_detected.hpp diff --git a/boost-1.80.0/boost/type_traits/is_detected_convertible.hpp b/boost-1.81.0/boost/type_traits/is_detected_convertible.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_detected_convertible.hpp rename to boost-1.81.0/boost/type_traits/is_detected_convertible.hpp diff --git a/boost-1.80.0/boost/type_traits/is_detected_exact.hpp b/boost-1.81.0/boost/type_traits/is_detected_exact.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_detected_exact.hpp rename to boost-1.81.0/boost/type_traits/is_detected_exact.hpp diff --git a/boost-1.80.0/boost/type_traits/is_empty.hpp b/boost-1.81.0/boost/type_traits/is_empty.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_empty.hpp rename to boost-1.81.0/boost/type_traits/is_empty.hpp diff --git a/boost-1.80.0/boost/type_traits/is_enum.hpp b/boost-1.81.0/boost/type_traits/is_enum.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_enum.hpp rename to boost-1.81.0/boost/type_traits/is_enum.hpp diff --git a/boost-1.80.0/boost/type_traits/is_final.hpp b/boost-1.81.0/boost/type_traits/is_final.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_final.hpp rename to boost-1.81.0/boost/type_traits/is_final.hpp diff --git a/boost-1.80.0/boost/type_traits/is_float.hpp b/boost-1.81.0/boost/type_traits/is_float.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_float.hpp rename to boost-1.81.0/boost/type_traits/is_float.hpp diff --git a/boost-1.80.0/boost/type_traits/is_floating_point.hpp b/boost-1.81.0/boost/type_traits/is_floating_point.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_floating_point.hpp rename to boost-1.81.0/boost/type_traits/is_floating_point.hpp diff --git a/boost-1.80.0/boost/type_traits/is_function.hpp b/boost-1.81.0/boost/type_traits/is_function.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_function.hpp rename to boost-1.81.0/boost/type_traits/is_function.hpp diff --git a/boost-1.80.0/boost/type_traits/is_fundamental.hpp b/boost-1.81.0/boost/type_traits/is_fundamental.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_fundamental.hpp rename to boost-1.81.0/boost/type_traits/is_fundamental.hpp diff --git a/boost-1.80.0/boost/type_traits/is_integral.hpp b/boost-1.81.0/boost/type_traits/is_integral.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_integral.hpp rename to boost-1.81.0/boost/type_traits/is_integral.hpp diff --git a/boost-1.80.0/boost/type_traits/is_list_constructible.hpp b/boost-1.81.0/boost/type_traits/is_list_constructible.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_list_constructible.hpp rename to boost-1.81.0/boost/type_traits/is_list_constructible.hpp diff --git a/boost-1.80.0/boost/type_traits/is_lvalue_reference.hpp b/boost-1.81.0/boost/type_traits/is_lvalue_reference.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_lvalue_reference.hpp rename to boost-1.81.0/boost/type_traits/is_lvalue_reference.hpp diff --git a/boost-1.80.0/boost/type_traits/is_member_function_pointer.hpp b/boost-1.81.0/boost/type_traits/is_member_function_pointer.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_member_function_pointer.hpp rename to boost-1.81.0/boost/type_traits/is_member_function_pointer.hpp diff --git a/boost-1.80.0/boost/type_traits/is_member_object_pointer.hpp b/boost-1.81.0/boost/type_traits/is_member_object_pointer.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_member_object_pointer.hpp rename to boost-1.81.0/boost/type_traits/is_member_object_pointer.hpp diff --git a/boost-1.80.0/boost/type_traits/is_member_pointer.hpp b/boost-1.81.0/boost/type_traits/is_member_pointer.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_member_pointer.hpp rename to boost-1.81.0/boost/type_traits/is_member_pointer.hpp diff --git a/boost-1.80.0/boost/type_traits/is_noncopyable.hpp b/boost-1.81.0/boost/type_traits/is_noncopyable.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_noncopyable.hpp rename to boost-1.81.0/boost/type_traits/is_noncopyable.hpp diff --git a/boost-1.80.0/boost/type_traits/is_nothrow_move_assignable.hpp b/boost-1.81.0/boost/type_traits/is_nothrow_move_assignable.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_nothrow_move_assignable.hpp rename to boost-1.81.0/boost/type_traits/is_nothrow_move_assignable.hpp diff --git a/boost-1.80.0/boost/type_traits/is_nothrow_move_constructible.hpp b/boost-1.81.0/boost/type_traits/is_nothrow_move_constructible.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_nothrow_move_constructible.hpp rename to boost-1.81.0/boost/type_traits/is_nothrow_move_constructible.hpp diff --git a/boost-1.80.0/boost/type_traits/is_nothrow_swappable.hpp b/boost-1.81.0/boost/type_traits/is_nothrow_swappable.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_nothrow_swappable.hpp rename to boost-1.81.0/boost/type_traits/is_nothrow_swappable.hpp diff --git a/boost-1.80.0/boost/type_traits/is_object.hpp b/boost-1.81.0/boost/type_traits/is_object.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_object.hpp rename to boost-1.81.0/boost/type_traits/is_object.hpp diff --git a/boost-1.80.0/boost/type_traits/is_pod.hpp b/boost-1.81.0/boost/type_traits/is_pod.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_pod.hpp rename to boost-1.81.0/boost/type_traits/is_pod.hpp diff --git a/boost-1.80.0/boost/type_traits/is_pointer.hpp b/boost-1.81.0/boost/type_traits/is_pointer.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_pointer.hpp rename to boost-1.81.0/boost/type_traits/is_pointer.hpp diff --git a/boost-1.80.0/boost/type_traits/is_polymorphic.hpp b/boost-1.81.0/boost/type_traits/is_polymorphic.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_polymorphic.hpp rename to boost-1.81.0/boost/type_traits/is_polymorphic.hpp diff --git a/boost-1.80.0/boost/type_traits/is_reference.hpp b/boost-1.81.0/boost/type_traits/is_reference.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_reference.hpp rename to boost-1.81.0/boost/type_traits/is_reference.hpp diff --git a/boost-1.80.0/boost/type_traits/is_rvalue_reference.hpp b/boost-1.81.0/boost/type_traits/is_rvalue_reference.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_rvalue_reference.hpp rename to boost-1.81.0/boost/type_traits/is_rvalue_reference.hpp diff --git a/boost-1.80.0/boost/type_traits/is_same.hpp b/boost-1.81.0/boost/type_traits/is_same.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_same.hpp rename to boost-1.81.0/boost/type_traits/is_same.hpp diff --git a/boost-1.80.0/boost/type_traits/is_scalar.hpp b/boost-1.81.0/boost/type_traits/is_scalar.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_scalar.hpp rename to boost-1.81.0/boost/type_traits/is_scalar.hpp diff --git a/boost-1.80.0/boost/type_traits/is_scoped_enum.hpp b/boost-1.81.0/boost/type_traits/is_scoped_enum.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_scoped_enum.hpp rename to boost-1.81.0/boost/type_traits/is_scoped_enum.hpp diff --git a/boost-1.80.0/boost/type_traits/is_signed.hpp b/boost-1.81.0/boost/type_traits/is_signed.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_signed.hpp rename to boost-1.81.0/boost/type_traits/is_signed.hpp diff --git a/boost-1.80.0/boost/type_traits/is_stateless.hpp b/boost-1.81.0/boost/type_traits/is_stateless.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_stateless.hpp rename to boost-1.81.0/boost/type_traits/is_stateless.hpp diff --git a/boost-1.80.0/boost/type_traits/is_trivially_copyable.hpp b/boost-1.81.0/boost/type_traits/is_trivially_copyable.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_trivially_copyable.hpp rename to boost-1.81.0/boost/type_traits/is_trivially_copyable.hpp diff --git a/boost-1.80.0/boost/type_traits/is_unbounded_array.hpp b/boost-1.81.0/boost/type_traits/is_unbounded_array.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_unbounded_array.hpp rename to boost-1.81.0/boost/type_traits/is_unbounded_array.hpp diff --git a/boost-1.80.0/boost/type_traits/is_union.hpp b/boost-1.81.0/boost/type_traits/is_union.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_union.hpp rename to boost-1.81.0/boost/type_traits/is_union.hpp diff --git a/boost-1.80.0/boost/type_traits/is_unscoped_enum.hpp b/boost-1.81.0/boost/type_traits/is_unscoped_enum.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_unscoped_enum.hpp rename to boost-1.81.0/boost/type_traits/is_unscoped_enum.hpp diff --git a/boost-1.80.0/boost/type_traits/is_unsigned.hpp b/boost-1.81.0/boost/type_traits/is_unsigned.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_unsigned.hpp rename to boost-1.81.0/boost/type_traits/is_unsigned.hpp diff --git a/boost-1.80.0/boost/type_traits/is_virtual_base_of.hpp b/boost-1.81.0/boost/type_traits/is_virtual_base_of.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_virtual_base_of.hpp rename to boost-1.81.0/boost/type_traits/is_virtual_base_of.hpp diff --git a/boost-1.80.0/boost/type_traits/is_void.hpp b/boost-1.81.0/boost/type_traits/is_void.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_void.hpp rename to boost-1.81.0/boost/type_traits/is_void.hpp diff --git a/boost-1.80.0/boost/type_traits/is_volatile.hpp b/boost-1.81.0/boost/type_traits/is_volatile.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/is_volatile.hpp rename to boost-1.81.0/boost/type_traits/is_volatile.hpp diff --git a/boost-1.80.0/boost/type_traits/make_signed.hpp b/boost-1.81.0/boost/type_traits/make_signed.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/make_signed.hpp rename to boost-1.81.0/boost/type_traits/make_signed.hpp diff --git a/boost-1.80.0/boost/type_traits/make_unsigned.hpp b/boost-1.81.0/boost/type_traits/make_unsigned.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/make_unsigned.hpp rename to boost-1.81.0/boost/type_traits/make_unsigned.hpp diff --git a/boost-1.80.0/boost/type_traits/make_void.hpp b/boost-1.81.0/boost/type_traits/make_void.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/make_void.hpp rename to boost-1.81.0/boost/type_traits/make_void.hpp diff --git a/boost-1.80.0/boost/type_traits/negation.hpp b/boost-1.81.0/boost/type_traits/negation.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/negation.hpp rename to boost-1.81.0/boost/type_traits/negation.hpp diff --git a/boost-1.80.0/boost/type_traits/nonesuch.hpp b/boost-1.81.0/boost/type_traits/nonesuch.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/nonesuch.hpp rename to boost-1.81.0/boost/type_traits/nonesuch.hpp diff --git a/boost-1.80.0/boost/type_traits/object_traits.hpp b/boost-1.81.0/boost/type_traits/object_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/object_traits.hpp rename to boost-1.81.0/boost/type_traits/object_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/promote.hpp b/boost-1.81.0/boost/type_traits/promote.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/promote.hpp rename to boost-1.81.0/boost/type_traits/promote.hpp diff --git a/boost-1.80.0/boost/type_traits/rank.hpp b/boost-1.81.0/boost/type_traits/rank.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/rank.hpp rename to boost-1.81.0/boost/type_traits/rank.hpp diff --git a/boost-1.80.0/boost/type_traits/reference_traits.hpp b/boost-1.81.0/boost/type_traits/reference_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/reference_traits.hpp rename to boost-1.81.0/boost/type_traits/reference_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/remove_all_extents.hpp b/boost-1.81.0/boost/type_traits/remove_all_extents.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/remove_all_extents.hpp rename to boost-1.81.0/boost/type_traits/remove_all_extents.hpp diff --git a/boost-1.80.0/boost/type_traits/remove_bounds.hpp b/boost-1.81.0/boost/type_traits/remove_bounds.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/remove_bounds.hpp rename to boost-1.81.0/boost/type_traits/remove_bounds.hpp diff --git a/boost-1.80.0/boost/type_traits/remove_const.hpp b/boost-1.81.0/boost/type_traits/remove_const.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/remove_const.hpp rename to boost-1.81.0/boost/type_traits/remove_const.hpp diff --git a/boost-1.80.0/boost/type_traits/remove_cv.hpp b/boost-1.81.0/boost/type_traits/remove_cv.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/remove_cv.hpp rename to boost-1.81.0/boost/type_traits/remove_cv.hpp diff --git a/boost-1.80.0/boost/type_traits/remove_cv_ref.hpp b/boost-1.81.0/boost/type_traits/remove_cv_ref.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/remove_cv_ref.hpp rename to boost-1.81.0/boost/type_traits/remove_cv_ref.hpp diff --git a/boost-1.80.0/boost/type_traits/remove_extent.hpp b/boost-1.81.0/boost/type_traits/remove_extent.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/remove_extent.hpp rename to boost-1.81.0/boost/type_traits/remove_extent.hpp diff --git a/boost-1.80.0/boost/type_traits/remove_pointer.hpp b/boost-1.81.0/boost/type_traits/remove_pointer.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/remove_pointer.hpp rename to boost-1.81.0/boost/type_traits/remove_pointer.hpp diff --git a/boost-1.80.0/boost/type_traits/remove_reference.hpp b/boost-1.81.0/boost/type_traits/remove_reference.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/remove_reference.hpp rename to boost-1.81.0/boost/type_traits/remove_reference.hpp diff --git a/boost-1.80.0/boost/type_traits/remove_volatile.hpp b/boost-1.81.0/boost/type_traits/remove_volatile.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/remove_volatile.hpp rename to boost-1.81.0/boost/type_traits/remove_volatile.hpp diff --git a/boost-1.80.0/boost/type_traits/same_traits.hpp b/boost-1.81.0/boost/type_traits/same_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/same_traits.hpp rename to boost-1.81.0/boost/type_traits/same_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/transform_traits.hpp b/boost-1.81.0/boost/type_traits/transform_traits.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/transform_traits.hpp rename to boost-1.81.0/boost/type_traits/transform_traits.hpp diff --git a/boost-1.80.0/boost/type_traits/type_identity.hpp b/boost-1.81.0/boost/type_traits/type_identity.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/type_identity.hpp rename to boost-1.81.0/boost/type_traits/type_identity.hpp diff --git a/boost-1.80.0/boost/type_traits/type_with_alignment.hpp b/boost-1.81.0/boost/type_traits/type_with_alignment.hpp similarity index 100% rename from boost-1.80.0/boost/type_traits/type_with_alignment.hpp rename to boost-1.81.0/boost/type_traits/type_with_alignment.hpp diff --git a/boost-1.80.0/boost/version.hpp b/boost-1.81.0/boost/version.hpp similarity index 94% rename from boost-1.80.0/boost/version.hpp rename to boost-1.81.0/boost/version.hpp index 0378a2c..63ed52e 100644 --- a/boost-1.80.0/boost/version.hpp +++ b/boost-1.81.0/boost/version.hpp @@ -19,7 +19,7 @@ // BOOST_VERSION / 100 % 1000 is the minor version // BOOST_VERSION / 100000 is the major version -#define BOOST_VERSION 108000 +#define BOOST_VERSION 108100 // // BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION @@ -27,6 +27,6 @@ // number, y is the minor version number, and z is the patch level if not 0. // This is used by to select which library version to link to. -#define BOOST_LIB_VERSION "1_80" +#define BOOST_LIB_VERSION "1_81" #endif diff --git a/boost-1.80.0/boost/winapi/access_rights.hpp b/boost-1.81.0/boost/winapi/access_rights.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/access_rights.hpp rename to boost-1.81.0/boost/winapi/access_rights.hpp diff --git a/boost-1.80.0/boost/winapi/apc.hpp b/boost-1.81.0/boost/winapi/apc.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/apc.hpp rename to boost-1.81.0/boost/winapi/apc.hpp diff --git a/boost-1.80.0/boost/winapi/basic_types.hpp b/boost-1.81.0/boost/winapi/basic_types.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/basic_types.hpp rename to boost-1.81.0/boost/winapi/basic_types.hpp diff --git a/boost-1.80.0/boost/winapi/bcrypt.hpp b/boost-1.81.0/boost/winapi/bcrypt.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/bcrypt.hpp rename to boost-1.81.0/boost/winapi/bcrypt.hpp diff --git a/boost-1.80.0/boost/winapi/character_code_conversion.hpp b/boost-1.81.0/boost/winapi/character_code_conversion.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/character_code_conversion.hpp rename to boost-1.81.0/boost/winapi/character_code_conversion.hpp diff --git a/boost-1.80.0/boost/winapi/condition_variable.hpp b/boost-1.81.0/boost/winapi/condition_variable.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/condition_variable.hpp rename to boost-1.81.0/boost/winapi/condition_variable.hpp diff --git a/boost-1.80.0/boost/winapi/config.hpp b/boost-1.81.0/boost/winapi/config.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/config.hpp rename to boost-1.81.0/boost/winapi/config.hpp diff --git a/boost-1.80.0/boost/winapi/critical_section.hpp b/boost-1.81.0/boost/winapi/critical_section.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/critical_section.hpp rename to boost-1.81.0/boost/winapi/critical_section.hpp diff --git a/boost-1.80.0/boost/winapi/crypt.hpp b/boost-1.81.0/boost/winapi/crypt.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/crypt.hpp rename to boost-1.81.0/boost/winapi/crypt.hpp diff --git a/boost-1.80.0/boost/winapi/dbghelp.hpp b/boost-1.81.0/boost/winapi/dbghelp.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/dbghelp.hpp rename to boost-1.81.0/boost/winapi/dbghelp.hpp diff --git a/boost-1.80.0/boost/winapi/debugapi.hpp b/boost-1.81.0/boost/winapi/debugapi.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/debugapi.hpp rename to boost-1.81.0/boost/winapi/debugapi.hpp diff --git a/boost-1.80.0/boost/winapi/detail/cast_ptr.hpp b/boost-1.81.0/boost/winapi/detail/cast_ptr.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/detail/cast_ptr.hpp rename to boost-1.81.0/boost/winapi/detail/cast_ptr.hpp diff --git a/boost-1.80.0/boost/winapi/detail/footer.hpp b/boost-1.81.0/boost/winapi/detail/footer.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/detail/footer.hpp rename to boost-1.81.0/boost/winapi/detail/footer.hpp diff --git a/boost-1.80.0/boost/winapi/detail/header.hpp b/boost-1.81.0/boost/winapi/detail/header.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/detail/header.hpp rename to boost-1.81.0/boost/winapi/detail/header.hpp diff --git a/boost-1.80.0/boost/winapi/directory_management.hpp b/boost-1.81.0/boost/winapi/directory_management.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/directory_management.hpp rename to boost-1.81.0/boost/winapi/directory_management.hpp diff --git a/boost-1.80.0/boost/winapi/dll.hpp b/boost-1.81.0/boost/winapi/dll.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/dll.hpp rename to boost-1.81.0/boost/winapi/dll.hpp diff --git a/boost-1.80.0/boost/winapi/environment.hpp b/boost-1.81.0/boost/winapi/environment.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/environment.hpp rename to boost-1.81.0/boost/winapi/environment.hpp diff --git a/boost-1.80.0/boost/winapi/error_codes.hpp b/boost-1.81.0/boost/winapi/error_codes.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/error_codes.hpp rename to boost-1.81.0/boost/winapi/error_codes.hpp diff --git a/boost-1.80.0/boost/winapi/error_handling.hpp b/boost-1.81.0/boost/winapi/error_handling.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/error_handling.hpp rename to boost-1.81.0/boost/winapi/error_handling.hpp diff --git a/boost-1.80.0/boost/winapi/event.hpp b/boost-1.81.0/boost/winapi/event.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/event.hpp rename to boost-1.81.0/boost/winapi/event.hpp diff --git a/boost-1.80.0/boost/winapi/file_management.hpp b/boost-1.81.0/boost/winapi/file_management.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/file_management.hpp rename to boost-1.81.0/boost/winapi/file_management.hpp diff --git a/boost-1.80.0/boost/winapi/file_mapping.hpp b/boost-1.81.0/boost/winapi/file_mapping.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/file_mapping.hpp rename to boost-1.81.0/boost/winapi/file_mapping.hpp diff --git a/boost-1.80.0/boost/winapi/get_current_process.hpp b/boost-1.81.0/boost/winapi/get_current_process.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/get_current_process.hpp rename to boost-1.81.0/boost/winapi/get_current_process.hpp diff --git a/boost-1.80.0/boost/winapi/get_current_process_id.hpp b/boost-1.81.0/boost/winapi/get_current_process_id.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/get_current_process_id.hpp rename to boost-1.81.0/boost/winapi/get_current_process_id.hpp diff --git a/boost-1.80.0/boost/winapi/get_current_thread.hpp b/boost-1.81.0/boost/winapi/get_current_thread.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/get_current_thread.hpp rename to boost-1.81.0/boost/winapi/get_current_thread.hpp diff --git a/boost-1.80.0/boost/winapi/get_current_thread_id.hpp b/boost-1.81.0/boost/winapi/get_current_thread_id.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/get_current_thread_id.hpp rename to boost-1.81.0/boost/winapi/get_current_thread_id.hpp diff --git a/boost-1.80.0/boost/winapi/get_last_error.hpp b/boost-1.81.0/boost/winapi/get_last_error.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/get_last_error.hpp rename to boost-1.81.0/boost/winapi/get_last_error.hpp diff --git a/boost-1.80.0/boost/winapi/get_proc_address.hpp b/boost-1.81.0/boost/winapi/get_proc_address.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/get_proc_address.hpp rename to boost-1.81.0/boost/winapi/get_proc_address.hpp diff --git a/boost-1.80.0/boost/winapi/get_process_times.hpp b/boost-1.81.0/boost/winapi/get_process_times.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/get_process_times.hpp rename to boost-1.81.0/boost/winapi/get_process_times.hpp diff --git a/boost-1.80.0/boost/winapi/get_system_directory.hpp b/boost-1.81.0/boost/winapi/get_system_directory.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/get_system_directory.hpp rename to boost-1.81.0/boost/winapi/get_system_directory.hpp diff --git a/boost-1.80.0/boost/winapi/get_thread_times.hpp b/boost-1.81.0/boost/winapi/get_thread_times.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/get_thread_times.hpp rename to boost-1.81.0/boost/winapi/get_thread_times.hpp diff --git a/boost-1.80.0/boost/winapi/handle_info.hpp b/boost-1.81.0/boost/winapi/handle_info.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/handle_info.hpp rename to boost-1.81.0/boost/winapi/handle_info.hpp diff --git a/boost-1.80.0/boost/winapi/handles.hpp b/boost-1.81.0/boost/winapi/handles.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/handles.hpp rename to boost-1.81.0/boost/winapi/handles.hpp diff --git a/boost-1.80.0/boost/winapi/heap_memory.hpp b/boost-1.81.0/boost/winapi/heap_memory.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/heap_memory.hpp rename to boost-1.81.0/boost/winapi/heap_memory.hpp diff --git a/boost-1.80.0/boost/winapi/init_once.hpp b/boost-1.81.0/boost/winapi/init_once.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/init_once.hpp rename to boost-1.81.0/boost/winapi/init_once.hpp diff --git a/boost-1.80.0/boost/winapi/jobs.hpp b/boost-1.81.0/boost/winapi/jobs.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/jobs.hpp rename to boost-1.81.0/boost/winapi/jobs.hpp diff --git a/boost-1.80.0/boost/winapi/limits.hpp b/boost-1.81.0/boost/winapi/limits.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/limits.hpp rename to boost-1.81.0/boost/winapi/limits.hpp diff --git a/boost-1.80.0/boost/winapi/local_memory.hpp b/boost-1.81.0/boost/winapi/local_memory.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/local_memory.hpp rename to boost-1.81.0/boost/winapi/local_memory.hpp diff --git a/boost-1.80.0/boost/winapi/memory.hpp b/boost-1.81.0/boost/winapi/memory.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/memory.hpp rename to boost-1.81.0/boost/winapi/memory.hpp diff --git a/boost-1.80.0/boost/winapi/mutex.hpp b/boost-1.81.0/boost/winapi/mutex.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/mutex.hpp rename to boost-1.81.0/boost/winapi/mutex.hpp diff --git a/boost-1.80.0/boost/winapi/overlapped.hpp b/boost-1.81.0/boost/winapi/overlapped.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/overlapped.hpp rename to boost-1.81.0/boost/winapi/overlapped.hpp diff --git a/boost-1.80.0/boost/winapi/page_protection_flags.hpp b/boost-1.81.0/boost/winapi/page_protection_flags.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/page_protection_flags.hpp rename to boost-1.81.0/boost/winapi/page_protection_flags.hpp diff --git a/boost-1.80.0/boost/winapi/pipes.hpp b/boost-1.81.0/boost/winapi/pipes.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/pipes.hpp rename to boost-1.81.0/boost/winapi/pipes.hpp diff --git a/boost-1.80.0/boost/winapi/priority_class.hpp b/boost-1.81.0/boost/winapi/priority_class.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/priority_class.hpp rename to boost-1.81.0/boost/winapi/priority_class.hpp diff --git a/boost-1.80.0/boost/winapi/process.hpp b/boost-1.81.0/boost/winapi/process.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/process.hpp rename to boost-1.81.0/boost/winapi/process.hpp diff --git a/boost-1.80.0/boost/winapi/security.hpp b/boost-1.81.0/boost/winapi/security.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/security.hpp rename to boost-1.81.0/boost/winapi/security.hpp diff --git a/boost-1.80.0/boost/winapi/semaphore.hpp b/boost-1.81.0/boost/winapi/semaphore.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/semaphore.hpp rename to boost-1.81.0/boost/winapi/semaphore.hpp diff --git a/boost-1.80.0/boost/winapi/shell.hpp b/boost-1.81.0/boost/winapi/shell.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/shell.hpp rename to boost-1.81.0/boost/winapi/shell.hpp diff --git a/boost-1.80.0/boost/winapi/show_window.hpp b/boost-1.81.0/boost/winapi/show_window.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/show_window.hpp rename to boost-1.81.0/boost/winapi/show_window.hpp diff --git a/boost-1.80.0/boost/winapi/srw_lock.hpp b/boost-1.81.0/boost/winapi/srw_lock.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/srw_lock.hpp rename to boost-1.81.0/boost/winapi/srw_lock.hpp diff --git a/boost-1.80.0/boost/winapi/stack_backtrace.hpp b/boost-1.81.0/boost/winapi/stack_backtrace.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/stack_backtrace.hpp rename to boost-1.81.0/boost/winapi/stack_backtrace.hpp diff --git a/boost-1.80.0/boost/winapi/synchronization.hpp b/boost-1.81.0/boost/winapi/synchronization.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/synchronization.hpp rename to boost-1.81.0/boost/winapi/synchronization.hpp diff --git a/boost-1.80.0/boost/winapi/system.hpp b/boost-1.81.0/boost/winapi/system.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/system.hpp rename to boost-1.81.0/boost/winapi/system.hpp diff --git a/boost-1.80.0/boost/winapi/thread.hpp b/boost-1.81.0/boost/winapi/thread.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/thread.hpp rename to boost-1.81.0/boost/winapi/thread.hpp diff --git a/boost-1.80.0/boost/winapi/thread_pool.hpp b/boost-1.81.0/boost/winapi/thread_pool.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/thread_pool.hpp rename to boost-1.81.0/boost/winapi/thread_pool.hpp diff --git a/boost-1.80.0/boost/winapi/time.hpp b/boost-1.81.0/boost/winapi/time.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/time.hpp rename to boost-1.81.0/boost/winapi/time.hpp diff --git a/boost-1.80.0/boost/winapi/timers.hpp b/boost-1.81.0/boost/winapi/timers.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/timers.hpp rename to boost-1.81.0/boost/winapi/timers.hpp diff --git a/boost-1.80.0/boost/winapi/tls.hpp b/boost-1.81.0/boost/winapi/tls.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/tls.hpp rename to boost-1.81.0/boost/winapi/tls.hpp diff --git a/boost-1.80.0/boost/winapi/wait.hpp b/boost-1.81.0/boost/winapi/wait.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/wait.hpp rename to boost-1.81.0/boost/winapi/wait.hpp diff --git a/boost-1.80.0/boost/winapi/wait_constants.hpp b/boost-1.81.0/boost/winapi/wait_constants.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/wait_constants.hpp rename to boost-1.81.0/boost/winapi/wait_constants.hpp diff --git a/boost-1.80.0/boost/winapi/wait_on_address.hpp b/boost-1.81.0/boost/winapi/wait_on_address.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/wait_on_address.hpp rename to boost-1.81.0/boost/winapi/wait_on_address.hpp diff --git a/boost-1.80.0/boost/winapi/waitable_timer.hpp b/boost-1.81.0/boost/winapi/waitable_timer.hpp similarity index 100% rename from boost-1.80.0/boost/winapi/waitable_timer.hpp rename to boost-1.81.0/boost/winapi/waitable_timer.hpp diff --git a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc141-mt-gd-x32-1_80.lib b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc141-mt-gd-x32-1_81.lib similarity index 59% rename from boost-1.80.0/lib32-msvc/libboost_filesystem-vc141-mt-gd-x32-1_80.lib rename to boost-1.81.0/lib32-msvc/libboost_filesystem-vc141-mt-gd-x32-1_81.lib index 11e28e8..a550045 100644 Binary files a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc141-mt-gd-x32-1_80.lib and b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc141-mt-gd-x32-1_81.lib differ diff --git a/boost-1.81.0/lib32-msvc/libboost_filesystem-vc141-mt-x32-1_81.lib b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc141-mt-x32-1_81.lib new file mode 100644 index 0000000..c3ef73e Binary files /dev/null and b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc141-mt-x32-1_81.lib differ diff --git a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc142-mt-gd-x32-1_80.lib b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc142-mt-gd-x32-1_81.lib similarity index 53% rename from boost-1.80.0/lib32-msvc/libboost_filesystem-vc142-mt-gd-x32-1_80.lib rename to boost-1.81.0/lib32-msvc/libboost_filesystem-vc142-mt-gd-x32-1_81.lib index bac8a55..9ad11d6 100644 Binary files a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc142-mt-gd-x32-1_80.lib and b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc142-mt-gd-x32-1_81.lib differ diff --git a/boost-1.81.0/lib32-msvc/libboost_filesystem-vc142-mt-x32-1_81.lib b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc142-mt-x32-1_81.lib new file mode 100644 index 0000000..5e6d963 Binary files /dev/null and b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc142-mt-x32-1_81.lib differ diff --git a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc143-mt-gd-x32-1_80.lib b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc143-mt-gd-x32-1_81.lib similarity index 51% rename from boost-1.80.0/lib32-msvc/libboost_filesystem-vc143-mt-gd-x32-1_80.lib rename to boost-1.81.0/lib32-msvc/libboost_filesystem-vc143-mt-gd-x32-1_81.lib index d8538ef..e891ee5 100644 Binary files a/boost-1.80.0/lib32-msvc/libboost_filesystem-vc143-mt-gd-x32-1_80.lib and b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc143-mt-gd-x32-1_81.lib differ diff --git a/boost-1.81.0/lib32-msvc/libboost_filesystem-vc143-mt-x32-1_81.lib b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc143-mt-x32-1_81.lib new file mode 100644 index 0000000..b477f31 Binary files /dev/null and b/boost-1.81.0/lib32-msvc/libboost_filesystem-vc143-mt-x32-1_81.lib differ diff --git a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc141-mt-gd-x64-1_80.lib b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc141-mt-gd-x64-1_81.lib similarity index 60% rename from boost-1.80.0/lib64-msvc/libboost_filesystem-vc141-mt-gd-x64-1_80.lib rename to boost-1.81.0/lib64-msvc/libboost_filesystem-vc141-mt-gd-x64-1_81.lib index bd1478d..9bd99e3 100644 Binary files a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc141-mt-gd-x64-1_80.lib and b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc141-mt-gd-x64-1_81.lib differ diff --git a/boost-1.81.0/lib64-msvc/libboost_filesystem-vc141-mt-x64-1_81.lib b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc141-mt-x64-1_81.lib new file mode 100644 index 0000000..933be79 Binary files /dev/null and b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc141-mt-x64-1_81.lib differ diff --git a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc142-mt-gd-x64-1_80.lib b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc142-mt-gd-x64-1_81.lib similarity index 56% rename from boost-1.80.0/lib64-msvc/libboost_filesystem-vc142-mt-gd-x64-1_80.lib rename to boost-1.81.0/lib64-msvc/libboost_filesystem-vc142-mt-gd-x64-1_81.lib index b086590..ed0e017 100644 Binary files a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc142-mt-gd-x64-1_80.lib and b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc142-mt-gd-x64-1_81.lib differ diff --git a/boost-1.81.0/lib64-msvc/libboost_filesystem-vc142-mt-x64-1_81.lib b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc142-mt-x64-1_81.lib new file mode 100644 index 0000000..212ed01 Binary files /dev/null and b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc142-mt-x64-1_81.lib differ diff --git a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc143-mt-gd-x64-1_80.lib b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc143-mt-gd-x64-1_81.lib similarity index 53% rename from boost-1.80.0/lib64-msvc/libboost_filesystem-vc143-mt-gd-x64-1_80.lib rename to boost-1.81.0/lib64-msvc/libboost_filesystem-vc143-mt-gd-x64-1_81.lib index 7aaf077..707f2ee 100644 Binary files a/boost-1.80.0/lib64-msvc/libboost_filesystem-vc143-mt-gd-x64-1_80.lib and b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc143-mt-gd-x64-1_81.lib differ diff --git a/boost-1.81.0/lib64-msvc/libboost_filesystem-vc143-mt-x64-1_81.lib b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc143-mt-x64-1_81.lib new file mode 100644 index 0000000..957eb1d Binary files /dev/null and b/boost-1.81.0/lib64-msvc/libboost_filesystem-vc143-mt-x64-1_81.lib differ diff --git a/freetype-2.12.1/lib/x64/freetype.dll b/freetype-2.12.1/lib/x64/freetype.dll deleted file mode 100644 index 4a0b8d7..0000000 Binary files a/freetype-2.12.1/lib/x64/freetype.dll and /dev/null differ diff --git a/freetype-2.12.1/lib/x64/freetype.lib b/freetype-2.12.1/lib/x64/freetype.lib deleted file mode 100644 index 6b3d672..0000000 Binary files a/freetype-2.12.1/lib/x64/freetype.lib and /dev/null differ diff --git a/freetype-2.12.1/lib/x86/freetype.dll b/freetype-2.12.1/lib/x86/freetype.dll deleted file mode 100644 index 9a7558e..0000000 Binary files a/freetype-2.12.1/lib/x86/freetype.dll and /dev/null differ diff --git a/freetype-2.12.1/lib/x86/freetype.lib b/freetype-2.12.1/lib/x86/freetype.lib deleted file mode 100644 index f8a8bd7..0000000 Binary files a/freetype-2.12.1/lib/x86/freetype.lib and /dev/null differ diff --git a/freetype-2.12.1/include/freetype/config/ftconfig.h b/freetype-2.13.0/include/freetype/config/ftconfig.h similarity index 98% rename from freetype-2.12.1/include/freetype/config/ftconfig.h rename to freetype-2.13.0/include/freetype/config/ftconfig.h index c696e90..a851516 100644 --- a/freetype-2.12.1/include/freetype/config/ftconfig.h +++ b/freetype-2.13.0/include/freetype/config/ftconfig.h @@ -4,7 +4,7 @@ * * ANSI-specific configuration file (specification only). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/config/ftheader.h b/freetype-2.13.0/include/freetype/config/ftheader.h similarity index 99% rename from freetype-2.12.1/include/freetype/config/ftheader.h rename to freetype-2.13.0/include/freetype/config/ftheader.h index a8c6833..e607bce 100644 --- a/freetype-2.12.1/include/freetype/config/ftheader.h +++ b/freetype-2.13.0/include/freetype/config/ftheader.h @@ -4,7 +4,7 @@ * * Build macros of the FreeType 2 library. * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/config/ftmodule.h b/freetype-2.13.0/include/freetype/config/ftmodule.h similarity index 100% rename from freetype-2.12.1/include/freetype/config/ftmodule.h rename to freetype-2.13.0/include/freetype/config/ftmodule.h diff --git a/freetype-2.12.1/include/freetype/config/ftoption.h b/freetype-2.13.0/include/freetype/config/ftoption.h similarity index 97% rename from freetype-2.12.1/include/freetype/config/ftoption.h rename to freetype-2.13.0/include/freetype/config/ftoption.h index c5bde24..9e03e17 100644 --- a/freetype-2.12.1/include/freetype/config/ftoption.h +++ b/freetype-2.13.0/include/freetype/config/ftoption.h @@ -4,7 +4,7 @@ * * User-selectable configuration macros (specification only). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -461,9 +461,9 @@ FT_BEGIN_HEADER * while compiling in 'release' mode): * * ``` - * _af_debug_disable_horz_hints - * _af_debug_disable_vert_hints - * _af_debug_disable_blue_hints + * af_debug_disable_horz_hints_ + * af_debug_disable_vert_hints_ + * af_debug_disable_blue_hints_ * ``` * * Additionally, the following functions provide dumps of various @@ -480,7 +480,7 @@ FT_BEGIN_HEADER * As an argument, they use another global variable: * * ``` - * _af_debug_hints + * af_debug_hints_ * ``` * * Please have a look at the `ftgrid` demo program to see how those @@ -584,12 +584,12 @@ FT_BEGIN_HEADER /************************************************************************** * * Define `TT_CONFIG_OPTION_POSTSCRIPT_NAMES` if you want to be able to - * load and enumerate the glyph Postscript names in a TrueType or OpenType + * load and enumerate Postscript names of glyphs in a TrueType or OpenType * file. * - * Note that when you do not compile the 'psnames' module by undefining the - * above `FT_CONFIG_OPTION_POSTSCRIPT_NAMES`, the 'sfnt' module will - * contain additional code used to read the PS Names table from a font. + * Note that if you do not compile the 'psnames' module by undefining the + * above `FT_CONFIG_OPTION_POSTSCRIPT_NAMES` macro, the 'sfnt' module will + * contain additional code to read the PostScript name table from a font. * * (By default, the module uses 'psnames' to extract glyph names.) */ @@ -739,6 +739,24 @@ FT_BEGIN_HEADER #define TT_CONFIG_OPTION_GX_VAR_SUPPORT + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_NO_BORING_EXPANSION` if you want to exclude + * support for 'boring' OpenType specification expansions. + * + * https://github.com/harfbuzz/boring-expansion-spec + * + * Right now, the following features are covered: + * + * - 'avar' version 2.0 + * + * Most likely, this is a temporary configuration option to be removed in + * the near future, since it is assumed that eventually those features are + * added to the OpenType standard. + */ +/* #define TT_CONFIG_OPTION_NO_BORING_EXPANSION */ + + /************************************************************************** * * Define `TT_CONFIG_OPTION_BDF` if you want to include support for an diff --git a/freetype-2.12.1/include/freetype/config/ftstdlib.h b/freetype-2.13.0/include/freetype/config/ftstdlib.h similarity index 99% rename from freetype-2.12.1/include/freetype/config/ftstdlib.h rename to freetype-2.13.0/include/freetype/config/ftstdlib.h index 7958c2a..3c9d2ae 100644 --- a/freetype-2.12.1/include/freetype/config/ftstdlib.h +++ b/freetype-2.13.0/include/freetype/config/ftstdlib.h @@ -5,7 +5,7 @@ * ANSI-specific library and header configuration file (specification * only). * - * Copyright (C) 2002-2022 by + * Copyright (C) 2002-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/config/integer-types.h b/freetype-2.13.0/include/freetype/config/integer-types.h similarity index 99% rename from freetype-2.12.1/include/freetype/config/integer-types.h rename to freetype-2.13.0/include/freetype/config/integer-types.h index d9d2638..7258b50 100644 --- a/freetype-2.12.1/include/freetype/config/integer-types.h +++ b/freetype-2.13.0/include/freetype/config/integer-types.h @@ -4,7 +4,7 @@ * * FreeType integer types definitions. * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/config/mac-support.h b/freetype-2.13.0/include/freetype/config/mac-support.h similarity index 98% rename from freetype-2.12.1/include/freetype/config/mac-support.h rename to freetype-2.13.0/include/freetype/config/mac-support.h index e42c9fe..b77b96d 100644 --- a/freetype-2.12.1/include/freetype/config/mac-support.h +++ b/freetype-2.13.0/include/freetype/config/mac-support.h @@ -4,7 +4,7 @@ * * Mac/OS X support configuration header. * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/config/public-macros.h b/freetype-2.13.0/include/freetype/config/public-macros.h similarity index 99% rename from freetype-2.12.1/include/freetype/config/public-macros.h rename to freetype-2.13.0/include/freetype/config/public-macros.h index 0074134..23d0fa6 100644 --- a/freetype-2.12.1/include/freetype/config/public-macros.h +++ b/freetype-2.13.0/include/freetype/config/public-macros.h @@ -4,7 +4,7 @@ * * Define a set of compiler macros used in public FreeType headers. * - * Copyright (C) 2020-2022 by + * Copyright (C) 2020-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/freetype.h b/freetype-2.13.0/include/freetype/freetype.h similarity index 98% rename from freetype-2.12.1/include/freetype/freetype.h rename to freetype-2.13.0/include/freetype/freetype.h index aa1a4fe..efff74f 100644 --- a/freetype-2.12.1/include/freetype/freetype.h +++ b/freetype-2.13.0/include/freetype/freetype.h @@ -4,7 +4,7 @@ * * FreeType high-level API and common types (specification only). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -215,7 +215,6 @@ FT_BEGIN_HEADER * FT_Get_Char_Index * FT_Get_First_Char * FT_Get_Next_Char - * FT_Get_Name_Index * FT_Load_Char * * FT_OPEN_MEMORY @@ -254,14 +253,15 @@ FT_BEGIN_HEADER * FT_Get_Kerning * FT_Kerning_Mode * FT_Get_Track_Kerning - * FT_Get_Glyph_Name - * FT_Get_Postscript_Name * * FT_CharMapRec * FT_Select_Charmap * FT_Set_Charmap * FT_Get_Charmap_Index * + * FT_Get_Name_Index + * FT_Get_Glyph_Name + * FT_Get_Postscript_Name * FT_Get_FSType_Flags * FT_Get_SubGlyph_Info * @@ -646,7 +646,7 @@ FT_BEGIN_HEADER * * @note: * Despite the name, this enumeration lists specific character - * repertories (i.e., charsets), and not text encoding methods (e.g., + * repertoires (i.e., charsets), and not text encoding methods (e.g., * UTF-8, UTF-16, etc.). * * Other encodings might be defined in the future. @@ -779,7 +779,7 @@ FT_BEGIN_HEADER * `encoding_id`. If, for example, `encoding_id` is `TT_MAC_ID_ROMAN` * and the language ID (minus~1) is `TT_MAC_LANGID_GREEK`, it is the * Greek encoding, not Roman. `TT_MAC_ID_ARABIC` with - * `TT_MAC_LANGID_FARSI` means the Farsi variant the Arabic encoding. + * `TT_MAC_LANGID_FARSI` means the Farsi variant of the Arabic encoding. */ typedef enum FT_Encoding_ { @@ -1167,9 +1167,9 @@ FT_BEGIN_HEADER * FT_FACE_FLAG_KERNING :: * The face contains kerning information. If set, the kerning distance * can be retrieved using the function @FT_Get_Kerning. Otherwise the - * function always return the vector (0,0). Note that FreeType doesn't - * handle kerning data from the SFNT 'GPOS' table (as present in many - * OpenType fonts). + * function always returns the vector (0,0). Note that FreeType + * doesn't handle kerning data from the SFNT 'GPOS' table (as present + * in many OpenType fonts). * * FT_FACE_FLAG_FAST_GLYPHS :: * THIS FLAG IS DEPRECATED. DO NOT USE OR TEST IT. @@ -1892,13 +1892,13 @@ FT_BEGIN_HEADER * The advance width of the unhinted glyph. Its value is expressed in * 16.16 fractional pixels, unless @FT_LOAD_LINEAR_DESIGN is set when * loading the glyph. This field can be important to perform correct - * WYSIWYG layout. Only relevant for outline glyphs. + * WYSIWYG layout. Only relevant for scalable glyphs. * * linearVertAdvance :: * The advance height of the unhinted glyph. Its value is expressed in * 16.16 fractional pixels, unless @FT_LOAD_LINEAR_DESIGN is set when * loading the glyph. This field can be important to perform correct - * WYSIWYG layout. Only relevant for outline glyphs. + * WYSIWYG layout. Only relevant for scalable glyphs. * * advance :: * This shorthand is, depending on @FT_LOAD_IGNORE_TRANSFORM, the @@ -2593,8 +2593,8 @@ FT_BEGIN_HEADER * stream attachments. */ FT_EXPORT( FT_Error ) - FT_Attach_Stream( FT_Face face, - FT_Open_Args* parameters ); + FT_Attach_Stream( FT_Face face, + const FT_Open_Args* parameters ); /************************************************************************** @@ -3077,7 +3077,7 @@ FT_BEGIN_HEADER * * FT_LOAD_NO_HINTING :: * Disable hinting. This generally generates 'blurrier' bitmap glyphs - * when the glyph are rendered in any of the anti-aliased modes. See + * when the glyphs are rendered in any of the anti-aliased modes. See * also the note below. * * This flag is implied by @FT_LOAD_NO_SCALE. @@ -3434,7 +3434,7 @@ FT_BEGIN_HEADER * are not interested in the value. * * delta :: - * A pointer a translation vector. Set this to NULL if you are not + * A pointer to a translation vector. Set this to NULL if you are not * interested in the value. * * @since: @@ -3559,9 +3559,10 @@ FT_BEGIN_HEADER * * 2. The `sdf` rasterizer has limited support for handling intersecting * contours and *cannot* handle self-intersecting contours whatsoever. - * Self-intersection happens when a single connected contour intersect - * itself at some point; having these in your font definitely pose a - * problem to the rasterizer and cause artifacts, too. + * Self-intersection happens when a single connected contour + * intersects itself at some point; having these in your font + * definitely poses a problem to the rasterizer and cause artifacts, + * too. * * 3. Generating SDF for really small glyphs may result in undesirable * output; the pixel grid (which stores distance information) becomes @@ -3840,89 +3841,6 @@ FT_BEGIN_HEADER FT_Fixed* akerning ); - /************************************************************************** - * - * @function: - * FT_Get_Glyph_Name - * - * @description: - * Retrieve the ASCII name of a given glyph in a face. This only works - * for those faces where @FT_HAS_GLYPH_NAMES(face) returns~1. - * - * @input: - * face :: - * A handle to a source face object. - * - * glyph_index :: - * The glyph index. - * - * buffer_max :: - * The maximum number of bytes available in the buffer. - * - * @output: - * buffer :: - * A pointer to a target buffer where the name is copied to. - * - * @return: - * FreeType error code. 0~means success. - * - * @note: - * An error is returned if the face doesn't provide glyph names or if the - * glyph index is invalid. In all cases of failure, the first byte of - * `buffer` is set to~0 to indicate an empty name. - * - * The glyph name is truncated to fit within the buffer if it is too - * long. The returned string is always zero-terminated. - * - * Be aware that FreeType reorders glyph indices internally so that glyph - * index~0 always corresponds to the 'missing glyph' (called '.notdef'). - * - * This function always returns an error if the config macro - * `FT_CONFIG_OPTION_NO_GLYPH_NAMES` is not defined in `ftoption.h`. - */ - FT_EXPORT( FT_Error ) - FT_Get_Glyph_Name( FT_Face face, - FT_UInt glyph_index, - FT_Pointer buffer, - FT_UInt buffer_max ); - - - /************************************************************************** - * - * @function: - * FT_Get_Postscript_Name - * - * @description: - * Retrieve the ASCII PostScript name of a given face, if available. - * This only works with PostScript, TrueType, and OpenType fonts. - * - * @input: - * face :: - * A handle to the source face object. - * - * @return: - * A pointer to the face's PostScript name. `NULL` if unavailable. - * - * @note: - * The returned pointer is owned by the face and is destroyed with it. - * - * For variation fonts, this string changes if you select a different - * instance, and you have to call `FT_Get_PostScript_Name` again to - * retrieve it. FreeType follows Adobe TechNote #5902, 'Generating - * PostScript Names for Fonts Using OpenType Font Variations'. - * - * https://download.macromedia.com/pub/developer/opentype/tech-notes/5902.AdobePSNameGeneration.html - * - * [Since 2.9] Special PostScript names for named instances are only - * returned if the named instance is set with @FT_Set_Named_Instance (and - * the font has corresponding entries in its 'fvar' table). If - * @FT_IS_VARIATION returns true, the algorithmically derived PostScript - * name is provided, not looking up special entries for named instances. - */ - FT_EXPORT( const char* ) - FT_Get_Postscript_Name( FT_Face face ); - - /************************************************************************** * * @function: @@ -4243,7 +4161,8 @@ FT_BEGIN_HEADER * FT_Get_Name_Index * * @description: - * Return the glyph index of a given glyph name. + * Return the glyph index of a given glyph name. This only works + * for those faces where @FT_HAS_GLYPH_NAMES returns true. * * @input: * face :: @@ -4254,12 +4173,107 @@ FT_BEGIN_HEADER * * @return: * The glyph index. 0~means 'undefined character code'. + * + * @note: + * Acceptable glyph names might come from the [Adobe Glyph + * List](https://github.com/adobe-type-tools/agl-aglfn). See + * @FT_Get_Glyph_Name for the inverse functionality. + * + * This function has limited capabilities if the config macro + * `FT_CONFIG_OPTION_POSTSCRIPT_NAMES` is not defined in `ftoption.h`: + * It then works only for fonts that actually embed glyph names (which + * many recent OpenType fonts do not). */ FT_EXPORT( FT_UInt ) FT_Get_Name_Index( FT_Face face, const FT_String* glyph_name ); + /************************************************************************** + * + * @function: + * FT_Get_Glyph_Name + * + * @description: + * Retrieve the ASCII name of a given glyph in a face. This only works + * for those faces where @FT_HAS_GLYPH_NAMES returns true. + * + * @input: + * face :: + * A handle to a source face object. + * + * glyph_index :: + * The glyph index. + * + * buffer_max :: + * The maximum number of bytes available in the buffer. + * + * @output: + * buffer :: + * A pointer to a target buffer where the name is copied to. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * An error is returned if the face doesn't provide glyph names or if the + * glyph index is invalid. In all cases of failure, the first byte of + * `buffer` is set to~0 to indicate an empty name. + * + * The glyph name is truncated to fit within the buffer if it is too + * long. The returned string is always zero-terminated. + * + * Be aware that FreeType reorders glyph indices internally so that glyph + * index~0 always corresponds to the 'missing glyph' (called '.notdef'). + * + * This function has limited capabilities if the config macro + * `FT_CONFIG_OPTION_POSTSCRIPT_NAMES` is not defined in `ftoption.h`: + * It then works only for fonts that actually embed glyph names (which + * many recent OpenType fonts do not). + */ + FT_EXPORT( FT_Error ) + FT_Get_Glyph_Name( FT_Face face, + FT_UInt glyph_index, + FT_Pointer buffer, + FT_UInt buffer_max ); + + + /************************************************************************** + * + * @function: + * FT_Get_Postscript_Name + * + * @description: + * Retrieve the ASCII PostScript name of a given face, if available. + * This only works with PostScript, TrueType, and OpenType fonts. + * + * @input: + * face :: + * A handle to the source face object. + * + * @return: + * A pointer to the face's PostScript name. `NULL` if unavailable. + * + * @note: + * The returned pointer is owned by the face and is destroyed with it. + * + * For variation fonts, this string changes if you select a different + * instance, and you have to call `FT_Get_PostScript_Name` again to + * retrieve it. FreeType follows Adobe TechNote #5902, 'Generating + * PostScript Names for Fonts Using OpenType Font Variations'. + * + * https://download.macromedia.com/pub/developer/opentype/tech-notes/5902.AdobePSNameGeneration.html + * + * [Since 2.9] Special PostScript names for named instances are only + * returned if the named instance is set with @FT_Set_Named_Instance (and + * the font has corresponding entries in its 'fvar' table). If + * @FT_IS_VARIATION returns true, the algorithmically derived PostScript + * name is provided, not looking up special entries for named instances. + */ + FT_EXPORT( const char* ) + FT_Get_Postscript_Name( FT_Face face ); + + /************************************************************************** * * @enum: @@ -4346,13 +4360,6 @@ FT_BEGIN_HEADER FT_Matrix *p_transform ); - /************************************************************************** - * - * @section: - * base_interface - * - */ - /************************************************************************** * * @enum: @@ -4688,7 +4695,8 @@ FT_BEGIN_HEADER * * @description: * This section contains various functions used to perform computations - * on 16.16 fixed-float numbers or 2d vectors. + * on 16.16 fixed-point numbers or 2D vectors. FreeType does not use + * floating-point data types. * * **Attention**: Most arithmetic functions take `FT_Long` as arguments. * For historical reasons, FreeType was designed under the assumption @@ -4941,8 +4949,8 @@ FT_BEGIN_HEADER * */ #define FREETYPE_MAJOR 2 -#define FREETYPE_MINOR 12 -#define FREETYPE_PATCH 1 +#define FREETYPE_MINOR 13 +#define FREETYPE_PATCH 0 /************************************************************************** diff --git a/freetype-2.12.1/include/freetype/ftadvanc.h b/freetype-2.13.0/include/freetype/ftadvanc.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftadvanc.h rename to freetype-2.13.0/include/freetype/ftadvanc.h index 8ce4846..4560ded 100644 --- a/freetype-2.12.1/include/freetype/ftadvanc.h +++ b/freetype-2.13.0/include/freetype/ftadvanc.h @@ -4,7 +4,7 @@ * * Quick computation of advance widths (specification only). * - * Copyright (C) 2008-2022 by + * Copyright (C) 2008-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftbbox.h b/freetype-2.13.0/include/freetype/ftbbox.h similarity index 98% rename from freetype-2.12.1/include/freetype/ftbbox.h rename to freetype-2.13.0/include/freetype/ftbbox.h index 768478f..fc21740 100644 --- a/freetype-2.12.1/include/freetype/ftbbox.h +++ b/freetype-2.13.0/include/freetype/ftbbox.h @@ -4,7 +4,7 @@ * * FreeType exact bbox computation (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftbdf.h b/freetype-2.13.0/include/freetype/ftbdf.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftbdf.h rename to freetype-2.13.0/include/freetype/ftbdf.h index 04d6094..e8ce643 100644 --- a/freetype-2.12.1/include/freetype/ftbdf.h +++ b/freetype-2.13.0/include/freetype/ftbdf.h @@ -4,7 +4,7 @@ * * FreeType API for accessing BDF-specific strings (specification). * - * Copyright (C) 2002-2022 by + * Copyright (C) 2002-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftbitmap.h b/freetype-2.13.0/include/freetype/ftbitmap.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftbitmap.h rename to freetype-2.13.0/include/freetype/ftbitmap.h index c3462da..eb6b4b1 100644 --- a/freetype-2.12.1/include/freetype/ftbitmap.h +++ b/freetype-2.13.0/include/freetype/ftbitmap.h @@ -4,7 +4,7 @@ * * FreeType utility functions for bitmaps (specification). * - * Copyright (C) 2004-2022 by + * Copyright (C) 2004-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftbzip2.h b/freetype-2.13.0/include/freetype/ftbzip2.h similarity index 98% rename from freetype-2.12.1/include/freetype/ftbzip2.h rename to freetype-2.13.0/include/freetype/ftbzip2.h index c853058..7d29f46 100644 --- a/freetype-2.12.1/include/freetype/ftbzip2.h +++ b/freetype-2.13.0/include/freetype/ftbzip2.h @@ -4,7 +4,7 @@ * * Bzip2-compressed stream support. * - * Copyright (C) 2010-2022 by + * Copyright (C) 2010-2023 by * Joel Klinghed. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftcache.h b/freetype-2.13.0/include/freetype/ftcache.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftcache.h rename to freetype-2.13.0/include/freetype/ftcache.h index ecbbd7b..c768695 100644 --- a/freetype-2.12.1/include/freetype/ftcache.h +++ b/freetype-2.13.0/include/freetype/ftcache.h @@ -4,7 +4,7 @@ * * FreeType Cache subsystem (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -424,7 +424,7 @@ FT_BEGIN_HEADER * pixel :: * A Boolean. If 1, the `width` and `height` fields are interpreted as * integer pixel character sizes. Otherwise, they are expressed as - * 1/64th of points. + * 1/64 of points. * * x_res :: * Only used when `pixel` is value~0 to indicate the horizontal diff --git a/freetype-2.12.1/include/freetype/ftchapters.h b/freetype-2.13.0/include/freetype/ftchapters.h similarity index 100% rename from freetype-2.12.1/include/freetype/ftchapters.h rename to freetype-2.13.0/include/freetype/ftchapters.h diff --git a/freetype-2.12.1/include/freetype/ftcid.h b/freetype-2.13.0/include/freetype/ftcid.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftcid.h rename to freetype-2.13.0/include/freetype/ftcid.h index d801083..ef22939 100644 --- a/freetype-2.12.1/include/freetype/ftcid.h +++ b/freetype-2.13.0/include/freetype/ftcid.h @@ -4,7 +4,7 @@ * * FreeType API for accessing CID font information (specification). * - * Copyright (C) 2007-2022 by + * Copyright (C) 2007-2023 by * Dereg Clegg and Michael Toftdal. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftcolor.h b/freetype-2.13.0/include/freetype/ftcolor.h similarity index 90% rename from freetype-2.12.1/include/freetype/ftcolor.h rename to freetype-2.13.0/include/freetype/ftcolor.h index 3edaee4..eae200f 100644 --- a/freetype-2.12.1/include/freetype/ftcolor.h +++ b/freetype-2.13.0/include/freetype/ftcolor.h @@ -4,7 +4,7 @@ * * FreeType's glyph color management (specification). * - * Copyright (C) 2018-2022 by + * Copyright (C) 2018-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -456,6 +456,9 @@ FT_BEGIN_HEADER * &iterator ) ); * } * ``` + * + * @since: + * 2.10 */ FT_EXPORT( FT_Bool ) FT_Get_Color_Glyph_Layer( FT_Face face, @@ -475,7 +478,7 @@ FT_BEGIN_HEADER * extensions to the 'COLR' table, see * 'https://github.com/googlefonts/colr-gradients-spec'. * - * The enumeration values losely correspond with the format numbers of + * The enumeration values loosely correspond with the format numbers of * the specification: FreeType always returns a fully specified 'Paint' * structure for the 'Transform', 'Translate', 'Scale', 'Rotate', and * 'Skew' table types even though the specification has different formats @@ -489,9 +492,7 @@ FT_BEGIN_HEADER * structures. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef enum FT_PaintFormat_ { @@ -521,9 +522,10 @@ FT_BEGIN_HEADER * * @description: * This iterator object is needed for @FT_Get_Colorline_Stops. It keeps - * state while iterating over the stops of an @FT_ColorLine, - * representing the `ColorLine` struct of the v1 extensions to 'COLR', - * see 'https://github.com/googlefonts/colr-gradients-spec'. + * state while iterating over the stops of an @FT_ColorLine, representing + * the `ColorLine` struct of the v1 extensions to 'COLR', see + * 'https://github.com/googlefonts/colr-gradients-spec'. Do not manually + * modify fields of this iterator. * * @fields: * num_color_stops :: @@ -537,10 +539,12 @@ FT_BEGIN_HEADER * An opaque pointer into 'COLR' table data. Set by @FT_Get_Paint. * Updated by @FT_Get_Colorline_Stops. * - * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. + * read_variable :: + * A boolean keeping track of whether variable color lines are to be + * read. Set by @FT_Get_Paint. * + * @since: + * 2.13 */ typedef struct FT_ColorStopIterator_ { @@ -549,6 +553,8 @@ FT_BEGIN_HEADER FT_Byte* p; + FT_Bool read_variable; + } FT_ColorStopIterator; @@ -569,9 +575,7 @@ FT_BEGIN_HEADER * Alpha transparency value multiplied with the value from 'CPAL'. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_ColorIndex_ { @@ -592,19 +596,18 @@ FT_BEGIN_HEADER * * @fields: * stop_offset :: - * The stop offset between 0 and 1 along the gradient. + * The stop offset along the gradient, expressed as a 16.16 fixed-point + * coordinate. * * color :: * The color information for this stop, see @FT_ColorIndex. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_ColorStop_ { - FT_F2Dot14 stop_offset; + FT_Fixed stop_offset; FT_ColorIndex color; } FT_ColorStop; @@ -621,9 +624,7 @@ FT_BEGIN_HEADER * It describes how the gradient fill continues at the other boundaries. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef enum FT_PaintExtend_ { @@ -653,9 +654,7 @@ FT_BEGIN_HEADER * actual @FT_ColorStop's. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_ColorLine_ { @@ -699,9 +698,7 @@ FT_BEGIN_HEADER * y translation. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_Affine_23_ { @@ -722,9 +719,7 @@ FT_BEGIN_HEADER * 'https://www.w3.org/TR/compositing-1/#porterduffcompositingoperators'. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef enum FT_Composite_Mode_ { @@ -786,9 +781,7 @@ FT_BEGIN_HEADER * to be provided. Do not set this value. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_Opaque_Paint_ { @@ -815,9 +808,7 @@ FT_BEGIN_HEADER * The layer iterator that describes the layers of this paint. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintColrLayers_ { @@ -842,9 +833,7 @@ FT_BEGIN_HEADER * The color information for this solid paint, see @FT_ColorIndex. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintSolid_ { @@ -883,9 +872,7 @@ FT_BEGIN_HEADER * Otherwise equal to~p0. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintLinearGradient_ { @@ -908,8 +895,7 @@ FT_BEGIN_HEADER * A structure representing a `PaintRadialGradient` value of the 'COLR' * v1 extensions, see * 'https://github.com/googlefonts/colr-gradients-spec'. The glyph - * layer filled with this paint is drawn filled filled with a radial - * gradient. + * layer filled with this paint is drawn filled with a radial gradient. * * @fields: * colorline :: @@ -933,9 +919,7 @@ FT_BEGIN_HEADER * units represented as a 16.16 fixed-point value. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintRadialGradient_ { @@ -983,9 +967,7 @@ FT_BEGIN_HEADER * given counter-clockwise, starting from the (positive) y~axis. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintSweepGradient_ { @@ -1016,9 +998,7 @@ FT_BEGIN_HEADER * information that is filled with paint. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintGlyph_ { @@ -1042,9 +1022,7 @@ FT_BEGIN_HEADER * this paint. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintColrGlyph_ { @@ -1070,9 +1048,7 @@ FT_BEGIN_HEADER * 16.16 fixed-point values. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintTransform_ { @@ -1105,9 +1081,7 @@ FT_BEGIN_HEADER * 16.16 fixed-point value. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintTranslate_ { @@ -1156,9 +1130,7 @@ FT_BEGIN_HEADER * 16.16 fixed-point value. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward-compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintScale_ { @@ -1194,16 +1166,14 @@ FT_BEGIN_HEADER * * center_x :: * The x~coordinate of the pivot point of the rotation in font - * units) represented as a 16.16 fixed-point value. + * units represented as a 16.16 fixed-point value. * * center_y :: * The y~coordinate of the pivot point of the rotation in font * units represented as a 16.16 fixed-point value. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintRotate_ @@ -1252,9 +1222,7 @@ FT_BEGIN_HEADER * represented as a 16.16 fixed-point value. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintSkew_ { @@ -1275,9 +1243,8 @@ FT_BEGIN_HEADER * FT_PaintComposite * * @description: - * A structure representing a 'COLR'v1 `PaintComposite` paint table. - * Used for compositing two paints in a 'COLR' v1 directed acycling - * graph. + * A structure representing a 'COLR' v1 `PaintComposite` paint table. + * Used for compositing two paints in a 'COLR' v1 directed acyclic graph. * * @fields: * source_paint :: @@ -1293,9 +1260,7 @@ FT_BEGIN_HEADER * `source_paint` is composited onto. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_PaintComposite_ { @@ -1339,9 +1304,7 @@ FT_BEGIN_HEADER * * @FT_PaintColrGlyph * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_COLR_Paint_ { @@ -1386,9 +1349,7 @@ FT_BEGIN_HEADER * Do not output an initial root transform. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef enum FT_Color_Root_Transform_ { @@ -1429,9 +1390,7 @@ FT_BEGIN_HEADER * fixed-point coordinates in 26.6 format. * * @since: - * 2.12 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ typedef struct FT_ClipBox_ { @@ -1524,9 +1483,7 @@ FT_BEGIN_HEADER * error, value~0 is returned also. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ FT_EXPORT( FT_Bool ) FT_Get_Color_Glyph_Paint( FT_Face face, @@ -1568,9 +1525,7 @@ FT_BEGIN_HEADER * and remove transforms configured using @FT_Set_Transform. * * @since: - * 2.12 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ FT_EXPORT( FT_Bool ) FT_Get_Color_Glyph_ClipBox( FT_Face face, @@ -1617,9 +1572,7 @@ FT_BEGIN_HEADER * object can not be retrieved or any other error occurs. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ FT_EXPORT( FT_Bool ) FT_Get_Paint_Layers( FT_Face face, @@ -1660,9 +1613,7 @@ FT_BEGIN_HEADER * also. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ FT_EXPORT( FT_Bool ) FT_Get_Colorline_Stops( FT_Face face, @@ -1698,9 +1649,7 @@ FT_BEGIN_HEADER * this paint or any other error occured. * * @since: - * 2.11 -- **currently experimental only!** There might be changes - * without retaining backward compatibility of both the API and ABI. - * + * 2.13 */ FT_EXPORT( FT_Bool ) FT_Get_Paint( FT_Face face, diff --git a/freetype-2.12.1/include/freetype/ftdriver.h b/freetype-2.13.0/include/freetype/ftdriver.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftdriver.h rename to freetype-2.13.0/include/freetype/ftdriver.h index 0dc91e8..f90946f 100644 --- a/freetype-2.12.1/include/freetype/ftdriver.h +++ b/freetype-2.13.0/include/freetype/ftdriver.h @@ -4,7 +4,7 @@ * * FreeType API for controlling driver modules (specification only). * - * Copyright (C) 2017-2022 by + * Copyright (C) 2017-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -820,7 +820,6 @@ FT_BEGIN_HEADER * 2.5 */ - /************************************************************************** * * @property: diff --git a/freetype-2.12.1/include/freetype/fterrdef.h b/freetype-2.13.0/include/freetype/fterrdef.h similarity index 99% rename from freetype-2.12.1/include/freetype/fterrdef.h rename to freetype-2.13.0/include/freetype/fterrdef.h index a3acfce..d59b3cc 100644 --- a/freetype-2.12.1/include/freetype/fterrdef.h +++ b/freetype-2.13.0/include/freetype/fterrdef.h @@ -4,7 +4,7 @@ * * FreeType error codes (specification). * - * Copyright (C) 2002-2022 by + * Copyright (C) 2002-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/fterrors.h b/freetype-2.13.0/include/freetype/fterrors.h similarity index 98% rename from freetype-2.12.1/include/freetype/fterrors.h rename to freetype-2.13.0/include/freetype/fterrors.h index ff1b375..15ef3f7 100644 --- a/freetype-2.12.1/include/freetype/fterrors.h +++ b/freetype-2.13.0/include/freetype/fterrors.h @@ -4,7 +4,7 @@ * * FreeType error code handling (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -29,7 +29,7 @@ * * @description: * The header file `fterrors.h` (which is automatically included by - * `freetype.h` defines the handling of FreeType's enumeration + * `freetype.h`) defines the handling of FreeType's enumeration * constants. It can also be used to generate error message strings * with a small macro trick explained below. * diff --git a/freetype-2.12.1/include/freetype/ftfntfmt.h b/freetype-2.13.0/include/freetype/ftfntfmt.h similarity index 98% rename from freetype-2.12.1/include/freetype/ftfntfmt.h rename to freetype-2.13.0/include/freetype/ftfntfmt.h index 77d5535..c0018fc 100644 --- a/freetype-2.12.1/include/freetype/ftfntfmt.h +++ b/freetype-2.13.0/include/freetype/ftfntfmt.h @@ -4,7 +4,7 @@ * * Support functions for font formats. * - * Copyright (C) 2002-2022 by + * Copyright (C) 2002-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftgasp.h b/freetype-2.13.0/include/freetype/ftgasp.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftgasp.h rename to freetype-2.13.0/include/freetype/ftgasp.h index d4ab9b3..d5f19ad 100644 --- a/freetype-2.12.1/include/freetype/ftgasp.h +++ b/freetype-2.13.0/include/freetype/ftgasp.h @@ -4,7 +4,7 @@ * * Access of TrueType's 'gasp' table (specification). * - * Copyright (C) 2007-2022 by + * Copyright (C) 2007-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftglyph.h b/freetype-2.13.0/include/freetype/ftglyph.h similarity index 98% rename from freetype-2.12.1/include/freetype/ftglyph.h rename to freetype-2.13.0/include/freetype/ftglyph.h index 6b77bd3..4658895 100644 --- a/freetype-2.12.1/include/freetype/ftglyph.h +++ b/freetype-2.13.0/include/freetype/ftglyph.h @@ -4,7 +4,7 @@ * * FreeType convenience functions to handle glyphs (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -355,7 +355,7 @@ FT_BEGIN_HEADER * * @output: * aglyph :: - * A handle to the glyph object. + * A handle to the glyph object. `NULL` in case of error. * * @return: * FreeType error code. 0~means success. @@ -385,7 +385,7 @@ FT_BEGIN_HEADER * * @output: * target :: - * A handle to the target glyph object. 0~in case of error. + * A handle to the target glyph object. `NULL` in case of error. * * @return: * FreeType error code. 0~means success. @@ -413,7 +413,7 @@ FT_BEGIN_HEADER * * delta :: * A pointer to a 2d vector to apply. Coordinates are expressed in - * 1/64th of a pixel. + * 1/64 of a pixel. * * @return: * FreeType error code (if not 0, the glyph format is not scalable). @@ -500,7 +500,7 @@ FT_BEGIN_HEADER * @output: * acbox :: * The glyph coordinate bounding box. Coordinates are expressed in - * 1/64th of pixels if it is grid-fitted. + * 1/64 of pixels if it is grid-fitted. * * @note: * Coordinates are relative to the glyph origin, using the y~upwards @@ -671,7 +671,7 @@ FT_BEGIN_HEADER * * @input: * glyph :: - * A handle to the target glyph object. + * A handle to the target glyph object. Can be `NULL`. */ FT_EXPORT( void ) FT_Done_Glyph( FT_Glyph glyph ); diff --git a/freetype-2.12.1/include/freetype/ftgxval.h b/freetype-2.13.0/include/freetype/ftgxval.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftgxval.h rename to freetype-2.13.0/include/freetype/ftgxval.h index 2d3f382..e8de9a6 100644 --- a/freetype-2.12.1/include/freetype/ftgxval.h +++ b/freetype-2.13.0/include/freetype/ftgxval.h @@ -4,7 +4,7 @@ * * FreeType API for validating TrueTypeGX/AAT tables (specification). * - * Copyright (C) 2004-2022 by + * Copyright (C) 2004-2023 by * Masatake YAMATO, Redhat K.K, * David Turner, Robert Wilhelm, and Werner Lemberg. * diff --git a/freetype-2.12.1/include/freetype/ftgzip.h b/freetype-2.13.0/include/freetype/ftgzip.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftgzip.h rename to freetype-2.13.0/include/freetype/ftgzip.h index 0880290..443ec29 100644 --- a/freetype-2.12.1/include/freetype/ftgzip.h +++ b/freetype-2.13.0/include/freetype/ftgzip.h @@ -4,7 +4,7 @@ * * Gzip-compressed stream support. * - * Copyright (C) 2002-2022 by + * Copyright (C) 2002-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftimage.h b/freetype-2.13.0/include/freetype/ftimage.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftimage.h rename to freetype-2.13.0/include/freetype/ftimage.h index 7f2d721..2e8e673 100644 --- a/freetype-2.12.1/include/freetype/ftimage.h +++ b/freetype-2.13.0/include/freetype/ftimage.h @@ -5,7 +5,7 @@ * FreeType glyph image formats and default raster interface * (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftincrem.h b/freetype-2.13.0/include/freetype/ftincrem.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftincrem.h rename to freetype-2.13.0/include/freetype/ftincrem.h index 3b3d93c..2d4f5de 100644 --- a/freetype-2.12.1/include/freetype/ftincrem.h +++ b/freetype-2.13.0/include/freetype/ftincrem.h @@ -4,7 +4,7 @@ * * FreeType incremental loading (specification). * - * Copyright (C) 2002-2022 by + * Copyright (C) 2002-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftlcdfil.h b/freetype-2.13.0/include/freetype/ftlcdfil.h similarity index 98% rename from freetype-2.12.1/include/freetype/ftlcdfil.h rename to freetype-2.13.0/include/freetype/ftlcdfil.h index c767c6c..d3723e1 100644 --- a/freetype-2.12.1/include/freetype/ftlcdfil.h +++ b/freetype-2.13.0/include/freetype/ftlcdfil.h @@ -5,7 +5,7 @@ * FreeType API for color filtering of subpixel bitmap glyphs * (specification). * - * Copyright (C) 2006-2022 by + * Copyright (C) 2006-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -137,11 +137,11 @@ FT_BEGIN_HEADER * * FT_LCD_FILTER_DEFAULT :: * This is a beveled, normalized, and color-balanced five-tap filter - * with weights of [0x08 0x4D 0x56 0x4D 0x08] in 1/256th units. + * with weights of [0x08 0x4D 0x56 0x4D 0x08] in 1/256 units. * * FT_LCD_FILTER_LIGHT :: * this is a boxy, normalized, and color-balanced three-tap filter with - * weights of [0x00 0x55 0x56 0x55 0x00] in 1/256th units. + * weights of [0x00 0x55 0x56 0x55 0x00] in 1/256 units. * * FT_LCD_FILTER_LEGACY :: * FT_LCD_FILTER_LEGACY1 :: @@ -226,7 +226,7 @@ FT_BEGIN_HEADER * * weights :: * A pointer to an array; the function copies the first five bytes and - * uses them to specify the filter weights in 1/256th units. + * uses them to specify the filter weights in 1/256 units. * * @return: * FreeType error code. 0~means success. diff --git a/freetype-2.12.1/include/freetype/ftlist.h b/freetype-2.13.0/include/freetype/ftlist.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftlist.h rename to freetype-2.13.0/include/freetype/ftlist.h index 4dca2bf..b553131 100644 --- a/freetype-2.12.1/include/freetype/ftlist.h +++ b/freetype-2.13.0/include/freetype/ftlist.h @@ -4,7 +4,7 @@ * * Generic list support for FreeType (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftlogging.h b/freetype-2.13.0/include/freetype/ftlogging.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftlogging.h rename to freetype-2.13.0/include/freetype/ftlogging.h index 7213dc3..2246dc8 100644 --- a/freetype-2.12.1/include/freetype/ftlogging.h +++ b/freetype-2.13.0/include/freetype/ftlogging.h @@ -4,7 +4,7 @@ * * Additional debugging APIs. * - * Copyright (C) 2020-2022 by + * Copyright (C) 2020-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftlzw.h b/freetype-2.13.0/include/freetype/ftlzw.h similarity index 98% rename from freetype-2.12.1/include/freetype/ftlzw.h rename to freetype-2.13.0/include/freetype/ftlzw.h index 3d7cfd5..adfd172 100644 --- a/freetype-2.12.1/include/freetype/ftlzw.h +++ b/freetype-2.13.0/include/freetype/ftlzw.h @@ -4,7 +4,7 @@ * * LZW-compressed stream support. * - * Copyright (C) 2004-2022 by + * Copyright (C) 2004-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftmac.h b/freetype-2.13.0/include/freetype/ftmac.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftmac.h rename to freetype-2.13.0/include/freetype/ftmac.h index 3dd61d0..a91e38f 100644 --- a/freetype-2.12.1/include/freetype/ftmac.h +++ b/freetype-2.13.0/include/freetype/ftmac.h @@ -4,7 +4,7 @@ * * Additional Mac-specific API. * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftmm.h b/freetype-2.13.0/include/freetype/ftmm.h similarity index 96% rename from freetype-2.12.1/include/freetype/ftmm.h rename to freetype-2.13.0/include/freetype/ftmm.h index c74ce61..e381ef3 100644 --- a/freetype-2.12.1/include/freetype/ftmm.h +++ b/freetype-2.13.0/include/freetype/ftmm.h @@ -4,7 +4,7 @@ * * FreeType Multiple Master font interface (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -398,6 +398,10 @@ FT_BEGIN_HEADER * FreeType error code. 0~means success. * * @note: + * The design coordinates are 16.16 fractional values for TrueType GX and + * OpenType variation fonts. For Adobe MM fonts, the values are + * integers. + * * [Since 2.8.1] To reset all axes to the default values, call the * function with `num_coords` set to zero and `coords` set to `NULL`. * [Since 2.9] 'Default values' means the currently selected named @@ -440,6 +444,11 @@ FT_BEGIN_HEADER * @return: * FreeType error code. 0~means success. * + * @note: + * The design coordinates are 16.16 fractional values for TrueType GX and + * OpenType variation fonts. For Adobe MM fonts, the values are + * integers. + * * @since: * 2.7.1 */ @@ -471,9 +480,9 @@ FT_BEGIN_HEADER * the number of axes, use default values for the remaining axes. * * coords :: - * The design coordinates array (each element must be between 0 and 1.0 - * for Adobe MM fonts, and between -1.0 and 1.0 for TrueType GX and - * OpenType variation fonts). + * The design coordinates array. Each element is a 16.16 fractional + * value and must be between 0 and 1.0 for Adobe MM fonts, and between + * -1.0 and 1.0 for TrueType GX and OpenType variation fonts. * * @return: * FreeType error code. 0~means success. @@ -518,7 +527,7 @@ FT_BEGIN_HEADER * * @output: * coords :: - * The normalized blend coordinates array. + * The normalized blend coordinates array (as 16.16 fractional values). * * @return: * FreeType error code. 0~means success. diff --git a/freetype-2.12.1/include/freetype/ftmodapi.h b/freetype-2.13.0/include/freetype/ftmodapi.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftmodapi.h rename to freetype-2.13.0/include/freetype/ftmodapi.h index b78db72..c8f0c2c 100644 --- a/freetype-2.12.1/include/freetype/ftmodapi.h +++ b/freetype-2.13.0/include/freetype/ftmodapi.h @@ -4,7 +4,7 @@ * * FreeType modules public interface (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftmoderr.h b/freetype-2.13.0/include/freetype/ftmoderr.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftmoderr.h rename to freetype-2.13.0/include/freetype/ftmoderr.h index 88d2917..c8c892d 100644 --- a/freetype-2.12.1/include/freetype/ftmoderr.h +++ b/freetype-2.13.0/include/freetype/ftmoderr.h @@ -4,7 +4,7 @@ * * FreeType module error offsets (specification). * - * Copyright (C) 2001-2022 by + * Copyright (C) 2001-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftotval.h b/freetype-2.13.0/include/freetype/ftotval.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftotval.h rename to freetype-2.13.0/include/freetype/ftotval.h index 172fcf2..011bdfc 100644 --- a/freetype-2.12.1/include/freetype/ftotval.h +++ b/freetype-2.13.0/include/freetype/ftotval.h @@ -4,7 +4,7 @@ * * FreeType API for validating OpenType tables (specification). * - * Copyright (C) 2004-2022 by + * Copyright (C) 2004-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftoutln.h b/freetype-2.13.0/include/freetype/ftoutln.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftoutln.h rename to freetype-2.13.0/include/freetype/ftoutln.h index 46ebf93..54434b2 100644 --- a/freetype-2.12.1/include/freetype/ftoutln.h +++ b/freetype-2.13.0/include/freetype/ftoutln.h @@ -5,7 +5,7 @@ * Support for the FT_Outline type used to store glyph shapes of * most scalable font formats (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftparams.h b/freetype-2.13.0/include/freetype/ftparams.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftparams.h rename to freetype-2.13.0/include/freetype/ftparams.h index 72080f3..6a9f243 100644 --- a/freetype-2.12.1/include/freetype/ftparams.h +++ b/freetype-2.13.0/include/freetype/ftparams.h @@ -4,7 +4,7 @@ * * FreeType API for possible FT_Parameter tags (specification only). * - * Copyright (C) 2017-2022 by + * Copyright (C) 2017-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftpfr.h b/freetype-2.13.0/include/freetype/ftpfr.h similarity index 97% rename from freetype-2.12.1/include/freetype/ftpfr.h rename to freetype-2.13.0/include/freetype/ftpfr.h index 428e327..7111d40 100644 --- a/freetype-2.12.1/include/freetype/ftpfr.h +++ b/freetype-2.13.0/include/freetype/ftpfr.h @@ -4,7 +4,7 @@ * * FreeType API for accessing PFR-specific data (specification only). * - * Copyright (C) 2002-2022 by + * Copyright (C) 2002-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -161,7 +161,7 @@ FT_BEGIN_HEADER * * @note: * You can use the `x_scale` or `y_scale` results of @FT_Get_PFR_Metrics - * to convert the advance to device subpixels (i.e., 1/64th of pixels). + * to convert the advance to device subpixels (i.e., 1/64 of pixels). */ FT_EXPORT( FT_Error ) FT_Get_PFR_Advance( FT_Face face, diff --git a/freetype-2.12.1/include/freetype/ftrender.h b/freetype-2.13.0/include/freetype/ftrender.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftrender.h rename to freetype-2.13.0/include/freetype/ftrender.h index 0fab3f8..a8576da 100644 --- a/freetype-2.12.1/include/freetype/ftrender.h +++ b/freetype-2.13.0/include/freetype/ftrender.h @@ -4,7 +4,7 @@ * * FreeType renderer modules public interface (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftsizes.h b/freetype-2.13.0/include/freetype/ftsizes.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftsizes.h rename to freetype-2.13.0/include/freetype/ftsizes.h index e30938d..7bfb1ae 100644 --- a/freetype-2.12.1/include/freetype/ftsizes.h +++ b/freetype-2.13.0/include/freetype/ftsizes.h @@ -4,7 +4,7 @@ * * FreeType size objects management (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftsnames.h b/freetype-2.13.0/include/freetype/ftsnames.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftsnames.h rename to freetype-2.13.0/include/freetype/ftsnames.h index 384096a..9d5d22b 100644 --- a/freetype-2.12.1/include/freetype/ftsnames.h +++ b/freetype-2.13.0/include/freetype/ftsnames.h @@ -7,7 +7,7 @@ * * This is _not_ used to retrieve glyph names! * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ftstroke.h b/freetype-2.13.0/include/freetype/ftstroke.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftstroke.h rename to freetype-2.13.0/include/freetype/ftstroke.h index 12c006d..b3d9080 100644 --- a/freetype-2.12.1/include/freetype/ftstroke.h +++ b/freetype-2.13.0/include/freetype/ftstroke.h @@ -4,7 +4,7 @@ * * FreeType path stroker (specification). * - * Copyright (C) 2002-2022 by + * Copyright (C) 2002-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -293,7 +293,7 @@ FT_BEGIN_HEADER * * miter_limit :: * The maximum reciprocal sine of half-angle at the miter join, - * expressed as 16.16 fixed point value. + * expressed as 16.16 fixed-point value. * * @note: * The `radius` is expressed in the same units as the outline diff --git a/freetype-2.12.1/include/freetype/ftsynth.h b/freetype-2.13.0/include/freetype/ftsynth.h similarity index 85% rename from freetype-2.12.1/include/freetype/ftsynth.h rename to freetype-2.13.0/include/freetype/ftsynth.h index afc40b1..5d19697 100644 --- a/freetype-2.12.1/include/freetype/ftsynth.h +++ b/freetype-2.13.0/include/freetype/ftsynth.h @@ -5,7 +5,7 @@ * FreeType synthesizing code for emboldening and slanting * (specification). * - * Copyright (C) 2000-2022 by + * Copyright (C) 2000-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -68,10 +68,19 @@ FT_BEGIN_HEADER FT_EXPORT( void ) FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); - /* Slant an outline glyph to the right by about 12 degrees. */ + /* Slant an outline glyph to the right by about 12 degrees. */ FT_EXPORT( void ) FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); + /* Slant an outline glyph by a given sine of an angle. You can apply */ + /* slant along either x- or y-axis by choosing a corresponding non-zero */ + /* argument. If both slants are non-zero, some affine transformation */ + /* will result. */ + FT_EXPORT( void ) + FT_GlyphSlot_Slant( FT_GlyphSlot slot, + FT_Fixed xslant, + FT_Fixed yslant ); + /* */ diff --git a/freetype-2.12.1/include/freetype/ftsystem.h b/freetype-2.13.0/include/freetype/ftsystem.h similarity index 93% rename from freetype-2.12.1/include/freetype/ftsystem.h rename to freetype-2.13.0/include/freetype/ftsystem.h index 5f8aec7..a995b07 100644 --- a/freetype-2.12.1/include/freetype/ftsystem.h +++ b/freetype-2.13.0/include/freetype/ftsystem.h @@ -4,7 +4,7 @@ * * FreeType low-level system interface definition (specification). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -229,7 +229,8 @@ FT_BEGIN_HEADER * A handle to the source stream. * * offset :: - * The offset of read in stream (always from start). + * The offset from the start of the stream to seek to if this is a seek + * operation (see note). * * buffer :: * The address of the read buffer. @@ -241,8 +242,13 @@ FT_BEGIN_HEADER * The number of bytes effectively read by the stream. * * @note: - * This function might be called to perform a seek or skip operation with - * a `count` of~0. A non-zero return value then indicates an error. + * This function performs a seek *or* a read operation depending on the + * argument values. If `count` is zero, the operation is a seek to + * `offset` bytes. If `count` is >~0, the operation is a read of `count` + * bytes from the current position in the stream, and the `offset` value + * should be ignored. + * + * For seek operations, a non-zero return value indicates an error. * */ typedef unsigned long diff --git a/freetype-2.12.1/include/freetype/fttrigon.h b/freetype-2.13.0/include/freetype/fttrigon.h similarity index 99% rename from freetype-2.12.1/include/freetype/fttrigon.h rename to freetype-2.13.0/include/freetype/fttrigon.h index 4e8d871..294981a 100644 --- a/freetype-2.12.1/include/freetype/fttrigon.h +++ b/freetype-2.13.0/include/freetype/fttrigon.h @@ -4,7 +4,7 @@ * * FreeType trigonometric functions (specification). * - * Copyright (C) 2001-2022 by + * Copyright (C) 2001-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/fttypes.h b/freetype-2.13.0/include/freetype/fttypes.h similarity index 98% rename from freetype-2.12.1/include/freetype/fttypes.h rename to freetype-2.13.0/include/freetype/fttypes.h index 29f32fb..5b109f0 100644 --- a/freetype-2.12.1/include/freetype/fttypes.h +++ b/freetype-2.13.0/include/freetype/fttypes.h @@ -4,7 +4,7 @@ * * FreeType simple types definitions (specification only). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -45,7 +45,10 @@ FT_BEGIN_HEADER * @description: * This section contains the basic data types defined by FreeType~2, * ranging from simple scalar types to bitmap descriptors. More - * font-specific structures are defined in a different section. + * font-specific structures are defined in a different section. Note + * that FreeType does not use floating-point data types. Fractional + * values are represented by fixed-point integers, with lower bits + * storing the fractional part. * * @order: * FT_Byte diff --git a/freetype-2.12.1/include/freetype/ftwinfnt.h b/freetype-2.13.0/include/freetype/ftwinfnt.h similarity index 99% rename from freetype-2.12.1/include/freetype/ftwinfnt.h rename to freetype-2.13.0/include/freetype/ftwinfnt.h index 294f85a..7b701ea 100644 --- a/freetype-2.12.1/include/freetype/ftwinfnt.h +++ b/freetype-2.13.0/include/freetype/ftwinfnt.h @@ -4,7 +4,7 @@ * * FreeType API for accessing Windows fnt-specific data. * - * Copyright (C) 2003-2022 by + * Copyright (C) 2003-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/otsvg.h b/freetype-2.13.0/include/freetype/otsvg.h similarity index 99% rename from freetype-2.12.1/include/freetype/otsvg.h rename to freetype-2.13.0/include/freetype/otsvg.h index 2caadfd..bfe9a6a 100644 --- a/freetype-2.12.1/include/freetype/otsvg.h +++ b/freetype-2.13.0/include/freetype/otsvg.h @@ -4,7 +4,7 @@ * * Interface for OT-SVG support related things (specification). * - * Copyright (C) 2022 by + * Copyright (C) 2022-2023 by * David Turner, Robert Wilhelm, Werner Lemberg, and Moazin Khatti. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/t1tables.h b/freetype-2.13.0/include/freetype/t1tables.h similarity index 99% rename from freetype-2.12.1/include/freetype/t1tables.h rename to freetype-2.13.0/include/freetype/t1tables.h index 4068b20..1aecfbb 100644 --- a/freetype-2.12.1/include/freetype/t1tables.h +++ b/freetype-2.13.0/include/freetype/t1tables.h @@ -5,7 +5,7 @@ * Basic Type 1/Type 2 tables definitions and interface (specification * only). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/ttnameid.h b/freetype-2.13.0/include/freetype/ttnameid.h similarity index 99% rename from freetype-2.12.1/include/freetype/ttnameid.h rename to freetype-2.13.0/include/freetype/ttnameid.h index 37b505a..e31c68b 100644 --- a/freetype-2.12.1/include/freetype/ttnameid.h +++ b/freetype-2.13.0/include/freetype/ttnameid.h @@ -4,7 +4,7 @@ * * TrueType name ID definitions (specification only). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/freetype/tttables.h b/freetype-2.13.0/include/freetype/tttables.h similarity index 99% rename from freetype-2.12.1/include/freetype/tttables.h rename to freetype-2.13.0/include/freetype/tttables.h index 21664df..a9f60e7 100644 --- a/freetype-2.12.1/include/freetype/tttables.h +++ b/freetype-2.13.0/include/freetype/tttables.h @@ -5,7 +5,7 @@ * Basic SFNT/TrueType tables definitions and interface * (specification only). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, @@ -424,8 +424,8 @@ FT_BEGIN_HEADER /* only version 5 and higher: */ - FT_UShort usLowerOpticalPointSize; /* in twips (1/20th points) */ - FT_UShort usUpperOpticalPointSize; /* in twips (1/20th points) */ + FT_UShort usLowerOpticalPointSize; /* in twips (1/20 points) */ + FT_UShort usUpperOpticalPointSize; /* in twips (1/20 points) */ } TT_OS2; diff --git a/freetype-2.12.1/include/freetype/tttags.h b/freetype-2.13.0/include/freetype/tttags.h similarity index 99% rename from freetype-2.12.1/include/freetype/tttags.h rename to freetype-2.13.0/include/freetype/tttags.h index 8b80764..9bf4fca 100644 --- a/freetype-2.12.1/include/freetype/tttags.h +++ b/freetype-2.13.0/include/freetype/tttags.h @@ -4,7 +4,7 @@ * * Tags for TrueType and OpenType tables (specification only). * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.12.1/include/ft2build.h b/freetype-2.13.0/include/ft2build.h similarity index 96% rename from freetype-2.12.1/include/ft2build.h rename to freetype-2.13.0/include/ft2build.h index 2543ac4..58491ce 100644 --- a/freetype-2.12.1/include/ft2build.h +++ b/freetype-2.13.0/include/ft2build.h @@ -4,7 +4,7 @@ * * FreeType 2 build and setup macros. * - * Copyright (C) 1996-2022 by + * Copyright (C) 1996-2023 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, diff --git a/freetype-2.13.0/lib/x64/freetype.dll b/freetype-2.13.0/lib/x64/freetype.dll new file mode 100644 index 0000000..a415cf3 Binary files /dev/null and b/freetype-2.13.0/lib/x64/freetype.dll differ diff --git a/freetype-2.13.0/lib/x64/freetype.lib b/freetype-2.13.0/lib/x64/freetype.lib new file mode 100644 index 0000000..ecd37c0 Binary files /dev/null and b/freetype-2.13.0/lib/x64/freetype.lib differ diff --git a/freetype-2.13.0/lib/x86/freetype.dll b/freetype-2.13.0/lib/x86/freetype.dll new file mode 100644 index 0000000..114764f Binary files /dev/null and b/freetype-2.13.0/lib/x86/freetype.dll differ diff --git a/freetype-2.13.0/lib/x86/freetype.lib b/freetype-2.13.0/lib/x86/freetype.lib new file mode 100644 index 0000000..2561713 Binary files /dev/null and b/freetype-2.13.0/lib/x86/freetype.lib differ diff --git a/libpng-1.6.38/include/png.h b/libpng-1.6.39/include/libpng16/png.h similarity index 99% rename from libpng-1.6.38/include/png.h rename to libpng-1.6.39/include/libpng16/png.h index 5fb494f..f109cdf 100644 --- a/libpng-1.6.38/include/png.h +++ b/libpng-1.6.39/include/libpng16/png.h @@ -1,7 +1,7 @@ /* png.h - header file for PNG reference library * - * libpng version 1.6.38 - September 14, 2022 + * libpng version 1.6.39 - November 20, 2022 * * Copyright (c) 2018-2022 Cosmin Truta * Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson @@ -15,7 +15,7 @@ * libpng versions 0.89, June 1996, through 0.96, May 1997: Andreas Dilger * libpng versions 0.97, January 1998, through 1.6.35, July 2018: * Glenn Randers-Pehrson - * libpng versions 1.6.36, December 2018, through 1.6.38, September 2022: + * libpng versions 1.6.36, December 2018, through 1.6.39, November 2022: * Cosmin Truta * See also "Contributing Authors", below. */ @@ -239,7 +239,7 @@ * ... * 1.5.30 15 10530 15.so.15.30[.0] * ... - * 1.6.38 16 10638 16.so.16.38[.0] + * 1.6.39 16 10639 16.so.16.39[.0] * * Henceforth the source version will match the shared-library major and * minor numbers; the shared-library major version number will be used for @@ -278,8 +278,8 @@ */ /* Version information for png.h - this should match the version in png.c */ -#define PNG_LIBPNG_VER_STRING "1.6.38" -#define PNG_HEADER_VERSION_STRING " libpng version 1.6.38 - September 14, 2022\n" +#define PNG_LIBPNG_VER_STRING "1.6.39" +#define PNG_HEADER_VERSION_STRING " libpng version 1.6.39 - November 20, 2022\n" #define PNG_LIBPNG_VER_SONUM 16 #define PNG_LIBPNG_VER_DLLNUM 16 @@ -287,7 +287,7 @@ /* These should match the first 3 components of PNG_LIBPNG_VER_STRING: */ #define PNG_LIBPNG_VER_MAJOR 1 #define PNG_LIBPNG_VER_MINOR 6 -#define PNG_LIBPNG_VER_RELEASE 38 +#define PNG_LIBPNG_VER_RELEASE 39 /* This should be zero for a public release, or non-zero for a * development version. [Deprecated] @@ -318,7 +318,7 @@ * From version 1.0.1 it is: * XXYYZZ, where XX=major, YY=minor, ZZ=release */ -#define PNG_LIBPNG_VER 10638 /* 1.6.38 */ +#define PNG_LIBPNG_VER 10639 /* 1.6.39 */ /* Library configuration: these options cannot be changed after * the library has been built. @@ -428,7 +428,7 @@ extern "C" { /* This triggers a compiler error in png.c, if png.c and png.h * do not agree upon the version number. */ -typedef char* png_libpng_version_1_6_38; +typedef char* png_libpng_version_1_6_39; /* Basic control structions. Read libpng-manual.txt or libpng.3 for more info. * diff --git a/libpng-1.6.38/include/pngconf.h b/libpng-1.6.39/include/libpng16/pngconf.h similarity index 99% rename from libpng-1.6.38/include/pngconf.h rename to libpng-1.6.39/include/libpng16/pngconf.h index 89d28f8..fcb4b43 100644 --- a/libpng-1.6.38/include/pngconf.h +++ b/libpng-1.6.39/include/libpng16/pngconf.h @@ -1,7 +1,7 @@ /* pngconf.h - machine-configurable file for libpng * - * libpng version 1.6.38 + * libpng version 1.6.39 * * Copyright (c) 2018-2022 Cosmin Truta * Copyright (c) 1998-2002,2004,2006-2016,2018 Glenn Randers-Pehrson diff --git a/libpng-1.6.38/include/libpng16/pnglibconf.h b/libpng-1.6.39/include/libpng16/pnglibconf.h similarity index 99% rename from libpng-1.6.38/include/libpng16/pnglibconf.h rename to libpng-1.6.39/include/libpng16/pnglibconf.h index 89d5b4c..e5948c8 100644 --- a/libpng-1.6.38/include/libpng16/pnglibconf.h +++ b/libpng-1.6.39/include/libpng16/pnglibconf.h @@ -1,6 +1,6 @@ /* pnglibconf.h - library build configuration */ -/* libpng version 1.6.38 */ +/* libpng version 1.6.39 */ /* Copyright (c) 2018-2022 Cosmin Truta */ /* Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson */ diff --git a/libpng-1.6.38/include/libpng16/png.h b/libpng-1.6.39/include/png.h similarity index 99% rename from libpng-1.6.38/include/libpng16/png.h rename to libpng-1.6.39/include/png.h index 5fb494f..f109cdf 100644 --- a/libpng-1.6.38/include/libpng16/png.h +++ b/libpng-1.6.39/include/png.h @@ -1,7 +1,7 @@ /* png.h - header file for PNG reference library * - * libpng version 1.6.38 - September 14, 2022 + * libpng version 1.6.39 - November 20, 2022 * * Copyright (c) 2018-2022 Cosmin Truta * Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson @@ -15,7 +15,7 @@ * libpng versions 0.89, June 1996, through 0.96, May 1997: Andreas Dilger * libpng versions 0.97, January 1998, through 1.6.35, July 2018: * Glenn Randers-Pehrson - * libpng versions 1.6.36, December 2018, through 1.6.38, September 2022: + * libpng versions 1.6.36, December 2018, through 1.6.39, November 2022: * Cosmin Truta * See also "Contributing Authors", below. */ @@ -239,7 +239,7 @@ * ... * 1.5.30 15 10530 15.so.15.30[.0] * ... - * 1.6.38 16 10638 16.so.16.38[.0] + * 1.6.39 16 10639 16.so.16.39[.0] * * Henceforth the source version will match the shared-library major and * minor numbers; the shared-library major version number will be used for @@ -278,8 +278,8 @@ */ /* Version information for png.h - this should match the version in png.c */ -#define PNG_LIBPNG_VER_STRING "1.6.38" -#define PNG_HEADER_VERSION_STRING " libpng version 1.6.38 - September 14, 2022\n" +#define PNG_LIBPNG_VER_STRING "1.6.39" +#define PNG_HEADER_VERSION_STRING " libpng version 1.6.39 - November 20, 2022\n" #define PNG_LIBPNG_VER_SONUM 16 #define PNG_LIBPNG_VER_DLLNUM 16 @@ -287,7 +287,7 @@ /* These should match the first 3 components of PNG_LIBPNG_VER_STRING: */ #define PNG_LIBPNG_VER_MAJOR 1 #define PNG_LIBPNG_VER_MINOR 6 -#define PNG_LIBPNG_VER_RELEASE 38 +#define PNG_LIBPNG_VER_RELEASE 39 /* This should be zero for a public release, or non-zero for a * development version. [Deprecated] @@ -318,7 +318,7 @@ * From version 1.0.1 it is: * XXYYZZ, where XX=major, YY=minor, ZZ=release */ -#define PNG_LIBPNG_VER 10638 /* 1.6.38 */ +#define PNG_LIBPNG_VER 10639 /* 1.6.39 */ /* Library configuration: these options cannot be changed after * the library has been built. @@ -428,7 +428,7 @@ extern "C" { /* This triggers a compiler error in png.c, if png.c and png.h * do not agree upon the version number. */ -typedef char* png_libpng_version_1_6_38; +typedef char* png_libpng_version_1_6_39; /* Basic control structions. Read libpng-manual.txt or libpng.3 for more info. * diff --git a/libpng-1.6.38/include/libpng16/pngconf.h b/libpng-1.6.39/include/pngconf.h similarity index 99% rename from libpng-1.6.38/include/libpng16/pngconf.h rename to libpng-1.6.39/include/pngconf.h index 89d28f8..fcb4b43 100644 --- a/libpng-1.6.38/include/libpng16/pngconf.h +++ b/libpng-1.6.39/include/pngconf.h @@ -1,7 +1,7 @@ /* pngconf.h - machine-configurable file for libpng * - * libpng version 1.6.38 + * libpng version 1.6.39 * * Copyright (c) 2018-2022 Cosmin Truta * Copyright (c) 1998-2002,2004,2006-2016,2018 Glenn Randers-Pehrson diff --git a/libpng-1.6.38/include/pnglibconf.h b/libpng-1.6.39/include/pnglibconf.h similarity index 99% rename from libpng-1.6.38/include/pnglibconf.h rename to libpng-1.6.39/include/pnglibconf.h index 89d5b4c..e5948c8 100644 --- a/libpng-1.6.38/include/pnglibconf.h +++ b/libpng-1.6.39/include/pnglibconf.h @@ -1,6 +1,6 @@ /* pnglibconf.h - library build configuration */ -/* libpng version 1.6.38 */ +/* libpng version 1.6.39 */ /* Copyright (c) 2018-2022 Cosmin Truta */ /* Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson */ diff --git a/libpng-1.6.38/lib/x64/libpng16.dll b/libpng-1.6.39/lib/x64/libpng16.dll similarity index 84% rename from libpng-1.6.38/lib/x64/libpng16.dll rename to libpng-1.6.39/lib/x64/libpng16.dll index dfdd655..9311d7e 100644 Binary files a/libpng-1.6.38/lib/x64/libpng16.dll and b/libpng-1.6.39/lib/x64/libpng16.dll differ diff --git a/libpng-1.6.38/lib/x64/libpng16.lib b/libpng-1.6.39/lib/x64/libpng16.lib similarity index 98% rename from libpng-1.6.38/lib/x64/libpng16.lib rename to libpng-1.6.39/lib/x64/libpng16.lib index 4f414b1..4b951de 100644 Binary files a/libpng-1.6.38/lib/x64/libpng16.lib and b/libpng-1.6.39/lib/x64/libpng16.lib differ diff --git a/libpng-1.6.38/lib/x86/libpng16.dll b/libpng-1.6.39/lib/x86/libpng16.dll similarity index 65% rename from libpng-1.6.38/lib/x86/libpng16.dll rename to libpng-1.6.39/lib/x86/libpng16.dll index 528f99b..7215926 100644 Binary files a/libpng-1.6.38/lib/x86/libpng16.dll and b/libpng-1.6.39/lib/x86/libpng16.dll differ diff --git a/libpng-1.6.38/lib/x86/libpng16.lib b/libpng-1.6.39/lib/x86/libpng16.lib similarity index 100% rename from libpng-1.6.38/lib/x86/libpng16.lib rename to libpng-1.6.39/lib/x86/libpng16.lib diff --git a/nasm-2.15.05/x64/nasm.exe b/nasm-2.15.05/x64/nasm.exe deleted file mode 100755 index a2e6129..0000000 Binary files a/nasm-2.15.05/x64/nasm.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/ndisasm.exe b/nasm-2.15.05/x64/ndisasm.exe deleted file mode 100755 index c4a5b95..0000000 Binary files a/nasm-2.15.05/x64/ndisasm.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/rdoff/ldrdf.exe b/nasm-2.15.05/x64/rdoff/ldrdf.exe deleted file mode 100755 index 2d7ab67..0000000 Binary files a/nasm-2.15.05/x64/rdoff/ldrdf.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/rdoff/rdf2bin.exe b/nasm-2.15.05/x64/rdoff/rdf2bin.exe deleted file mode 100755 index 1a19a1a..0000000 Binary files a/nasm-2.15.05/x64/rdoff/rdf2bin.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/rdoff/rdf2com.exe b/nasm-2.15.05/x64/rdoff/rdf2com.exe deleted file mode 100755 index 1a19a1a..0000000 Binary files a/nasm-2.15.05/x64/rdoff/rdf2com.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/rdoff/rdf2ihx.exe b/nasm-2.15.05/x64/rdoff/rdf2ihx.exe deleted file mode 100755 index 1a19a1a..0000000 Binary files a/nasm-2.15.05/x64/rdoff/rdf2ihx.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/rdoff/rdf2ith.exe b/nasm-2.15.05/x64/rdoff/rdf2ith.exe deleted file mode 100755 index 1a19a1a..0000000 Binary files a/nasm-2.15.05/x64/rdoff/rdf2ith.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/rdoff/rdf2srec.exe b/nasm-2.15.05/x64/rdoff/rdf2srec.exe deleted file mode 100755 index 1a19a1a..0000000 Binary files a/nasm-2.15.05/x64/rdoff/rdf2srec.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/rdoff/rdfdump.exe b/nasm-2.15.05/x64/rdoff/rdfdump.exe deleted file mode 100755 index 6fea35e..0000000 Binary files a/nasm-2.15.05/x64/rdoff/rdfdump.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/rdoff/rdflib.exe b/nasm-2.15.05/x64/rdoff/rdflib.exe deleted file mode 100755 index 87e7f54..0000000 Binary files a/nasm-2.15.05/x64/rdoff/rdflib.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/rdoff/rdx.exe b/nasm-2.15.05/x64/rdoff/rdx.exe deleted file mode 100755 index 5036c98..0000000 Binary files a/nasm-2.15.05/x64/rdoff/rdx.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/nasm.exe b/nasm-2.15.05/x86/nasm.exe deleted file mode 100755 index d487bd8..0000000 Binary files a/nasm-2.15.05/x86/nasm.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/ndisasm.exe b/nasm-2.15.05/x86/ndisasm.exe deleted file mode 100755 index 8879257..0000000 Binary files a/nasm-2.15.05/x86/ndisasm.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/rdoff/ldrdf.exe b/nasm-2.15.05/x86/rdoff/ldrdf.exe deleted file mode 100755 index d60d1fb..0000000 Binary files a/nasm-2.15.05/x86/rdoff/ldrdf.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/rdoff/rdf2bin.exe b/nasm-2.15.05/x86/rdoff/rdf2bin.exe deleted file mode 100755 index 1d38359..0000000 Binary files a/nasm-2.15.05/x86/rdoff/rdf2bin.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/rdoff/rdf2com.exe b/nasm-2.15.05/x86/rdoff/rdf2com.exe deleted file mode 100755 index 1d38359..0000000 Binary files a/nasm-2.15.05/x86/rdoff/rdf2com.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/rdoff/rdf2ihx.exe b/nasm-2.15.05/x86/rdoff/rdf2ihx.exe deleted file mode 100755 index 1d38359..0000000 Binary files a/nasm-2.15.05/x86/rdoff/rdf2ihx.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/rdoff/rdf2ith.exe b/nasm-2.15.05/x86/rdoff/rdf2ith.exe deleted file mode 100755 index 1d38359..0000000 Binary files a/nasm-2.15.05/x86/rdoff/rdf2ith.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/rdoff/rdf2srec.exe b/nasm-2.15.05/x86/rdoff/rdf2srec.exe deleted file mode 100755 index 1d38359..0000000 Binary files a/nasm-2.15.05/x86/rdoff/rdf2srec.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/rdoff/rdfdump.exe b/nasm-2.15.05/x86/rdoff/rdfdump.exe deleted file mode 100755 index f25a6ba..0000000 Binary files a/nasm-2.15.05/x86/rdoff/rdfdump.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/rdoff/rdflib.exe b/nasm-2.15.05/x86/rdoff/rdflib.exe deleted file mode 100755 index e8a297c..0000000 Binary files a/nasm-2.15.05/x86/rdoff/rdflib.exe and /dev/null differ diff --git a/nasm-2.15.05/x86/rdoff/rdx.exe b/nasm-2.15.05/x86/rdoff/rdx.exe deleted file mode 100755 index 09f3e3e..0000000 Binary files a/nasm-2.15.05/x86/rdoff/rdx.exe and /dev/null differ diff --git a/nasm-2.15.05/x64/LICENSE b/nasm-2.16.01/x64/LICENSE similarity index 100% rename from nasm-2.15.05/x64/LICENSE rename to nasm-2.16.01/x64/LICENSE diff --git a/nasm-2.16.01/x64/nasm.exe b/nasm-2.16.01/x64/nasm.exe new file mode 100755 index 0000000..0fb035f Binary files /dev/null and b/nasm-2.16.01/x64/nasm.exe differ diff --git a/nasm-2.16.01/x64/ndisasm.exe b/nasm-2.16.01/x64/ndisasm.exe new file mode 100755 index 0000000..d74b6ff Binary files /dev/null and b/nasm-2.16.01/x64/ndisasm.exe differ diff --git a/nasm-2.15.05/x86/LICENSE b/nasm-2.16.01/x86/LICENSE similarity index 100% rename from nasm-2.15.05/x86/LICENSE rename to nasm-2.16.01/x86/LICENSE diff --git a/nasm-2.16.01/x86/nasm.exe b/nasm-2.16.01/x86/nasm.exe new file mode 100755 index 0000000..a0be9f0 Binary files /dev/null and b/nasm-2.16.01/x86/nasm.exe differ diff --git a/nasm-2.16.01/x86/ndisasm.exe b/nasm-2.16.01/x86/ndisasm.exe new file mode 100755 index 0000000..3f75597 Binary files /dev/null and b/nasm-2.16.01/x86/ndisasm.exe differ diff --git a/zlib-1.2.12/include/zconf.h b/zlib-1.2.13/include/zconf.h similarity index 97% rename from zlib-1.2.12/include/zconf.h rename to zlib-1.2.13/include/zconf.h index 352f552..2271dc5 100644 --- a/zlib-1.2.12/include/zconf.h +++ b/zlib-1.2.13/include/zconf.h @@ -40,6 +40,9 @@ # define crc32 z_crc32 # define crc32_combine z_crc32_combine # define crc32_combine64 z_crc32_combine64 +# define crc32_combine_gen z_crc32_combine_gen +# define crc32_combine_gen64 z_crc32_combine_gen64 +# define crc32_combine_op z_crc32_combine_op # define crc32_z z_crc32_z # define deflate z_deflate # define deflateBound z_deflateBound @@ -351,6 +354,9 @@ # ifdef FAR # undef FAR # endif +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +# endif # include /* No need for _export, use ZLIB.DEF instead. */ /* For complete Windows compatibility, use WINAPI, not __stdcall. */ @@ -469,11 +475,18 @@ typedef uLong FAR uLongf; # undef _LARGEFILE64_SOURCE #endif -#if defined(__WATCOMC__) && !defined(Z_HAVE_UNISTD_H) -# define Z_HAVE_UNISTD_H +#ifndef Z_HAVE_UNISTD_H +# ifdef __WATCOMC__ +# define Z_HAVE_UNISTD_H +# endif +#endif +#ifndef Z_HAVE_UNISTD_H +# if defined(_LARGEFILE64_SOURCE) && !defined(_WIN32) +# define Z_HAVE_UNISTD_H +# endif #endif #ifndef Z_SOLO -# if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE) +# if defined(Z_HAVE_UNISTD_H) # include /* for SEEK_*, off_t, and _LFS64_LARGEFILE */ # ifdef VMS # include /* for off_t */ diff --git a/zlib-1.2.12/include/zlib.h b/zlib-1.2.13/include/zlib.h similarity index 99% rename from zlib-1.2.12/include/zlib.h rename to zlib-1.2.13/include/zlib.h index 4a98e38..953cb50 100644 --- a/zlib-1.2.12/include/zlib.h +++ b/zlib-1.2.13/include/zlib.h @@ -1,5 +1,5 @@ /* zlib.h -- interface of the 'zlib' general purpose compression library - version 1.2.12, March 11th, 2022 + version 1.2.13, October 13th, 2022 Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler @@ -37,11 +37,11 @@ extern "C" { #endif -#define ZLIB_VERSION "1.2.12" -#define ZLIB_VERNUM 0x12c0 +#define ZLIB_VERSION "1.2.13" +#define ZLIB_VERNUM 0x12d0 #define ZLIB_VER_MAJOR 1 #define ZLIB_VER_MINOR 2 -#define ZLIB_VER_REVISION 12 +#define ZLIB_VER_REVISION 13 #define ZLIB_VER_SUBREVISION 0 /* @@ -276,7 +276,7 @@ ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); == 0), or after each call of deflate(). If deflate returns Z_OK and with zero avail_out, it must be called again after making room in the output buffer because there might be more output pending. See deflatePending(), - which can be used if desired to determine whether or not there is more ouput + which can be used if desired to determine whether or not there is more output in that case. Normally the parameter flush is set to Z_NO_FLUSH, which allows deflate to @@ -660,7 +660,7 @@ ZEXTERN int ZEXPORT deflateGetDictionary OF((z_streamp strm, to dictionary. dictionary must have enough space, where 32768 bytes is always enough. If deflateGetDictionary() is called with dictionary equal to Z_NULL, then only the dictionary length is returned, and nothing is copied. - Similary, if dictLength is Z_NULL, then it is not set. + Similarly, if dictLength is Z_NULL, then it is not set. deflateGetDictionary() may return a length less than the window size, even when more than the window size in input has been provided. It may return up @@ -915,7 +915,7 @@ ZEXTERN int ZEXPORT inflateGetDictionary OF((z_streamp strm, to dictionary. dictionary must have enough space, where 32768 bytes is always enough. If inflateGetDictionary() is called with dictionary equal to Z_NULL, then only the dictionary length is returned, and nothing is copied. - Similary, if dictLength is Z_NULL, then it is not set. + Similarly, if dictLength is Z_NULL, then it is not set. inflateGetDictionary returns Z_OK on success, or Z_STREAM_ERROR if the stream state is inconsistent. @@ -1437,12 +1437,12 @@ ZEXTERN z_size_t ZEXPORT gzfread OF((voidp buf, z_size_t size, z_size_t nitems, In the event that the end of file is reached and only a partial item is available at the end, i.e. the remaining uncompressed data length is not a - multiple of size, then the final partial item is nevetheless read into buf + multiple of size, then the final partial item is nevertheless read into buf and the end-of-file flag is set. The length of the partial item read is not provided, but could be inferred from the result of gztell(). This behavior is the same as the behavior of fread() implementations in common libraries, but it prevents the direct use of gzfread() to read a concurrently written - file, reseting and retrying on end-of-file, when size is not 1. + file, resetting and retrying on end-of-file, when size is not 1. */ ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len)); @@ -1913,7 +1913,7 @@ ZEXTERN int ZEXPORT inflateSyncPoint OF((z_streamp)); ZEXTERN const z_crc_t FAR * ZEXPORT get_crc_table OF((void)); ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int)); ZEXTERN int ZEXPORT inflateValidate OF((z_streamp, int)); -ZEXTERN unsigned long ZEXPORT inflateCodesUsed OF ((z_streamp)); +ZEXTERN unsigned long ZEXPORT inflateCodesUsed OF((z_streamp)); ZEXTERN int ZEXPORT inflateResetKeep OF((z_streamp)); ZEXTERN int ZEXPORT deflateResetKeep OF((z_streamp)); #if defined(_WIN32) && !defined(Z_SOLO) diff --git a/zlib-1.2.12/lib/x64/zlib.dll b/zlib-1.2.13/lib/x64/zlib.dll similarity index 54% rename from zlib-1.2.12/lib/x64/zlib.dll rename to zlib-1.2.13/lib/x64/zlib.dll index 5f74148..06cbb48 100644 Binary files a/zlib-1.2.12/lib/x64/zlib.dll and b/zlib-1.2.13/lib/x64/zlib.dll differ diff --git a/zlib-1.2.12/lib/x64/zlib.lib b/zlib-1.2.13/lib/x64/zlib.lib similarity index 96% rename from zlib-1.2.12/lib/x64/zlib.lib rename to zlib-1.2.13/lib/x64/zlib.lib index 24f5d45..da1baaa 100644 Binary files a/zlib-1.2.12/lib/x64/zlib.lib and b/zlib-1.2.13/lib/x64/zlib.lib differ diff --git a/zlib-1.2.12/lib/x86/zlib.dll b/zlib-1.2.13/lib/x86/zlib.dll similarity index 69% rename from zlib-1.2.12/lib/x86/zlib.dll rename to zlib-1.2.13/lib/x86/zlib.dll index 76f15db..52d15ca 100644 Binary files a/zlib-1.2.12/lib/x86/zlib.dll and b/zlib-1.2.13/lib/x86/zlib.dll differ diff --git a/zlib-1.2.12/lib/x86/zlib.lib b/zlib-1.2.13/lib/x86/zlib.lib similarity index 100% rename from zlib-1.2.12/lib/x86/zlib.lib rename to zlib-1.2.13/lib/x86/zlib.lib