Skip to content

Commit c4f6e63

Browse files
committed
Fix build breaks
Signed-off-by: Patrick Hodoul <[email protected]>
1 parent 0918bb7 commit c4f6e63

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/RenderingFramework/AndroidTestContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void VulkanRendererContext::run(
9090

9191
bool VulkanRendererContext::saveImage(const std::string& fileName)
9292
{
93-
static const std::filesystem::path filePath = hvt::TestHelpers::getOutputDataFolder();
93+
static const std::filesystem::path filePath = hvt::TestFramework::getOutputDataFolder();
9494
const std::filesystem::path screenShotPath = getFilename(filePath, fileName + "_computed");
9595
const std::filesystem::path directory = screenShotPath.parent_path();
9696
if (!std::filesystem::exists(directory))

test/RenderingFramework/VulkanTestContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ void VulkanRendererContext::run(std::function<bool()> render,
346346

347347
bool VulkanRendererContext::saveImage(const std::string& fileName)
348348
{
349-
static const std::filesystem::path filePath = hvt::TestHelpers::getOutputDataFolder();
349+
static const std::filesystem::path filePath = hvt::TestFramework::getOutputDataFolder();
350350

351351
const std::filesystem::path screenShotPath = getFilename(filePath, fileName + "_computed");
352352
const std::filesystem::path directory = screenShotPath.parent_path();

test/tests/composeTaskHelpers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
1616

1717
#ifdef __APPLE__
18-
#include "TargetConditionals.h"
18+
#include "TargetConditionals.h"
1919
#endif
2020

2121
#include <pxr/pxr.h>

test/tests/composeTaskHelpers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
1616

1717
#ifdef __APPLE__
18-
#include "TargetConditionals.h"
18+
#include "TargetConditionals.h"
1919
#endif
2020

2121
#include <hvt/engine/renderBufferSettingsProvider.h>

0 commit comments

Comments
 (0)