d065eb9498
* wip fixes for entity viewport icons displaying in the correct order and handling selection correctly Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * add additional comment about z value Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * move manual sorting and some small tidy-up Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * update comment Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * updates following initial round of PR feedback Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * additional changes to support tests for entity icon intersection Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * add support to enable/disable icons separately from helpers Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * final tests added and small tidy-up to display EntityId correctly Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * update some manipulator test framework calls after utility functions were moved Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * fix for implicit cast Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * move icon scale values to AZ_CVARS Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * fix failing tests caught in AR and update some naming conventions for tests Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * update naming convention for members of ProjectedViewportRay Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * update other references to ProjectedViewportRay Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * update more references to ProjectedViewportRay change Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com> * update menus for python tests Signed-off-by: Tom Hulton-Harrop <82228511+hultonha@users.noreply.github.com>
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <iosfwd>
|
|
#include <AzCore/IO/Path/Path_fwd.h>
|
|
|
|
namespace AZStd
|
|
{
|
|
template<class Element, class Traits, class Allocator>
|
|
class basic_string;
|
|
|
|
template <class Element, class Traits>
|
|
class basic_string_view;
|
|
|
|
template <class Element, size_t MaxElementCount, class Traits>
|
|
class basic_fixed_string;
|
|
|
|
template<class Element, class Traits, class Allocator>
|
|
void PrintTo(const AZStd::basic_string<Element, Traits, Allocator>& value, ::std::ostream* os);
|
|
template<class Element, class Traits>
|
|
void PrintTo(const AZStd::basic_string_view<Element, Traits>& value, ::std::ostream* os);
|
|
template <class Element, size_t MaxElementCount, class Traits>
|
|
void PrintTo(const AZStd::basic_fixed_string<Element, MaxElementCount, Traits>& value, ::std::ostream* os);
|
|
}
|
|
|
|
namespace AZ::IO
|
|
{
|
|
// Add Googletest printers for the AZ::IO::Path classes
|
|
void PrintTo(const AZ::IO::PathView& path, ::std::ostream* os);
|
|
void PrintTo(const AZ::IO::Path& path, ::std::ostream* os);
|
|
void PrintTo(const AZ::IO::FixedMaxPath& path, ::std::ostream* os);
|
|
}
|
|
|
|
namespace AZ
|
|
{
|
|
class EntityId;
|
|
|
|
void PrintTo(AZ::EntityId entityId, ::std::ostream* os);
|
|
}
|
|
|
|
#include <AzTest/Printers.inl>
|