File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,6 @@ namespace irr
26
26
/* * This device uses Apple's Cocoa API and works in Mac OSX 10.2 and above. */
27
27
EIDT_OSX,
28
28
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
-
34
29
// ! A device for raw framebuffer access
35
30
/* * Best used with embedded devices and mobile systems.
36
31
Does not need X11 or other graphical subsystems.
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class CElementIntegrator : public IElement
37
37
ADJ_P_TRACER,
38
38
ADAPTIVE,
39
39
VPL,
40
- NBL_CACHE ,
40
+ IRR_CACHE ,
41
41
MULTI_CHANNEL,
42
42
FIELD_EXTRACT
43
43
};
@@ -252,7 +252,7 @@ class CElementIntegrator : public IElement
252
252
case CElementIntegrator::Type::VPL:
253
253
vpl = other.vpl ;
254
254
break ;
255
- case CElementIntegrator::Type::NBL_CACHE :
255
+ case CElementIntegrator::Type::IRR_CACHE :
256
256
irrcache = other.irrcache ;
257
257
break ;
258
258
case CElementIntegrator::Type::MULTI_CHANNEL:
@@ -279,7 +279,7 @@ class CElementIntegrator : public IElement
279
279
280
280
switch (type)
281
281
{
282
- case Type::NBL_CACHE :
282
+ case Type::IRR_CACHE :
283
283
[[fallthrough]];
284
284
case Type::MULTI_CHANNEL:
285
285
if (_child->getType () != IElement::Type::INTEGRATOR)
@@ -290,7 +290,7 @@ class CElementIntegrator : public IElement
290
290
}
291
291
switch (type)
292
292
{
293
- case Type::NBL_CACHE :
293
+ case Type::IRR_CACHE :
294
294
irrcache.children [0u ] = static_cast <CElementIntegrator*>(_child);
295
295
irrcache.childCount = 1u ;
296
296
return true ;
You can’t perform that action at this time.
0 commit comments