00001
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef NL_MESH_BLENDER_H
00027 #define NL_MESH_BLENDER_H
00028
00029 #include "nel/misc/types_nl.h"
00030 #include "3d/material.h"
00031
00032
00033 namespace NL3D
00034 {
00035
00036
00037 class IDriver;
00038
00039
00048 class CMeshBlender
00049 {
00050 public:
00051
00053 CMeshBlender() {}
00054
00056 void prepareRenderForGlobalAlpha(CMaterial &material, IDriver *drv, float globalAlpha, uint8 globalAlphaInt, bool gaDisableZWrite);
00057
00059 void restoreRender(CMaterial &material, IDriver *drv, bool gaDisableZWrite);
00060
00062 void prepareRenderForGlobalAlphaCoarseMesh(CMaterial &material, IDriver *drv, NLMISC::CRGBA color, float globalAlpha, bool gaDisableZWrite);
00063
00065 void restoreRenderCoarseMesh(CMaterial &material, IDriver *drv, bool gaDisableZWrite);
00066
00067 private:
00068 uint8 _BkOpacity;
00069 bool _BkZWrite;
00070 bool _BkBlend;
00071 CMaterial::TBlend _BkSrcBlend;
00072 CMaterial::TBlend _BkDstBlend;
00073 float _BkAlphaTestThreshold;
00074 NLMISC::CRGBA _BkupColor;
00075
00076 };
00077
00078
00079 }
00080
00081
00082 #endif // NL_MESH_BLENDER_H
00083
00084