Skip to content

Commit 76c6967

Browse files
committed
basic fix after merge
1 parent a0f27c9 commit 76c6967

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+293
-546
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ bin_plugs/
88
intermediate/
99
intermediate_plugs/
1010
lib/
11+
src/Externals/
1112
*.aps
1213
*.user
1314
*.PVS-Studio.*

Externals/NVTT/src/nvcore/Containers.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Do not use memmove in insert & remove, use copy ctors instead.
1616

1717

1818
// nvcore
19-
#include <nvcore.h>
20-
#include <Memory.h>
21-
#include <Debug.h>
19+
#include <nvcore/nvcore.h>
20+
#include <nvcore/Memory.h>
21+
#include <nvcore/Debug.h>
2222

2323
#include <string.h> // memmove
2424
#include <new> // for placement new

Externals/NVTT/src/nvcore/Debug.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This code is in the public domain -- [email protected]
22

3-
#include <Debug.h>
4-
#include <StrLib.h>
3+
#include <nvcore/Debug.h>
4+
#include <nvcore/StrLib.h>
55

66
// Extern
77
#if NV_OS_WIN32 //&& NV_CC_MSVC
@@ -28,8 +28,6 @@
2828
#endif
2929

3030
#if NV_OS_LINUX && defined(HAVE_EXECINFO_H)
31-
# include <sys/types.h>
32-
# include <unistd.h> // getpid
3331
# include <execinfo.h> // backtrace
3432
# if NV_CC_GNUC // defined(HAVE_CXXABI_H)
3533
# include <cxxabi.h>

Externals/NVTT/src/nvcore/Debug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#ifndef NV_CORE_DEBUG_H
44
#define NV_CORE_DEBUG_H
55

6-
#include <nvcore.h>
6+
#include <nvcore/nvcore.h>
77

88
#if defined(HAVE_STDARG_H)
99
# include <stdarg.h> // va_list

Externals/NVTT/src/nvcore/Library.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#ifndef NV_CORE_LIBRARY_H
44
#define NV_CORE_LIBRARY_H
55

6-
#include <nvcore.h>
6+
#include <nvcore/nvcore.h>
77

88
#if NV_OS_WIN32
99
#define LIBRARY_NAME(name) #name ".dll"

Externals/NVTT/src/nvcore/Memory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#ifndef NV_CORE_MEMORY_H
44
#define NV_CORE_MEMORY_H
55

6-
#include <nvcore.h>
6+
#include <nvcore/nvcore.h>
77

88
#include <stdlib.h> // malloc(), realloc() and free()
99
#include <stddef.h> // size_t

Externals/NVTT/src/nvcore/Prefetch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#ifndef NV_CORE_PREFETCH_H
44
#define NV_CORE_PREFETCH_H
55

6-
#include <nvcore.h>
6+
#include <nvcore/nvcore.h>
77

88
// nvPrefetch
99
#if NV_CC_GNUC

Externals/NVTT/src/nvcore/Ptr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#ifndef NV_CORE_PTR_H
44
#define NV_CORE_PTR_H
55

6-
#include <nvcore.h>
7-
#include <Debug.h>
6+
#include <nvcore/nvcore.h>
7+
#include <nvcore/Debug.h>
88

99
#include <stdio.h> // NULL
1010

Externals/NVTT/src/nvcore/Radix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To do:
4343
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4444
// Header
4545

46-
#include <Radix.h>
46+
#include <nvcore/Radix.h>
4747

4848
#include <string.h> // memset
4949

Externals/NVTT/src/nvcore/Radix.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#ifndef NV_CORE_RADIXSORT_H
1313
#define NV_CORE_RADIXSORT_H
1414

15-
#include <nvcore.h>
15+
#include <nvcore/nvcore.h>
1616

1717

1818
#define RADIX_LOCAL_RAM

0 commit comments

Comments
 (0)