mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-10 09:43:52 +01:00
Burningsvideo 0.52 Linux Warnings
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6156 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
parent
e21ef3d169
commit
1170f08dae
@ -361,7 +361,7 @@ namespace video
|
|||||||
ETF_TEXGEN_MASK = ETF_TEXGEN_CAMERA_SPHERE | ETF_TEXGEN_CAMERA_REFLECTION | ETF_TEXGEN_WRAP
|
ETF_TEXGEN_MASK = ETF_TEXGEN_CAMERA_SPHERE | ETF_TEXGEN_CAMERA_REFLECTION | ETF_TEXGEN_WRAP
|
||||||
};
|
};
|
||||||
size_t TransformationStack; // 0 .. 3D , 1 .. 2D
|
size_t TransformationStack; // 0 .. 3D , 1 .. 2D
|
||||||
core::matrix4 Transformation[2][ETS_COUNT_BURNING];
|
core::matrix4 ALIGN(16) Transformation[2][ETS_COUNT_BURNING];
|
||||||
size_t TransformationFlag[2][ETS_COUNT_BURNING]; // E_TRANSFORMATION_FLAG
|
size_t TransformationFlag[2][ETS_COUNT_BURNING]; // E_TRANSFORMATION_FLAG
|
||||||
|
|
||||||
|
|
||||||
|
@ -376,8 +376,7 @@ namespace video
|
|||||||
tFixPoint AlphaRef;
|
tFixPoint AlphaRef;
|
||||||
int RenderPass_ShaderIsTransparent;
|
int RenderPass_ShaderIsTransparent;
|
||||||
|
|
||||||
u8 _unused_pack[4];
|
sScanConvertData ALIGN(16) scan;
|
||||||
sScanConvertData scan;
|
|
||||||
sScanLineData line;
|
sScanLineData line;
|
||||||
tVideoSample PrimitiveColor; //used if no color interpolation is defined
|
tVideoSample PrimitiveColor; //used if no color interpolation is defined
|
||||||
|
|
||||||
|
@ -306,4 +306,13 @@ namespace irr {
|
|||||||
//! Size of a static C-style array.
|
//! Size of a static C-style array.
|
||||||
#define array_size(_arr) ((sizeof(_arr)/sizeof(*_arr)))
|
#define array_size(_arr) ((sizeof(_arr)/sizeof(*_arr)))
|
||||||
|
|
||||||
|
//! Compiler Align
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#define ALIGN(x) __declspec(align(x))
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
#define ALIGN(x) __attribute__ ((aligned(x)))
|
||||||
|
#else
|
||||||
|
#define ALIGN(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
|
#endif // __S_VIDEO_2_SOFTWARE_COMPILE_CONFIG_H_INCLUDED__
|
||||||
|
Loading…
Reference in New Issue
Block a user