18 lines
363 B
C++
18 lines
363 B
C++
#pragma once
|
|
|
|
#include "config/primitives.hpp"
|
|
#include "assets/components/point_cloud_vertex_components.hpp"
|
|
|
|
namespace assets::detail
|
|
{
|
|
|
|
template<typename... Ts>
|
|
struct generic_point_cloud_view
|
|
{
|
|
point_cloud_vertex_components::flags vertex_component_flags;
|
|
z3d::structure<z3d::array_view<Ts>...> vertex_component_arrays;
|
|
z3d::vertex_index point_count;
|
|
};
|
|
|
|
}
|