00001 /*================================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2017 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 =================================================================================*/ 00020 00021 #ifndef _SO_TEXTURE_CUBEMAP_ENABLED_ELEMENT 00022 #define _SO_TEXTURE_CUBEMAP_ENABLED_ELEMENT 00023 00024 #include <Inventor/elements/SoReplacedTextureElement.h> 00025 #include <Inventor/STL/vector> 00026 00050 class SoTextureCubeMapEnabledElement : public SoReplacedTextureElement 00051 { 00052 00053 SO_ELEMENT_HEADER( SoTextureCubeMapEnabledElement ); 00054 00055 public: 00061 static void set( SoState* state, SbBool value, SoNode* node = NULL ); 00062 00067 static SbBool get( SoState* state, int unit = 0 ); 00068 00072 static SbBool getDefault() { return FALSE; } 00073 00078 virtual void push( SoState* state ); 00079 00083 virtual void pop( SoState* state, const SoElement* prevTopElement ); 00084 00088 static void disableForShapeCache( SoState* state, int unit, bool disable ); 00089 00093 static bool isDisabledForShapeCache( SoState* state, int unit ); 00094 00095 private: 00096 // Initializes the SoTextureCubeMapEnabledElement class 00097 static void initClass(); 00098 static void exitClass(); 00099 00100 virtual ~SoTextureCubeMapEnabledElement(); 00101 00102 private: 00103 00107 virtual void commonInit(); 00108 00110 virtual void init( SoState* state ); 00111 00112 // Indicates for each texture unit if the textureCubeMap is enabled. 00113 bool getEnableFlag(const size_t unit) const; 00114 00115 private: 00116 00117 // Indicates for each texture unit if texturing is enabled. 00118 mutable std::vector<SbBool> m_enable; 00119 00120 // Indicates for each texture init if this texture will be disable in shape cache system 00121 mutable std::vector<int> m_textureDisableForShapeCache; 00122 }; 00123 00124 #endif /* _SO_TEXTURE_CUBEMAP_ENABLED_ELEMENT */ 00125 00126 00127