From 02077305a5b63fcf7242ac909d8caed5cc3cf18f Mon Sep 17 00:00:00 2001 From: talha Date: Sun, 31 Mar 2024 18:22:14 +0500 Subject: Completed lighting, Model loading --- include/assimp/Compiler/poppack1.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 include/assimp/Compiler/poppack1.h (limited to 'include/assimp/Compiler/poppack1.h') diff --git a/include/assimp/Compiler/poppack1.h b/include/assimp/Compiler/poppack1.h new file mode 100644 index 0000000..ff501bc --- /dev/null +++ b/include/assimp/Compiler/poppack1.h @@ -0,0 +1,22 @@ + +// =============================================================================== +// May be included multiple times - resets structure packing to the defaults +// for all supported compilers. Reverts the changes made by #include +// +// Currently this works on the following compilers: +// MSVC 7,8,9 +// GCC +// BORLAND (complains about 'pack state changed but not reverted', but works) +// =============================================================================== + +#ifndef AI_PUSHPACK_IS_DEFINED +# error pushpack1.h must be included after poppack1.h +#endif + +// reset packing to the original value +#if (defined(_MSC_VER) && !defined(__clang__)) || defined(__BORLANDC__) || defined (__BCPLUSPLUS__) +# pragma pack( pop ) +#endif +#undef PACK_STRUCT + +#undef AI_PUSHPACK_IS_DEFINED -- cgit v1.2.3