Searched refs:attributeDescriptions (Results 1 - 14 of 14) sorted by relevance
/foundation/graphic/graphic_3d/lume/LumeRender/src/loader/ |
H A D | vertex_input_declaration_loader.cpp | 80 vertexInputDeclarationData_.attributeDescriptions[idx] = attributes[idx]; in LoadState() 81 if (vertexInputDeclarationData_.attributeDescriptions[idx].format == Format::BASE_FORMAT_UNDEFINED) { in LoadState() 128 vertexInputDeclarationData_.attributeDescriptions, vertexInputDeclarationData_.attributeDescriptionCount), in GetVertexInputDeclarationView()
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | gpu_program_vk.cpp | 62 reflection_.vertexInputDeclarationView.attributeDescriptions = vidv.attributeDescriptions; in GpuShaderProgramVk()
|
H A D | shader_module_vk.cpp | 85 vidv_.attributeDescriptions = vertexInputAttributeDescriptions_; in ShaderModuleVk()
|
H A D | pipeline_state_object_vk.cpp | 57 vertexInputAttributeDescriptions.resize(vertexInputDeclaration.attributeDescriptions.size()); in GetVertexInputs() 71 const auto& attributeRef = vertexInputDeclaration.attributeDescriptions[idx]; in GetVertexInputs()
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/ |
H A D | pipeline_state_object_gles.cpp | 161 for (const auto& t : vertexInputDeclaration.attributeDescriptions) { in GraphicsPipelineStateObjectGLES() 162 plat_.vertexInputDeclaration.attributeDescriptions[plat_.vertexInputDeclaration.attributeDescriptionCount] = t; in GraphicsPipelineStateObjectGLES() 216 const auto& attributeRef = vertexInputDecl.attributeDescriptions[idx];
|
H A D | shader_module_gles.cpp | 176 me.vidv_.attributeDescriptions = { me.vertexInputAttributeDescriptions_.data(), in ProcessShaderModule()
|
H A D | gpu_program_gles.cpp | 595 const auto& list = ret.reflection_.vertexInputDeclarationView.attributeDescriptions;
|
H A D | render_backend_gles.cpp | 2414 const auto& attributeRef = decldata.attributeDescriptions[i]; in BindVertexInputs()
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/nodecontext/ |
H A D | node_context_pso_manager.cpp | 291 { vertexInputDeclarationView.attributeDescriptions.begin(), in GetGraphicsPsoHandleImpl() 292 vertexInputDeclarationView.attributeDescriptions.end() }, in GetGraphicsPsoHandleImpl() 441 vertexInput.attributeDescriptions };
|
H A D | node_context_pso_manager.h | 48 BASE_NS::vector<VertexInputDeclaration::VertexInputAttributeDescription> attributeDescriptions; member
|
/foundation/graphic/graphic_3d/lume/LumeRender/api/render/device/ |
H A D | pipeline_state_desc.h | 1280 attributeDescriptions[PipelineStateConstants::MAX_VERTEX_BUFFER_COUNT]; member 1288 BASE_NS::array_view<const VertexInputDeclaration::VertexInputAttributeDescription> attributeDescriptions; member
|
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/ |
H A D | mesh_builder.cpp | 90 const array_view<const VertexInputDeclaration::VertexInputAttributeDescription>& attributeDescriptions) noexcept 93 if (const auto pos = std::find_if(attributeDescriptions.begin(), attributeDescriptions.end(), cmpLocationIndex); 94 pos != attributeDescriptions.end()) { 430 GetVertexAttributeDescription(vertexAttributeLocation, vertexInputDeclaration.attributeDescriptions); in GetVertexAttributeByteSize() 1239 MeshComponent::Submesh::DM_VB_JOI, vertexInputDeclaration_.attributeDescriptions); in SetJointData() 1254 MeshComponent::Submesh::DM_VB_JOW, vertexInputDeclaration_.attributeDescriptions); in SetJointData() 2155 GetVertexAttributeDescription(attributeLocation, vertexInputDeclaration_.attributeDescriptions); in WriteData()
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/device/ |
H A D | shader_manager.cpp | 1203 ref.attributeDescriptions, ref.attributeDescriptionCount), 1249 ref.attributeDescriptionCount = (uint32_t)vertexInputDeclarationView.attributeDescriptions.size(); 1258 ref.attributeDescriptions[idx] = vertexInputDeclarationView.attributeDescriptions[idx];
|
/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/ |
H A D | gltf2_importer.cpp | 2823 static_cast<uint32_t>(vertexInputDeclaration.attributeDescriptions.size()); 2827 std::copy(vertexInputDeclaration.attributeDescriptions.cbegin(), 2828 vertexInputDeclaration.attributeDescriptions.cend(), 2829 meshData_.vertexInputDeclaration.attributeDescriptions);
|
Completed in 27 milliseconds