// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 #include "stdafx.h" #include void BuildMesh_XMeshLogoMesh( Mesh& outMesh ); void BuildMesh_MeshLoaderLogo( Mesh& outMesh ); boost::shared_ptr BuildIconMesh() { boost::shared_ptr result( new Mesh() ); BuildMesh_XMeshLogoMesh( *result ); return result; } boost::shared_ptr BuildLegacyIconMesh() { boost::shared_ptr result( new Mesh() ); BuildMesh_MeshLoaderLogo( *result ); return result; }