Skip to content

Commit 4ea31bc

Browse files
committed
Few corrections
1 parent 01fffca commit 4ea31bc

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

include/EDeviceTypes.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ namespace irr
2626
/** This device uses Apple's Cocoa API and works in Mac OSX 10.2 and above. */
2727
EIDT_OSX,
2828

29-
//! A device which uses Simple DirectMedia Layer
30-
/** The SDL device works under all platforms supported by SDL but first must be compiled
31-
in by defining the NBL_USE_SDL_DEVICE macro in IrrCompileConfig.h */
32-
EIDT_SDL,
33-
3429
//! A device for raw framebuffer access
3530
/** Best used with embedded devices and mobile systems.
3631
Does not need X11 or other graphical subsystems.

include/irr/ext/MitsubaLoader/CElementIntegrator.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class CElementIntegrator : public IElement
3737
ADJ_P_TRACER,
3838
ADAPTIVE,
3939
VPL,
40-
NBL_CACHE,
40+
IRR_CACHE,
4141
MULTI_CHANNEL,
4242
FIELD_EXTRACT
4343
};
@@ -252,7 +252,7 @@ class CElementIntegrator : public IElement
252252
case CElementIntegrator::Type::VPL:
253253
vpl = other.vpl;
254254
break;
255-
case CElementIntegrator::Type::NBL_CACHE:
255+
case CElementIntegrator::Type::IRR_CACHE:
256256
irrcache = other.irrcache;
257257
break;
258258
case CElementIntegrator::Type::MULTI_CHANNEL:
@@ -279,7 +279,7 @@ class CElementIntegrator : public IElement
279279

280280
switch (type)
281281
{
282-
case Type::NBL_CACHE:
282+
case Type::IRR_CACHE:
283283
[[fallthrough]];
284284
case Type::MULTI_CHANNEL:
285285
if (_child->getType() != IElement::Type::INTEGRATOR)
@@ -290,7 +290,7 @@ class CElementIntegrator : public IElement
290290
}
291291
switch (type)
292292
{
293-
case Type::NBL_CACHE:
293+
case Type::IRR_CACHE:
294294
irrcache.children[0u] = static_cast<CElementIntegrator*>(_child);
295295
irrcache.childCount = 1u;
296296
return true;

0 commit comments

Comments
 (0)