Skip to content

Commit 262a8b7

Browse files
committed
Merge remote-tracking branch 'origin/master' into unroll-local-sync
2 parents 6dc6485 + e11b118 commit 262a8b7

File tree

2 files changed

+9
-14
lines changed

2 files changed

+9
-14
lines changed

include/nbl/core/sampling/OwenSampler.h

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
1-
// Copyright (C) 2018-2020 - DevSH Graphics Programming Sp. z O.O.
1+
// Copyright (C) 2018-2026 - DevSH Graphics Programming Sp. z O.O.
22
// This file is part of the "Nabla Engine".
33
// For conditions of distribution and use, see copyright notice in nabla.h
4-
5-
#ifndef __NBL_CORE_CORE_OWEN_SAMPLER_H_
6-
#define __NBL_CORE_CORE_OWEN_SAMPLER_H_
4+
#ifndef _NBL_CORE_CORE_OWEN_SAMPLER_H_
5+
#define _NBL_CORE_CORE_OWEN_SAMPLER_H_
76

87
#include "nbl/core/sampling/RandomSampler.h"
98
#include "nbl/core/sampling/SobolSampler.h"
109

11-
namespace nbl
12-
{
13-
namespace core
10+
namespace nbl::core
1411
{
1512

16-
//! TODO: make the tree sampler/generator configurable and let RandomSampler be default
17-
template<class SequenceSampler=SobolSampler>
18-
class OwenSampler : protected SequenceSampler
19-
{
13+
//! TODO: make the tree sampler/generator configurable and let RandomSampler be default
14+
template<class SequenceSampler=SobolSampler>
15+
class OwenSampler : protected SequenceSampler
16+
{
2017
public:
2118
OwenSampler(uint32_t _dimensions, uint32_t _seed) : SequenceSampler(_dimensions)
2219
{
@@ -104,6 +101,4 @@ namespace core
104101

105102

106103
}
107-
}
108-
109104
#endif

0 commit comments

Comments
 (0)