Browse Source

Minor things

Panagiotis Christopoulos Charitos 4 years ago
parent
commit
83514aab22
4 changed files with 5 additions and 12 deletions
  1. 0 7
      AnKi/Dummy.cpp
  2. 2 2
      AnKi/Util/Win32Minimal.cpp
  3. 1 1
      Samples/Common/Framework.cpp
  4. 2 2
      Tests/Gr/Gr.cpp

+ 0 - 7
AnKi/Dummy.cpp

@@ -1,7 +0,0 @@
-// Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
-// All rights reserved.
-// Code licensed under the BSD License.
-// http://www.anki3d.org/LICENSE
-
-/// @file
-/// Make CMake happy

+ 2 - 2
AnKi/Util/Win32Minimal.cpp

@@ -6,7 +6,7 @@
 /// @file
 /// This file is mainly used to test that Windows.h works with our own minimal version of it.
 
-#include "Win32Minimal.h"
+#include <AnKi/Util/Win32Minimal.h>
 #include <Windows.h>
 
 #define ANKI_T_STRUCT(type) \
@@ -29,4 +29,4 @@ ANKI_T_STRUCT(COORD)
 ANKI_T_STRUCT(CONSOLE_SCREEN_BUFFER_INFO)
 ANKI_T_STRUCT(SYSTEM_INFO)
 ANKI_T_STRUCT(FILETIME)
-ANKI_T_STRUCT(SMALL_RECT)
+ANKI_T_STRUCT(SMALL_RECT)

+ 1 - 1
Samples/Common/Framework.cpp

@@ -3,7 +3,7 @@
 // Code licensed under the BSD License.
 // http://www.anki3d.org/LICENSE
 
-#include "Framework.h"
+#include <Samples/Common/Framework.h>
 
 using namespace anki;
 

+ 2 - 2
Tests/Gr/Gr.cpp

@@ -2751,7 +2751,7 @@ ANKI_TEST(Gr, RayGen)
 
 	using Mat3x4Scalar = Array2d<F32, 3, 4>;
 #define MAGIC_MACRO(x) x
-#include "RtTypes.h"
+#include <Tests/Gr/RtTypes.h>
 #undef MAGIC_MACRO
 
 	HeapAllocator<U8> alloc(allocAligned, nullptr);
@@ -3051,7 +3051,7 @@ F32 scatteringPdfLambertian(Vec3 normal, Vec3 scatteredDir)
 
 #define MAGIC_MACRO ANKI_STRINGIZE
 		const CString rtTypesStr =
-#include "RtTypes.h"
+#include <Tests/Gr/RtTypes.h>
 			;
 #undef MAGIC_MACRO