Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Gems/Pointcloud/Code/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ ly_add_target(
AZ::AzCore
AZ::AzFramework
Gem::Atom_RPI.Public
Gem::Atom_RHI.Public
Gem::Atom_Utils.Static
Gem::Atom_Feature_Common
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma once

#include <Atom/RHI.Reflect/Limits.h>
#include <Atom/RPI.Public/PipelineState.h>
#include <Atom/RPI.Public/ViewportContextBus.h>
#include <AzCore/Math/Transform.h>
Expand Down Expand Up @@ -62,7 +63,7 @@ namespace Pointcloud
PointcloudHandle m_index = 0;
AZ::Data::Asset<AZ::RPI::BufferAsset> m_cloudVertexBufferAsset;
AZ::Data::Instance<AZ::RPI::Buffer> m_cloudVertexBuffer = nullptr;
AZ::RHI::GeometryView m_geometryView;
AZ::RHI::GeometryView m_geometryView{ AZ::RHI::MultiDevice::DeviceMask{ AZ::RHI::MultiDevice::DefaultDevice } };
AZStd::array<AZ::RHI::StreamBufferView, 1> m_meshStreamBufferViews;
AZStd::vector<PointcloudAsset::CloudVertex> m_pointData;
uint32_t m_vertices = 0;
Expand Down
2 changes: 1 addition & 1 deletion Gems/Pointcloud/gem.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"gem_name": "Pointcloud",
"version": "3.0.2",
"version": "4.0.0",
"display_name": "Pointcloud",
"license": "Apache-2.0",
"license_url": "https://opensource.org/licenses/Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Note that this is not a "Canonical" part of O3DE - those gems are third-party co
| [**ImGuiProvider**](#imguiprovider) | not verified |
| [**ImGuizmo**](#imguizmo) | not verified |
| [**LevelModificationTools**](#levelmodificationtools) | not verified |
| [**Pointcloud**](#pointcloud) | not verified |
| [**Pointcloud**](#pointcloud) | compatible |
| [**RandomizeUtils**](#randomizeutils) | not verified |
| [**RobotecGeoJSONSpawner**](#groboteceojsonspawner) | not verified |
| [**RobotecGeoJSONSpawnerROS2**](#robotecgeojsonspawnerros2) | not verified |
Expand Down
Loading