| /NW4C-1.2.23/sources/libraries/gfx/ |
| D | gfx_SceneBuilder.cpp | 91 SceneNode::Description description; in BuildSceneObject() local 92 description.isFixedSizeMemory = m_IsFixedSizeMemory; in BuildSceneObject() 93 description.maxCallbacks = m_MaxCallbacks; in BuildSceneObject() 94 description.maxChildren = m_MaxChildren; in BuildSceneObject() 95 description.maxAnimObjectsPerGroup = m_MaxAnimObjectsPerGroup; in BuildSceneObject() 96 description.isAnimationEnabled = m_IsAnimationEnabled; in BuildSceneObject() 99 parent, resource, description, allocator); in BuildSceneObject() 106 TransformNode::Description description; in BuildSceneObject() local 107 description.isFixedSizeMemory = m_IsFixedSizeMemory; in BuildSceneObject() 108 description.maxCallbacks = m_MaxCallbacks; in BuildSceneObject() [all …]
|
| D | gfx_FrameBuffer.cpp | 106 FrameBufferObject::SetDescription(const Description& description) in SetDescription() argument 108 m_Description = description; in SetDescription() 110 if (description.fboID == 0) in SetDescription() 112 this->SetFboID(description.fboID); in SetDescription() 116 m_Description = description; in SetDescription() 141 const FrameBufferObject::Description& description = this->GetDescription(); in ActivateBuffer() local 146 if ( description.fboID != 0 ) in ActivateBuffer() 148 glBindFramebuffer( GL_FRAMEBUFFER, description.fboID ); in ActivateBuffer() 153 NW_ALIGN_ASSERT( description.depthAddress, 0x8 ); in ActivateBuffer() 154 NW_ALIGN_ASSERT( description.colorAddress, 0x8 ); in ActivateBuffer() [all …]
|
| D | gfx_IRenderTarget.cpp | 77 Description description; in CreateOffScreenBuffer() local 78 description.width = texture.GetWidth(); in CreateOffScreenBuffer() 79 description.height = texture.GetHeight(); in CreateOffScreenBuffer() 80 description.colorFormat = formatTable[texture.GetFormatHW()]; in CreateOffScreenBuffer() 81 NW_ASSERT(description.colorFormat != RENDER_COLOR_FORMAT_NONE); in CreateOffScreenBuffer() 82 …description.colorArea = (GraphicsMemoryArea)(texture.GetLocationFlag() & (MEMORY_AREA_FCRAM | MEMO… in CreateOffScreenBuffer() 84 description.depthFormat = RENDER_DEPTH_FORMAT_NONE; in CreateOffScreenBuffer() 85 description.depthArea = MEMORY_AREA_NONE; in CreateOffScreenBuffer() 91 description.shadowKind = SHADOW_KIND_NONE; in CreateOffScreenBuffer() 96 description.shadowKind = SHADOW_KIND_NONE; in CreateOffScreenBuffer() [all …]
|
| D | gfx_ParticleModel.cpp | 56 const ParticleModel::Description& description) in GetMemorySizeInternal() argument 65 description); in GetMemorySizeInternal() 180 ParticleSet::Description description; in Create() local 181 description.maxCallbacks = 0; in Create() 182 description.maxChildren = 0; in Create() 183 description.isFixedSizeMemory = true; in Create() 188 description, in Create() 240 const ParticleModel::Description& description) in GetMemorySizeForInitialize() argument 244 Model::GetMemorySizeForInitialize(pSize, resource, description); in GetMemorySizeForInitialize() 246 size += sizeof(ParticleSet*) * description.particleSetCount; in GetMemorySizeForInitialize() [all …]
|
| D | gfx_LightSet.cpp | 57 LightSet::Description description; in Create() local 58 description.maxVertexLights = resource.GetLightsCount(); in Create() 63 description); in Create()
|
| D | gfx_TransformNode.cpp | 35 const TransformNode::Description& description) in TransformNode() argument 36 : SceneNode(allocator, resObj, description), in TransformNode() 41 m_Description(description) in TransformNode() 82 const TransformNode::Description& description, in Create() argument 96 description); in Create()
|
| /NW4C-1.2.23/sources/libraries/demo/ |
| D | demo_CommandListSwapper.cpp | 33 CommandListSwapper::Description& description) in Create() argument 39 CommandListSwapper* swapper = new(memory) CommandListSwapper(allocator, description); in Create() 47 CommandListSwapper::Description& description) in CommandListSwapper() argument 49 m_CommandLists(description.commandListCount, allocator), in CommandListSwapper() 53 m_GpuProfilingEntries(description.maxGpuProfilingEntryCount, allocator), in CommandListSwapper() 54 m_GpuProfilingResults(description.maxGpuProfilingEntryCount, allocator), in CommandListSwapper() 61 m_CommandLists.resize(description.commandListCount); in CommandListSwapper() 68 nngxCmdlistStorage(description.bufferSize, description.requestCount); in CommandListSwapper() 73 if (description.reusableBufferSize > 0 && description.reusableRequestCount > 0) in CommandListSwapper() 75 m_ReusableCommandLists = CommandListArray(description.commandListCount, allocator), in CommandListSwapper() [all …]
|
| D | demo_GraphicsSystem.cpp | 106 const Description& description in Create() argument 149 swapperDescription.commandListCount = description.commandListCount; in Create() 150 swapperDescription.bufferSize = description.commandBufferSize; in Create() 151 swapperDescription.requestCount = description.commandRequestCount; in Create() 152 swapperDescription.reusableBufferSize = description.reusableCommandBufferSize; in Create() 153 swapperDescription.reusableRequestCount = description.reusableCommandRequestCount; in Create() 154 swapperDescription.maxGpuProfilingEntryCount = description.maxGpuProfilingEntryCount; in Create() 167 .BufferDescription(description.upperScreenDescription) in Create() 168 .BufferCount(description.displayBufferCount) in Create() 172 .BufferDescription(description.lowerScreenDescription) in Create() [all …]
|
| /NW4C-1.2.23/sources/libraries/dev/ |
| D | dev_ParticleProfile.cpp | 42 nw::dev::ProfileManager::Description description; in Initialize() local 43 description.maxReport = (maxReport); in Initialize() 44 description.exportFormat = nw::dev::ProfileManager::CHART; in Initialize() 45 description.accuracy = nw::dev::ProfileManager::MILI_SECOND; in Initialize() 46 description.mode = nw::dev::ProfileManager::TIMER; in Initialize() 48 …anager* profileManager = nw::dev::ProfileManager::CreateProfileManager( description, (allocator) ); in Initialize() 54 profileManager = nw::dev::ProfileManager::CreateProfileManager( description, (allocator) ); in Initialize()
|
| D | dev_Profile.cpp | 45 ProfileManager::Description& description, in CreateProfileManager() argument 48 ut::MoveArray<Report> reports(description.maxReport, allocator); in CreateProfileManager() 51 …ProfileManager* profileManager = new(managerMemory) ProfileManager(allocator, description, reports… in CreateProfileManager() 67 const ProfileManager::Description& description, in ProfileManager() argument 69 : m_Description(description), in ProfileManager() 408 ProfileManager::Description description; in Initialize() local 409 description.maxReport = maxReport; in Initialize() 410 description.exportFormat = ProfileManager::CHART; in Initialize() 411 description.accuracy = ProfileManager::MILI_SECOND; in Initialize() 412 …description.mode = ProfileManager::TIMER | ProfileManager::I_CACHE_MISS | ProfileManager::D_CACHE_… in Initialize() [all …]
|
| /NW4C-1.2.23/include/nw/gfx/ |
| D | gfx_Model.h | 184 const Model::Description& description, 193 Description description, 198 GetMemorySizeInternal(&size, resModel, description); 208 Description description) in GetMemorySizeInternal() argument 213 GetMemorySizeForInitialize(pSize, resModel, description); in GetMemorySizeInternal() 608 const Model::Description& description) in Model() argument 612 description), in Model() 620 m_BufferOption(description.bufferOption), in Model() 626 m_Description(description), in Model() 628 m_SharingMaterial(description.sharedMaterialModel != NULL) in Model() [all …]
|
| D | gfx_AmbientLight.h | 112 const AmbientLight::Description& description, 171 const AmbientLight::Description& description) in AmbientLight() argument 175 description) in AmbientLight() 182 const AmbientLight::Description& description) in AmbientLight() argument 186 description), in AmbientLight()
|
| D | gfx_HemiSphereLight.h | 113 const HemiSphereLight::Description& description, 172 const HemiSphereLight::Description& description) in HemiSphereLight() argument 176 description) in HemiSphereLight() 183 const HemiSphereLight::Description& description) in HemiSphereLight() argument 187 description), in HemiSphereLight()
|
| D | gfx_FragmentLight.h | 146 const FragmentLight::Description& description, 214 const FragmentLight::Description& description) in FragmentLight() argument 218 description), in FragmentLight() 226 const FragmentLight::Description& description) in FragmentLight() argument 230 description), in FragmentLight()
|
| D | gfx_VertexLight.h | 146 const VertexLight::Description& description, 213 const VertexLight::Description& description) in VertexLight() argument 217 description), in VertexLight() 225 const VertexLight::Description& description) in VertexLight() argument 229 description), in VertexLight()
|
| D | gfx_SceneNode.h | 181 const SceneNode::Description& description, 472 Description description) in GetMemorySizeForInitialize() argument 474 NW_ASSERT(description.isFixedSizeMemory); in GetMemorySizeForInitialize() 482 size.Add(sizeof(SceneNode*) * description.maxChildren, CHILDREN_MEMORY_ALIGNMENT); in GetMemorySizeForInitialize() 485 if (description.maxCallbacks == 0) in GetMemorySizeForInitialize() 491 UpdateSignal::GetMemorySizeForFixedSizedSignalInternal(pSize, description.maxCallbacks); in GetMemorySizeForInitialize() 495 if (description.isAnimationEnabled) in GetMemorySizeForInitialize() 502 .MaxAnimObjectsPerGroup(description.maxAnimObjectsPerGroup) in GetMemorySizeForInitialize() 517 const SceneNode::Description& description) in SceneNode() argument 521 m_Description(description), in SceneNode()
|
| D | gfx_TransformNode.h | 118 const TransformNode::Description& description, 253 const TransformNode::Description& description); 301 Description description) in GetMemorySizeForInitialize() argument 303 NW_ASSERT(description.isFixedSizeMemory); in GetMemorySizeForInitialize() 305 SceneNode::GetMemorySizeForInitialize(pSize, resTransformNode, description); in GetMemorySizeForInitialize() 308 if (description.maxCallbacks == 0) in GetMemorySizeForInitialize() 314 … CalculateMatrixSignal::GetMemorySizeForFixedSizedSignalInternal(pSize, description.maxCallbacks); in GetMemorySizeForInitialize()
|
| D | gfx_LightSet.h | 312 const LightSet::Description& description) in LightSet() argument 318 if (description.isFixedSizeMemory && description.maxVertexLights != 0) in LightSet() 320 void* memory = allocator->Alloc(sizeof(VertexLight*) * description.maxVertexLights); in LightSet() 321 m_VertexLights = VertexLightArray(memory, description.maxVertexLights, allocator); in LightSet()
|
| D | gfx_Fog.h | 135 const Fog::Description& description, 219 const Fog::Description& description) in Fog() argument 223 description), in Fog() 233 const Fog::Description& description) in Fog() argument 237 description), in Fog()
|
| D | gfx_ParticleSet.h | 123 const ParticleSet::Description& description, 135 const ParticleSet::Description& description, 140 GetMemorySizeInternal(&size, resource, description); 149 const ParticleSet::Description& description); 389 const ParticleSet::Description& description);
|
| D | gfx_SkeletalModel.h | 324 Description description) in GetMemorySizeForInitialize() argument 329 Model::GetMemorySizeForInitialize(pSize, resModel, description); in GetMemorySizeForInitialize() 332 if (description.isAnimationEnabled) in GetMemorySizeForInitialize() 364 const SkeletalModel::Description& description) in SkeletalModel() argument 368 description), in SkeletalModel()
|
| D | gfx_ParticleEmitter.h | 67 const ParticleEmitter::Description& description, 77 const ParticleEmitter::Description& description, 82 GetMemorySizeInternal(&size, resource, description); 91 const ParticleEmitter::Description& description); 431 const ParticleEmitter::Description& description,
|
| /NW4C-1.2.23/demos/Nw4cDemo/sources/ |
| D | SmRenderSystem.cpp | 90 const Description& description in CreateInternal_() argument 93 NW_UNUSED_VARIABLE(description); in CreateInternal_() 137 const Description& description in SmRenderSystem() argument 150 CreateInternal_(description); in SmRenderSystem() 155 .BufferDescription(description.upperScreenDescription) in SmRenderSystem() 156 .BufferCount(description.displayBufferCount) in SmRenderSystem() 160 .BufferDescription(description.lowerScreenDescription) in SmRenderSystem() 161 .BufferCount(description.displayBufferCount) in SmRenderSystem() 168 extensionScreenDescription.width = description.upperScreenDescription.width; in SmRenderSystem() 169 extensionScreenDescription.height = description.upperScreenDescription.height; in SmRenderSystem() [all …]
|
| /NW4C-1.2.23/include/nw/demo/ |
| D | demo_CameraController.h | 61 Builder& CameraDescription(const Description& description) in CameraDescription() argument 63 m_Description = description; in CameraDescription() 115 const Description& description);
|
| D | demo_HioPacketChannel.h | 57 Builder& HioPacketChannelDescription(const Description& description) in HioPacketChannelDescription() argument 59 m_Description = description; in HioPacketChannelDescription() 205 const Description& description
|