| /NW4C-1.3.3/include/nw/ut/ |
| D | ut_ResDeclMacros.h | 27 #define NW_RES_FIELD_PRIMITIVE_DECL( type, name ) \ argument 28 type Get##name() const { return static_cast<type>(ref().m_##name); } \ 29 void Set##name(type value) { ref().m_##name = value; } \ 31 #define NW_RES_FIELD_FLAGS_DECL( type, name ) \ argument 32 type Get##name() const { return static_cast<type>(ref().m_##name); } \ 33 void Set##name(type value) { ref().m_##name = value; } \ 34 …void Enable##name(type value) { ref().m_##name = ut::EnableFlag(ref().m_##name, value); } … 35 …void Disable##name(type value) { ref().m_##name = ut::DisableFlag(ref().m_##name, value); }… 37 #define NW_RES_FIELD_BOOL_PRIMITIVE_DECL( name ) \ argument 38 bool Is##name() const { return static_cast<bool>(ref().m_Is##name); } \ [all …]
|
| D | ut_TypeTraits.h | 63 #define NW_UT_DECLARE_TYPE_REMOVE_TEMPLATE_BASE_(name, ttype) \ 65 struct name \ 70 #define NW_UT_DECLARE_TYPE_REMOVE_TEMPLATE_(name, ttype, modifier) \ 72 struct name<modifier> \ 77 #define NW_UT_DECLARE_TYPE_REMOVE_TEMPLATE2_(name, ttype, modifier, ...) \ 79 struct name<modifier> \
|
| D | ut_ResTypeInfo.h | 28 #define NW_UT_RES_TYPE_INFO(name) internal::name##_TYPE_INFO argument
|
| /NW4C-1.3.3/sources/libraries/lyt/ |
| D | lyt_ArcResourceAccessor.cpp | 120 bSuccess = ARCChangeDir(pArcHandle, dirEntry.name); in FindNameResource() 132 if (wcsicmp(resName, dirEntry.name) == 0) in FindNameResource() 151 const wchar_t* name, in GetResourceSub() argument 163 entryNum = FindNameResource(pArcHandle, name); in GetResourceSub() 178 entryNum = ARCConvertPathToEntrynum(pArcHandle, name); in GetResourceSub() 253 const char* name, in GetResource() argument 258 strncpy(m_ResNameWork, dstBufCount, name); in GetResource() 291 ArcResourceAccessor::GetFont(const char *name) in GetFont() argument 293 font::Font* pFont = m_FontList.FindFontByName(name); in GetFont() 297 pFont = this->LoadFont(name); in GetFont() [all …]
|
| D | lyt_TextureContainer.cpp | 43 const char* name, in Set() argument 46 NW_NULL_ASSERT(name); in Set() 49 ut::strcpy(m_Name, sizeof(m_Name), name); in Set() 70 TextureContainer::FindTextureByName(const char* name) in FindTextureByName() argument 74 if (0 == std::strcmp(name, it->GetResourceName())) in FindTextureByName() 101 TextureContainer::RegistTexture(const char* name, const TextureInfo& textureInfo) in RegistTexture() argument 103 NW_ASSERT(name); in RegistTexture() 111 pLink->Set(name, textureInfo); in RegistTexture()
|
| D | lyt_ResourceAccessor.cpp | 37 ResourceAccessor::LoadTexture(const char *name) in LoadTexture() argument 40 void* pTexRes = this->GetResource(res::RESOURCETYPE_TEXTURE, name, &size); in LoadTexture() 43 NW_WARNING(false, "texture resource not found. - %s", name); in LoadTexture() 50 NW_WARNING(false, "texture object unavailable. - %s", name); in LoadTexture() 58 ResourceAccessor::LoadFont(const char *name) in LoadFont() argument 61 void* pFontRes = this->GetResource(res::RESOURCETYPE_FONT, name, &size); in LoadFont() 64 NW_WARNING(false, "font resource not found. - %s", name); in LoadFont()
|
| D | lyt_FontContainer.cpp | 59 const char* name, in Set() argument 64 ut::strcpy(m_FontName, sizeof(m_FontName), name); in Set() 87 const char* name in FindFontByName() argument 92 if (0 == std::strcmp(name, it->GetFontName())) in FindFontByName() 119 FontContainer::RegistFont(const char* name, font::Font* pFont, bool own) in RegistFont() argument 128 pLink->Set(name, pFont, own); in RegistFont()
|
| /NW4C-1.3.3/include/nw/lyt/ |
| D | lyt_ArcResourceAccessor.h | 86 const char* name, 129 FontKey RegistFont(const char* name, font::Font* pFont); 156 TextureKey RegistTexture(const char* name, const TextureInfo& textureInfo); 187 virtual const TextureInfo GetTexture(const char* name); 206 virtual font::Font* GetFont(const char* name); 454 const char* name, 473 FontKey RegistFont(const char* name, font::Font* pFont); 500 TextureKey RegistTexture(const char* name, const TextureInfo& textureInfo); 531 virtual const TextureInfo GetTexture(const char* name); 550 virtual font::Font* GetFont(const char* name);
|
| D | lyt_ResourceAccessor.h | 104 const char* name, 128 virtual font::Font* GetFont(const char* name) = 0; 153 virtual const TextureInfo GetTexture(const char* name) = 0; 175 virtual const TextureInfo LoadTexture(const char* name); 193 virtual font::Font* LoadFont(const char* name);
|
| D | lyt_FontContainer.h | 82 const char* name, 180 FontKey RegistFont(const char* name, font::Font* pFont, bool own); 205 const char* name
|
| D | lyt_TextureContainer.h | 166 TextureKey RegistTexture(const char* name, const TextureInfo& textureInfo); 191 const TextureInfo FindTextureByName(const char* name);
|
| /NW4C-1.3.3/include/nw/dev/ |
| D | dev_ParticleProfile.h | 85 static bool Start(const char* name); 138 #define NW_PARTICLE_PROFILE_START(name) bool ret = nw::dev::ParticleProfileCenter::Start(name) argument 143 #define NW_PARTICLE_PROFILE(name) \ argument 144 nw::dev::AutoProfile p(name, nw::dev::ParticleProfileCenter::GetProfileManager()) 163 #define NW_PARTICLE_PROFILE_START(name) (void)0 argument 165 #define NW_PARTICLE_PROFILE(name) (void)0 argument
|
| D | dev_Config.h | 29 #define NW_PROFILE(name) nw::dev::AutoProfile NW_profile(name, nw::dev::ProfileCenter::GetProfileMa… argument 37 #define NW_PROFILE(name) (void)0 argument
|
| /NW4C-1.3.3/tools/CsdrUpdater/ |
| D | readme.txt | 16 2010/04/06 Changed the name to CsdrUpdater. 34 python CsdrUpdater.py [option] <input binary file name> 38 …specified by option, the output file name is created by removing the file extension from the input… 41 -i, --intermediate= : Specifies the template NWCS intermediate file name. 51 The shader name. 52 This corresponds to the name displayed on the NWCS Contents manager. 77 The reserved uniform name. 94 Specifies the vertex attribute and name. 99 The vertex attribute name.
|
| /NW4C-1.3.3/demos/snd/demolib/include/ |
| D | demolib.h | 107 Param( const char* name ) : m_pName( name ) {} in Param() argument 132 ParamInt( const char* name, int init, int step, int min, int max ) in ParamInt() argument 133 : Param( name ), in ParamInt() 162 ParamF32( const char* name, f32 init, f32 step, f32 min, f32 max ) in ParamF32() argument 163 : Param( name ), in ParamF32() 192 ParamBool( const char* name, int init ) in ParamBool() argument 193 : Param( name ), in ParamBool()
|
| /NW4C-1.3.3/tools/DccPlugin/Maya/scripts/ |
| D | NW4C_SetUserData.mel | 79 is user data name is unique 92 string $name = match("[^\"]*\"", $dataValues[$index]); 93 if (size($name) >= 2) 95 if (substring($name, 1, size($name) - 1) == $checkName) 107 $words[0]: name 114 string $name = match("[^\"]*\"", $userData); 119 int $nameSize = size($name); 122 $name = "error"; 126 $name = substring($name, 1, $nameSize - 1); 141 $words[0] = $name; [all …]
|
| /NW4C-1.3.3/demos/Nw4cDemo/include/ |
| D | SmInitialFileParser.h | 196 std::string name; // 名前 member 217 m_Data[i].name = "null"; in Init() 233 const char* name = m_Data[i].name.c_str(); in GetF32() local 234 if ( strcmp( name, strName ) == 0 ) in GetF32()
|
| D | SmLayout.h | 97 nw::ut::Rect GetOriginalRect( const char* name ) const in GetOriginalRect() argument 101 nw::lyt::Pane* pane = rootPane->FindPaneByName( name ); in GetOriginalRect() 107 nw::ut::Rect GetRect( const char* name ); 110 nw::lyt::Pane* GetPane( const char* name ) const in GetPane() argument 114 nw::lyt::Pane* pane = rootPane->FindPaneByName( name ); in GetPane()
|
| /NW4C-1.3.3/include/nw/anim/res/ |
| D | anim_ResTypeInfo.h | 28 #define NW_ANIM_RES_TYPE_INFO(name) res::name##_TYPE_INFO argument
|
| D | anim_ResAnim.h | 737 #define NW_RESANM_GETCURVE_DECL( type, name, hasNoCurveFlag ) \ argument 738 const type* Get##name() const \ 746 return reinterpret_cast<const type*>( ref().to##name.to_ptr() ); \ 750 type* Get##name() \ 758 return reinterpret_cast<type*>( ref().to##name.to_ptr() ); \ 763 #define NW_RESANM_EVALUATE_FLOAT_DECL(name, constantFlag) \ argument 764 f32 Evaluate##name( f32 frame ) const \ 768 return ref().constantValue##name; \ 773 reinterpret_cast<const ResFloatCurveData*>( ref().to##name.to_ptr() ), \ 779 #define NW_RESANM_EVALUATE_INT_DECL(name, constantFlag) \ argument [all …]
|
| /NW4C-1.3.3/SampleData/Graphics/DccPlugin/Maya/ToyBlock/scenes/ |
| D | Toy_T.ma | 322 addAttr -ci true -sn "name" -ln "name" -dt "string" -p "stringOptions"; 327 setAttr ".stringOptions[0].name" -type "string" "rast motion factor"; 330 setAttr ".stringOptions[1].name" -type "string" "rast transparency depth"; 333 setAttr ".stringOptions[2].name" -type "string" "raster use opacity"; 336 setAttr ".stringOptions[3].name" -type "string" "importon"; 339 setAttr ".stringOptions[4].name" -type "string" "importon density"; 342 setAttr ".stringOptions[5].name" -type "string" "importon merge"; 345 setAttr ".stringOptions[6].name" -type "string" "importon trace depth"; 348 setAttr ".stringOptions[7].name" -type "string" "importon traverse"; 351 setAttr ".stringOptions[8].name" -type "string" "shadowmap pixel samples"; [all …]
|
| /NW4C-1.3.3/sources/libraries/dev/ |
| D | dev_ParticleProfile.cpp | 87 bool ParticleProfileCenter::Start(const char* name) in Start() argument 92 m_Instance->m_Report.name = name; in Start()
|
| /NW4C-1.3.3/sources/libraries/demo/ |
| D | demo_Particle.cpp | 155 const char** name = nodeNames; in Register() local 157 while (!find && *name != NULL) in Register() 159 if (strcmp(resourceName, *name) == 0) in Register() 164 ++name; in Register() 179 const char** name = nodeNames; in Register() local 181 while (!find && *name != NULL) in Register() 183 if (strcmp(resourceName, *name) == 0) in Register() 188 ++name; in Register()
|
| /NW4C-1.3.3/sources/shaders/gfx/ShadowShader/ |
| D | gfx_ShadowShader.vsh | 20 //! @name ���̓��W�X�^ 32 //! @name �R���X�^���g���W�X�^ 71 //! @name �������W�X�^ 79 //! @name �o�̓��W�X�^
|
| /NW4C-1.3.3/tools/FontConverter/xggp/ |
| D | glyph-groups.dtd | 17 <!ATTLIST generator name CDATA #REQUIRED> attribute 22 <!ATTLIST group name CDATA #REQUIRED> attribute
|