Skip to content

Commit 30ca1b0

Browse files
committed
Renamed namespaces
1 parent 4c83aa6 commit 30ca1b0

File tree

534 files changed

+1153
-1153
lines changed

Some content is hidden

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

534 files changed

+1153
-1153
lines changed

examples_tests/common/QToQuitEventReceiver.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
#include "irrlicht.h"
99

1010
//! Simple event receiver for most examples that closes the engine when Q is pressed
11-
class QToQuitEventReceiver : public irr::IEventReceiver
11+
class QToQuitEventReceiver : public nbl::IEventReceiver
1212
{
1313
public:
1414
QToQuitEventReceiver() : running(true)
1515
{
1616
}
1717

18-
bool OnEvent(const irr::SEvent& event)
18+
bool OnEvent(const nbl::SEvent& event)
1919
{
20-
if (event.EventType == irr::EET_KEY_INPUT_EVENT && !event.KeyInput.PressedDown)
20+
if (event.EventType == nbl::EET_KEY_INPUT_EVENT && !event.KeyInput.PressedDown)
2121
{
2222
switch (event.KeyInput.Key)
2323
{
24-
case irr::KEY_KEY_Q: // switch wire frame mode
24+
case nbl::KEY_KEY_Q: // switch wire frame mode
2525
running = false;
2626
return true;
2727
default:

include/CConcurrentObjectCache.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include "CObjectCache.h"
99
#include "FW_Mutex.h"
1010

11-
namespace irr { namespace core
11+
namespace nbl { namespace core
1212
{
1313

1414
namespace impl

include/CFinalBoneHierarchy.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "nbl/asset/bawformat/BlobSerializable.h"
1414
#include "nbl/asset/bawformat/blobs/FinalBoneHierarchyBlob.h"
1515

16-
namespace irr
16+
namespace nbl
1717
{
1818
namespace asset
1919
{
@@ -707,7 +707,7 @@ namespace asset
707707
};
708708

709709
} // end namespace asset
710-
} // end namespace irr
710+
} // end namespace nbl
711711

712712
#endif
713713

include/CObjectCache.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "nbl/macros.h"
1616
#include "nbl/core/Types.h"
1717

18-
namespace irr { namespace core
18+
namespace nbl { namespace core
1919
{
2020

2121
//#define I_JUST_WANT_TO_COMFORTABLY_WRITE_CODE_AND_I_WILL_REMEMBER_TO_UNDEF_THIS_BEFORE_BUILD

include/COpenGLStateManager.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#define GL_SRG8_EXT 0x8FBE
3636
#endif
3737

38-
namespace irr
38+
namespace nbl
3939
{
4040
namespace video
4141
{
@@ -1681,6 +1681,6 @@ P.S. Maybe Ghost == Pending
16811681

16821682

16831683
} // end namespace video
1684-
} // end namespace irr
1684+
} // end namespace nbl
16851685

16861686
#endif

include/EDeviceTypes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#ifndef __NBL_E_DEVICE_TYPES_H_INCLUDED__
77
#define __NBL_E_DEVICE_TYPES_H_INCLUDED__
88

9-
namespace irr
9+
namespace nbl
1010
{
1111

1212
//! An enum for the different device types supported by the Irrlicht Engine.
@@ -45,7 +45,7 @@ namespace irr
4545
EIDT_BEST
4646
};
4747

48-
} // end namespace irr
48+
} // end namespace nbl
4949

5050
#endif
5151

include/EDriverTypes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#ifndef __NBL_E_DRIVER_TYPES_H_INCLUDED__
77
#define __NBL_E_DRIVER_TYPES_H_INCLUDED__
88

9-
namespace irr
9+
namespace nbl
1010
{
1111
namespace video
1212
{
@@ -32,7 +32,7 @@ namespace video
3232
};
3333

3434
} // end namespace video
35-
} // end namespace irr
35+
} // end namespace nbl
3636

3737

3838
#endif

include/ESceneNodeAnimatorTypes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#ifndef __NBL_E_SCENE_NODE_ANIMATOR_TYPES_H_INCLUDED__
77
#define __NBL_E_SCENE_NODE_ANIMATOR_TYPES_H_INCLUDED__
88

9-
namespace irr
9+
namespace nbl
1010
{
1111
namespace scene
1212
{
@@ -52,7 +52,7 @@ namespace scene
5252
};
5353

5454
} // end namespace scene
55-
} // end namespace irr
55+
} // end namespace nbl
5656

5757

5858
#endif

include/ESceneNodeTypes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include "nbl/core/Types.h"
1010

11-
namespace irr
11+
namespace nbl
1212
{
1313
namespace scene
1414
{
@@ -64,7 +64,7 @@ namespace scene
6464

6565

6666
} // end namespace scene
67-
} // end namespace irr
67+
} // end namespace nbl
6868

6969

7070
#endif

include/IAnimatedMesh.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "aabbox3d.h"
1010
#include "nbl/asset/IMesh.h"
1111

12-
namespace irr
12+
namespace nbl
1313
{
1414
namespace scene
1515
{
@@ -26,7 +26,7 @@ namespace scene
2626
*/
2727

2828
} // end namespace scene
29-
} // end namespace irr
29+
} // end namespace nbl
3030

3131
#endif
3232

0 commit comments

Comments
 (0)