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
8 changes: 5 additions & 3 deletions tests/test_image_converter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
# undef RGB
#endif

#include "../src/rawtoaces_util/rawtoaces_util_priv.h"

// must be before <OpenImageIO/unittest.h>
#include <rawtoaces/image_converter.h>

#include <OpenImageIO/unittest.h>
#include <filesystem>
#include <fstream>
Expand All @@ -16,9 +21,6 @@
#include <sys/stat.h> // for mkfifo
#include <ctime>

#include "../src/rawtoaces_util/rawtoaces_util_priv.h"
#include <rawtoaces/image_converter.h>

using namespace rta::util;

// Cross-platform environment variable helpers
Expand Down
4 changes: 3 additions & 1 deletion tests/usage_example_util.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright Contributors to the rawtoaces Project.

// must be before <OpenImageIO/unittest.h>
#include <rawtoaces/image_converter.h>

#include <filesystem>
#include <OpenImageIO/unittest.h>
#include <rawtoaces/image_converter.h>

// This file contains some usage examples of the util library.
// It has only very little unit test functionality to keep the code clean.
Expand Down
Loading