Home
last modified time | relevance | path

Searched refs:name (Results 1 – 25 of 126) sorted by relevance

123456

/NW4C-1.2.23/include/nw/ut/
Dut_ResDeclMacros.h26 #define NW_RES_FIELD_PRIMITIVE_DECL( type, name ) \ argument
27 type Get##name() const { return static_cast<type>(ref().m_##name); } \
28 void Set##name(type value) { ref().m_##name = value; } \
31 #define NW_RES_FIELD_BOOL_PRIMITIVE_DECL( name ) \ argument
32 bool Is##name() const { return static_cast<bool>(ref().m_Is##name); } \
33 void Set##name(bool value) { ref().m_Is##name = value; } \
36 #define NW_RES_FIELD_STRING_DECL( name ) \ argument
37 const char* Get##name() const { return ref().to##name.to_ptr(); } \
40 #define NW_RES_FIELD_CLASS_DECL( type, name ) \ argument
41 type Get##name() { return type( ref().to##name.to_ptr() ); } \
[all …]
Dut_TypeTraits.h63 #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> \
Dut_ResTypeInfo.h28 #define NW_UT_RES_TYPE_INFO(name) internal::name##_TYPE_INFO argument
/NW4C-1.2.23/sources/libraries/gfx/
Dgfx_AnimHelper.cpp26 GetBaseObject(nw::gfx::ResMaterial resMat, const char* name) in GetBaseObject() argument
30 if (std::strcmp(name, "MaterialColor") == 0) in GetBaseObject()
34 else if (std::strcmp(name, "TextureCoordinators[0]") == 0) in GetBaseObject()
38 else if (std::strcmp(name, "TextureCoordinators[1]") == 0) in GetBaseObject()
42 else if (std::strcmp(name, "TextureCoordinators[2]") == 0) in GetBaseObject()
46 else if (std::strcmp(name, "TextureMappers[0]") == 0) in GetBaseObject()
50 else if (std::strcmp(name, "TextureMappers[1]") == 0) in GetBaseObject()
54 else if (std::strcmp(name, "TextureMappers[2]") == 0) in GetBaseObject()
58 else if (std::strcmp(name, "TextureMappers[0].Sampler") == 0) in GetBaseObject()
62 else if (std::strcmp(name, "TextureMappers[1].Sampler") == 0) in GetBaseObject()
[all …]
/NW4C-1.2.23/sources/libraries/lyt/
Dlyt_ArcResourceAccessor.cpp120 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 …]
Dlyt_TextureContainer.cpp43 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()
84 TextureContainer::RegistTexture(const char* name, const TextureInfo& textureInfo) in RegistTexture() argument
86 NW_ASSERT(name); in RegistTexture()
94 pLink->Set(name, textureInfo); in RegistTexture()
Dlyt_ResourceAccessor.cpp37 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()
Dlyt_FontContainer.cpp59 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()
102 FontContainer::RegistFont(const char* name, font::Font* pFont, bool own) in RegistFont() argument
111 pLink->Set(name, pFont, own); in RegistFont()
/NW4C-1.2.23/include/nw/lyt/
Dlyt_ArcResourceAccessor.h86 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);
391 const char* name,
410 FontKey RegistFont(const char* name, font::Font* pFont);
437 TextureKey RegistTexture(const char* name, const TextureInfo& textureInfo);
468 virtual const TextureInfo GetTexture(const char* name);
487 virtual font::Font* GetFont(const char* name);
Dlyt_ResourceAccessor.h104 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);
Dlyt_FontContainer.h82 const char* name,
175 FontKey RegistFont(const char* name, font::Font* pFont, bool own);
200 const char* name
Dlyt_TextureContainer.h163 TextureKey RegistTexture(const char* name, const TextureInfo& textureInfo);
188 const TextureInfo FindTextureByName(const char* name);
/NW4C-1.2.23/include/nw/dev/
Ddev_ParticleProfile.h85 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
Ddev_Config.h29 #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.2.23/tools/CsdrUpdater/
Dreadme.txt16 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.
52 The shader name.
53 This corresponds to the name displayed on the NWCS Contents manager.
78 The reserved uniform name.
96 Specifies the vertex attribute and name.
101 The vertex attribute name.
/NW4C-1.2.23/tools/DccPlugin/Maya/scripts/
DNW4C_SetUserData.mel79 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.2.23/demos/Nw4cDemo/include/
DSmInitialFileParser.h196 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()
DSmLayout.h97 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.2.23/sources/libraries/demo/
Ddemo_Particle.cpp139 const char** name = nodeNames; in Register() local
141 while (!find && *name != NULL) in Register()
143 if (strcmp(resourceName, *name) == 0) in Register()
148 ++name; in Register()
163 const char** name = nodeNames; in Register() local
165 while (!find && *name != NULL) in Register()
167 if (strcmp(resourceName, *name) == 0) in Register()
172 ++name; in Register()
/NW4C-1.2.23/include/nw/anim/res/
Danim_ResAnim.h606 #define NW_RESANM_GETCURVE_DECL( type, name, hasNoCurveFlag ) \ argument
607 const type* Get##name() const \
615 return reinterpret_cast<const type*>( ref().to##name.to_ptr() ); \
619 type* Get##name() \
627 return reinterpret_cast<type*>( ref().to##name.to_ptr() ); \
632 #define NW_RESANM_EVALUATE_FLOAT_DECL(name, constantFlag) \ argument
633 f32 Evaluate##name( f32 frame ) const \
637 return ref().constantValue##name; \
642 reinterpret_cast<const ResFloatCurveData*>( ref().to##name.to_ptr() ), \
648 #define NW_RESANM_EVALUATE_INT_DECL(name, constantFlag) \ argument
[all …]
Danim_ResTypeInfo.h28 #define NW_ANIM_RES_TYPE_INFO(name) res::name##_TYPE_INFO argument
/NW4C-1.2.23/SampleData/Graphics/DccPlugin/Maya/ToyBlock/scenes/
DToy_T.ma322 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.2.23/sources/libraries/dev/
Ddev_ParticleProfile.cpp87 bool ParticleProfileCenter::Start(const char* name) in Start() argument
92 m_Instance->m_Report.name = name; in Start()
/NW4C-1.2.23/tools/FontConverter/xggp/
Dglyph-groups.dtd17 <!ATTLIST generator name CDATA #REQUIRED> attribute
22 <!ATTLIST group name CDATA #REQUIRED> attribute
/NW4C-1.2.23/sources/shaders/gfx/ShadowShader/
Dgfx_ShadowShader.vsh20 //! @name ���̓��W�X�^
32 //! @name �R���X�^���g���W�X�^
73 //! @name �������W�X�^
81 //! @name �o�̓��W�X�^

123456