Merge pull request #3518 from Biswa96/add-msvc-check
Check _MSC_VER for MSVC specific pragma directives.pull/3519/head^2
commit
3d49d06bcc
|
@ -9,8 +9,10 @@ For details, see http://sourceforge.net/projects/libb64
|
||||||
|
|
||||||
const int CHARS_PER_LINE = 72;
|
const int CHARS_PER_LINE = 72;
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(push)
|
#pragma warning(push)
|
||||||
#pragma warning(disable : 4244)
|
#pragma warning(disable : 4244)
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
||||||
void base64_init_encodestate(base64_encodestate* state_in)
|
void base64_init_encodestate(base64_encodestate* state_in)
|
||||||
{
|
{
|
||||||
|
@ -33,9 +35,9 @@ int base64_encode_block(const char* plaintext_in, int length_in, char* code_out,
|
||||||
char* codechar = code_out;
|
char* codechar = code_out;
|
||||||
char result;
|
char result;
|
||||||
char fragment;
|
char fragment;
|
||||||
|
|
||||||
result = state_in->result;
|
result = state_in->result;
|
||||||
|
|
||||||
switch (state_in->step)
|
switch (state_in->step)
|
||||||
{
|
{
|
||||||
while (1)
|
while (1)
|
||||||
|
@ -74,7 +76,7 @@ int base64_encode_block(const char* plaintext_in, int length_in, char* code_out,
|
||||||
*codechar++ = base64_encode_value(result);
|
*codechar++ = base64_encode_value(result);
|
||||||
result = (fragment & 0x03f) >> 0;
|
result = (fragment & 0x03f) >> 0;
|
||||||
*codechar++ = base64_encode_value(result);
|
*codechar++ = base64_encode_value(result);
|
||||||
|
|
||||||
++(state_in->stepcount);
|
++(state_in->stepcount);
|
||||||
if (state_in->stepcount == CHARS_PER_LINE/4)
|
if (state_in->stepcount == CHARS_PER_LINE/4)
|
||||||
{
|
{
|
||||||
|
@ -90,7 +92,7 @@ int base64_encode_block(const char* plaintext_in, int length_in, char* code_out,
|
||||||
int base64_encode_blockend(char* code_out, base64_encodestate* state_in)
|
int base64_encode_blockend(char* code_out, base64_encodestate* state_in)
|
||||||
{
|
{
|
||||||
char* codechar = code_out;
|
char* codechar = code_out;
|
||||||
|
|
||||||
switch (state_in->step)
|
switch (state_in->step)
|
||||||
{
|
{
|
||||||
case step_B:
|
case step_B:
|
||||||
|
@ -106,8 +108,10 @@ int base64_encode_blockend(char* code_out, base64_encodestate* state_in)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
*codechar++ = '\n';
|
*codechar++ = '\n';
|
||||||
|
|
||||||
return (int)(codechar - code_out);
|
return (int)(codechar - code_out);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
|
@ -27,10 +27,10 @@ THE SOFTWARE.
|
||||||
#include "o3dgcArithmeticCodec.h"
|
#include "o3dgcArithmeticCodec.h"
|
||||||
#include "o3dgcTimer.h"
|
#include "o3dgcTimer.h"
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _MSC_VER
|
||||||
# pragma warning(push)
|
# pragma warning(push)
|
||||||
# pragma warning( disable : 4456)
|
# pragma warning( disable : 4456)
|
||||||
#endif // _WIN32
|
#endif // _MSC_VER
|
||||||
|
|
||||||
//#define DEBUG_VERBOSE
|
//#define DEBUG_VERBOSE
|
||||||
|
|
||||||
|
@ -852,9 +852,9 @@ namespace o3dgc
|
||||||
}
|
}
|
||||||
} // namespace o3dgc
|
} // namespace o3dgc
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _MSC_VER
|
||||||
# pragma warning( pop )
|
# pragma warning( pop )
|
||||||
#endif // _WIN32
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#endif // O3DGC_SC3DMC_DECODER_INL
|
#endif // O3DGC_SC3DMC_DECODER_INL
|
||||||
|
|
||||||
|
|
|
@ -32,10 +32,10 @@ THE SOFTWARE.
|
||||||
|
|
||||||
//#define DEBUG_VERBOSE
|
//#define DEBUG_VERBOSE
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _MSC_VER
|
||||||
# pragma warning(push)
|
# pragma warning(push)
|
||||||
# pragma warning(disable : 4456)
|
# pragma warning(disable : 4456)
|
||||||
#endif // _WIN32
|
#endif // _MSC_VER
|
||||||
|
|
||||||
namespace o3dgc
|
namespace o3dgc
|
||||||
{
|
{
|
||||||
|
@ -927,9 +927,9 @@ namespace o3dgc
|
||||||
}
|
}
|
||||||
} // namespace o3dgc
|
} // namespace o3dgc
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _MSC_VER
|
||||||
# pragma warning(pop)
|
# pragma warning(pop)
|
||||||
#endif // _WIN32
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#endif // O3DGC_SC3DMC_ENCODER_INL
|
#endif // O3DGC_SC3DMC_ENCODER_INL
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,9 @@ THE SOFTWARE.
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
/* Thank you, Microsoft, for file WinDef.h with min/max redefinition. */
|
/* Thank you, Microsoft, for file WinDef.h with min/max redefinition. */
|
||||||
|
#ifndef NOMINMAX
|
||||||
#define NOMINMAX
|
#define NOMINMAX
|
||||||
|
#endif
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#elif __APPLE__
|
#elif __APPLE__
|
||||||
#include <mach/clock.h>
|
#include <mach/clock.h>
|
||||||
|
|
|
@ -18,8 +18,10 @@
|
||||||
/* Win32, DOS, MSVC, MSVS */
|
/* Win32, DOS, MSVC, MSVS */
|
||||||
#include <direct.h>
|
#include <direct.h>
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(push)
|
#pragma warning(push)
|
||||||
#pragma warning(disable : 4706)
|
#pragma warning(disable : 4706)
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#define MKDIR(DIRNAME) _mkdir(DIRNAME)
|
#define MKDIR(DIRNAME) _mkdir(DIRNAME)
|
||||||
#define STRCLONE(STR) ((STR) ? _strdup(STR) : NULL)
|
#define STRCLONE(STR) ((STR) ? _strdup(STR) : NULL)
|
||||||
|
@ -968,4 +970,6 @@ out:
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
|
@ -52,9 +52,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#pragma GCC system_header
|
#pragma GCC system_header
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _MSC_VER
|
||||||
#pragma warning(disable : 4351)
|
#pragma warning(disable : 4351)
|
||||||
#endif // _WIN32
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#include <assimp/aabb.h>
|
#include <assimp/aabb.h>
|
||||||
#include <assimp/types.h>
|
#include <assimp/types.h>
|
||||||
|
@ -458,8 +458,8 @@ struct aiAnimMesh {
|
||||||
*/
|
*/
|
||||||
unsigned int mNumVertices;
|
unsigned int mNumVertices;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Weight of the AnimMesh.
|
* Weight of the AnimMesh.
|
||||||
*/
|
*/
|
||||||
float mWeight;
|
float mWeight;
|
||||||
|
|
||||||
|
@ -713,8 +713,8 @@ struct aiMesh {
|
||||||
* Note! Currently only works with Collada loader.*/
|
* Note! Currently only works with Collada loader.*/
|
||||||
C_STRUCT aiAnimMesh **mAnimMeshes;
|
C_STRUCT aiAnimMesh **mAnimMeshes;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method of morphing when animeshes are specified.
|
* Method of morphing when animeshes are specified.
|
||||||
*/
|
*/
|
||||||
unsigned int mMethod;
|
unsigned int mMethod;
|
||||||
|
|
||||||
|
|
|
@ -31,10 +31,16 @@
|
||||||
#include <dxgiformat.h>
|
#include <dxgiformat.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(push)
|
#pragma warning(push)
|
||||||
#pragma warning(disable : 4005)
|
#pragma warning(disable : 4005)
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#include <wincodec.h>
|
#include <wincodec.h>
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
|
|
@ -31,10 +31,16 @@
|
||||||
|
|
||||||
#include <d3d11.h>
|
#include <d3d11.h>
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(push)
|
#pragma warning(push)
|
||||||
#pragma warning(disable : 4005)
|
#pragma warning(disable : 4005)
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
||||||
HRESULT CreateWICTextureFromMemory(_In_ ID3D11Device* d3dDevice,
|
HRESULT CreateWICTextureFromMemory(_In_ ID3D11Device* d3dDevice,
|
||||||
_In_opt_ ID3D11DeviceContext* d3dContext,
|
_In_opt_ ID3D11DeviceContext* d3dContext,
|
||||||
|
|
|
@ -25,10 +25,12 @@
|
||||||
#include "UTFConverter.h"
|
#include "UTFConverter.h"
|
||||||
#include "SafeRelease.hpp"
|
#include "SafeRelease.hpp"
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma comment (lib, "d3d11.lib")
|
#pragma comment (lib, "d3d11.lib")
|
||||||
#pragma comment (lib, "Dxgi.lib")
|
#pragma comment (lib, "Dxgi.lib")
|
||||||
#pragma comment(lib,"d3dcompiler.lib")
|
#pragma comment(lib,"d3dcompiler.lib")
|
||||||
#pragma comment (lib, "dxguid.lib")
|
#pragma comment (lib, "dxguid.lib")
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
||||||
using namespace DirectX;
|
using namespace DirectX;
|
||||||
using namespace AssimpSamples::SharedCode;
|
using namespace AssimpSamples::SharedCode;
|
||||||
|
|
|
@ -18,10 +18,16 @@
|
||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
#include <GL/glu.h>
|
#include <GL/glu.h>
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(disable: 4100) // Disable warning 'unreferenced formal parameter'
|
#pragma warning(disable: 4100) // Disable warning 'unreferenced formal parameter'
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#define STB_IMAGE_IMPLEMENTATION
|
#define STB_IMAGE_IMPLEMENTATION
|
||||||
#include "contrib/stb_image/stb_image.h"
|
#include "contrib/stb_image/stb_image.h"
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(default: 4100) // Enable warning 'unreferenced formal parameter'
|
#pragma warning(default: 4100) // Enable warning 'unreferenced formal parameter'
|
||||||
|
#endif // _MSC_VER
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue